← Back to team overview

ragetrack-team team mailing list archive

[Branch ~ragetrack-team/ragetracks/trunk] Rev 8: merge with the trunk-repo

 

Merge authors:
  Carsten <Carsten@gimli>
------------------------------------------------------------
revno: 8 [merge]
committer: Jannik <blazingsun@blazingsun-laptop>
branch nick: trunk
timestamp: Thu 2010-08-26 15:18:34 +0200
message:
  merge with the trunk-repo
added:
  bunnyexample/
  bunnyexample/bunnyexample.py
  bunnyexample/data/
  bunnyexample/data/bunny_game.ttf
  bunnyexample/data/gfx/
  bunnyexample/data/levels/
  bunnyexample/data/levels/terrain.egg
  bunnyexample/data/levels/terrain.jpg
  bunnyexample/data/models/
  bunnyexample/data/models/blasterbullet.egg
  bunnyexample/data/models/blasterbullet.jpg
  bunnyexample/data/models/doc_hare.egg
  bunnyexample/data/models/doc_hare.jpg
  bunnyexample/data/models/hase.jpg
  bunnyexample/data/models/rabbit.egg
  bunnyexample/data/music/
  bunnyexample/data/sfx/
  bunnyexample/data/sfx/blastershot.wav
  bunnyexample/data/sfx/jump.wav
  bunnyexample/data/sfx/menuclick1.wav
  bunnyexample/data/sfx/menuclick2.wav
  bunnyexample/data/sfx/menusel.wav
  bunnyexample/data/textures/
  bunnyexample/gui.py
  bunnyexample/player.py


--
lp:ragetracks
https://code.launchpad.net/~ragetrack-team/ragetracks/trunk

Your team RageTrack-Team is subscribed to branch lp:ragetracks.
To unsubscribe from this branch go to https://code.launchpad.net/~ragetrack-team/ragetracks/trunk/+edit-subscription
=== added directory 'bunnyexample'
=== added file 'bunnyexample/bunnyexample.py'
--- bunnyexample/bunnyexample.py	1970-01-01 00:00:00 +0000
+++ bunnyexample/bunnyexample.py	2010-08-26 12:58:47 +0000
@@ -0,0 +1,268 @@
+# _*_ coding: UTF-8 _*_
+###############################################################
+##  Autor: Carsten Pfeffer    ##  Version 0.0                ##
+###############################################################
+##  Programm: BUNNY                                          ##
+###############################################################
+##  Datum:  08.02.2010                                       ##
+###############################################################
+
+
+## Kommentar entfernen für Vollbildmodus
+#from pandac.PandaModules import loadPrcFileData
+#loadPrcFileData("", "fullscreen 1 win-size 1024 768")
+
+# ----------------------------------------------------------------- #
+# -- Importe
+
+from panda3d.core import *
+import direct.directbase.DirectStart                        # startet die Engine
+from direct.showbase.DirectObject import DirectObject       # Basisklasse für das Spiel
+from pandac.PandaModules import WindowProperties            # Fenstereigenschaften
+from direct.actor.Actor import Actor                        # bewegliche Models
+
+from direct.gui.OnscreenText import OnscreenText
+from direct.gui.OnscreenImage import OnscreenImage
+
+import pygame
+
+import sys
+import gui
+import math
+
+import player
+
+STATE_MENU = 0
+STATE_GAME = 1
+
+
+SOUND_MENU_SELECT = loader.loadSfx("data/sfx/menusel.wav")
+SOUND_MENU_CLICK1 = loader.loadSfx("data/sfx/menuclick1.wav")
+SOUND_MENU_CLICK2 = loader.loadSfx("data/sfx/menuclick2.wav")
+
+# ----------------------------------------------------------------- #
+# ----------------------------------------------------------------- #
+# ----------------------------------------------------------------- #
+
+class Game(DirectObject):
+    '''
+    '''
+    def __init__(self):
+        '''
+        '''
+        self.key_map = {"arrow_left": False, "arrow_right": False, "arrow_up": False, "arrow_down": False, "cam_left": False, "cam_right": False, "jump": False, "joy_jump": False,"shoot": False,"joy_shoot": False, "escape": False, "enter": False, "joy_x": 0, "joy_y": 0, "joy_a": 0, "joy_b": 0}
+
+        self.state = STATE_MENU
+
+        #self.joy_text = OnscreenText("0, 0", pos = (0, 0), scale = (.07, .07), fg=(0,0,0,1))
+
+#        font = DynamicTextFont("data/bunny_game.ttf")
+#        self.dialog_image = OnscreenImage(image = "data/gfx/dialog.jpg", pos = (0, 0, -0.65), scale = (1.21, 1, .24))
+#        self.dialog_image.setTransparency(TransparencyAttrib.MAlpha)
+#        self.dialog_image.setAlphaScale(0.4)
+#        self.dialog_name_text = OnscreenText("Boothby:", pos = (-1.19, -.51), scale = (.1, .1), fg=(1,.8,.5,1))
+#        self.dialog_name_text.setAlign(TextNode.ALeft)
+#        self.dialog_name_text.setFont(font)
+#
+#        txt = "Hello! Did you see the impact, too? That was a big bang, man.\nAny idea what it could have been? Mabe someone should look for it..."
+#
+#        self.dialog_text = OnscreenText(txt, pos = (-1.18, -.65), scale = (.07, .07), fg=(1,1,1,1))
+#        self.dialog_text.setAlign(TextNode.ALeft)
+#        self.dialog_text.setFont(font)
+
+        self.properties = WindowProperties()
+        self.properties.setCursorHidden(True)
+        self.properties.setTitle("Buny test")
+        self.properties.setIconFilename("carrott.ico") #!!
+#        self.properties.setFullscreen(True)
+#        self.properties.setSize(1280, 1024)
+        base.win.requestProperties(self.properties)
+
+        base.win.setClearColor(Vec4(0,0,0,1))
+
+        self.menu = gui.Menu()
+        self.menu.addOption("Neues Spiel", self.startGame)
+        self.menu.addOption("Spiel laden", None)
+        self.menu.addOption("Spiel speichern", None)
+        self.menu.addOption("Optionen", None)
+        self.menu.addOption("Spiel beenden", self.quitGame)
+        #self.menu.selectOption(2)
+        self.menu.showMenu()
+
+
+        self.accept("arrow_up", self.setKey, ["arrow_up", True])
+        self.accept("arrow_down", self.setKey, ["arrow_down", True])
+        self.accept("arrow_left", self.setKey, ["arrow_left", True])
+        self.accept("arrow_right", self.setKey, ["arrow_right", True])
+        self.accept("enter", self.setKey, ["enter", True])
+        self.accept("space", self.setKey, ["shoot", True])
+        self.accept("escape", self.setKey, ["escape", True])
+        self.accept("a", self.setKey, ["cam_left", True])
+        self.accept("d", self.setKey, ["cam_right", True])
+        self.accept("lcontrol", self.setKey, ["jump", True])
+
+        self.accept("arrow_up-up", self.setKey, ["arrow_up", False])
+        self.accept("arrow_down-up", self.setKey, ["arrow_down", False])
+        self.accept("arrow_left-up", self.setKey, ["arrow_left", False])
+        self.accept("arrow_right-up", self.setKey, ["arrow_right", False])
+        self.accept("enter-up", self.setKey, ["enter", False])
+        self.accept("space-up", self.setKey, ["shoot", False])
+        self.accept("escape-up", self.setKey, ["escape", False])
+        self.accept("a-up", self.setKey, ["cam_left", False])
+        self.accept("d-up", self.setKey, ["cam_right", False])
+        self.accept("lcontrol-up", self.setKey, ["jump", False])
+
+        pygame.init()
+        pygame.joystick.init()
+        try:
+            self.joystick = pygame.joystick.Joystick(0)
+            self.joystick.init()
+        except:
+            self.joystick = None
+
+    # ----------------------------------------------------------------- #
+
+    def setKey(self, key, value):
+        '''
+        '''
+        #print "key:",key, value
+        if self.state == STATE_MENU:
+            if self.key_map[key] == False and value == True:
+                if key == "arrow_up":
+                    SOUND_MENU_SELECT.play()
+                    self.menu.selectPrev()
+                if key == "arrow_down":
+                    SOUND_MENU_SELECT.play()
+                    self.menu.selectNext()
+                if key == "enter":
+                    SOUND_MENU_CLICK2.play()
+                    self.menu.chooseSelectedOption()
+                if key == "space":
+                    SOUND_MENU_CLICK2.play()
+                    self.menu.chooseSelectedOption()
+        if key == "escape":
+            self.quitGame()
+
+
+        self.key_map[key] = value
+
+    # ----------------------------------------------------------------- #
+
+    def startGame(self):
+        '''
+        '''
+        base.win.setClearColor(Vec4(.3,0.5,1,1))
+        self.menu.hideMenu()
+        self.state = STATE_GAME
+        self.loadLevel("data/levels/terrain")
+
+    # ----------------------------------------------------------------- #
+
+    def loadLevel(self, filename):
+        '''
+        '''
+        # Level laden
+        self.level = loader.loadModel(filename)
+        self.level.reparentTo(render)
+        self.level.setPos(0,0,0)
+
+        # Startpunkt finden und Spieler laden
+        start_point = self.level.find("**/start_point")
+
+        model = start_point.getTag("model") # Das Model ist abhängig von der Variable im Level
+        if model == "": # aber defaultmaessig der Hase
+            model = "rabbit.egg"
+
+        # Spieler laden
+        self.player = player.Player("data/models/"+model)
+        self.player.reparentTo(render)
+
+
+        # Größe und Position setzen
+        self.player.setScale(.4)
+        self.player.setPos(start_point.getPos())
+
+        base.disableMouse()
+
+        # Create some lighting
+        ambientLight = AmbientLight("ambientLight")
+        ambientLight.setColor(Vec4(.7, .7, .6, 1))
+        directionalLight = DirectionalLight("directionalLight")
+        directionalLight.setDirection(Vec3(-5, -5, -5))
+        directionalLight.setColor(Vec4(1, 1, 1, 1))
+        directionalLight.setSpecularColor(Vec4(1, 1, 1, 1))
+        render.setLight(render.attachNewNode(ambientLight))
+        render.setLight(render.attachNewNode(directionalLight))
+
+        # die Bewegungsfunktion zum Taskmanager hnzufügen
+        taskMgr.add(self.movePlayer, "movePlayer")
+
+
+        ##################
+        ## Models laden
+
+        doc = loader.loadModel("data/models/doc_hare.egg")
+        doc.reparentTo(render)
+        doc.setPos(4,0,1)
+        doc.setScale(.4)
+
+    # ----------------------------------------------------------------- #
+
+    def quitGame(self):
+        '''
+        '''
+        pygame.joystick.quit()
+        pygame.quit()
+        sys.exit()
+
+    # ----------------------------------------------------------------- #
+
+    def foo(self):
+        '''
+        '''
+        print "Hallo Welt"
+
+    # ----------------------------------------------------------------- #
+
+    def movePlayer(self, task):
+        '''
+        '''
+        for e in pygame.event.get(): pass
+
+        if self.joystick != None:
+            self.key_map["joy_x"] = self.joystick.get_axis(0)      # x-achse zwischen -1 und 1
+            self.key_map["joy_y"] = self.joystick.get_axis(1)      # y-achse zwischen -1 und 1
+            self.key_map["joy_a"] = self.joystick.get_axis(3)      # x-achse zwischen -1 und 1
+
+
+            if abs(self.key_map["joy_x"]) < .1: self.key_map["joy_x"] = 0
+            if abs(self.key_map["joy_y"]) < .1: self.key_map["joy_y"] = 0
+            if abs(self.key_map["joy_a"]) < .1: self.key_map["joy_a"] = 0
+
+            #txt = "%f, %f"%(self.key_map["joy_x"], self.key_map["joy_y"])
+            #self.joy_text.setText(txt)
+
+
+            if self.joystick.get_button(1):
+                self.key_map["joy_jump"] = True
+            else:
+                self.key_map["joy_jump"] = False
+
+            if self.joystick.get_button(3):
+                self.key_map["joy_shoot"] = True
+            else:
+                self.key_map["joy_shoot"] = False
+
+            self.player.movePlayer(self.key_map)
+
+
+        return task.cont
+
+# ----------------------------------------------------------------- #
+# ----------------------------------------------------------------- #
+# ----------------------------------------------------------------- #
+
+if __name__ == "__main__":
+    print "Starting Carrottinators"
+    game = Game()
+    run()

=== added directory 'bunnyexample/data'
=== added file 'bunnyexample/data/bunny_game.ttf'
Binary files bunnyexample/data/bunny_game.ttf	1970-01-01 00:00:00 +0000 and bunnyexample/data/bunny_game.ttf	2010-08-26 12:58:47 +0000 differ
=== added directory 'bunnyexample/data/gfx'
=== added directory 'bunnyexample/data/levels'
=== added file 'bunnyexample/data/levels/terrain.egg'
--- bunnyexample/data/levels/terrain.egg	1970-01-01 00:00:00 +0000
+++ bunnyexample/data/levels/terrain.egg	2010-08-26 12:58:47 +0000
@@ -0,0 +1,119075 @@
+<CoordinateSystem> { Z-up }
+
+<Comment> { "Egg laid by Chicken for Blender, version R85" }
+
+<Texture> terrain.jpg {
+  "./terrain.jpg"
+  <Scalar> saved-result { 1 }
+  <Scalar> envtype { MODULATE }
+  <Scalar> minfilter { LINEAR }
+  <Scalar> magfilter { LINEAR }
+  <Scalar> wrap { REPEAT }
+}
+<Group> start_point {
+  <Transform> {
+    <Matrix4> {
+      3.140838 0.000000 0.000000 0.000000
+      0.000000 3.140838 0.000000 0.000000
+      0.000000 0.000000 3.140838 0.000000
+      -7.671305 -1.667115 4.146051 1.000000
+    }
+  }
+  <Tag> model { rabbit.egg }
+  <ObjectType> { model }
+}
+<Group> Mesh.002 {
+  <VertexPool> Mesh.002 {
+    <Vertex> 0 {
+      3.96611022949 0.861908137798 -0.113579511642
+      <UV>  {
+        0.837998 0.403888
+        <Tangent> { -0.988524 0.111646 -0.101758 }
+        <Binormal> { 0.099516 0.988024 0.117281 }
+      }
+      <Normal> { -0.122562 -0.104801 0.986877 }
+    }
+    <Vertex> 1 {
+      6.40673065186 1.01765370369 0.377827942371
+      <UV>  {
+        0.803240 0.402021
+        <Tangent> { -0.859743 -0.162305 -0.484250 }
+        <Binormal> { -0.244368 0.963096 0.111056 }
+      }
+      <Normal> { -0.464187 -0.216803 0.858760 }
+    }
+    <Vertex> 2 {
+      5.8857550621 2.81278657913 0.760033249855
+      <UV>  {
+        0.785443 0.494519
+        <Tangent> { -0.959577 0.198762 -0.199262 }
+        <Binormal> { 0.075893 0.854861 0.487242 }
+      }
+      <Normal> { -0.421827 -0.420392 0.803278 }
+    }
+    <Vertex> 3 {
+      4.1042881012 3.32009768486 0.377827942371
+      <UV>  {
+        0.796167 0.503369
+        <Tangent> { -0.898366 0.434930 -0.061442 }
+        <Binormal> { 0.347024 0.788397 0.506860 }
+      }
+      <Normal> { -0.240059 -0.447981 0.861171 }
+    }
+    <Vertex> 4 {
+      3.96611022949 0.861908137798 -0.113579511642
+      <UV>  {
+        0.837998 0.403888
+        <Tangent> { -0.988524 0.111646 -0.101758 }
+        <Binormal> { 0.099516 0.988024 0.117281 }
+      }
+      <Normal> { -0.122562 -0.104801 0.986877 }
+    }
+    <Vertex> 5 {
+      4.1042881012 3.32009768486 0.377827942371
+      <UV>  {
+        0.796167 0.503369
+        <Tangent> { -0.898366 0.434930 -0.061442 }
+        <Binormal> { 0.347024 0.788397 0.506860 }
+      }
+      <Normal> { -0.240059 -0.447981 0.861171 }
+    }
+    <Vertex> 6 {
+      0.749846220016 4.60740232468 0.173797205091
+      <UV>  {
+        0.797616 0.458751
+        <Tangent> { -0.782593 0.590655 0.196662 }
+        <Binormal> { 0.594594 0.664282 0.371009 }
+      }
+      <Normal> { -0.291787 -0.253853 0.922147 }
+    }
+    <Vertex> 7 {
+      0.994594097137 0.861908972263 -0.256497681141
+      <UV>  {
+        0.872153 0.406548
+        <Tangent> { -0.996923 -0.058620 -0.052033 }
+        <Binormal> { -0.062079 0.992876 0.070831 }
+      }
+      <Normal> { -0.119846 -0.078097 0.989685 }
+    }
+    <Vertex> 8 {
+      3.96611022949 0.861908137798 -0.113579511642
+      <UV>  {
+        0.837998 0.403888
+        <Tangent> { -0.988524 0.111646 -0.101758 }
+        <Binormal> { 0.099516 0.988024 0.117281 }
+      }
+      <Normal> { -0.122562 -0.104801 0.986877 }
+    }
+    <Vertex> 9 {
+      0.994594097137 0.861908972263 -0.256497681141
+      <UV>  {
+        0.872153 0.406548
+        <Tangent> { -0.996923 -0.058620 -0.052033 }
+        <Binormal> { -0.062079 0.992876 0.070831 }
+      }
+      <Normal> { -0.119846 -0.078097 0.989685 }
+    }
+    <Vertex> 10 {
+      1.04611384869 -2.23280405998 -0.288610696793
+      <UV>  {
+        0.946690 0.354345
+        <Tangent> { -0.875632 -0.475628 -0.083944 }
+        <Binormal> { -0.470145 0.878963 -0.076077 }
+      }
+      <Normal> { -0.089663 0.038179 0.995209 }
+    }
+    <Vertex> 11 {
+      3.96610951424 -2.23280525208 -0.113579511642
+      <UV>  {
+        0.911213 0.306288
+        <Tangent> { -0.674688 -0.736385 -0.050332 }
+        <Binormal> { -0.735591 0.676419 -0.035977 }
+      }
+      <Normal> { -0.065493 -0.018159 0.997681 }
+    }
+    <Vertex> 12 {
+      3.96611022949 0.861908137798 -0.113579511642
+      <UV>  {
+        0.837998 0.403888
+        <Tangent> { -0.988524 0.111646 -0.101758 }
+        <Binormal> { 0.099516 0.988024 0.117281 }
+      }
+      <Normal> { -0.122562 -0.104801 0.986877 }
+    }
+    <Vertex> 13 {
+      3.96610951424 -2.23280525208 -0.113579511642
+      <UV>  {
+        0.911213 0.306288
+        <Tangent> { -0.674688 -0.736385 -0.050332 }
+        <Binormal> { -0.735591 0.676419 -0.035977 }
+      }
+      <Normal> { -0.065493 -0.018159 0.997681 }
+    }
+    <Vertex> 14 {
+      7.33035802841 -2.14091944695 0.196663975716
+      <UV>  {
+        0.902983 0.195288
+        <Tangent> { -0.546592 -0.726925 -0.415712 }
+        <Binormal> { -0.789561 0.610224 -0.028911 }
+      }
+      <Normal> { -0.243110 -0.270425 0.931516 }
+    }
+    <Vertex> 15 {
+      6.40673065186 1.01765370369 0.377827942371
+      <UV>  {
+        0.803240 0.402021
+        <Tangent> { -0.859743 -0.162305 -0.484250 }
+        <Binormal> { -0.244368 0.963096 0.111056 }
+      }
+      <Normal> { -0.464187 -0.216803 0.858760 }
+    }
+    <Vertex> 16 {
+      3.9661090374 -5.23526906967 -0.113579511642
+      <UV>  {
+        1.045771 0.279931
+        <Tangent> { 0.042043 -0.999019 -0.013936 }
+        <Binormal> { -0.998892 -0.041932 -0.007516 }
+      }
+      <Normal> { -0.007721 0.004700 0.999939 }
+    }
+    <Vertex> 17 {
+      7.24817657471 -5.23527002335 -0.113579511642
+      <UV>  {
+        1.003782 0.219214
+        <Tangent> { 0.400101 -0.914390 -0.061726 }
+        <Binormal> { -0.916091 -0.398342 -0.037082 }
+      }
+      <Normal> { -0.019990 -0.046999 0.998688 }
+    }
+    <Vertex> 18 {
+      7.33035802841 -2.14091944695 0.196663975716
+      <UV>  {
+        0.902983 0.195288
+        <Tangent> { -0.546592 -0.726925 -0.415712 }
+        <Binormal> { -0.789561 0.610224 -0.028911 }
+      }
+      <Normal> { -0.243110 -0.270425 0.931516 }
+    }
+    <Vertex> 19 {
+      3.96610951424 -2.23280525208 -0.113579511642
+      <UV>  {
+        0.911213 0.306288
+        <Tangent> { -0.674688 -0.736385 -0.050332 }
+        <Binormal> { -0.735591 0.676419 -0.035977 }
+      }
+      <Normal> { -0.065493 -0.018159 0.997681 }
+    }
+    <Vertex> 20 {
+      3.9661090374 -5.23526906967 -0.113579511642
+      <UV>  {
+        1.045771 0.279931
+        <Tangent> { 0.042043 -0.999019 -0.013936 }
+        <Binormal> { -0.998892 -0.041932 -0.007516 }
+      }
+      <Normal> { -0.007721 0.004700 0.999939 }
+    }
+    <Vertex> 21 {
+      3.96610951424 -2.23280525208 -0.113579511642
+      <UV>  {
+        0.911213 0.306288
+        <Tangent> { -0.674688 -0.736385 -0.050332 }
+        <Binormal> { -0.735591 0.676419 -0.035977 }
+      }
+      <Normal> { -0.065493 -0.018159 0.997681 }
+    }
+    <Vertex> 22 {
+      1.04611384869 -2.23280405998 -0.288610696793
+      <UV>  {
+        0.946690 0.354345
+        <Tangent> { -0.875632 -0.475628 -0.083944 }
+        <Binormal> { -0.470145 0.878963 -0.076077 }
+      }
+      <Normal> { -0.089663 0.038179 0.995209 }
+    }
+    <Vertex> 23 {
+      0.994593322277 -5.23526763916 -0.0991131588817
+      <UV>  {
+        1.087759 0.340649
+        <Tangent> { -0.238046 -0.968853 0.068244 }
+        <Binormal> { -0.970663 0.237776 -0.010140 }
+      }
+      <Normal> { 0.014466 0.101474 0.994720 }
+    }
+    <Vertex> 24 {
+      3.9661090374 -5.23526906967 -0.113579511642
+      <UV>  {
+        1.045771 0.279931
+        <Tangent> { 0.042043 -0.999019 -0.013936 }
+        <Binormal> { -0.998892 -0.041932 -0.007516 }
+      }
+      <Normal> { -0.007721 0.004700 0.999939 }
+    }
+    <Vertex> 25 {
+      0.994593322277 -5.23526763916 -0.0991131588817
+      <UV>  {
+        1.087759 0.340649
+        <Tangent> { -0.238046 -0.968853 0.068244 }
+        <Binormal> { -0.970663 0.237776 -0.010140 }
+      }
+      <Normal> { 0.014466 0.101474 0.994720 }
+    }
+    <Vertex> 26 {
+      0.917312920094 -8.21325302124 0.126114070415
+      <UV>  {
+        1.228829 0.326953
+        <Tangent> { -0.008216 -0.999514 0.030071 }
+        <Binormal> { -0.989785 0.012221 0.135776 }
+      }
+      <Normal> { 0.136418 0.070040 0.988159 }
+    }
+    <Vertex> 27 {
+      3.9661090374 -8.21325397491 -0.113579511642
+      <UV>  {
+        1.211000 0.289196
+        <Tangent> { 0.246561 -0.969080 -0.009570 }
+        <Binormal> { -0.968341 -0.246720 0.035092 }
+      }
+      <Normal> { 0.033082 0.012299 0.999359 }
+    }
+    <Vertex> 28 {
+      3.9661090374 -5.23526906967 -0.113579511642
+      <UV>  {
+        1.045771 0.279931
+        <Tangent> { 0.042043 -0.999019 -0.013936 }
+        <Binormal> { -0.998892 -0.041932 -0.007516 }
+      }
+      <Normal> { -0.007721 0.004700 0.999939 }
+    }
+    <Vertex> 29 {
+      3.9661090374 -8.21325397491 -0.113579511642
+      <UV>  {
+        1.211000 0.289196
+        <Tangent> { 0.246561 -0.969080 -0.009570 }
+        <Binormal> { -0.968341 -0.246720 0.035092 }
+      }
+      <Normal> { 0.033082 0.012299 0.999359 }
+    }
+    <Vertex> 30 {
+      7.09254312515 -8.21325492859 -0.113579511642
+      <UV>  {
+        1.193172 0.251440
+        <Tangent> { 0.365398 -0.930852 0.000000 }
+        <Binormal> { -0.930852 -0.365398 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 31 {
+      7.24817657471 -5.23527002335 -0.113579511642
+      <UV>  {
+        1.003782 0.219214
+        <Tangent> { 0.400101 -0.914390 -0.061726 }
+        <Binormal> { -0.916091 -0.398342 -0.037082 }
+      }
+      <Normal> { -0.019990 -0.046999 0.998688 }
+    }
+    <Vertex> 32 {
+      -1.63827764988 0.861909210682 -0.685252249241
+      <UV>  {
+        0.979831 0.420408
+        <Tangent> { -0.739449 -0.613596 -0.276975 }
+        <Binormal> { -0.615905 0.782658 -0.089560 }
+      }
+      <Normal> { -0.267953 -0.101230 0.958068 }
+    }
+    <Vertex> 33 {
+      -1.43219733238 -2.23280382156 -0.813704252243
+      <UV>  {
+        0.998927 0.378938
+        <Tangent> { -0.716232 -0.645674 -0.264797 }
+        <Binormal> { -0.597634 0.755685 -0.226141 }
+      }
+      <Normal> { -0.243263 0.096438 0.965148 }
+    }
+    <Vertex> 34 {
+      1.04611384869 -2.23280405998 -0.288610696793
+      <UV>  {
+        0.946690 0.354345
+        <Tangent> { -0.875632 -0.475628 -0.083944 }
+        <Binormal> { -0.470145 0.878963 -0.076077 }
+      }
+      <Normal> { -0.089663 0.038179 0.995209 }
+    }
+    <Vertex> 35 {
+      0.994594097137 0.861908972263 -0.256497681141
+      <UV>  {
+        0.871177 0.400688
+        <Tangent> { -0.856620 -0.485105 -0.175713 }
+        <Binormal> { -0.493823 0.868843 0.008761 }
+      }
+      <Normal> { -0.119846 -0.078097 0.989685 }
+    }
+    <Vertex> 36 {
+      -1.63827764988 0.861909210682 -0.685252249241
+      <UV>  {
+        0.979831 0.420408
+        <Tangent> { -0.739449 -0.613596 -0.276975 }
+        <Binormal> { -0.615905 0.782658 -0.089560 }
+      }
+      <Normal> { -0.267953 -0.101230 0.958068 }
+    }
+    <Vertex> 37 {
+      0.994594097137 0.861908972263 -0.256497681141
+      <UV>  {
+        0.871177 0.400688
+        <Tangent> { -0.856620 -0.485105 -0.175713 }
+        <Binormal> { -0.493823 0.868843 0.008761 }
+      }
+      <Normal> { -0.119846 -0.078097 0.989685 }
+    }
+    <Vertex> 38 {
+      0.749846220016 4.60740232468 0.173797205091
+      <UV>  {
+        0.795663 0.447032
+        <Tangent> { 0.643032 0.047219 0.764382 }
+        <Binormal> { 0.237583 -0.816008 -0.149458 }
+      }
+      <Normal> { -0.291787 -0.253853 0.922147 }
+    }
+    <Vertex> 39 {
+      -2.21819424629 4.88817644119 -0.256497681141
+      <UV>  {
+        0.960734 0.461878
+        <Tangent> { -0.832722 -0.494531 -0.249024 }
+        <Binormal> { -0.502826 0.863452 -0.033287 }
+      }
+      <Normal> { -0.249947 -0.108463 0.962157 }
+    }
+    <Vertex> 40 {
+      -1.63827764988 0.861909210682 -0.685252249241
+      <UV>  {
+        0.979831 0.420408
+        <Tangent> { -0.739449 -0.613596 -0.276975 }
+        <Binormal> { -0.615905 0.782658 -0.089560 }
+      }
+      <Normal> { -0.267953 -0.101230 0.958068 }
+    }
+    <Vertex> 41 {
+      -2.21819424629 4.88817644119 -0.256497681141
+      <UV>  {
+        0.960734 0.461878
+        <Tangent> { -0.832722 -0.494531 -0.249024 }
+        <Binormal> { -0.502826 0.863452 -0.033287 }
+      }
+      <Normal> { -0.249947 -0.108463 0.962157 }
+    }
+    <Vertex> 42 {
+      -4.15847110748 4.82189369202 -0.862862765789
+      <UV>  {
+        1.125806 0.476725
+        <Tangent> { -0.611201 -0.701180 -0.367125 }
+        <Binormal> { -0.575782 0.698848 -0.376167 }
+      }
+      <Normal> { -0.640278 -0.119083 0.758812 }
+    }
+    <Vertex> 43 {
+      -3.62708950043 0.81865388155 -1.50599467754
+      <UV>  {
+        1.088485 0.440128
+        <Tangent> { -0.623004 -0.691314 -0.365993 }
+        <Binormal> { -0.595011 0.712550 -0.333069 }
+      }
+      <Normal> { -0.593921 -0.124424 0.794824 }
+    }
+    <Vertex> 44 {
+      -1.63827764988 0.861909210682 -0.685252249241
+      <UV>  {
+        0.979831 0.420408
+        <Tangent> { -0.739449 -0.613596 -0.276975 }
+        <Binormal> { -0.615905 0.782658 -0.089560 }
+      }
+      <Normal> { -0.267953 -0.101230 0.958068 }
+    }
+    <Vertex> 45 {
+      -3.62708950043 0.81865388155 -1.50599467754
+      <UV>  {
+        1.088485 0.440128
+        <Tangent> { -0.623004 -0.691314 -0.365993 }
+        <Binormal> { -0.595011 0.712550 -0.333069 }
+      }
+      <Normal> { -0.593921 -0.124424 0.794824 }
+    }
+    <Vertex> 46 {
+      -3.31796836853 -2.2760591507 -1.65932631493
+      <UV>  {
+        1.051165 0.403532
+        <Tangent> { -0.661649 -0.669186 -0.338245 }
+        <Binormal> { -0.503866 0.730861 -0.460316 }
+      }
+      <Normal> { -0.558153 0.131199 0.819269 }
+    }
+    <Vertex> 47 {
+      -1.43219733238 -2.23280382156 -0.813704252243
+      <UV>  {
+        0.998927 0.378938
+        <Tangent> { -0.716232 -0.645674 -0.264797 }
+        <Binormal> { -0.597634 0.755685 -0.226141 }
+      }
+      <Normal> { -0.243263 0.096438 0.965148 }
+    }
+    <Vertex> 48 {
+      -3.13362050056 10.6853027344 -0.113579511642
+      <UV>  {
+        1.028410 0.238402
+        <Tangent> { 0.965651 -0.033098 0.257725 }
+        <Binormal> { -0.021159 -0.998340 -0.048932 }
+      }
+      <Normal> { -0.279031 -0.041108 0.959380 }
+    }
+    <Vertex> 49 {
+      -2.21819424629 4.88817644119 -0.256497681141
+      <UV>  {
+        1.087687 0.474574
+        <Tangent> { 0.939920 -0.287487 0.184123 }
+        <Binormal> { -0.256637 -0.950372 -0.173803 }
+      }
+      <Normal> { -0.249947 -0.108463 0.962157 }
+    }
+    <Vertex> 50 {
+      0.749846220016 4.60740232468 0.173797205091
+      <UV>  {
+        0.795663 0.447032
+        <Tangent> { 0.643032 0.047219 0.764382 }
+        <Binormal> { 0.237583 -0.816008 -0.149458 }
+      }
+      <Normal> { -0.291787 -0.253853 0.922147 }
+    }
+    <Vertex> 51 {
+      -1.2541372776 10.6149988174 0.351220369339
+      <UV>  {
+        0.847657 0.230990
+        <Tangent> { 0.865105 -0.187209 0.465345 }
+        <Binormal> { -0.139522 -0.975418 -0.133033 }
+      }
+      <Normal> { -0.386670 -0.070101 0.919523 }
+    }
+    <Vertex> 52 {
+      -3.13362050056 10.6853027344 -0.113579511642
+      <UV>  {
+        1.028410 0.238402
+        <Tangent> { 0.965651 -0.033098 0.257725 }
+        <Binormal> { -0.021159 -0.998340 -0.048932 }
+      }
+      <Normal> { -0.279031 -0.041108 0.959380 }
+    }
+    <Vertex> 53 {
+      -1.2541372776 10.6149988174 0.351220369339
+      <UV>  {
+        0.847657 0.230990
+        <Tangent> { 0.865105 -0.187209 0.465345 }
+        <Binormal> { -0.139522 -0.975418 -0.133033 }
+      }
+      <Normal> { -0.386670 -0.070101 0.919523 }
+    }
+    <Vertex> 54 {
+      -1.77140462399 17.0585784912 0.171120867133
+      <UV>  {
+        0.809003 0.009555
+        <Tangent> { 0.831943 -0.379528 0.404757 }
+        <Binormal> { -0.410178 -0.897710 0.001331 }
+      }
+      <Normal> { -0.229163 0.106143 0.967559 }
+    }
+    <Vertex> 55 {
+      -3.67521095276 16.53840065 -0.113579511642
+      <UV>  {
+        0.969133 0.002231
+        <Tangent> { 0.896390 0.360375 0.258099 }
+        <Binormal> { 0.342306 -0.932700 0.113452 }
+      }
+      <Normal> { -0.279214 0.014313 0.960112 }
+    }
+    <Vertex> 56 {
+      -3.13362050056 10.6853027344 -0.113579511642
+      <UV>  {
+        1.028410 0.238402
+        <Tangent> { 0.965651 -0.033098 0.257725 }
+        <Binormal> { -0.021159 -0.998340 -0.048932 }
+      }
+      <Normal> { -0.279031 -0.041108 0.959380 }
+    }
+    <Vertex> 57 {
+      -3.67521095276 16.53840065 -0.113579511642
+      <UV>  {
+        0.969133 0.002231
+        <Tangent> { 0.896390 0.360375 0.258099 }
+        <Binormal> { 0.342306 -0.932700 0.113452 }
+      }
+      <Normal> { -0.279214 0.014313 0.960112 }
+    }
+    <Vertex> 58 {
+      -4.65152549744 16.2772274017 -0.64848524332
+      <UV>  {
+        1.129264 -0.005093
+        <Tangent> { 0.892345 0.169146 0.418462 }
+        <Binormal> { 0.109739 -0.903039 0.131004 }
+      }
+      <Normal> { -0.751640 0.004334 0.659505 }
+    }
+    <Vertex> 59 {
+      -4.51612854004 10.5499382019 -0.648485422134
+      <UV>  {
+        1.254488 0.248511
+        <Tangent> { 0.932626 -0.062254 0.355434 }
+        <Binormal> { -0.029099 -0.906861 -0.082485 }
+      }
+      <Normal> { -0.711875 -0.040925 0.701071 }
+    }
+    <Vertex> 60 {
+      -3.13362050056 10.6853027344 -0.113579511642
+      <UV>  {
+        1.028410 0.238402
+        <Tangent> { 0.965651 -0.033098 0.257725 }
+        <Binormal> { -0.021159 -0.998340 -0.048932 }
+      }
+      <Normal> { -0.279031 -0.041108 0.959380 }
+    }
+    <Vertex> 61 {
+      -4.51612854004 10.5499382019 -0.648485422134
+      <UV>  {
+        1.254488 0.248511
+        <Tangent> { 0.932626 -0.062254 0.355434 }
+        <Binormal> { -0.029099 -0.906861 -0.082485 }
+      }
+      <Normal> { -0.711875 -0.040925 0.701071 }
+    }
+    <Vertex> 62 {
+      -4.15847110748 4.82189369202 -0.862862765789
+      <UV>  {
+        1.379712 0.502115
+        <Tangent> { 0.934702 -0.177220 0.308100 }
+        <Binormal> { -0.097787 -0.906533 -0.224777 }
+      }
+      <Normal> { -0.640278 -0.119083 0.758812 }
+    }
+    <Vertex> 63 {
+      -2.21819424629 4.88817644119 -0.256497681141
+      <UV>  {
+        1.087687 0.474574
+        <Tangent> { 0.939920 -0.287487 0.184123 }
+        <Binormal> { -0.256637 -0.950372 -0.173803 }
+      }
+      <Normal> { -0.249947 -0.108463 0.962157 }
+    }
+    <Vertex> 64 {
+      -1.63827872276 -5.23526763916 -0.0557141005993
+      <UV>  {
+        0.365636 0.783430
+        <Tangent> { 0.936356 -0.302703 0.177787 }
+        <Binormal> { -0.337995 -0.913587 0.224640 }
+      }
+      <Normal> { -0.071078 0.262886 0.962188 }
+    }
+    <Vertex> 65 {
+      -1.94740009308 -8.21325111389 0.845194041729
+      <UV>  {
+        0.362298 0.849152
+        <Tangent> { 0.815142 -0.577978 -0.038521 }
+        <Binormal> { -0.556363 -0.799513 0.222889 }
+      }
+      <Normal> { 0.127689 0.182897 0.974792 }
+    }
+    <Vertex> 66 {
+      0.917312920094 -8.21325302124 0.126114070415
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.966551 -0.229329 -0.114838 }
+        <Binormal> { -0.218570 -0.970772 0.098982 }
+      }
+      <Normal> { 0.136418 0.070040 0.988159 }
+    }
+    <Vertex> 67 {
+      0.994593322277 -5.23526763916 -0.0991131588817
+      <UV>  {
+        0.292059 0.764826
+        <Tangent> { 0.888169 -0.459201 0.017041 }
+        <Binormal> { -0.458506 -0.883233 0.096769 }
+      }
+      <Normal> { 0.014466 0.101474 0.994720 }
+    }
+    <Vertex> 68 {
+      -1.63827872276 -5.23526763916 -0.0557141005993
+      <UV>  {
+        0.365636 0.783430
+        <Tangent> { 0.936356 -0.302703 0.177787 }
+        <Binormal> { -0.337995 -0.913587 0.224640 }
+      }
+      <Normal> { -0.071078 0.262886 0.962188 }
+    }
+    <Vertex> 69 {
+      0.994593322277 -5.23526763916 -0.0991131588817
+      <UV>  {
+        0.292059 0.764826
+        <Tangent> { 0.888169 -0.459201 0.017041 }
+        <Binormal> { -0.458506 -0.883233 0.096769 }
+      }
+      <Normal> { 0.014466 0.101474 0.994720 }
+    }
+    <Vertex> 70 {
+      1.04611384869 -2.23280405998 -0.288610696793
+      <UV>  {
+        0.318442 0.723502
+        <Tangent> { 0.977632 -0.168320 0.126109 }
+        <Binormal> { -0.172329 -0.984255 0.022233 }
+      }
+      <Normal> { -0.089663 0.038179 0.995209 }
+    }
+    <Vertex> 71 {
+      -1.43219733238 -2.23280382156 -0.813704252243
+      <UV>  {
+        0.369694 0.721187
+        <Tangent> { 0.956172 0.058193 0.286966 }
+        <Binormal> { 0.028490 -0.992655 0.106368 }
+      }
+      <Normal> { -0.243263 0.096438 0.965148 }
+    }
+    <Vertex> 72 {
+      -1.63827872276 -5.23526763916 -0.0557141005993
+      <UV>  {
+        0.365636 0.783430
+        <Tangent> { 0.936356 -0.302703 0.177787 }
+        <Binormal> { -0.337995 -0.913587 0.224640 }
+      }
+      <Normal> { -0.071078 0.262886 0.962188 }
+    }
+    <Vertex> 73 {
+      -1.43219733238 -2.23280382156 -0.813704252243
+      <UV>  {
+        0.369694 0.721187
+        <Tangent> { 0.956172 0.058193 0.286966 }
+        <Binormal> { 0.028490 -0.992655 0.106368 }
+      }
+      <Normal> { -0.243263 0.096438 0.965148 }
+    }
+    <Vertex> 74 {
+      -3.31796836853 -2.2760591507 -1.65932631493
+      <UV>  {
+        0.420946 0.718873
+        <Tangent> { 0.929002 -0.086361 0.359856 }
+        <Binormal> { -0.117966 -0.961958 0.073681 }
+      }
+      <Normal> { -0.558153 0.131199 0.819269 }
+    }
+    <Vertex> 75 {
+      -3.62709021568 -5.27852344513 -0.40430277586
+      <UV>  {
+        0.439214 0.802035
+        <Tangent> { 0.903026 -0.297141 0.310245 }
+        <Binormal> { -0.353578 -0.869467 0.196411 }
+      }
+      <Normal> { -0.467360 0.371288 0.802271 }
+    }
+    <Vertex> 76 {
+      -1.63827872276 -5.23526763916 -0.0557141005993
+      <UV>  {
+        0.365636 0.783430
+        <Tangent> { 0.936356 -0.302703 0.177787 }
+        <Binormal> { -0.337995 -0.913587 0.224640 }
+      }
+      <Normal> { -0.071078 0.262886 0.962188 }
+    }
+    <Vertex> 77 {
+      -3.62709021568 -5.27852344513 -0.40430277586
+      <UV>  {
+        0.439214 0.802035
+        <Tangent> { 0.903026 -0.297141 0.310245 }
+        <Binormal> { -0.353578 -0.869467 0.196411 }
+      }
+      <Normal> { -0.467360 0.371288 0.802271 }
+    }
+    <Vertex> 78 {
+      -4.1140127182 -8.25123500824 1.05926406384
+      <UV>  {
+        0.457482 0.885197
+        <Tangent> { 0.860454 -0.501535 0.089893 }
+        <Binormal> { -0.461600 -0.782938 0.050221 }
+      }
+      <Normal> { -0.401410 0.292337 0.867977 }
+    }
+    <Vertex> 79 {
+      -1.94740009308 -8.21325111389 0.845194041729
+      <UV>  {
+        0.362298 0.849152
+        <Tangent> { 0.815142 -0.577978 -0.038521 }
+        <Binormal> { -0.556363 -0.799513 0.222889 }
+      }
+      <Normal> { 0.127689 0.182897 0.974792 }
+    }
+    <Vertex> 80 {
+      10.8127031326 -5.23527050018 -0.113579511642
+      <UV>  {
+        0.948945 0.097157
+        <Tangent> { -0.205325 -0.975732 -0.076077 }
+        <Binormal> { -0.978665 0.204722 0.015652 }
+      }
+      <Normal> { 0.000763 -0.072604 0.997345 }
+    }
+    <Vertex> 81 {
+      11.3891267776 -2.91355037689 0.351220369339
+      <UV>  {
+        0.818862 0.096425
+        <Tangent> { -0.111593 -0.783677 -0.611062 }
+        <Binormal> { -0.983175 0.103988 0.046186 }
+      }
+      <Normal> { -0.011414 -0.494034 0.869350 }
+    }
+    <Vertex> 82 {
+      7.33035802841 -2.14091944695 0.196663975716
+      <UV>  {
+        0.902983 0.195288
+        <Tangent> { -0.546592 -0.726925 -0.415712 }
+        <Binormal> { -0.789561 0.610224 -0.028911 }
+      }
+      <Normal> { -0.243110 -0.270425 0.931516 }
+    }
+    <Vertex> 83 {
+      7.24817657471 -5.23527002335 -0.113579511642
+      <UV>  {
+        0.979368 0.187964
+        <Tangent> { -0.093576 -0.993275 -0.068172 }
+        <Binormal> { -0.995176 0.094816 -0.015457 }
+      }
+      <Normal> { -0.019990 -0.046999 0.998688 }
+    }
+    <Vertex> 84 {
+      10.8127031326 -5.23527050018 -0.113579511642
+      <UV>  {
+        0.948945 0.097157
+        <Tangent> { -0.205325 -0.975732 -0.076077 }
+        <Binormal> { -0.978665 0.204722 0.015652 }
+      }
+      <Normal> { 0.000763 -0.072604 0.997345 }
+    }
+    <Vertex> 85 {
+      7.24817657471 -5.23527002335 -0.113579511642
+      <UV>  {
+        0.979368 0.187964
+        <Tangent> { -0.093576 -0.993275 -0.068172 }
+        <Binormal> { -0.995176 0.094816 -0.015457 }
+      }
+      <Normal> { -0.019990 -0.046999 0.998688 }
+    }
+    <Vertex> 86 {
+      7.09254312515 -8.21325492859 -0.113579511642
+      <UV>  {
+        1.144344 0.188940
+        <Tangent> { -0.117221 -0.993106 0.000000 }
+        <Binormal> { -0.993106 0.117221 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 87 {
+      10.1901702881 -8.21325492859 -0.113579511642
+      <UV>  {
+        1.116362 0.098134
+        <Tangent> { -0.194319 -0.980938 0.000000 }
+        <Binormal> { -0.980938 0.194319 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 88 {
+      10.8127031326 -5.23527050018 -0.113579511642
+      <UV>  {
+        0.948945 0.097157
+        <Tangent> { -0.205325 -0.975732 -0.076077 }
+        <Binormal> { -0.978665 0.204722 0.015652 }
+      }
+      <Normal> { 0.000763 -0.072604 0.997345 }
+    }
+    <Vertex> 89 {
+      10.1901702881 -8.21325492859 -0.113579511642
+      <UV>  {
+        1.116362 0.098134
+        <Tangent> { -0.194319 -0.980938 0.000000 }
+        <Binormal> { -0.980938 0.194319 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 90 {
+      13.157037735 -8.21325492859 -0.113579511642
+      <UV>  {
+        1.088380 0.007328
+        <Tangent> { -0.265446 -0.964126 0.000000 }
+        <Binormal> { -0.964126 0.265446 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 91 {
+      14.2464704514 -5.23527050018 -0.113579511642
+      <UV>  {
+        0.918523 0.006351
+        <Tangent> { -0.360757 -0.931605 -0.044348 }
+        <Binormal> { -0.932404 0.359156 0.040131 }
+      }
+      <Normal> { 0.021699 -0.055208 0.998230 }
+    }
+    <Vertex> 92 {
+      10.8127031326 -5.23527050018 -0.113579511642
+      <UV>  {
+        0.948945 0.097157
+        <Tangent> { -0.205325 -0.975732 -0.076077 }
+        <Binormal> { -0.978665 0.204722 0.015652 }
+      }
+      <Normal> { 0.000763 -0.072604 0.997345 }
+    }
+    <Vertex> 93 {
+      14.2464704514 -5.23527050018 -0.113579511642
+      <UV>  {
+        0.918523 0.006351
+        <Tangent> { -0.360757 -0.931605 -0.044348 }
+        <Binormal> { -0.932404 0.359156 0.040131 }
+      }
+      <Normal> { 0.021699 -0.055208 0.998230 }
+    }
+    <Vertex> 94 {
+      15.5468168259 -2.23269701004 0.171120867133
+      <UV>  {
+        0.748665 0.005374
+        <Tangent> { 0.505968 -0.446094 -0.738239 }
+        <Binormal> { -0.634717 -0.642327 -0.046879 }
+      }
+      <Normal> { 0.237251 -0.301828 0.923338 }
+    }
+    <Vertex> 95 {
+      11.3891267776 -2.91355037689 0.351220369339
+      <UV>  {
+        0.818862 0.096425
+        <Tangent> { -0.111593 -0.783677 -0.611062 }
+        <Binormal> { -0.983175 0.103988 0.046186 }
+      }
+      <Normal> { -0.011414 -0.494034 0.869350 }
+    }
+    <Vertex> 96 {
+      2.8829305172 22.0778141022 -0.113579511642
+      <UV>  {
+        0.437479 0.084660
+        <Tangent> { 0.989673 0.143146 0.007586 }
+        <Binormal> { 0.142092 -0.986604 0.079527 }
+      }
+      <Normal> { -0.025544 0.076662 0.996704 }
+    }
+    <Vertex> 97 {
+      -0.73321723938 21.3429775238 -0.113579511642
+      <UV>  {
+        0.468652 0.089817
+        <Tangent> { 0.987920 0.154938 0.002732 }
+        <Binormal> { 0.154583 -0.986482 0.046796 }
+      }
+      <Normal> { -0.036409 0.041658 0.998444 }
+    }
+    <Vertex> 98 {
+      -1.77140462399 17.0585784912 0.171120867133
+      <UV>  {
+        0.551463 0.169949
+        <Tangent> { 0.968990 0.241594 0.051874 }
+        <Binormal> { 0.228250 -0.949442 0.158216 }
+      }
+      <Normal> { -0.229163 0.106143 0.967559 }
+    }
+    <Vertex> 99 {
+      2.50994849205 19.507982254 0.324613153934
+      <UV>  {
+        0.457135 0.147978
+        <Tangent> { 0.969698 0.235553 0.064808 }
+        <Binormal> { 0.202780 -0.923982 0.324209 }
+      }
+      <Normal> { -0.134342 0.301706 0.943876 }
+    }
+    <Vertex> 100 {
+      2.8829305172 22.0778141022 -0.113579511642
+      <UV>  {
+        0.437479 0.084660
+        <Tangent> { 0.989673 0.143146 0.007586 }
+        <Binormal> { 0.142092 -0.986604 0.079527 }
+      }
+      <Normal> { -0.025544 0.076662 0.996704 }
+    }
+    <Vertex> 101 {
+      2.50994849205 19.507982254 0.324613153934
+      <UV>  {
+        0.457135 0.147978
+        <Tangent> { 0.969698 0.235553 0.064808 }
+        <Binormal> { 0.202780 -0.923982 0.324209 }
+      }
+      <Normal> { -0.134342 0.301706 0.943876 }
+    }
+    <Vertex> 102 {
+      7.06949853897 20.5617847443 0.324613153934
+      <UV>  {
+        0.376328 0.136154
+        <Tangent> { 0.993252 0.113493 0.023883 }
+        <Binormal> { 0.094905 -0.913710 0.395077 }
+      }
+      <Normal> { -0.063417 0.390515 0.918393 }
+    }
+    <Vertex> 103 {
+      7.1848950386 22.6756076813 -0.113579511642
+      <UV>  {
+        0.368779 0.081997
+        <Tangent> { 0.995183 0.098032 0.000070 }
+        <Binormal> { 0.097526 -0.990112 0.100737 }
+      }
+      <Normal> { -0.012024 0.100040 0.994903 }
+    }
+    <Vertex> 104 {
+      2.8829305172 22.0778141022 -0.113579511642
+      <UV>  {
+        0.437479 0.084660
+        <Tangent> { 0.989673 0.143146 0.007586 }
+        <Binormal> { 0.142092 -0.986604 0.079527 }
+      }
+      <Normal> { -0.025544 0.076662 0.996704 }
+    }
+    <Vertex> 105 {
+      7.1848950386 22.6756076813 -0.113579511642
+      <UV>  {
+        0.368779 0.081997
+        <Tangent> { 0.995183 0.098032 0.000070 }
+        <Binormal> { 0.097526 -0.990112 0.100737 }
+      }
+      <Normal> { -0.012024 0.100040 0.994903 }
+    }
+    <Vertex> 106 {
+      7.45569086075 24.9480304718 -0.113579511642
+      <UV>  {
+        0.358657 0.028822
+        <Tangent> { 0.995482 0.094947 0.000000 }
+        <Binormal> { 0.094947 -0.995482 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 107 {
+      3.96611166 24.9480304718 -0.113579511642
+      <UV>  {
+        0.405921 0.020212
+        <Tangent> { 0.991842 0.127471 0.000000 }
+        <Binormal> { 0.127471 -0.991842 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 108 {
+      2.8829305172 22.0778141022 -0.113579511642
+      <UV>  {
+        0.437479 0.084660
+        <Tangent> { 0.989673 0.143146 0.007586 }
+        <Binormal> { 0.142092 -0.986604 0.079527 }
+      }
+      <Normal> { -0.025544 0.076662 0.996704 }
+    }
+    <Vertex> 109 {
+      3.96611166 24.9480304718 -0.113579511642
+      <UV>  {
+        0.405921 0.020212
+        <Tangent> { 0.991842 0.127471 0.000000 }
+        <Binormal> { 0.127471 -0.991842 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 110 {
+      0.891554474831 24.7353534698 -0.113579511642
+      <UV>  {
+        0.422818 0.015164
+        <Tangent> { 0.987034 0.160513 0.000000 }
+        <Binormal> { 0.160513 -0.987034 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 111 {
+      -0.73321723938 21.3429775238 -0.113579511642
+      <UV>  {
+        0.468652 0.089817
+        <Tangent> { 0.987920 0.154938 0.002732 }
+        <Binormal> { 0.154583 -0.986482 0.046796 }
+      }
+      <Normal> { -0.036409 0.041658 0.998444 }
+    }
+    <Vertex> 112 {
+      -3.13362050056 20.732585907 -0.113579511642
+      <UV>  {
+        0.452598 0.093703
+        <Tangent> { 0.982071 0.176258 0.066856 }
+        <Binormal> { 0.169936 -0.974325 0.072442 }
+      }
+      <Normal> { -0.204230 0.037111 0.978210 }
+    }
+    <Vertex> 113 {
+      -4.51612854004 20.2782020569 -0.648485422134
+      <UV>  {
+        0.412930 0.096953
+        <Tangent> { 0.914190 0.193502 0.356109 }
+        <Binormal> { 0.119970 -0.892756 0.177123 }
+      }
+      <Normal> { -0.714652 0.042482 0.698172 }
+    }
+    <Vertex> 114 {
+      -4.65152549744 16.2772274017 -0.64848524332
+      <UV>  {
+        0.420504 0.167807
+        <Tangent> { 0.895878 0.211726 0.390608 }
+        <Binormal> { 0.137942 -0.884433 0.163024 }
+      }
+      <Normal> { -0.751640 0.004334 0.659505 }
+    }
+    <Vertex> 115 {
+      -3.67521095276 16.53840065 -0.113579511642
+      <UV>  {
+        0.485983 0.168878
+        <Tangent> { 0.921778 0.286788 0.260915 }
+        <Binormal> { 0.271615 -0.957862 0.093269 }
+      }
+      <Normal> { -0.279214 0.014313 0.960112 }
+    }
+    <Vertex> 116 {
+      -3.13362050056 20.732585907 -0.113579511642
+      <UV>  {
+        0.452598 0.093703
+        <Tangent> { 0.982071 0.176258 0.066856 }
+        <Binormal> { 0.169936 -0.974325 0.072442 }
+      }
+      <Normal> { -0.204230 0.037111 0.978210 }
+    }
+    <Vertex> 117 {
+      -3.67521095276 16.53840065 -0.113579511642
+      <UV>  {
+        0.485983 0.168878
+        <Tangent> { 0.921778 0.286788 0.260915 }
+        <Binormal> { 0.271615 -0.957862 0.093269 }
+      }
+      <Normal> { -0.279214 0.014313 0.960112 }
+    }
+    <Vertex> 118 {
+      -1.77140462399 17.0585784912 0.171120867133
+      <UV>  {
+        0.551463 0.169949
+        <Tangent> { 0.968990 0.241594 0.051874 }
+        <Binormal> { 0.228250 -0.949442 0.158216 }
+      }
+      <Normal> { -0.229163 0.106143 0.967559 }
+    }
+    <Vertex> 119 {
+      -0.73321723938 21.3429775238 -0.113579511642
+      <UV>  {
+        0.468652 0.089817
+        <Tangent> { 0.987920 0.154938 0.002732 }
+        <Binormal> { 0.154583 -0.986482 0.046796 }
+      }
+      <Normal> { -0.036409 0.041658 0.998444 }
+    }
+    <Vertex> 120 {
+      -3.13362050056 20.732585907 -0.113579511642
+      <UV>  {
+        0.452598 0.093703
+        <Tangent> { 0.982071 0.176258 0.066856 }
+        <Binormal> { 0.169936 -0.974325 0.072442 }
+      }
+      <Normal> { -0.204230 0.037111 0.978210 }
+    }
+    <Vertex> 121 {
+      -0.73321723938 21.3429775238 -0.113579511642
+      <UV>  {
+        0.468652 0.089817
+        <Tangent> { 0.987920 0.154938 0.002732 }
+        <Binormal> { 0.154583 -0.986482 0.046796 }
+      }
+      <Normal> { -0.036409 0.041658 0.998444 }
+    }
+    <Vertex> 122 {
+      0.891554474831 24.7353534698 -0.113579511642
+      <UV>  {
+        0.422818 0.015164
+        <Tangent> { 0.987034 0.160513 0.000000 }
+        <Binormal> { 0.160513 -0.987034 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 123 {
+      -2.05043983459 24.0973129272 -0.113579511642
+      <UV>  {
+        0.419213 0.018529
+        <Tangent> { 0.985253 0.165230 0.044454 }
+        <Binormal> { 0.161742 -0.979804 0.057062 }
+      }
+      <Normal> { -0.154088 0.032075 0.987518 }
+    }
+    <Vertex> 124 {
+      -3.13362050056 20.732585907 -0.113579511642
+      <UV>  {
+        0.452598 0.093703
+        <Tangent> { 0.982071 0.176258 0.066856 }
+        <Binormal> { 0.169936 -0.974325 0.072442 }
+      }
+      <Normal> { -0.204230 0.037111 0.978210 }
+    }
+    <Vertex> 125 {
+      -2.05043983459 24.0973129272 -0.113579511642
+      <UV>  {
+        0.419213 0.018529
+        <Tangent> { 0.985253 0.165230 0.044454 }
+        <Binormal> { 0.161742 -0.979804 0.057062 }
+      }
+      <Normal> { -0.154088 0.032075 0.987518 }
+    }
+    <Vertex> 126 {
+      -4.2453327179 23.4160194397 -0.648485422134
+      <UV>  {
+        0.405356 0.026100
+        <Tangent> { 0.947692 0.168615 0.271015 }
+        <Binormal> { 0.109005 -0.881551 0.167295 }
+      }
+      <Normal> { -0.672445 0.056887 0.737907 }
+    }
+    <Vertex> 127 {
+      -4.51612854004 20.2782020569 -0.648485422134
+      <UV>  {
+        0.412930 0.096953
+        <Tangent> { 0.914190 0.193502 0.356109 }
+        <Binormal> { 0.119970 -0.892756 0.177123 }
+      }
+      <Normal> { -0.714652 0.042482 0.698172 }
+    }
+    <Vertex> 128 {
+      11.6427497864 22.8748703003 -0.113579511642
+      <UV>  {
+        0.272253 0.085595
+        <Tangent> { 0.998580 0.051847 -0.012279 }
+        <Binormal> { 0.052715 -0.994856 0.086279 }
+      }
+      <Normal> { 0.006989 0.086764 0.996185 }
+    }
+    <Vertex> 129 {
+      7.1848950386 22.6756076813 -0.113579511642
+      <UV>  {
+        0.368779 0.081997
+        <Tangent> { 0.995183 0.098032 0.000070 }
+        <Binormal> { 0.097526 -0.990112 0.100737 }
+      }
+      <Normal> { -0.012024 0.100040 0.994903 }
+    }
+    <Vertex> 130 {
+      7.06949853897 20.5617847443 0.324613153934
+      <UV>  {
+        0.376328 0.136154
+        <Tangent> { 0.993252 0.113493 0.023883 }
+        <Binormal> { 0.094905 -0.913710 0.395077 }
+      }
+      <Normal> { -0.063417 0.390515 0.918393 }
+    }
+    <Vertex> 131 {
+      11.554145813 20.9130516052 0.324613153934
+      <UV>  {
+        0.276622 0.136535
+        <Tangent> { 0.997085 0.023380 -0.072629 }
+        <Binormal> { 0.048430 -0.929468 0.365667 }
+      }
+      <Normal> { 0.053591 0.367992 0.928281 }
+    }
+    <Vertex> 132 {
+      11.6427497864 22.8748703003 -0.113579511642
+      <UV>  {
+        0.272253 0.085595
+        <Tangent> { 0.998580 0.051847 -0.012279 }
+        <Binormal> { 0.052715 -0.994856 0.086279 }
+      }
+      <Normal> { 0.006989 0.086764 0.996185 }
+    }
+    <Vertex> 133 {
+      11.554145813 20.9130516052 0.324613153934
+      <UV>  {
+        0.276622 0.136535
+        <Tangent> { 0.997085 0.023380 -0.072629 }
+        <Binormal> { 0.048430 -0.929468 0.365667 }
+      }
+      <Normal> { 0.053591 0.367992 0.928281 }
+    }
+    <Vertex> 134 {
+      15.7724323273 19.5616073608 0.166863754392
+      <UV>  {
+        0.164916 0.168991
+        <Tangent> { 0.967200 -0.129109 -0.218756 }
+        <Binormal> { -0.087036 -0.977485 0.192090 }
+      }
+      <Normal> { 0.239296 0.166662 0.956511 }
+    }
+    <Vertex> 135 {
+      15.699048996 22.8748703003 -0.113579511642
+      <UV>  {
+        0.174351 0.089075
+        <Tangent> { 0.999996 -0.002838 0.000116 }
+        <Binormal> { -0.002840 -0.998773 0.043979 }
+      }
+      <Normal> { 0.022248 0.043916 0.998779 }
+    }
+    <Vertex> 136 {
+      11.6427497864 22.8748703003 -0.113579511642
+      <UV>  {
+        0.272253 0.085595
+        <Tangent> { 0.998580 0.051847 -0.012279 }
+        <Binormal> { 0.052715 -0.994856 0.086279 }
+      }
+      <Normal> { 0.006989 0.086764 0.996185 }
+    }
+    <Vertex> 137 {
+      15.699048996 22.8748703003 -0.113579511642
+      <UV>  {
+        0.174351 0.089075
+        <Tangent> { 0.999996 -0.002838 0.000116 }
+        <Binormal> { -0.002840 -0.998773 0.043979 }
+      }
+      <Normal> { 0.022248 0.043916 0.998779 }
+    }
+    <Vertex> 138 {
+      15.6990499496 24.9480285645 -0.113579511642
+      <UV>  {
+        0.175651 0.039911
+        <Tangent> { 0.999999 0.001019 0.000000 }
+        <Binormal> { 0.001019 -0.999999 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 139 {
+      11.6427497864 24.9480285645 -0.113579511642
+      <UV>  {
+        0.271160 0.036143
+        <Tangent> { 0.998372 0.057042 0.000000 }
+        <Binormal> { 0.057042 -0.998372 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 140 {
+      11.6427497864 22.8748703003 -0.113579511642
+      <UV>  {
+        0.272253 0.085595
+        <Tangent> { 0.998580 0.051847 -0.012279 }
+        <Binormal> { 0.052715 -0.994856 0.086279 }
+      }
+      <Normal> { 0.006989 0.086764 0.996185 }
+    }
+    <Vertex> 141 {
+      11.6427497864 24.9480285645 -0.113579511642
+      <UV>  {
+        0.271160 0.036143
+        <Tangent> { 0.998372 0.057042 0.000000 }
+        <Binormal> { 0.057042 -0.998372 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 142 {
+      7.45569086075 24.9480304718 -0.113579511642
+      <UV>  {
+        0.358657 0.028822
+        <Tangent> { 0.995482 0.094947 0.000000 }
+        <Binormal> { 0.094947 -0.995482 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 143 {
+      7.1848950386 22.6756076813 -0.113579511642
+      <UV>  {
+        0.368779 0.081997
+        <Tangent> { 0.995183 0.098032 0.000070 }
+        <Binormal> { 0.097526 -0.990112 0.100737 }
+      }
+      <Normal> { -0.012024 0.100040 0.994903 }
+    }
+    <Vertex> 144 {
+      18.7963485718 0.861906945705 -0.113579511642
+      <UV>  {
+        -0.010210 0.566253
+        <Tangent> { 0.968557 -0.233976 -0.084575 }
+        <Binormal> { -0.234339 -0.972107 0.005665 }
+      }
+      <Normal> { 0.086367 -0.015015 0.996124 }
+    }
+    <Vertex> 145 {
+      18.7963485718 5.31740617752 -0.113579511642
+      <UV>  {
+        0.013440 0.470159
+        <Tangent> { 0.968881 -0.229543 -0.092631 }
+        <Binormal> { -0.228373 -0.973277 0.023132 }
+      }
+      <Normal> { 0.100772 0.000000 0.994903 }
+    }
+    <Vertex> 146 {
+      16.655790329 5.26653766632 0.324613153934
+      <UV>  {
+        0.064889 0.483213
+        <Tangent> { 0.837871 -0.278601 -0.469419 }
+        <Binormal> { -0.241862 -0.960349 0.138267 }
+      }
+      <Normal> { 0.496292 0.000000 0.868129 }
+    }
+    <Vertex> 147 {
+      16.6557884216 0.861906886101 0.324613153934
+      <UV>  {
+        0.041302 0.578635
+        <Tangent> { 0.823103 -0.279579 -0.494304 }
+        <Binormal> { -0.290850 -0.955012 0.055839 }
+      }
+      <Normal> { 0.475112 -0.093539 0.874935 }
+    }
+    <Vertex> 148 {
+      18.7963485718 0.861906945705 -0.113579511642
+      <UV>  {
+        -0.010210 0.566253
+        <Tangent> { 0.968557 -0.233976 -0.084575 }
+        <Binormal> { -0.234339 -0.972107 0.005665 }
+      }
+      <Normal> { 0.086367 -0.015015 0.996124 }
+    }
+    <Vertex> 149 {
+      16.6557884216 0.861906886101 0.324613153934
+      <UV>  {
+        0.041302 0.578635
+        <Tangent> { 0.823103 -0.279579 -0.494304 }
+        <Binormal> { -0.290850 -0.955012 0.055839 }
+      }
+      <Normal> { 0.475112 -0.093539 0.874935 }
+    }
+    <Vertex> 150 {
+      15.5468168259 -2.23269701004 0.171120867133
+      <UV>  {
+        0.029272 0.647219
+        <Tangent> { 0.900744 -0.302432 -0.311762 }
+        <Binormal> { -0.373345 -0.905656 -0.200117 }
+      }
+      <Normal> { 0.237251 -0.301828 0.923338 }
+    }
+    <Vertex> 151 {
+      18.3813247681 -2.23280644417 -0.113579511642
+      <UV>  {
+        -0.017294 0.634605
+        <Tangent> { 0.974540 -0.216447 -0.058504 }
+        <Binormal> { -0.217954 -0.975704 -0.020788 }
+      }
+      <Normal> { 0.048372 -0.032075 0.998291 }
+    }
+    <Vertex> 152 {
+      18.7963485718 0.861906945705 -0.113579511642
+      <UV>  {
+        -0.010210 0.566253
+        <Tangent> { 0.968557 -0.233976 -0.084575 }
+        <Binormal> { -0.234339 -0.972107 0.005665 }
+      }
+      <Normal> { 0.086367 -0.015015 0.996124 }
+    }
+    <Vertex> 153 {
+      18.3813247681 -2.23280644417 -0.113579511642
+      <UV>  {
+        -0.017294 0.634605
+        <Tangent> { 0.974540 -0.216447 -0.058504 }
+        <Binormal> { -0.217954 -0.975704 -0.020788 }
+      }
+      <Normal> { 0.048372 -0.032075 0.998291 }
+    }
+    <Vertex> 154 {
+      20.9991264343 -2.23280668259 -0.113579511642
+      <UV>  {
+        -0.072714 0.621073
+        <Tangent> { 0.971999 -0.234985 0.000000 }
+        <Binormal> { -0.234985 -0.971999 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 155 {
+      21.4141483307 0.861906886101 -0.113579511642
+      <UV>  {
+        -0.065267 0.552977
+        <Tangent> { 0.972910 -0.231183 0.000000 }
+        <Binormal> { -0.231183 -0.972910 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 156 {
+      18.7963485718 0.861906945705 -0.113579511642
+      <UV>  {
+        -0.010210 0.566253
+        <Tangent> { 0.968557 -0.233976 -0.084575 }
+        <Binormal> { -0.234339 -0.972107 0.005665 }
+      }
+      <Normal> { 0.086367 -0.015015 0.996124 }
+    }
+    <Vertex> 157 {
+      21.4141483307 0.861906886101 -0.113579511642
+      <UV>  {
+        -0.065267 0.552977
+        <Tangent> { 0.972910 -0.231183 0.000000 }
+        <Binormal> { -0.231183 -0.972910 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 158 {
+      21.414150238 5.31740617752 -0.113579511642
+      <UV>  {
+        -0.042106 0.457809
+        <Tangent> { 0.977754 -0.209756 0.000000 }
+        <Binormal> { -0.209756 -0.977754 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 159 {
+      18.7963485718 5.31740617752 -0.113579511642
+      <UV>  {
+        0.013440 0.470159
+        <Tangent> { 0.968881 -0.229543 -0.092631 }
+        <Binormal> { -0.228373 -0.973277 0.023132 }
+      }
+      <Normal> { 0.100772 0.000000 0.994903 }
+    }
+    <Vertex> 160 {
+      18.7963485718 12.4022283554 -0.113579511642
+      <UV>  {
+        0.052271 0.316576
+        <Tangent> { 0.978118 -0.192182 -0.079697 }
+        <Binormal> { -0.191087 -0.981312 0.021146 }
+      }
+      <Normal> { 0.085025 0.004913 0.996338 }
+    }
+    <Vertex> 161 {
+      18.7963485718 19.2201309204 -0.113579511642
+      <UV>  {
+        0.087794 0.167783
+        <Tangent> { 0.990162 -0.132799 -0.044095 }
+        <Binormal> { -0.131972 -0.991009 0.021121 }
+      }
+      <Normal> { 0.046632 0.015076 0.998779 }
+    }
+    <Vertex> 162 {
+      15.7724323273 19.5616073608 0.166863754392
+      <UV>  {
+        0.164916 0.168991
+        <Tangent> { 0.967200 -0.129109 -0.218756 }
+        <Binormal> { -0.087036 -0.977485 0.192090 }
+      }
+      <Normal> { 0.239296 0.166662 0.956511 }
+    }
+    <Vertex> 163 {
+      16.655790329 12.1987533569 0.324613153934
+      <UV>  {
+        0.104325 0.332243
+        <Tangent> { 0.846208 -0.279702 -0.453540 }
+        <Binormal> { -0.232502 -0.959464 0.157910 }
+      }
+      <Normal> { 0.462447 0.033753 0.885983 }
+    }
+    <Vertex> 164 {
+      18.7963485718 12.4022283554 -0.113579511642
+      <UV>  {
+        0.052271 0.316576
+        <Tangent> { 0.978118 -0.192182 -0.079697 }
+        <Binormal> { -0.191087 -0.981312 0.021146 }
+      }
+      <Normal> { 0.085025 0.004913 0.996338 }
+    }
+    <Vertex> 165 {
+      16.655790329 12.1987533569 0.324613153934
+      <UV>  {
+        0.104325 0.332243
+        <Tangent> { 0.846208 -0.279702 -0.453540 }
+        <Binormal> { -0.232502 -0.959464 0.157910 }
+      }
+      <Normal> { 0.462447 0.033753 0.885983 }
+    }
+    <Vertex> 166 {
+      16.655790329 5.26653766632 0.324613153934
+      <UV>  {
+        0.064889 0.483213
+        <Tangent> { 0.837871 -0.278601 -0.469419 }
+        <Binormal> { -0.241862 -0.960349 0.138267 }
+      }
+      <Normal> { 0.496292 0.000000 0.868129 }
+    }
+    <Vertex> 167 {
+      18.7963485718 5.31740617752 -0.113579511642
+      <UV>  {
+        0.013440 0.470159
+        <Tangent> { 0.968881 -0.229543 -0.092631 }
+        <Binormal> { -0.228373 -0.973277 0.023132 }
+      }
+      <Normal> { 0.100772 0.000000 0.994903 }
+    }
+    <Vertex> 168 {
+      18.7963485718 12.4022283554 -0.113579511642
+      <UV>  {
+        0.052271 0.316576
+        <Tangent> { 0.978118 -0.192182 -0.079697 }
+        <Binormal> { -0.191087 -0.981312 0.021146 }
+      }
+      <Normal> { 0.085025 0.004913 0.996338 }
+    }
+    <Vertex> 169 {
+      18.7963485718 5.31740617752 -0.113579511642
+      <UV>  {
+        0.013440 0.470159
+        <Tangent> { 0.968881 -0.229543 -0.092631 }
+        <Binormal> { -0.228373 -0.973277 0.023132 }
+      }
+      <Normal> { 0.100772 0.000000 0.994903 }
+    }
+    <Vertex> 170 {
+      21.414150238 5.31740617752 -0.113579511642
+      <UV>  {
+        -0.042106 0.457809
+        <Tangent> { 0.977754 -0.209756 0.000000 }
+        <Binormal> { -0.209756 -0.977754 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 171 {
+      21.414150238 12.4022283554 -0.113579511642
+      <UV>  {
+        -0.005710 0.306319
+        <Tangent> { 0.983696 -0.179842 0.000000 }
+        <Binormal> { -0.179842 -0.983696 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 172 {
+      18.7963485718 12.4022283554 -0.113579511642
+      <UV>  {
+        0.052271 0.316576
+        <Tangent> { 0.978118 -0.192182 -0.079697 }
+        <Binormal> { -0.191087 -0.981312 0.021146 }
+      }
+      <Normal> { 0.085025 0.004913 0.996338 }
+    }
+    <Vertex> 173 {
+      21.414150238 12.4022283554 -0.113579511642
+      <UV>  {
+        -0.005710 0.306319
+        <Tangent> { 0.983696 -0.179842 0.000000 }
+        <Binormal> { -0.179842 -0.983696 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 174 {
+      21.414150238 19.2201290131 -0.113579511642
+      <UV>  {
+        0.027532 0.159861
+        <Tangent> { 0.990122 -0.140211 0.000000 }
+        <Binormal> { -0.140211 -0.990122 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 175 {
+      18.7963485718 19.2201309204 -0.113579511642
+      <UV>  {
+        0.087794 0.167783
+        <Tangent> { 0.990162 -0.132799 -0.044095 }
+        <Binormal> { -0.131972 -0.991009 0.021121 }
+      }
+      <Normal> { 0.046632 0.015076 0.998779 }
+    }
+    <Vertex> 176 {
+      17.136259079 -5.23527050018 -0.113579511642
+      <UV>  {
+        -0.006426 0.704962
+        <Tangent> { 0.973807 -0.226572 -0.019092 }
+        <Binormal> { -0.226842 -0.973806 -0.013806 }
+      }
+      <Normal> { 0.012391 -0.017060 0.999756 }
+    }
+    <Vertex> 177 {
+      18.3813247681 -2.23280644417 -0.113579511642
+      <UV>  {
+        -0.017294 0.634605
+        <Tangent> { 0.974540 -0.216447 -0.058504 }
+        <Binormal> { -0.217954 -0.975704 -0.020788 }
+      }
+      <Normal> { 0.048372 -0.032075 0.998291 }
+    }
+    <Vertex> 178 {
+      15.5468168259 -2.23269701004 0.171120867133
+      <UV>  {
+        0.029272 0.647219
+        <Tangent> { 0.900744 -0.302432 -0.311762 }
+        <Binormal> { -0.373345 -0.905656 -0.200117 }
+      }
+      <Normal> { 0.237251 -0.301828 0.923338 }
+    }
+    <Vertex> 179 {
+      14.2464704514 -5.23527050018 -0.113579511642
+      <UV>  {
+        0.049116 0.718580
+        <Tangent> { 0.977736 -0.209601 -0.009978 }
+        <Binormal> { -0.209781 -0.976222 -0.049431 }
+      }
+      <Normal> { 0.021699 -0.055208 0.998230 }
+    }
+    <Vertex> 180 {
+      17.136259079 -5.23527050018 -0.113579511642
+      <UV>  {
+        -0.006426 0.704962
+        <Tangent> { 0.973807 -0.226572 -0.019092 }
+        <Binormal> { -0.226842 -0.973806 -0.013806 }
+      }
+      <Normal> { 0.012391 -0.017060 0.999756 }
+    }
+    <Vertex> 181 {
+      14.2464704514 -5.23527050018 -0.113579511642
+      <UV>  {
+        0.049116 0.718580
+        <Tangent> { 0.977736 -0.209601 -0.009978 }
+        <Binormal> { -0.209781 -0.976222 -0.049431 }
+      }
+      <Normal> { 0.021699 -0.055208 0.998230 }
+    }
+    <Vertex> 182 {
+      13.157037735 -8.21325492859 -0.113579511642
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.971222 -0.238178 0.000000 }
+        <Binormal> { -0.238178 -0.971222 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 183 {
+      15.8911943436 -8.21325492859 -0.113579511642
+      <UV>  {
+        0.004500 0.774623
+        <Tangent> { 0.969052 -0.246856 0.000000 }
+        <Binormal> { -0.246856 -0.969052 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 184 {
+      17.136259079 -5.23527050018 -0.113579511642
+      <UV>  {
+        -0.006426 0.704962
+        <Tangent> { 0.973807 -0.226572 -0.019092 }
+        <Binormal> { -0.226842 -0.973806 -0.013806 }
+      }
+      <Normal> { 0.012391 -0.017060 0.999756 }
+    }
+    <Vertex> 185 {
+      15.8911943436 -8.21325492859 -0.113579511642
+      <UV>  {
+        0.004500 0.774623
+        <Tangent> { 0.969052 -0.246856 0.000000 }
+        <Binormal> { -0.246856 -0.969052 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 186 {
+      18.5089950562 -8.21325492859 -0.113579511642
+      <UV>  {
+        -0.051042 0.761006
+        <Tangent> { 0.971235 -0.238121 0.000000 }
+        <Binormal> { -0.238121 -0.971235 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 187 {
+      19.7540607452 -5.23527050018 -0.113579511642
+      <UV>  {
+        -0.061968 0.691345
+        <Tangent> { 0.971276 -0.237956 0.000000 }
+        <Binormal> { -0.237956 -0.971276 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 188 {
+      17.136259079 -5.23527050018 -0.113579511642
+      <UV>  {
+        -0.006426 0.704962
+        <Tangent> { 0.973807 -0.226572 -0.019092 }
+        <Binormal> { -0.226842 -0.973806 -0.013806 }
+      }
+      <Normal> { 0.012391 -0.017060 0.999756 }
+    }
+    <Vertex> 189 {
+      19.7540607452 -5.23527050018 -0.113579511642
+      <UV>  {
+        -0.061968 0.691345
+        <Tangent> { 0.971276 -0.237956 0.000000 }
+        <Binormal> { -0.237956 -0.971276 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 190 {
+      20.9991264343 -2.23280668259 -0.113579511642
+      <UV>  {
+        -0.072714 0.621073
+        <Tangent> { 0.971999 -0.234985 0.000000 }
+        <Binormal> { -0.234985 -0.971999 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 191 {
+      18.3813247681 -2.23280644417 -0.113579511642
+      <UV>  {
+        -0.017294 0.634605
+        <Tangent> { 0.974540 -0.216447 -0.058504 }
+        <Binormal> { -0.217954 -0.975704 -0.020788 }
+      }
+      <Normal> { 0.048372 -0.032075 0.998291 }
+    }
+    <Vertex> 192 {
+      18.7963485718 22.8748703003 -0.113579511642
+      <UV>  {
+        0.101521 0.086056
+        <Tangent> { 0.996411 -0.084032 -0.010226 }
+        <Binormal> { -0.083915 -0.996381 0.011134 }
+      }
+      <Normal> { 0.011994 0.010163 0.999847 }
+    }
+    <Vertex> 193 {
+      18.7963485718 24.9480285645 -0.113579511642
+      <UV>  {
+        0.104350 0.037863
+        <Tangent> { 0.998284 -0.058556 0.000000 }
+        <Binormal> { -0.058556 -0.998284 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 194 {
+      15.6990499496 24.9480285645 -0.113579511642
+      <UV>  {
+        0.175651 0.039911
+        <Tangent> { 0.999999 0.001019 0.000000 }
+        <Binormal> { 0.001019 -0.999999 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 195 {
+      15.699048996 22.8748703003 -0.113579511642
+      <UV>  {
+        0.174351 0.089075
+        <Tangent> { 0.999996 -0.002838 0.000116 }
+        <Binormal> { -0.002840 -0.998773 0.043979 }
+      }
+      <Normal> { 0.022248 0.043916 0.998779 }
+    }
+    <Vertex> 196 {
+      18.7963485718 22.8748703003 -0.113579511642
+      <UV>  {
+        0.101521 0.086056
+        <Tangent> { 0.996411 -0.084032 -0.010226 }
+        <Binormal> { -0.083915 -0.996381 0.011134 }
+      }
+      <Normal> { 0.011994 0.010163 0.999847 }
+    }
+    <Vertex> 197 {
+      15.699048996 22.8748703003 -0.113579511642
+      <UV>  {
+        0.174351 0.089075
+        <Tangent> { 0.999996 -0.002838 0.000116 }
+        <Binormal> { -0.002840 -0.998773 0.043979 }
+      }
+      <Normal> { 0.022248 0.043916 0.998779 }
+    }
+    <Vertex> 198 {
+      15.7724323273 19.5616073608 0.166863754392
+      <UV>  {
+        0.164916 0.168991
+        <Tangent> { 0.967200 -0.129109 -0.218756 }
+        <Binormal> { -0.087036 -0.977485 0.192090 }
+      }
+      <Normal> { 0.239296 0.166662 0.956511 }
+    }
+    <Vertex> 199 {
+      18.7963485718 19.2201309204 -0.113579511642
+      <UV>  {
+        0.087794 0.167783
+        <Tangent> { 0.990162 -0.132799 -0.044095 }
+        <Binormal> { -0.131972 -0.991009 0.021121 }
+      }
+      <Normal> { 0.046632 0.015076 0.998779 }
+    }
+    <Vertex> 200 {
+      18.7963485718 22.8748703003 -0.113579511642
+      <UV>  {
+        0.101521 0.086056
+        <Tangent> { 0.996411 -0.084032 -0.010226 }
+        <Binormal> { -0.083915 -0.996381 0.011134 }
+      }
+      <Normal> { 0.011994 0.010163 0.999847 }
+    }
+    <Vertex> 201 {
+      18.7963485718 19.2201309204 -0.113579511642
+      <UV>  {
+        0.087794 0.167783
+        <Tangent> { 0.990162 -0.132799 -0.044095 }
+        <Binormal> { -0.131972 -0.991009 0.021121 }
+      }
+      <Normal> { 0.046632 0.015076 0.998779 }
+    }
+    <Vertex> 202 {
+      21.414150238 19.2201290131 -0.113579511642
+      <UV>  {
+        0.027532 0.159861
+        <Tangent> { 0.990122 -0.140211 0.000000 }
+        <Binormal> { -0.140211 -0.990122 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 203 {
+      21.414150238 22.8748703003 -0.113579511642
+      <UV>  {
+        0.041229 0.079788
+        <Tangent> { 0.994315 -0.106478 0.000000 }
+        <Binormal> { -0.106478 -0.994315 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 204 {
+      18.7963485718 22.8748703003 -0.113579511642
+      <UV>  {
+        0.101521 0.086056
+        <Tangent> { 0.996411 -0.084032 -0.010226 }
+        <Binormal> { -0.083915 -0.996381 0.011134 }
+      }
+      <Normal> { 0.011994 0.010163 0.999847 }
+    }
+    <Vertex> 205 {
+      21.414150238 22.8748703003 -0.113579511642
+      <UV>  {
+        0.041229 0.079788
+        <Tangent> { 0.994315 -0.106478 0.000000 }
+        <Binormal> { -0.106478 -0.994315 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 206 {
+      20.7596988678 24.4297409058 -0.113579511642
+      <UV>  {
+        0.058971 0.045866
+        <Tangent> { 0.995356 -0.096258 0.000000 }
+        <Binormal> { -0.096258 -0.995356 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 207 {
+      18.7963485718 24.9480285645 -0.113579511642
+      <UV>  {
+        0.104350 0.037863
+        <Tangent> { 0.998284 -0.058556 0.000000 }
+        <Binormal> { -0.058556 -0.998284 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 208 {
+      3.9661090374 -11.2345275879 -0.113579511642
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.997104 -0.061362 -0.044935 }
+        <Binormal> { -0.061242 -0.998087 0.003995 }
+      }
+      <Normal> { 0.046266 0.001160 0.998901 }
+    }
+    <Vertex> 209 {
+      7.04066562653 -11.2345294952 -0.113579511642
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.988852 -0.148902 0.000000 }
+        <Binormal> { -0.148902 -0.988852 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 210 {
+      7.09254312515 -8.21325492859 -0.113579511642
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.996496 -0.083634 0.000000 }
+        <Binormal> { -0.083634 -0.996496 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 211 {
+      3.9661090374 -8.21325397491 -0.113579511642
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.995400 0.087666 -0.038637 }
+        <Binormal> { 0.088085 -0.996041 0.009342 }
+      }
+      <Normal> { 0.033082 0.012299 0.999359 }
+    }
+    <Vertex> 212 {
+      3.9661090374 -11.2345275879 -0.113579511642
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.997104 -0.061362 -0.044935 }
+        <Binormal> { -0.061242 -0.998087 0.003995 }
+      }
+      <Normal> { 0.046266 0.001160 0.998901 }
+    }
+    <Vertex> 213 {
+      3.9661090374 -8.21325397491 -0.113579511642
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.995400 0.087666 -0.038637 }
+        <Binormal> { 0.088085 -0.996041 0.009342 }
+      }
+      <Normal> { 0.033082 0.012299 0.999359 }
+    }
+    <Vertex> 214 {
+      0.917312920094 -8.21325302124 0.126114070415
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.966551 -0.229329 -0.114838 }
+        <Binormal> { -0.218570 -0.970772 0.098982 }
+      }
+      <Normal> { 0.136418 0.070040 0.988159 }
+    }
+    <Vertex> 215 {
+      0.891552627087 -11.2345266342 0.201189562678
+      <UV>  {
+        0.286459 0.899701
+        <Tangent> { 0.966135 -0.173409 -0.191083 }
+        <Binormal> { -0.169417 -0.984805 0.037127 }
+      }
+      <Normal> { 0.186895 0.004883 0.982360 }
+    }
+    <Vertex> 216 {
+      3.9661090374 -11.2345275879 -0.113579511642
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.997104 -0.061362 -0.044935 }
+        <Binormal> { -0.061242 -0.998087 0.003995 }
+      }
+      <Normal> { 0.046266 0.001160 0.998901 }
+    }
+    <Vertex> 217 {
+      0.891552627087 -11.2345266342 0.201189562678
+      <UV>  {
+        0.286459 0.899701
+        <Tangent> { 0.966135 -0.173409 -0.191083 }
+        <Binormal> { -0.169417 -0.984805 0.037127 }
+      }
+      <Normal> { 0.186895 0.004883 0.982360 }
+    }
+    <Vertex> 218 {
+      0.868828475475 -14.2169790268 0.159442424774
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.963463 -0.192677 -0.186051 }
+        <Binormal> { -0.198675 -0.979779 -0.014163 }
+      }
+      <Normal> { 0.161504 -0.046999 0.985748 }
+    }
+    <Vertex> 219 {
+      3.9661090374 -14.2169799805 -0.113579511642
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.978257 -0.202833 -0.043275 }
+        <Binormal> { -0.202983 -0.979172 0.000894 }
+      }
+      <Normal> { 0.040468 -0.007477 0.999146 }
+    }
+    <Vertex> 220 {
+      3.9661090374 -11.2345275879 -0.113579511642
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.997104 -0.061362 -0.044935 }
+        <Binormal> { -0.061242 -0.998087 0.003995 }
+      }
+      <Normal> { 0.046266 0.001160 0.998901 }
+    }
+    <Vertex> 221 {
+      3.9661090374 -14.2169799805 -0.113579511642
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.978257 -0.202833 -0.043275 }
+        <Binormal> { -0.202983 -0.979172 0.000894 }
+      }
+      <Normal> { 0.040468 -0.007477 0.999146 }
+    }
+    <Vertex> 222 {
+      7.04066562653 -14.2169818878 -0.113579511642
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.984157 -0.177298 0.000000 }
+        <Binormal> { -0.177298 -0.984157 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 223 {
+      7.04066562653 -11.2345294952 -0.113579511642
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.988852 -0.148902 0.000000 }
+        <Binormal> { -0.148902 -0.988852 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 224 {
+      -2.05044126511 -11.2345266342 1.14549672604
+      <UV>  {
+        0.360398 0.921832
+        <Tangent> { 0.911828 -0.357281 -0.202289 }
+        <Binormal> { -0.346181 -0.933845 0.088920 }
+      }
+      <Normal> { 0.210639 0.014985 0.977416 }
+    }
+    <Vertex> 225 {
+      0.891552627087 -11.2345266342 0.201189562678
+      <UV>  {
+        0.286459 0.899701
+        <Tangent> { 0.966135 -0.173409 -0.191083 }
+        <Binormal> { -0.169417 -0.984805 0.037127 }
+      }
+      <Normal> { 0.186895 0.004883 0.982360 }
+    }
+    <Vertex> 226 {
+      0.917312920094 -8.21325302124 0.126114070415
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.966551 -0.229329 -0.114838 }
+        <Binormal> { -0.218570 -0.970772 0.098982 }
+      }
+      <Normal> { 0.136418 0.070040 0.988159 }
+    }
+    <Vertex> 227 {
+      -1.94740009308 -8.21325111389 0.845194041729
+      <UV>  {
+        0.362298 0.849152
+        <Tangent> { 0.815142 -0.577978 -0.038521 }
+        <Binormal> { -0.556363 -0.799513 0.222889 }
+      }
+      <Normal> { 0.127689 0.182897 0.974792 }
+    }
+    <Vertex> 228 {
+      -2.05044126511 -11.2345266342 1.14549672604
+      <UV>  {
+        0.360398 0.921832
+        <Tangent> { 0.911828 -0.357281 -0.202289 }
+        <Binormal> { -0.346181 -0.933845 0.088920 }
+      }
+      <Normal> { 0.210639 0.014985 0.977416 }
+    }
+    <Vertex> 229 {
+      -1.94740009308 -8.21325111389 0.845194041729
+      <UV>  {
+        0.362298 0.849152
+        <Tangent> { 0.815142 -0.577978 -0.038521 }
+        <Binormal> { -0.556363 -0.799513 0.222889 }
+      }
+      <Normal> { 0.127689 0.182897 0.974792 }
+    }
+    <Vertex> 230 {
+      -4.1140127182 -8.25123500824 1.05926406384
+      <UV>  {
+        0.457482 0.885197
+        <Tangent> { 0.860454 -0.501535 0.089893 }
+        <Binormal> { -0.461600 -0.782938 0.050221 }
+      }
+      <Normal> { -0.401410 0.292337 0.867977 }
+    }
+    <Vertex> 231 {
+      -4.33829259872 -11.25669384 1.53156352043
+      <UV>  {
+        0.441652 0.949759
+        <Tangent> { 0.860542 -0.492254 -0.130972 }
+        <Binormal> { -0.449695 -0.755240 -0.116140 }
+      }
+      <Normal> { -0.356243 0.068819 0.931852 }
+    }
+    <Vertex> 232 {
+      -2.05044126511 -11.2345266342 1.14549672604
+      <UV>  {
+        0.360398 0.921832
+        <Tangent> { 0.911828 -0.357281 -0.202289 }
+        <Binormal> { -0.346181 -0.933845 0.088920 }
+      }
+      <Normal> { 0.210639 0.014985 0.977416 }
+    }
+    <Vertex> 233 {
+      -4.33829259872 -11.25669384 1.53156352043
+      <UV>  {
+        0.441652 0.949759
+        <Tangent> { 0.860542 -0.492254 -0.130972 }
+        <Binormal> { -0.449695 -0.755240 -0.116140 }
+      }
+      <Normal> { -0.356243 0.068819 0.931852 }
+    }
+    <Vertex> 234 {
+      -4.53326320648 -14.1648855209 1.29812788963
+      <UV>  {
+        0.425823 1.014322
+        <Tangent> { 0.914995 -0.368621 -0.164020 }
+        <Binormal> { -0.361483 -0.811512 -0.192750 }
+      }
+      <Normal> { -0.319193 -0.082064 0.944121 }
+    }
+    <Vertex> 235 {
+      -2.14133810997 -14.2169790268 0.978508234024
+      <UV>  {
+        0.359217 0.997991
+        <Tangent> { 0.948077 -0.235315 -0.213954 }
+        <Binormal> { -0.253886 -0.965043 -0.063635 }
+      }
+      <Normal> { 0.179235 -0.111606 0.977447 }
+    }
+    <Vertex> 236 {
+      -2.05044126511 -11.2345266342 1.14549672604
+      <UV>  {
+        0.360398 0.921832
+        <Tangent> { 0.911828 -0.357281 -0.202289 }
+        <Binormal> { -0.346181 -0.933845 0.088920 }
+      }
+      <Normal> { 0.210639 0.014985 0.977416 }
+    }
+    <Vertex> 237 {
+      -2.14133810997 -14.2169790268 0.978508234024
+      <UV>  {
+        0.359217 0.997991
+        <Tangent> { 0.948077 -0.235315 -0.213954 }
+        <Binormal> { -0.253886 -0.965043 -0.063635 }
+      }
+      <Normal> { 0.179235 -0.111606 0.977447 }
+    }
+    <Vertex> 238 {
+      0.868828475475 -14.2169790268 0.159442424774
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.963463 -0.192677 -0.186051 }
+        <Binormal> { -0.198675 -0.979779 -0.014163 }
+      }
+      <Normal> { 0.161504 -0.046999 0.985748 }
+    }
+    <Vertex> 239 {
+      0.891552627087 -11.2345266342 0.201189562678
+      <UV>  {
+        0.286459 0.899701
+        <Tangent> { 0.966135 -0.173409 -0.191083 }
+        <Binormal> { -0.169417 -0.984805 0.037127 }
+      }
+      <Normal> { 0.186895 0.004883 0.982360 }
+    }
+    <Vertex> 240 {
+      9.9826593399 -11.2345294952 -0.113579511642
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.974835 -0.222929 0.000000 }
+        <Binormal> { -0.222929 -0.974835 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 241 {
+      12.7938938141 -11.2345294952 -0.113579511642
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.971171 -0.238383 0.000000 }
+        <Binormal> { -0.238383 -0.971171 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 242 {
+      13.157037735 -8.21325492859 -0.113579511642
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.971222 -0.238178 0.000000 }
+        <Binormal> { -0.238178 -0.971222 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 243 {
+      10.1901702881 -8.21325492859 -0.113579511642
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.973570 -0.228387 0.000000 }
+        <Binormal> { -0.228387 -0.973570 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 244 {
+      9.9826593399 -11.2345294952 -0.113579511642
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.974835 -0.222929 0.000000 }
+        <Binormal> { -0.222929 -0.974835 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 245 {
+      10.1901702881 -8.21325492859 -0.113579511642
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.973570 -0.228387 0.000000 }
+        <Binormal> { -0.228387 -0.973570 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 246 {
+      7.09254312515 -8.21325492859 -0.113579511642
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.996496 -0.083634 0.000000 }
+        <Binormal> { -0.083634 -0.996496 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 247 {
+      7.04066562653 -11.2345294952 -0.113579511642
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.988852 -0.148902 0.000000 }
+        <Binormal> { -0.148902 -0.988852 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 248 {
+      9.9826593399 -11.2345294952 -0.113579511642
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.974835 -0.222929 0.000000 }
+        <Binormal> { -0.222929 -0.974835 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 249 {
+      7.04066562653 -11.2345294952 -0.113579511642
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.988852 -0.148902 0.000000 }
+        <Binormal> { -0.148902 -0.988852 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 250 {
+      7.04066562653 -14.2169818878 -0.113579511642
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.984157 -0.177298 0.000000 }
+        <Binormal> { -0.177298 -0.984157 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 251 {
+      9.9826593399 -14.2169818878 -0.113579511642
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.972336 -0.233587 0.000000 }
+        <Binormal> { -0.233587 -0.972336 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 252 {
+      9.9826593399 -11.2345294952 -0.113579511642
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.974835 -0.222929 0.000000 }
+        <Binormal> { -0.222929 -0.974835 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 253 {
+      9.9826593399 -14.2169818878 -0.113579511642
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.972336 -0.233587 0.000000 }
+        <Binormal> { -0.233587 -0.972336 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 254 {
+      12.7938938141 -14.2169818878 -0.113579511642
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.972211 -0.234106 0.000000 }
+        <Binormal> { -0.234106 -0.972211 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 255 {
+      12.7938938141 -11.2345294952 -0.113579511642
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.971171 -0.238383 0.000000 }
+        <Binormal> { -0.238383 -0.971171 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 256 {
+      15.4761724472 -11.2345294952 -0.113579511642
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.971307 -0.237829 0.000000 }
+        <Binormal> { -0.237829 -0.971307 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 257 {
+      18.0939731598 -11.2345294952 -0.113579511642
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.971780 -0.235890 0.000000 }
+        <Binormal> { -0.235890 -0.971780 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 258 {
+      18.5089950562 -8.21325492859 -0.113579511642
+      <UV>  {
+        -0.051042 0.761006
+        <Tangent> { 0.971235 -0.238121 0.000000 }
+        <Binormal> { -0.238121 -0.971235 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 259 {
+      15.8911943436 -8.21325492859 -0.113579511642
+      <UV>  {
+        0.004500 0.774623
+        <Tangent> { 0.969052 -0.246856 0.000000 }
+        <Binormal> { -0.246856 -0.969052 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 260 {
+      15.4761724472 -11.2345294952 -0.113579511642
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.971307 -0.237829 0.000000 }
+        <Binormal> { -0.237829 -0.971307 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 261 {
+      15.8911943436 -8.21325492859 -0.113579511642
+      <UV>  {
+        0.004500 0.774623
+        <Tangent> { 0.969052 -0.246856 0.000000 }
+        <Binormal> { -0.246856 -0.969052 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 262 {
+      13.157037735 -8.21325492859 -0.113579511642
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.971222 -0.238178 0.000000 }
+        <Binormal> { -0.238178 -0.971222 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 263 {
+      12.7938938141 -11.2345294952 -0.113579511642
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.971171 -0.238383 0.000000 }
+        <Binormal> { -0.238383 -0.971171 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 264 {
+      15.4761724472 -11.2345294952 -0.113579511642
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.971307 -0.237829 0.000000 }
+        <Binormal> { -0.237829 -0.971307 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 265 {
+      12.7938938141 -11.2345294952 -0.113579511642
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.971171 -0.238383 0.000000 }
+        <Binormal> { -0.238383 -0.971171 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 266 {
+      12.7938938141 -14.2169818878 -0.113579511642
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.972211 -0.234106 0.000000 }
+        <Binormal> { -0.234106 -0.972211 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 267 {
+      15.4761724472 -14.2169818878 -0.113579511642
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.972963 -0.230963 0.000000 }
+        <Binormal> { -0.230963 -0.972963 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 268 {
+      15.4761724472 -11.2345294952 -0.113579511642
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.971307 -0.237829 0.000000 }
+        <Binormal> { -0.237829 -0.971307 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 269 {
+      15.4761724472 -14.2169818878 -0.113579511642
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.972963 -0.230963 0.000000 }
+        <Binormal> { -0.230963 -0.972963 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 270 {
+      18.0939731598 -14.2169818878 -0.113579511642
+      <UV>  {
+        -0.073782 0.891829
+        <Tangent> { 0.972320 -0.233652 0.000000 }
+        <Binormal> { -0.233652 -0.972320 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 271 {
+      18.0939731598 -11.2345294952 -0.113579511642
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.971780 -0.235890 0.000000 }
+        <Binormal> { -0.235890 -0.971780 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 272 {
+      11.2883329391 19.173915863 1.63919115067
+      <UV>  {
+        0.287544 0.190447
+        <Tangent> { 0.991311 -0.002264 -0.131516 }
+        <Binormal> { 0.078179 -0.793805 0.602948 }
+      }
+      <Normal> { 0.119755 0.607959 0.784875 }
+    }
+    <Vertex> 273 {
+      14.4243688583 17.2775192261 1.63919150829
+      <UV>  {
+        0.201963 0.235338
+        <Tangent> { 0.810888 -0.225262 -0.540109 }
+        <Binormal> { 0.032163 -0.904271 0.425431 }
+      }
+      <Normal> { 0.572710 0.365551 0.733696 }
+    }
+    <Vertex> 274 {
+      15.7724323273 19.5616073608 0.166863754392
+      <UV>  {
+        0.164916 0.168991
+        <Tangent> { 0.967200 -0.129109 -0.218756 }
+        <Binormal> { -0.087036 -0.977485 0.192090 }
+      }
+      <Normal> { 0.239296 0.166662 0.956511 }
+    }
+    <Vertex> 275 {
+      11.554145813 20.9130516052 0.324613153934
+      <UV>  {
+        0.276622 0.136535
+        <Tangent> { 0.997085 0.023380 -0.072629 }
+        <Binormal> { 0.048430 -0.929468 0.365667 }
+      }
+      <Normal> { 0.053591 0.367992 0.928281 }
+    }
+    <Vertex> 276 {
+      11.2883329391 19.173915863 1.63919115067
+      <UV>  {
+        0.287544 0.190447
+        <Tangent> { 0.991311 -0.002264 -0.131516 }
+        <Binormal> { 0.078179 -0.793805 0.602948 }
+      }
+      <Normal> { 0.119755 0.607959 0.784875 }
+    }
+    <Vertex> 277 {
+      11.554145813 20.9130516052 0.324613153934
+      <UV>  {
+        0.276622 0.136535
+        <Tangent> { 0.997085 0.023380 -0.072629 }
+        <Binormal> { 0.048430 -0.929468 0.365667 }
+      }
+      <Normal> { 0.053591 0.367992 0.928281 }
+    }
+    <Vertex> 278 {
+      7.06949853897 20.5617847443 0.324613153934
+      <UV>  {
+        0.376328 0.136154
+        <Tangent> { 0.993252 0.113493 0.023883 }
+        <Binormal> { 0.094905 -0.913710 0.395077 }
+      }
+      <Normal> { -0.063417 0.390515 0.918393 }
+    }
+    <Vertex> 279 {
+      7.26489925385 18.7651672363 1.63919150829
+      <UV>  {
+        0.378731 0.192275
+        <Tangent> { 0.988012 0.138632 0.067929 }
+        <Binormal> { 0.065486 -0.774755 0.628667 }
+      }
+      <Normal> { -0.126255 0.618580 0.775475 }
+    }
+    <Vertex> 280 {
+      11.2883329391 19.173915863 1.63919115067
+      <UV>  {
+        0.287544 0.190447
+        <Tangent> { 0.991311 -0.002264 -0.131516 }
+        <Binormal> { 0.078179 -0.793805 0.602948 }
+      }
+      <Normal> { 0.119755 0.607959 0.784875 }
+    }
+    <Vertex> 281 {
+      7.26489925385 18.7651672363 1.63919150829
+      <UV>  {
+        0.378731 0.192275
+        <Tangent> { 0.988012 0.138632 0.067929 }
+        <Binormal> { 0.065486 -0.774755 0.628667 }
+      }
+      <Normal> { -0.126255 0.618580 0.775475 }
+    }
+    <Vertex> 282 {
+      7.45612001419 16.8682441711 3.46207380295
+      <UV>  {
+        0.380939 0.254091
+        <Tangent> { 0.988945 0.118915 0.088579 }
+        <Binormal> { 0.030125 -0.746016 0.665175 }
+      }
+      <Normal> { -0.141728 0.655568 0.741661 }
+    }
+    <Vertex> 283 {
+      10.9036130905 17.2322826385 3.46207380295
+      <UV>  {
+        0.302049 0.251031
+        <Tangent> { 0.989126 -0.014788 -0.146322 }
+        <Binormal> { 0.081052 -0.775203 0.626248 }
+      }
+      <Normal> { 0.138493 0.631062 0.763237 }
+    }
+    <Vertex> 284 {
+      11.2883329391 19.173915863 1.63919115067
+      <UV>  {
+        0.287544 0.190447
+        <Tangent> { 0.991311 -0.002264 -0.131516 }
+        <Binormal> { 0.078179 -0.793805 0.602948 }
+      }
+      <Normal> { 0.119755 0.607959 0.784875 }
+    }
+    <Vertex> 285 {
+      10.9036130905 17.2322826385 3.46207380295
+      <UV>  {
+        0.302049 0.251031
+        <Tangent> { 0.989126 -0.014788 -0.146322 }
+        <Binormal> { 0.081052 -0.775203 0.626248 }
+      }
+      <Normal> { 0.138493 0.631062 0.763237 }
+    }
+    <Vertex> 286 {
+      13.7511100769 15.5785903931 3.46207380295
+      <UV>  {
+        0.228256 0.288535
+        <Tangent> { 0.756292 -0.218752 -0.616580 }
+        <Binormal> { 0.102093 -0.891360 0.441466 }
+      }
+      <Normal> { 0.638020 0.399182 0.658437 }
+    }
+    <Vertex> 287 {
+      14.4243688583 17.2775192261 1.63919150829
+      <UV>  {
+        0.201963 0.235338
+        <Tangent> { 0.810888 -0.225262 -0.540109 }
+        <Binormal> { 0.032163 -0.904271 0.425431 }
+      }
+      <Normal> { 0.572710 0.365551 0.733696 }
+    }
+    <Vertex> 288 {
+      15.4697151184 11.5883302689 1.63919115067
+      <UV>  {
+        0.144528 0.358730
+        <Tangent> { 0.552674 -0.304821 -0.775651 }
+        <Binormal> { -0.120906 -0.950069 0.287216 }
+      }
+      <Normal> { 0.816858 0.069155 0.572619 }
+    }
+    <Vertex> 289 {
+      15.4697151184 5.11393165588 1.63919150829
+      <UV>  {
+        0.108146 0.497677
+        <Tangent> { 0.507043 -0.264777 -0.820244 }
+        <Binormal> { -0.142146 -0.964209 0.223380 }
+      }
+      <Normal> { 0.843654 0.000000 0.536851 }
+    }
+    <Vertex> 290 {
+      16.655790329 5.26653766632 0.324613153934
+      <UV>  {
+        0.064889 0.483213
+        <Tangent> { 0.837871 -0.278601 -0.469419 }
+        <Binormal> { -0.241862 -0.960349 0.138267 }
+      }
+      <Normal> { 0.496292 0.000000 0.868129 }
+    }
+    <Vertex> 291 {
+      16.655790329 12.1987533569 0.324613153934
+      <UV>  {
+        0.104325 0.332243
+        <Tangent> { 0.846208 -0.279702 -0.453540 }
+        <Binormal> { -0.232502 -0.959464 0.157910 }
+      }
+      <Normal> { 0.462447 0.033753 0.885983 }
+    }
+    <Vertex> 292 {
+      15.4697151184 11.5883302689 1.63919115067
+      <UV>  {
+        0.144528 0.358730
+        <Tangent> { 0.552674 -0.304821 -0.775651 }
+        <Binormal> { -0.120906 -0.950069 0.287216 }
+      }
+      <Normal> { 0.816858 0.069155 0.572619 }
+    }
+    <Vertex> 293 {
+      16.655790329 12.1987533569 0.324613153934
+      <UV>  {
+        0.104325 0.332243
+        <Tangent> { 0.846208 -0.279702 -0.453540 }
+        <Binormal> { -0.232502 -0.959464 0.157910 }
+      }
+      <Normal> { 0.462447 0.033753 0.885983 }
+    }
+    <Vertex> 294 {
+      15.7724323273 19.5616073608 0.166863754392
+      <UV>  {
+        0.164916 0.168991
+        <Tangent> { 0.967200 -0.129109 -0.218756 }
+        <Binormal> { -0.087036 -0.977485 0.192090 }
+      }
+      <Normal> { 0.239296 0.166662 0.956511 }
+    }
+    <Vertex> 295 {
+      14.4243688583 17.2775192261 1.63919150829
+      <UV>  {
+        0.201963 0.235338
+        <Tangent> { 0.810888 -0.225262 -0.540109 }
+        <Binormal> { 0.032163 -0.904271 0.425431 }
+      }
+      <Normal> { 0.572710 0.365551 0.733696 }
+    }
+    <Vertex> 296 {
+      15.4697151184 11.5883302689 1.63919115067
+      <UV>  {
+        0.144528 0.358730
+        <Tangent> { 0.552674 -0.304821 -0.775651 }
+        <Binormal> { -0.120906 -0.950069 0.287216 }
+      }
+      <Normal> { 0.816858 0.069155 0.572619 }
+    }
+    <Vertex> 297 {
+      14.4243688583 17.2775192261 1.63919150829
+      <UV>  {
+        0.201963 0.235338
+        <Tangent> { 0.810888 -0.225262 -0.540109 }
+        <Binormal> { 0.032163 -0.904271 0.425431 }
+      }
+      <Normal> { 0.572710 0.365551 0.733696 }
+    }
+    <Vertex> 298 {
+      13.7511100769 15.5785903931 3.46207380295
+      <UV>  {
+        0.228256 0.288535
+        <Tangent> { 0.756292 -0.218752 -0.616580 }
+        <Binormal> { 0.102093 -0.891360 0.441466 }
+      }
+      <Normal> { 0.638020 0.399182 0.658437 }
+    }
+    <Vertex> 299 {
+      14.7002763748 10.6175146103 3.46207380295
+      <UV>  {
+        0.179742 0.393038
+        <Tangent> { 0.442282 -0.279882 -0.852087 }
+        <Binormal> { -0.053989 -0.956578 0.286180 }
+      }
+      <Normal> { 0.890988 0.083224 0.446272 }
+    }
+    <Vertex> 300 {
+      15.4697151184 11.5883302689 1.63919115067
+      <UV>  {
+        0.144528 0.358730
+        <Tangent> { 0.552674 -0.304821 -0.775651 }
+        <Binormal> { -0.120906 -0.950069 0.287216 }
+      }
+      <Normal> { 0.816858 0.069155 0.572619 }
+    }
+    <Vertex> 301 {
+      14.7002763748 10.6175146103 3.46207380295
+      <UV>  {
+        0.179742 0.393038
+        <Tangent> { 0.442282 -0.279882 -0.852087 }
+        <Binormal> { -0.053989 -0.956578 0.286180 }
+      }
+      <Normal> { 0.890988 0.083224 0.446272 }
+    }
+    <Vertex> 302 {
+      14.7002754211 4.87122774124 3.46207380295
+      <UV>  {
+        0.149023 0.513571
+        <Tangent> { 0.388675 -0.247115 -0.887618 }
+        <Binormal> { -0.099104 -0.968973 0.226368 }
+      }
+      <Normal> { 0.916044 0.000000 0.401044 }
+    }
+    <Vertex> 303 {
+      15.4697151184 5.11393165588 1.63919150829
+      <UV>  {
+        0.108146 0.497677
+        <Tangent> { 0.507043 -0.264777 -0.820244 }
+        <Binormal> { -0.142146 -0.964209 0.223380 }
+      }
+      <Normal> { 0.843654 0.000000 0.536851 }
+    }
+    <Vertex> 304 {
+      15.4697132111 0.861906886101 1.63919115067
+      <UV>  {
+        0.085726 0.589233
+        <Tangent> { 0.458407 -0.286021 -0.841460 }
+        <Binormal> { -0.293060 -0.942347 0.160662 }
+      }
+      <Normal> { 0.831904 -0.168584 0.528642 }
+    }
+    <Vertex> 305 {
+      14.4668626785 -1.38925588131 1.6657987833
+      <UV>  {
+        0.070286 0.657092
+        <Tangent> { 0.365544 -0.393601 -0.843478 }
+        <Binormal> { -0.777795 -0.623471 -0.046142 }
+      }
+      <Normal> { 0.531175 -0.698172 0.479934 }
+    }
+    <Vertex> 306 {
+      15.5468168259 -2.23269701004 0.171120867133
+      <UV>  {
+        0.029272 0.647219
+        <Tangent> { 0.900744 -0.302432 -0.311762 }
+        <Binormal> { -0.373345 -0.905656 -0.200117 }
+      }
+      <Normal> { 0.237251 -0.301828 0.923338 }
+    }
+    <Vertex> 307 {
+      16.6557884216 0.861906886101 0.324613153934
+      <UV>  {
+        0.041302 0.578635
+        <Tangent> { 0.823103 -0.279579 -0.494304 }
+        <Binormal> { -0.290850 -0.955012 0.055839 }
+      }
+      <Normal> { 0.475112 -0.093539 0.874935 }
+    }
+    <Vertex> 308 {
+      15.4697132111 0.861906886101 1.63919115067
+      <UV>  {
+        0.085726 0.589233
+        <Tangent> { 0.458407 -0.286021 -0.841460 }
+        <Binormal> { -0.293060 -0.942347 0.160662 }
+      }
+      <Normal> { 0.831904 -0.168584 0.528642 }
+    }
+    <Vertex> 309 {
+      16.6557884216 0.861906886101 0.324613153934
+      <UV>  {
+        0.041302 0.578635
+        <Tangent> { 0.823103 -0.279579 -0.494304 }
+        <Binormal> { -0.290850 -0.955012 0.055839 }
+      }
+      <Normal> { 0.475112 -0.093539 0.874935 }
+    }
+    <Vertex> 310 {
+      16.655790329 5.26653766632 0.324613153934
+      <UV>  {
+        0.064889 0.483213
+        <Tangent> { 0.837871 -0.278601 -0.469419 }
+        <Binormal> { -0.241862 -0.960349 0.138267 }
+      }
+      <Normal> { 0.496292 0.000000 0.868129 }
+    }
+    <Vertex> 311 {
+      15.4697151184 5.11393165588 1.63919150829
+      <UV>  {
+        0.108146 0.497677
+        <Tangent> { 0.507043 -0.264777 -0.820244 }
+        <Binormal> { -0.142146 -0.964209 0.223380 }
+      }
+      <Normal> { 0.843654 0.000000 0.536851 }
+    }
+    <Vertex> 312 {
+      15.4697132111 0.861906886101 1.63919115067
+      <UV>  {
+        0.085726 0.589233
+        <Tangent> { 0.458407 -0.286021 -0.841460 }
+        <Binormal> { -0.293060 -0.942347 0.160662 }
+      }
+      <Normal> { 0.831904 -0.168584 0.528642 }
+    }
+    <Vertex> 313 {
+      15.4697151184 5.11393165588 1.63919150829
+      <UV>  {
+        0.108146 0.497677
+        <Tangent> { 0.507043 -0.264777 -0.820244 }
+        <Binormal> { -0.142146 -0.964209 0.223380 }
+      }
+      <Normal> { 0.843654 0.000000 0.536851 }
+    }
+    <Vertex> 314 {
+      14.7002754211 4.87122774124 3.46207380295
+      <UV>  {
+        0.149023 0.513571
+        <Tangent> { 0.388675 -0.247115 -0.887618 }
+        <Binormal> { -0.099104 -0.968973 0.226368 }
+      }
+      <Normal> { 0.916044 0.000000 0.401044 }
+    }
+    <Vertex> 315 {
+      14.7002744675 0.861906886101 3.46207380295
+      <UV>  {
+        0.128615 0.599169
+        <Tangent> { 0.366979 -0.194199 -0.909732 }
+        <Binormal> { -0.233200 -0.965787 0.112094 }
+      }
+      <Normal> { 0.906339 -0.174169 0.384930 }
+    }
+    <Vertex> 316 {
+      15.4697132111 0.861906886101 1.63919115067
+      <UV>  {
+        0.085726 0.589233
+        <Tangent> { 0.458407 -0.286021 -0.841460 }
+        <Binormal> { -0.293060 -0.942347 0.160662 }
+      }
+      <Normal> { 0.831904 -0.168584 0.528642 }
+    }
+    <Vertex> 317 {
+      14.7002744675 0.861906886101 3.46207380295
+      <UV>  {
+        0.128615 0.599169
+        <Tangent> { 0.366979 -0.194199 -0.909732 }
+        <Binormal> { -0.233200 -0.965787 0.112094 }
+      }
+      <Normal> { 0.906339 -0.174169 0.384930 }
+    }
+    <Vertex> 318 {
+      13.8148508072 -1.33702301979 3.50198435783
+      <UV>  {
+        0.111299 0.666965
+        <Tangent> { 0.316041 -0.168534 -0.933657 }
+        <Binormal> { -0.760693 -0.625067 -0.144663 }
+      }
+      <Normal> { 0.590289 -0.772515 0.233955 }
+    }
+    <Vertex> 319 {
+      14.4668626785 -1.38925588131 1.6657987833
+      <UV>  {
+        0.070286 0.657092
+        <Tangent> { 0.365544 -0.393601 -0.843478 }
+        <Binormal> { -0.777795 -0.623471 -0.046142 }
+      }
+      <Normal> { 0.531175 -0.698172 0.479934 }
+    }
+    <Vertex> 320 {
+      11.4583120346 -1.86106801033 1.74562036991
+      <UV>  {
+        0.763445 0.096181
+        <Tangent> { 0.404975 -0.236511 -0.883209 }
+        <Binormal> { -0.903623 -0.094140 -0.389126 }
+      }
+      <Normal> { -0.070528 -0.919675 0.386273 }
+    }
+    <Vertex> 321 {
+      8.44976234436 -0.815645933151 1.82544195652
+      <UV>  {
+        0.772619 0.217975
+        <Tangent> { -0.168491 -0.248229 -0.953936 }
+        <Binormal> { -0.733263 0.662406 -0.042854 }
+      }
+      <Normal> { -0.617725 -0.655721 0.434065 }
+    }
+    <Vertex> 322 {
+      7.33035802841 -2.14091944695 0.196663975716
+      <UV>  {
+        0.902983 0.195288
+        <Tangent> { -0.546592 -0.726925 -0.415712 }
+        <Binormal> { -0.789561 0.610224 -0.028911 }
+      }
+      <Normal> { -0.243110 -0.270425 0.931516 }
+    }
+    <Vertex> 323 {
+      11.3891267776 -2.91355037689 0.351220369339
+      <UV>  {
+        0.818862 0.096425
+        <Tangent> { -0.111593 -0.783677 -0.611062 }
+        <Binormal> { -0.983175 0.103988 0.046186 }
+      }
+      <Normal> { -0.011414 -0.494034 0.869350 }
+    }
+    <Vertex> 324 {
+      11.4583120346 -1.86106801033 1.74562036991
+      <UV>  {
+        0.763445 0.096181
+        <Tangent> { 0.404975 -0.236511 -0.883209 }
+        <Binormal> { -0.903623 -0.094140 -0.389126 }
+      }
+      <Normal> { -0.070528 -0.919675 0.386273 }
+    }
+    <Vertex> 325 {
+      11.3891267776 -2.91355037689 0.351220369339
+      <UV>  {
+        0.818862 0.096425
+        <Tangent> { -0.111593 -0.783677 -0.611062 }
+        <Binormal> { -0.983175 0.103988 0.046186 }
+      }
+      <Normal> { -0.011414 -0.494034 0.869350 }
+    }
+    <Vertex> 326 {
+      15.5468168259 -2.23269701004 0.171120867133
+      <UV>  {
+        0.748665 0.005374
+        <Tangent> { 0.505968 -0.446094 -0.738239 }
+        <Binormal> { -0.634717 -0.642327 -0.046879 }
+      }
+      <Normal> { 0.237251 -0.301828 0.923338 }
+    }
+    <Vertex> 327 {
+      14.4668626785 -1.38925588131 1.6657987833
+      <UV>  {
+        0.747013 0.005374
+        <Tangent> { 0.448741 -0.232063 -0.863005 }
+        <Binormal> { -0.713901 -0.673773 -0.190032 }
+      }
+      <Normal> { 0.531175 -0.698172 0.479934 }
+    }
+    <Vertex> 328 {
+      11.4583120346 -1.86106801033 1.74562036991
+      <UV>  {
+        0.763445 0.096181
+        <Tangent> { 0.404975 -0.236511 -0.883209 }
+        <Binormal> { -0.903623 -0.094140 -0.389126 }
+      }
+      <Normal> { -0.070528 -0.919675 0.386273 }
+    }
+    <Vertex> 329 {
+      14.4668626785 -1.38925588131 1.6657987833
+      <UV>  {
+        0.747013 0.005374
+        <Tangent> { 0.448741 -0.232063 -0.863005 }
+        <Binormal> { -0.713901 -0.673773 -0.190032 }
+      }
+      <Normal> { 0.531175 -0.698172 0.479934 }
+    }
+    <Vertex> 330 {
+      13.8148508072 -1.33702301979 3.50198435783
+      <UV>  {
+        0.745361 0.005374
+        <Tangent> { 0.322796 -0.023402 -0.946179 }
+        <Binormal> { -0.736413 -0.634039 -0.235551 }
+      }
+      <Normal> { 0.590289 -0.772515 0.233955 }
+    }
+    <Vertex> 331 {
+      11.1585836411 -1.65213620663 3.62171697617
+      <UV>  {
+        0.741389 0.096181
+        <Tangent> { 0.205707 -0.016504 -0.978474 }
+        <Binormal> { -0.971081 0.120043 -0.206177 }
+      }
+      <Normal> { -0.122074 -0.992492 -0.002899 }
+    }
+    <Vertex> 332 {
+      11.4583120346 -1.86106801033 1.74562036991
+      <UV>  {
+        0.763445 0.096181
+        <Tangent> { 0.404975 -0.236511 -0.883209 }
+        <Binormal> { -0.903623 -0.094140 -0.389126 }
+      }
+      <Normal> { -0.070528 -0.919675 0.386273 }
+    }
+    <Vertex> 333 {
+      11.1585836411 -1.65213620663 3.62171697617
+      <UV>  {
+        0.741389 0.096181
+        <Tangent> { 0.205707 -0.016504 -0.978474 }
+        <Binormal> { -0.971081 0.120043 -0.206177 }
+      }
+      <Normal> { -0.122074 -0.992492 -0.002899 }
+    }
+    <Vertex> 334 {
+      8.50231838226 -0.476608067751 3.7414495945
+      <UV>  {
+        0.740936 0.218092
+        <Tangent> { 0.088476 -0.005560 -0.996063 }
+        <Binormal> { -0.694129 0.716602 -0.065656 }
+      }
+      <Normal> { -0.715751 -0.697104 -0.041475 }
+    }
+    <Vertex> 335 {
+      8.44976234436 -0.815645933151 1.82544195652
+      <UV>  {
+        0.772619 0.217975
+        <Tangent> { -0.168491 -0.248229 -0.953936 }
+        <Binormal> { -0.733263 0.662406 -0.042854 }
+      }
+      <Normal> { -0.617725 -0.655721 0.434065 }
+    }
+    <Vertex> 336 {
+      0.799248695374 10.1584644318 1.74562072754
+      <UV>  {
+        0.757553 0.228970
+        <Tangent> { 0.621971 -0.187741 0.760201 }
+        <Binormal> { -0.072583 -0.975058 -0.181417 }
+      }
+      <Normal> { -0.710013 -0.077364 0.699881 }
+    }
+    <Vertex> 337 {
+      1.09304213524 14.8763160706 1.6657987833
+      <UV>  {
+        0.759243 0.009555
+        <Tangent> { 0.687673 -0.532038 0.494004 }
+        <Binormal> { -0.552130 -0.822528 -0.117269 }
+      }
+      <Normal> { -0.516495 0.229072 0.825068 }
+    }
+    <Vertex> 338 {
+      -1.77140462399 17.0585784912 0.171120867133
+      <UV>  {
+        0.809003 0.009555
+        <Tangent> { 0.831943 -0.379528 0.404757 }
+        <Binormal> { -0.410178 -0.897710 0.001331 }
+      }
+      <Normal> { -0.229163 0.106143 0.967559 }
+    }
+    <Vertex> 339 {
+      -1.2541372776 10.6149988174 0.351220369339
+      <UV>  {
+        0.847657 0.230990
+        <Tangent> { 0.865105 -0.187209 0.465345 }
+        <Binormal> { -0.139522 -0.975418 -0.133033 }
+      }
+      <Normal> { -0.386670 -0.070101 0.919523 }
+    }
+    <Vertex> 340 {
+      0.799248695374 10.1584644318 1.74562072754
+      <UV>  {
+        0.757553 0.228970
+        <Tangent> { 0.621971 -0.187741 0.760201 }
+        <Binormal> { -0.072583 -0.975058 -0.181417 }
+      }
+      <Normal> { -0.710013 -0.077364 0.699881 }
+    }
+    <Vertex> 341 {
+      -1.2541372776 10.6149988174 0.351220369339
+      <UV>  {
+        0.847657 0.230990
+        <Tangent> { 0.865105 -0.187209 0.465345 }
+        <Binormal> { -0.139522 -0.975418 -0.133033 }
+      }
+      <Normal> { -0.386670 -0.070101 0.919523 }
+    }
+    <Vertex> 342 {
+      0.749846220016 4.60740232468 0.173797205091
+      <UV>  {
+        0.795663 0.447032
+        <Tangent> { 0.643032 0.047219 0.764382 }
+        <Binormal> { 0.237583 -0.816008 -0.149458 }
+      }
+      <Normal> { -0.291787 -0.253853 0.922147 }
+    }
+    <Vertex> 343 {
+      2.12487697601 5.84935998917 1.82544267178
+      <UV>  {
+        0.755864 0.448385
+        <Tangent> { 0.408880 0.211254 0.887800 }
+        <Binormal> { 0.583548 -0.800143 -0.078360 }
+      }
+      <Normal> { -0.647114 -0.525986 0.551836 }
+    }
+    <Vertex> 344 {
+      0.799248695374 10.1584644318 1.74562072754
+      <UV>  {
+        0.757553 0.228970
+        <Tangent> { 0.621971 -0.187741 0.760201 }
+        <Binormal> { -0.072583 -0.975058 -0.181417 }
+      }
+      <Normal> { -0.710013 -0.077364 0.699881 }
+    }
+    <Vertex> 345 {
+      2.12487697601 5.84935998917 1.82544267178
+      <UV>  {
+        0.755864 0.448385
+        <Tangent> { 0.408880 0.211254 0.887800 }
+        <Binormal> { 0.583548 -0.800143 -0.078360 }
+      }
+      <Normal> { -0.647114 -0.525986 0.551836 }
+    }
+    <Vertex> 346 {
+      2.72056818008 5.83084440231 3.7414495945
+      <UV>  {
+        0.736208 0.450526
+        <Tangent> { 0.184557 -0.135990 0.973368 }
+        <Binormal> { 0.568345 -0.792956 -0.218546 }
+      }
+      <Normal> { -0.805353 -0.590747 0.049043 }
+    }
+    <Vertex> 347 {
+      2.14021348953 9.46903705597 3.62171697617
+      <UV>  {
+        0.716129 0.232330
+        <Tangent> { 0.233033 -0.304719 0.923494 }
+        <Binormal> { -0.060735 -0.952327 -0.298907 }
+      }
+      <Normal> { -0.969420 -0.015046 0.244911 }
+    }
+    <Vertex> 348 {
+      0.799248695374 10.1584644318 1.74562072754
+      <UV>  {
+        0.757553 0.228970
+        <Tangent> { 0.621971 -0.187741 0.760201 }
+        <Binormal> { -0.072583 -0.975058 -0.181417 }
+      }
+      <Normal> { -0.710013 -0.077364 0.699881 }
+    }
+    <Vertex> 349 {
+      2.14021348953 9.46903705597 3.62171697617
+      <UV>  {
+        0.716129 0.232330
+        <Tangent> { 0.233033 -0.304719 0.923494 }
+        <Binormal> { -0.060735 -0.952327 -0.298907 }
+      }
+      <Normal> { -0.969420 -0.015046 0.244911 }
+    }
+    <Vertex> 350 {
+      2.86528635025 13.4712696075 3.50198435783
+      <UV>  {
+        0.709483 0.009555
+        <Tangent> { 0.254680 -0.411612 0.875050 }
+        <Binormal> { -0.534682 -0.807296 -0.224124 }
+      }
+      <Normal> { -0.770684 0.365551 0.521867 }
+    }
+    <Vertex> 351 {
+      1.09304213524 14.8763160706 1.6657987833
+      <UV>  {
+        0.759243 0.009555
+        <Tangent> { 0.687673 -0.532038 0.494004 }
+        <Binormal> { -0.552130 -0.822528 -0.117269 }
+      }
+      <Normal> { -0.516495 0.229072 0.825068 }
+    }
+    <Vertex> 352 {
+      3.55736398697 17.5389270782 1.63919115067
+      <UV>  {
+        0.452988 0.209036
+        <Tangent> { 0.931730 0.333499 0.143730 }
+        <Binormal> { 0.201667 -0.804258 0.558828 }
+      }
+      <Normal> { -0.290048 0.495956 0.818445 }
+    }
+    <Vertex> 353 {
+      7.26489925385 18.7651672363 1.63919150829
+      <UV>  {
+        0.378731 0.192275
+        <Tangent> { 0.988012 0.138632 0.067929 }
+        <Binormal> { 0.065486 -0.774755 0.628667 }
+      }
+      <Normal> { -0.126255 0.618580 0.775475 }
+    }
+    <Vertex> 354 {
+      7.06949853897 20.5617847443 0.324613153934
+      <UV>  {
+        0.376328 0.136154
+        <Tangent> { 0.993252 0.113493 0.023883 }
+        <Binormal> { 0.094905 -0.913710 0.395077 }
+      }
+      <Normal> { -0.063417 0.390515 0.918393 }
+    }
+    <Vertex> 355 {
+      2.50994849205 19.507982254 0.324613153934
+      <UV>  {
+        0.457135 0.147978
+        <Tangent> { 0.969698 0.235553 0.064808 }
+        <Binormal> { 0.202780 -0.923982 0.324209 }
+      }
+      <Normal> { -0.134342 0.301706 0.943876 }
+    }
+    <Vertex> 356 {
+      3.55736398697 17.5389270782 1.63919115067
+      <UV>  {
+        0.452988 0.209036
+        <Tangent> { 0.931730 0.333499 0.143730 }
+        <Binormal> { 0.201667 -0.804258 0.558828 }
+      }
+      <Normal> { -0.290048 0.495956 0.818445 }
+    }
+    <Vertex> 357 {
+      2.50994849205 19.507982254 0.324613153934
+      <UV>  {
+        0.457135 0.147978
+        <Tangent> { 0.969698 0.235553 0.064808 }
+        <Binormal> { 0.202780 -0.923982 0.324209 }
+      }
+      <Normal> { -0.134342 0.301706 0.943876 }
+    }
+    <Vertex> 358 {
+      -1.77140462399 17.0585784912 0.171120867133
+      <UV>  {
+        0.551463 0.169949
+        <Tangent> { 0.968990 0.241594 0.051874 }
+        <Binormal> { 0.228250 -0.949442 0.158216 }
+      }
+      <Normal> { -0.229163 0.106143 0.967559 }
+    }
+    <Vertex> 359 {
+      1.09304213524 14.8763160706 1.6657987833
+      <UV>  {
+        0.518780 0.233265
+        <Tangent> { 0.850976 0.501792 0.155062 }
+        <Binormal> { 0.378492 -0.782202 0.454108 }
+      }
+      <Normal> { -0.516495 0.229072 0.825068 }
+    }
+    <Vertex> 360 {
+      3.55736398697 17.5389270782 1.63919115067
+      <UV>  {
+        0.452988 0.209036
+        <Tangent> { 0.931730 0.333499 0.143730 }
+        <Binormal> { 0.201667 -0.804258 0.558828 }
+      }
+      <Normal> { -0.290048 0.495956 0.818445 }
+    }
+    <Vertex> 361 {
+      1.09304213524 14.8763160706 1.6657987833
+      <UV>  {
+        0.518780 0.233265
+        <Tangent> { 0.850976 0.501792 0.155062 }
+        <Binormal> { 0.378492 -0.782202 0.454108 }
+      }
+      <Normal> { -0.516495 0.229072 0.825068 }
+    }
+    <Vertex> 362 {
+      2.86528635025 13.4712696075 3.50198435783
+      <UV>  {
+        0.486096 0.296581
+        <Tangent> { 0.783276 0.574338 0.237938 }
+        <Binormal> { 0.212750 -0.592140 0.728960 }
+      }
+      <Normal> { -0.770684 0.365551 0.521867 }
+    }
+    <Vertex> 363 {
+      4.70696640015 15.7761211395 3.46207380295
+      <UV>  {
+        0.444750 0.271283
+        <Tangent> { 0.870375 0.436217 0.228390 }
+        <Binormal> { 0.164196 -0.693172 0.698198 }
+      }
+      <Normal> { -0.401227 0.601093 0.691122 }
+    }
+    <Vertex> 364 {
+      3.55736398697 17.5389270782 1.63919115067
+      <UV>  {
+        0.452988 0.209036
+        <Tangent> { 0.931730 0.333499 0.143730 }
+        <Binormal> { 0.201667 -0.804258 0.558828 }
+      }
+      <Normal> { -0.290048 0.495956 0.818445 }
+    }
+    <Vertex> 365 {
+      4.70696640015 15.7761211395 3.46207380295
+      <UV>  {
+        0.444750 0.271283
+        <Tangent> { 0.870375 0.436217 0.228390 }
+        <Binormal> { 0.164196 -0.693172 0.698198 }
+      }
+      <Normal> { -0.401227 0.601093 0.691122 }
+    }
+    <Vertex> 366 {
+      7.45612001419 16.8682441711 3.46207380295
+      <UV>  {
+        0.380939 0.254091
+        <Tangent> { 0.988945 0.118915 0.088579 }
+        <Binormal> { 0.030125 -0.746016 0.665175 }
+      }
+      <Normal> { -0.141728 0.655568 0.741661 }
+    }
+    <Vertex> 367 {
+      7.26489925385 18.7651672363 1.63919150829
+      <UV>  {
+        0.378731 0.192275
+        <Tangent> { 0.988012 0.138632 0.067929 }
+        <Binormal> { 0.065486 -0.774755 0.628667 }
+      }
+      <Normal> { -0.126255 0.618580 0.775475 }
+    }
+    <Vertex> 368 {
+      4.51881837845 4.41299104691 1.85204946995
+      <UV>  {
+        0.755760 0.535372
+        <Tangent> { -0.685565 0.440361 0.579726 }
+        <Binormal> { 0.665376 0.077572 0.727928 }
+      }
+      <Normal> { -0.375713 -0.820460 0.430860 }
+    }
+    <Vertex> 369 {
+      2.12487697601 5.84935998917 1.82544267178
+      <UV>  {
+        0.756840 0.454244
+        <Tangent> { 0.464591 0.159459 0.871050 }
+        <Binormal> { 0.546156 -0.820047 -0.141180 }
+      }
+      <Normal> { -0.647114 -0.525986 0.551836 }
+    }
+    <Vertex> 370 {
+      0.749846220016 4.60740232468 0.173797205091
+      <UV>  {
+        0.797616 0.458751
+        <Tangent> { -0.782593 0.590655 0.196662 }
+        <Binormal> { 0.594594 0.664282 0.371009 }
+      }
+      <Normal> { -0.291787 -0.253853 0.922147 }
+    }
+    <Vertex> 371 {
+      4.1042881012 3.32009768486 0.377827942371
+      <UV>  {
+        0.796167 0.503369
+        <Tangent> { -0.898366 0.434930 -0.061442 }
+        <Binormal> { 0.347024 0.788397 0.506860 }
+      }
+      <Normal> { -0.240059 -0.447981 0.861171 }
+    }
+    <Vertex> 372 {
+      4.51881837845 4.41299104691 1.85204946995
+      <UV>  {
+        0.755760 0.535372
+        <Tangent> { -0.685565 0.440361 0.579726 }
+        <Binormal> { 0.665376 0.077572 0.727928 }
+      }
+      <Normal> { -0.375713 -0.820460 0.430860 }
+    }
+    <Vertex> 373 {
+      4.1042881012 3.32009768486 0.377827942371
+      <UV>  {
+        0.796167 0.503369
+        <Tangent> { -0.898366 0.434930 -0.061442 }
+        <Binormal> { 0.347024 0.788397 0.506860 }
+      }
+      <Normal> { -0.240059 -0.447981 0.861171 }
+    }
+    <Vertex> 374 {
+      5.8857550621 2.81278657913 0.760033249855
+      <UV>  {
+        0.785443 0.494519
+        <Tangent> { -0.959577 0.198762 -0.199262 }
+        <Binormal> { 0.075893 0.854861 0.487242 }
+      }
+      <Normal> { -0.421827 -0.420392 0.803278 }
+    }
+    <Vertex> 375 {
+      6.71489095688 3.68096613884 1.85204946995
+      <UV>  {
+        0.758099 0.542528
+        <Tangent> { -0.942058 0.331607 -0.050629 }
+        <Binormal> { 0.118109 0.458100 0.802760 }
+      }
+      <Normal> { -0.631336 -0.629902 0.452345 }
+    }
+    <Vertex> 376 {
+      4.51881837845 4.41299104691 1.85204946995
+      <UV>  {
+        0.755760 0.535372
+        <Tangent> { -0.685565 0.440361 0.579726 }
+        <Binormal> { 0.665376 0.077572 0.727928 }
+      }
+      <Normal> { -0.375713 -0.820460 0.430860 }
+    }
+    <Vertex> 377 {
+      6.71489095688 3.68096613884 1.85204946995
+      <UV>  {
+        0.758099 0.542528
+        <Tangent> { -0.942058 0.331607 -0.050629 }
+        <Binormal> { 0.118109 0.458100 0.802760 }
+      }
+      <Normal> { -0.631336 -0.629902 0.452345 }
+    }
+    <Vertex> 378 {
+      6.91146659851 3.91268157959 3.78136014938
+      <UV>  {
+        0.720827 0.542872
+        <Tangent> { -0.701872 0.312412 -0.640136 }
+        <Binormal> { -0.453388 0.450726 0.717086 }
+      }
+      <Normal> { -0.707389 -0.706809 -0.002991 }
+    }
+    <Vertex> 379 {
+      4.79517126083 4.61811351776 3.78136014938
+      <UV>  {
+        0.717495 0.534408
+        <Tangent> { 0.006581 -0.008271 0.999944 }
+        <Binormal> { 0.913539 -0.406518 -0.009375 }
+      }
+      <Normal> { -0.406629 -0.913480 -0.013306 }
+    }
+    <Vertex> 380 {
+      4.51881837845 4.41299104691 1.85204946995
+      <UV>  {
+        0.755760 0.535372
+        <Tangent> { -0.685565 0.440361 0.579726 }
+        <Binormal> { 0.665376 0.077572 0.727928 }
+      }
+      <Normal> { -0.375713 -0.820460 0.430860 }
+    }
+    <Vertex> 381 {
+      4.79517126083 4.61811351776 3.78136014938
+      <UV>  {
+        0.717495 0.534408
+        <Tangent> { 0.006581 -0.008271 0.999944 }
+        <Binormal> { 0.913539 -0.406518 -0.009375 }
+      }
+      <Normal> { -0.406629 -0.913480 -0.013306 }
+    }
+    <Vertex> 382 {
+      2.72056818008 5.83084440231 3.7414495945
+      <UV>  {
+        0.736208 0.450526
+        <Tangent> { 0.184557 -0.135990 0.973368 }
+        <Binormal> { 0.568345 -0.792956 -0.218546 }
+      }
+      <Normal> { -0.805353 -0.590747 0.049043 }
+    }
+    <Vertex> 383 {
+      2.12487697601 5.84935998917 1.82544267178
+      <UV>  {
+        0.756840 0.454244
+        <Tangent> { 0.464591 0.159459 0.871050 }
+        <Binormal> { 0.546156 -0.820047 -0.141180 }
+      }
+      <Normal> { -0.647114 -0.525986 0.551836 }
+    }
+    <Vertex> 384 {
+      7.44691419601 1.48489296436 1.85204946995
+      <UV>  {
+        0.767278 0.401743
+        <Tangent> { -0.330507 -0.187638 -0.924963 }
+        <Binormal> { -0.378639 0.923467 -0.052040 }
+      }
+      <Normal> { -0.852901 -0.326762 0.407147 }
+    }
+    <Vertex> 385 {
+      6.71489095688 3.68096613884 1.85204946995
+      <UV>  {
+        0.758099 0.542528
+        <Tangent> { -0.942058 0.331607 -0.050629 }
+        <Binormal> { 0.118109 0.458100 0.802760 }
+      }
+      <Normal> { -0.631336 -0.629902 0.452345 }
+    }
+    <Vertex> 386 {
+      5.8857550621 2.81278657913 0.760033249855
+      <UV>  {
+        0.785443 0.494519
+        <Tangent> { -0.959577 0.198762 -0.199262 }
+        <Binormal> { 0.075893 0.854861 0.487242 }
+      }
+      <Normal> { -0.421827 -0.420392 0.803278 }
+    }
+    <Vertex> 387 {
+      6.40673065186 1.01765370369 0.377827942371
+      <UV>  {
+        0.803240 0.402021
+        <Tangent> { -0.859743 -0.162305 -0.484250 }
+        <Binormal> { -0.244368 0.963096 0.111056 }
+      }
+      <Normal> { -0.464187 -0.216803 0.858760 }
+    }
+    <Vertex> 388 {
+      7.44691419601 1.48489296436 1.85204946995
+      <UV>  {
+        0.767278 0.401743
+        <Tangent> { -0.330507 -0.187638 -0.924963 }
+        <Binormal> { -0.378639 0.923467 -0.052040 }
+      }
+      <Normal> { -0.852901 -0.326762 0.407147 }
+    }
+    <Vertex> 389 {
+      6.40673065186 1.01765370369 0.377827942371
+      <UV>  {
+        0.803240 0.402021
+        <Tangent> { -0.859743 -0.162305 -0.484250 }
+        <Binormal> { -0.244368 0.963096 0.111056 }
+      }
+      <Normal> { -0.464187 -0.216803 0.858760 }
+    }
+    <Vertex> 390 {
+      7.33035802841 -2.14091944695 0.196663975716
+      <UV>  {
+        0.902983 0.195288
+        <Tangent> { -0.546592 -0.726925 -0.415712 }
+        <Binormal> { -0.789561 0.610224 -0.028911 }
+      }
+      <Normal> { -0.243110 -0.270425 0.931516 }
+    }
+    <Vertex> 391 {
+      8.44976234436 -0.815645933151 1.82544195652
+      <UV>  {
+        0.772619 0.217975
+        <Tangent> { -0.168491 -0.248229 -0.953936 }
+        <Binormal> { -0.733263 0.662406 -0.042854 }
+      }
+      <Normal> { -0.617725 -0.655721 0.434065 }
+    }
+    <Vertex> 392 {
+      7.44691419601 1.48489296436 1.85204946995
+      <UV>  {
+        0.767278 0.401743
+        <Tangent> { -0.330507 -0.187638 -0.924963 }
+        <Binormal> { -0.378639 0.923467 -0.052040 }
+      }
+      <Normal> { -0.852901 -0.326762 0.407147 }
+    }
+    <Vertex> 393 {
+      8.44976234436 -0.815645933151 1.82544195652
+      <UV>  {
+        0.772619 0.217975
+        <Tangent> { -0.168491 -0.248229 -0.953936 }
+        <Binormal> { -0.733263 0.662406 -0.042854 }
+      }
+      <Normal> { -0.617725 -0.655721 0.434065 }
+    }
+    <Vertex> 394 {
+      8.50231838226 -0.476608067751 3.7414495945
+      <UV>  {
+        0.740936 0.218092
+        <Tangent> { 0.088476 -0.005560 -0.996063 }
+        <Binormal> { -0.694129 0.716602 -0.065656 }
+      }
+      <Normal> { -0.715751 -0.697104 -0.041475 }
+    }
+    <Vertex> 395 {
+      7.61689758301 1.79638600349 3.78136014938
+      <UV>  {
+        0.731361 0.402211
+        <Tangent> { 0.000556 0.006047 -0.999982 }
+        <Binormal> { -0.339777 0.940418 0.005498 }
+      }
+      <Normal> { -0.940428 -0.339702 -0.013520 }
+    }
+    <Vertex> 396 {
+      7.44691419601 1.48489296436 1.85204946995
+      <UV>  {
+        0.767278 0.401743
+        <Tangent> { -0.330507 -0.187638 -0.924963 }
+        <Binormal> { -0.378639 0.923467 -0.052040 }
+      }
+      <Normal> { -0.852901 -0.326762 0.407147 }
+    }
+    <Vertex> 397 {
+      7.61689758301 1.79638600349 3.78136014938
+      <UV>  {
+        0.731361 0.402211
+        <Tangent> { 0.000556 0.006047 -0.999982 }
+        <Binormal> { -0.339777 0.940418 0.005498 }
+      }
+      <Normal> { -0.940428 -0.339702 -0.013520 }
+    }
+    <Vertex> 398 {
+      6.91146659851 3.91268157959 3.78136014938
+      <UV>  {
+        0.720827 0.542872
+        <Tangent> { -0.701872 0.312412 -0.640136 }
+        <Binormal> { -0.453388 0.450726 0.717086 }
+      }
+      <Normal> { -0.707389 -0.706809 -0.002991 }
+    }
+    <Vertex> 399 {
+      6.71489095688 3.68096613884 1.85204946995
+      <UV>  {
+        0.758099 0.542528
+        <Tangent> { -0.942058 0.331607 -0.050629 }
+        <Binormal> { 0.118109 0.458100 0.802760 }
+      }
+      <Normal> { -0.631336 -0.629902 0.452345 }
+    }
+    <Vertex> 400 {
+      7.44691419601 1.48489284515 5.63803434372
+      <UV>  {
+        0.696740 0.402583
+        <Tangent> { 0.164226 0.263407 -0.950603 }
+        <Binormal> { -0.364081 0.911751 0.189742 }
+      }
+      <Normal> { -0.914762 -0.311838 -0.256813 }
+    }
+    <Vertex> 401 {
+      6.71489095688 3.68096613884 5.63803434372
+      <UV>  {
+        0.685754 0.543484
+        <Tangent> { -0.922883 0.373574 -0.093432 }
+        <Binormal> { -0.171365 -0.203736 0.878064 }
+      }
+      <Normal> { -0.675954 -0.677816 -0.289193 }
+    }
+    <Vertex> 402 {
+      6.91146659851 3.91268157959 3.78136014938
+      <UV>  {
+        0.720827 0.542872
+        <Tangent> { -0.701872 0.312412 -0.640136 }
+        <Binormal> { -0.453388 0.450726 0.717086 }
+      }
+      <Normal> { -0.707389 -0.706809 -0.002991 }
+    }
+    <Vertex> 403 {
+      7.61689758301 1.79638600349 3.78136014938
+      <UV>  {
+        0.731361 0.402211
+        <Tangent> { 0.000556 0.006047 -0.999982 }
+        <Binormal> { -0.339777 0.940418 0.005498 }
+      }
+      <Normal> { -0.940428 -0.339702 -0.013520 }
+    }
+    <Vertex> 404 {
+      7.44691419601 1.48489284515 5.63803434372
+      <UV>  {
+        0.696740 0.402583
+        <Tangent> { 0.164226 0.263407 -0.950603 }
+        <Binormal> { -0.364081 0.911751 0.189742 }
+      }
+      <Normal> { -0.914762 -0.311838 -0.256813 }
+    }
+    <Vertex> 405 {
+      7.61689758301 1.79638600349 3.78136014938
+      <UV>  {
+        0.731361 0.402211
+        <Tangent> { 0.000556 0.006047 -0.999982 }
+        <Binormal> { -0.339777 0.940418 0.005498 }
+      }
+      <Normal> { -0.940428 -0.339702 -0.013520 }
+    }
+    <Vertex> 406 {
+      8.50231838226 -0.476608067751 3.7414495945
+      <UV>  {
+        0.740936 0.218092
+        <Tangent> { 0.088476 -0.005560 -0.996063 }
+        <Binormal> { -0.694129 0.716602 -0.065656 }
+      }
+      <Normal> { -0.715751 -0.697104 -0.041475 }
+    }
+    <Vertex> 407 {
+      8.24225139618 -0.815646111965 5.61142683029
+      <UV>  {
+        0.707726 0.218185
+        <Tangent> { 0.187188 0.292207 -0.937857 }
+        <Binormal> { -0.691838 0.716890 0.085276 }
+      }
+      <Normal> { -0.699240 -0.635975 -0.326426 }
+    }
+    <Vertex> 408 {
+      7.44691419601 1.48489284515 5.63803434372
+      <UV>  {
+        0.696740 0.402583
+        <Tangent> { 0.164226 0.263407 -0.950603 }
+        <Binormal> { -0.364081 0.911751 0.189742 }
+      }
+      <Normal> { -0.914762 -0.311838 -0.256813 }
+    }
+    <Vertex> 409 {
+      8.24225139618 -0.815646111965 5.61142683029
+      <UV>  {
+        0.707726 0.218185
+        <Tangent> { 0.187188 0.292207 -0.937857 }
+        <Binormal> { -0.691838 0.716890 0.085276 }
+      }
+      <Normal> { -0.699240 -0.635975 -0.326426 }
+    }
+    <Vertex> 410 {
+      7.83960199356 -1.50740194321 7.04303026199
+      <UV>  {
+        0.673990 0.218255
+        <Tangent> { 0.328042 0.511637 -0.794113 }
+        <Binormal> { -0.721731 0.677183 0.138159 }
+      }
+      <Normal> { -0.596240 -0.508774 -0.620960 }
+    }
+    <Vertex> 411 {
+      7.1133184433 0.860100746155 7.04968214035
+      <UV>  {
+        0.661221 0.402863
+        <Tangent> { 0.262640 0.507040 -0.820933 }
+        <Binormal> { -0.486165 0.800903 0.339131 }
+      }
+      <Normal> { -0.807245 -0.267190 -0.526231 }
+    }
+    <Vertex> 412 {
+      7.44691419601 1.48489284515 5.63803434372
+      <UV>  {
+        0.696740 0.402583
+        <Tangent> { 0.164226 0.263407 -0.950603 }
+        <Binormal> { -0.364081 0.911751 0.189742 }
+      }
+      <Normal> { -0.914762 -0.311838 -0.256813 }
+    }
+    <Vertex> 413 {
+      7.1133184433 0.860100746155 7.04968214035
+      <UV>  {
+        0.661221 0.402863
+        <Tangent> { 0.262640 0.507040 -0.820933 }
+        <Binormal> { -0.486165 0.800903 0.339131 }
+      }
+      <Normal> { -0.807245 -0.267190 -0.526231 }
+    }
+    <Vertex> 414 {
+      6.29482984543 3.20148730278 7.04968214035
+      <UV>  {
+        0.649047 0.543539
+        <Tangent> { 0.955460 -0.293569 0.030215 }
+        <Binormal> { 0.194185 0.559209 -0.707242 }
+      }
+      <Normal> { -0.559954 -0.568163 -0.602985 }
+    }
+    <Vertex> 415 {
+      6.71489095688 3.68096613884 5.63803434372
+      <UV>  {
+        0.685754 0.543484
+        <Tangent> { -0.922883 0.373574 -0.093432 }
+        <Binormal> { -0.171365 -0.203736 0.878064 }
+      }
+      <Normal> { -0.675954 -0.677816 -0.289193 }
+    }
+    <Vertex> 416 {
+      4.51881790161 4.41299104691 5.63803434372
+      <UV>  {
+        0.682092 0.534993
+        <Tangent> { -0.258027 -0.221064 0.940507 }
+        <Binormal> { 0.896448 -0.417717 0.147757 }
+      }
+      <Normal> { -0.358898 -0.880123 -0.310709 }
+    }
+    <Vertex> 417 {
+      2.3956720829 5.48475694656 5.61142683029
+      <UV>  {
+        0.681923 0.419915
+        <Tangent> { -0.338513 -0.340034 0.877374 }
+        <Binormal> { 0.635610 -0.768303 -0.052528 }
+      }
+      <Normal> { -0.710166 -0.558184 -0.428999 }
+    }
+    <Vertex> 418 {
+      2.72056818008 5.83084440231 3.7414495945
+      <UV>  {
+        0.736208 0.450526
+        <Tangent> { 0.184557 -0.135990 0.973368 }
+        <Binormal> { 0.568345 -0.792956 -0.218546 }
+      }
+      <Normal> { -0.805353 -0.590747 0.049043 }
+    }
+    <Vertex> 419 {
+      4.79517126083 4.61811351776 3.78136014938
+      <UV>  {
+        0.717495 0.534408
+        <Tangent> { 0.006581 -0.008271 0.999944 }
+        <Binormal> { 0.913539 -0.406518 -0.009375 }
+      }
+      <Normal> { -0.406629 -0.913480 -0.013306 }
+    }
+    <Vertex> 420 {
+      4.51881790161 4.41299104691 5.63803434372
+      <UV>  {
+        0.682092 0.534993
+        <Tangent> { -0.258027 -0.221064 0.940507 }
+        <Binormal> { 0.896448 -0.417717 0.147757 }
+      }
+      <Normal> { -0.358898 -0.880123 -0.310709 }
+    }
+    <Vertex> 421 {
+      4.79517126083 4.61811351776 3.78136014938
+      <UV>  {
+        0.717495 0.534408
+        <Tangent> { 0.006581 -0.008271 0.999944 }
+        <Binormal> { 0.913539 -0.406518 -0.009375 }
+      }
+      <Normal> { -0.406629 -0.913480 -0.013306 }
+    }
+    <Vertex> 422 {
+      6.91146659851 3.91268157959 3.78136014938
+      <UV>  {
+        0.720827 0.542872
+        <Tangent> { -0.701872 0.312412 -0.640136 }
+        <Binormal> { -0.453388 0.450726 0.717086 }
+      }
+      <Normal> { -0.707389 -0.706809 -0.002991 }
+    }
+    <Vertex> 423 {
+      6.71489095688 3.68096613884 5.63803434372
+      <UV>  {
+        0.685754 0.543484
+        <Tangent> { -0.922883 0.373574 -0.093432 }
+        <Binormal> { -0.171365 -0.203736 0.878064 }
+      }
+      <Normal> { -0.675954 -0.677816 -0.289193 }
+    }
+    <Vertex> 424 {
+      4.51881790161 4.41299104691 5.63803434372
+      <UV>  {
+        0.682092 0.534993
+        <Tangent> { -0.258027 -0.221064 0.940507 }
+        <Binormal> { 0.896448 -0.417717 0.147757 }
+      }
+      <Normal> { -0.358898 -0.880123 -0.310709 }
+    }
+    <Vertex> 425 {
+      6.71489095688 3.68096613884 5.63803434372
+      <UV>  {
+        0.685754 0.543484
+        <Tangent> { -0.922883 0.373574 -0.093432 }
+        <Binormal> { -0.171365 -0.203736 0.878064 }
+      }
+      <Normal> { -0.675954 -0.677816 -0.289193 }
+    }
+    <Vertex> 426 {
+      6.29482984543 3.20148730278 7.04968214035
+      <UV>  {
+        0.649047 0.543539
+        <Tangent> { 0.955460 -0.293569 0.030215 }
+        <Binormal> { 0.194185 0.559209 -0.707242 }
+      }
+      <Normal> { -0.559954 -0.568163 -0.602985 }
+    }
+    <Vertex> 427 {
+      3.8393611908 3.98195004463 7.04968214035
+      <UV>  {
+        0.646575 0.533816
+        <Tangent> { -0.242577 -0.501811 0.830266 }
+        <Binormal> { 0.923817 -0.368151 0.047400 }
+      }
+      <Normal> { -0.259224 -0.731651 -0.630421 }
+    }
+    <Vertex> 428 {
+      4.51881790161 4.41299104691 5.63803434372
+      <UV>  {
+        0.682092 0.534993
+        <Tangent> { -0.258027 -0.221064 0.940507 }
+        <Binormal> { 0.896448 -0.417717 0.147757 }
+      }
+      <Normal> { -0.358898 -0.880123 -0.310709 }
+    }
+    <Vertex> 429 {
+      3.8393611908 3.98195004463 7.04968214035
+      <UV>  {
+        0.646575 0.533816
+        <Tangent> { -0.242577 -0.501811 0.830266 }
+        <Binormal> { 0.923817 -0.368151 0.047400 }
+      }
+      <Normal> { -0.259224 -0.731651 -0.630421 }
+    }
+    <Vertex> 430 {
+      1.40212368965 4.94877958298 7.04224920273
+      <UV>  {
+        0.648816 0.420128
+        <Tangent> { -0.685542 -0.385352 0.617687 }
+        <Binormal> { 0.573442 -0.808221 0.132218 }
+      }
+      <Normal> { -0.434523 -0.437117 -0.787439 }
+    }
+    <Vertex> 431 {
+      2.3956720829 5.48475694656 5.61142683029
+      <UV>  {
+        0.681923 0.419915
+        <Tangent> { -0.338513 -0.340034 0.877374 }
+        <Binormal> { 0.635610 -0.768303 -0.052528 }
+      }
+      <Normal> { -0.710166 -0.558184 -0.428999 }
+    }
+    <Vertex> 432 {
+      4.64054489136 13.8250484467 5.42517709732
+      <UV>  {
+        0.452132 0.338167
+        <Tangent> { 0.924132 0.330771 0.191233 }
+        <Binormal> { 0.078761 -0.654666 0.751743 }
+      }
+      <Normal> { -0.368480 0.681570 0.632160 }
+    }
+    <Vertex> 433 {
+      7.32818365097 14.4534978867 5.42517709732
+      <UV>  {
+        0.387904 0.325334
+        <Tangent> { 0.995961 0.048047 0.075845 }
+        <Binormal> { -0.009022 -0.786901 0.616969 }
+      }
+      <Normal> { -0.093753 0.614948 0.782952 }
+    }
+    <Vertex> 434 {
+      7.45612001419 16.8682441711 3.46207380295
+      <UV>  {
+        0.380939 0.254091
+        <Tangent> { 0.988945 0.118915 0.088579 }
+        <Binormal> { 0.030125 -0.746016 0.665175 }
+      }
+      <Normal> { -0.141728 0.655568 0.741661 }
+    }
+    <Vertex> 435 {
+      4.70696640015 15.7761211395 3.46207380295
+      <UV>  {
+        0.444750 0.271283
+        <Tangent> { 0.870375 0.436217 0.228390 }
+        <Binormal> { 0.164196 -0.693172 0.698198 }
+      }
+      <Normal> { -0.401227 0.601093 0.691122 }
+    }
+    <Vertex> 436 {
+      4.64054489136 13.8250484467 5.42517709732
+      <UV>  {
+        0.452132 0.338167
+        <Tangent> { 0.924132 0.330771 0.191233 }
+        <Binormal> { 0.078761 -0.654666 0.751743 }
+      }
+      <Normal> { -0.368480 0.681570 0.632160 }
+    }
+    <Vertex> 437 {
+      4.70696640015 15.7761211395 3.46207380295
+      <UV>  {
+        0.444750 0.271283
+        <Tangent> { 0.870375 0.436217 0.228390 }
+        <Binormal> { 0.164196 -0.693172 0.698198 }
+      }
+      <Normal> { -0.401227 0.601093 0.691122 }
+    }
+    <Vertex> 438 {
+      2.86528635025 13.4712696075 3.50198435783
+      <UV>  {
+        0.486096 0.296581
+        <Tangent> { 0.783276 0.574338 0.237938 }
+        <Binormal> { 0.212750 -0.592140 0.728960 }
+      }
+      <Normal> { -0.770684 0.365551 0.521867 }
+    }
+    <Vertex> 439 {
+      2.71781349182 12.1248340607 5.45178461075
+      <UV>  {
+        0.513107 0.355742
+        <Tangent> { 0.776381 0.589438 0.223148 }
+        <Binormal> { -0.043447 -0.283203 0.899235 }
+      }
+      <Normal> { -0.849818 0.513047 0.120518 }
+    }
+    <Vertex> 440 {
+      4.64054489136 13.8250484467 5.42517709732
+      <UV>  {
+        0.452132 0.338167
+        <Tangent> { 0.924132 0.330771 0.191233 }
+        <Binormal> { 0.078761 -0.654666 0.751743 }
+      }
+      <Normal> { -0.368480 0.681570 0.632160 }
+    }
+    <Vertex> 441 {
+      2.71781349182 12.1248340607 5.45178461075
+      <UV>  {
+        0.513107 0.355742
+        <Tangent> { 0.776381 0.589438 0.223148 }
+        <Binormal> { -0.043447 -0.283203 0.899235 }
+      }
+      <Normal> { -0.849818 0.513047 0.120518 }
+    }
+    <Vertex> 442 {
+      1.48394858837 10.8036794662 7.00472736359
+      <UV>  {
+        0.540117 0.414902
+        <Tangent> { 0.918286 0.362542 0.159106 }
+        <Binormal> { -0.121713 -0.071346 0.865038 }
+      }
+      <Normal> { -0.767052 0.639180 -0.055208 }
+    }
+    <Vertex> 443 {
+      3.87495136261 11.9322881699 7.01851797104
+      <UV>  {
+        0.468830 0.399177
+        <Tangent> { 0.989537 0.097897 0.105989 }
+        <Binormal> { 0.010486 -0.779549 0.622140 }
+      }
+      <Normal> { -0.214148 0.607532 0.764855 }
+    }
+    <Vertex> 444 {
+      4.64054489136 13.8250484467 5.42517709732
+      <UV>  {
+        0.452132 0.338167
+        <Tangent> { 0.924132 0.330771 0.191233 }
+        <Binormal> { 0.078761 -0.654666 0.751743 }
+      }
+      <Normal> { -0.368480 0.681570 0.632160 }
+    }
+    <Vertex> 445 {
+      3.87495136261 11.9322881699 7.01851797104
+      <UV>  {
+        0.468830 0.399177
+        <Tangent> { 0.989537 0.097897 0.105989 }
+        <Binormal> { 0.010486 -0.779549 0.622140 }
+      }
+      <Normal> { -0.214148 0.607532 0.764855 }
+    }
+    <Vertex> 446 {
+      7.00420427322 12.0940675735 7.03973960876
+      <UV>  {
+        0.396783 0.390753
+        <Tangent> { 0.998114 -0.027274 0.054998 }
+        <Binormal> { -0.051195 -0.864172 0.500545 }
+      }
+      <Normal> { -0.036470 0.502487 0.863796 }
+    }
+    <Vertex> 447 {
+      7.32818365097 14.4534978867 5.42517709732
+      <UV>  {
+        0.387904 0.325334
+        <Tangent> { 0.995961 0.048047 0.075845 }
+        <Binormal> { -0.009022 -0.786901 0.616969 }
+      }
+      <Normal> { -0.093753 0.614948 0.782952 }
+    }
+    <Vertex> 448 {
+      1.8824300766 8.7000541687 5.53160572052
+      <UV>  {
+        0.681416 0.241056
+        <Tangent> { -0.361925 -0.386608 0.848260 }
+        <Binormal> { 0.119094 -0.921417 -0.369138 }
+      }
+      <Normal> { -0.932554 0.023774 -0.360210 }
+    }
+    <Vertex> 449 {
+      2.71781349182 12.1248340607 5.45178461075
+      <UV>  {
+        0.680741 0.030307
+        <Tangent> { -0.289945 -0.474925 0.830890 }
+        <Binormal> { -0.483522 -0.671162 -0.552355 }
+      }
+      <Normal> { -0.849818 0.513047 0.120518 }
+    }
+    <Vertex> 450 {
+      2.86528635025 13.4712696075 3.50198435783
+      <UV>  {
+        0.709483 0.009555
+        <Tangent> { 0.254680 -0.411612 0.875050 }
+        <Binormal> { -0.534682 -0.807296 -0.224124 }
+      }
+      <Normal> { -0.770684 0.365551 0.521867 }
+    }
+    <Vertex> 451 {
+      2.14021348953 9.46903705597 3.62171697617
+      <UV>  {
+        0.716129 0.232330
+        <Tangent> { 0.233033 -0.304719 0.923494 }
+        <Binormal> { -0.060735 -0.952327 -0.298907 }
+      }
+      <Normal> { -0.969420 -0.015046 0.244911 }
+    }
+    <Vertex> 452 {
+      1.8824300766 8.7000541687 5.53160572052
+      <UV>  {
+        0.681416 0.241056
+        <Tangent> { -0.361925 -0.386608 0.848260 }
+        <Binormal> { 0.119094 -0.921417 -0.369138 }
+      }
+      <Normal> { -0.932554 0.023774 -0.360210 }
+    }
+    <Vertex> 453 {
+      2.14021348953 9.46903705597 3.62171697617
+      <UV>  {
+        0.716129 0.232330
+        <Tangent> { 0.233033 -0.304719 0.923494 }
+        <Binormal> { -0.060735 -0.952327 -0.298907 }
+      }
+      <Normal> { -0.969420 -0.015046 0.244911 }
+    }
+    <Vertex> 454 {
+      2.72056818008 5.83084440231 3.7414495945
+      <UV>  {
+        0.736208 0.450526
+        <Tangent> { 0.184557 -0.135990 0.973368 }
+        <Binormal> { 0.568345 -0.792956 -0.218546 }
+      }
+      <Normal> { -0.805353 -0.590747 0.049043 }
+    }
+    <Vertex> 455 {
+      2.3956720829 5.48475694656 5.61142683029
+      <UV>  {
+        0.681923 0.419915
+        <Tangent> { -0.338513 -0.340034 0.877374 }
+        <Binormal> { 0.635610 -0.768303 -0.052528 }
+      }
+      <Normal> { -0.710166 -0.558184 -0.428999 }
+    }
+    <Vertex> 456 {
+      1.8824300766 8.7000541687 5.53160572052
+      <UV>  {
+        0.681416 0.241056
+        <Tangent> { -0.361925 -0.386608 0.848260 }
+        <Binormal> { 0.119094 -0.921417 -0.369138 }
+      }
+      <Normal> { -0.932554 0.023774 -0.360210 }
+    }
+    <Vertex> 457 {
+      2.3956720829 5.48475694656 5.61142683029
+      <UV>  {
+        0.681923 0.419915
+        <Tangent> { -0.338513 -0.340034 0.877374 }
+        <Binormal> { 0.635610 -0.768303 -0.052528 }
+      }
+      <Normal> { -0.710166 -0.558184 -0.428999 }
+    }
+    <Vertex> 458 {
+      1.40212368965 4.94877958298 7.04224920273
+      <UV>  {
+        0.648816 0.420128
+        <Tangent> { -0.685542 -0.385352 0.617687 }
+        <Binormal> { 0.573442 -0.808221 0.132218 }
+      }
+      <Normal> { -0.434523 -0.437117 -0.787439 }
+    }
+    <Vertex> 459 {
+      0.638329088688 7.84926700592 7.0199508667
+      <UV>  {
+        0.650784 0.248908
+        <Tangent> { -0.734136 -0.422690 0.531392 }
+        <Binormal> { 0.318996 -0.905192 -0.279320 }
+      }
+      <Normal> { -0.619526 0.023774 -0.784570 }
+    }
+    <Vertex> 460 {
+      1.8824300766 8.7000541687 5.53160572052
+      <UV>  {
+        0.681416 0.241056
+        <Tangent> { -0.361925 -0.386608 0.848260 }
+        <Binormal> { 0.119094 -0.921417 -0.369138 }
+      }
+      <Normal> { -0.932554 0.023774 -0.360210 }
+    }
+    <Vertex> 461 {
+      0.638329088688 7.84926700592 7.0199508667
+      <UV>  {
+        0.650784 0.248908
+        <Tangent> { -0.734136 -0.422690 0.531392 }
+        <Binormal> { 0.318996 -0.905192 -0.279320 }
+      }
+      <Normal> { -0.619526 0.023774 -0.784570 }
+    }
+    <Vertex> 462 {
+      1.48394858837 10.8036794662 7.00472736359
+      <UV>  {
+        0.651998 0.051059
+        <Tangent> { -0.687954 -0.487859 0.537320 }
+        <Binormal> { -0.316511 -0.450133 -0.813939 }
+      }
+      <Normal> { -0.767052 0.639180 -0.055208 }
+    }
+    <Vertex> 463 {
+      2.71781349182 12.1248340607 5.45178461075
+      <UV>  {
+        0.680741 0.030307
+        <Tangent> { -0.289945 -0.474925 0.830890 }
+        <Binormal> { -0.483522 -0.671162 -0.552355 }
+      }
+      <Normal> { -0.849818 0.513047 0.120518 }
+    }
+    <Vertex> 464 {
+      10.6282682419 -1.86106801033 5.53160572052
+      <UV>  {
+        0.711389 0.096181
+        <Tangent> { 0.310234 0.187500 -0.931986 }
+        <Binormal> { -0.946342 0.153405 -0.284150 }
+      }
+      <Normal> { -0.093112 -0.972198 -0.214759 }
+    }
+    <Vertex> 465 {
+      8.24225139618 -0.815646111965 5.61142683029
+      <UV>  {
+        0.707726 0.218185
+        <Tangent> { 0.187188 0.292207 -0.937857 }
+        <Binormal> { -0.691838 0.716890 0.085276 }
+      }
+      <Normal> { -0.699240 -0.635975 -0.326426 }
+    }
+    <Vertex> 466 {
+      8.50231838226 -0.476608067751 3.7414495945
+      <UV>  {
+        0.740936 0.218092
+        <Tangent> { 0.088476 -0.005560 -0.996063 }
+        <Binormal> { -0.694129 0.716602 -0.065656 }
+      }
+      <Normal> { -0.715751 -0.697104 -0.041475 }
+    }
+    <Vertex> 467 {
+      11.1585836411 -1.65213620663 3.62171697617
+      <UV>  {
+        0.741389 0.096181
+        <Tangent> { 0.205707 -0.016504 -0.978474 }
+        <Binormal> { -0.971081 0.120043 -0.206177 }
+      }
+      <Normal> { -0.122074 -0.992492 -0.002899 }
+    }
+    <Vertex> 468 {
+      10.6282682419 -1.86106801033 5.53160572052
+      <UV>  {
+        0.711389 0.096181
+        <Tangent> { 0.310234 0.187500 -0.931986 }
+        <Binormal> { -0.946342 0.153405 -0.284150 }
+      }
+      <Normal> { -0.093112 -0.972198 -0.214759 }
+    }
+    <Vertex> 469 {
+      11.1585836411 -1.65213620663 3.62171697617
+      <UV>  {
+        0.741389 0.096181
+        <Tangent> { 0.205707 -0.016504 -0.978474 }
+        <Binormal> { -0.971081 0.120043 -0.206177 }
+      }
+      <Normal> { -0.122074 -0.992492 -0.002899 }
+    }
+    <Vertex> 470 {
+      13.8148508072 -1.33702301979 3.50198435783
+      <UV>  {
+        0.745361 0.005374
+        <Tangent> { 0.322796 -0.023402 -0.946179 }
+        <Binormal> { -0.736413 -0.634039 -0.235551 }
+      }
+      <Normal> { 0.590289 -0.772515 0.233955 }
+    }
+    <Vertex> 471 {
+      13.0142860413 -1.38925588131 5.45178461075
+      <UV>  {
+        0.711389 0.005374
+        <Tangent> { 0.418448 0.080532 -0.904663 }
+        <Binormal> { -0.665115 -0.650625 -0.365564 }
+      }
+      <Normal> { 0.628254 -0.752708 0.196600 }
+    }
+    <Vertex> 472 {
+      10.6282682419 -1.86106801033 5.53160572052
+      <UV>  {
+        0.711389 0.096181
+        <Tangent> { 0.310234 0.187500 -0.931986 }
+        <Binormal> { -0.946342 0.153405 -0.284150 }
+      }
+      <Normal> { -0.093112 -0.972198 -0.214759 }
+    }
+    <Vertex> 473 {
+      13.0142860413 -1.38925588131 5.45178461075
+      <UV>  {
+        0.711389 0.005374
+        <Tangent> { 0.418448 0.080532 -0.904663 }
+        <Binormal> { -0.665115 -0.650625 -0.365564 }
+      }
+      <Normal> { 0.628254 -0.752708 0.196600 }
+    }
+    <Vertex> 474 {
+      12.1925029755 -1.6492484808 7.00941324234
+      <UV>  {
+        0.677416 0.005374
+        <Tangent> { 0.493348 0.374998 -0.784847 }
+        <Binormal> { -0.509834 -0.605011 -0.609550 }
+      }
+      <Normal> { 0.678976 -0.719443 0.146184 }
+    }
+    <Vertex> 475 {
+      10.018456459 -2.3662135601 7.02307510376
+      <UV>  {
+        0.678246 0.096181
+        <Tangent> { 0.430274 0.446470 -0.784557 }
+        <Binormal> { -0.902439 0.226508 -0.366024 }
+      }
+      <Normal> { -0.007172 -0.858119 -0.513352 }
+    }
+    <Vertex> 476 {
+      10.6282682419 -1.86106801033 5.53160572052
+      <UV>  {
+        0.711389 0.096181
+        <Tangent> { 0.310234 0.187500 -0.931986 }
+        <Binormal> { -0.946342 0.153405 -0.284150 }
+      }
+      <Normal> { -0.093112 -0.972198 -0.214759 }
+    }
+    <Vertex> 477 {
+      10.018456459 -2.3662135601 7.02307510376
+      <UV>  {
+        0.678246 0.096181
+        <Tangent> { 0.430274 0.446470 -0.784557 }
+        <Binormal> { -0.902439 0.226508 -0.366024 }
+      }
+      <Normal> { -0.007172 -0.858119 -0.513352 }
+    }
+    <Vertex> 478 {
+      7.83960199356 -1.50740194321 7.04303026199
+      <UV>  {
+        0.673990 0.218255
+        <Tangent> { 0.328042 0.511637 -0.794113 }
+        <Binormal> { -0.721731 0.677183 0.138159 }
+      }
+      <Normal> { -0.596240 -0.508774 -0.620960 }
+    }
+    <Vertex> 479 {
+      8.24225139618 -0.815646111965 5.61142683029
+      <UV>  {
+        0.707726 0.218185
+        <Tangent> { 0.187188 0.292207 -0.937857 }
+        <Binormal> { -0.691838 0.716890 0.085276 }
+      }
+      <Normal> { -0.699240 -0.635975 -0.326426 }
+    }
+    <Vertex> 480 {
+      13.8096265793 0.861906886101 5.42517709732
+      <UV>  {
+        0.175527 0.609571
+        <Tangent> { 0.411255 -0.182731 -0.893017 }
+        <Binormal> { -0.215609 -0.971350 0.099467 }
+      }
+      <Normal> { 0.888791 -0.153050 0.431959 }
+    }
+    <Vertex> 481 {
+      13.0142860413 -1.38925588131 5.45178461075
+      <UV>  {
+        0.160570 0.678176
+        <Tangent> { 0.360571 -0.112095 -0.925971 }
+        <Binormal> { -0.719025 -0.652634 -0.200981 }
+      }
+      <Normal> { 0.628254 -0.752708 0.196600 }
+    }
+    <Vertex> 482 {
+      13.8148508072 -1.33702301979 3.50198435783
+      <UV>  {
+        0.111299 0.666965
+        <Tangent> { 0.316041 -0.168534 -0.933657 }
+        <Binormal> { -0.760693 -0.625067 -0.144663 }
+      }
+      <Normal> { 0.590289 -0.772515 0.233955 }
+    }
+    <Vertex> 483 {
+      14.7002744675 0.861906886101 3.46207380295
+      <UV>  {
+        0.128615 0.599169
+        <Tangent> { 0.366979 -0.194199 -0.909732 }
+        <Binormal> { -0.233200 -0.965787 0.112094 }
+      }
+      <Normal> { 0.906339 -0.174169 0.384930 }
+    }
+    <Vertex> 484 {
+      13.8096265793 0.861906886101 5.42517709732
+      <UV>  {
+        0.175527 0.609571
+        <Tangent> { 0.411255 -0.182731 -0.893017 }
+        <Binormal> { -0.215609 -0.971350 0.099467 }
+      }
+      <Normal> { 0.888791 -0.153050 0.431959 }
+    }
+    <Vertex> 485 {
+      14.7002744675 0.861906886101 3.46207380295
+      <UV>  {
+        0.128615 0.599169
+        <Tangent> { 0.366979 -0.194199 -0.909732 }
+        <Binormal> { -0.233200 -0.965787 0.112094 }
+      }
+      <Normal> { 0.906339 -0.174169 0.384930 }
+    }
+    <Vertex> 486 {
+      14.7002754211 4.87122774124 3.46207380295
+      <UV>  {
+        0.149023 0.513571
+        <Tangent> { 0.388675 -0.247115 -0.887618 }
+        <Binormal> { -0.099104 -0.968973 0.226368 }
+      }
+      <Normal> { 0.916044 0.000000 0.401044 }
+    }
+    <Vertex> 487 {
+      13.809627533 4.55006504059 5.42517709732
+      <UV>  {
+        0.193332 0.530918
+        <Tangent> { 0.436889 -0.227036 -0.870393 }
+        <Binormal> { -0.103342 -0.973852 0.202151 }
+      }
+      <Normal> { 0.895383 -0.002594 0.445235 }
+    }
+    <Vertex> 488 {
+      13.8096265793 0.861906886101 5.42517709732
+      <UV>  {
+        0.175527 0.609571
+        <Tangent> { 0.411255 -0.182731 -0.893017 }
+        <Binormal> { -0.215609 -0.971350 0.099467 }
+      }
+      <Normal> { 0.888791 -0.153050 0.431959 }
+    }
+    <Vertex> 489 {
+      13.809627533 4.55006504059 5.42517709732
+      <UV>  {
+        0.193332 0.530918
+        <Tangent> { 0.436889 -0.227036 -0.870393 }
+        <Binormal> { -0.103342 -0.973852 0.202151 }
+      }
+      <Normal> { 0.895383 -0.002594 0.445235 }
+    }
+    <Vertex> 490 {
+      12.9156131744 4.12854003906 7.04052066803
+      <UV>  {
+        0.231656 0.548722
+        <Tangent> { 0.555273 -0.239964 -0.796297 }
+        <Binormal> { -0.152670 -0.970577 0.186024 }
+      }
+      <Normal> { 0.814692 -0.017060 0.579608 }
+    }
+    <Vertex> 491 {
+      12.9043655396 0.710577666759 7.02164173126
+      <UV>  {
+        0.215898 0.622029
+        <Tangent> { 0.576095 -0.194632 -0.793872 }
+        <Binormal> { -0.216423 -0.972593 0.081395 }
+      }
+      <Normal> { 0.801660 -0.129551 0.583544 }
+    }
+    <Vertex> 492 {
+      13.8096265793 0.861906886101 5.42517709732
+      <UV>  {
+        0.175527 0.609571
+        <Tangent> { 0.411255 -0.182731 -0.893017 }
+        <Binormal> { -0.215609 -0.971350 0.099467 }
+      }
+      <Normal> { 0.888791 -0.153050 0.431959 }
+    }
+    <Vertex> 493 {
+      12.9043655396 0.710577666759 7.02164173126
+      <UV>  {
+        0.215898 0.622029
+        <Tangent> { 0.576095 -0.194632 -0.793872 }
+        <Binormal> { -0.216423 -0.972593 0.081395 }
+      }
+      <Normal> { 0.801660 -0.129551 0.583544 }
+    }
+    <Vertex> 494 {
+      12.1925029755 -1.6492484808 7.00941324234
+      <UV>  {
+        0.209841 0.689388
+        <Tangent> { 0.538897 -0.138687 -0.830877 }
+        <Binormal> { -0.618042 -0.642923 -0.293541 }
+      }
+      <Normal> { 0.678976 -0.719443 0.146184 }
+    }
+    <Vertex> 495 {
+      13.0142860413 -1.38925588131 5.45178461075
+      <UV>  {
+        0.160570 0.678176
+        <Tangent> { 0.360571 -0.112095 -0.925971 }
+        <Binormal> { -0.719025 -0.652634 -0.200981 }
+      }
+      <Normal> { 0.628254 -0.752708 0.196600 }
+    }
+    <Vertex> 496 {
+      13.809627533 9.33286190033 5.42517709732
+      <UV>  {
+        0.216832 0.432169
+        <Tangent> { 0.492848 -0.252424 -0.832696 }
+        <Binormal> { -0.053771 -0.963990 0.260399 }
+      }
+      <Normal> { 0.867672 0.083956 0.489975 }
+    }
+    <Vertex> 497 {
+      13.809627533 4.55006504059 5.42517709732
+      <UV>  {
+        0.193332 0.530918
+        <Tangent> { 0.436889 -0.227036 -0.870393 }
+        <Binormal> { -0.103342 -0.973852 0.202151 }
+      }
+      <Normal> { 0.895383 -0.002594 0.445235 }
+    }
+    <Vertex> 498 {
+      14.7002754211 4.87122774124 3.46207380295
+      <UV>  {
+        0.149023 0.513571
+        <Tangent> { 0.388675 -0.247115 -0.887618 }
+        <Binormal> { -0.099104 -0.968973 0.226368 }
+      }
+      <Normal> { 0.916044 0.000000 0.401044 }
+    }
+    <Vertex> 499 {
+      14.7002763748 10.6175146103 3.46207380295
+      <UV>  {
+        0.179742 0.393038
+        <Tangent> { 0.442282 -0.279882 -0.852087 }
+        <Binormal> { -0.053989 -0.956578 0.286180 }
+      }
+      <Normal> { 0.890988 0.083224 0.446272 }
+    }
+    <Vertex> 500 {
+      13.809627533 9.33286190033 5.42517709732
+      <UV>  {
+        0.216832 0.432169
+        <Tangent> { 0.492848 -0.252424 -0.832696 }
+        <Binormal> { -0.053771 -0.963990 0.260399 }
+      }
+      <Normal> { 0.867672 0.083956 0.489975 }
+    }
+    <Vertex> 501 {
+      14.7002763748 10.6175146103 3.46207380295
+      <UV>  {
+        0.179742 0.393038
+        <Tangent> { 0.442282 -0.279882 -0.852087 }
+        <Binormal> { -0.053989 -0.956578 0.286180 }
+      }
+      <Normal> { 0.890988 0.083224 0.446272 }
+    }
+    <Vertex> 502 {
+      13.7511100769 15.5785903931 3.46207380295
+      <UV>  {
+        0.228256 0.288535
+        <Tangent> { 0.756292 -0.218752 -0.616580 }
+        <Binormal> { 0.102093 -0.891360 0.441466 }
+      }
+      <Normal> { 0.638020 0.399182 0.658437 }
+    }
+    <Vertex> 503 {
+      12.9717922211 13.330450058 5.42517709732
+      <UV>  {
+        0.255089 0.350224
+        <Tangent> { 0.796547 -0.197567 -0.571384 }
+        <Binormal> { 0.073361 -0.906446 0.415692 }
+      }
+      <Normal> { 0.592090 0.375011 0.713248 }
+    }
+    <Vertex> 504 {
+      13.809627533 9.33286190033 5.42517709732
+      <UV>  {
+        0.216832 0.432169
+        <Tangent> { 0.492848 -0.252424 -0.832696 }
+        <Binormal> { -0.053771 -0.963990 0.260399 }
+      }
+      <Normal> { 0.867672 0.083956 0.489975 }
+    }
+    <Vertex> 505 {
+      12.9717922211 13.330450058 5.42517709732
+      <UV>  {
+        0.255089 0.350224
+        <Tangent> { 0.796547 -0.197567 -0.571384 }
+        <Binormal> { 0.073361 -0.906446 0.415692 }
+      }
+      <Normal> { 0.592090 0.375011 0.713248 }
+    }
+    <Vertex> 506 {
+      12.3083486557 11.1159734726 7.04681396484
+      <UV>  {
+        0.276438 0.406551
+        <Tangent> { 0.849951 -0.176024 -0.496588 }
+        <Binormal> { 0.024431 -0.928326 0.370877 }
+      }
+      <Normal> { 0.526658 0.327280 0.784509 }
+    }
+    <Vertex> 507 {
+      12.9878177643 8.0199136734 7.04681491852
+      <UV>  {
+        0.247852 0.468695
+        <Tangent> { 0.563818 -0.238947 -0.790578 }
+        <Binormal> { -0.084752 -0.968726 0.232348 }
+      }
+      <Normal> { 0.811151 0.068331 0.580767 }
+    }
+    <Vertex> 508 {
+      13.809627533 9.33286190033 5.42517709732
+      <UV>  {
+        0.216832 0.432169
+        <Tangent> { 0.492848 -0.252424 -0.832696 }
+        <Binormal> { -0.053771 -0.963990 0.260399 }
+      }
+      <Normal> { 0.867672 0.083956 0.489975 }
+    }
+    <Vertex> 509 {
+      12.9878177643 8.0199136734 7.04681491852
+      <UV>  {
+        0.247852 0.468695
+        <Tangent> { 0.563818 -0.238947 -0.790578 }
+        <Binormal> { -0.084752 -0.968726 0.232348 }
+      }
+      <Normal> { 0.811151 0.068331 0.580767 }
+    }
+    <Vertex> 510 {
+      12.9156131744 4.12854003906 7.04052066803
+      <UV>  {
+        0.231656 0.548722
+        <Tangent> { 0.555273 -0.239964 -0.796297 }
+        <Binormal> { -0.152670 -0.970577 0.186024 }
+      }
+      <Normal> { 0.814692 -0.017060 0.579608 }
+    }
+    <Vertex> 511 {
+      13.809627533 4.55006504059 5.42517709732
+      <UV>  {
+        0.193332 0.530918
+        <Tangent> { 0.436889 -0.227036 -0.870393 }
+        <Binormal> { -0.103342 -0.973852 0.202151 }
+      }
+      <Normal> { 0.895383 -0.002594 0.445235 }
+    }
+    <Vertex> 512 {
+      10.4582891464 14.662979126 5.42517709732
+      <UV>  {
+        0.317168 0.321982
+        <Tangent> { 0.992592 -0.032859 -0.116968 }
+        <Binormal> { 0.039641 -0.822401 0.567423 }
+      }
+      <Normal> { 0.122166 0.567614 0.814142 }
+    }
+    <Vertex> 513 {
+      12.9717922211 13.330450058 5.42517709732
+      <UV>  {
+        0.255089 0.350224
+        <Tangent> { 0.796547 -0.197567 -0.571384 }
+        <Binormal> { 0.073361 -0.906446 0.415692 }
+      }
+      <Normal> { 0.592090 0.375011 0.713248 }
+    }
+    <Vertex> 514 {
+      13.7511100769 15.5785903931 3.46207380295
+      <UV>  {
+        0.228256 0.288535
+        <Tangent> { 0.756292 -0.218752 -0.616580 }
+        <Binormal> { 0.102093 -0.891360 0.441466 }
+      }
+      <Normal> { 0.638020 0.399182 0.658437 }
+    }
+    <Vertex> 515 {
+      10.9036130905 17.2322826385 3.46207380295
+      <UV>  {
+        0.302049 0.251031
+        <Tangent> { 0.989126 -0.014788 -0.146322 }
+        <Binormal> { 0.081052 -0.775203 0.626248 }
+      }
+      <Normal> { 0.138493 0.631062 0.763237 }
+    }
+    <Vertex> 516 {
+      10.4582891464 14.662979126 5.42517709732
+      <UV>  {
+        0.317168 0.321982
+        <Tangent> { 0.992592 -0.032859 -0.116968 }
+        <Binormal> { 0.039641 -0.822401 0.567423 }
+      }
+      <Normal> { 0.122166 0.567614 0.814142 }
+    }
+    <Vertex> 517 {
+      10.9036130905 17.2322826385 3.46207380295
+      <UV>  {
+        0.302049 0.251031
+        <Tangent> { 0.989126 -0.014788 -0.146322 }
+        <Binormal> { 0.081052 -0.775203 0.626248 }
+      }
+      <Normal> { 0.138493 0.631062 0.763237 }
+    }
+    <Vertex> 518 {
+      7.45612001419 16.8682441711 3.46207380295
+      <UV>  {
+        0.380939 0.254091
+        <Tangent> { 0.988945 0.118915 0.088579 }
+        <Binormal> { 0.030125 -0.746016 0.665175 }
+      }
+      <Normal> { -0.141728 0.655568 0.741661 }
+    }
+    <Vertex> 519 {
+      7.32818365097 14.4534978867 5.42517709732
+      <UV>  {
+        0.387904 0.325334
+        <Tangent> { 0.995961 0.048047 0.075845 }
+        <Binormal> { -0.009022 -0.786901 0.616969 }
+      }
+      <Normal> { -0.093753 0.614948 0.782952 }
+    }
+    <Vertex> 520 {
+      10.4582891464 14.662979126 5.42517709732
+      <UV>  {
+        0.317168 0.321982
+        <Tangent> { 0.992592 -0.032859 -0.116968 }
+        <Binormal> { 0.039641 -0.822401 0.567423 }
+      }
+      <Normal> { 0.122166 0.567614 0.814142 }
+    }
+    <Vertex> 521 {
+      7.32818365097 14.4534978867 5.42517709732
+      <UV>  {
+        0.387904 0.325334
+        <Tangent> { 0.995961 0.048047 0.075845 }
+        <Binormal> { -0.009022 -0.786901 0.616969 }
+      }
+      <Normal> { -0.093753 0.614948 0.782952 }
+    }
+    <Vertex> 522 {
+      7.00420427322 12.0940675735 7.03973960876
+      <UV>  {
+        0.396783 0.390753
+        <Tangent> { 0.998114 -0.027274 0.054998 }
+        <Binormal> { -0.051195 -0.864172 0.500545 }
+      }
+      <Normal> { -0.036470 0.502487 0.863796 }
+    }
+    <Vertex> 523 {
+      10.064573288 12.1479940414 7.04681491852
+      <UV>  {
+        0.329366 0.386891
+        <Tangent> { 0.995264 -0.065797 -0.071562 }
+        <Binormal> { -0.023770 -0.878470 0.477118 }
+      }
+      <Normal> { 0.098392 0.472884 0.875576 }
+    }
+    <Vertex> 524 {
+      10.4582891464 14.662979126 5.42517709732
+      <UV>  {
+        0.317168 0.321982
+        <Tangent> { 0.992592 -0.032859 -0.116968 }
+        <Binormal> { 0.039641 -0.822401 0.567423 }
+      }
+      <Normal> { 0.122166 0.567614 0.814142 }
+    }
+    <Vertex> 525 {
+      10.064573288 12.1479940414 7.04681491852
+      <UV>  {
+        0.329366 0.386891
+        <Tangent> { 0.995264 -0.065797 -0.071562 }
+        <Binormal> { -0.023770 -0.878470 0.477118 }
+      }
+      <Normal> { 0.098392 0.472884 0.875576 }
+    }
+    <Vertex> 526 {
+      12.3083486557 11.1159734726 7.04681396484
+      <UV>  {
+        0.276438 0.406551
+        <Tangent> { 0.849951 -0.176024 -0.496588 }
+        <Binormal> { 0.024431 -0.928326 0.370877 }
+      }
+      <Normal> { 0.526658 0.327280 0.784509 }
+    }
+    <Vertex> 527 {
+      12.9717922211 13.330450058 5.42517709732
+      <UV>  {
+        0.255089 0.350224
+        <Tangent> { 0.796547 -0.197567 -0.571384 }
+        <Binormal> { 0.073361 -0.906446 0.415692 }
+      }
+      <Normal> { 0.592090 0.375011 0.713248 }
+    }
+    <Vertex> 528 {
+      9.83467960358 10.3693161011 7.84529972076
+      <UV>  {
+        0.335109 0.429345
+        <Tangent> { 0.995913 -0.084886 -0.030856 }
+        <Binormal> { -0.073102 -0.958195 0.276581 }
+      }
+      <Normal> { 0.052248 0.273263 0.960509 }
+    }
+    <Vertex> 529 {
+      11.9827070236 9.51803970337 7.84529972076
+      <UV>  {
+        0.286277 0.443667
+        <Tangent> { 0.946346 -0.147812 -0.287370 }
+        <Binormal> { -0.082994 -0.970594 0.225925 }
+      }
+      <Normal> { 0.310007 0.190313 0.931486 }
+    }
+    <Vertex> 530 {
+      12.3083486557 11.1159734726 7.04681396484
+      <UV>  {
+        0.276438 0.406551
+        <Tangent> { 0.849951 -0.176024 -0.496588 }
+        <Binormal> { 0.024431 -0.928326 0.370877 }
+      }
+      <Normal> { 0.526658 0.327280 0.784509 }
+    }
+    <Vertex> 531 {
+      10.064573288 12.1479940414 7.04681491852
+      <UV>  {
+        0.329366 0.386891
+        <Tangent> { 0.995264 -0.065797 -0.071562 }
+        <Binormal> { -0.023770 -0.878470 0.477118 }
+      }
+      <Normal> { 0.098392 0.472884 0.875576 }
+    }
+    <Vertex> 532 {
+      9.83467960358 10.3693161011 7.84529972076
+      <UV>  {
+        0.335109 0.429345
+        <Tangent> { 0.995913 -0.084886 -0.030856 }
+        <Binormal> { -0.073102 -0.958195 0.276581 }
+      }
+      <Normal> { 0.052248 0.273263 0.960509 }
+    }
+    <Vertex> 533 {
+      10.064573288 12.1479940414 7.04681491852
+      <UV>  {
+        0.329366 0.386891
+        <Tangent> { 0.995264 -0.065797 -0.071562 }
+        <Binormal> { -0.023770 -0.878470 0.477118 }
+      }
+      <Normal> { 0.098392 0.472884 0.875576 }
+    }
+    <Vertex> 534 {
+      7.00420427322 12.0940675735 7.03973960876
+      <UV>  {
+        0.396783 0.390753
+        <Tangent> { 0.998114 -0.027274 0.054998 }
+        <Binormal> { -0.051195 -0.864172 0.500545 }
+      }
+      <Normal> { -0.036470 0.502487 0.863796 }
+    }
+    <Vertex> 535 {
+      6.60729598999 10.3630924225 7.81700277328
+      <UV>  {
+        0.404736 0.435099
+        <Tangent> { 0.995855 -0.081651 0.040072 }
+        <Binormal> { -0.089517 -0.957791 0.273040 }
+      }
+      <Normal> { -0.019379 0.275765 0.960997 }
+    }
+    <Vertex> 536 {
+      9.83467960358 10.3693161011 7.84529972076
+      <UV>  {
+        0.335109 0.429345
+        <Tangent> { 0.995913 -0.084886 -0.030856 }
+        <Binormal> { -0.073102 -0.958195 0.276581 }
+      }
+      <Normal> { 0.052248 0.273263 0.960509 }
+    }
+    <Vertex> 537 {
+      6.60729598999 10.3630924225 7.81700277328
+      <UV>  {
+        0.404736 0.435099
+        <Tangent> { 0.995855 -0.081651 0.040072 }
+        <Binormal> { -0.089517 -0.957791 0.273040 }
+      }
+      <Normal> { -0.019379 0.275765 0.960997 }
+    }
+    <Vertex> 538 {
+      6.24885749817 8.56078052521 8.04898262024
+      <UV>  {
+        0.408553 0.477740
+        <Tangent> { 0.993942 -0.105625 0.030382 }
+        <Binormal> { -0.107369 -0.992193 0.063137 }
+      }
+      <Normal> { -0.024293 0.066103 0.997497 }
+    }
+    <Vertex> 539 {
+      9.61585140228 8.5747833252 8.11030864716
+      <UV>  {
+        0.335990 0.469401
+        <Tangent> { 0.993609 -0.112510 -0.009065 }
+        <Binormal> { -0.111545 -0.991006 0.073483 }
+      }
+      <Normal> { 0.010590 0.072756 0.997284 }
+    }
+    <Vertex> 540 {
+      9.83467960358 10.3693161011 7.84529972076
+      <UV>  {
+        0.335109 0.429345
+        <Tangent> { 0.995913 -0.084886 -0.030856 }
+        <Binormal> { -0.073102 -0.958195 0.276581 }
+      }
+      <Normal> { 0.052248 0.273263 0.960509 }
+    }
+    <Vertex> 541 {
+      9.61585140228 8.5747833252 8.11030864716
+      <UV>  {
+        0.335990 0.469401
+        <Tangent> { 0.993609 -0.112510 -0.009065 }
+        <Binormal> { -0.111545 -0.991006 0.073483 }
+      }
+      <Normal> { 0.010590 0.072756 0.997284 }
+    }
+    <Vertex> 542 {
+      11.1713752747 8.23069190979 8.04906082153
+      <UV>  {
+        0.300409 0.472919
+        <Tangent> { 0.987320 -0.134459 -0.084383 }
+        <Binormal> { -0.128123 -0.988796 0.076487 }
+      }
+      <Normal> { 0.095340 0.064486 0.993347 }
+    }
+    <Vertex> 543 {
+      11.9827070236 9.51803970337 7.84529972076
+      <UV>  {
+        0.286277 0.443667
+        <Tangent> { 0.946346 -0.147812 -0.287370 }
+        <Binormal> { -0.082994 -0.970594 0.225925 }
+      }
+      <Normal> { 0.310007 0.190313 0.931486 }
+    }
+    <Vertex> 544 {
+      12.4248933792 6.96420955658 7.84529972076
+      <UV>  {
+        0.264859 0.495192
+        <Tangent> { 0.829828 -0.223561 -0.511279 }
+        <Binormal> { -0.175829 -0.974252 0.140623 }
+      }
+      <Normal> { 0.520829 0.029145 0.853145 }
+    }
+    <Vertex> 545 {
+      12.1360740662 3.58475136757 7.82012701035
+      <UV>  {
+        0.254579 0.565991
+        <Tangent> { 0.838767 -0.253319 -0.481974 }
+        <Binormal> { -0.235408 -0.966821 0.098474 }
+      }
+      <Normal> { 0.500595 -0.033784 0.865017 }
+    }
+    <Vertex> 546 {
+      12.9156131744 4.12854003906 7.04052066803
+      <UV>  {
+        0.231656 0.548722
+        <Tangent> { 0.555273 -0.239964 -0.796297 }
+        <Binormal> { -0.152670 -0.970577 0.186024 }
+      }
+      <Normal> { 0.814692 -0.017060 0.579608 }
+    }
+    <Vertex> 547 {
+      12.9878177643 8.0199136734 7.04681491852
+      <UV>  {
+        0.247852 0.468695
+        <Tangent> { 0.563818 -0.238947 -0.790578 }
+        <Binormal> { -0.084752 -0.968726 0.232348 }
+      }
+      <Normal> { 0.811151 0.068331 0.580767 }
+    }
+    <Vertex> 548 {
+      12.4248933792 6.96420955658 7.84529972076
+      <UV>  {
+        0.264859 0.495192
+        <Tangent> { 0.829828 -0.223561 -0.511279 }
+        <Binormal> { -0.175829 -0.974252 0.140623 }
+      }
+      <Normal> { 0.520829 0.029145 0.853145 }
+    }
+    <Vertex> 549 {
+      12.9878177643 8.0199136734 7.04681491852
+      <UV>  {
+        0.247852 0.468695
+        <Tangent> { 0.563818 -0.238947 -0.790578 }
+        <Binormal> { -0.084752 -0.968726 0.232348 }
+      }
+      <Normal> { 0.811151 0.068331 0.580767 }
+    }
+    <Vertex> 550 {
+      12.3083486557 11.1159734726 7.04681396484
+      <UV>  {
+        0.276438 0.406551
+        <Tangent> { 0.849951 -0.176024 -0.496588 }
+        <Binormal> { 0.024431 -0.928326 0.370877 }
+      }
+      <Normal> { 0.526658 0.327280 0.784509 }
+    }
+    <Vertex> 551 {
+      11.9827070236 9.51803970337 7.84529972076
+      <UV>  {
+        0.286277 0.443667
+        <Tangent> { 0.946346 -0.147812 -0.287370 }
+        <Binormal> { -0.082994 -0.970594 0.225925 }
+      }
+      <Normal> { 0.310007 0.190313 0.931486 }
+    }
+    <Vertex> 552 {
+      12.4248933792 6.96420955658 7.84529972076
+      <UV>  {
+        0.264859 0.495192
+        <Tangent> { 0.829828 -0.223561 -0.511279 }
+        <Binormal> { -0.175829 -0.974252 0.140623 }
+      }
+      <Normal> { 0.520829 0.029145 0.853145 }
+    }
+    <Vertex> 553 {
+      11.9827070236 9.51803970337 7.84529972076
+      <UV>  {
+        0.286277 0.443667
+        <Tangent> { 0.946346 -0.147812 -0.287370 }
+        <Binormal> { -0.082994 -0.970594 0.225925 }
+      }
+      <Normal> { 0.310007 0.190313 0.931486 }
+    }
+    <Vertex> 554 {
+      11.1713752747 8.23069190979 8.04906082153
+      <UV>  {
+        0.300409 0.472919
+        <Tangent> { 0.987320 -0.134459 -0.084383 }
+        <Binormal> { -0.128123 -0.988796 0.076487 }
+      }
+      <Normal> { 0.095340 0.064486 0.993347 }
+    }
+    <Vertex> 555 {
+      11.4157619476 6.26267385483 8.11030864716
+      <UV>  {
+        0.287046 0.513913
+        <Tangent> { 0.977461 -0.171184 -0.123557 }
+        <Binormal> { -0.170061 -0.985201 0.019608 }
+      }
+      <Normal> { 0.118900 -0.000763 0.992889 }
+    }
+    <Vertex> 556 {
+      12.4248933792 6.96420955658 7.84529972076
+      <UV>  {
+        0.264859 0.495192
+        <Tangent> { 0.829828 -0.223561 -0.511279 }
+        <Binormal> { -0.175829 -0.974252 0.140623 }
+      }
+      <Normal> { 0.520829 0.029145 0.853145 }
+    }
+    <Vertex> 557 {
+      11.4157619476 6.26267385483 8.11030864716
+      <UV>  {
+        0.287046 0.513913
+        <Tangent> { 0.977461 -0.171184 -0.123557 }
+        <Binormal> { -0.170061 -0.985201 0.019608 }
+      }
+      <Normal> { 0.118900 -0.000763 0.992889 }
+    }
+    <Vertex> 558 {
+      10.9786643982 3.12172555923 8.05366897583
+      <UV>  {
+        0.279916 0.582036
+        <Tangent> { 0.968041 -0.224380 -0.112028 }
+        <Binormal> { -0.226583 -0.973940 -0.007222 }
+      }
+      <Normal> { 0.108829 -0.032685 0.993500 }
+    }
+    <Vertex> 559 {
+      12.1360740662 3.58475136757 7.82012701035
+      <UV>  {
+        0.254579 0.565991
+        <Tangent> { 0.838767 -0.253319 -0.481974 }
+        <Binormal> { -0.235408 -0.966821 0.098474 }
+      }
+      <Normal> { 0.500595 -0.033784 0.865017 }
+    }
+    <Vertex> 560 {
+      12.0910873413 0.256590038538 7.74460697174
+      <UV>  {
+        0.239165 0.638137
+        <Tangent> { 0.813367 -0.334886 -0.475695 }
+        <Binormal> { -0.337128 -0.937697 0.083694 }
+      }
+      <Normal> { 0.468581 -0.090030 0.878811 }
+    }
+    <Vertex> 561 {
+      11.4768390656 -2.22029471397 7.66908788681
+      <UV>  {
+        0.221184 0.710957
+        <Tangent> { 0.648541 -0.614760 -0.448848 }
+        <Binormal> { -0.672906 -0.688462 -0.029337 }
+      }
+      <Normal> { 0.465346 -0.486343 0.739494 }
+    }
+    <Vertex> 562 {
+      12.1925029755 -1.6492484808 7.00941324234
+      <UV>  {
+        0.209841 0.689388
+        <Tangent> { 0.538897 -0.138687 -0.830877 }
+        <Binormal> { -0.618042 -0.642923 -0.293541 }
+      }
+      <Normal> { 0.678976 -0.719443 0.146184 }
+    }
+    <Vertex> 563 {
+      12.9043655396 0.710577666759 7.02164173126
+      <UV>  {
+        0.215898 0.622029
+        <Tangent> { 0.576095 -0.194632 -0.793872 }
+        <Binormal> { -0.216423 -0.972593 0.081395 }
+      }
+      <Normal> { 0.801660 -0.129551 0.583544 }
+    }
+    <Vertex> 564 {
+      12.0910873413 0.256590038538 7.74460697174
+      <UV>  {
+        0.239165 0.638137
+        <Tangent> { 0.813367 -0.334886 -0.475695 }
+        <Binormal> { -0.337128 -0.937697 0.083694 }
+      }
+      <Normal> { 0.468581 -0.090030 0.878811 }
+    }
+    <Vertex> 565 {
+      12.9043655396 0.710577666759 7.02164173126
+      <UV>  {
+        0.215898 0.622029
+        <Tangent> { 0.576095 -0.194632 -0.793872 }
+        <Binormal> { -0.216423 -0.972593 0.081395 }
+      }
+      <Normal> { 0.801660 -0.129551 0.583544 }
+    }
+    <Vertex> 566 {
+      12.9156131744 4.12854003906 7.04052066803
+      <UV>  {
+        0.231656 0.548722
+        <Tangent> { 0.555273 -0.239964 -0.796297 }
+        <Binormal> { -0.152670 -0.970577 0.186024 }
+      }
+      <Normal> { 0.814692 -0.017060 0.579608 }
+    }
+    <Vertex> 567 {
+      12.1360740662 3.58475136757 7.82012701035
+      <UV>  {
+        0.254579 0.565991
+        <Tangent> { 0.838767 -0.253319 -0.481974 }
+        <Binormal> { -0.235408 -0.966821 0.098474 }
+      }
+      <Normal> { 0.500595 -0.033784 0.865017 }
+    }
+    <Vertex> 568 {
+      12.0910873413 0.256590038538 7.74460697174
+      <UV>  {
+        0.239165 0.638137
+        <Tangent> { 0.813367 -0.334886 -0.475695 }
+        <Binormal> { -0.337128 -0.937697 0.083694 }
+      }
+      <Normal> { 0.468581 -0.090030 0.878811 }
+    }
+    <Vertex> 569 {
+      12.1360740662 3.58475136757 7.82012701035
+      <UV>  {
+        0.254579 0.565991
+        <Tangent> { 0.838767 -0.253319 -0.481974 }
+        <Binormal> { -0.235408 -0.966821 0.098474 }
+      }
+      <Normal> { 0.500595 -0.033784 0.865017 }
+    }
+    <Vertex> 570 {
+      10.9786643982 3.12172555923 8.05366897583
+      <UV>  {
+        0.279916 0.582036
+        <Tangent> { 0.968041 -0.224380 -0.112028 }
+        <Binormal> { -0.226583 -0.973940 -0.007222 }
+      }
+      <Normal> { 0.108829 -0.032685 0.993500 }
+    }
+    <Vertex> 571 {
+      10.9098949432 -0.203621029854 7.93409538269
+      <UV>  {
+        0.264018 0.655130
+        <Tangent> { 0.984910 -0.143579 -0.096629 }
+        <Binormal> { -0.147765 -0.988288 -0.037651 }
+      }
+      <Normal> { 0.092196 -0.051668 0.994385 }
+    }
+    <Vertex> 572 {
+      12.0910873413 0.256590038538 7.74460697174
+      <UV>  {
+        0.239165 0.638137
+        <Tangent> { 0.813367 -0.334886 -0.475695 }
+        <Binormal> { -0.337128 -0.937697 0.083694 }
+      }
+      <Normal> { 0.468581 -0.090030 0.878811 }
+    }
+    <Vertex> 573 {
+      10.9098949432 -0.203621029854 7.93409538269
+      <UV>  {
+        0.264018 0.655130
+        <Tangent> { 0.984910 -0.143579 -0.096629 }
+        <Binormal> { -0.147765 -0.988288 -0.037651 }
+      }
+      <Normal> { 0.092196 -0.051668 0.994385 }
+    }
+    <Vertex> 574 {
+      10.601275444 -1.95312011242 7.81411123276
+      <UV>  {
+        0.232528 0.732526
+        <Tangent> { 0.925119 -0.361782 -0.115190 }
+        <Binormal> { -0.372331 -0.923168 -0.090855 }
+      }
+      <Normal> { 0.099734 -0.137211 0.985473 }
+    }
+    <Vertex> 575 {
+      11.4768390656 -2.22029471397 7.66908788681
+      <UV>  {
+        0.221184 0.710957
+        <Tangent> { 0.648541 -0.614760 -0.448848 }
+        <Binormal> { -0.672906 -0.688462 -0.029337 }
+      }
+      <Normal> { 0.465346 -0.486343 0.739494 }
+    }
+    <Vertex> 576 {
+      9.48023796082 -3.0459227562 7.64391422272
+      <UV>  {
+        0.646762 0.096181
+        <Tangent> { 0.780676 0.225292 -0.582913 }
+        <Binormal> { -0.515984 -0.164151 -0.754483 }
+      }
+      <Normal> { -0.023835 -0.973327 0.228065 }
+    }
+    <Vertex> 577 {
+      7.46440553665 -2.22651791573 7.64391422272
+      <UV>  {
+        0.640724 0.218302
+        <Tangent> { 0.500895 0.017299 -0.865335 }
+        <Binormal> { -0.554839 0.589257 -0.309387 }
+      }
+      <Normal> { -0.754570 -0.643727 0.127171 }
+    }
+    <Vertex> 578 {
+      7.83960199356 -1.50740194321 7.04303026199
+      <UV>  {
+        0.673990 0.218255
+        <Tangent> { 0.328042 0.511637 -0.794113 }
+        <Binormal> { -0.721731 0.677183 0.138159 }
+      }
+      <Normal> { -0.596240 -0.508774 -0.620960 }
+    }
+    <Vertex> 579 {
+      10.018456459 -2.3662135601 7.02307510376
+      <UV>  {
+        0.678246 0.096181
+        <Tangent> { 0.430274 0.446470 -0.784557 }
+        <Binormal> { -0.902439 0.226508 -0.366024 }
+      }
+      <Normal> { -0.007172 -0.858119 -0.513352 }
+    }
+    <Vertex> 580 {
+      9.48023796082 -3.0459227562 7.64391422272
+      <UV>  {
+        0.646762 0.096181
+        <Tangent> { 0.780676 0.225292 -0.582913 }
+        <Binormal> { -0.515984 -0.164151 -0.754483 }
+      }
+      <Normal> { -0.023835 -0.973327 0.228065 }
+    }
+    <Vertex> 581 {
+      10.018456459 -2.3662135601 7.02307510376
+      <UV>  {
+        0.678246 0.096181
+        <Tangent> { 0.430274 0.446470 -0.784557 }
+        <Binormal> { -0.902439 0.226508 -0.366024 }
+      }
+      <Normal> { -0.007172 -0.858119 -0.513352 }
+    }
+    <Vertex> 582 {
+      12.1925029755 -1.6492484808 7.00941324234
+      <UV>  {
+        0.677416 0.005374
+        <Tangent> { 0.493348 0.374998 -0.784847 }
+        <Binormal> { -0.509834 -0.605011 -0.609550 }
+      }
+      <Normal> { 0.678976 -0.719443 0.146184 }
+    }
+    <Vertex> 583 {
+      11.4768390656 -2.22029471397 7.66908788681
+      <UV>  {
+        0.646762 0.005374
+        <Tangent> { 0.879698 0.167993 -0.444871 }
+        <Binormal> { -0.092130 -0.857550 -0.506010 }
+      }
+      <Normal> { 0.465346 -0.486343 0.739494 }
+    }
+    <Vertex> 584 {
+      9.48023796082 -3.0459227562 7.64391422272
+      <UV>  {
+        0.646762 0.096181
+        <Tangent> { 0.780676 0.225292 -0.582913 }
+        <Binormal> { -0.515984 -0.164151 -0.754483 }
+      }
+      <Normal> { -0.023835 -0.973327 0.228065 }
+    }
+    <Vertex> 585 {
+      11.4768390656 -2.22029471397 7.66908788681
+      <UV>  {
+        0.646762 0.005374
+        <Tangent> { 0.879698 0.167993 -0.444871 }
+        <Binormal> { -0.092130 -0.857550 -0.506010 }
+      }
+      <Normal> { 0.465346 -0.486343 0.739494 }
+    }
+    <Vertex> 586 {
+      10.601275444 -1.95312011242 7.81411123276
+      <UV>  {
+        0.616107 0.005374
+        <Tangent> { 0.895342 -0.388490 -0.217806 }
+        <Binormal> { -0.412732 -0.904058 -0.084105 }
+      }
+      <Normal> { 0.099734 -0.137211 0.985473 }
+    }
+    <Vertex> 587 {
+      9.08419036865 -2.76134347916 7.80822992325
+      <UV>  {
+        0.616107 0.096181
+        <Tangent> { 0.769585 -0.552984 -0.319292 }
+        <Binormal> { -0.609477 -0.734020 -0.197761 }
+      }
+      <Normal> { -0.048128 -0.222388 0.973754 }
+    }
+    <Vertex> 588 {
+      9.48023796082 -3.0459227562 7.64391422272
+      <UV>  {
+        0.646762 0.096181
+        <Tangent> { 0.780676 0.225292 -0.582913 }
+        <Binormal> { -0.515984 -0.164151 -0.754483 }
+      }
+      <Normal> { -0.023835 -0.973327 0.228065 }
+    }
+    <Vertex> 589 {
+      9.08419036865 -2.76134347916 7.80822992325
+      <UV>  {
+        0.616107 0.096181
+        <Tangent> { 0.769585 -0.552984 -0.319292 }
+        <Binormal> { -0.609477 -0.734020 -0.197761 }
+      }
+      <Normal> { -0.048128 -0.222388 0.973754 }
+    }
+    <Vertex> 590 {
+      7.74112176895 -1.96695017815 7.75817108154
+      <UV>  {
+        0.616107 0.186987
+        <Tangent> { 0.157505 -0.901016 -0.404181 }
+        <Binormal> { -0.939324 -0.044072 -0.267799 }
+      }
+      <Normal> { -0.256508 -0.232887 0.938047 }
+    }
+    <Vertex> 591 {
+      7.46440553665 -2.22651791573 7.64391422272
+      <UV>  {
+        0.640724 0.218302
+        <Tangent> { 0.500895 0.017299 -0.865335 }
+        <Binormal> { -0.554839 0.589257 -0.309387 }
+      }
+      <Normal> { -0.754570 -0.643727 0.127171 }
+    }
+    <Vertex> 592 {
+      -0.979658186436 6.91442394257 7.63141918182
+      <UV>  {
+        0.621604 0.249644
+        <Tangent> { -0.644936 -0.706485 0.291438 }
+        <Binormal> { 0.513745 -0.666708 -0.479302 }
+      }
+      <Normal> { -0.693197 -0.016175 -0.720511 }
+    }
+    <Vertex> 593 {
+      -0.00298445741646 9.47447681427 7.65034532547
+      <UV>  {
+        0.625728 0.063266
+        <Tangent> { -0.485675 -0.826453 0.284771 }
+        <Binormal> { -0.758807 0.240252 -0.596889 }
+      }
+      <Normal> { -0.473800 0.422742 0.772485 }
+    }
+    <Vertex> 594 {
+      1.48394858837 10.8036794662 7.00472736359
+      <UV>  {
+        0.651998 0.051059
+        <Tangent> { -0.687954 -0.487859 0.537320 }
+        <Binormal> { -0.316511 -0.450133 -0.813939 }
+      }
+      <Normal> { -0.767052 0.639180 -0.055208 }
+    }
+    <Vertex> 595 {
+      0.638329088688 7.84926700592 7.0199508667
+      <UV>  {
+        0.650784 0.248908
+        <Tangent> { -0.734136 -0.422690 0.531392 }
+        <Binormal> { 0.318996 -0.905192 -0.279320 }
+      }
+      <Normal> { -0.619526 0.023774 -0.784570 }
+    }
+    <Vertex> 596 {
+      -0.979658186436 6.91442394257 7.63141918182
+      <UV>  {
+        0.621604 0.249644
+        <Tangent> { -0.644936 -0.706485 0.291438 }
+        <Binormal> { 0.513745 -0.666708 -0.479302 }
+      }
+      <Normal> { -0.693197 -0.016175 -0.720511 }
+    }
+    <Vertex> 597 {
+      0.638329088688 7.84926700592 7.0199508667
+      <UV>  {
+        0.650784 0.248908
+        <Tangent> { -0.734136 -0.422690 0.531392 }
+        <Binormal> { 0.318996 -0.905192 -0.279320 }
+      }
+      <Normal> { -0.619526 0.023774 -0.784570 }
+    }
+    <Vertex> 598 {
+      1.40212368965 4.94877958298 7.04224920273
+      <UV>  {
+        0.648816 0.420128
+        <Tangent> { -0.685542 -0.385352 0.617687 }
+        <Binormal> { 0.573442 -0.808221 0.132218 }
+      }
+      <Normal> { -0.434523 -0.437117 -0.787439 }
+    }
+    <Vertex> 599 {
+      -0.00814317632467 4.36059379578 7.64079093933
+      <UV>  {
+        0.616133 0.412314
+        <Tangent> { -0.825480 -0.430012 0.365613 }
+        <Binormal> { 0.502924 -0.733549 0.272745 }
+      }
+      <Normal> { -0.453658 -0.566729 -0.687704 }
+    }
+    <Vertex> 600 {
+      -0.979658186436 6.91442394257 7.63141918182
+      <UV>  {
+        0.621604 0.249644
+        <Tangent> { -0.644936 -0.706485 0.291438 }
+        <Binormal> { 0.513745 -0.666708 -0.479302 }
+      }
+      <Normal> { -0.693197 -0.016175 -0.720511 }
+    }
+    <Vertex> 601 {
+      -0.00814317632467 4.36059379578 7.64079093933
+      <UV>  {
+        0.616133 0.412314
+        <Tangent> { -0.825480 -0.430012 0.365613 }
+        <Binormal> { 0.502924 -0.733549 0.272745 }
+      }
+      <Normal> { -0.453658 -0.566729 -0.687704 }
+    }
+    <Vertex> 602 {
+      -0.00455888127908 4.59018945694 7.74984121323
+      <UV>  {
+        0.586841 0.418170
+        <Tangent> { -0.730976 -0.619929 0.285240 }
+        <Binormal> { -0.210858 0.312328 0.138441 }
+      }
+      <Normal> { -0.494552 -0.608814 0.620258 }
+    }
+    <Vertex> 603 {
+      -1.17037653923 6.18799448013 7.78948736191
+      <UV>  {
+        0.593150 0.246822
+        <Tangent> { -0.239886 -0.950339 0.198270 }
+        <Binormal> { -0.850161 0.134342 -0.384682 }
+      }
+      <Normal> { -0.418928 -0.056032 0.906278 }
+    }
+    <Vertex> 604 {
+      -0.979658186436 6.91442394257 7.63141918182
+      <UV>  {
+        0.621604 0.249644
+        <Tangent> { -0.644936 -0.706485 0.291438 }
+        <Binormal> { 0.513745 -0.666708 -0.479302 }
+      }
+      <Normal> { -0.693197 -0.016175 -0.720511 }
+    }
+    <Vertex> 605 {
+      -1.17037653923 6.18799448013 7.78948736191
+      <UV>  {
+        0.593150 0.246822
+        <Tangent> { -0.239886 -0.950339 0.198270 }
+        <Binormal> { -0.850161 0.134342 -0.384682 }
+      }
+      <Normal> { -0.418928 -0.056032 0.906278 }
+    }
+    <Vertex> 606 {
+      0.00690464675426 8.17260837555 7.79328536987
+      <UV>  {
+        0.599459 0.075473
+        <Tangent> { -0.063418 -0.985789 0.155556 }
+        <Binormal> { -0.983256 0.036851 -0.167326 }
+      }
+      <Normal> { -0.163121 0.102847 0.981201 }
+    }
+    <Vertex> 607 {
+      -0.00298445741646 9.47447681427 7.65034532547
+      <UV>  {
+        0.625728 0.063266
+        <Tangent> { -0.485675 -0.826453 0.284771 }
+        <Binormal> { -0.758807 0.240252 -0.596889 }
+      }
+      <Normal> { -0.473800 0.422742 0.772485 }
+    }
+    <Vertex> 608 {
+      2.92703747749 10.3444232941 7.73211193085
+      <UV>  {
+        0.488541 0.443801
+        <Tangent> { 0.997505 0.030166 0.063819 }
+        <Binormal> { 0.008546 -0.948847 0.314933 }
+      }
+      <Normal> { -0.089022 0.313028 0.945524 }
+    }
+    <Vertex> 609 {
+      6.60729598999 10.3630924225 7.81700277328
+      <UV>  {
+        0.404736 0.435099
+        <Tangent> { 0.995855 -0.081651 0.040072 }
+        <Binormal> { -0.089517 -0.957791 0.273040 }
+      }
+      <Normal> { -0.019379 0.275765 0.960997 }
+    }
+    <Vertex> 610 {
+      7.00420427322 12.0940675735 7.03973960876
+      <UV>  {
+        0.396783 0.390753
+        <Tangent> { 0.998114 -0.027274 0.054998 }
+        <Binormal> { -0.051195 -0.864172 0.500545 }
+      }
+      <Normal> { -0.036470 0.502487 0.863796 }
+    }
+    <Vertex> 611 {
+      3.87495136261 11.9322881699 7.01851797104
+      <UV>  {
+        0.468830 0.399177
+        <Tangent> { 0.989537 0.097897 0.105989 }
+        <Binormal> { 0.010486 -0.779549 0.622140 }
+      }
+      <Normal> { -0.214148 0.607532 0.764855 }
+    }
+    <Vertex> 612 {
+      2.92703747749 10.3444232941 7.73211193085
+      <UV>  {
+        0.488541 0.443801
+        <Tangent> { 0.997505 0.030166 0.063819 }
+        <Binormal> { 0.008546 -0.948847 0.314933 }
+      }
+      <Normal> { -0.089022 0.313028 0.945524 }
+    }
+    <Vertex> 613 {
+      3.87495136261 11.9322881699 7.01851797104
+      <UV>  {
+        0.468830 0.399177
+        <Tangent> { 0.989537 0.097897 0.105989 }
+        <Binormal> { 0.010486 -0.779549 0.622140 }
+      }
+      <Normal> { -0.214148 0.607532 0.764855 }
+    }
+    <Vertex> 614 {
+      1.48394858837 10.8036794662 7.00472736359
+      <UV>  {
+        0.540117 0.414902
+        <Tangent> { 0.918286 0.362542 0.159106 }
+        <Binormal> { -0.121713 -0.071346 0.865038 }
+      }
+      <Normal> { -0.767052 0.639180 -0.055208 }
+    }
+    <Vertex> 615 {
+      -0.00298445741646 9.47447681427 7.65034532547
+      <UV>  {
+        0.579436 0.453979
+        <Tangent> { 0.979808 0.188726 0.066016 }
+        <Binormal> { 0.117880 -0.788165 0.503625 }
+      }
+      <Normal> { -0.473800 0.422742 0.772485 }
+    }
+    <Vertex> 616 {
+      2.92703747749 10.3444232941 7.73211193085
+      <UV>  {
+        0.488541 0.443801
+        <Tangent> { 0.997505 0.030166 0.063819 }
+        <Binormal> { 0.008546 -0.948847 0.314933 }
+      }
+      <Normal> { -0.089022 0.313028 0.945524 }
+    }
+    <Vertex> 617 {
+      -0.00298445741646 9.47447681427 7.65034532547
+      <UV>  {
+        0.579436 0.453979
+        <Tangent> { 0.979808 0.188726 0.066016 }
+        <Binormal> { 0.117880 -0.788165 0.503625 }
+      }
+      <Normal> { -0.473800 0.422742 0.772485 }
+    }
+    <Vertex> 618 {
+      0.00690464675426 8.17260837555 7.79328536987
+      <UV>  {
+        0.618754 0.493056
+        <Tangent> { 0.997776 0.044202 0.049901 }
+        <Binormal> { 0.038239 -0.987158 0.109829 }
+      }
+      <Normal> { -0.163121 0.102847 0.981201 }
+    }
+    <Vertex> 619 {
+      2.14257335663 8.5312204361 7.91535282135
+      <UV>  {
+        0.502459 0.488556
+        <Tangent> { 0.997734 -0.048971 0.046131 }
+        <Binormal> { -0.051802 -0.996690 0.062335 }
+      }
+      <Normal> { -0.044038 0.064638 0.996918 }
+    }
+    <Vertex> 620 {
+      2.92703747749 10.3444232941 7.73211193085
+      <UV>  {
+        0.488541 0.443801
+        <Tangent> { 0.997505 0.030166 0.063819 }
+        <Binormal> { 0.008546 -0.948847 0.314933 }
+      }
+      <Normal> { -0.089022 0.313028 0.945524 }
+    }
+    <Vertex> 621 {
+      2.14257335663 8.5312204361 7.91535282135
+      <UV>  {
+        0.502459 0.488556
+        <Tangent> { 0.997734 -0.048971 0.046131 }
+        <Binormal> { -0.051802 -0.996690 0.062335 }
+      }
+      <Normal> { -0.044038 0.064638 0.996918 }
+    }
+    <Vertex> 622 {
+      6.24885749817 8.56078052521 8.04898262024
+      <UV>  {
+        0.408553 0.477740
+        <Tangent> { 0.993942 -0.105625 0.030382 }
+        <Binormal> { -0.107369 -0.992193 0.063137 }
+      }
+      <Normal> { -0.024293 0.066103 0.997497 }
+    }
+    <Vertex> 623 {
+      6.60729598999 10.3630924225 7.81700277328
+      <UV>  {
+        0.404736 0.435099
+        <Tangent> { 0.995855 -0.081651 0.040072 }
+        <Binormal> { -0.089517 -0.957791 0.273040 }
+      }
+      <Normal> { -0.019379 0.275765 0.960997 }
+    }
+    <Vertex> 624 {
+      2.90640306473 3.50931668282 7.64391422272
+      <UV>  {
+        0.607969 0.527570
+        <Tangent> { -0.971150 0.106981 0.213128 }
+        <Binormal> { 0.205789 -0.044947 0.960268 }
+      }
+      <Normal> { -0.290017 -0.956847 0.017365 }
+    }
+    <Vertex> 625 {
+      -0.00814317632467 4.36059379578 7.64079093933
+      <UV>  {
+        0.616133 0.412314
+        <Tangent> { -0.825480 -0.430012 0.365613 }
+        <Binormal> { 0.502924 -0.733549 0.272745 }
+      }
+      <Normal> { -0.453658 -0.566729 -0.687704 }
+    }
+    <Vertex> 626 {
+      1.40212368965 4.94877958298 7.04224920273
+      <UV>  {
+        0.648816 0.420128
+        <Tangent> { -0.685542 -0.385352 0.617687 }
+        <Binormal> { 0.573442 -0.808221 0.132218 }
+      }
+      <Normal> { -0.434523 -0.437117 -0.787439 }
+    }
+    <Vertex> 627 {
+      3.8393611908 3.98195004463 7.04968214035
+      <UV>  {
+        0.646575 0.533816
+        <Tangent> { -0.242577 -0.501811 0.830266 }
+        <Binormal> { 0.923817 -0.368151 0.047400 }
+      }
+      <Normal> { -0.259224 -0.731651 -0.630421 }
+    }
+    <Vertex> 628 {
+      2.90640306473 3.50931668282 7.64391422272
+      <UV>  {
+        0.607969 0.527570
+        <Tangent> { -0.971150 0.106981 0.213128 }
+        <Binormal> { 0.205789 -0.044947 0.960268 }
+      }
+      <Normal> { -0.290017 -0.956847 0.017365 }
+    }
+    <Vertex> 629 {
+      3.8393611908 3.98195004463 7.04968214035
+      <UV>  {
+        0.646575 0.533816
+        <Tangent> { -0.242577 -0.501811 0.830266 }
+        <Binormal> { 0.923817 -0.368151 0.047400 }
+      }
+      <Normal> { -0.259224 -0.731651 -0.630421 }
+    }
+    <Vertex> 630 {
+      6.29482984543 3.20148730278 7.04968214035
+      <UV>  {
+        0.649047 0.543539
+        <Tangent> { 0.955460 -0.293569 0.030215 }
+        <Binormal> { 0.194185 0.559209 -0.707242 }
+      }
+      <Normal> { -0.559954 -0.568163 -0.602985 }
+    }
+    <Vertex> 631 {
+      5.82094860077 2.68991112709 7.64391422272
+      <UV>  {
+        0.606874 0.542216
+        <Tangent> { -0.940908 0.338662 -0.000696 }
+        <Binormal> { 0.044681 0.126012 0.911887 }
+      }
+      <Normal> { -0.673940 -0.726585 0.133427 }
+    }
+    <Vertex> 632 {
+      2.90640306473 3.50931668282 7.64391422272
+      <UV>  {
+        0.607969 0.527570
+        <Tangent> { -0.971150 0.106981 0.213128 }
+        <Binormal> { 0.205789 -0.044947 0.960268 }
+      }
+      <Normal> { -0.290017 -0.956847 0.017365 }
+    }
+    <Vertex> 633 {
+      5.82094860077 2.68991112709 7.64391422272
+      <UV>  {
+        0.606874 0.542216
+        <Tangent> { -0.940908 0.338662 -0.000696 }
+        <Binormal> { 0.044681 0.126012 0.911887 }
+      }
+      <Normal> { -0.673940 -0.726585 0.133427 }
+    }
+    <Vertex> 634 {
+      6.21691513062 3.03441333771 7.85161542892
+      <UV>  {
+        0.548797 0.619410
+        <Tangent> { -0.929812 0.368033 -0.001085 }
+        <Binormal> { 0.358587 0.906563 0.209095 }
+      }
+      <Normal> { -0.148625 -0.166051 0.974822 }
+    }
+    <Vertex> 635 {
+      2.11678051949 3.87588429451 7.80510663986
+      <UV>  {
+        0.567819 0.518790
+        <Tangent> { -0.834946 0.481285 0.266891 }
+        <Binormal> { 0.538936 0.758066 0.318994 }
+      }
+      <Normal> { -0.103122 -0.322611 0.940886 }
+    }
+    <Vertex> 636 {
+      2.90640306473 3.50931668282 7.64391422272
+      <UV>  {
+        0.607969 0.527570
+        <Tangent> { -0.971150 0.106981 0.213128 }
+        <Binormal> { 0.205789 -0.044947 0.960268 }
+      }
+      <Normal> { -0.290017 -0.956847 0.017365 }
+    }
+    <Vertex> 637 {
+      2.11678051949 3.87588429451 7.80510663986
+      <UV>  {
+        0.567819 0.518790
+        <Tangent> { -0.834946 0.481285 0.266891 }
+        <Binormal> { 0.538936 0.758066 0.318994 }
+      }
+      <Normal> { -0.103122 -0.322611 0.940886 }
+    }
+    <Vertex> 638 {
+      -0.00455888127908 4.59018945694 7.74984121323
+      <UV>  {
+        0.586841 0.418170
+        <Tangent> { -0.730976 -0.619929 0.285240 }
+        <Binormal> { -0.210858 0.312328 0.138441 }
+      }
+      <Normal> { -0.494552 -0.608814 0.620258 }
+    }
+    <Vertex> 639 {
+      -0.00814317632467 4.36059379578 7.64079093933
+      <UV>  {
+        0.616133 0.412314
+        <Tangent> { -0.825480 -0.430012 0.365613 }
+        <Binormal> { 0.502924 -0.733549 0.272745 }
+      }
+      <Normal> { -0.453658 -0.566729 -0.687704 }
+    }
+    <Vertex> 640 {
+      6.79246234894 0.231696248055 7.64391422272
+      <UV>  {
+        0.622610 0.403053
+        <Tangent> { -0.034387 0.731987 -0.680450 }
+        <Binormal> { -0.085151 0.642017 0.694947 }
+      }
+      <Normal> { -0.934812 -0.310465 0.172277 }
+    }
+    <Vertex> 641 {
+      5.82094860077 2.68991112709 7.64391422272
+      <UV>  {
+        0.606874 0.542216
+        <Tangent> { -0.940908 0.338662 -0.000696 }
+        <Binormal> { 0.044681 0.126012 0.911887 }
+      }
+      <Normal> { -0.673940 -0.726585 0.133427 }
+    }
+    <Vertex> 642 {
+      6.29482984543 3.20148730278 7.04968214035
+      <UV>  {
+        0.649047 0.543539
+        <Tangent> { 0.955460 -0.293569 0.030215 }
+        <Binormal> { 0.194185 0.559209 -0.707242 }
+      }
+      <Normal> { -0.559954 -0.568163 -0.602985 }
+    }
+    <Vertex> 643 {
+      7.1133184433 0.860100746155 7.04968214035
+      <UV>  {
+        0.661221 0.402863
+        <Tangent> { 0.262640 0.507040 -0.820933 }
+        <Binormal> { -0.486165 0.800903 0.339131 }
+      }
+      <Normal> { -0.807245 -0.267190 -0.526231 }
+    }
+    <Vertex> 644 {
+      6.79246234894 0.231696248055 7.64391422272
+      <UV>  {
+        0.622610 0.403053
+        <Tangent> { -0.034387 0.731987 -0.680450 }
+        <Binormal> { -0.085151 0.642017 0.694947 }
+      }
+      <Normal> { -0.934812 -0.310465 0.172277 }
+    }
+    <Vertex> 645 {
+      7.1133184433 0.860100746155 7.04968214035
+      <UV>  {
+        0.661221 0.402863
+        <Tangent> { 0.262640 0.507040 -0.820933 }
+        <Binormal> { -0.486165 0.800903 0.339131 }
+      }
+      <Normal> { -0.807245 -0.267190 -0.526231 }
+    }
+    <Vertex> 646 {
+      7.83960199356 -1.50740194321 7.04303026199
+      <UV>  {
+        0.673990 0.218255
+        <Tangent> { 0.328042 0.511637 -0.794113 }
+        <Binormal> { -0.721731 0.677183 0.138159 }
+      }
+      <Normal> { -0.596240 -0.508774 -0.620960 }
+    }
+    <Vertex> 647 {
+      7.46440553665 -2.22651791573 7.64391422272
+      <UV>  {
+        0.640724 0.218302
+        <Tangent> { 0.500895 0.017299 -0.865335 }
+        <Binormal> { -0.554839 0.589257 -0.309387 }
+      }
+      <Normal> { -0.754570 -0.643727 0.127171 }
+    }
+    <Vertex> 648 {
+      6.79246234894 0.231696248055 7.64391422272
+      <UV>  {
+        0.622610 0.403053
+        <Tangent> { -0.034387 0.731987 -0.680450 }
+        <Binormal> { -0.085151 0.642017 0.694947 }
+      }
+      <Normal> { -0.934812 -0.310465 0.172277 }
+    }
+    <Vertex> 649 {
+      7.46440553665 -2.22651791573 7.64391422272
+      <UV>  {
+        0.640724 0.218302
+        <Tangent> { 0.500895 0.017299 -0.865335 }
+        <Binormal> { -0.554839 0.589257 -0.309387 }
+      }
+      <Normal> { -0.754570 -0.643727 0.127171 }
+    }
+    <Vertex> 650 {
+      7.74112176895 -1.96695017815 7.75817108154
+      <UV>  {
+        0.616107 0.186987
+        <Tangent> { 0.157505 -0.901016 -0.404181 }
+        <Binormal> { -0.939324 -0.044072 -0.267799 }
+      }
+      <Normal> { -0.256508 -0.232887 0.938047 }
+    }
+    <Vertex> 651 {
+      7.16232585907 -0.234738186002 7.80822992325
+      <UV>  {
+        0.582452 0.403198
+        <Tangent> { -0.598238 0.756107 -0.265355 }
+        <Binormal> { 0.700295 0.643752 0.255514 }
+      }
+      <Normal> { -0.260689 -0.097629 0.960448 }
+    }
+    <Vertex> 652 {
+      6.79246234894 0.231696248055 7.64391422272
+      <UV>  {
+        0.622610 0.403053
+        <Tangent> { -0.034387 0.731987 -0.680450 }
+        <Binormal> { -0.085151 0.642017 0.694947 }
+      }
+      <Normal> { -0.934812 -0.310465 0.172277 }
+    }
+    <Vertex> 653 {
+      7.16232585907 -0.234738186002 7.80822992325
+      <UV>  {
+        0.582452 0.403198
+        <Tangent> { -0.598238 0.756107 -0.265355 }
+        <Binormal> { 0.700295 0.643752 0.255514 }
+      }
+      <Normal> { -0.260689 -0.097629 0.960448 }
+    }
+    <Vertex> 654 {
+      6.21691513062 3.03441333771 7.85161542892
+      <UV>  {
+        0.548797 0.619410
+        <Tangent> { -0.929812 0.368033 -0.001085 }
+        <Binormal> { 0.358587 0.906563 0.209095 }
+      }
+      <Normal> { -0.148625 -0.166051 0.974822 }
+    }
+    <Vertex> 655 {
+      5.82094860077 2.68991112709 7.64391422272
+      <UV>  {
+        0.606874 0.542216
+        <Tangent> { -0.940908 0.338662 -0.000696 }
+        <Binormal> { 0.044681 0.126012 0.911887 }
+      }
+      <Normal> { -0.673940 -0.726585 0.133427 }
+    }
+    <Vertex> 656 {
+      1.86732900143 5.96244668961 7.91763544083
+      <UV>  {
+        0.501778 0.549957
+        <Tangent> { 0.985893 -0.165106 0.027490 }
+        <Binormal> { -0.164221 -0.985894 -0.031757 }
+      }
+      <Normal> { -0.037263 -0.025971 0.998962 }
+    }
+    <Vertex> 657 {
+      -1.17037653923 6.18799448013 7.78948736191
+      <UV>  {
+        0.611201 0.562355
+        <Tangent> { 0.983420 -0.176821 0.040242 }
+        <Binormal> { -0.157994 -0.908110 -0.129178 }
+      }
+      <Normal> { -0.418928 -0.056032 0.906278 }
+    }
+    <Vertex> 658 {
+      -0.00455888127908 4.59018945694 7.74984121323
+      <UV>  {
+        0.603647 0.631654
+        <Tangent> { 0.959426 -0.280581 0.027859 }
+        <Binormal> { -0.157071 -0.608870 -0.722874 }
+      }
+      <Normal> { -0.494552 -0.608814 0.620258 }
+    }
+    <Vertex> 659 {
+      2.11678051949 3.87588429451 7.80510663986
+      <UV>  {
+        0.493797 0.619681
+        <Tangent> { 0.940758 -0.338949 0.009416 }
+        <Binormal> { -0.315875 -0.886116 -0.338452 }
+      }
+      <Normal> { -0.103122 -0.322611 0.940886 }
+    }
+    <Vertex> 660 {
+      1.86732900143 5.96244668961 7.91763544083
+      <UV>  {
+        0.501778 0.549957
+        <Tangent> { 0.985893 -0.165106 0.027490 }
+        <Binormal> { -0.164221 -0.985894 -0.031757 }
+      }
+      <Normal> { -0.037263 -0.025971 0.998962 }
+    }
+    <Vertex> 661 {
+      2.11678051949 3.87588429451 7.80510663986
+      <UV>  {
+        0.493797 0.619681
+        <Tangent> { 0.940758 -0.338949 0.009416 }
+        <Binormal> { -0.315875 -0.886116 -0.338452 }
+      }
+      <Normal> { -0.103122 -0.322611 0.940886 }
+    }
+    <Vertex> 662 {
+      6.21691513062 3.03441333771 7.85161542892
+      <UV>  {
+        0.383948 0.607707
+        <Tangent> { 0.975677 -0.215989 0.037460 }
+        <Binormal> { -0.204330 -0.956679 -0.194114 }
+      }
+      <Normal> { -0.148625 -0.166051 0.974822 }
+    }
+    <Vertex> 663 {
+      6.0402879715 5.98733949661 8.02769947052
+      <UV>  {
+        0.405024 0.538048
+        <Tangent> { 0.991782 -0.125518 0.024769 }
+        <Binormal> { -0.124778 -0.991722 -0.029326 }
+      }
+      <Normal> { -0.031800 -0.025544 0.999146 }
+    }
+    <Vertex> 664 {
+      1.86732900143 5.96244668961 7.91763544083
+      <UV>  {
+        0.501778 0.549957
+        <Tangent> { 0.985893 -0.165106 0.027490 }
+        <Binormal> { -0.164221 -0.985894 -0.031757 }
+      }
+      <Normal> { -0.037263 -0.025971 0.998962 }
+    }
+    <Vertex> 665 {
+      6.0402879715 5.98733949661 8.02769947052
+      <UV>  {
+        0.405024 0.538048
+        <Tangent> { 0.991782 -0.125518 0.024769 }
+        <Binormal> { -0.124778 -0.991722 -0.029326 }
+      }
+      <Normal> { -0.031800 -0.025544 0.999146 }
+    }
+    <Vertex> 666 {
+      6.24885749817 8.56078052521 8.04898262024
+      <UV>  {
+        0.408553 0.477740
+        <Tangent> { 0.993942 -0.105625 0.030382 }
+        <Binormal> { -0.107369 -0.992193 0.063137 }
+      }
+      <Normal> { -0.024293 0.066103 0.997497 }
+    }
+    <Vertex> 667 {
+      2.14257335663 8.5312204361 7.91535282135
+      <UV>  {
+        0.502459 0.488556
+        <Tangent> { 0.997734 -0.048971 0.046131 }
+        <Binormal> { -0.051802 -0.996690 0.062335 }
+      }
+      <Normal> { -0.044038 0.064638 0.996918 }
+    }
+    <Vertex> 668 {
+      1.86732900143 5.96244668961 7.91763544083
+      <UV>  {
+        0.501778 0.549957
+        <Tangent> { 0.985893 -0.165106 0.027490 }
+        <Binormal> { -0.164221 -0.985894 -0.031757 }
+      }
+      <Normal> { -0.037263 -0.025971 0.998962 }
+    }
+    <Vertex> 669 {
+      2.14257335663 8.5312204361 7.91535282135
+      <UV>  {
+        0.502459 0.488556
+        <Tangent> { 0.997734 -0.048971 0.046131 }
+        <Binormal> { -0.051802 -0.996690 0.062335 }
+      }
+      <Normal> { -0.044038 0.064638 0.996918 }
+    }
+    <Vertex> 670 {
+      0.00690464675426 8.17260837555 7.79328536987
+      <UV>  {
+        0.618754 0.493056
+        <Tangent> { 0.997776 0.044202 0.049901 }
+        <Binormal> { 0.038239 -0.987158 0.109829 }
+      }
+      <Normal> { -0.163121 0.102847 0.981201 }
+    }
+    <Vertex> 671 {
+      -1.17037653923 6.18799448013 7.78948736191
+      <UV>  {
+        0.611201 0.562355
+        <Tangent> { 0.983420 -0.176821 0.040242 }
+        <Binormal> { -0.157994 -0.908110 -0.129178 }
+      }
+      <Normal> { -0.418928 -0.056032 0.906278 }
+    }
+    <Vertex> 672 {
+      8.90088939667 -0.373620629311 7.93013048172
+      <UV>  {
+        0.309143 0.670246
+        <Tangent> { 0.970842 -0.238813 0.020839 }
+        <Binormal> { -0.237514 -0.970015 -0.051033 }
+      }
+      <Normal> { -0.032807 -0.044496 0.998444 }
+    }
+    <Vertex> 673 {
+      8.9510345459 2.94248986244 8.03082370758
+      <UV>  {
+        0.325483 0.596170
+        <Tangent> { 0.975052 -0.219776 0.031164 }
+        <Binormal> { -0.218506 -0.974992 -0.039321 }
+      }
+      <Normal> { -0.029572 -0.033662 0.998993 }
+    }
+    <Vertex> 674 {
+      6.21691513062 3.03441333771 7.85161542892
+      <UV>  {
+        0.383948 0.607707
+        <Tangent> { 0.975677 -0.215989 0.037460 }
+        <Binormal> { -0.204330 -0.956679 -0.194114 }
+      }
+      <Normal> { -0.148625 -0.166051 0.974822 }
+    }
+    <Vertex> 675 {
+      7.16232585907 -0.234738186002 7.80822992325
+      <UV>  {
+        0.364406 0.684424
+        <Tangent> { 0.950917 -0.304094 0.057309 }
+        <Binormal> { -0.286471 -0.928246 -0.172111 }
+      }
+      <Normal> { -0.260689 -0.097629 0.960448 }
+    }
+    <Vertex> 676 {
+      8.90088939667 -0.373620629311 7.93013048172
+      <UV>  {
+        0.309143 0.670246
+        <Tangent> { 0.970842 -0.238813 0.020839 }
+        <Binormal> { -0.237514 -0.970015 -0.051033 }
+      }
+      <Normal> { -0.032807 -0.044496 0.998444 }
+    }
+    <Vertex> 677 {
+      7.16232585907 -0.234738186002 7.80822992325
+      <UV>  {
+        0.364406 0.684424
+        <Tangent> { 0.950917 -0.304094 0.057309 }
+        <Binormal> { -0.286471 -0.928246 -0.172111 }
+      }
+      <Normal> { -0.260689 -0.097629 0.960448 }
+    }
+    <Vertex> 678 {
+      7.74112176895 -1.96695017815 7.75817108154
+      <UV>  {
+        0.344864 0.761141
+        <Tangent> { 0.884982 -0.464022 0.038593 }
+        <Binormal> { -0.426287 -0.840055 -0.325126 }
+      }
+      <Normal> { -0.256508 -0.232887 0.938047 }
+    }
+    <Vertex> 679 {
+      9.08419036865 -2.76134347916 7.80822992325
+      <UV>  {
+        0.288696 0.746833
+        <Tangent> { 0.957848 -0.287257 0.003400 }
+        <Binormal> { -0.278961 -0.932872 -0.226839 }
+      }
+      <Normal> { -0.048128 -0.222388 0.973754 }
+    }
+    <Vertex> 680 {
+      8.90088939667 -0.373620629311 7.93013048172
+      <UV>  {
+        0.309143 0.670246
+        <Tangent> { 0.970842 -0.238813 0.020839 }
+        <Binormal> { -0.237514 -0.970015 -0.051033 }
+      }
+      <Normal> { -0.032807 -0.044496 0.998444 }
+    }
+    <Vertex> 681 {
+      9.08419036865 -2.76134347916 7.80822992325
+      <UV>  {
+        0.288696 0.746833
+        <Tangent> { 0.957848 -0.287257 0.003400 }
+        <Binormal> { -0.278961 -0.932872 -0.226839 }
+      }
+      <Normal> { -0.048128 -0.222388 0.973754 }
+    }
+    <Vertex> 682 {
+      10.601275444 -1.95312011242 7.81411123276
+      <UV>  {
+        0.232528 0.732526
+        <Tangent> { 0.925119 -0.361782 -0.115190 }
+        <Binormal> { -0.372331 -0.923168 -0.090855 }
+      }
+      <Normal> { 0.099734 -0.137211 0.985473 }
+    }
+    <Vertex> 683 {
+      10.9098949432 -0.203621029854 7.93409538269
+      <UV>  {
+        0.264018 0.655130
+        <Tangent> { 0.984910 -0.143579 -0.096629 }
+        <Binormal> { -0.147765 -0.988288 -0.037651 }
+      }
+      <Normal> { 0.092196 -0.051668 0.994385 }
+    }
+    <Vertex> 684 {
+      8.90088939667 -0.373620629311 7.93013048172
+      <UV>  {
+        0.309143 0.670246
+        <Tangent> { 0.970842 -0.238813 0.020839 }
+        <Binormal> { -0.237514 -0.970015 -0.051033 }
+      }
+      <Normal> { -0.032807 -0.044496 0.998444 }
+    }
+    <Vertex> 685 {
+      10.9098949432 -0.203621029854 7.93409538269
+      <UV>  {
+        0.264018 0.655130
+        <Tangent> { 0.984910 -0.143579 -0.096629 }
+        <Binormal> { -0.147765 -0.988288 -0.037651 }
+      }
+      <Normal> { 0.092196 -0.051668 0.994385 }
+    }
+    <Vertex> 686 {
+      10.9786643982 3.12172555923 8.05366897583
+      <UV>  {
+        0.279916 0.582036
+        <Tangent> { 0.968041 -0.224380 -0.112028 }
+        <Binormal> { -0.226583 -0.973940 -0.007222 }
+      }
+      <Normal> { 0.108829 -0.032685 0.993500 }
+    }
+    <Vertex> 687 {
+      8.9510345459 2.94248986244 8.03082370758
+      <UV>  {
+        0.325483 0.596170
+        <Tangent> { 0.975052 -0.219776 0.031164 }
+        <Binormal> { -0.218506 -0.974992 -0.039321 }
+      }
+      <Normal> { -0.029572 -0.033662 0.998993 }
+    }
+    <Vertex> 688 {
+      9.25532913208 6.01223278046 8.1315164566
+      <UV>  {
+        0.333607 0.527116
+        <Tangent> { 0.987120 -0.159663 0.010079 }
+        <Binormal> { -0.159513 -0.987091 -0.014276 }
+      }
+      <Normal> { -0.012055 -0.012513 0.999847 }
+    }
+    <Vertex> 689 {
+      9.61585140228 8.5747833252 8.11030864716
+      <UV>  {
+        0.335990 0.469401
+        <Tangent> { 0.993609 -0.112510 -0.009065 }
+        <Binormal> { -0.111545 -0.991006 0.073483 }
+      }
+      <Normal> { 0.010590 0.072756 0.997284 }
+    }
+    <Vertex> 690 {
+      6.24885749817 8.56078052521 8.04898262024
+      <UV>  {
+        0.408553 0.477740
+        <Tangent> { 0.993942 -0.105625 0.030382 }
+        <Binormal> { -0.107369 -0.992193 0.063137 }
+      }
+      <Normal> { -0.024293 0.066103 0.997497 }
+    }
+    <Vertex> 691 {
+      6.0402879715 5.98733949661 8.02769947052
+      <UV>  {
+        0.405024 0.538048
+        <Tangent> { 0.991782 -0.125518 0.024769 }
+        <Binormal> { -0.124778 -0.991722 -0.029326 }
+      }
+      <Normal> { -0.031800 -0.025544 0.999146 }
+    }
+    <Vertex> 692 {
+      9.25532913208 6.01223278046 8.1315164566
+      <UV>  {
+        0.333607 0.527116
+        <Tangent> { 0.987120 -0.159663 0.010079 }
+        <Binormal> { -0.159513 -0.987091 -0.014276 }
+      }
+      <Normal> { -0.012055 -0.012513 0.999847 }
+    }
+    <Vertex> 693 {
+      6.0402879715 5.98733949661 8.02769947052
+      <UV>  {
+        0.405024 0.538048
+        <Tangent> { 0.991782 -0.125518 0.024769 }
+        <Binormal> { -0.124778 -0.991722 -0.029326 }
+      }
+      <Normal> { -0.031800 -0.025544 0.999146 }
+    }
+    <Vertex> 694 {
+      6.21691513062 3.03441333771 7.85161542892
+      <UV>  {
+        0.383948 0.607707
+        <Tangent> { 0.975677 -0.215989 0.037460 }
+        <Binormal> { -0.204330 -0.956679 -0.194114 }
+      }
+      <Normal> { -0.148625 -0.166051 0.974822 }
+    }
+    <Vertex> 695 {
+      8.9510345459 2.94248986244 8.03082370758
+      <UV>  {
+        0.325483 0.596170
+        <Tangent> { 0.975052 -0.219776 0.031164 }
+        <Binormal> { -0.218506 -0.974992 -0.039321 }
+      }
+      <Normal> { -0.029572 -0.033662 0.998993 }
+    }
+    <Vertex> 696 {
+      9.25532913208 6.01223278046 8.1315164566
+      <UV>  {
+        0.333607 0.527116
+        <Tangent> { 0.987120 -0.159663 0.010079 }
+        <Binormal> { -0.159513 -0.987091 -0.014276 }
+      }
+      <Normal> { -0.012055 -0.012513 0.999847 }
+    }
+    <Vertex> 697 {
+      8.9510345459 2.94248986244 8.03082370758
+      <UV>  {
+        0.325483 0.596170
+        <Tangent> { 0.975052 -0.219776 0.031164 }
+        <Binormal> { -0.218506 -0.974992 -0.039321 }
+      }
+      <Normal> { -0.029572 -0.033662 0.998993 }
+    }
+    <Vertex> 698 {
+      10.9786643982 3.12172555923 8.05366897583
+      <UV>  {
+        0.279916 0.582036
+        <Tangent> { 0.968041 -0.224380 -0.112028 }
+        <Binormal> { -0.226583 -0.973940 -0.007222 }
+      }
+      <Normal> { 0.108829 -0.032685 0.993500 }
+    }
+    <Vertex> 699 {
+      11.4157619476 6.26267385483 8.11030864716
+      <UV>  {
+        0.287046 0.513913
+        <Tangent> { 0.977461 -0.171184 -0.123557 }
+        <Binormal> { -0.170061 -0.985201 0.019608 }
+      }
+      <Normal> { 0.118900 -0.000763 0.992889 }
+    }
+    <Vertex> 700 {
+      9.25532913208 6.01223278046 8.1315164566
+      <UV>  {
+        0.333607 0.527116
+        <Tangent> { 0.987120 -0.159663 0.010079 }
+        <Binormal> { -0.159513 -0.987091 -0.014276 }
+      }
+      <Normal> { -0.012055 -0.012513 0.999847 }
+    }
+    <Vertex> 701 {
+      11.4157619476 6.26267385483 8.11030864716
+      <UV>  {
+        0.287046 0.513913
+        <Tangent> { 0.977461 -0.171184 -0.123557 }
+        <Binormal> { -0.170061 -0.985201 0.019608 }
+      }
+      <Normal> { 0.118900 -0.000763 0.992889 }
+    }
+    <Vertex> 702 {
+      11.1713752747 8.23069190979 8.04906082153
+      <UV>  {
+        0.300409 0.472919
+        <Tangent> { 0.987320 -0.134459 -0.084383 }
+        <Binormal> { -0.128123 -0.988796 0.076487 }
+      }
+      <Normal> { 0.095340 0.064486 0.993347 }
+    }
+    <Vertex> 703 {
+      9.61585140228 8.5747833252 8.11030864716
+      <UV>  {
+        0.335990 0.469401
+        <Tangent> { 0.993609 -0.112510 -0.009065 }
+        <Binormal> { -0.111545 -0.991006 0.073483 }
+      }
+      <Normal> { 0.010590 0.072756 0.997284 }
+    }
+    <Vertex> 704 {
+      -16.9874076843 0.799743831158 0.709868133068
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.103547 -0.943817 0.313827 }
+        <Binormal> { -0.953927 -0.004938 0.299898 }
+      }
+      <Normal> { 0.281228 0.332896 0.900021 }
+    }
+    <Vertex> 705 {
+      -16.3443870544 -2.29496955872 1.98089694977
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.188747 -0.908395 0.373087 }
+        <Binormal> { -0.956484 -0.114342 0.205490 }
+      }
+      <Normal> { 0.176580 0.238868 0.954833 }
+    }
+    <Vertex> 706 {
+      -13.2726078033 -2.29160046577 1.3915374279
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.231518 -0.891396 0.389632 }
+        <Binormal> { -0.830800 0.018934 0.536976 }
+      }
+      <Normal> { 0.519608 0.318766 0.792688 }
+    }
+    <Vertex> 707 {
+      -14.2371377945 0.803112506866 -0.0428524985909
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.207231 -0.914015 0.348758 }
+        <Binormal> { -0.856629 0.002420 0.515348 }
+      }
+      <Normal> { 0.476791 0.383892 0.790735 }
+    }
+    <Vertex> 708 {
+      -16.9874076843 0.799743831158 0.709868133068
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.103547 -0.943817 0.313827 }
+        <Binormal> { -0.953927 -0.004938 0.299898 }
+      }
+      <Normal> { 0.281228 0.332896 0.900021 }
+    }
+    <Vertex> 709 {
+      -14.2371377945 0.803112506866 -0.0428524985909
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.207231 -0.914015 0.348758 }
+        <Binormal> { -0.856629 0.002420 0.515348 }
+      }
+      <Normal> { 0.476791 0.383892 0.790735 }
+    }
+    <Vertex> 710 {
+      -14.8801593781 4.79867649078 -1.31388151646
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.127253 -0.948861 0.288911 }
+        <Binormal> { -0.857548 0.031555 0.481349 }
+      }
+      <Normal> { 0.488571 0.139592 0.861263 }
+    }
+    <Vertex> 711 {
+      -17.4160881042 4.79530763626 -0.452253818512
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.102478 -0.955155 0.277810 }
+        <Binormal> { -0.923686 0.002679 0.349938 }
+      }
+      <Normal> { 0.350963 0.143590 0.925291 }
+    }
+    <Vertex> 712 {
+      -16.9874076843 0.799743831158 0.709868133068
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.103547 -0.943817 0.313827 }
+        <Binormal> { -0.953927 -0.004938 0.299898 }
+      }
+      <Normal> { 0.281228 0.332896 0.900021 }
+    }
+    <Vertex> 713 {
+      -17.4160881042 4.79530763626 -0.452253818512
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.102478 -0.955155 0.277810 }
+        <Binormal> { -0.923686 0.002679 0.349938 }
+      }
+      <Normal> { 0.350963 0.143590 0.925291 }
+    }
+    <Vertex> 714 {
+      -19.8630504608 4.7945227623 0.816746592522
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.065499 -0.963139 0.260907 }
+        <Binormal> { -0.730422 0.128699 0.658459 }
+      }
+      <Normal> { 0.676138 0.110599 0.728416 }
+    }
+    <Vertex> 715 {
+      -19.7558803558 0.910538911819 1.78913700581
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.088961 -0.963661 0.251882 }
+        <Binormal> { -0.775869 0.225474 0.588606 }
+      }
+      <Normal> { 0.626362 0.168554 0.761071 }
+    }
+    <Vertex> 716 {
+      -16.9874076843 0.799743831158 0.709868133068
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.103547 -0.943817 0.313827 }
+        <Binormal> { -0.953927 -0.004938 0.299898 }
+      }
+      <Normal> { 0.281228 0.332896 0.900021 }
+    }
+    <Vertex> 717 {
+      -19.7558803558 0.910538911819 1.78913700581
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.088961 -0.963661 0.251882 }
+        <Binormal> { -0.775869 0.225474 0.588606 }
+      }
+      <Normal> { 0.626362 0.168554 0.761071 }
+    }
+    <Vertex> 718 {
+      -20.510684967 -2.22094368935 2.65044903755
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.016983 -0.945919 0.323957 }
+        <Binormal> { -0.831136 0.123181 0.316103 }
+      }
+      <Normal> { 0.331431 -0.152837 0.930998 }
+    }
+    <Vertex> 719 {
+      -16.3443870544 -2.29496955872 1.98089694977
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.188747 -0.908395 0.373087 }
+        <Binormal> { -0.956484 -0.114342 0.205490 }
+      }
+      <Normal> { 0.176580 0.238868 0.954833 }
+    }
+    <Vertex> 720 {
+      -16.9874076843 10.5003252029 -0.549208521843
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.067799 -0.997635 -0.011316 }
+        <Binormal> { -0.953439 0.061447 0.295184 }
+      }
+      <Normal> { 0.293802 -0.030641 0.955351 }
+    }
+    <Vertex> 721 {
+      -17.4160881042 4.79530763626 -0.452253818512
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.074919 -0.997046 0.016944 }
+        <Binormal> { -0.924990 0.075269 0.339168 }
+      }
+      <Normal> { 0.350963 0.143590 0.925291 }
+    }
+    <Vertex> 722 {
+      -14.8801593781 4.79867649078 -1.31388151646
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.093512 -0.995591 0.007417 }
+        <Binormal> { -0.858500 0.084162 0.473363 }
+      }
+      <Normal> { 0.488571 0.139592 0.861263 }
+    }
+    <Vertex> 723 {
+      -14.2371377945 10.5036935806 -1.30192875862
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.139615 -0.989245 -0.043601 }
+        <Binormal> { -0.855292 0.098311 0.508198 }
+      }
+      <Normal> { 0.501602 -0.085879 0.860805 }
+    }
+    <Vertex> 724 {
+      -16.9874076843 10.5003252029 -0.549208521843
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.067799 -0.997635 -0.011316 }
+        <Binormal> { -0.953439 0.061447 0.295184 }
+      }
+      <Normal> { 0.293802 -0.030641 0.955351 }
+    }
+    <Vertex> 725 {
+      -14.2371377945 10.5036935806 -1.30192875862
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.139615 -0.989245 -0.043601 }
+        <Binormal> { -0.855292 0.098311 0.508198 }
+      }
+      <Normal> { 0.501602 -0.085879 0.860805 }
+    }
+    <Vertex> 726 {
+      -13.2726049423 16.1890468597 -0.81184643507
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.139632 -0.987659 -0.070948 }
+        <Binormal> { -0.836729 0.079455 0.540680 }
+      }
+      <Normal> { 0.533219 -0.100558 0.839961 }
+    }
+    <Vertex> 727 {
+      -16.3443870544 16.1856765747 -0.222486764193
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.112202 -0.992049 -0.057010 }
+        <Binormal> { -0.977317 0.100185 0.180116 }
+      }
+      <Normal> { 0.178411 -0.027833 0.983551 }
+    }
+    <Vertex> 728 {
+      -16.9874076843 10.5003252029 -0.549208521843
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.067799 -0.997635 -0.011316 }
+        <Binormal> { -0.953439 0.061447 0.295184 }
+      }
+      <Normal> { 0.293802 -0.030641 0.955351 }
+    }
+    <Vertex> 729 {
+      -16.3443870544 16.1856765747 -0.222486764193
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.112202 -0.992049 -0.057010 }
+        <Binormal> { -0.977317 0.100185 0.180116 }
+      }
+      <Normal> { 0.178411 -0.027833 0.983551 }
+    }
+    <Vertex> 730 {
+      -20.5106811523 16.2876834869 0.37312862277
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.009608 -0.999887 -0.011572 }
+        <Binormal> { -0.908155 -0.012629 0.337212 }
+      }
+      <Normal> { 0.334941 0.240303 0.911039 }
+    }
+    <Vertex> 731 {
+      -19.7558803558 10.340221405 0.565221428871
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.056218 -0.997676 0.038509 }
+        <Binormal> { -0.777256 -0.019542 0.628405 }
+      }
+      <Normal> { 0.627522 0.041658 0.777459 }
+    }
+    <Vertex> 732 {
+      -16.9874076843 10.5003252029 -0.549208521843
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.067799 -0.997635 -0.011316 }
+        <Binormal> { -0.953439 0.061447 0.295184 }
+      }
+      <Normal> { 0.293802 -0.030641 0.955351 }
+    }
+    <Vertex> 733 {
+      -19.7558803558 10.340221405 0.565221428871
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.056218 -0.997676 0.038509 }
+        <Binormal> { -0.777256 -0.019542 0.628405 }
+      }
+      <Normal> { 0.627522 0.041658 0.777459 }
+    }
+    <Vertex> 734 {
+      -19.8630504608 4.7945227623 0.816746592522
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.047551 -0.998390 0.030924 }
+        <Binormal> { -0.730663 0.055546 0.669790 }
+      }
+      <Normal> { 0.676138 0.110599 0.728416 }
+    }
+    <Vertex> 735 {
+      -17.4160881042 4.79530763626 -0.452253818512
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.074919 -0.997046 0.016944 }
+        <Binormal> { -0.924990 0.075269 0.339168 }
+      }
+      <Normal> { 0.350963 0.143590 0.925291 }
+    }
+    <Vertex> 736 {
+      -16.1300487518 -5.29743289948 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.039314 -0.998221 0.044824 }
+        <Binormal> { -0.993635 -0.034324 0.107099 }
+      }
+      <Normal> { 0.105350 0.049257 0.993194 }
+    }
+    <Vertex> 737 {
+      -16.1300487518 -8.27541637421 2.40457344055
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.996612 -0.000000 0.082186 }
+      }
+      <Normal> { 0.082186 0.000732 0.996612 }
+    }
+    <Vertex> 738 {
+      -12.9233322144 -8.2720489502 1.86966729164
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.004661 -0.999989 -0.000000 }
+        <Binormal> { -0.840562 -0.003918 0.541340 }
+      }
+      <Normal> { 0.541246 0.021393 0.840571 }
+    }
+    <Vertex> 739 {
+      -12.9510955811 -5.29406452179 1.86966776848
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.058119 -0.995134 0.079560 }
+        <Binormal> { -0.829442 -0.003790 0.558511 }
+      }
+      <Normal> { 0.555864 0.092074 0.826136 }
+    }
+    <Vertex> 740 {
+      -16.1300487518 -5.29743289948 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.039314 -0.998221 0.044824 }
+        <Binormal> { -0.993635 -0.034324 0.107099 }
+      }
+      <Normal> { 0.105350 0.049257 0.993194 }
+    }
+    <Vertex> 741 {
+      -12.9510955811 -5.29406452179 1.86966776848
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.058119 -0.995134 0.079560 }
+        <Binormal> { -0.829442 -0.003790 0.558511 }
+      }
+      <Normal> { 0.555864 0.092074 0.826136 }
+    }
+    <Vertex> 742 {
+      -13.2726078033 -2.29160046577 1.3915374279
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.087904 -0.985082 0.147938 }
+        <Binormal> { -0.828020 0.007189 0.539878 }
+      }
+      <Normal> { 0.519608 0.318766 0.792688 }
+    }
+    <Vertex> 743 {
+      -16.3443870544 -2.29496955872 1.98089694977
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.070511 -0.987726 0.139378 }
+        <Binormal> { -0.976406 -0.042715 0.191256 }
+      }
+      <Normal> { 0.176580 0.238868 0.954833 }
+    }
+    <Vertex> 744 {
+      -16.1300487518 -5.29743289948 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.039314 -0.998221 0.044824 }
+        <Binormal> { -0.993635 -0.034324 0.107099 }
+      }
+      <Normal> { 0.105350 0.049257 0.993194 }
+    }
+    <Vertex> 745 {
+      -16.3443870544 -2.29496955872 1.98089694977
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.070511 -0.987726 0.139378 }
+        <Binormal> { -0.976406 -0.042715 0.191256 }
+      }
+      <Normal> { 0.176580 0.238868 0.954833 }
+    }
+    <Vertex> 746 {
+      -20.510684967 -2.22094368935 2.65044903755
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.062420 -0.997630 0.028957 }
+        <Binormal> { -0.924365 -0.048515 0.321105 }
+      }
+      <Normal> { 0.331431 -0.152837 0.930998 }
+    }
+    <Vertex> 747 {
+      -20.3417568207 -5.34405708313 2.40457344055
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.027655 -0.998807 -0.040252 }
+        <Binormal> { -0.998864 -0.029153 0.037123 }
+      }
+      <Normal> { 0.038087 -0.033235 0.998718 }
+    }
+    <Vertex> 748 {
+      -16.1300487518 -5.29743289948 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.039314 -0.998221 0.044824 }
+        <Binormal> { -0.993635 -0.034324 0.107099 }
+      }
+      <Normal> { 0.105350 0.049257 0.993194 }
+    }
+    <Vertex> 749 {
+      -20.3417568207 -5.34405708313 2.40457344055
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.027655 -0.998807 -0.040252 }
+        <Binormal> { -0.998864 -0.029153 0.037123 }
+      }
+      <Normal> { 0.038087 -0.033235 0.998718 }
+    }
+    <Vertex> 750 {
+      -20.3417549133 -8.32204055786 2.40457344055
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -1.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 751 {
+      -16.1300487518 -8.27541637421 2.40457344055
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.996612 -0.000000 0.082186 }
+      }
+      <Normal> { 0.082186 0.000732 0.996612 }
+    }
+    <Vertex> 752 {
+      -16.1300449371 20.1222476959 -0.113579511642
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.032989 -0.999449 0.003788 }
+        <Binormal> { -0.994019 0.033203 0.103742 }
+      }
+      <Normal> { 0.103793 -0.000183 0.994568 }
+    }
+    <Vertex> 753 {
+      -16.3443870544 16.1856765747 -0.222486764193
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.054348 -0.998140 -0.027614 }
+        <Binormal> { -0.982490 0.048527 0.179592 }
+      }
+      <Normal> { 0.178411 -0.027833 0.983551 }
+    }
+    <Vertex> 754 {
+      -13.2726049423 16.1890468597 -0.81184643507
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.067863 -0.997099 -0.034482 }
+        <Binormal> { -0.840991 0.038616 0.538497 }
+      }
+      <Normal> { 0.533219 -0.100558 0.839961 }
+    }
+    <Vertex> 755 {
+      -12.9510936737 20.125617981 -0.648485422134
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.045878 -0.998675 -0.023311 }
+        <Binormal> { -0.828410 0.024999 0.559371 }
+      }
+      <Normal> { 0.558580 -0.033357 0.828730 }
+    }
+    <Vertex> 756 {
+      -16.1300449371 20.1222476959 -0.113579511642
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.032989 -0.999449 0.003788 }
+        <Binormal> { -0.994019 0.033203 0.103742 }
+      }
+      <Normal> { 0.103793 -0.000183 0.994568 }
+    }
+    <Vertex> 757 {
+      -12.9510936737 20.125617981 -0.648485422134
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.045878 -0.998675 -0.023311 }
+        <Binormal> { -0.828410 0.024999 0.559371 }
+      }
+      <Normal> { 0.558580 -0.033357 0.828730 }
+    }
+    <Vertex> 758 {
+      -12.9510936737 23.1877994537 -0.648485422134
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.825526 -0.000000 0.564318 }
+      }
+      <Normal> { 0.564318 0.000000 0.825526 }
+    }
+    <Vertex> 759 {
+      -16.1300449371 23.184431076 -0.113579511642
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.996521 -0.000000 0.083254 }
+      }
+      <Normal> { 0.083254 0.000000 0.996521 }
+    }
+    <Vertex> 760 {
+      -16.1300449371 20.1222476959 -0.113579511642
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.032989 -0.999449 0.003788 }
+        <Binormal> { -0.994019 0.033203 0.103742 }
+      }
+      <Normal> { 0.103793 -0.000183 0.994568 }
+    }
+    <Vertex> 761 {
+      -16.1300449371 23.184431076 -0.113579511642
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.996521 -0.000000 0.083254 }
+      }
+      <Normal> { 0.083254 0.000000 0.996521 }
+    }
+    <Vertex> 762 {
+      -20.3417510986 23.1378059387 -0.113579511642
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -1.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 763 {
+      -20.3417510986 20.0756244659 -0.113579511642
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.024591 -0.997184 0.070851 }
+        <Binormal> { -0.999044 0.026946 0.032493 }
+      }
+      <Normal> { 0.034059 0.059755 0.997620 }
+    }
+    <Vertex> 764 {
+      -16.1300449371 20.1222476959 -0.113579511642
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.032989 -0.999449 0.003788 }
+        <Binormal> { -0.994019 0.033203 0.103742 }
+      }
+      <Normal> { 0.103793 -0.000183 0.994568 }
+    }
+    <Vertex> 765 {
+      -20.3417510986 20.0756244659 -0.113579511642
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.024591 -0.997184 0.070851 }
+        <Binormal> { -0.999044 0.026946 0.032493 }
+      }
+      <Normal> { 0.034059 0.059755 0.997620 }
+    }
+    <Vertex> 766 {
+      -20.5106811523 16.2876834869 0.37312862277
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.049498 -0.997582 0.048791 }
+        <Binormal> { -0.920560 0.061436 0.322236 }
+      }
+      <Normal> { 0.334941 0.240303 0.911039 }
+    }
+    <Vertex> 767 {
+      -16.3443870544 16.1856765747 -0.222486764193
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.054348 -0.998140 -0.027614 }
+        <Binormal> { -0.982490 0.048527 0.179592 }
+      }
+      <Normal> { 0.178411 -0.027833 0.983551 }
+    }
+    <Vertex> 768 {
+      -16.1300487518 -11.2966918945 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000067 -0.999998 0.001848 }
+        <Binormal> { -0.996859 0.000080 0.079073 }
+      }
+      <Normal> { 0.079073 0.002167 0.996857 }
+    }
+    <Vertex> 769 {
+      -16.1690883636 -14.3227319717 2.40457344055
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.012900 -0.999917 0.000000 }
+        <Binormal> { -0.997414 0.012868 0.070023 }
+      }
+      <Normal> { 0.070101 0.005585 0.997497 }
+    }
+    <Vertex> 770 {
+      -12.8338851929 -14.2589521408 1.91424322128
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.819838 -0.483251 -0.307139 }
+        <Binormal> { -0.424440 -0.871173 0.237754 }
+      }
+      <Normal> { 0.436537 0.032685 0.899075 }
+    }
+    <Vertex> 771 {
+      -12.8400325775 -11.2933235168 1.86966776848
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.014938 -0.999861 0.007445 }
+        <Binormal> { -0.865837 -0.009214 0.499875 }
+      }
+      <Normal> { 0.499466 0.032075 0.865719 }
+    }
+    <Vertex> 772 {
+      -16.1300487518 -11.2966918945 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000067 -0.999998 0.001848 }
+        <Binormal> { -0.996859 0.000080 0.079073 }
+      }
+      <Normal> { 0.079073 0.002167 0.996857 }
+    }
+    <Vertex> 773 {
+      -12.8400325775 -11.2933235168 1.86966776848
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.014938 -0.999861 0.007445 }
+        <Binormal> { -0.865837 -0.009214 0.499875 }
+      }
+      <Normal> { 0.499466 0.032075 0.865719 }
+    }
+    <Vertex> 774 {
+      -12.9233322144 -8.2720489502 1.86966729164
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.013784 -0.999905 0.000000 }
+        <Binormal> { -0.840491 -0.011587 0.541489 }
+      }
+      <Normal> { 0.541246 0.021393 0.840571 }
+    }
+    <Vertex> 775 {
+      -16.1300487518 -8.27541637421 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.996612 -0.000000 0.082186 }
+      }
+      <Normal> { 0.082186 0.000732 0.996612 }
+    }
+    <Vertex> 776 {
+      -16.1300487518 -11.2966918945 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000067 -0.999998 0.001848 }
+        <Binormal> { -0.996859 0.000080 0.079073 }
+      }
+      <Normal> { 0.079073 0.002167 0.996857 }
+    }
+    <Vertex> 777 {
+      -16.1300487518 -8.27541637421 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.996612 -0.000000 0.082186 }
+      }
+      <Normal> { 0.082186 0.000732 0.996612 }
+    }
+    <Vertex> 778 {
+      -20.3417549133 -8.32204055786 2.40457344055
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.000000 -1.000000 0.000000 }
+        <Binormal> { -1.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 779 {
+      -20.3417568207 -11.3433151245 2.40457344055
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.001615 -0.999999 0.000000 }
+        <Binormal> { -0.999999 0.001615 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 780 {
+      -16.1300487518 -11.2966918945 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000067 -0.999998 0.001848 }
+        <Binormal> { -0.996859 0.000080 0.079073 }
+      }
+      <Normal> { 0.079073 0.002167 0.996857 }
+    }
+    <Vertex> 781 {
+      -20.3417568207 -11.3433151245 2.40457344055
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.001615 -0.999999 0.000000 }
+        <Binormal> { -0.999999 0.001615 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 782 {
+      -20.3515148163 -14.3635282516 2.40457344055
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.008070 -0.999967 0.000000 }
+        <Binormal> { -0.999967 0.008070 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 783 {
+      -16.1690883636 -14.3227319717 2.40457344055
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.012900 -0.999917 0.000000 }
+        <Binormal> { -0.997414 0.012868 0.070023 }
+      }
+      <Normal> { 0.070101 0.005585 0.997497 }
+    }
+    <Vertex> 784 {
+      -24.3980464935 -5.35959863663 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.015271 -0.997285 -0.072036 }
+        <Binormal> { -0.997251 -0.020381 0.070752 }
+      }
+      <Normal> { 0.072115 -0.076418 0.994446 }
+    }
+    <Vertex> 785 {
+      -24.3980464935 -8.3375825882 2.40457344055
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 -0.000000 }
+        <Binormal> { -0.997864 -0.000000 0.054903 }
+      }
+      <Normal> { 0.054903 -0.035218 0.997864 }
+    }
+    <Vertex> 786 {
+      -20.3417549133 -8.32204055786 2.40457344055
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -1.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 787 {
+      -20.3417568207 -5.34405708313 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.027655 -0.998807 -0.040252 }
+        <Binormal> { -0.998864 -0.029153 0.037123 }
+      }
+      <Normal> { 0.038087 -0.033235 0.998718 }
+    }
+    <Vertex> 788 {
+      -24.3980464935 -5.35959863663 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.015271 -0.997285 -0.072036 }
+        <Binormal> { -0.997251 -0.020381 0.070752 }
+      }
+      <Normal> { 0.072115 -0.076418 0.994446 }
+    }
+    <Vertex> 789 {
+      -20.3417568207 -5.34405708313 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.027655 -0.998807 -0.040252 }
+        <Binormal> { -0.998864 -0.029153 0.037123 }
+      }
+      <Normal> { 0.038087 -0.033235 0.998718 }
+    }
+    <Vertex> 790 {
+      -20.510684967 -2.22094368935 2.65044903755
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.674962 -0.737510 -0.022482 }
+        <Binormal> { -0.690056 0.620937 0.347593 }
+      }
+      <Normal> { 0.331431 -0.152837 0.930998 }
+    }
+    <Vertex> 791 {
+      -24.4813747406 -2.89721417427 3.1219599247
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.032473 -0.959578 -0.279562 }
+        <Binormal> { -0.959905 -0.045578 0.044945 }
+      }
+      <Normal> { 0.064730 -0.528703 0.846309 }
+    }
+    <Vertex> 792 {
+      -24.3980464935 -5.35959863663 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.015271 -0.997285 -0.072036 }
+        <Binormal> { -0.997251 -0.020381 0.070752 }
+      }
+      <Normal> { 0.072115 -0.076418 0.994446 }
+    }
+    <Vertex> 793 {
+      -24.4813747406 -2.89721417427 3.1219599247
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.032473 -0.959578 -0.279562 }
+        <Binormal> { -0.959905 -0.045578 0.044945 }
+      }
+      <Normal> { 0.064730 -0.528703 0.846309 }
+    }
+    <Vertex> 794 {
+      -28.3173828125 -2.16770863533 2.83676719666
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.192174 -0.978146 -0.079366 }
+        <Binormal> { -0.939053 -0.187390 0.035693 }
+      }
+      <Normal> { -0.005158 0.211982 0.977233 }
+    }
+    <Vertex> 795 {
+      -27.3542079926 -5.03190994263 3.1219599247
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.002534 -0.999986 0.004555 }
+        <Binormal> { -0.789947 0.000762 0.606671 }
+      }
+      <Normal> { 0.606891 -0.083560 0.790338 }
+    }
+    <Vertex> 796 {
+      -24.3980464935 -5.35959863663 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.015271 -0.997285 -0.072036 }
+        <Binormal> { -0.997251 -0.020381 0.070752 }
+      }
+      <Normal> { 0.072115 -0.076418 0.994446 }
+    }
+    <Vertex> 797 {
+      -27.3542079926 -5.03190994263 3.1219599247
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.002534 -0.999986 0.004555 }
+        <Binormal> { -0.789947 0.000762 0.606671 }
+      }
+      <Normal> { 0.606891 -0.083560 0.790338 }
+    }
+    <Vertex> 798 {
+      -28.3024024963 -8.08044242859 2.86370134354
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.155286 -0.986964 -0.042295 }
+        <Binormal> { -0.913082 0.129994 0.318934 }
+      }
+      <Normal> { 0.275399 -0.303476 0.912137 }
+    }
+    <Vertex> 799 {
+      -24.3980464935 -8.3375825882 2.40457344055
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 -0.000000 }
+        <Binormal> { -0.997864 -0.000000 0.054903 }
+      }
+      <Normal> { 0.054903 -0.035218 0.997864 }
+    }
+    <Vertex> 800 {
+      -24.3980445862 20.0600833893 -0.113579511642
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.014239 -0.994674 0.102081 }
+        <Binormal> { -0.999883 0.014132 -0.001768 }
+      }
+      <Normal> { -0.000366 0.098605 0.995117 }
+    }
+    <Vertex> 801 {
+      -24.4813747406 17.4667816162 0.674128890038
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.030731 -0.956382 0.290498 }
+        <Binormal> { -0.971875 0.025176 -0.019927 }
+      }
+      <Normal> { -0.004578 0.505966 0.862514 }
+    }
+    <Vertex> 802 {
+      -20.5106811523 16.2876834869 0.37312862277
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.574698 -0.813638 0.087834 }
+        <Binormal> { -0.762362 -0.494153 0.410622 }
+      }
+      <Normal> { 0.334941 0.240303 0.911039 }
+    }
+    <Vertex> 803 {
+      -20.3417510986 20.0756244659 -0.113579511642
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.024591 -0.997184 0.070851 }
+        <Binormal> { -0.999044 0.026946 0.032493 }
+      }
+      <Normal> { 0.034059 0.059755 0.997620 }
+    }
+    <Vertex> 804 {
+      -24.3980445862 20.0600833893 -0.113579511642
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.014239 -0.994674 0.102081 }
+        <Binormal> { -0.999883 0.014132 -0.001768 }
+      }
+      <Normal> { -0.000366 0.098605 0.995117 }
+    }
+    <Vertex> 805 {
+      -20.3417510986 20.0756244659 -0.113579511642
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.024591 -0.997184 0.070851 }
+        <Binormal> { -0.999044 0.026946 0.032493 }
+      }
+      <Normal> { 0.034059 0.059755 0.997620 }
+    }
+    <Vertex> 806 {
+      -20.3417510986 23.1378059387 -0.113579511642
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -1.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 807 {
+      -24.3980445862 23.1222648621 -0.113579511642
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -1.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 808 {
+      -24.3980445862 20.0600833893 -0.113579511642
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.014239 -0.994674 0.102081 }
+        <Binormal> { -0.999883 0.014132 -0.001768 }
+      }
+      <Normal> { -0.000366 0.098605 0.995117 }
+    }
+    <Vertex> 809 {
+      -24.3980445862 23.1222648621 -0.113579511642
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -1.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 810 {
+      -28.3144645691 23.1222648621 -0.113579511642
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -1.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 811 {
+      -28.3144645691 20.0600833893 -0.113579511642
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.003261 -0.997293 0.073456 }
+        <Binormal> { -0.999397 0.000786 -0.033696 }
+      }
+      <Normal> { -0.033570 0.066347 0.997223 }
+    }
+    <Vertex> 812 {
+      -24.3980445862 20.0600833893 -0.113579511642
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.014239 -0.994674 0.102081 }
+        <Binormal> { -0.999883 0.014132 -0.001768 }
+      }
+      <Normal> { -0.000366 0.098605 0.995117 }
+    }
+    <Vertex> 813 {
+      -28.3144645691 20.0600833893 -0.113579511642
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.003261 -0.997293 0.073456 }
+        <Binormal> { -0.999397 0.000786 -0.033696 }
+      }
+      <Normal> { -0.033570 0.066347 0.997223 }
+    }
+    <Vertex> 814 {
+      -28.3368453979 16.2777366638 0.390553623438
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.016248 -0.979954 0.198559 }
+        <Binormal> { -0.932333 -0.054779 -0.346643 }
+      }
+      <Normal> { -0.349162 0.275735 0.895535 }
+    }
+    <Vertex> 815 {
+      -24.4813747406 17.4667816162 0.674128890038
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.030731 -0.956382 0.290498 }
+        <Binormal> { -0.971875 0.025176 -0.019927 }
+      }
+      <Normal> { -0.004578 0.505966 0.862514 }
+    }
+    <Vertex> 816 {
+      -24.3980464935 -11.3588571548 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.000894 -0.999823 -0.018800 }
+        <Binormal> { -0.999890 0.000630 0.014022 }
+      }
+      <Normal> { 0.014008 -0.018159 0.999725 }
+    }
+    <Vertex> 817 {
+      -24.3980464935 -14.3771276474 2.40457344055
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -1.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 818 {
+      -20.3515148163 -14.3635282516 2.40457344055
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.801116 -0.598509 0.000000 }
+        <Binormal> { -0.598509 -0.801116 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 819 {
+      -20.3417568207 -11.3433151245 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.001615 -0.999999 0.000000 }
+        <Binormal> { -0.999999 0.001615 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 820 {
+      -24.3980464935 -11.3588571548 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.000894 -0.999823 -0.018800 }
+        <Binormal> { -0.999890 0.000630 0.014022 }
+      }
+      <Normal> { 0.014008 -0.018159 0.999725 }
+    }
+    <Vertex> 821 {
+      -20.3417568207 -11.3433151245 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.001615 -0.999999 0.000000 }
+        <Binormal> { -0.999999 0.001615 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 822 {
+      -20.3417549133 -8.32204055786 2.40457344055
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.000000 -1.000000 0.000000 }
+        <Binormal> { -1.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 823 {
+      -24.3980464935 -8.3375825882 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.997864 -0.000000 0.054903 }
+      }
+      <Normal> { 0.054903 -0.035218 0.997864 }
+    }
+    <Vertex> 824 {
+      -24.3980464935 -11.3588571548 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.000894 -0.999823 -0.018800 }
+        <Binormal> { -0.999890 0.000630 0.014022 }
+      }
+      <Normal> { 0.014008 -0.018159 0.999725 }
+    }
+    <Vertex> 825 {
+      -24.3980464935 -8.3375825882 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.997864 -0.000000 0.054903 }
+      }
+      <Normal> { 0.054903 -0.035218 0.997864 }
+    }
+    <Vertex> 826 {
+      -28.3024024963 -8.08044242859 2.86370134354
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.001910 -0.997353 -0.072688 }
+        <Binormal> { -0.931782 -0.018276 0.275250 }
+      }
+      <Normal> { 0.275399 -0.303476 0.912137 }
+    }
+    <Vertex> 827 {
+      -28.3144645691 -11.3588571548 2.40457344055
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.001911 -0.997350 -0.072723 }
+        <Binormal> { -0.999633 -0.000011 0.026426 }
+      }
+      <Normal> { 0.026368 -0.066958 0.997406 }
+    }
+    <Vertex> 828 {
+      -24.3980464935 -11.3588571548 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.000894 -0.999823 -0.018800 }
+        <Binormal> { -0.999890 0.000630 0.014022 }
+      }
+      <Normal> { 0.014008 -0.018159 0.999725 }
+    }
+    <Vertex> 829 {
+      -28.3144645691 -11.3588571548 2.40457344055
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.001911 -0.997350 -0.072723 }
+        <Binormal> { -0.999633 -0.000011 0.026426 }
+      }
+      <Normal> { 0.026368 -0.066958 0.997406 }
+    }
+    <Vertex> 830 {
+      -28.3144683838 -14.3771276474 2.40457344055
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.000001 -1.000000 0.000000 }
+        <Binormal> { -1.000000 0.000001 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 831 {
+      -24.3980464935 -14.3771276474 2.40457344055
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -1.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 832 {
+      -32.1065559387 0.737578451633 1.14549672604
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.044226 -0.945488 0.322640 }
+        <Binormal> { -0.991851 -0.079537 -0.097123 }
+      }
+      <Normal> { -0.118442 0.336070 0.934355 }
+    }
+    <Vertex> 833 {
+      -31.9746170044 -1.37291991711 2.8071911335
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.049059 -0.784749 0.617869 }
+        <Binormal> { -0.926915 -0.091918 -0.043146 }
+      }
+      <Normal> { -0.108371 0.854030 0.508744 }
+    }
+    <Vertex> 834 {
+      -28.3173828125 -2.16770863533 2.83676719666
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.115110 -0.948330 0.295668 }
+        <Binormal> { -0.989416 -0.114015 0.019510 }
+      }
+      <Normal> { -0.005158 0.211982 0.977233 }
+    }
+    <Vertex> 835 {
+      -29.281332016 0.894997596741 1.89804446697
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.733451 -0.000000 -0.650410 }
+      }
+      <Normal> { -0.650410 0.197424 0.733451 }
+    }
+    <Vertex> 836 {
+      -32.1065559387 0.737578451633 1.14549672604
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.044226 -0.945488 0.322640 }
+        <Binormal> { -0.991851 -0.079537 -0.097123 }
+      }
+      <Normal> { -0.118442 0.336070 0.934355 }
+    }
+    <Vertex> 837 {
+      -29.281332016 0.894997596741 1.89804446697
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.733451 -0.000000 -0.650410 }
+      }
+      <Normal> { -0.650410 0.197424 0.733451 }
+    }
+    <Vertex> 838 {
+      -29.2813358307 4.77898168564 0.980107784271
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.000003 0.906077 0.423114 }
+        <Binormal> { 0.631314 -0.277395 0.594023 }
+      }
+      <Normal> { -0.655599 0.108188 0.747276 }
+    }
+    <Vertex> 839 {
+      -32.1065559387 4.73314237595 0.201189562678
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 -0.973190 0.230003 }
+        <Binormal> { -0.987098 -0.030787 -0.130266 }
+      }
+      <Normal> { -0.133854 0.141820 0.980773 }
+    }
+    <Vertex> 840 {
+      -32.1065559387 0.737578451633 1.14549672604
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.044226 -0.945488 0.322640 }
+        <Binormal> { -0.991851 -0.079537 -0.097123 }
+      }
+      <Normal> { -0.118442 0.336070 0.934355 }
+    }
+    <Vertex> 841 {
+      -32.1065559387 4.73314237595 0.201189562678
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 -0.973190 0.230003 }
+        <Binormal> { -0.987098 -0.030787 -0.130266 }
+      }
+      <Normal> { -0.133854 0.141820 0.980773 }
+    }
+    <Vertex> 842 {
+      -35.836479187 4.73314237595 0.201189562678
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.000000 -0.973190 0.230003 }
+        <Binormal> { -0.996065 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.143101 0.989685 }
+    }
+    <Vertex> 843 {
+      -35.836479187 0.737578451633 1.14549672604
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 -0.966307 0.257392 }
+        <Binormal> { -0.993788 -0.018295 -0.068683 }
+      }
+      <Normal> { -0.071078 0.338206 0.938353 }
+    }
+    <Vertex> 844 {
+      -32.1065559387 0.737578451633 1.14549672604
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.044226 -0.945488 0.322640 }
+        <Binormal> { -0.991851 -0.079537 -0.097123 }
+      }
+      <Normal> { -0.118442 0.336070 0.934355 }
+    }
+    <Vertex> 845 {
+      -35.836479187 0.737578451633 1.14549672604
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 -0.966307 0.257392 }
+        <Binormal> { -0.993788 -0.018295 -0.068683 }
+      }
+      <Normal> { -0.071078 0.338206 0.938353 }
+    }
+    <Vertex> 846 {
+      -35.836479187 -2.35713481903 2.08980441093
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.022660 -0.893964 0.447565 }
+        <Binormal> { -0.771176 -0.253119 -0.466535 }
+      }
+      <Normal> { -0.538316 0.648732 0.537858 }
+    }
+    <Vertex> 847 {
+      -31.9746170044 -1.37291991711 2.8071911335
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.049059 -0.784749 0.617869 }
+        <Binormal> { -0.926915 -0.091918 -0.043146 }
+      }
+      <Normal> { -0.108371 0.854030 0.508744 }
+    }
+    <Vertex> 848 {
+      -32.1065559387 10.4381599426 -0.113579511642
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.020665 -0.999223 0.033560 }
+        <Binormal> { -0.993060 0.016637 -0.116130 }
+      }
+      <Normal> { -0.115452 0.037172 0.992584 }
+    }
+    <Vertex> 849 {
+      -32.1065559387 4.73314237595 0.201189562678
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 -0.998481 0.055090 }
+        <Binormal> { -0.987097 -0.007374 -0.133651 }
+      }
+      <Normal> { -0.133854 0.141820 0.980773 }
+    }
+    <Vertex> 850 {
+      -29.2813358307 4.77898168564 0.980107784271
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.000002 -0.958462 -0.285220 }
+        <Binormal> { -0.685378 0.186991 -0.628367 }
+      }
+      <Normal> { -0.655599 0.108188 0.747276 }
+    }
+    <Vertex> 851 {
+      -29.281332016 10.3246803284 0.674128890038
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 0.970143 0.242536 }
+        <Binormal> { 0.729146 -0.153144 0.612575 }
+      }
+      <Normal> { -0.631428 0.079073 0.771355 }
+    }
+    <Vertex> 852 {
+      -32.1065559387 10.4381599426 -0.113579511642
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.020665 -0.999223 0.033560 }
+        <Binormal> { -0.993060 0.016637 -0.116130 }
+      }
+      <Normal> { -0.115452 0.037172 0.992584 }
+    }
+    <Vertex> 853 {
+      -29.281332016 10.3246803284 0.674128890038
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 0.970143 0.242536 }
+        <Binormal> { 0.729146 -0.153144 0.612575 }
+      }
+      <Normal> { -0.631428 0.079073 0.771355 }
+    }
+    <Vertex> 854 {
+      -28.3368453979 16.2777366638 0.390553623438
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.525240 -0.849267 0.053562 }
+        <Binormal> { -0.775317 -0.489073 -0.151705 }
+      }
+      <Normal> { -0.349162 0.275735 0.895535 }
+    }
+    <Vertex> 855 {
+      -32.1065559387 16.1235122681 -0.113579511642
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.997497 -0.000000 -0.065218 }
+      }
+      <Normal> { -0.065218 0.026246 0.997497 }
+    }
+    <Vertex> 856 {
+      -32.1065559387 10.4381599426 -0.113579511642
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.020665 -0.999223 0.033560 }
+        <Binormal> { -0.993060 0.016637 -0.116130 }
+      }
+      <Normal> { -0.115452 0.037172 0.992584 }
+    }
+    <Vertex> 857 {
+      -32.1065559387 16.1235122681 -0.113579511642
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.997497 -0.000000 -0.065218 }
+      }
+      <Normal> { -0.065218 0.026246 0.997497 }
+    }
+    <Vertex> 858 {
+      -35.836479187 16.1235122681 -0.113579511642
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -1.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 859 {
+      -35.836479187 10.4381599426 -0.113579511642
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 -0.999618 0.027624 }
+        <Binormal> { -0.999982 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.027528 0.999603 }
+    }
+    <Vertex> 860 {
+      -32.1065559387 10.4381599426 -0.113579511642
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.020665 -0.999223 0.033560 }
+        <Binormal> { -0.993060 0.016637 -0.116130 }
+      }
+      <Normal> { -0.115452 0.037172 0.992584 }
+    }
+    <Vertex> 861 {
+      -35.836479187 10.4381599426 -0.113579511642
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 -0.999618 0.027624 }
+        <Binormal> { -0.999982 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.027528 0.999603 }
+    }
+    <Vertex> 862 {
+      -35.836479187 4.73314237595 0.201189562678
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.000000 -0.998481 0.055090 }
+        <Binormal> { -0.996065 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.143101 0.989685 }
+    }
+    <Vertex> 863 {
+      -32.1065559387 4.73314237595 0.201189562678
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 -0.998481 0.055090 }
+        <Binormal> { -0.987097 -0.007374 -0.133651 }
+      }
+      <Normal> { -0.133854 0.141820 0.980773 }
+    }
+    <Vertex> 864 {
+      -32.1065559387 20.0600833893 -0.113579511642
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.000804 -0.999836 0.018105 }
+        <Binormal> { -0.999826 0.000497 -0.016948 }
+      }
+      <Normal> { -0.016938 0.016297 0.999695 }
+    }
+    <Vertex> 865 {
+      -32.1065559387 16.1235122681 -0.113579511642
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.997497 -0.000000 -0.065218 }
+      }
+      <Normal> { -0.065218 0.026246 0.997497 }
+    }
+    <Vertex> 866 {
+      -28.3368453979 16.2777366638 0.390553623438
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.568392 0.819823 0.069429 }
+        <Binormal> { 0.715037 -0.533257 0.442977 }
+      }
+      <Normal> { -0.349162 0.275735 0.895535 }
+    }
+    <Vertex> 867 {
+      -28.3144645691 20.0600833893 -0.113579511642
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.003261 -0.997293 0.073456 }
+        <Binormal> { -0.999397 0.000786 -0.033696 }
+      }
+      <Normal> { -0.033570 0.066347 0.997223 }
+    }
+    <Vertex> 868 {
+      -32.1065559387 20.0600833893 -0.113579511642
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.000804 -0.999836 0.018105 }
+        <Binormal> { -0.999826 0.000497 -0.016948 }
+      }
+      <Normal> { -0.016938 0.016297 0.999695 }
+    }
+    <Vertex> 869 {
+      -28.3144645691 20.0600833893 -0.113579511642
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.003261 -0.997293 0.073456 }
+        <Binormal> { -0.999397 0.000786 -0.033696 }
+      }
+      <Normal> { -0.033570 0.066347 0.997223 }
+    }
+    <Vertex> 870 {
+      -28.3144645691 23.1222648621 -0.113579511642
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -1.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 871 {
+      -32.1065559387 23.1222648621 -0.113579511642
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -1.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 872 {
+      -32.1065559387 20.0600833893 -0.113579511642
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.000804 -0.999836 0.018105 }
+        <Binormal> { -0.999826 0.000497 -0.016948 }
+      }
+      <Normal> { -0.016938 0.016297 0.999695 }
+    }
+    <Vertex> 873 {
+      -32.1065559387 23.1222648621 -0.113579511642
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -1.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 874 {
+      -34.9040031433 22.3567199707 -0.113579511642
+      <UV>  {
+        0.875000 0.875000
+        <Tangent> { 0.000001 -1.000000 0.000000 }
+        <Binormal> { -1.000000 -0.000001 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 875 {
+      -35.836479187 20.0600852966 -0.113579511642
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000001 -1.000000 0.000000 }
+        <Binormal> { -1.000000 -0.000001 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 876 {
+      -32.1065559387 20.0600833893 -0.113579511642
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.000804 -0.999836 0.018105 }
+        <Binormal> { -0.999826 0.000497 -0.016948 }
+      }
+      <Normal> { -0.016938 0.016297 0.999695 }
+    }
+    <Vertex> 877 {
+      -35.836479187 20.0600852966 -0.113579511642
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000001 -1.000000 0.000000 }
+        <Binormal> { -1.000000 -0.000001 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 878 {
+      -35.836479187 16.1235122681 -0.113579511642
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -1.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 879 {
+      -32.1065559387 16.1235122681 -0.113579511642
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.997497 -0.000000 -0.065218 }
+      }
+      <Normal> { -0.065218 0.026246 0.997497 }
+    }
+    <Vertex> 880 {
+      -32.1065559387 -11.3588571548 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.011577 -0.996771 -0.079460 }
+        <Binormal> { -0.999854 0.012527 -0.011462 }
+      }
+      <Normal> { -0.012421 -0.079379 0.996765 }
+    }
+    <Vertex> 881 {
+      -32.1065559387 -14.3771276474 2.40457344055
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -1.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 882 {
+      -28.3144683838 -14.3771276474 2.40457344055
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.782416 -0.622756 0.000000 }
+        <Binormal> { -0.622756 -0.782416 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 883 {
+      -28.3144645691 -11.3588571548 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.001911 -0.997350 -0.072723 }
+        <Binormal> { -0.999633 -0.000011 0.026426 }
+      }
+      <Normal> { 0.026368 -0.066958 0.997406 }
+    }
+    <Vertex> 884 {
+      -32.1065559387 -11.3588571548 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.011577 -0.996771 -0.079460 }
+        <Binormal> { -0.999854 0.012527 -0.011462 }
+      }
+      <Normal> { -0.012421 -0.079379 0.996765 }
+    }
+    <Vertex> 885 {
+      -28.3144645691 -11.3588571548 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.001911 -0.997350 -0.072723 }
+        <Binormal> { -0.999633 -0.000011 0.026426 }
+      }
+      <Normal> { 0.026368 -0.066958 0.997406 }
+    }
+    <Vertex> 886 {
+      -28.3024024963 -8.08044242859 2.86370134354
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.654880 -0.749683 -0.095434 }
+        <Binormal> { -0.712776 0.571058 0.405202 }
+      }
+      <Normal> { 0.275399 -0.303476 0.912137 }
+    }
+    <Vertex> 887 {
+      -31.9746170044 -8.66641998291 3.1219599247
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.047299 -0.965207 -0.257175 }
+        <Binormal> { -0.973539 0.046035 0.006276 }
+      }
+      <Normal> { -0.016358 -0.466506 0.884335 }
+    }
+    <Vertex> 888 {
+      -32.1065559387 -11.3588571548 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.011577 -0.996771 -0.079460 }
+        <Binormal> { -0.999854 0.012527 -0.011462 }
+      }
+      <Normal> { -0.012421 -0.079379 0.996765 }
+    }
+    <Vertex> 889 {
+      -31.9746170044 -8.66641998291 3.1219599247
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.047299 -0.965207 -0.257175 }
+        <Binormal> { -0.973539 0.046035 0.006276 }
+      }
+      <Normal> { -0.016358 -0.466506 0.884335 }
+    }
+    <Vertex> 890 {
+      -35.836479187 -8.3375825882 2.40457344055
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.022906 -0.991950 -0.124544 }
+        <Binormal> { -0.862043 0.072795 -0.421239 }
+      }
+      <Normal> { -0.433149 -0.367718 0.822871 }
+    }
+    <Vertex> 891 {
+      -35.836479187 -11.3588571548 2.40457344055
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.996887 -0.000000 -0.049440 }
+      }
+      <Normal> { -0.049440 -0.061037 0.996887 }
+    }
+    <Vertex> 892 {
+      -32.1065559387 -11.3588571548 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.011577 -0.996771 -0.079460 }
+        <Binormal> { -0.999854 0.012527 -0.011462 }
+      }
+      <Normal> { -0.012421 -0.079379 0.996765 }
+    }
+    <Vertex> 893 {
+      -35.836479187 -11.3588571548 2.40457344055
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.996887 -0.000000 -0.049440 }
+      }
+      <Normal> { -0.049440 -0.061037 0.996887 }
+    }
+    <Vertex> 894 {
+      -35.836479187 -14.3771276474 2.40457344055
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -1.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 895 {
+      -32.1065559387 -14.3771276474 2.40457344055
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -1.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 896 {
+      -31.5788002014 -6.67494869232 5.27411985397
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.999723 -0.011503 -0.020539 }
+        <Binormal> { -0.023534 0.468329 0.883201 }
+      }
+      <Normal> { -0.002960 -0.883480 0.468398 }
+    }
+    <Vertex> 897 {
+      -34.0637626648 -6.01842212677 5.27411985397
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.966826 0.255435 -0.000000 }
+        <Binormal> { 0.112435 0.425566 0.772815 }
+      }
+      <Normal> { -0.639332 -0.630421 0.440168 }
+    }
+    <Vertex> 898 {
+      -35.836479187 -8.3375825882 2.40457344055
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.982055 0.152467 -0.111002 }
+        <Binormal> { 0.084643 0.856185 0.427160 }
+      }
+      <Normal> { -0.433149 -0.367718 0.822871 }
+    }
+    <Vertex> 899 {
+      -31.9746170044 -8.66641998291 3.1219599247
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.997570 -0.034047 -0.060792 }
+        <Binormal> { -0.058469 0.883180 0.464815 }
+      }
+      <Normal> { -0.016358 -0.466506 0.884335 }
+    }
+    <Vertex> 900 {
+      -31.5788002014 -6.67494869232 5.27411985397
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.999723 -0.011503 -0.020539 }
+        <Binormal> { -0.023534 0.468329 0.883201 }
+      }
+      <Normal> { -0.002960 -0.883480 0.468398 }
+    }
+    <Vertex> 901 {
+      -31.9746170044 -8.66641998291 3.1219599247
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.997570 -0.034047 -0.060792 }
+        <Binormal> { -0.058469 0.883180 0.464815 }
+      }
+      <Normal> { -0.016358 -0.466506 0.884335 }
+    }
+    <Vertex> 902 {
+      -28.3024024963 -8.08044242859 2.86370134354
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.654880 -0.749683 -0.095434 }
+        <Binormal> { -0.712776 0.571058 0.405202 }
+      }
+      <Normal> { 0.275399 -0.303476 0.912137 }
+    }
+    <Vertex> 903 {
+      -29.0938453674 -6.01842212677 5.27411985397
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.966826 -0.255436 0.000000 }
+        <Binormal> { -0.104959 0.397270 0.809697 }
+      }
+      <Normal> { 0.611835 -0.675832 0.410901 }
+    }
+    <Vertex> 904 {
+      -31.5788002014 -6.67494869232 5.27411985397
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.999723 -0.011503 -0.020539 }
+        <Binormal> { -0.023534 0.468329 0.883201 }
+      }
+      <Normal> { -0.002960 -0.883480 0.468398 }
+    }
+    <Vertex> 905 {
+      -29.0938453674 -6.01842212677 5.27411985397
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.966826 -0.255436 0.000000 }
+        <Binormal> { -0.104959 0.397270 0.809697 }
+      }
+      <Normal> { 0.611835 -0.675832 0.410901 }
+    }
+    <Vertex> 906 {
+      -29.0608310699 -5.40799951553 8.11392402649
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.966826 -0.255436 0.000000 }
+        <Binormal> { 0.013174 -0.049865 0.890904 }
+      }
+      <Normal> { 0.663839 -0.746086 -0.051576 }
+    }
+    <Vertex> 907 {
+      -31.4978637695 -6.05186367035 8.11392402649
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.126408 0.991943 }
+      }
+      <Normal> { 0.003876 -0.991943 -0.126408 }
+    }
+    <Vertex> 908 {
+      -31.5788002014 -6.67494869232 5.27411985397
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.999723 -0.011503 -0.020539 }
+        <Binormal> { -0.023534 0.468329 0.883201 }
+      }
+      <Normal> { -0.002960 -0.883480 0.468398 }
+    }
+    <Vertex> 909 {
+      -31.4978637695 -6.05186367035 8.11392402649
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.126408 0.991943 }
+      }
+      <Normal> { 0.003876 -0.991943 -0.126408 }
+    }
+    <Vertex> 910 {
+      -33.9348983765 -5.40799951553 8.11392402649
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.966826 0.255435 0.000000 }
+        <Binormal> { -0.050873 -0.192557 0.879328 }
+      }
+      <Normal> { -0.642781 -0.739677 -0.199164 }
+    }
+    <Vertex> 911 {
+      -34.0637626648 -6.01842212677 5.27411985397
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.966826 0.255435 -0.000000 }
+        <Binormal> { 0.112435 0.425566 0.772815 }
+      }
+      <Normal> { -0.639332 -0.630421 0.440168 }
+    }
+    <Vertex> 912 {
+      -34.8920822144 -4.04884386063 5.27411985397
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.999842 -0.017759 }
+        <Binormal> { 0.255718 0.017168 0.966582 }
+      }
+      <Normal> { -0.966735 0.009339 0.255593 }
+    }
+    <Vertex> 913 {
+      -34.0637626648 -2.07926511765 5.27411985397
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.387669 0.921799 -0.000000 }
+        <Binormal> { 0.060540 -0.025460 0.912851 }
+      }
+      <Normal> { -0.685263 0.725303 0.065676 }
+    }
+    <Vertex> 914 {
+      -35.836479187 -2.35713481903 2.08980441093
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.164011 0.984488 -0.062326 }
+        <Binormal> { 0.569947 -0.054664 0.636365 }
+      }
+      <Normal> { -0.538316 0.648732 0.537858 }
+    }
+    <Vertex> 915 {
+      -35.836479187 -5.35959863663 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 0.998618 -0.052560 }
+        <Binormal> { 0.437245 0.047267 0.898046 }
+      }
+      <Normal> { -0.899289 0.016266 0.436995 }
+    }
+    <Vertex> 916 {
+      -34.8920822144 -4.04884386063 5.27411985397
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.999842 -0.017759 }
+        <Binormal> { 0.255718 0.017168 0.966582 }
+      }
+      <Normal> { -0.966735 0.009339 0.255593 }
+    }
+    <Vertex> 917 {
+      -35.836479187 -5.35959863663 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 0.998618 -0.052560 }
+        <Binormal> { 0.437245 0.047267 0.898046 }
+      }
+      <Normal> { -0.899289 0.016266 0.436995 }
+    }
+    <Vertex> 918 {
+      -35.836479187 -8.3375825882 2.40457344055
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.165122 0.986273 0.000000 }
+        <Binormal> { 0.811575 0.135874 0.487922 }
+      }
+      <Normal> { -0.433149 -0.367718 0.822871 }
+    }
+    <Vertex> 919 {
+      -34.0637626648 -6.01842212677 5.27411985397
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.387669 0.921799 0.000000 }
+        <Binormal> { 0.405747 0.170640 0.833730 }
+      }
+      <Normal> { -0.639332 -0.630421 0.440168 }
+    }
+    <Vertex> 920 {
+      -34.8920822144 -4.04884386063 5.27411985397
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.999842 -0.017759 }
+        <Binormal> { 0.255718 0.017168 0.966582 }
+      }
+      <Normal> { -0.966735 0.009339 0.255593 }
+    }
+    <Vertex> 921 {
+      -34.0637626648 -6.01842212677 5.27411985397
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.387669 0.921799 0.000000 }
+        <Binormal> { 0.405747 0.170640 0.833730 }
+      }
+      <Normal> { -0.639332 -0.630421 0.440168 }
+    }
+    <Vertex> 922 {
+      -33.9348983765 -5.40799951553 8.11392402649
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.387668 0.921799 0.000000 }
+        <Binormal> { -0.183589 -0.077209 0.879264 }
+      }
+      <Normal> { -0.642781 -0.739677 -0.199164 }
+    }
+    <Vertex> 923 {
+      -34.7472381592 -3.47640657425 8.11392402649
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { -0.213172 -0.000000 0.976928 }
+      }
+      <Normal> { -0.976928 0.010285 -0.213172 }
+    }
+    <Vertex> 924 {
+      -34.8920822144 -4.04884386063 5.27411985397
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.999842 -0.017759 }
+        <Binormal> { 0.255718 0.017168 0.966582 }
+      }
+      <Normal> { -0.966735 0.009339 0.255593 }
+    }
+    <Vertex> 925 {
+      -34.7472381592 -3.47640657425 8.11392402649
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { -0.213172 -0.000000 0.976928 }
+      }
+      <Normal> { -0.976928 0.010285 -0.213172 }
+    }
+    <Vertex> 926 {
+      -33.9348983765 -1.54481327534 8.11392402649
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.387668 0.921799 0.000000 }
+        <Binormal> { -0.122346 0.051453 0.887005 }
+      }
+      <Normal> { -0.646199 0.751518 -0.132725 }
+    }
+    <Vertex> 927 {
+      -34.0637626648 -2.07926511765 5.27411985397
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.387669 0.921799 -0.000000 }
+        <Binormal> { 0.060540 -0.025460 0.912851 }
+      }
+      <Normal> { -0.685263 0.725303 0.065676 }
+    }
+    <Vertex> 928 {
+      -31.5788002014 -1.42273902893 5.27411985397
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.996950 0.077985 -0.002849 }
+        <Binormal> { -0.006665 0.121449 0.991889 }
+      }
+      <Normal> { -0.114170 0.985992 -0.121494 }
+    }
+    <Vertex> 929 {
+      -28.2287120819 -1.39542424679 5.08771419525
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.364010 0.135039 -0.921554 }
+        <Binormal> { 0.336938 0.470263 -0.064179 }
+      }
+      <Normal> { -0.128727 0.224067 0.966002 }
+    }
+    <Vertex> 930 {
+      -28.3173828125 -2.16770863533 2.83676719666
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.115110 -0.948330 0.295668 }
+        <Binormal> { -0.989416 -0.114015 0.019510 }
+      }
+      <Normal> { -0.005158 0.211982 0.977233 }
+    }
+    <Vertex> 931 {
+      -31.9746170044 -1.37291991711 2.8071911335
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.994789 0.025061 0.098824 }
+        <Binormal> { -0.071649 -0.516802 0.852296 }
+      }
+      <Normal> { -0.108371 0.854030 0.508744 }
+    }
+    <Vertex> 932 {
+      -31.5788002014 -1.42273902893 5.27411985397
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.996950 0.077985 -0.002849 }
+        <Binormal> { -0.006665 0.121449 0.991889 }
+      }
+      <Normal> { -0.114170 0.985992 -0.121494 }
+    }
+    <Vertex> 933 {
+      -31.9746170044 -1.37291991711 2.8071911335
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.994789 0.025061 0.098824 }
+        <Binormal> { -0.071649 -0.516802 0.852296 }
+      }
+      <Normal> { -0.108371 0.854030 0.508744 }
+    }
+    <Vertex> 934 {
+      -35.836479187 -2.35713481903 2.08980441093
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.962426 0.248800 0.108784 }
+        <Binormal> { 0.063248 -0.576209 0.758290 }
+      }
+      <Normal> { -0.538316 0.648732 0.537858 }
+    }
+    <Vertex> 935 {
+      -34.0637626648 -2.07926511765 5.27411985397
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.966826 0.255435 0.000000 }
+        <Binormal> { 0.016776 -0.063497 0.876282 }
+      }
+      <Normal> { -0.685263 0.725303 0.065676 }
+    }
+    <Vertex> 936 {
+      -31.5788002014 -1.42273902893 5.27411985397
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.996950 0.077985 -0.002849 }
+        <Binormal> { -0.006665 0.121449 0.991889 }
+      }
+      <Normal> { -0.114170 0.985992 -0.121494 }
+    }
+    <Vertex> 937 {
+      -34.0637626648 -2.07926511765 5.27411985397
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.966826 0.255435 0.000000 }
+        <Binormal> { 0.016776 -0.063497 0.876282 }
+      }
+      <Normal> { -0.685263 0.725303 0.065676 }
+    }
+    <Vertex> 938 {
+      -33.9348983765 -1.54481327534 8.11392402649
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.966826 0.255435 0.000000 }
+        <Binormal> { -0.033903 0.128322 0.891650 }
+      }
+      <Normal> { -0.646199 0.751518 -0.132725 }
+    }
+    <Vertex> 939 {
+      -31.4978637695 -0.900949001312 8.11392402649
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.988793 0.148454 -0.015784 }
+        <Binormal> { 0.010278 0.037783 0.999230 }
+      }
+      <Normal> { -0.147343 0.988433 -0.035859 }
+    }
+    <Vertex> 940 {
+      -31.5788002014 -1.42273902893 5.27411985397
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.996950 0.077985 -0.002849 }
+        <Binormal> { -0.006665 0.121449 0.991889 }
+      }
+      <Normal> { -0.114170 0.985992 -0.121494 }
+    }
+    <Vertex> 941 {
+      -31.4978637695 -0.900949001312 8.11392402649
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.988793 0.148454 -0.015784 }
+        <Binormal> { 0.010278 0.037783 0.999230 }
+      }
+      <Normal> { -0.147343 0.988433 -0.035859 }
+    }
+    <Vertex> 942 {
+      -28.1859474182 -0.681684911251 8.02215671539
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.336991 0.478157 -0.811050 }
+        <Binormal> { -0.461736 0.665622 0.584271 }
+      }
+      <Normal> { -0.835414 -0.548418 -0.035432 }
+    }
+    <Vertex> 943 {
+      -28.2287120819 -1.39542424679 5.08771419525
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.364010 0.135039 -0.921554 }
+        <Binormal> { 0.336938 0.470263 -0.064179 }
+      }
+      <Normal> { -0.128727 0.224067 0.966002 }
+    }
+    <Vertex> 944 {
+      -28.2655277252 -4.04884386063 5.27411985397
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.105093 -0.993878 0.034100 }
+        <Binormal> { -0.174644 0.052166 0.982191 }
+      }
+      <Normal> { 0.973174 -0.142491 0.180609 }
+    }
+    <Vertex> 945 {
+      -29.0938453674 -6.01842212677 5.27411985397
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.387668 -0.921799 -0.000000 }
+        <Binormal> { -0.378768 0.159293 0.825988 }
+      }
+      <Normal> { 0.611835 -0.675832 0.410901 }
+    }
+    <Vertex> 946 {
+      -28.3024024963 -8.08044242859 2.86370134354
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.333332 -0.941563 -0.048458 }
+        <Binormal> { -0.873541 0.290700 0.360464 }
+      }
+      <Normal> { 0.275399 -0.303476 0.912137 }
+    }
+    <Vertex> 947 {
+      -27.3542079926 -5.03190994263 3.1219599247
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.002534 -0.999986 0.004555 }
+        <Binormal> { -0.789947 0.000762 0.606671 }
+      }
+      <Normal> { 0.606891 -0.083560 0.790338 }
+    }
+    <Vertex> 948 {
+      -28.2655277252 -4.04884386063 5.27411985397
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.105093 -0.993878 0.034100 }
+        <Binormal> { -0.174644 0.052166 0.982191 }
+      }
+      <Normal> { 0.973174 -0.142491 0.180609 }
+    }
+    <Vertex> 949 {
+      -27.3542079926 -5.03190994263 3.1219599247
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.002534 -0.999986 0.004555 }
+        <Binormal> { -0.789947 0.000762 0.606671 }
+      }
+      <Normal> { 0.606891 -0.083560 0.790338 }
+    }
+    <Vertex> 950 {
+      -28.3173828125 -2.16770863533 2.83676719666
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.067595 0.190426 -0.979372 }
+        <Binormal> { 0.393700 0.071107 -0.013347 }
+      }
+      <Normal> { -0.005158 0.211982 0.977233 }
+    }
+    <Vertex> 951 {
+      -28.2287120819 -1.39542424679 5.08771419525
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.097240 0.144300 -0.984745 }
+        <Binormal> { 0.360043 0.220697 -0.003213 }
+      }
+      <Normal> { -0.128727 0.224067 0.966002 }
+    }
+    <Vertex> 952 {
+      -28.2655277252 -4.04884386063 5.27411985397
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.105093 -0.993878 0.034100 }
+        <Binormal> { -0.174644 0.052166 0.982191 }
+      }
+      <Normal> { 0.973174 -0.142491 0.180609 }
+    }
+    <Vertex> 953 {
+      -28.2287120819 -1.39542424679 5.08771419525
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.097240 0.144300 -0.984745 }
+        <Binormal> { 0.360043 0.220697 -0.003213 }
+      }
+      <Normal> { -0.128727 0.224067 0.966002 }
+    }
+    <Vertex> 954 {
+      -28.1859474182 -0.681684911251 8.02215671539
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.112502 -0.024489 -0.993350 }
+        <Binormal> { -0.543903 0.825872 0.041240 }
+      }
+      <Normal> { -0.835414 -0.548418 -0.035432 }
+    }
+    <Vertex> 955 {
+      -28.2484874725 -3.47640657425 8.11392402649
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.181984 -0.983116 0.019088 }
+        <Binormal> { -0.010956 0.021432 0.999391 }
+      }
+      <Normal> { 0.978484 -0.205664 0.015137 }
+    }
+    <Vertex> 956 {
+      -28.2655277252 -4.04884386063 5.27411985397
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.105093 -0.993878 0.034100 }
+        <Binormal> { -0.174644 0.052166 0.982191 }
+      }
+      <Normal> { 0.973174 -0.142491 0.180609 }
+    }
+    <Vertex> 957 {
+      -28.2484874725 -3.47640657425 8.11392402649
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.181984 -0.983116 0.019088 }
+        <Binormal> { -0.010956 0.021432 0.999391 }
+      }
+      <Normal> { 0.978484 -0.205664 0.015137 }
+    }
+    <Vertex> 958 {
+      -29.0608310699 -5.40799951553 8.11392402649
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.387668 -0.921799 0.000000 }
+        <Binormal> { 0.047543 -0.019994 0.901160 }
+      }
+      <Normal> { 0.663839 -0.746086 -0.051576 }
+    }
+    <Vertex> 959 {
+      -29.0938453674 -6.01842212677 5.27411985397
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.387668 -0.921799 -0.000000 }
+        <Binormal> { -0.378768 0.159293 0.825988 }
+      }
+      <Normal> { 0.611835 -0.675832 0.410901 }
+    }
+    <Vertex> 960 {
+      -28.2655239105 9.98424434662 3.03725409508
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.089862 0.995313 -0.035738 }
+        <Binormal> { 0.211829 0.015960 0.977147 }
+      }
+      <Normal> { -0.972716 0.100040 0.209235 }
+    }
+    <Vertex> 961 {
+      -27.3819828033 14.3544893265 3.03725409508
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.198163 0.980169 -0.000000 }
+        <Binormal> { 0.261741 -0.052917 0.872262 }
+      }
+      <Normal> { -0.773797 0.574328 0.267037 }
+    }
+    <Vertex> 962 {
+      -28.3368453979 16.2777366638 0.390553623438
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.568392 0.819823 0.069429 }
+        <Binormal> { 0.715037 -0.533257 0.442977 }
+      }
+      <Normal> { -0.349162 0.275735 0.895535 }
+    }
+    <Vertex> 963 {
+      -29.281332016 10.3246803284 0.674128890038
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 0.970143 0.242536 }
+        <Binormal> { 0.729146 -0.153144 0.612575 }
+      }
+      <Normal> { -0.631428 0.079073 0.771355 }
+    }
+    <Vertex> 964 {
+      -28.2655239105 9.98424434662 3.03725409508
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.089862 0.995313 -0.035738 }
+        <Binormal> { 0.211829 0.015960 0.977147 }
+      }
+      <Normal> { -0.972716 0.100040 0.209235 }
+    }
+    <Vertex> 965 {
+      -29.281332016 10.3246803284 0.674128890038
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 0.970143 0.242536 }
+        <Binormal> { 0.729146 -0.153144 0.612575 }
+      }
+      <Normal> { -0.631428 0.079073 0.771355 }
+    }
+    <Vertex> 966 {
+      -29.2813358307 4.77898168564 0.980107784271
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.000003 0.906077 0.423114 }
+        <Binormal> { 0.631314 -0.277395 0.594023 }
+      }
+      <Normal> { -0.655599 0.108188 0.747276 }
+    }
+    <Vertex> 967 {
+      -28.2655239105 4.91649913788 3.31686210632
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 0.998481 -0.055090 }
+        <Binormal> { 0.205921 0.053900 0.976907 }
+      }
+      <Normal> { -0.978393 0.029695 0.204596 }
+    }
+    <Vertex> 968 {
+      -28.2655239105 9.98424434662 3.03725409508
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.089862 0.995313 -0.035738 }
+        <Binormal> { 0.211829 0.015960 0.977147 }
+      }
+      <Normal> { -0.972716 0.100040 0.209235 }
+    }
+    <Vertex> 969 {
+      -28.2655239105 4.91649913788 3.31686210632
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 0.998481 -0.055090 }
+        <Binormal> { 0.205921 0.053900 0.976907 }
+      }
+      <Normal> { -0.978393 0.029695 0.204596 }
+    }
+    <Vertex> 970 {
+      -28.2484836578 5.31602954865 6.19441509247
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.000000 0.998481 -0.055090 }
+        <Binormal> { -0.031173 0.055062 0.997963 }
+      }
+      <Normal> { -0.999481 -0.004425 -0.030976 }
+    }
+    <Vertex> 971 {
+      -28.2484836578 10.2860364914 5.92019987106
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.093167 0.995214 -0.029484 }
+        <Binormal> { -0.071892 0.036258 0.996706 }
+      }
+      <Normal> { -0.992340 0.097842 -0.075137 }
+    }
+    <Vertex> 972 {
+      -28.2655239105 9.98424434662 3.03725409508
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.089862 0.995313 -0.035738 }
+        <Binormal> { 0.211829 0.015960 0.977147 }
+      }
+      <Normal> { -0.972716 0.100040 0.209235 }
+    }
+    <Vertex> 973 {
+      -28.2484836578 10.2860364914 5.92019987106
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.093167 0.995214 -0.029484 }
+        <Binormal> { -0.071892 0.036258 0.996706 }
+      }
+      <Normal> { -0.992340 0.097842 -0.075137 }
+    }
+    <Vertex> 974 {
+      -27.3819828033 14.5719957352 5.92019987106
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.198163 0.980169 0.000000 }
+        <Binormal> { -0.282082 0.057029 0.881835 }
+      }
+      <Normal> { -0.790338 0.540819 -0.287790 }
+    }
+    <Vertex> 975 {
+      -27.3819828033 14.3544893265 3.03725409508
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.198163 0.980169 -0.000000 }
+        <Binormal> { 0.261741 -0.052917 0.872262 }
+      }
+      <Normal> { -0.773797 0.574328 0.267037 }
+    }
+    <Vertex> 976 {
+      -24.7313613892 15.8112382889 3.03725409508
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 1.000000 0.000421 -0.000737 }
+        <Binormal> { 0.000834 -0.320990 0.947052 }
+      }
+      <Normal> { -0.004364 0.947050 0.320994 }
+    }
+    <Vertex> 977 {
+      -22.0807380676 14.3544893265 3.03725409508
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.876369 -0.481641 -0.000000 }
+        <Binormal> { -0.160189 -0.291472 0.857372 }
+      }
+      <Normal> { 0.757134 0.562212 0.332591 }
+    }
+    <Vertex> 978 {
+      -20.5106811523 16.2876834869 0.37312862277
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.574698 -0.813638 0.087834 }
+        <Binormal> { -0.762362 -0.494153 0.410622 }
+      }
+      <Normal> { 0.334941 0.240303 0.911039 }
+    }
+    <Vertex> 979 {
+      -24.4813747406 17.4667816162 0.674128890038
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.999997 0.001271 -0.002227 }
+        <Binormal> { 0.002223 -0.862501 0.505971 }
+      }
+      <Normal> { -0.004578 0.505966 0.862514 }
+    }
+    <Vertex> 980 {
+      -24.7313613892 15.8112382889 3.03725409508
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 1.000000 0.000421 -0.000737 }
+        <Binormal> { 0.000834 -0.320990 0.947052 }
+      }
+      <Normal> { -0.004364 0.947050 0.320994 }
+    }
+    <Vertex> 981 {
+      -24.4813747406 17.4667816162 0.674128890038
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.999997 0.001271 -0.002227 }
+        <Binormal> { 0.002223 -0.862501 0.505971 }
+      }
+      <Normal> { -0.004578 0.505966 0.862514 }
+    }
+    <Vertex> 982 {
+      -28.3368453979 16.2777366638 0.390553623438
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.525240 -0.849267 0.053562 }
+        <Binormal> { -0.775317 -0.489073 -0.151705 }
+      }
+      <Normal> { -0.349162 0.275735 0.895535 }
+    }
+    <Vertex> 983 {
+      -27.3819828033 14.3544893265 3.03725409508
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.876368 0.481641 0.000000 }
+        <Binormal> { 0.128616 -0.234023 0.876015 }
+      }
+      <Normal> { -0.773797 0.574328 0.267037 }
+    }
+    <Vertex> 984 {
+      -24.7313613892 15.8112382889 3.03725409508
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 1.000000 0.000421 -0.000737 }
+        <Binormal> { 0.000834 -0.320990 0.947052 }
+      }
+      <Normal> { -0.004364 0.947050 0.320994 }
+    }
+    <Vertex> 985 {
+      -27.3819828033 14.3544893265 3.03725409508
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.876368 0.481641 0.000000 }
+        <Binormal> { 0.128616 -0.234023 0.876015 }
+      }
+      <Normal> { -0.773797 0.574328 0.267037 }
+    }
+    <Vertex> 986 {
+      -27.3819828033 14.5719957352 5.92019987106
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.876368 0.481642 0.000000 }
+        <Binormal> { -0.138611 0.252210 0.854616 }
+      }
+      <Normal> { -0.790338 0.540819 -0.287790 }
+    }
+    <Vertex> 987 {
+      -24.7824840546 16.0006504059 5.92019987106
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.476424 0.879147 }
+      }
+      <Normal> { -0.010041 0.879147 -0.476424 }
+    }
+    <Vertex> 988 {
+      -24.7313613892 15.8112382889 3.03725409508
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 1.000000 0.000421 -0.000737 }
+        <Binormal> { 0.000834 -0.320990 0.947052 }
+      }
+      <Normal> { -0.004364 0.947050 0.320994 }
+    }
+    <Vertex> 989 {
+      -24.7824840546 16.0006504059 5.92019987106
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.476424 0.879147 }
+      }
+      <Normal> { -0.010041 0.879147 -0.476424 }
+    }
+    <Vertex> 990 {
+      -22.1829814911 14.5719957352 5.92019987106
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.876369 -0.481641 0.000000 }
+        <Binormal> { 0.188985 0.343866 0.823768 }
+      }
+      <Normal> { 0.755333 0.524857 -0.392376 }
+    }
+    <Vertex> 991 {
+      -22.0807380676 14.3544893265 3.03725409508
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.876369 -0.481641 -0.000000 }
+        <Binormal> { -0.160189 -0.291472 0.857372 }
+      }
+      <Normal> { 0.757134 0.562212 0.332591 }
+    }
+    <Vertex> 992 {
+      -24.7313652039 -1.42273902893 5.27411985397
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.998673 -0.051209 0.005502 }
+        <Binormal> { -0.013902 0.370810 0.927874 }
+      }
+      <Normal> { 0.085726 -0.924711 0.370830 }
+    }
+    <Vertex> 993 {
+      -28.2287120819 -1.39542424679 5.08771419525
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.364010 0.135039 -0.921554 }
+        <Binormal> { 0.336938 0.470263 -0.064179 }
+      }
+      <Normal> { -0.128727 0.224067 0.966002 }
+    }
+    <Vertex> 994 {
+      -28.3173828125 -2.16770863533 2.83676719666
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.115110 -0.948330 0.295668 }
+        <Binormal> { -0.989416 -0.114015 0.019510 }
+      }
+      <Normal> { -0.005158 0.211982 0.977233 }
+    }
+    <Vertex> 995 {
+      -24.4813747406 -2.89721417427 3.1219599247
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.999692 0.006817 0.023859 }
+        <Binormal> { 0.018384 0.847593 0.528099 }
+      }
+      <Normal> { 0.064730 -0.528703 0.846309 }
+    }
+    <Vertex> 996 {
+      -24.7313652039 -1.42273902893 5.27411985397
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.998673 -0.051209 0.005502 }
+        <Binormal> { -0.013902 0.370810 0.927874 }
+      }
+      <Normal> { 0.085726 -0.924711 0.370830 }
+    }
+    <Vertex> 997 {
+      -24.4813747406 -2.89721417427 3.1219599247
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.999692 0.006817 0.023859 }
+        <Binormal> { 0.018384 0.847593 0.528099 }
+      }
+      <Normal> { 0.064730 -0.528703 0.846309 }
+    }
+    <Vertex> 998 {
+      -20.510684967 -2.22094368935 2.65044903755
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.674962 -0.737510 -0.022482 }
+        <Binormal> { -0.690056 0.620937 0.347593 }
+      }
+      <Normal> { 0.331431 -0.152837 0.930998 }
+    }
+    <Vertex> 999 {
+      -22.0807437897 -0.725240468979 4.99451112747
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.962084 -0.253168 0.101488 }
+        <Binormal> { -0.042440 0.469606 0.769140 }
+      }
+      <Normal> { 0.657308 -0.626484 0.418775 }
+    }
+    <Vertex> 1000 {
+      -24.7313652039 -1.42273902893 5.27411985397
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.998673 -0.051209 0.005502 }
+        <Binormal> { -0.013902 0.370810 0.927874 }
+      }
+      <Normal> { 0.085726 -0.924711 0.370830 }
+    }
+    <Vertex> 1001 {
+      -22.0807437897 -0.725240468979 4.99451112747
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.962084 -0.253168 0.101488 }
+        <Binormal> { -0.042440 0.469606 0.769140 }
+      }
+      <Normal> { 0.657308 -0.626484 0.418775 }
+    }
+    <Vertex> 1002 {
+      -22.1829833984 -0.216902643442 7.83970880508
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.962084 -0.253168 0.101488 }
+        <Binormal> { 0.096430 -0.004510 0.902879 }
+      }
+      <Normal> { 0.631092 -0.772393 -0.071261 }
+    }
+    <Vertex> 1003 {
+      -24.7824840546 -0.900949001312 8.11392402649
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.996559 -0.077159 0.030288 }
+        <Binormal> { 0.029445 0.011817 0.998919 }
+      }
+      <Normal> { 0.110996 -0.993774 0.008484 }
+    }
+    <Vertex> 1004 {
+      -24.7313652039 -1.42273902893 5.27411985397
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.998673 -0.051209 0.005502 }
+        <Binormal> { -0.013902 0.370810 0.927874 }
+      }
+      <Normal> { 0.085726 -0.924711 0.370830 }
+    }
+    <Vertex> 1005 {
+      -24.7824840546 -0.900949001312 8.11392402649
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.996559 -0.077159 0.030288 }
+        <Binormal> { 0.029445 0.011817 0.998919 }
+      }
+      <Normal> { 0.110996 -0.993774 0.008484 }
+    }
+    <Vertex> 1006 {
+      -28.1859474182 -0.681684911251 8.02215671539
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.336991 0.478157 -0.811050 }
+        <Binormal> { -0.461736 0.665622 0.584271 }
+      }
+      <Normal> { -0.835414 -0.548418 -0.035432 }
+    }
+    <Vertex> 1007 {
+      -28.2287120819 -1.39542424679 5.08771419525
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.364010 0.135039 -0.921554 }
+        <Binormal> { 0.336938 0.470263 -0.064179 }
+      }
+      <Normal> { -0.128727 0.224067 0.966002 }
+    }
+    <Vertex> 1008 {
+      -28.2655239105 1.36725509167 4.15568637848
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.036208 0.959195 -0.280419 }
+        <Binormal> { 0.163103 0.282482 0.945193 }
+      }
+      <Normal> { -0.985382 -0.000549 0.170202 }
+    }
+    <Vertex> 1009 {
+      -28.2655239105 4.91649913788 3.31686210632
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.000000 0.973190 -0.230003 }
+        <Binormal> { 0.205941 0.225033 0.952162 }
+      }
+      <Normal> { -0.978393 0.029695 0.204596 }
+    }
+    <Vertex> 1010 {
+      -29.2813358307 4.77898168564 0.980107784271
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.000002 -0.958462 -0.285220 }
+        <Binormal> { -0.685378 0.186991 -0.628367 }
+      }
+      <Normal> { -0.655599 0.108188 0.747276 }
+    }
+    <Vertex> 1011 {
+      -29.281332016 0.894997596741 1.89804446697
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.733451 -0.000000 -0.650410 }
+      }
+      <Normal> { -0.650410 0.197424 0.733451 }
+    }
+    <Vertex> 1012 {
+      -28.2655239105 1.36725509167 4.15568637848
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.036208 0.959195 -0.280419 }
+        <Binormal> { 0.163103 0.282482 0.945193 }
+      }
+      <Normal> { -0.985382 -0.000549 0.170202 }
+    }
+    <Vertex> 1013 {
+      -29.281332016 0.894997596741 1.89804446697
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.733451 -0.000000 -0.650410 }
+      }
+      <Normal> { -0.650410 0.197424 0.733451 }
+    }
+    <Vertex> 1014 {
+      -28.3173828125 -2.16770863533 2.83676719666
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.067595 0.190426 -0.979372 }
+        <Binormal> { 0.393700 0.071107 -0.013347 }
+      }
+      <Normal> { -0.005158 0.211982 0.977233 }
+    }
+    <Vertex> 1015 {
+      -28.2287120819 -1.39542424679 5.08771419525
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.097240 0.144300 -0.984745 }
+        <Binormal> { 0.360043 0.220697 -0.003213 }
+      }
+      <Normal> { -0.128727 0.224067 0.966002 }
+    }
+    <Vertex> 1016 {
+      -28.2655239105 1.36725509167 4.15568637848
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.036208 0.959195 -0.280419 }
+        <Binormal> { 0.163103 0.282482 0.945193 }
+      }
+      <Normal> { -0.985382 -0.000549 0.170202 }
+    }
+    <Vertex> 1017 {
+      -28.2287120819 -1.39542424679 5.08771419525
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.097240 0.144300 -0.984745 }
+        <Binormal> { 0.360043 0.220697 -0.003213 }
+      }
+      <Normal> { -0.128727 0.224067 0.966002 }
+    }
+    <Vertex> 1018 {
+      -28.1859474182 -0.681684911251 8.02215671539
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.112502 -0.024489 -0.993350 }
+        <Binormal> { -0.543903 0.825872 0.041240 }
+      }
+      <Normal> { -0.835414 -0.548418 -0.035432 }
+    }
+    <Vertex> 1019 {
+      -28.2484836578 1.83523666859 7.01706218719
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.009973 0.956522 -0.291490 }
+        <Binormal> { -0.033928 0.291005 0.956091 }
+      }
+      <Normal> { -0.999359 -0.018250 -0.029908 }
+    }
+    <Vertex> 1020 {
+      -28.2655239105 1.36725509167 4.15568637848
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.036208 0.959195 -0.280419 }
+        <Binormal> { 0.163103 0.282482 0.945193 }
+      }
+      <Normal> { -0.985382 -0.000549 0.170202 }
+    }
+    <Vertex> 1021 {
+      -28.2484836578 1.83523666859 7.01706218719
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.009973 0.956522 -0.291490 }
+        <Binormal> { -0.033928 0.291005 0.956091 }
+      }
+      <Normal> { -0.999359 -0.018250 -0.029908 }
+    }
+    <Vertex> 1022 {
+      -28.2484836578 5.31602954865 6.19441509247
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.000000 0.973190 -0.230003 }
+        <Binormal> { -0.031164 0.229883 0.972685 }
+      }
+      <Normal> { -0.999481 -0.004425 -0.030976 }
+    }
+    <Vertex> 1023 {
+      -28.2655239105 4.91649913788 3.31686210632
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.000000 0.973190 -0.230003 }
+        <Binormal> { 0.205941 0.225033 0.952162 }
+      }
+      <Normal> { -0.978393 0.029695 0.204596 }
+    }
+    <Vertex> 1024 {
+      -21.1972007751 9.98424434662 3.03725409508
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.082482 -0.996075 0.032102 }
+        <Binormal> { -0.286170 0.007182 0.958122 }
+      }
+      <Normal> { 0.954222 0.092685 0.284310 }
+    }
+    <Vertex> 1025 {
+      -21.1971969604 4.91649913788 3.31686210632
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000001 -0.998481 0.055090 }
+        <Binormal> { -0.271625 0.052999 0.960574 }
+      }
+      <Normal> { 0.962035 0.040315 0.269814 }
+    }
+    <Vertex> 1026 {
+      -19.8630504608 4.7945227623 0.816746592522
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.010084 -0.998699 0.049978 }
+        <Binormal> { -0.732996 0.041138 0.674143 }
+      }
+      <Normal> { 0.676138 0.110599 0.728416 }
+    }
+    <Vertex> 1027 {
+      -19.7558803558 10.340221405 0.565221428871
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.056218 -0.997676 0.038509 }
+        <Binormal> { -0.777256 -0.019542 0.628405 }
+      }
+      <Normal> { 0.627522 0.041658 0.777459 }
+    }
+    <Vertex> 1028 {
+      -21.1972007751 9.98424434662 3.03725409508
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.082482 -0.996075 0.032102 }
+        <Binormal> { -0.286170 0.007182 0.958122 }
+      }
+      <Normal> { 0.954222 0.092685 0.284310 }
+    }
+    <Vertex> 1029 {
+      -19.7558803558 10.340221405 0.565221428871
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.056218 -0.997676 0.038509 }
+        <Binormal> { -0.777256 -0.019542 0.628405 }
+      }
+      <Normal> { 0.627522 0.041658 0.777459 }
+    }
+    <Vertex> 1030 {
+      -20.5106811523 16.2876834869 0.37312862277
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.156798 -0.987460 0.018384 }
+        <Binormal> { -0.904032 -0.136691 0.368419 }
+      }
+      <Normal> { 0.334941 0.240303 0.911039 }
+    }
+    <Vertex> 1031 {
+      -22.0807380676 14.3544893265 3.03725409508
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.198162 -0.980169 0.000000 }
+        <Binormal> { -0.325995 -0.065907 0.853528 }
+      }
+      <Normal> { 0.757134 0.562212 0.332591 }
+    }
+    <Vertex> 1032 {
+      -21.1972007751 9.98424434662 3.03725409508
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.082482 -0.996075 0.032102 }
+        <Binormal> { -0.286170 0.007182 0.958122 }
+      }
+      <Normal> { 0.954222 0.092685 0.284310 }
+    }
+    <Vertex> 1033 {
+      -22.0807380676 14.3544893265 3.03725409508
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.198162 -0.980169 0.000000 }
+        <Binormal> { -0.325995 -0.065907 0.853528 }
+      }
+      <Normal> { 0.757134 0.562212 0.332591 }
+    }
+    <Vertex> 1034 {
+      -22.1829814911 14.5719957352 5.92019987106
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.198162 -0.980169 0.000000 }
+        <Binormal> { 0.384595 0.077754 0.844361 }
+      }
+      <Normal> { 0.755333 0.524857 -0.392376 }
+    }
+    <Vertex> 1035 {
+      -21.3164806366 10.2860364914 5.92019987106
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.093168 -0.995214 0.029484 }
+        <Binormal> { 0.238006 0.051015 0.969886 }
+      }
+      <Normal> { 0.966186 0.089358 -0.241798 }
+    }
+    <Vertex> 1036 {
+      -21.1972007751 9.98424434662 3.03725409508
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.082482 -0.996075 0.032102 }
+        <Binormal> { -0.286170 0.007182 0.958122 }
+      }
+      <Normal> { 0.954222 0.092685 0.284310 }
+    }
+    <Vertex> 1037 {
+      -21.3164806366 10.2860364914 5.92019987106
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.093168 -0.995214 0.029484 }
+        <Binormal> { 0.238006 0.051015 0.969886 }
+      }
+      <Normal> { 0.966186 0.089358 -0.241798 }
+    }
+    <Vertex> 1038 {
+      -21.3164768219 5.31602954865 6.19441509247
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.000001 -0.998481 0.055090 }
+        <Binormal> { 0.200985 0.053957 0.977943 }
+      }
+      <Normal> { 0.979430 -0.028596 -0.199713 }
+    }
+    <Vertex> 1039 {
+      -21.1971969604 4.91649913788 3.31686210632
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000001 -0.998481 0.055090 }
+        <Binormal> { -0.271625 0.052999 0.960574 }
+      }
+      <Normal> { 0.962035 0.040315 0.269814 }
+    }
+    <Vertex> 1040 {
+      -21.1972007751 1.36725509167 4.15568637848
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.131204 -0.952945 0.273277 }
+        <Binormal> { -0.272442 0.299552 0.913764 }
+      }
+      <Normal> { 0.948363 -0.076418 0.307810 }
+    }
+    <Vertex> 1041 {
+      -22.0807437897 -0.725240468979 4.99451112747
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.364901 -0.864195 0.346432 }
+        <Binormal> { -0.144869 0.380524 0.796646 }
+      }
+      <Normal> { 0.657308 -0.626484 0.418775 }
+    }
+    <Vertex> 1042 {
+      -20.510684967 -2.22094368935 2.65044903755
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.285787 -0.911249 0.296565 }
+        <Binormal> { -0.803045 0.364358 0.345695 }
+      }
+      <Normal> { 0.331431 -0.152837 0.930998 }
+    }
+    <Vertex> 1043 {
+      -19.7558803558 0.910538911819 1.78913700581
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.088961 -0.963661 0.251882 }
+        <Binormal> { -0.775869 0.225474 0.588606 }
+      }
+      <Normal> { 0.626362 0.168554 0.761071 }
+    }
+    <Vertex> 1044 {
+      -21.1972007751 1.36725509167 4.15568637848
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.131204 -0.952945 0.273277 }
+        <Binormal> { -0.272442 0.299552 0.913764 }
+      }
+      <Normal> { 0.948363 -0.076418 0.307810 }
+    }
+    <Vertex> 1045 {
+      -19.7558803558 0.910538911819 1.78913700581
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.088961 -0.963661 0.251882 }
+        <Binormal> { -0.775869 0.225474 0.588606 }
+      }
+      <Normal> { 0.626362 0.168554 0.761071 }
+    }
+    <Vertex> 1046 {
+      -19.8630504608 4.7945227623 0.816746592522
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.014006 -0.971478 0.236715 }
+        <Binormal> { -0.733820 0.149850 0.658402 }
+      }
+      <Normal> { 0.676138 0.110599 0.728416 }
+    }
+    <Vertex> 1047 {
+      -21.1971969604 4.91649913788 3.31686210632
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.000001 -0.973190 0.230003 }
+        <Binormal> { -0.271853 0.221271 0.936243 }
+      }
+      <Normal> { 0.962035 0.040315 0.269814 }
+    }
+    <Vertex> 1048 {
+      -21.1972007751 1.36725509167 4.15568637848
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.131204 -0.952945 0.273277 }
+        <Binormal> { -0.272442 0.299552 0.913764 }
+      }
+      <Normal> { 0.948363 -0.076418 0.307810 }
+    }
+    <Vertex> 1049 {
+      -21.1971969604 4.91649913788 3.31686210632
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.000001 -0.973190 0.230003 }
+        <Binormal> { -0.271853 0.221271 0.936243 }
+      }
+      <Normal> { 0.962035 0.040315 0.269814 }
+    }
+    <Vertex> 1050 {
+      -21.3164768219 5.31602954865 6.19441509247
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.000001 -0.973190 0.230003 }
+        <Binormal> { 0.200936 0.225271 0.953172 }
+      }
+      <Normal> { 0.979430 -0.028596 -0.199713 }
+    }
+    <Vertex> 1051 {
+      -21.3164806366 1.83523654938 7.01706218719
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.148449 -0.947899 0.281871 }
+        <Binormal> { 0.224964 0.244930 0.942149 }
+      }
+      <Normal> { 0.955962 -0.242470 -0.165227 }
+    }
+    <Vertex> 1052 {
+      -21.1972007751 1.36725509167 4.15568637848
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.131204 -0.952945 0.273277 }
+        <Binormal> { -0.272442 0.299552 0.913764 }
+      }
+      <Normal> { 0.948363 -0.076418 0.307810 }
+    }
+    <Vertex> 1053 {
+      -21.3164806366 1.83523654938 7.01706218719
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.148449 -0.947899 0.281871 }
+        <Binormal> { 0.224964 0.244930 0.942149 }
+      }
+      <Normal> { 0.955962 -0.242470 -0.165227 }
+    }
+    <Vertex> 1054 {
+      -22.1829833984 -0.216902643442 7.83970880508
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.364901 -0.864195 0.346432 }
+        <Binormal> { 0.329165 0.192628 0.827233 }
+      }
+      <Normal> { 0.631092 -0.772393 -0.071261 }
+    }
+    <Vertex> 1055 {
+      -22.0807437897 -0.725240468979 4.99451112747
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.364901 -0.864195 0.346432 }
+        <Binormal> { -0.144869 0.380524 0.796646 }
+      }
+      <Normal> { 0.657308 -0.626484 0.418775 }
+    }
+    <Vertex> 1056 {
+      -20.1188430786 1.97982800007 9.58080768585
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.148449 -0.947899 0.281871 }
+        <Binormal> { 0.593756 0.142228 0.791001 }
+      }
+      <Normal> { 0.784204 -0.321024 -0.530931 }
+    }
+    <Vertex> 1057 {
+      -21.1564369202 -0.477507591248 10.5658874512
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.364900 -0.864195 0.346432 }
+        <Binormal> { 0.625288 0.019092 0.706248 }
+      }
+      <Normal> { 0.496017 -0.760735 -0.418592 }
+    }
+    <Vertex> 1058 {
+      -22.1829833984 -0.216902643442 7.83970880508
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.364901 -0.864195 0.346432 }
+        <Binormal> { 0.329165 0.192628 0.827233 }
+      }
+      <Normal> { 0.631092 -0.772393 -0.071261 }
+    }
+    <Vertex> 1059 {
+      -21.3164806366 1.83523654938 7.01706218719
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.148449 -0.947899 0.281871 }
+        <Binormal> { 0.224964 0.244930 0.942149 }
+      }
+      <Normal> { 0.955962 -0.242470 -0.165227 }
+    }
+    <Vertex> 1060 {
+      -20.1188430786 1.97982800007 9.58080768585
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.148449 -0.947899 0.281871 }
+        <Binormal> { 0.593756 0.142228 0.791001 }
+      }
+      <Normal> { 0.784204 -0.321024 -0.530931 }
+    }
+    <Vertex> 1061 {
+      -21.3164806366 1.83523654938 7.01706218719
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.148449 -0.947899 0.281871 }
+        <Binormal> { 0.224964 0.244930 0.942149 }
+      }
+      <Normal> { 0.955962 -0.242470 -0.165227 }
+    }
+    <Vertex> 1062 {
+      -21.3164768219 5.31602954865 6.19441509247
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.000001 -0.973190 0.230003 }
+        <Binormal> { 0.200936 0.225271 0.953172 }
+      }
+      <Normal> { 0.979430 -0.028596 -0.199713 }
+    }
+    <Vertex> 1063 {
+      -20.1188411713 6.14790582657 8.59572982788
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.000000 -0.973190 0.230002 }
+        <Binormal> { 0.579582 0.187037 0.791394 }
+      }
+      <Normal> { 0.813196 -0.082430 -0.576067 }
+    }
+    <Vertex> 1064 {
+      -20.1188430786 1.97982800007 9.58080768585
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.148449 -0.947899 0.281871 }
+        <Binormal> { 0.593756 0.142228 0.791001 }
+      }
+      <Normal> { 0.784204 -0.321024 -0.530931 }
+    }
+    <Vertex> 1065 {
+      -20.1188411713 6.14790582657 8.59572982788
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.000000 -0.973190 0.230002 }
+        <Binormal> { 0.579582 0.187037 0.791394 }
+      }
+      <Normal> { 0.813196 -0.082430 -0.576067 }
+    }
+    <Vertex> 1066 {
+      -18.3627719879 7.08254098892 10.2023181915
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.000000 -0.973190 0.230003 }
+        <Binormal> { 0.839042 0.123919 0.524329 }
+      }
+      <Normal> { 0.538774 -0.119480 -0.833918 }
+    }
+    <Vertex> 1067 {
+      -18.3627738953 1.90671312809 11.4255685806
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.148449 -0.947899 0.281871 }
+        <Binormal> { 0.835487 0.032002 0.547633 }
+      }
+      <Normal> { 0.523453 -0.346599 -0.778344 }
+    }
+    <Vertex> 1068 {
+      -20.1188430786 1.97982800007 9.58080768585
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.148449 -0.947899 0.281871 }
+        <Binormal> { 0.593756 0.142228 0.791001 }
+      }
+      <Normal> { 0.784204 -0.321024 -0.530931 }
+    }
+    <Vertex> 1069 {
+      -18.3627738953 1.90671312809 11.4255685806
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.148449 -0.947899 0.281871 }
+        <Binormal> { 0.835487 0.032002 0.547633 }
+      }
+      <Normal> { 0.523453 -0.346599 -0.778344 }
+    }
+    <Vertex> 1070 {
+      -19.6512355804 -1.14475238323 12.6488189697
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.364901 -0.864195 0.346432 }
+        <Binormal> { 0.810269 -0.132436 0.523096 }
+      }
+      <Normal> { 0.322794 -0.669057 -0.669393 }
+    }
+    <Vertex> 1071 {
+      -21.1564369202 -0.477507591248 10.5658874512
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.364900 -0.864195 0.346432 }
+        <Binormal> { 0.625288 0.019092 0.706248 }
+      }
+      <Normal> { 0.496017 -0.760735 -0.418592 }
+    }
+    <Vertex> 1072 {
+      -20.1188411713 12.0992441177 8.26736927032
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.093167 -0.995214 0.029484 }
+        <Binormal> { 0.643854 0.082808 0.760608 }
+      }
+      <Normal> { 0.759117 0.054994 -0.648579 }
+    }
+    <Vertex> 1073 {
+      -20.1188411713 6.14790582657 8.59572982788
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.000000 -0.998481 0.055090 }
+        <Binormal> { 0.579734 0.044799 0.811961 }
+      }
+      <Normal> { 0.813196 -0.082430 -0.576067 }
+    }
+    <Vertex> 1074 {
+      -21.3164768219 5.31602954865 6.19441509247
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.000000 -0.998481 0.055090 }
+        <Binormal> { 0.200985 0.053957 0.977943 }
+      }
+      <Normal> { 0.979430 -0.028596 -0.199713 }
+    }
+    <Vertex> 1075 {
+      -21.3164806366 10.2860364914 5.92019987106
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.093168 -0.995214 0.029484 }
+        <Binormal> { 0.238006 0.051015 0.969886 }
+      }
+      <Normal> { 0.966186 0.089358 -0.241798 }
+    }
+    <Vertex> 1076 {
+      -20.1188411713 12.0992441177 8.26736927032
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.093167 -0.995214 0.029484 }
+        <Binormal> { 0.643854 0.082808 0.760608 }
+      }
+      <Normal> { 0.759117 0.054994 -0.648579 }
+    }
+    <Vertex> 1077 {
+      -21.3164806366 10.2860364914 5.92019987106
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.093168 -0.995214 0.029484 }
+        <Binormal> { 0.238006 0.051015 0.969886 }
+      }
+      <Normal> { 0.966186 0.089358 -0.241798 }
+    }
+    <Vertex> 1078 {
+      -22.1829814911 14.5719957352 5.92019987106
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.198163 -0.980169 0.000000 }
+        <Binormal> { 0.384595 0.077754 0.844361 }
+      }
+      <Normal> { 0.755333 0.524857 -0.392376 }
+    }
+    <Vertex> 1079 {
+      -21.1564331055 17.2314720154 8.26736927032
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.198163 -0.980169 0.000000 }
+        <Binormal> { 0.797010 0.161133 0.545405 }
+      }
+      <Normal> { 0.494308 0.307321 -0.813135 }
+    }
+    <Vertex> 1080 {
+      -20.1188411713 12.0992441177 8.26736927032
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.093167 -0.995214 0.029484 }
+        <Binormal> { 0.643854 0.082808 0.760608 }
+      }
+      <Normal> { 0.759117 0.054994 -0.648579 }
+    }
+    <Vertex> 1081 {
+      -21.1564331055 17.2314720154 8.26736927032
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.198163 -0.980169 0.000000 }
+        <Binormal> { 0.797010 0.161133 0.545405 }
+      }
+      <Normal> { 0.494308 0.307321 -0.813135 }
+    }
+    <Vertex> 1082 {
+      -19.6512298584 20.8458690643 9.7945690155
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.198163 -0.980169 0.000000 }
+        <Binormal> { 0.935299 0.189091 0.283180 }
+      }
+      <Normal> { 0.258522 0.150304 -0.954222 }
+    }
+    <Vertex> 1083 {
+      -18.3627700806 14.4727830887 9.7945690155
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.093167 -0.995214 0.029484 }
+        <Binormal> { 0.884723 0.096333 0.456014 }
+      }
+      <Normal> { 0.456679 0.016327 -0.889462 }
+    }
+    <Vertex> 1084 {
+      -20.1188411713 12.0992441177 8.26736927032
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.093167 -0.995214 0.029484 }
+        <Binormal> { 0.643854 0.082808 0.760608 }
+      }
+      <Normal> { 0.759117 0.054994 -0.648579 }
+    }
+    <Vertex> 1085 {
+      -18.3627700806 14.4727830887 9.7945690155
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.093167 -0.995214 0.029484 }
+        <Binormal> { 0.884723 0.096333 0.456014 }
+      }
+      <Normal> { 0.456679 0.016327 -0.889462 }
+    }
+    <Vertex> 1086 {
+      -18.3627719879 7.08254098892 10.2023181915
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.000000 -0.998481 0.055090 }
+        <Binormal> { 0.839234 0.029681 0.537956 }
+      }
+      <Normal> { 0.538774 -0.119480 -0.833918 }
+    }
+    <Vertex> 1087 {
+      -20.1188411713 6.14790582657 8.59572982788
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.000000 -0.998481 0.055090 }
+        <Binormal> { 0.579734 0.044799 0.811961 }
+      }
+      <Normal> { 0.813196 -0.082430 -0.576067 }
+    }
+    <Vertex> 1088 {
+      -28.4195766449 1.97982811928 9.58080768585
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.006821 0.956536 -0.291533 }
+        <Binormal> { -0.108396 0.289114 0.951134 }
+      }
+      <Normal> { -0.994079 -0.038270 -0.101657 }
+    }
+    <Vertex> 1089 {
+      -28.4195747375 6.14790582657 8.59572982788
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 0.973190 -0.230002 }
+        <Binormal> { -0.105928 0.228697 0.967666 }
+      }
+      <Normal> { -0.994324 -0.014924 -0.105319 }
+    }
+    <Vertex> 1090 {
+      -28.2484836578 5.31602954865 6.19441509247
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.000000 0.973190 -0.230003 }
+        <Binormal> { -0.031164 0.229883 0.972685 }
+      }
+      <Normal> { -0.999481 -0.004425 -0.030976 }
+    }
+    <Vertex> 1091 {
+      -28.2484836578 1.83523666859 7.01706218719
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.009973 0.956522 -0.291490 }
+        <Binormal> { -0.033928 0.291005 0.956091 }
+      }
+      <Normal> { -0.999359 -0.018250 -0.029908 }
+    }
+    <Vertex> 1092 {
+      -28.4195766449 1.97982811928 9.58080768585
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.006821 0.956536 -0.291533 }
+        <Binormal> { -0.108396 0.289114 0.951134 }
+      }
+      <Normal> { -0.994079 -0.038270 -0.101657 }
+    }
+    <Vertex> 1093 {
+      -28.2484836578 1.83523666859 7.01706218719
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.009973 0.956522 -0.291490 }
+        <Binormal> { -0.033928 0.291005 0.956091 }
+      }
+      <Normal> { -0.999359 -0.018250 -0.029908 }
+    }
+    <Vertex> 1094 {
+      -28.1859474182 -0.681684911251 8.02215671539
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.111143 -0.007899 -0.993773 }
+        <Binormal> { -0.544723 0.826274 0.054354 }
+      }
+      <Normal> { -0.835414 -0.548418 -0.035432 }
+    }
+    <Vertex> 1095 {
+      -28.3763446808 -1.26454222202 10.6753396988
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.097239 0.144300 -0.984745 }
+        <Binormal> { -0.921965 0.316572 0.137429 }
+      }
+      <Normal> { -0.348643 -0.895932 -0.275124 }
+    }
+    <Vertex> 1096 {
+      -28.4195766449 1.97982811928 9.58080768585
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.006821 0.956536 -0.291533 }
+        <Binormal> { -0.108396 0.289114 0.951134 }
+      }
+      <Normal> { -0.994079 -0.038270 -0.101657 }
+    }
+    <Vertex> 1097 {
+      -28.3763446808 -1.26454222202 10.6753396988
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.097239 0.144300 -0.984745 }
+        <Binormal> { -0.921965 0.316572 0.137429 }
+      }
+      <Normal> { -0.348643 -0.895932 -0.275124 }
+    }
+    <Vertex> 1098 {
+      -28.6454277039 -2.13379597664 13.1591978073
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.061570 0.121340 -0.990700 }
+        <Binormal> { -0.802306 -0.341982 0.007976 }
+      }
+      <Normal> { 0.307718 -0.735984 -0.602985 }
+    }
+    <Vertex> 1099 {
+      -28.6704425812 1.90671312809 11.4255685806
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.002584 0.952191 -0.305492 }
+        <Binormal> { -0.269584 0.293513 0.917134 }
+      }
+      <Normal> { -0.962951 -0.085513 -0.255684 }
+    }
+    <Vertex> 1100 {
+      -28.4195766449 1.97982811928 9.58080768585
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.006821 0.956536 -0.291533 }
+        <Binormal> { -0.108396 0.289114 0.951134 }
+      }
+      <Normal> { -0.994079 -0.038270 -0.101657 }
+    }
+    <Vertex> 1101 {
+      -28.6704425812 1.90671312809 11.4255685806
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.002584 0.952191 -0.305492 }
+        <Binormal> { -0.269584 0.293513 0.917134 }
+      }
+      <Normal> { -0.962951 -0.085513 -0.255684 }
+    }
+    <Vertex> 1102 {
+      -28.6704387665 7.08254098892 10.2023181915
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.000001 0.973190 -0.230003 }
+        <Binormal> { -0.250028 0.222625 0.941975 }
+      }
+      <Normal> { -0.967925 -0.034394 -0.248787 }
+    }
+    <Vertex> 1103 {
+      -28.4195747375 6.14790582657 8.59572982788
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 0.973190 -0.230002 }
+        <Binormal> { -0.105928 0.228697 0.967666 }
+      }
+      <Normal> { -0.994324 -0.014924 -0.105319 }
+    }
+    <Vertex> 1104 {
+      -24.2692127228 -1.29661953449 10.8942480087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.996838 -0.078467 0.012547 }
+        <Binormal> { 0.034320 -0.282797 0.958128 }
+      }
+      <Normal> { 0.099857 -0.953307 -0.284951 }
+    }
+    <Vertex> 1105 {
+      -28.3763446808 -1.26454222202 10.6753396988
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.363999 0.135039 -0.921558 }
+        <Binormal> { -0.862806 0.221150 0.373199 }
+      }
+      <Normal> { -0.348643 -0.895932 -0.275124 }
+    }
+    <Vertex> 1106 {
+      -28.1859474182 -0.681684911251 8.02215671539
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.342135 0.443374 -0.828470 }
+        <Binormal> { -0.470057 0.679993 0.558034 }
+      }
+      <Normal> { -0.835414 -0.548418 -0.035432 }
+    }
+    <Vertex> 1107 {
+      -24.7824840546 -0.900949001312 8.11392402649
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.996559 -0.077159 0.030288 }
+        <Binormal> { 0.029445 0.011817 0.998919 }
+      }
+      <Normal> { 0.110996 -0.993774 0.008484 }
+    }
+    <Vertex> 1108 {
+      -24.2692127228 -1.29661953449 10.8942480087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.996838 -0.078467 0.012547 }
+        <Binormal> { 0.034320 -0.282797 0.958128 }
+      }
+      <Normal> { 0.099857 -0.953307 -0.284951 }
+    }
+    <Vertex> 1109 {
+      -24.7824840546 -0.900949001312 8.11392402649
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.996559 -0.077159 0.030288 }
+        <Binormal> { 0.029445 0.011817 0.998919 }
+      }
+      <Normal> { 0.110996 -0.993774 0.008484 }
+    }
+    <Vertex> 1110 {
+      -22.1829833984 -0.216902643442 7.83970880508
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.962084 -0.253168 0.101488 }
+        <Binormal> { 0.096430 -0.004510 0.902879 }
+      }
+      <Normal> { 0.631092 -0.772393 -0.071261 }
+    }
+    <Vertex> 1111 {
+      -21.1564369202 -0.477507591248 10.5658874512
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.962084 -0.253168 0.101488 }
+        <Binormal> { 0.183180 -0.352381 0.857467 }
+      }
+      <Normal> { 0.496017 -0.760735 -0.418592 }
+    }
+    <Vertex> 1112 {
+      -24.2692127228 -1.29661953449 10.8942480087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.996838 -0.078467 0.012547 }
+        <Binormal> { 0.034320 -0.282797 0.958128 }
+      }
+      <Normal> { 0.099857 -0.953307 -0.284951 }
+    }
+    <Vertex> 1113 {
+      -21.1564369202 -0.477507591248 10.5658874512
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.962084 -0.253168 0.101488 }
+        <Binormal> { 0.183180 -0.352381 0.857467 }
+      }
+      <Normal> { 0.496017 -0.760735 -0.418592 }
+    }
+    <Vertex> 1114 {
+      -19.6512355804 -1.14475238323 12.6488189697
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.962084 -0.253168 0.101488 }
+        <Binormal> { 0.237370 -0.611253 0.725411 }
+      }
+      <Normal> { 0.322794 -0.669057 -0.669393 }
+    }
+    <Vertex> 1115 {
+      -23.5166091919 -2.16190767288 13.0565700531
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.992431 -0.109132 0.056316 }
+        <Binormal> { 0.108339 -0.562327 0.819497 }
+      }
+      <Normal> { 0.078890 -0.817072 -0.571093 }
+    }
+    <Vertex> 1116 {
+      -24.2692127228 -1.29661953449 10.8942480087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.996838 -0.078467 0.012547 }
+        <Binormal> { 0.034320 -0.282797 0.958128 }
+      }
+      <Normal> { 0.099857 -0.953307 -0.284951 }
+    }
+    <Vertex> 1117 {
+      -23.5166091919 -2.16190767288 13.0565700531
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.992431 -0.109132 0.056316 }
+        <Binormal> { 0.108339 -0.562327 0.819497 }
+      }
+      <Normal> { 0.078890 -0.817072 -0.571093 }
+    }
+    <Vertex> 1118 {
+      -28.6454277039 -2.13379597664 13.1591978073
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.664296 0.198375 -0.720665 }
+        <Binormal> { -0.650015 -0.622322 0.427868 }
+      }
+      <Normal> { 0.307718 -0.735984 -0.602985 }
+    }
+    <Vertex> 1119 {
+      -28.3763446808 -1.26454222202 10.6753396988
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.363999 0.135039 -0.921558 }
+        <Binormal> { -0.862806 0.221150 0.373199 }
+      }
+      <Normal> { -0.348643 -0.895932 -0.275124 }
+    }
+    <Vertex> 1120 {
+      -24.2692089081 18.9422130585 8.26736927032
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.868801 0.494797 }
+      }
+      <Normal> { -0.017670 0.494797 -0.868801 }
+    }
+    <Vertex> 1121 {
+      -21.1564331055 17.2314720154 8.26736927032
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.876369 -0.481641 -0.000000 }
+        <Binormal> { 0.391639 0.712606 0.507406 }
+      }
+      <Normal> { 0.494308 0.307321 -0.813135 }
+    }
+    <Vertex> 1122 {
+      -22.1829814911 14.5719957352 5.92019987106
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.876369 -0.481641 0.000000 }
+        <Binormal> { 0.188985 0.343866 0.823768 }
+      }
+      <Normal> { 0.755333 0.524857 -0.392376 }
+    }
+    <Vertex> 1123 {
+      -24.7824840546 16.0006504059 5.92019987106
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.476424 0.879147 }
+      }
+      <Normal> { -0.010041 0.879147 -0.476424 }
+    }
+    <Vertex> 1124 {
+      -24.2692089081 18.9422130585 8.26736927032
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.868801 0.494797 }
+      }
+      <Normal> { -0.017670 0.494797 -0.868801 }
+    }
+    <Vertex> 1125 {
+      -24.7824840546 16.0006504059 5.92019987106
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.476424 0.879147 }
+      }
+      <Normal> { -0.010041 0.879147 -0.476424 }
+    }
+    <Vertex> 1126 {
+      -27.3819828033 14.5719957352 5.92019987106
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.876368 0.481642 0.000000 }
+        <Binormal> { -0.138611 0.252210 0.854616 }
+      }
+      <Normal> { -0.790338 0.540819 -0.287790 }
+    }
+    <Vertex> 1127 {
+      -27.3819828033 17.231470108 8.26736927032
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.876368 0.481641 0.000000 }
+        <Binormal> { -0.304151 0.553417 0.662231 }
+      }
+      <Normal> { -0.672384 0.386120 -0.631489 }
+    }
+    <Vertex> 1128 {
+      -24.2692089081 18.9422130585 8.26736927032
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.868801 0.494797 }
+      }
+      <Normal> { -0.017670 0.494797 -0.868801 }
+    }
+    <Vertex> 1129 {
+      -27.3819828033 17.231470108 8.26736927032
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.876368 0.481641 0.000000 }
+        <Binormal> { -0.304151 0.553417 0.662231 }
+      }
+      <Normal> { -0.672384 0.386120 -0.631489 }
+    }
+    <Vertex> 1130 {
+      -27.381980896 20.8458690643 9.7945690155
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.876368 0.481641 0.000000 }
+        <Binormal> { -0.411395 0.748552 0.419874 }
+      }
+      <Normal> { -0.471053 0.220222 -0.854152 }
+    }
+    <Vertex> 1131 {
+      -23.5166072845 22.9702301025 9.7945690155
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.970458 0.240913 }
+      }
+      <Normal> { -0.012024 0.240913 -0.970458 }
+    }
+    <Vertex> 1132 {
+      -24.2692089081 18.9422130585 8.26736927032
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.868801 0.494797 }
+      }
+      <Normal> { -0.017670 0.494797 -0.868801 }
+    }
+    <Vertex> 1133 {
+      -23.5166072845 22.9702301025 9.7945690155
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.970458 0.240913 }
+      }
+      <Normal> { -0.012024 0.240913 -0.970458 }
+    }
+    <Vertex> 1134 {
+      -19.6512298584 20.8458690643 9.7945690155
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.876369 -0.481641 0.000000 }
+        <Binormal> { 0.459592 0.836251 0.256236 }
+      }
+      <Normal> { 0.258522 0.150304 -0.954222 }
+    }
+    <Vertex> 1135 {
+      -21.1564331055 17.2314720154 8.26736927032
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.876369 -0.481641 -0.000000 }
+        <Binormal> { 0.391639 0.712606 0.507406 }
+      }
+      <Normal> { 0.494308 0.307321 -0.813135 }
+    }
+    <Vertex> 1136 {
+      -28.4195747375 12.0992441177 8.26736927032
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.093167 0.995214 -0.029484 }
+        <Binormal> { -0.215134 0.049034 0.975307 }
+      }
+      <Normal> { -0.971435 0.091464 -0.218879 }
+    }
+    <Vertex> 1137 {
+      -27.3819828033 17.231470108 8.26736927032
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.198163 0.980169 -0.000000 }
+        <Binormal> { -0.618966 0.125138 0.735564 }
+      }
+      <Normal> { -0.672384 0.386120 -0.631489 }
+    }
+    <Vertex> 1138 {
+      -27.3819828033 14.5719957352 5.92019987106
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.198163 0.980169 0.000000 }
+        <Binormal> { -0.282082 0.057029 0.881835 }
+      }
+      <Normal> { -0.790338 0.540819 -0.287790 }
+    }
+    <Vertex> 1139 {
+      -28.2484836578 10.2860364914 5.92019987106
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.093167 0.995214 -0.029484 }
+        <Binormal> { -0.071892 0.036258 0.996706 }
+      }
+      <Normal> { -0.992340 0.097842 -0.075137 }
+    }
+    <Vertex> 1140 {
+      -28.4195747375 12.0992441177 8.26736927032
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.093167 0.995214 -0.029484 }
+        <Binormal> { -0.215134 0.049034 0.975307 }
+      }
+      <Normal> { -0.971435 0.091464 -0.218879 }
+    }
+    <Vertex> 1141 {
+      -28.2484836578 10.2860364914 5.92019987106
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.093167 0.995214 -0.029484 }
+        <Binormal> { -0.071892 0.036258 0.996706 }
+      }
+      <Normal> { -0.992340 0.097842 -0.075137 }
+    }
+    <Vertex> 1142 {
+      -28.2484836578 5.31602954865 6.19441509247
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.000000 0.998481 -0.055090 }
+        <Binormal> { -0.031173 0.055062 0.997963 }
+      }
+      <Normal> { -0.999481 -0.004425 -0.030976 }
+    }
+    <Vertex> 1143 {
+      -28.4195747375 6.14790582657 8.59572982788
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 0.998481 -0.055090 }
+        <Binormal> { -0.105982 0.054778 0.992814 }
+      }
+      <Normal> { -0.994324 -0.014924 -0.105319 }
+    }
+    <Vertex> 1144 {
+      -28.4195747375 12.0992441177 8.26736927032
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.093167 0.995214 -0.029484 }
+        <Binormal> { -0.215134 0.049034 0.975307 }
+      }
+      <Normal> { -0.971435 0.091464 -0.218879 }
+    }
+    <Vertex> 1145 {
+      -28.4195747375 6.14790582657 8.59572982788
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 0.998481 -0.055090 }
+        <Binormal> { -0.105982 0.054778 0.992814 }
+      }
+      <Normal> { -0.994324 -0.014924 -0.105319 }
+    }
+    <Vertex> 1146 {
+      -28.6704387665 7.08254098892 10.2023181915
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.000000 0.998481 -0.055090 }
+        <Binormal> { -0.250304 0.053323 0.966455 }
+      }
+      <Normal> { -0.967925 -0.034394 -0.248787 }
+    }
+    <Vertex> 1147 {
+      -28.6704425812 14.4727830887 9.7945690155
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.093167 0.995214 -0.029484 }
+        <Binormal> { -0.463364 0.069549 0.883397 }
+      }
+      <Normal> { -0.881191 0.068941 -0.467635 }
+    }
+    <Vertex> 1148 {
+      -28.4195747375 12.0992441177 8.26736927032
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.093167 0.995214 -0.029484 }
+        <Binormal> { -0.215134 0.049034 0.975307 }
+      }
+      <Normal> { -0.971435 0.091464 -0.218879 }
+    }
+    <Vertex> 1149 {
+      -28.6704425812 14.4727830887 9.7945690155
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.093167 0.995214 -0.029484 }
+        <Binormal> { -0.463364 0.069549 0.883397 }
+      }
+      <Normal> { -0.881191 0.068941 -0.467635 }
+    }
+    <Vertex> 1150 {
+      -27.381980896 20.8458690643 9.7945690155
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.198163 0.980169 0.000000 }
+        <Binormal> { -0.837213 0.169261 0.505352 }
+      }
+      <Normal> { -0.471053 0.220222 -0.854152 }
+    }
+    <Vertex> 1151 {
+      -27.3819828033 17.231470108 8.26736927032
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.198163 0.980169 -0.000000 }
+        <Binormal> { -0.618966 0.125138 0.735564 }
+      }
+      <Normal> { -0.672384 0.386120 -0.631489 }
+    }
+    <Vertex> 1152 {
+      -28.4195766449 -4.38060283661 10.8942480087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.146386 -0.988774 0.029953 }
+        <Binormal> { 0.026018 0.026371 0.997686 }
+      }
+      <Normal> { 0.979003 -0.202704 -0.020173 }
+    }
+    <Vertex> 1153 {
+      -29.3923187256 -6.69359064102 10.8942480087
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.387668 -0.921799 -0.000000 }
+        <Binormal> { 0.341915 -0.143795 0.850163 }
+      }
+      <Normal> { 0.638844 -0.673971 -0.370922 }
+    }
+    <Vertex> 1154 {
+      -29.0608310699 -5.40799951553 8.11392402649
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.387668 -0.921799 0.000000 }
+        <Binormal> { 0.047543 -0.019994 0.901160 }
+      }
+      <Normal> { 0.663839 -0.746086 -0.051576 }
+    }
+    <Vertex> 1155 {
+      -28.2484874725 -3.47640657425 8.11392402649
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.181984 -0.983116 0.019088 }
+        <Binormal> { -0.010956 0.021432 0.999391 }
+      }
+      <Normal> { 0.978484 -0.205664 0.015137 }
+    }
+    <Vertex> 1156 {
+      -28.4195766449 -4.38060283661 10.8942480087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.146386 -0.988774 0.029953 }
+        <Binormal> { 0.026018 0.026371 0.997686 }
+      }
+      <Normal> { 0.979003 -0.202704 -0.020173 }
+    }
+    <Vertex> 1157 {
+      -28.2484874725 -3.47640657425 8.11392402649
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.181984 -0.983116 0.019088 }
+        <Binormal> { -0.010956 0.021432 0.999391 }
+      }
+      <Normal> { 0.978484 -0.205664 0.015137 }
+    }
+    <Vertex> 1158 {
+      -28.1859474182 -0.681684911251 8.02215671539
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.111143 -0.007899 -0.993773 }
+        <Binormal> { -0.544723 0.826274 0.054354 }
+      }
+      <Normal> { -0.835414 -0.548418 -0.035432 }
+    }
+    <Vertex> 1159 {
+      -28.3763446808 -1.26454222202 10.6753396988
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.097239 0.144300 -0.984745 }
+        <Binormal> { -0.921965 0.316572 0.137429 }
+      }
+      <Normal> { -0.348643 -0.895932 -0.275124 }
+    }
+    <Vertex> 1160 {
+      -28.4195766449 -4.38060283661 10.8942480087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.146386 -0.988774 0.029953 }
+        <Binormal> { 0.026018 0.026371 0.997686 }
+      }
+      <Normal> { 0.979003 -0.202704 -0.020173 }
+    }
+    <Vertex> 1161 {
+      -28.3763446808 -1.26454222202 10.6753396988
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.097239 0.144300 -0.984745 }
+        <Binormal> { -0.921965 0.316572 0.137429 }
+      }
+      <Normal> { -0.348643 -0.895932 -0.275124 }
+    }
+    <Vertex> 1162 {
+      -28.6454277039 -2.13379597664 13.1591978073
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.061570 0.121340 -0.990700 }
+        <Binormal> { -0.802306 -0.341982 0.007976 }
+      }
+      <Normal> { 0.307718 -0.735984 -0.602985 }
+    }
+    <Vertex> 1163 {
+      -28.6704425812 -5.9915304184 13.0565700531
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.180184 -0.983519 -0.014998 }
+        <Binormal> { 0.047579 -0.023942 0.998392 }
+      }
+      <Normal> { 0.978881 -0.197821 -0.051393 }
+    }
+    <Vertex> 1164 {
+      -28.4195766449 -4.38060283661 10.8942480087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.146386 -0.988774 0.029953 }
+        <Binormal> { 0.026018 0.026371 0.997686 }
+      }
+      <Normal> { 0.979003 -0.202704 -0.020173 }
+    }
+    <Vertex> 1165 {
+      -28.6704425812 -5.9915304184 13.0565700531
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.180184 -0.983519 -0.014998 }
+        <Binormal> { 0.047579 -0.023942 0.998392 }
+      }
+      <Normal> { 0.978881 -0.197821 -0.051393 }
+    }
+    <Vertex> 1166 {
+      -29.8783760071 -8.86374759674 13.0565681458
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.387669 -0.921799 -0.000000 }
+        <Binormal> { 0.552764 -0.232469 0.752748 }
+      }
+      <Normal> { 0.588610 -0.542131 -0.599658 }
+    }
+    <Vertex> 1167 {
+      -29.3923187256 -6.69359064102 10.8942480087
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.387668 -0.921799 -0.000000 }
+        <Binormal> { 0.341915 -0.143795 0.850163 }
+      }
+      <Normal> { 0.638844 -0.673971 -0.370922 }
+    }
+    <Vertex> 1168 {
+      -32.310546875 -1.29661953449 10.8942480087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.994917 0.097788 -0.024031 }
+        <Binormal> { 0.043667 -0.204208 0.976925 }
+      }
+      <Normal> { -0.134587 0.968688 0.208502 }
+    }
+    <Vertex> 1169 {
+      -28.3763446808 -1.26454222202 10.6753396988
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.363999 0.135039 -0.921558 }
+        <Binormal> { -0.862806 0.221150 0.373199 }
+      }
+      <Normal> { -0.348643 -0.895932 -0.275124 }
+    }
+    <Vertex> 1170 {
+      -28.1859474182 -0.681684911251 8.02215671539
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.342135 0.443374 -0.828470 }
+        <Binormal> { -0.470057 0.679993 0.558034 }
+      }
+      <Normal> { -0.835414 -0.548418 -0.035432 }
+    }
+    <Vertex> 1171 {
+      -31.4978637695 -0.900949001312 8.11392402649
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.988793 0.148454 -0.015784 }
+        <Binormal> { 0.010278 0.037783 0.999230 }
+      }
+      <Normal> { -0.147343 0.988433 -0.035859 }
+    }
+    <Vertex> 1172 {
+      -32.310546875 -1.29661953449 10.8942480087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.994917 0.097788 -0.024031 }
+        <Binormal> { 0.043667 -0.204208 0.976925 }
+      }
+      <Normal> { -0.134587 0.968688 0.208502 }
+    }
+    <Vertex> 1173 {
+      -31.4978637695 -0.900949001312 8.11392402649
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.988793 0.148454 -0.015784 }
+        <Binormal> { 0.010278 0.037783 0.999230 }
+      }
+      <Normal> { -0.147343 0.988433 -0.035859 }
+    }
+    <Vertex> 1174 {
+      -33.9348983765 -1.54481327534 8.11392402649
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.966826 0.255436 0.000000 }
+        <Binormal> { -0.033903 0.128322 0.891650 }
+      }
+      <Normal> { -0.646199 0.751518 -0.132725 }
+    }
+    <Vertex> 1175 {
+      -35.2287712097 -2.06761550903 10.8942480087
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.966826 0.255436 0.000000 }
+        <Binormal> { -0.041854 0.158418 0.894986 }
+      }
+      <Normal> { -0.629688 0.759331 -0.163854 }
+    }
+    <Vertex> 1176 {
+      -32.310546875 -1.29661953449 10.8942480087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.994917 0.097788 -0.024031 }
+        <Binormal> { 0.043667 -0.204208 0.976925 }
+      }
+      <Normal> { -0.134587 0.968688 0.208502 }
+    }
+    <Vertex> 1177 {
+      -35.2287712097 -2.06761550903 10.8942480087
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.966826 0.255436 0.000000 }
+        <Binormal> { -0.041854 0.158418 0.894986 }
+      }
+      <Normal> { -0.629688 0.759331 -0.163854 }
+    }
+    <Vertex> 1178 {
+      -37.1259498596 -3.11931300163 13.0565681458
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.966826 0.255436 0.000000 }
+        <Binormal> { -0.044739 0.169335 0.903300 }
+      }
+      <Normal> { -0.609333 0.773309 -0.175146 }
+    }
+    <Vertex> 1179 {
+      -33.5021629333 -2.16190767288 13.0565700531
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.993244 0.115424 0.012020 }
+        <Binormal> { 0.044862 -0.477419 0.877428 }
+      }
+      <Normal> { -0.118503 0.869625 0.479232 }
+    }
+    <Vertex> 1180 {
+      -32.310546875 -1.29661953449 10.8942480087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.994917 0.097788 -0.024031 }
+        <Binormal> { 0.043667 -0.204208 0.976925 }
+      }
+      <Normal> { -0.134587 0.968688 0.208502 }
+    }
+    <Vertex> 1181 {
+      -33.5021629333 -2.16190767288 13.0565700531
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.993244 0.115424 0.012020 }
+        <Binormal> { 0.044862 -0.477419 0.877428 }
+      }
+      <Normal> { -0.118503 0.869625 0.479232 }
+    }
+    <Vertex> 1182 {
+      -28.6454277039 -2.13379597664 13.1591978073
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.664296 0.198375 -0.720665 }
+        <Binormal> { -0.650015 -0.622322 0.427868 }
+      }
+      <Normal> { 0.307718 -0.735984 -0.602985 }
+    }
+    <Vertex> 1183 {
+      -28.3763446808 -1.26454222202 10.6753396988
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.363999 0.135039 -0.921558 }
+        <Binormal> { -0.862806 0.221150 0.373199 }
+      }
+      <Normal> { -0.348643 -0.895932 -0.275124 }
+    }
+    <Vertex> 1184 {
+      -36.2015113831 -4.38060283661 10.8942480087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { -0.578356 -0.000000 0.815180 }
+      }
+      <Normal> { -0.815180 0.030915 -0.578356 }
+    }
+    <Vertex> 1185 {
+      -35.2287712097 -2.06761550903 10.8942480087
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.387668 0.921799 -0.000000 }
+        <Binormal> { -0.151040 0.063521 0.874814 }
+      }
+      <Normal> { -0.629688 0.759331 -0.163854 }
+    }
+    <Vertex> 1186 {
+      -33.9348983765 -1.54481327534 8.11392402649
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.387667 0.921799 0.000000 }
+        <Binormal> { -0.122346 0.051453 0.887005 }
+      }
+      <Normal> { -0.646199 0.751518 -0.132725 }
+    }
+    <Vertex> 1187 {
+      -34.7472381592 -3.47640657425 8.11392402649
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { -0.213172 -0.000000 0.976928 }
+      }
+      <Normal> { -0.976928 0.010285 -0.213172 }
+    }
+    <Vertex> 1188 {
+      -36.2015113831 -4.38060283661 10.8942480087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { -0.578356 -0.000000 0.815180 }
+      }
+      <Normal> { -0.815180 0.030915 -0.578356 }
+    }
+    <Vertex> 1189 {
+      -34.7472381592 -3.47640657425 8.11392402649
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { -0.213172 -0.000000 0.976928 }
+      }
+      <Normal> { -0.976928 0.010285 -0.213172 }
+    }
+    <Vertex> 1190 {
+      -33.9348983765 -5.40799951553 8.11392402649
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.387667 0.921799 0.000000 }
+        <Binormal> { -0.183589 -0.077209 0.879264 }
+      }
+      <Normal> { -0.642781 -0.739677 -0.199164 }
+    }
+    <Vertex> 1191 {
+      -35.2287712097 -6.69359064102 10.8942480087
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.387668 0.921799 0.000000 }
+        <Binormal> { -0.632631 -0.266057 0.651694 }
+      }
+      <Normal> { -0.475570 -0.550249 -0.686300 }
+    }
+    <Vertex> 1192 {
+      -36.2015113831 -4.38060283661 10.8942480087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { -0.578356 -0.000000 0.815180 }
+      }
+      <Normal> { -0.815180 0.030915 -0.578356 }
+    }
+    <Vertex> 1193 {
+      -35.2287712097 -6.69359064102 10.8942480087
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.387668 0.921799 0.000000 }
+        <Binormal> { -0.632631 -0.266057 0.651694 }
+      }
+      <Normal> { -0.475570 -0.550249 -0.686300 }
+    }
+    <Vertex> 1194 {
+      -37.1259498596 -8.86374759674 13.0565681458
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.387668 0.921799 0.000000 }
+        <Binormal> { -0.809721 -0.340533 0.429157 }
+      }
+      <Normal> { -0.314127 -0.360088 -0.878414 }
+    }
+    <Vertex> 1195 {
+      -38.3338775635 -5.9915304184 13.0565700531
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { -0.785607 -0.000000 0.616749 }
+      }
+      <Normal> { -0.616749 0.048585 -0.785607 }
+    }
+    <Vertex> 1196 {
+      -36.2015113831 -4.38060283661 10.8942480087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { -0.578356 -0.000000 0.815180 }
+      }
+      <Normal> { -0.815180 0.030915 -0.578356 }
+    }
+    <Vertex> 1197 {
+      -38.3338775635 -5.9915304184 13.0565700531
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { -0.785607 -0.000000 0.616749 }
+      }
+      <Normal> { -0.616749 0.048585 -0.785607 }
+    }
+    <Vertex> 1198 {
+      -37.1259498596 -3.11931300163 13.0565681458
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.387668 0.921799 -0.000000 }
+        <Binormal> { -0.161449 0.067899 0.861469 }
+      }
+      <Normal> { -0.609333 0.773309 -0.175146 }
+    }
+    <Vertex> 1199 {
+      -35.2287712097 -2.06761550903 10.8942480087
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.387668 0.921799 -0.000000 }
+        <Binormal> { -0.151040 0.063521 0.874814 }
+      }
+      <Normal> { -0.629688 0.759331 -0.163854 }
+    }
+    <Vertex> 1200 {
+      -32.310546875 -7.46458673477 10.8942480087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.602710 0.797876 }
+      }
+      <Normal> { 0.009919 -0.797876 -0.602710 }
+    }
+    <Vertex> 1201 {
+      -35.2287712097 -6.69359064102 10.8942480087
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.966826 0.255436 -0.000000 }
+        <Binormal> { -0.175306 -0.663533 0.653472 }
+      }
+      <Normal> { -0.475570 -0.550249 -0.686300 }
+    }
+    <Vertex> 1202 {
+      -33.9348983765 -5.40799951553 8.11392402649
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.966826 0.255436 0.000000 }
+        <Binormal> { -0.050874 -0.192557 0.879328 }
+      }
+      <Normal> { -0.642781 -0.739677 -0.199164 }
+    }
+    <Vertex> 1203 {
+      -31.4978637695 -6.05186367035 8.11392402649
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.126408 0.991943 }
+      }
+      <Normal> { 0.003876 -0.991943 -0.126408 }
+    }
+    <Vertex> 1204 {
+      -32.310546875 -7.46458673477 10.8942480087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.602710 0.797876 }
+      }
+      <Normal> { 0.009919 -0.797876 -0.602710 }
+    }
+    <Vertex> 1205 {
+      -31.4978637695 -6.05186367035 8.11392402649
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.126408 0.991943 }
+      }
+      <Normal> { 0.003876 -0.991943 -0.126408 }
+    }
+    <Vertex> 1206 {
+      -29.0608310699 -5.40799951553 8.11392402649
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.966826 -0.255436 0.000000 }
+        <Binormal> { 0.013174 -0.049865 0.890903 }
+      }
+      <Normal> { 0.663839 -0.746086 -0.051576 }
+    }
+    <Vertex> 1207 {
+      -29.3923187256 -6.69359064102 10.8942480087
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.966826 -0.255436 0.000000 }
+        <Binormal> { 0.094747 -0.358617 0.814796 }
+      }
+      <Normal> { 0.638844 -0.673971 -0.370922 }
+    }
+    <Vertex> 1208 {
+      -32.310546875 -7.46458673477 10.8942480087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.602710 0.797876 }
+      }
+      <Normal> { 0.009919 -0.797876 -0.602710 }
+    }
+    <Vertex> 1209 {
+      -29.3923187256 -6.69359064102 10.8942480087
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.966826 -0.255436 0.000000 }
+        <Binormal> { 0.094747 -0.358617 0.814796 }
+      }
+      <Normal> { 0.638844 -0.673971 -0.370922 }
+    }
+    <Vertex> 1210 {
+      -29.8783760071 -8.86374759674 13.0565681458
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.966826 -0.255436 0.000000 }
+        <Binormal> { 0.153174 -0.579765 0.674498 }
+      }
+      <Normal> { 0.588610 -0.542131 -0.599658 }
+    }
+    <Vertex> 1211 {
+      -33.5021629333 -9.82115268707 13.0565700531
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.833613 0.552171 }
+      }
+      <Normal> { 0.012085 -0.552171 -0.833613 }
+    }
+    <Vertex> 1212 {
+      -32.310546875 -7.46458673477 10.8942480087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.602710 0.797876 }
+      }
+      <Normal> { 0.009919 -0.797876 -0.602710 }
+    }
+    <Vertex> 1213 {
+      -33.5021629333 -9.82115268707 13.0565700531
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.833613 0.552171 }
+      }
+      <Normal> { 0.012085 -0.552171 -0.833613 }
+    }
+    <Vertex> 1214 {
+      -37.1259498596 -8.86374759674 13.0565681458
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.966826 0.255436 -0.000000 }
+        <Binormal> { -0.224378 -0.849274 0.428382 }
+      }
+      <Normal> { -0.314127 -0.360088 -0.878414 }
+    }
+    <Vertex> 1215 {
+      -35.2287712097 -6.69359064102 10.8942480087
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.966826 0.255436 -0.000000 }
+        <Binormal> { -0.175306 -0.663533 0.653472 }
+      }
+      <Normal> { -0.475570 -0.550249 -0.686300 }
+    }
+    <Vertex> 1216 {
+      -34.5580253601 -12.0296010971 14.0423679352
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.660451 0.750420 }
+      }
+      <Normal> { 0.024964 -0.750420 -0.660451 }
+    }
+    <Vertex> 1217 {
+      -38.8069992065 -10.9070224762 14.0423679352
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.966826 0.255435 -0.000000 }
+        <Binormal> { -0.189571 -0.717529 0.588021 }
+      }
+      <Normal> { -0.461104 -0.486373 -0.742149 }
+    }
+    <Vertex> 1218 {
+      -37.1259498596 -8.86374759674 13.0565681458
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.966826 0.255435 -0.000000 }
+        <Binormal> { -0.224378 -0.849274 0.428382 }
+      }
+      <Normal> { -0.314127 -0.360088 -0.878414 }
+    }
+    <Vertex> 1219 {
+      -33.5021629333 -9.82115268707 13.0565700531
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.833613 0.552171 }
+      }
+      <Normal> { 0.012085 -0.552171 -0.833613 }
+    }
+    <Vertex> 1220 {
+      -34.5580253601 -12.0296010971 14.0423679352
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.660451 0.750420 }
+      }
+      <Normal> { 0.024964 -0.750420 -0.660451 }
+    }
+    <Vertex> 1221 {
+      -33.5021629333 -9.82115268707 13.0565700531
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.833613 0.552171 }
+      }
+      <Normal> { 0.012085 -0.552171 -0.833613 }
+    }
+    <Vertex> 1222 {
+      -29.8783760071 -8.86374759674 13.0565681458
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.966826 -0.255436 0.000000 }
+        <Binormal> { 0.153174 -0.579765 0.674498 }
+      }
+      <Normal> { 0.588610 -0.542131 -0.599658 }
+    }
+    <Vertex> 1223 {
+      -30.3090572357 -10.9070224762 14.0423679352
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.966826 -0.255436 0.000000 }
+        <Binormal> { -0.020572 0.077867 0.906232 }
+      }
+      <Normal> { 0.632710 -0.770165 0.080538 }
+    }
+    <Vertex> 1224 {
+      -34.5580253601 -12.0296010971 14.0423679352
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.660451 0.750420 }
+      }
+      <Normal> { 0.024964 -0.750420 -0.660451 }
+    }
+    <Vertex> 1225 {
+      -30.3090572357 -10.9070224762 14.0423679352
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.966826 -0.255436 0.000000 }
+        <Binormal> { -0.020572 0.077867 0.906232 }
+      }
+      <Normal> { 0.632710 -0.770165 0.080538 }
+    }
+    <Vertex> 1226 {
+      -31.7861881256 -11.0136041641 14.2632236481
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.953146 -0.302362 0.009492 }
+        <Binormal> { -0.272284 0.871040 0.404807 }
+      }
+      <Normal> { 0.185034 -0.366008 0.912015 }
+    }
+    <Vertex> 1227 {
+      -35.2990150452 -12.3532590866 14.3405208588
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -1.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 0.740074 0.672140 }
+      }
+      <Normal> { 0.021332 -0.672140 0.740074 }
+    }
+    <Vertex> 1228 {
+      -34.5580253601 -12.0296010971 14.0423679352
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.660451 0.750420 }
+      }
+      <Normal> { 0.024964 -0.750420 -0.660451 }
+    }
+    <Vertex> 1229 {
+      -35.2990150452 -12.3532590866 14.3405208588
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -1.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 0.740074 0.672140 }
+      }
+      <Normal> { 0.021332 -0.672140 0.740074 }
+    }
+    <Vertex> 1230 {
+      -38.4276237488 -11.0136041641 14.2632236481
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.870147 -0.491220 -0.039322 }
+        <Binormal> { -0.126266 0.201624 0.275373 }
+      }
+      <Normal> { -0.683126 -0.702109 0.200842 }
+    }
+    <Vertex> 1231 {
+      -38.8069992065 -10.9070224762 14.0423679352
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.966826 0.255435 -0.000000 }
+        <Binormal> { -0.189571 -0.717529 0.588021 }
+      }
+      <Normal> { -0.461104 -0.486373 -0.742149 }
+    }
+    <Vertex> 1232 {
+      -40.2233200073 -7.53928661346 14.0423679352
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { -0.304331 0.000000 0.946867 }
+      }
+      <Normal> { -0.946867 -0.103671 -0.304331 }
+    }
+    <Vertex> 1233 {
+      -38.8069953918 -4.17154932022 14.0423679352
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.387669 0.921799 -0.000000 }
+        <Binormal> { 0.642111 -0.270044 0.634241 }
+      }
+      <Normal> { -0.454634 0.555010 0.696585 }
+    }
+    <Vertex> 1234 {
+      -37.1259498596 -3.11931300163 13.0565681458
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.387668 0.921799 -0.000000 }
+        <Binormal> { -0.161449 0.067899 0.861469 }
+      }
+      <Normal> { -0.609333 0.773309 -0.175146 }
+    }
+    <Vertex> 1235 {
+      -38.3338775635 -5.9915304184 13.0565700531
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { -0.785607 -0.000000 0.616749 }
+      }
+      <Normal> { -0.616749 0.048585 -0.785607 }
+    }
+    <Vertex> 1236 {
+      -40.2233200073 -7.53928661346 14.0423679352
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { -0.304331 0.000000 0.946867 }
+      }
+      <Normal> { -0.946867 -0.103671 -0.304331 }
+    }
+    <Vertex> 1237 {
+      -38.3338775635 -5.9915304184 13.0565700531
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { -0.785607 -0.000000 0.616749 }
+      }
+      <Normal> { -0.616749 0.048585 -0.785607 }
+    }
+    <Vertex> 1238 {
+      -37.1259498596 -8.86374759674 13.0565681458
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.387668 0.921799 0.000000 }
+        <Binormal> { -0.809721 -0.340533 0.429157 }
+      }
+      <Normal> { -0.314127 -0.360088 -0.878414 }
+    }
+    <Vertex> 1239 {
+      -38.8069992065 -10.9070224762 14.0423679352
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.387668 0.921799 0.000000 }
+        <Binormal> { -0.684112 -0.287707 0.613597 }
+      }
+      <Normal> { -0.461104 -0.486373 -0.742149 }
+    }
+    <Vertex> 1240 {
+      -40.2233200073 -7.53928661346 14.0423679352
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { -0.304331 0.000000 0.946867 }
+      }
+      <Normal> { -0.946867 -0.103671 -0.304331 }
+    }
+    <Vertex> 1241 {
+      -38.8069992065 -10.9070224762 14.0423679352
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.387668 0.921799 0.000000 }
+        <Binormal> { -0.684112 -0.287707 0.613597 }
+      }
+      <Normal> { -0.461104 -0.486373 -0.742149 }
+    }
+    <Vertex> 1242 {
+      -38.4276237488 -11.0136041641 14.2632236481
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.456416 0.889685 0.012055 }
+        <Binormal> { 0.187150 0.083433 0.928221 }
+      }
+      <Normal> { -0.683126 -0.702109 0.200842 }
+    }
+    <Vertex> 1243 {
+      -39.9379806519 -8.67641353607 14.3405208588
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.365978 -0.105228 0.924619 }
+    }
+    <Vertex> 1244 {
+      -40.2233200073 -7.53928661346 14.0423679352
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { -0.304331 0.000000 0.946867 }
+      }
+      <Normal> { -0.946867 -0.103671 -0.304331 }
+    }
+    <Vertex> 1245 {
+      -39.9379806519 -8.67641353607 14.3405208588
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.365978 -0.105228 0.924619 }
+    }
+    <Vertex> 1246 {
+      -38.4276237488 -5.74959993362 14.2632236481
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.421584 0.906721 -0.011135 }
+        <Binormal> { 0.897931 -0.415785 0.139384 }
+      }
+      <Normal> { -0.105960 0.102725 0.989044 }
+    }
+    <Vertex> 1247 {
+      -38.8069953918 -4.17154932022 14.0423679352
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.387669 0.921799 -0.000000 }
+        <Binormal> { 0.642111 -0.270044 0.634241 }
+      }
+      <Normal> { -0.454634 0.555010 0.696585 }
+    }
+    <Vertex> 1248 {
+      -34.5580253601 -3.04897022247 14.0423679352
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.993545 0.109926 -0.028014 }
+        <Binormal> { 0.109044 -0.857846 0.501182 }
+      }
+      <Normal> { -0.062044 0.497574 0.865169 }
+    }
+    <Vertex> 1249 {
+      -28.829782486 -3.0022649765 13.7236375809
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.364006 0.135040 -0.921555 }
+        <Binormal> { -0.045515 0.164283 0.042051 }
+      }
+      <Normal> { 0.201270 -0.190191 0.960875 }
+    }
+    <Vertex> 1250 {
+      -28.6454277039 -2.13379597664 13.1591978073
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.577359 0.180908 -0.796196 }
+        <Binormal> { -0.695073 -0.593143 0.369259 }
+      }
+      <Normal> { 0.307718 -0.735984 -0.602985 }
+    }
+    <Vertex> 1251 {
+      -33.5021629333 -2.16190767288 13.0565700531
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.993244 0.115424 0.012020 }
+        <Binormal> { 0.044862 -0.477419 0.877428 }
+      }
+      <Normal> { -0.118503 0.869625 0.479232 }
+    }
+    <Vertex> 1252 {
+      -34.5580253601 -3.04897022247 14.0423679352
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.993545 0.109926 -0.028014 }
+        <Binormal> { 0.109044 -0.857846 0.501182 }
+      }
+      <Normal> { -0.062044 0.497574 0.865169 }
+    }
+    <Vertex> 1253 {
+      -33.5021629333 -2.16190767288 13.0565700531
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.993244 0.115424 0.012020 }
+        <Binormal> { 0.044862 -0.477419 0.877428 }
+      }
+      <Normal> { -0.118503 0.869625 0.479232 }
+    }
+    <Vertex> 1254 {
+      -37.1259498596 -3.11931300163 13.0565681458
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.966826 0.255436 0.000000 }
+        <Binormal> { -0.044739 0.169335 0.903300 }
+      }
+      <Normal> { -0.609333 0.773309 -0.175146 }
+    }
+    <Vertex> 1255 {
+      -38.8069953918 -4.17154932022 14.0423679352
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.966826 0.255436 0.000000 }
+        <Binormal> { 0.177933 -0.673477 0.652728 }
+      }
+      <Normal> { -0.454634 0.555010 0.696585 }
+    }
+    <Vertex> 1256 {
+      -34.5580253601 -3.04897022247 14.0423679352
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.993545 0.109926 -0.028014 }
+        <Binormal> { 0.109044 -0.857846 0.501182 }
+      }
+      <Normal> { -0.062044 0.497574 0.865169 }
+    }
+    <Vertex> 1257 {
+      -38.8069953918 -4.17154932022 14.0423679352
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.966826 0.255436 0.000000 }
+        <Binormal> { 0.177933 -0.673477 0.652728 }
+      }
+      <Normal> { -0.454634 0.555010 0.696585 }
+    }
+    <Vertex> 1258 {
+      -38.4276237488 -5.74959993362 14.2632236481
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.739475 -0.672354 0.033417 }
+        <Binormal> { -0.668420 -0.734914 0.004720 }
+      }
+      <Normal> { -0.105960 0.102725 0.989044 }
+    }
+    <Vertex> 1259 {
+      -35.2990150452 -4.99956703186 14.3405208588
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.977159 0.211303 -0.022630 }
+        <Binormal> { 0.212505 -0.971121 0.108295 }
+      }
+      <Normal> { -0.004578 0.109836 0.993927 }
+    }
+    <Vertex> 1260 {
+      -34.5580253601 -3.04897022247 14.0423679352
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.993545 0.109926 -0.028014 }
+        <Binormal> { 0.109044 -0.857846 0.501182 }
+      }
+      <Normal> { -0.062044 0.497574 0.865169 }
+    }
+    <Vertex> 1261 {
+      -35.2990150452 -4.99956703186 14.3405208588
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.977159 0.211303 -0.022630 }
+        <Binormal> { 0.212505 -0.971121 0.108295 }
+      }
+      <Normal> { -0.004578 0.109836 0.993927 }
+    }
+    <Vertex> 1262 {
+      -28.9950714111 -3.70988488197 14.0447750092
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.853789 -0.505848 0.123132 }
+        <Binormal> { -0.508166 -0.840286 0.071545 }
+      }
+      <Normal> { 0.081942 0.035249 0.996002 }
+    }
+    <Vertex> 1263 {
+      -28.829782486 -3.0022649765 13.7236375809
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.364006 0.135040 -0.921555 }
+        <Binormal> { -0.045515 0.164283 0.042051 }
+      }
+      <Normal> { 0.201270 -0.190191 0.960875 }
+    }
+    <Vertex> 1264 {
+      -28.8927326202 -7.53928565979 14.0423679352
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.179573 -0.983117 0.035133 }
+        <Binormal> { -0.591827 0.136466 0.793732 }
+      }
+      <Normal> { 0.779351 -0.153356 0.607471 }
+    }
+    <Vertex> 1265 {
+      -30.3090572357 -10.9070224762 14.0423679352
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.387669 -0.921799 -0.000000 }
+        <Binormal> { -0.074240 0.031222 0.881800 }
+      }
+      <Normal> { 0.632710 -0.770165 0.080538 }
+    }
+    <Vertex> 1266 {
+      -29.8783760071 -8.86374759674 13.0565681458
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.387669 -0.921799 -0.000000 }
+        <Binormal> { 0.552764 -0.232469 0.752748 }
+      }
+      <Normal> { 0.588610 -0.542131 -0.599658 }
+    }
+    <Vertex> 1267 {
+      -28.6704425812 -5.9915304184 13.0565700531
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.180184 -0.983519 -0.014998 }
+        <Binormal> { 0.047579 -0.023942 0.998392 }
+      }
+      <Normal> { 0.978881 -0.197821 -0.051393 }
+    }
+    <Vertex> 1268 {
+      -28.8927326202 -7.53928565979 14.0423679352
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.179573 -0.983117 0.035133 }
+        <Binormal> { -0.591827 0.136466 0.793732 }
+      }
+      <Normal> { 0.779351 -0.153356 0.607471 }
+    }
+    <Vertex> 1269 {
+      -28.6704425812 -5.9915304184 13.0565700531
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.180184 -0.983519 -0.014998 }
+        <Binormal> { 0.047579 -0.023942 0.998392 }
+      }
+      <Normal> { 0.978881 -0.197821 -0.051393 }
+    }
+    <Vertex> 1270 {
+      -28.6454277039 -2.13379597664 13.1591978073
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.068107 0.125558 -0.989746 }
+        <Binormal> { -0.804147 -0.345630 0.011489 }
+      }
+      <Normal> { 0.307718 -0.735984 -0.602985 }
+    }
+    <Vertex> 1271 {
+      -28.829782486 -3.0022649765 13.7236375809
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.013839 -0.997446 0.070072 }
+        <Binormal> { -0.945094 0.027401 0.203388 }
+      }
+      <Normal> { 0.201270 -0.190191 0.960875 }
+    }
+    <Vertex> 1272 {
+      -28.8927326202 -7.53928565979 14.0423679352
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.179573 -0.983117 0.035133 }
+        <Binormal> { -0.591827 0.136466 0.793732 }
+      }
+      <Normal> { 0.779351 -0.153356 0.607471 }
+    }
+    <Vertex> 1273 {
+      -28.829782486 -3.0022649765 13.7236375809
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.013839 -0.997446 0.070072 }
+        <Binormal> { -0.945094 0.027401 0.203388 }
+      }
+      <Normal> { 0.201270 -0.190191 0.960875 }
+    }
+    <Vertex> 1274 {
+      -28.9950714111 -3.70988488197 14.0447750092
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.000005 -0.992098 0.125465 }
+        <Binormal> { -0.992554 0.010275 0.081295 }
+      }
+      <Normal> { 0.081942 0.035249 0.996002 }
+    }
+    <Vertex> 1275 {
+      -30.6600494385 -8.67641353607 14.3405208588
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.356833 -0.933751 0.027928 }
+        <Binormal> { -0.923794 0.357151 0.137845 }
+      }
+      <Normal> { 0.138890 -0.022858 0.990020 }
+    }
+    <Vertex> 1276 {
+      -28.8927326202 -7.53928565979 14.0423679352
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.179573 -0.983117 0.035133 }
+        <Binormal> { -0.591827 0.136466 0.793732 }
+      }
+      <Normal> { 0.779351 -0.153356 0.607471 }
+    }
+    <Vertex> 1277 {
+      -30.6600494385 -8.67641353607 14.3405208588
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.356833 -0.933751 0.027928 }
+        <Binormal> { -0.923794 0.357151 0.137845 }
+      }
+      <Normal> { 0.138890 -0.022858 0.990020 }
+    }
+    <Vertex> 1278 {
+      -31.7861881256 -11.0136041641 14.2632236481
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.407035 -0.913329 -0.012375 }
+        <Binormal> { -0.837499 0.368932 0.317975 }
+      }
+      <Normal> { 0.185034 -0.366008 0.912015 }
+    }
+    <Vertex> 1279 {
+      -30.3090572357 -10.9070224762 14.0423679352
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.387669 -0.921799 -0.000000 }
+        <Binormal> { -0.074240 0.031222 0.881800 }
+      }
+      <Normal> { 0.632710 -0.770165 0.080538 }
+    }
+    <Vertex> 1280 {
+      -28.8927268982 16.4555644989 10.2176017761
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.091156 0.995372 -0.030408 }
+        <Binormal> { 0.488418 -0.018081 0.872313 }
+      }
+      <Normal> { -0.868923 0.081301 0.488205 }
+    }
+    <Vertex> 1281 {
+      -27.381980896 23.9281463623 10.2176017761
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.198163 0.980169 0.000000 }
+        <Binormal> { 0.312953 -0.063270 0.942994 }
+      }
+      <Normal> { -0.905728 0.278695 0.319285 }
+    }
+    <Vertex> 1282 {
+      -27.381980896 20.8458690643 9.7945690155
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.198163 0.980169 0.000000 }
+        <Binormal> { -0.837213 0.169261 0.505351 }
+      }
+      <Normal> { -0.471053 0.220222 -0.854152 }
+    }
+    <Vertex> 1283 {
+      -28.6704425812 14.4727830887 9.7945690155
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.093167 0.995214 -0.029484 }
+        <Binormal> { -0.463364 0.069549 0.883397 }
+      }
+      <Normal> { -0.881191 0.068941 -0.467635 }
+    }
+    <Vertex> 1284 {
+      -28.8927268982 16.4555644989 10.2176017761
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.091156 0.995372 -0.030408 }
+        <Binormal> { 0.488418 -0.018081 0.872313 }
+      }
+      <Normal> { -0.868923 0.081301 0.488205 }
+    }
+    <Vertex> 1285 {
+      -28.6704425812 14.4727830887 9.7945690155
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.093167 0.995214 -0.029484 }
+        <Binormal> { -0.463364 0.069549 0.883397 }
+      }
+      <Normal> { -0.881191 0.068941 -0.467635 }
+    }
+    <Vertex> 1286 {
+      -28.6704387665 7.08254098892 10.2023181915
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.000000 0.998481 -0.055090 }
+        <Binormal> { -0.250304 0.053323 0.966455 }
+      }
+      <Normal> { -0.967925 -0.034394 -0.248787 }
+    }
+    <Vertex> 1287 {
+      -28.8927268982 7.79034566879 10.6956977844
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 0.998481 -0.055090 }
+        <Binormal> { 0.559021 0.045588 0.826253 }
+      }
+      <Normal> { -0.827509 0.082583 0.555315 }
+    }
+    <Vertex> 1288 {
+      -28.8927268982 16.4555644989 10.2176017761
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.091156 0.995372 -0.030408 }
+        <Binormal> { 0.488418 -0.018081 0.872313 }
+      }
+      <Normal> { -0.868923 0.081301 0.488205 }
+    }
+    <Vertex> 1289 {
+      -28.8927268982 7.79034566879 10.6956977844
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 0.998481 -0.055090 }
+        <Binormal> { 0.559021 0.045588 0.826253 }
+      }
+      <Normal> { -0.827509 0.082583 0.555315 }
+    }
+    <Vertex> 1290 {
+      -27.3299808502 8.23613834381 10.6482791901
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.000000 0.902407 0.430885 }
+        <Binormal> { 0.831451 -0.002551 0.005343 }
+      }
+      <Normal> { -0.005921 0.143071 0.989685 }
+    }
+    <Vertex> 1291 {
+      -27.3299808502 17.7961158752 10.1208152771
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.021516 0.022462 0.999512 }
+    }
+    <Vertex> 1292 {
+      -28.8927268982 16.4555644989 10.2176017761
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.091156 0.995372 -0.030408 }
+        <Binormal> { 0.488418 -0.018081 0.872313 }
+      }
+      <Normal> { -0.868923 0.081301 0.488205 }
+    }
+    <Vertex> 1293 {
+      -27.3299808502 17.7961158752 10.1208152771
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.021516 0.022462 0.999512 }
+    }
+    <Vertex> 1294 {
+      -26.0451831818 23.288646698 10.1459083557
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.210776 0.977533 0.001892 }
+        <Binormal> { 0.976338 -0.210431 -0.045209 }
+      }
+      <Normal> { 0.039583 -0.030915 0.998718 }
+    }
+    <Vertex> 1295 {
+      -27.381980896 23.9281463623 10.2176017761
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.198163 0.980169 0.000000 }
+        <Binormal> { 0.312953 -0.063270 0.942994 }
+      }
+      <Normal> { -0.905728 0.278695 0.319285 }
+    }
+    <Vertex> 1296 {
+      -22.8497428894 26.419008255 10.2176017761
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.038606 0.546617 }
+      }
+      <Normal> { -0.836451 0.546617 0.038606 }
+    }
+    <Vertex> 1297 {
+      -18.3175067902 23.9281463623 10.2176017761
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.876368 -0.481641 0.000000 }
+        <Binormal> { -0.075156 -0.136750 -0.125397 }
+      }
+      <Normal> { 0.798212 -0.581774 0.156041 }
+    }
+    <Vertex> 1298 {
+      -19.6512298584 20.8458690643 9.7945690155
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.876369 -0.481641 0.000000 }
+        <Binormal> { 0.459593 0.836250 0.256236 }
+      }
+      <Normal> { 0.258522 0.150304 -0.954222 }
+    }
+    <Vertex> 1299 {
+      -23.5166072845 22.9702301025 9.7945690155
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.970458 0.240913 }
+      }
+      <Normal> { -0.012024 0.240913 -0.970458 }
+    }
+    <Vertex> 1300 {
+      -22.8497428894 26.419008255 10.2176017761
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.038606 0.546617 }
+      }
+      <Normal> { -0.836451 0.546617 0.038606 }
+    }
+    <Vertex> 1301 {
+      -23.5166072845 22.9702301025 9.7945690155
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.970458 0.240913 }
+      }
+      <Normal> { -0.012024 0.240913 -0.970458 }
+    }
+    <Vertex> 1302 {
+      -27.381980896 20.8458690643 9.7945690155
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.876368 0.481641 0.000000 }
+        <Binormal> { -0.411395 0.748552 0.419874 }
+      }
+      <Normal> { -0.471053 0.220222 -0.854152 }
+    }
+    <Vertex> 1303 {
+      -27.381980896 23.9281463623 10.2176017761
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.876368 0.481641 0.000000 }
+        <Binormal> { 0.153781 -0.279811 0.680476 }
+      }
+      <Normal> { -0.905728 0.278695 0.319285 }
+    }
+    <Vertex> 1304 {
+      -22.8497428894 26.419008255 10.2176017761
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.038606 0.546617 }
+      }
+      <Normal> { -0.836451 0.546617 0.038606 }
+    }
+    <Vertex> 1305 {
+      -27.381980896 23.9281463623 10.2176017761
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.876368 0.481641 0.000000 }
+        <Binormal> { 0.153781 -0.279811 0.680476 }
+      }
+      <Normal> { -0.905728 0.278695 0.319285 }
+    }
+    <Vertex> 1306 {
+      -26.0451831818 23.288646698 10.1459083557
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.659829 -0.751376 -0.007698 }
+        <Binormal> { -0.750651 -0.659288 0.009343 }
+      }
+      <Normal> { 0.039583 -0.030915 0.998718 }
+    }
+    <Vertex> 1307 {
+      -22.3817481995 25.9545726776 10.1208152771
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.998413 -0.054903 }
+      }
+      <Normal> { -0.010865 -0.054903 0.998413 }
+    }
+    <Vertex> 1308 {
+      -22.8497428894 26.419008255 10.2176017761
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.038606 0.546617 }
+      }
+      <Normal> { -0.836451 0.546617 0.038606 }
+    }
+    <Vertex> 1309 {
+      -22.3817481995 25.9545726776 10.1208152771
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.998413 -0.054903 }
+      }
+      <Normal> { -0.010865 -0.054903 0.998413 }
+    }
+    <Vertex> 1310 {
+      -18.9609832764 23.288646698 10.1459083557
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.839051 -0.544047 0.002647 }
+        <Binormal> { -0.540966 -0.834767 -0.096073 }
+      }
+      <Normal> { -0.084292 -0.059847 0.994629 }
+    }
+    <Vertex> 1311 {
+      -18.3175067902 23.9281463623 10.2176017761
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.876368 -0.481641 0.000000 }
+        <Binormal> { -0.075156 -0.136750 -0.125397 }
+      }
+      <Normal> { 0.798212 -0.581774 0.156041 }
+    }
+    <Vertex> 1312 {
+      -22.8497486115 -3.04897022247 14.0423679352
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.996965 -0.077116 0.010656 }
+        <Binormal> { 0.049225 -0.518567 0.852595 }
+      }
+      <Normal> { 0.101016 -0.847377 -0.521226 }
+    }
+    <Vertex> 1313 {
+      -28.829782486 -3.0022649765 13.7236375809
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.364006 0.135040 -0.921555 }
+        <Binormal> { -0.045515 0.164283 0.042051 }
+      }
+      <Normal> { 0.201270 -0.190191 0.960875 }
+    }
+    <Vertex> 1314 {
+      -28.6454277039 -2.13379597664 13.1591978073
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.577359 0.180908 -0.796196 }
+        <Binormal> { -0.695073 -0.593143 0.369259 }
+      }
+      <Normal> { 0.307718 -0.735984 -0.602985 }
+    }
+    <Vertex> 1315 {
+      -23.5166091919 -2.16190767288 13.0565700531
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.992431 -0.109132 0.056316 }
+        <Binormal> { 0.108339 -0.562327 0.819497 }
+      }
+      <Normal> { 0.078890 -0.817072 -0.571093 }
+    }
+    <Vertex> 1316 {
+      -22.8497486115 -3.04897022247 14.0423679352
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.996965 -0.077116 0.010656 }
+        <Binormal> { 0.049225 -0.518567 0.852595 }
+      }
+      <Normal> { 0.101016 -0.847377 -0.521226 }
+    }
+    <Vertex> 1317 {
+      -23.5166091919 -2.16190767288 13.0565700531
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.992431 -0.109132 0.056316 }
+        <Binormal> { 0.108339 -0.562327 0.819497 }
+      }
+      <Normal> { 0.078890 -0.817072 -0.571093 }
+    }
+    <Vertex> 1318 {
+      -19.6512355804 -1.14475238323 12.6488189697
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.962084 -0.253168 0.101488 }
+        <Binormal> { 0.237370 -0.611253 0.725411 }
+      }
+      <Normal> { 0.322794 -0.669057 -0.669393 }
+    }
+    <Vertex> 1319 {
+      -18.3175125122 -1.8563337326 13.5642719269
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.962084 -0.253168 0.101488 }
+        <Binormal> { -0.052895 0.506027 0.760877 }
+      }
+      <Normal> { 0.631397 -0.624714 0.459365 }
+    }
+    <Vertex> 1320 {
+      -22.8497486115 -3.04897022247 14.0423679352
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.996965 -0.077116 0.010656 }
+        <Binormal> { 0.049225 -0.518567 0.852595 }
+      }
+      <Normal> { 0.101016 -0.847377 -0.521226 }
+    }
+    <Vertex> 1321 {
+      -18.3175125122 -1.8563337326 13.5642719269
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.962084 -0.253168 0.101488 }
+        <Binormal> { -0.052895 0.506027 0.760877 }
+      }
+      <Normal> { 0.631397 -0.624714 0.459365 }
+    }
+    <Vertex> 1322 {
+      -18.9609870911 -1.20865499973 13.3255090714
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.952802 -0.281489 0.113717 }
+        <Binormal> { -0.303502 0.891486 -0.336217 }
+      }
+      <Normal> { 0.014405 0.357128 0.933927 }
+    }
+    <Vertex> 1323 {
+      -22.3817577362 -2.36559605598 13.7966022491
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.995866 0.058440 0.069537 }
+        <Binormal> { 0.049682 -0.985699 0.116894 }
+      }
+      <Normal> { 0.034761 0.119419 0.992218 }
+    }
+    <Vertex> 1324 {
+      -22.8497486115 -3.04897022247 14.0423679352
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.996965 -0.077116 0.010656 }
+        <Binormal> { 0.049225 -0.518567 0.852595 }
+      }
+      <Normal> { 0.101016 -0.847377 -0.521226 }
+    }
+    <Vertex> 1325 {
+      -22.3817577362 -2.36559605598 13.7966022491
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.995866 0.058440 0.069537 }
+        <Binormal> { 0.049682 -0.985699 0.116894 }
+      }
+      <Normal> { 0.034761 0.119419 0.992218 }
+    }
+    <Vertex> 1326 {
+      -28.9950714111 -3.70988488197 14.0447750092
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.853789 -0.505848 0.123132 }
+        <Binormal> { -0.508166 -0.840286 0.071545 }
+      }
+      <Normal> { 0.081942 0.035249 0.996002 }
+    }
+    <Vertex> 1327 {
+      -28.829782486 -3.0022649765 13.7236375809
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.364006 0.135040 -0.921555 }
+        <Binormal> { -0.045515 0.164283 0.042051 }
+      }
+      <Normal> { 0.201270 -0.190191 0.960875 }
+    }
+    <Vertex> 1328 {
+      -28.8927268982 1.721575737 12.1299848557
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.047412 0.962643 -0.266591 }
+        <Binormal> { 0.528427 0.202011 0.823429 }
+      }
+      <Normal> { -0.848567 0.138401 0.510605 }
+    }
+    <Vertex> 1329 {
+      -28.8927268982 7.79034566879 10.6956977844
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 0.973190 -0.230003 }
+        <Binormal> { 0.559421 0.190329 0.805324 }
+      }
+      <Normal> { -0.827509 0.082583 0.555315 }
+    }
+    <Vertex> 1330 {
+      -28.6704387665 7.08254098892 10.2023181915
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.000000 0.973190 -0.230003 }
+        <Binormal> { -0.250028 0.222626 0.941975 }
+      }
+      <Normal> { -0.967925 -0.034394 -0.248787 }
+    }
+    <Vertex> 1331 {
+      -28.6704425812 1.90671312809 11.4255685806
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.002584 0.952191 -0.305492 }
+        <Binormal> { -0.269584 0.293513 0.917134 }
+      }
+      <Normal> { -0.962951 -0.085513 -0.255684 }
+    }
+    <Vertex> 1332 {
+      -28.8927268982 1.721575737 12.1299848557
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.047412 0.962643 -0.266591 }
+        <Binormal> { 0.528427 0.202011 0.823429 }
+      }
+      <Normal> { -0.848567 0.138401 0.510605 }
+    }
+    <Vertex> 1333 {
+      -28.6704425812 1.90671312809 11.4255685806
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.002584 0.952191 -0.305492 }
+        <Binormal> { -0.269584 0.293513 0.917134 }
+      }
+      <Normal> { -0.962951 -0.085513 -0.255684 }
+    }
+    <Vertex> 1334 {
+      -28.6454277039 -2.13379597664 13.1591978073
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.068107 0.125558 -0.989746 }
+        <Binormal> { -0.804147 -0.345630 0.011489 }
+      }
+      <Normal> { 0.307718 -0.735984 -0.602985 }
+    }
+    <Vertex> 1335 {
+      -28.829782486 -3.0022649765 13.7236375809
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.013839 -0.997446 0.070072 }
+        <Binormal> { -0.945094 0.027401 0.203388 }
+      }
+      <Normal> { 0.201270 -0.190191 0.960875 }
+    }
+    <Vertex> 1336 {
+      -28.8927268982 1.721575737 12.1299848557
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.047412 0.962643 -0.266591 }
+        <Binormal> { 0.528427 0.202011 0.823429 }
+      }
+      <Normal> { -0.848567 0.138401 0.510605 }
+    }
+    <Vertex> 1337 {
+      -28.829782486 -3.0022649765 13.7236375809
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.013839 -0.997446 0.070072 }
+        <Binormal> { -0.945094 0.027401 0.203388 }
+      }
+      <Normal> { 0.201270 -0.190191 0.960875 }
+    }
+    <Vertex> 1338 {
+      -28.9950714111 -3.70988488197 14.0447750092
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.000005 -0.992098 0.125465 }
+        <Binormal> { -0.992554 0.010275 0.081295 }
+      }
+      <Normal> { 0.081942 0.035249 0.996002 }
+    }
+    <Vertex> 1339 {
+      -27.3299808502 1.5407140255 12.2306690216
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.957640 -0.000000 -0.033296 }
+      }
+      <Normal> { -0.033296 0.285958 0.957640 }
+    }
+    <Vertex> 1340 {
+      -28.8927268982 1.721575737 12.1299848557
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.047412 0.962643 -0.266591 }
+        <Binormal> { 0.528427 0.202011 0.823429 }
+      }
+      <Normal> { -0.848567 0.138401 0.510605 }
+    }
+    <Vertex> 1341 {
+      -27.3299808502 1.5407140255 12.2306690216
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.957640 -0.000000 -0.033296 }
+      }
+      <Normal> { -0.033296 0.285958 0.957640 }
+    }
+    <Vertex> 1342 {
+      -27.3299808502 8.23613834381 10.6482791901
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.000000 -0.959824 -0.280603 }
+        <Binormal> { -0.909777 0.001661 -0.005683 }
+      }
+      <Normal> { -0.005921 0.143071 0.989685 }
+    }
+    <Vertex> 1343 {
+      -28.8927268982 7.79034566879 10.6956977844
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 0.973190 -0.230003 }
+        <Binormal> { 0.559421 0.190329 0.805324 }
+      }
+      <Normal> { -0.827509 0.082583 0.555315 }
+    }
+    <Vertex> 1344 {
+      -16.806760788 16.4555644989 10.2176017761
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.095075 -0.995006 0.030397 }
+        <Binormal> { -0.181836 0.012573 0.980289 }
+      }
+      <Normal> { 0.983001 0.023103 0.182043 }
+    }
+    <Vertex> 1345 {
+      -16.8067626953 7.79034566879 10.6956977844
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.000000 -0.998481 0.055090 }
+        <Binormal> { -0.160914 0.054364 0.985317 }
+      }
+      <Normal> { 0.986816 0.025269 0.159764 }
+    }
+    <Vertex> 1346 {
+      -18.3627719879 7.08254098892 10.2023181915
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.000000 -0.998481 0.055090 }
+        <Binormal> { 0.839234 0.029681 0.537956 }
+      }
+      <Normal> { 0.538774 -0.119480 -0.833918 }
+    }
+    <Vertex> 1347 {
+      -18.3627700806 14.4727830887 9.7945690155
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.093167 -0.995214 0.029484 }
+        <Binormal> { 0.884723 0.096333 0.456014 }
+      }
+      <Normal> { 0.456679 0.016327 -0.889462 }
+    }
+    <Vertex> 1348 {
+      -16.806760788 16.4555644989 10.2176017761
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.095075 -0.995006 0.030397 }
+        <Binormal> { -0.181836 0.012573 0.980289 }
+      }
+      <Normal> { 0.983001 0.023103 0.182043 }
+    }
+    <Vertex> 1349 {
+      -18.3627700806 14.4727830887 9.7945690155
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.093167 -0.995214 0.029484 }
+        <Binormal> { 0.884723 0.096333 0.456014 }
+      }
+      <Normal> { 0.456679 0.016327 -0.889462 }
+    }
+    <Vertex> 1350 {
+      -19.6512298584 20.8458690643 9.7945690155
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.198163 -0.980169 0.000000 }
+        <Binormal> { 0.935299 0.189091 0.283180 }
+      }
+      <Normal> { 0.258522 0.150304 -0.954222 }
+    }
+    <Vertex> 1351 {
+      -18.3175067902 23.9281463623 10.2176017761
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.198163 -0.980169 0.000000 }
+        <Binormal> { -0.152947 -0.030922 0.667096 }
+      }
+      <Normal> { 0.798212 -0.581774 0.156041 }
+    }
+    <Vertex> 1352 {
+      -16.806760788 16.4555644989 10.2176017761
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.095075 -0.995006 0.030397 }
+        <Binormal> { -0.181836 0.012573 0.980289 }
+      }
+      <Normal> { 0.983001 0.023103 0.182043 }
+    }
+    <Vertex> 1353 {
+      -18.3175067902 23.9281463623 10.2176017761
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.198163 -0.980169 0.000000 }
+        <Binormal> { -0.152947 -0.030922 0.667096 }
+      }
+      <Normal> { 0.798212 -0.581774 0.156041 }
+    }
+    <Vertex> 1354 {
+      -18.9609832764 23.288646698 10.1459083557
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.228156 -0.973623 -0.001884 }
+        <Binormal> { -0.968506 -0.226772 -0.095723 }
+      }
+      <Normal> { -0.084292 -0.059847 0.994629 }
+    }
+    <Vertex> 1355 {
+      -17.4335174561 17.7961158752 10.1208152771
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.100902 -0.994343 0.033186 }
+        <Binormal> { -0.993505 -0.102412 -0.047797 }
+      }
+      <Normal> { -0.049776 0.016816 0.998596 }
+    }
+    <Vertex> 1356 {
+      -16.806760788 16.4555644989 10.2176017761
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.095075 -0.995006 0.030397 }
+        <Binormal> { -0.181836 0.012573 0.980289 }
+      }
+      <Normal> { 0.983001 0.023103 0.182043 }
+    }
+    <Vertex> 1357 {
+      -17.4335174561 17.7961158752 10.1208152771
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.100902 -0.994343 0.033186 }
+        <Binormal> { -0.993505 -0.102412 -0.047797 }
+      }
+      <Normal> { -0.049776 0.016816 0.998596 }
+    }
+    <Vertex> 1358 {
+      -17.4335174561 8.23613834381 10.6482791901
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.000000 -0.998481 0.055090 }
+        <Binormal> { -0.995969 0.000768 0.013926 }
+      }
+      <Normal> { 0.013947 0.143010 0.989593 }
+    }
+    <Vertex> 1359 {
+      -16.8067626953 7.79034566879 10.6956977844
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.000000 -0.998481 0.055090 }
+        <Binormal> { -0.160914 0.054364 0.985317 }
+      }
+      <Normal> { 0.986816 0.025269 0.159764 }
+    }
+    <Vertex> 1360 {
+      -16.8067646027 1.72157561779 12.1299848557
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.149802 -0.948619 0.278715 }
+        <Binormal> { -0.169156 0.302291 0.937943 }
+      }
+      <Normal> { 0.971801 -0.107303 0.209845 }
+    }
+    <Vertex> 1361 {
+      -18.3175125122 -1.8563337326 13.5642719269
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.364900 -0.864195 0.346432 }
+        <Binormal> { -0.180559 0.386359 0.773609 }
+      }
+      <Normal> { 0.631397 -0.624714 0.459365 }
+    }
+    <Vertex> 1362 {
+      -19.6512355804 -1.14475238323 12.6488189697
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.364900 -0.864195 0.346432 }
+        <Binormal> { 0.810269 -0.132435 0.523096 }
+      }
+      <Normal> { 0.322794 -0.669057 -0.669393 }
+    }
+    <Vertex> 1363 {
+      -18.3627738953 1.90671312809 11.4255685806
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.148449 -0.947899 0.281871 }
+        <Binormal> { 0.835487 0.032002 0.547633 }
+      }
+      <Normal> { 0.523453 -0.346599 -0.778344 }
+    }
+    <Vertex> 1364 {
+      -16.8067646027 1.72157561779 12.1299848557
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.149802 -0.948619 0.278715 }
+        <Binormal> { -0.169156 0.302291 0.937943 }
+      }
+      <Normal> { 0.971801 -0.107303 0.209845 }
+    }
+    <Vertex> 1365 {
+      -18.3627738953 1.90671312809 11.4255685806
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.148449 -0.947899 0.281871 }
+        <Binormal> { 0.835487 0.032002 0.547633 }
+      }
+      <Normal> { 0.523453 -0.346599 -0.778344 }
+    }
+    <Vertex> 1366 {
+      -18.3627719879 7.08254098892 10.2023181915
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.000000 -0.973190 0.230003 }
+        <Binormal> { 0.839042 0.123919 0.524329 }
+      }
+      <Normal> { 0.538774 -0.119480 -0.833918 }
+    }
+    <Vertex> 1367 {
+      -16.8067626953 7.79034566879 10.6956977844
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.000000 -0.973190 0.230003 }
+        <Binormal> { -0.161293 0.226970 0.960359 }
+      }
+      <Normal> { 0.986816 0.025269 0.159764 }
+    }
+    <Vertex> 1368 {
+      -16.8067646027 1.72157561779 12.1299848557
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.149802 -0.948619 0.278715 }
+        <Binormal> { -0.169156 0.302291 0.937943 }
+      }
+      <Normal> { 0.971801 -0.107303 0.209845 }
+    }
+    <Vertex> 1369 {
+      -16.8067626953 7.79034566879 10.6956977844
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.000000 -0.973190 0.230003 }
+        <Binormal> { -0.161293 0.226970 0.960359 }
+      }
+      <Normal> { 0.986816 0.025269 0.159764 }
+    }
+    <Vertex> 1370 {
+      -17.4335174561 8.23613834381 10.6482791901
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.000001 -0.973190 0.230003 }
+        <Binormal> { -0.995955 0.003208 0.013573 }
+      }
+      <Normal> { 0.013947 0.143010 0.989593 }
+    }
+    <Vertex> 1371 {
+      -17.4335231781 1.5407140255 12.2306690216
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.153746 -0.950656 0.269474 }
+        <Binormal> { -0.987266 0.155214 -0.015710 }
+      }
+      <Normal> { 0.031617 0.297678 0.954131 }
+    }
+    <Vertex> 1372 {
+      -16.8067646027 1.72157561779 12.1299848557
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.149802 -0.948619 0.278715 }
+        <Binormal> { -0.169156 0.302291 0.937943 }
+      }
+      <Normal> { 0.971801 -0.107303 0.209845 }
+    }
+    <Vertex> 1373 {
+      -17.4335231781 1.5407140255 12.2306690216
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.153746 -0.950656 0.269474 }
+        <Binormal> { -0.987266 0.155214 -0.015710 }
+      }
+      <Normal> { 0.031617 0.297678 0.954131 }
+    }
+    <Vertex> 1374 {
+      -18.9609870911 -1.20865499973 13.3255090714
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.407230 -0.848084 0.338994 }
+        <Binormal> { -0.913113 0.385207 -0.133217 }
+      }
+      <Normal> { 0.014405 0.357128 0.933927 }
+    }
+    <Vertex> 1375 {
+      -18.3175125122 -1.8563337326 13.5642719269
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.364900 -0.864195 0.346432 }
+        <Binormal> { -0.180559 0.386359 0.773609 }
+      }
+      <Normal> { 0.631397 -0.624714 0.459365 }
+    }
+    <Vertex> 1376 {
+      -22.2257537842 1.48042690754 12.2642297745
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.078252 -0.957702 0.276918 }
+        <Binormal> { -0.996744 0.073484 -0.027521 }
+      }
+      <Normal> { -0.004608 0.295297 0.955382 }
+    }
+    <Vertex> 1377 {
+      -22.3817577362 -2.36559605598 13.7966022491
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.037655 -0.928320 0.369871 }
+        <Binormal> { -0.965265 0.050219 0.027772 }
+      }
+      <Normal> { 0.034761 0.119419 0.992218 }
+    }
+    <Vertex> 1378 {
+      -18.9609870911 -1.20865499973 13.3255090714
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.230730 -0.903941 0.360076 }
+        <Binormal> { -0.972808 0.220672 -0.069379 }
+      }
+      <Normal> { 0.014405 0.357128 0.933927 }
+    }
+    <Vertex> 1379 {
+      -17.4335231781 1.5407140255 12.2306690216
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.153746 -0.950656 0.269474 }
+        <Binormal> { -0.987266 0.155214 -0.015710 }
+      }
+      <Normal> { 0.031617 0.297678 0.954131 }
+    }
+    <Vertex> 1380 {
+      -22.2257537842 1.48042690754 12.2642297745
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.078252 -0.957702 0.276918 }
+        <Binormal> { -0.996744 0.073484 -0.027521 }
+      }
+      <Normal> { -0.004608 0.295297 0.955382 }
+    }
+    <Vertex> 1381 {
+      -17.4335231781 1.5407140255 12.2306690216
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.153746 -0.950656 0.269474 }
+        <Binormal> { -0.987266 0.155214 -0.015710 }
+      }
+      <Normal> { 0.031617 0.297678 0.954131 }
+    }
+    <Vertex> 1382 {
+      -17.4335174561 8.23613834381 10.6482791901
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.000001 -0.973190 0.230003 }
+        <Binormal> { -0.995955 0.003208 0.013573 }
+      }
+      <Normal> { 0.013947 0.143010 0.989593 }
+    }
+    <Vertex> 1383 {
+      -22.2257518768 8.3847360611 10.6324720383
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.000000 -0.973190 0.230003 }
+        <Binormal> { -0.996065 0.000007 0.000030 }
+      }
+      <Normal> { 0.000031 0.143101 0.989685 }
+    }
+    <Vertex> 1384 {
+      -22.2257537842 1.48042690754 12.2642297745
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.078252 -0.957702 0.276918 }
+        <Binormal> { -0.996744 0.073484 -0.027521 }
+      }
+      <Normal> { -0.004608 0.295297 0.955382 }
+    }
+    <Vertex> 1385 {
+      -22.2257518768 8.3847360611 10.6324720383
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.000000 -0.973190 0.230003 }
+        <Binormal> { -0.996065 0.000007 0.000030 }
+      }
+      <Normal> { 0.000031 0.143101 0.989685 }
+    }
+    <Vertex> 1386 {
+      -27.3299808502 8.23613834381 10.6482791901
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.000000 0.902407 0.430885 }
+        <Binormal> { 0.831451 -0.002551 0.005343 }
+      }
+      <Normal> { -0.005921 0.143071 0.989685 }
+    }
+    <Vertex> 1387 {
+      -27.3299808502 1.5407140255 12.2306690216
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.957640 -0.000000 -0.033296 }
+      }
+      <Normal> { -0.033296 0.285958 0.957640 }
+    }
+    <Vertex> 1388 {
+      -22.2257537842 1.48042690754 12.2642297745
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.078252 -0.957702 0.276918 }
+        <Binormal> { -0.996744 0.073484 -0.027521 }
+      }
+      <Normal> { -0.004608 0.295297 0.955382 }
+    }
+    <Vertex> 1389 {
+      -27.3299808502 1.5407140255 12.2306690216
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.957640 -0.000000 -0.033296 }
+      }
+      <Normal> { -0.033296 0.285958 0.957640 }
+    }
+    <Vertex> 1390 {
+      -28.9950714111 -3.70988488197 14.0447750092
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.853789 -0.505848 0.123132 }
+        <Binormal> { -0.508166 -0.840286 0.071545 }
+      }
+      <Normal> { 0.081942 0.035249 0.996002 }
+    }
+    <Vertex> 1391 {
+      -22.3817577362 -2.36559605598 13.7966022491
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.037655 -0.928320 0.369871 }
+        <Binormal> { -0.965265 0.050219 0.027772 }
+      }
+      <Normal> { 0.034761 0.119419 0.992218 }
+    }
+    <Vertex> 1392 {
+      -22.2257518768 18.2429676056 10.088552475
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.008497 -0.999481 0.031068 }
+        <Binormal> { -0.999919 -0.008500 0.000029 }
+      }
+      <Normal> { -0.000183 0.024903 0.999664 }
+    }
+    <Vertex> 1393 {
+      -22.2257518768 8.3847360611 10.6324720383
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 -0.998481 0.055090 }
+        <Binormal> { -0.996065 0.000002 0.000030 }
+      }
+      <Normal> { 0.000031 0.143101 0.989685 }
+    }
+    <Vertex> 1394 {
+      -17.4335174561 8.23613834381 10.6482791901
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.000000 -0.998481 0.055090 }
+        <Binormal> { -0.995969 0.000768 0.013926 }
+      }
+      <Normal> { 0.013947 0.143010 0.989593 }
+    }
+    <Vertex> 1395 {
+      -17.4335174561 17.7961158752 10.1208152771
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.100902 -0.994343 0.033186 }
+        <Binormal> { -0.993505 -0.102412 -0.047797 }
+      }
+      <Normal> { -0.049776 0.016816 0.998596 }
+    }
+    <Vertex> 1396 {
+      -22.2257518768 18.2429676056 10.088552475
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.008497 -0.999481 0.031068 }
+        <Binormal> { -0.999919 -0.008500 0.000029 }
+      }
+      <Normal> { -0.000183 0.024903 0.999664 }
+    }
+    <Vertex> 1397 {
+      -17.4335174561 17.7961158752 10.1208152771
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.100902 -0.994343 0.033186 }
+        <Binormal> { -0.993505 -0.102412 -0.047797 }
+      }
+      <Normal> { -0.049776 0.016816 0.998596 }
+    }
+    <Vertex> 1398 {
+      -18.9609832764 23.288646698 10.1459083557
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.126470 -0.991961 -0.004309 }
+        <Binormal> { -0.986891 -0.125428 -0.091183 }
+      }
+      <Normal> { -0.084292 -0.059847 0.994629 }
+    }
+    <Vertex> 1399 {
+      -22.3817481995 25.9545726776 10.1208152771
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.020224 -0.999787 -0.004183 }
+        <Binormal> { -0.998430 -0.020147 -0.011973 }
+      }
+      <Normal> { -0.010865 -0.054903 0.998413 }
+    }
+    <Vertex> 1400 {
+      -22.2257518768 18.2429676056 10.088552475
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.008497 -0.999481 0.031068 }
+        <Binormal> { -0.999919 -0.008500 0.000029 }
+      }
+      <Normal> { -0.000183 0.024903 0.999664 }
+    }
+    <Vertex> 1401 {
+      -22.3817481995 25.9545726776 10.1208152771
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.020224 -0.999787 -0.004183 }
+        <Binormal> { -0.998430 -0.020147 -0.011973 }
+      }
+      <Normal> { -0.010865 -0.054903 0.998413 }
+    }
+    <Vertex> 1402 {
+      -26.0451831818 23.288646698 10.1459083557
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.659829 -0.751376 -0.007698 }
+        <Binormal> { -0.750651 -0.659288 0.009343 }
+      }
+      <Normal> { 0.039583 -0.030915 0.998718 }
+    }
+    <Vertex> 1403 {
+      -27.3299808502 17.7961158752 10.1208152771
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.021516 0.022462 0.999512 }
+    }
+    <Vertex> 1404 {
+      -22.2257518768 18.2429676056 10.088552475
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.008497 -0.999481 0.031068 }
+        <Binormal> { -0.999919 -0.008500 0.000029 }
+      }
+      <Normal> { -0.000183 0.024903 0.999664 }
+    }
+    <Vertex> 1405 {
+      -27.3299808502 17.7961158752 10.1208152771
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.021516 0.022462 0.999512 }
+    }
+    <Vertex> 1406 {
+      -27.3299808502 8.23613834381 10.6482791901
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.000000 -0.959824 -0.280603 }
+        <Binormal> { -0.909777 0.001661 -0.005683 }
+      }
+      <Normal> { -0.005921 0.143071 0.989685 }
+    }
+    <Vertex> 1407 {
+      -22.2257518768 8.3847360611 10.6324720383
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 -0.998481 0.055090 }
+        <Binormal> { -0.996065 0.000002 0.000030 }
+      }
+      <Normal> { 0.000031 0.143101 0.989685 }
+    }
+    <Vertex> 1408 {
+      -35.5460090637 -9.05545520782 14.4399061203
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.101797 -0.994773 0.007967 }
+        <Binormal> { -0.994726 0.101794 0.000211 }
+      }
+      <Normal> { 0.000000 -0.002075 0.999969 }
+    }
+    <Vertex> 1409 {
+      -35.2990150452 -12.3532590866 14.3405208588
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.074654 -0.996757 -0.030039 }
+        <Binormal> { -0.757864 -0.055890 -0.028914 }
+      }
+      <Normal> { 0.021332 -0.672140 0.740074 }
+    }
+    <Vertex> 1410 {
+      -31.7861881256 -11.0136041641 14.2632236481
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.154076 -0.987574 -0.030965 }
+        <Binormal> { -0.912015 0.134791 0.239128 }
+      }
+      <Normal> { 0.185034 -0.366008 0.912015 }
+    }
+    <Vertex> 1411 {
+      -30.6600494385 -8.67641353607 14.3405208588
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.356833 -0.933751 0.027928 }
+        <Binormal> { -0.923794 0.357151 0.137845 }
+      }
+      <Normal> { 0.138890 -0.022858 0.990020 }
+    }
+    <Vertex> 1412 {
+      -35.5460090637 -9.05545520782 14.4399061203
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.101797 -0.994773 0.007967 }
+        <Binormal> { -0.994726 0.101794 0.000211 }
+      }
+      <Normal> { 0.000000 -0.002075 0.999969 }
+    }
+    <Vertex> 1413 {
+      -30.6600494385 -8.67641353607 14.3405208588
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.356833 -0.933751 0.027928 }
+        <Binormal> { -0.923794 0.357151 0.137845 }
+      }
+      <Normal> { 0.138890 -0.022858 0.990020 }
+    }
+    <Vertex> 1414 {
+      -28.9950714111 -3.70988488197 14.0447750092
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.207120 -0.977379 0.042804 }
+        <Binormal> { -0.974980 0.209799 0.072788 }
+      }
+      <Normal> { 0.081942 0.035249 0.996002 }
+    }
+    <Vertex> 1415 {
+      -35.2990150452 -4.99956703186 14.3405208588
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.060767 -0.997852 0.024451 }
+        <Binormal> { -0.994478 0.060286 -0.011242 }
+      }
+      <Normal> { -0.004578 0.109836 0.993927 }
+    }
+    <Vertex> 1416 {
+      -35.5460090637 -9.05545520782 14.4399061203
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.101797 -0.994773 0.007967 }
+        <Binormal> { -0.994726 0.101794 0.000211 }
+      }
+      <Normal> { 0.000000 -0.002075 0.999969 }
+    }
+    <Vertex> 1417 {
+      -35.2990150452 -4.99956703186 14.3405208588
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.060767 -0.997852 0.024451 }
+        <Binormal> { -0.994478 0.060286 -0.011242 }
+      }
+      <Normal> { -0.004578 0.109836 0.993927 }
+    }
+    <Vertex> 1418 {
+      -38.4276237488 -5.74959993362 14.2632236481
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.739475 -0.672354 0.033417 }
+        <Binormal> { -0.668420 -0.734914 0.004720 }
+      }
+      <Normal> { -0.105960 0.102725 0.989044 }
+    }
+    <Vertex> 1419 {
+      -39.9379806519 -8.67641353607 14.3405208588
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.365978 -0.105228 0.924619 }
+    }
+    <Vertex> 1420 {
+      -35.5460090637 -9.05545520782 14.4399061203
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.101797 -0.994773 0.007967 }
+        <Binormal> { -0.994726 0.101794 0.000211 }
+      }
+      <Normal> { 0.000000 -0.002075 0.999969 }
+    }
+    <Vertex> 1421 {
+      -39.9379806519 -8.67641353607 14.3405208588
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.365978 -0.105228 0.924619 }
+    }
+    <Vertex> 1422 {
+      -38.4276237488 -11.0136041641 14.2632236481
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.870147 -0.491220 -0.039322 }
+        <Binormal> { -0.126266 0.201624 0.275373 }
+      }
+      <Normal> { -0.683126 -0.702109 0.200842 }
+    }
+    <Vertex> 1423 {
+      -35.2990150452 -12.3532590866 14.3405208588
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.074654 -0.996757 -0.030039 }
+        <Binormal> { -0.757864 -0.055890 -0.028914 }
+      }
+      <Normal> { 0.021332 -0.672140 0.740074 }
+    }
+    <Vertex> 1424 {
+      -11.5488147736 -11.4075469971 0.264949798584
+      <UV>  {
+        0.802328 0.921866
+        <Tangent> { 0.557654 -0.111632 -0.822533 }
+        <Binormal> { 0.009846 -0.989932 0.141027 }
+      }
+      <Normal> { 0.830195 0.086703 0.550645 }
+    }
+    <Vertex> 1425 {
+      -11.8820056915 -8.38627338409 0.264949798584
+      <UV>  {
+        0.797318 0.860744
+        <Tangent> { 0.490264 -0.029612 -0.871071 }
+        <Binormal> { 0.037106 -0.997759 0.054803 }
+      }
+      <Normal> { 0.868465 0.059328 0.492111 }
+    }
+    <Vertex> 1426 {
+      -12.9233322144 -8.2720489502 1.86966729164
+      <UV>  {
+        0.839550 0.857178
+        <Tangent> { 0.551527 -0.052508 -0.832503 }
+        <Binormal> { -0.026327 -0.914186 0.040219 }
+      }
+      <Normal> { 0.541246 0.021393 0.840571 }
+    }
+    <Vertex> 1427 {
+      -12.8400325775 -11.2933235168 1.86966776848
+      <UV>  {
+        0.856632 0.924448
+        <Tangent> { 0.623758 -0.110552 -0.773760 }
+        <Binormal> { -0.070889 -0.926465 0.075224 }
+      }
+      <Normal> { 0.499466 0.032075 0.865719 }
+    }
+    <Vertex> 1428 {
+      -11.5488147736 -11.4075469971 0.264949798584
+      <UV>  {
+        0.802328 0.921866
+        <Tangent> { 0.557654 -0.111632 -0.822533 }
+        <Binormal> { 0.009846 -0.989932 0.141027 }
+      }
+      <Normal> { 0.830195 0.086703 0.550645 }
+    }
+    <Vertex> 1429 {
+      -12.8400325775 -11.2933235168 1.86966776848
+      <UV>  {
+        0.856632 0.924448
+        <Tangent> { 0.623758 -0.110552 -0.773760 }
+        <Binormal> { -0.070889 -0.926465 0.075224 }
+      }
+      <Normal> { 0.499466 0.032075 0.865719 }
+    }
+    <Vertex> 1430 {
+      -12.8338851929 -14.2589521408 1.91424322128
+      <UV>  {
+        0.873713 0.991719
+        <Tangent> { 0.670339 -0.107451 -0.734234 }
+        <Binormal> { -0.072608 -0.923206 0.068817 }
+      }
+      <Normal> { 0.436537 0.032685 0.899075 }
+    }
+    <Vertex> 1431 {
+      -11.3290185928 -14.1764011383 0.443251699209
+      <UV>  {
+        0.809422 0.984836
+        <Tangent> { 0.639591 -0.203376 -0.741324 }
+        <Binormal> { -0.068785 -0.975564 0.208292 }
+      }
+      <Normal> { 0.771752 0.080264 0.630787 }
+    }
+    <Vertex> 1432 {
+      -11.5488147736 -11.4075469971 0.264949798584
+      <UV>  {
+        0.802328 0.921866
+        <Tangent> { 0.557654 -0.111632 -0.822533 }
+        <Binormal> { 0.009846 -0.989932 0.141027 }
+      }
+      <Normal> { 0.830195 0.086703 0.550645 }
+    }
+    <Vertex> 1433 {
+      -11.3290185928 -14.1764011383 0.443251699209
+      <UV>  {
+        0.809422 0.984836
+        <Tangent> { 0.639591 -0.203376 -0.741324 }
+        <Binormal> { -0.068785 -0.975564 0.208292 }
+      }
+      <Normal> { 0.771752 0.080264 0.630787 }
+    }
+    <Vertex> 1434 {
+      -10.4264764786 -14.4343919754 -0.970763266087
+      <UV>  {
+        0.745131 0.977952
+        <Tangent> { 0.801127 -0.127308 -0.584798 }
+        <Binormal> { 0.006490 -0.974755 0.221091 }
+      }
+      <Normal> { 0.622211 0.177099 0.762535 }
+    }
+    <Vertex> 1435 {
+      -10.6696643829 -11.5162258148 -1.36310350895
+      <UV>  {
+        0.748192 0.919304
+        <Tangent> { 0.798170 -0.092062 -0.595357 }
+        <Binormal> { -0.006421 -0.988712 0.144280 }
+      }
+      <Normal> { 0.632923 0.107761 0.766625 }
+    }
+    <Vertex> 1436 {
+      -11.5488147736 -11.4075469971 0.264949798584
+      <UV>  {
+        0.802328 0.921866
+        <Tangent> { 0.557654 -0.111632 -0.822533 }
+        <Binormal> { 0.009846 -0.989932 0.141027 }
+      }
+      <Normal> { 0.830195 0.086703 0.550645 }
+    }
+    <Vertex> 1437 {
+      -10.6696643829 -11.5162258148 -1.36310350895
+      <UV>  {
+        0.748192 0.919304
+        <Tangent> { 0.798170 -0.092062 -0.595357 }
+        <Binormal> { -0.006421 -0.988712 0.144280 }
+      }
+      <Normal> { 0.632923 0.107761 0.766625 }
+    }
+    <Vertex> 1438 {
+      -11.0997304916 -8.51076793671 -1.38494825363
+      <UV>  {
+        0.749301 0.859394
+        <Tangent> { 0.780295 -0.104431 -0.616632 }
+        <Binormal> { -0.028234 -0.990095 0.131953 }
+      }
+      <Normal> { 0.654012 0.081576 0.752037 }
+    }
+    <Vertex> 1439 {
+      -11.8820056915 -8.38627338409 0.264949798584
+      <UV>  {
+        0.797318 0.860744
+        <Tangent> { 0.490264 -0.029612 -0.871071 }
+        <Binormal> { 0.037106 -0.997759 0.054803 }
+      }
+      <Normal> { 0.868465 0.059328 0.492111 }
+    }
+    <Vertex> 1440 {
+      -11.9930667877 20.0113945007 -2.25320339203
+      <UV>  {
+        0.783390 0.298647
+        <Tangent> { 0.491263 -0.015450 -0.870874 }
+        <Binormal> { -0.032366 -0.999442 -0.000527 }
+      }
+      <Normal> { 0.872250 -0.028504 0.488174 }
+    }
+    <Vertex> 1441 {
+      -11.9930667877 23.0735740662 -2.25320339203
+      <UV>  {
+        0.780250 0.241100
+        <Tangent> { 0.469045 -0.085050 -0.879070 }
+        <Binormal> { -0.039853 -0.996346 0.075132 }
+      }
+      <Normal> { 0.883389 0.000000 0.468581 }
+    }
+    <Vertex> 1442 {
+      -12.9510936737 23.1877994537 -0.648485422134
+      <UV>  {
+        0.823691 0.242242
+        <Tangent> { 0.510666 -0.086882 -0.855378 }
+        <Binormal> { -0.071723 -0.904273 0.049029 }
+      }
+      <Normal> { 0.564318 0.000000 0.825526 }
+    }
+    <Vertex> 1443 {
+      -12.9510936737 20.125617981 -0.648485422134
+      <UV>  {
+        0.827007 0.299331
+        <Tangent> { 0.509838 -0.083263 -0.856232 }
+        <Binormal> { -0.097563 -0.900792 0.029502 }
+      }
+      <Normal> { 0.558580 -0.033357 0.828730 }
+    }
+    <Vertex> 1444 {
+      -11.9930667877 20.0113945007 -2.25320339203
+      <UV>  {
+        0.783390 0.298647
+        <Tangent> { 0.491263 -0.015450 -0.870874 }
+        <Binormal> { -0.032366 -0.999442 -0.000527 }
+      }
+      <Normal> { 0.872250 -0.028504 0.488174 }
+    }
+    <Vertex> 1445 {
+      -12.9510936737 20.125617981 -0.648485422134
+      <UV>  {
+        0.827007 0.299331
+        <Tangent> { 0.509838 -0.083263 -0.856232 }
+        <Binormal> { -0.097563 -0.900792 0.029502 }
+      }
+      <Normal> { 0.558580 -0.033357 0.828730 }
+    }
+    <Vertex> 1446 {
+      -13.2726049423 16.1890468597 -0.81184643507
+      <UV>  {
+        0.830322 0.356420
+        <Tangent> { 0.604081 0.158105 -0.781082 }
+        <Binormal> { 0.054257 -0.923893 -0.145050 }
+      }
+      <Normal> { 0.533219 -0.100558 0.839961 }
+    }
+    <Vertex> 1447 {
+      -12.2074069977 16.0748214722 -2.36211061478
+      <UV>  {
+        0.785213 0.372497
+        <Tangent> { 0.551244 0.175389 -0.815702 }
+        <Binormal> { 0.030584 -0.980584 -0.190173 }
+      }
+      <Normal> { 0.813227 -0.086245 0.575488 }
+    }
+    <Vertex> 1448 {
+      -11.9930667877 20.0113945007 -2.25320339203
+      <UV>  {
+        0.783390 0.298647
+        <Tangent> { 0.491263 -0.015450 -0.870874 }
+        <Binormal> { -0.032366 -0.999442 -0.000527 }
+      }
+      <Normal> { 0.872250 -0.028504 0.488174 }
+    }
+    <Vertex> 1449 {
+      -12.2074069977 16.0748214722 -2.36211061478
+      <UV>  {
+        0.785213 0.372497
+        <Tangent> { 0.551244 0.175389 -0.815702 }
+        <Binormal> { 0.030584 -0.980584 -0.190173 }
+      }
+      <Normal> { 0.813227 -0.086245 0.575488 }
+    }
+    <Vertex> 1450 {
+      -11.2966690063 15.9450550079 -3.8851480484
+      <UV>  {
+        0.740080 0.373241
+        <Tangent> { 0.869572 -0.004739 -0.493783 }
+        <Binormal> { -0.021335 -0.997302 -0.028001 }
+      }
+      <Normal> { 0.548143 -0.035188 0.835627 }
+    }
+    <Vertex> 1451 {
+      -11.2430839539 19.8816280365 -3.8579211235
+      <UV>  {
+        0.737848 0.298866
+        <Tangent> { 0.828452 -0.015835 -0.559837 }
+        <Binormal> { -0.019224 -0.997978 -0.000220 }
+      }
+      <Normal> { 0.608783 -0.011902 0.793237 }
+    }
+    <Vertex> 1452 {
+      -11.9930667877 20.0113945007 -2.25320339203
+      <UV>  {
+        0.783390 0.298647
+        <Tangent> { 0.491263 -0.015450 -0.870874 }
+        <Binormal> { -0.032366 -0.999442 -0.000527 }
+      }
+      <Normal> { 0.872250 -0.028504 0.488174 }
+    }
+    <Vertex> 1453 {
+      -11.2430839539 19.8816280365 -3.8579211235
+      <UV>  {
+        0.737848 0.298866
+        <Tangent> { 0.828452 -0.015835 -0.559837 }
+        <Binormal> { -0.019224 -0.997978 -0.000220 }
+      }
+      <Normal> { 0.608783 -0.011902 0.793237 }
+    }
+    <Vertex> 1454 {
+      -11.2430839539 22.9438095093 -3.8579211235
+      <UV>  {
+        0.734971 0.241008
+        <Tangent> { 0.828476 -0.018100 -0.559732 }
+        <Binormal> { -0.014187 -0.996936 0.011240 }
+      }
+      <Normal> { 0.620960 0.000000 0.783807 }
+    }
+    <Vertex> 1455 {
+      -11.9930667877 23.0735740662 -2.25320339203
+      <UV>  {
+        0.780250 0.241100
+        <Tangent> { 0.469045 -0.085050 -0.879070 }
+        <Binormal> { -0.039853 -0.996346 0.075132 }
+      }
+      <Normal> { 0.883389 0.000000 0.468581 }
+    }
+    <Vertex> 1456 {
+      -11.9930696487 -5.40828943253 0.264949798584
+      <UV>  {
+        0.796475 0.803320
+        <Tangent> { 0.484664 -0.173803 -0.857259 }
+        <Binormal> { -0.013257 -0.981361 0.191468 }
+      }
+      <Normal> { 0.878414 0.080050 0.471114 }
+    }
+    <Vertex> 1457 {
+      -12.2074108124 -2.40582537651 -0.158726722002
+      <UV>  {
+        0.795475 0.743383
+        <Tangent> { 0.543287 -0.294444 -0.786220 }
+        <Binormal> { 0.042152 -0.925132 0.375595 }
+      }
+      <Normal> { 0.818873 0.247536 0.517808 }
+    }
+    <Vertex> 1458 {
+      -13.2726078033 -2.29160046577 1.3915374279
+      <UV>  {
+        0.831450 0.756246
+        <Tangent> { 0.617241 -0.263048 -0.741498 }
+        <Binormal> { 0.027849 -0.874568 0.333437 }
+      }
+      <Normal> { 0.519608 0.318766 0.792688 }
+    }
+    <Vertex> 1459 {
+      -12.9510955811 -5.29406452179 1.86966776848
+      <UV>  {
+        0.835500 0.806712
+        <Tangent> { 0.513714 -0.166980 -0.841556 }
+        <Binormal> { -0.060463 -0.892188 0.140118 }
+      }
+      <Normal> { 0.555864 0.092074 0.826136 }
+    }
+    <Vertex> 1460 {
+      -11.9930696487 -5.40828943253 0.264949798584
+      <UV>  {
+        0.796475 0.803320
+        <Tangent> { 0.484664 -0.173803 -0.857259 }
+        <Binormal> { -0.013257 -0.981361 0.191468 }
+      }
+      <Normal> { 0.878414 0.080050 0.471114 }
+    }
+    <Vertex> 1461 {
+      -12.9510955811 -5.29406452179 1.86966776848
+      <UV>  {
+        0.835500 0.806712
+        <Tangent> { 0.513714 -0.166980 -0.841556 }
+        <Binormal> { -0.060463 -0.892188 0.140118 }
+      }
+      <Normal> { 0.555864 0.092074 0.826136 }
+    }
+    <Vertex> 1462 {
+      -12.9233322144 -8.2720489502 1.86966729164
+      <UV>  {
+        0.839550 0.857178
+        <Tangent> { 0.551527 -0.052508 -0.832503 }
+        <Binormal> { -0.026327 -0.914186 0.040219 }
+      }
+      <Normal> { 0.541246 0.021393 0.840571 }
+    }
+    <Vertex> 1463 {
+      -11.8820056915 -8.38627338409 0.264949798584
+      <UV>  {
+        0.797318 0.860744
+        <Tangent> { 0.490264 -0.029612 -0.871071 }
+        <Binormal> { 0.037106 -0.997759 0.054803 }
+      }
+      <Normal> { 0.868465 0.059328 0.492111 }
+    }
+    <Vertex> 1464 {
+      -11.9930696487 -5.40828943253 0.264949798584
+      <UV>  {
+        0.796475 0.803320
+        <Tangent> { 0.484664 -0.173803 -0.857259 }
+        <Binormal> { -0.013257 -0.981361 0.191468 }
+      }
+      <Normal> { 0.878414 0.080050 0.471114 }
+    }
+    <Vertex> 1465 {
+      -11.8820056915 -8.38627338409 0.264949798584
+      <UV>  {
+        0.797318 0.860744
+        <Tangent> { 0.490264 -0.029612 -0.871071 }
+        <Binormal> { 0.037106 -0.997759 0.054803 }
+      }
+      <Normal> { 0.868465 0.059328 0.492111 }
+    }
+    <Vertex> 1466 {
+      -11.0997304916 -8.51076793671 -1.38494825363
+      <UV>  {
+        0.749301 0.859394
+        <Tangent> { 0.780295 -0.104431 -0.616632 }
+        <Binormal> { -0.028234 -0.990095 0.131953 }
+      }
+      <Normal> { 0.654012 0.081576 0.752037 }
+    }
+    <Vertex> 1467 {
+      -11.2430868149 -5.53805494308 -1.49715280533
+      <UV>  {
+        0.753084 0.799554
+        <Tangent> { 0.740378 -0.137229 -0.658034 }
+        <Binormal> { -0.027031 -0.984086 0.174812 }
+      }
+      <Normal> { 0.682760 0.109561 0.722343 }
+    }
+    <Vertex> 1468 {
+      -11.9930696487 -5.40828943253 0.264949798584
+      <UV>  {
+        0.796475 0.803320
+        <Tangent> { 0.484664 -0.173803 -0.857259 }
+        <Binormal> { -0.013257 -0.981361 0.191468 }
+      }
+      <Normal> { 0.878414 0.080050 0.471114 }
+    }
+    <Vertex> 1469 {
+      -11.2430868149 -5.53805494308 -1.49715280533
+      <UV>  {
+        0.753084 0.799554
+        <Tangent> { 0.740378 -0.137229 -0.658034 }
+        <Binormal> { -0.027031 -0.984086 0.174812 }
+      }
+      <Normal> { 0.682760 0.109561 0.722343 }
+    }
+    <Vertex> 1470 {
+      -11.2966709137 -2.53559160233 -1.91784119606
+      <UV>  {
+        0.754813 0.737804
+        <Tangent> { 0.780181 -0.133340 -0.611177 }
+        <Binormal> { 0.031171 -0.967119 0.250786 }
+      }
+      <Normal> { 0.646199 0.211005 0.733390 }
+    }
+    <Vertex> 1471 {
+      -12.2074108124 -2.40582537651 -0.158726722002
+      <UV>  {
+        0.795475 0.743383
+        <Tangent> { 0.543287 -0.294444 -0.786220 }
+        <Binormal> { 0.042152 -0.925132 0.375595 }
+      }
+      <Normal> { 0.818873 0.247536 0.517808 }
+    }
+    <Vertex> 1472 {
+      -12.8504314423 10.3894681931 -2.68883228302
+      <UV>  {
+        0.784400 0.478952
+        <Tangent> { 0.716282 -0.023817 -0.697405 }
+        <Binormal> { -0.068220 -0.996934 -0.036021 }
+      }
+      <Normal> { 0.703238 -0.073672 0.707114 }
+    }
+    <Vertex> 1473 {
+      -12.2074069977 16.0748214722 -2.36211061478
+      <UV>  {
+        0.785213 0.372497
+        <Tangent> { 0.551244 0.175389 -0.815702 }
+        <Binormal> { 0.030584 -0.980584 -0.190173 }
+      }
+      <Normal> { 0.813227 -0.086245 0.575488 }
+    }
+    <Vertex> 1474 {
+      -13.2726049423 16.1890468597 -0.81184643507
+      <UV>  {
+        0.830322 0.356420
+        <Tangent> { 0.604081 0.158105 -0.781082 }
+        <Binormal> { 0.054257 -0.923893 -0.145050 }
+      }
+      <Normal> { 0.533219 -0.100558 0.839961 }
+    }
+    <Vertex> 1475 {
+      -14.2371377945 10.5036935806 -1.30192875862
+      <UV>  {
+        0.825076 0.477622
+        <Tangent> { 0.709752 -0.026288 -0.703961 }
+        <Binormal> { -0.083084 -0.964066 -0.047767 }
+      }
+      <Normal> { 0.501602 -0.085879 0.860805 }
+    }
+    <Vertex> 1476 {
+      -12.8504314423 10.3894681931 -2.68883228302
+      <UV>  {
+        0.784400 0.478952
+        <Tangent> { 0.716282 -0.023817 -0.697405 }
+        <Binormal> { -0.068220 -0.996934 -0.036021 }
+      }
+      <Normal> { 0.703238 -0.073672 0.707114 }
+    }
+    <Vertex> 1477 {
+      -14.2371377945 10.5036935806 -1.30192875862
+      <UV>  {
+        0.825076 0.477622
+        <Tangent> { 0.709752 -0.026288 -0.703961 }
+        <Binormal> { -0.083084 -0.964066 -0.047767 }
+      }
+      <Normal> { 0.501602 -0.085879 0.860805 }
+    }
+    <Vertex> 1478 {
+      -14.8801593781 4.79867649078 -1.31388151646
+      <UV>  {
+        0.819830 0.598823
+        <Tangent> { 0.748237 -0.189227 -0.635873 }
+        <Binormal> { -0.074211 -0.955098 0.196898 }
+      }
+      <Normal> { 0.488571 0.139592 0.861263 }
+    }
+    <Vertex> 1479 {
+      -13.2791118622 4.68445158005 -2.5918776989
+      <UV>  {
+        0.784733 0.589275
+        <Tangent> { 0.800893 -0.168999 -0.574465 }
+        <Binormal> { -0.059182 -0.974833 0.204272 }
+      }
+      <Normal> { 0.647847 0.118351 0.752495 }
+    }
+    <Vertex> 1480 {
+      -12.8504314423 10.3894681931 -2.68883228302
+      <UV>  {
+        0.784400 0.478952
+        <Tangent> { 0.716282 -0.023817 -0.697405 }
+        <Binormal> { -0.068220 -0.996934 -0.036021 }
+      }
+      <Normal> { 0.703238 -0.073672 0.707114 }
+    }
+    <Vertex> 1481 {
+      -13.2791118622 4.68445158005 -2.5918776989
+      <UV>  {
+        0.784733 0.589275
+        <Tangent> { 0.800893 -0.168999 -0.574465 }
+        <Binormal> { -0.059182 -0.974833 0.204272 }
+      }
+      <Normal> { 0.647847 0.118351 0.752495 }
+    }
+    <Vertex> 1482 {
+      -11.5645942688 4.55468559265 -3.74585914612
+      <UV>  {
+        0.743356 0.590492
+        <Tangent> { 0.915003 -0.025220 -0.402658 }
+        <Binormal> { 0.021177 -0.993309 0.110337 }
+      }
+      <Normal> { 0.426588 0.108829 0.897855 }
+    }
+    <Vertex> 1483 {
+      -11.4574260712 10.2597026825 -3.96682834625
+      <UV>  {
+        0.741022 0.480651
+        <Tangent> { 0.918684 0.008162 -0.394908 }
+        <Binormal> { 0.000826 -0.997918 -0.018703 }
+      }
+      <Normal> { 0.450331 -0.016358 0.892666 }
+    }
+    <Vertex> 1484 {
+      -12.8504314423 10.3894681931 -2.68883228302
+      <UV>  {
+        0.784400 0.478952
+        <Tangent> { 0.716282 -0.023817 -0.697405 }
+        <Binormal> { -0.068220 -0.996934 -0.036021 }
+      }
+      <Normal> { 0.703238 -0.073672 0.707114 }
+    }
+    <Vertex> 1485 {
+      -11.4574260712 10.2597026825 -3.96682834625
+      <UV>  {
+        0.741022 0.480651
+        <Tangent> { 0.918684 0.008162 -0.394908 }
+        <Binormal> { 0.000826 -0.997918 -0.018703 }
+      }
+      <Normal> { 0.450331 -0.016358 0.892666 }
+    }
+    <Vertex> 1486 {
+      -11.2966690063 15.9450550079 -3.8851480484
+      <UV>  {
+        0.740080 0.373241
+        <Tangent> { 0.869572 -0.004739 -0.493783 }
+        <Binormal> { -0.021335 -0.997302 -0.028001 }
+      }
+      <Normal> { 0.548143 -0.035188 0.835627 }
+    }
+    <Vertex> 1487 {
+      -12.2074069977 16.0748214722 -2.36211061478
+      <UV>  {
+        0.785213 0.372497
+        <Tangent> { 0.551244 0.175389 -0.815702 }
+        <Binormal> { 0.030584 -0.980584 -0.190173 }
+      }
+      <Normal> { 0.813227 -0.086245 0.575488 }
+    }
+    <Vertex> 1488 {
+      -12.8504314423 0.68888771534 -1.42975592613
+      <UV>  {
+        0.789993 0.674727
+        <Tangent> { 0.708774 -0.175799 -0.683179 }
+        <Binormal> { 0.103802 -0.931891 0.347489 }
+      }
+      <Normal> { 0.699942 0.316660 0.640126 }
+    }
+    <Vertex> 1489 {
+      -13.2791118622 4.68445158005 -2.5918776989
+      <UV>  {
+        0.784733 0.589275
+        <Tangent> { 0.800893 -0.168999 -0.574465 }
+        <Binormal> { -0.059182 -0.974833 0.204272 }
+      }
+      <Normal> { 0.647847 0.118351 0.752495 }
+    }
+    <Vertex> 1490 {
+      -14.8801593781 4.79867649078 -1.31388151646
+      <UV>  {
+        0.819830 0.598823
+        <Tangent> { 0.748237 -0.189227 -0.635873 }
+        <Binormal> { -0.074211 -0.955098 0.196898 }
+      }
+      <Normal> { 0.488571 0.139592 0.861263 }
+    }
+    <Vertex> 1491 {
+      -14.2371377945 0.803112506866 -0.0428524985909
+      <UV>  {
+        0.825640 0.677535
+        <Tangent> { 0.721043 -0.122612 -0.681956 }
+        <Binormal> { 0.164844 -0.895304 0.335263 }
+      }
+      <Normal> { 0.476791 0.383892 0.790735 }
+    }
+    <Vertex> 1492 {
+      -12.8504314423 0.68888771534 -1.42975592613
+      <UV>  {
+        0.789993 0.674727
+        <Tangent> { 0.708774 -0.175799 -0.683179 }
+        <Binormal> { 0.103802 -0.931891 0.347489 }
+      }
+      <Normal> { 0.699942 0.316660 0.640126 }
+    }
+    <Vertex> 1493 {
+      -14.2371377945 0.803112506866 -0.0428524985909
+      <UV>  {
+        0.825640 0.677535
+        <Tangent> { 0.721043 -0.122612 -0.681956 }
+        <Binormal> { 0.164844 -0.895304 0.335263 }
+      }
+      <Normal> { 0.476791 0.383892 0.790735 }
+    }
+    <Vertex> 1494 {
+      -13.2726078033 -2.29160046577 1.3915374279
+      <UV>  {
+        0.831450 0.756246
+        <Tangent> { 0.617241 -0.263048 -0.741498 }
+        <Binormal> { 0.027849 -0.874568 0.333437 }
+      }
+      <Normal> { 0.519608 0.318766 0.792688 }
+    }
+    <Vertex> 1495 {
+      -12.2074108124 -2.40582537651 -0.158726722002
+      <UV>  {
+        0.795475 0.743383
+        <Tangent> { 0.543287 -0.294444 -0.786220 }
+        <Binormal> { 0.042152 -0.925132 0.375595 }
+      }
+      <Normal> { 0.818873 0.247536 0.517808 }
+    }
+    <Vertex> 1496 {
+      -12.8504314423 0.68888771534 -1.42975592613
+      <UV>  {
+        0.789993 0.674727
+        <Tangent> { 0.708774 -0.175799 -0.683179 }
+        <Binormal> { 0.103802 -0.931891 0.347489 }
+      }
+      <Normal> { 0.699942 0.316660 0.640126 }
+    }
+    <Vertex> 1497 {
+      -12.2074108124 -2.40582537651 -0.158726722002
+      <UV>  {
+        0.795475 0.743383
+        <Tangent> { 0.543287 -0.294444 -0.786220 }
+        <Binormal> { 0.042152 -0.925132 0.375595 }
+      }
+      <Normal> { 0.818873 0.247536 0.517808 }
+    }
+    <Vertex> 1498 {
+      -11.2966709137 -2.53559160233 -1.91784119606
+      <UV>  {
+        0.754813 0.737804
+        <Tangent> { 0.780181 -0.133340 -0.611177 }
+        <Binormal> { 0.031171 -0.967119 0.250786 }
+      }
+      <Normal> { 0.646199 0.211005 0.733390 }
+    }
+    <Vertex> 1499 {
+      -11.4574260712 0.559121608734 -2.86513662338
+      <UV>  {
+        0.749761 0.672163
+        <Tangent> { 0.862394 -0.087156 -0.498679 }
+        <Binormal> { 0.049689 -0.965422 0.254661 }
+      }
+      <Normal> { 0.524216 0.242317 0.816340 }
+    }
+    <Vertex> 1500 {
+      -12.8504314423 0.68888771534 -1.42975592613
+      <UV>  {
+        0.789993 0.674727
+        <Tangent> { 0.708774 -0.175799 -0.683179 }
+        <Binormal> { 0.103802 -0.931891 0.347489 }
+      }
+      <Normal> { 0.699942 0.316660 0.640126 }
+    }
+    <Vertex> 1501 {
+      -11.4574260712 0.559121608734 -2.86513662338
+      <UV>  {
+        0.749761 0.672163
+        <Tangent> { 0.862394 -0.087156 -0.498679 }
+        <Binormal> { 0.049689 -0.965422 0.254661 }
+      }
+      <Normal> { 0.524216 0.242317 0.816340 }
+    }
+    <Vertex> 1502 {
+      -11.5645942688 4.55468559265 -3.74585914612
+      <UV>  {
+        0.743356 0.590492
+        <Tangent> { 0.915003 -0.025220 -0.402658 }
+        <Binormal> { 0.021177 -0.993309 0.110337 }
+      }
+      <Normal> { 0.426588 0.108829 0.897855 }
+    }
+    <Vertex> 1503 {
+      -13.2791118622 4.68445158005 -2.5918776989
+      <UV>  {
+        0.784733 0.589275
+        <Tangent> { 0.800893 -0.168999 -0.574465 }
+        <Binormal> { -0.059182 -0.974833 0.204272 }
+      }
+      <Normal> { 0.647847 0.118351 0.752495 }
+    }
+    <Vertex> 1504 {
+      -5.4504237175 -11.3231954575 0.171608746052
+      <UV>  {
+        0.609120 0.917763
+        <Tangent> { 0.612755 0.121536 0.780871 }
+        <Binormal> { -0.016737 -0.985833 0.166570 }
+      }
+      <Normal> { -0.793695 0.114414 0.597400 }
+    }
+    <Vertex> 1505 {
+      -5.77582025528 -14.0086050034 0.0728101804852
+      <UV>  {
+        0.613086 0.975117
+        <Tangent> { 0.657014 0.035766 0.753030 }
+        <Binormal> { -0.018594 -0.997626 0.063606 }
+      }
+      <Normal> { -0.741813 0.056429 0.668203 }
+    }
+    <Vertex> 1506 {
+      -4.53326320648 -14.1648855209 1.29812788963
+      <UV>  {
+        0.583312 0.975667
+        <Tangent> { 0.674639 0.030666 0.737510 }
+        <Binormal> { 0.089475 -0.872349 -0.045575 }
+      }
+      <Normal> { -0.319193 -0.082064 0.944121 }
+    }
+    <Vertex> 1507 {
+      -4.33829259872 -11.25669384 1.53156352043
+      <UV>  {
+        0.577484 0.921236
+        <Tangent> { 0.633078 0.143527 0.760665 }
+        <Binormal> { 0.081398 -0.860917 0.094698 }
+      }
+      <Normal> { -0.356243 0.068819 0.931852 }
+    }
+    <Vertex> 1508 {
+      -5.4504237175 -11.3231954575 0.171608746052
+      <UV>  {
+        0.609120 0.917763
+        <Tangent> { 0.612755 0.121536 0.780871 }
+        <Binormal> { -0.016737 -0.985833 0.166570 }
+      }
+      <Normal> { -0.793695 0.114414 0.597400 }
+    }
+    <Vertex> 1509 {
+      -4.33829259872 -11.25669384 1.53156352043
+      <UV>  {
+        0.577484 0.921236
+        <Tangent> { 0.633078 0.143527 0.760665 }
+        <Binormal> { 0.081398 -0.860917 0.094698 }
+      }
+      <Normal> { -0.356243 0.068819 0.931852 }
+    }
+    <Vertex> 1510 {
+      -4.1140127182 -8.25123500824 1.05926406384
+      <UV>  {
+        0.571657 0.866805
+        <Tangent> { 0.645584 0.246080 0.722956 }
+        <Binormal> { 0.002245 -0.850554 0.287507 }
+      }
+      <Normal> { -0.401410 0.292337 0.867977 }
+    }
+    <Vertex> 1511 {
+      -5.06850767136 -8.36518573761 -0.216073006392
+      <UV>  {
+        0.607081 0.858261
+        <Tangent> { 0.614580 0.234157 0.753300 }
+        <Binormal> { -0.053983 -0.939583 0.336103 }
+      }
+      <Normal> { -0.764855 0.255470 0.591327 }
+    }
+    <Vertex> 1512 {
+      -5.4504237175 -11.3231954575 0.171608746052
+      <UV>  {
+        0.609120 0.917763
+        <Tangent> { 0.612755 0.121536 0.780871 }
+        <Binormal> { -0.016737 -0.985833 0.166570 }
+      }
+      <Normal> { -0.793695 0.114414 0.597400 }
+    }
+    <Vertex> 1513 {
+      -5.06850767136 -8.36518573761 -0.216073006392
+      <UV>  {
+        0.607081 0.858261
+        <Tangent> { 0.614580 0.234157 0.753300 }
+        <Binormal> { -0.053983 -0.939583 0.336103 }
+      }
+      <Normal> { -0.764855 0.255470 0.591327 }
+    }
+    <Vertex> 1514 {
+      -6.14313840866 -8.4844083786 -1.68592369556
+      <UV>  {
+        0.646144 0.855278
+        <Tangent> { 0.882204 0.063724 0.466535 }
+        <Binormal> { -0.041240 -0.976453 0.211358 }
+      }
+      <Normal> { -0.479659 0.204932 0.853175 }
+    }
+    <Vertex> 1515 {
+      -6.50391483307 -11.4107866287 -1.47977948189
+      <UV>  {
+        0.646255 0.915782
+        <Tangent> { 0.797124 0.062790 0.600542 }
+        <Binormal> { -0.014048 -0.990025 0.122159 }
+      }
+      <Normal> { -0.547655 0.110111 0.829402 }
+    }
+    <Vertex> 1516 {
+      -5.4504237175 -11.3231954575 0.171608746052
+      <UV>  {
+        0.609120 0.917763
+        <Tangent> { 0.612755 0.121536 0.780871 }
+        <Binormal> { -0.016737 -0.985833 0.166570 }
+      }
+      <Normal> { -0.793695 0.114414 0.597400 }
+    }
+    <Vertex> 1517 {
+      -6.50391483307 -11.4107866287 -1.47977948189
+      <UV>  {
+        0.646255 0.915782
+        <Tangent> { 0.797124 0.062790 0.600542 }
+        <Binormal> { -0.014048 -0.990025 0.122159 }
+      }
+      <Normal> { -0.547655 0.110111 0.829402 }
+    }
+    <Vertex> 1518 {
+      -6.85692882538 -14.240237236 -1.37037372589
+      <UV>  {
+        0.642860 0.974567
+        <Tangent> { 0.795518 0.089379 0.599301 }
+        <Binormal> { -0.025787 -0.973954 0.179485 }
+      }
+      <Normal> { -0.491623 0.170385 0.853938 }
+    }
+    <Vertex> 1519 {
+      -5.77582025528 -14.0086050034 0.0728101804852
+      <UV>  {
+        0.613086 0.975117
+        <Tangent> { 0.657014 0.035766 0.753030 }
+        <Binormal> { -0.018594 -0.997626 0.063606 }
+      }
+      <Normal> { -0.741813 0.056429 0.668203 }
+    }
+    <Vertex> 1520 {
+      -5.07858848572 20.0113945007 -2.25320339203
+      <UV>  {
+        0.605334 0.301975
+        <Tangent> { 0.433326 0.007078 0.901209 }
+        <Binormal> { -0.009718 -0.999848 0.012526 }
+      }
+      <Normal> { -0.900815 0.014191 0.433912 }
+    }
+    <Vertex> 1521 {
+      -5.07858848572 16.0748214722 -2.25320339203
+      <UV>  {
+        0.607152 0.376121
+        <Tangent> { 0.381856 -0.214051 0.899093 }
+        <Binormal> { -0.089007 -0.976571 -0.194695 }
+      }
+      <Normal> { -0.911802 0.001251 0.410565 }
+    }
+    <Vertex> 1522 {
+      -4.65152549744 16.2772274017 -0.64848524332
+      <UV>  {
+        0.575275 0.357573
+        <Tangent> { 0.288182 -0.202334 0.935955 }
+        <Binormal> { -0.137496 -0.893559 -0.150833 }
+      }
+      <Normal> { -0.751640 0.004334 0.659505 }
+    }
+    <Vertex> 1523 {
+      -4.51612854004 20.2782020569 -0.648485422134
+      <UV>  {
+        0.573537 0.300131
+        <Tangent> { 0.326046 0.089264 0.941130 }
+        <Binormal> { 0.022341 -0.900216 0.077644 }
+      }
+      <Normal> { -0.714652 0.042482 0.698172 }
+    }
+    <Vertex> 1524 {
+      -5.07858848572 20.0113945007 -2.25320339203
+      <UV>  {
+        0.605334 0.301975
+        <Tangent> { 0.433326 0.007078 0.901209 }
+        <Binormal> { -0.009718 -0.999848 0.012526 }
+      }
+      <Normal> { -0.900815 0.014191 0.433912 }
+    }
+    <Vertex> 1525 {
+      -4.51612854004 20.2782020569 -0.648485422134
+      <UV>  {
+        0.573537 0.300131
+        <Tangent> { 0.326046 0.089264 0.941130 }
+        <Binormal> { 0.022341 -0.900216 0.077644 }
+      }
+      <Normal> { -0.714652 0.042482 0.698172 }
+    }
+    <Vertex> 1526 {
+      -4.2453327179 23.4160194397 -0.648485422134
+      <UV>  {
+        0.571800 0.242689
+        <Tangent> { 0.393982 0.118816 0.911406 }
+        <Binormal> { 0.035828 -0.903592 0.102309 }
+      }
+      <Normal> { -0.672445 0.056887 0.737907 }
+    }
+    <Vertex> 1527 {
+      -5.07858848572 23.0735740662 -2.25320339203
+      <UV>  {
+        0.603514 0.244386
+        <Tangent> { 0.487106 0.098844 0.867731 }
+        <Binormal> { 0.027782 -0.994223 0.097657 }
+      }
+      <Normal> { -0.888882 0.020112 0.457625 }
+    }
+    <Vertex> 1528 {
+      -5.07858848572 20.0113945007 -2.25320339203
+      <UV>  {
+        0.605334 0.301975
+        <Tangent> { 0.433326 0.007078 0.901209 }
+        <Binormal> { -0.009718 -0.999848 0.012526 }
+      }
+      <Normal> { -0.900815 0.014191 0.433912 }
+    }
+    <Vertex> 1529 {
+      -5.07858848572 23.0735740662 -2.25320339203
+      <UV>  {
+        0.603514 0.244386
+        <Tangent> { 0.487106 0.098844 0.867731 }
+        <Binormal> { 0.027782 -0.994223 0.097657 }
+      }
+      <Normal> { -0.888882 0.020112 0.457625 }
+    }
+    <Vertex> 1530 {
+      -6.05722475052 22.9438095093 -3.8579211235
+      <UV>  {
+        0.639997 0.244893
+        <Tangent> { 0.832010 0.056806 0.551845 }
+        <Binormal> { 0.046500 -0.998030 0.032629 }
+      }
+      <Normal> { -0.574389 0.000000 0.818567 }
+    }
+    <Vertex> 1531 {
+      -6.05722475052 19.8816280365 -3.8579211235
+      <UV>  {
+        0.642011 0.302627
+        <Tangent> { 0.831912 0.055003 0.552175 }
+        <Binormal> { 0.045023 -0.998139 0.031593 }
+      }
+      <Normal> { -0.574389 0.000000 0.818567 }
+    }
+    <Vertex> 1532 {
+      -5.07858848572 20.0113945007 -2.25320339203
+      <UV>  {
+        0.605334 0.301975
+        <Tangent> { 0.433326 0.007078 0.901209 }
+        <Binormal> { -0.009718 -0.999848 0.012526 }
+      }
+      <Normal> { -0.900815 0.014191 0.433912 }
+    }
+    <Vertex> 1533 {
+      -6.05722475052 19.8816280365 -3.8579211235
+      <UV>  {
+        0.642011 0.302627
+        <Tangent> { 0.831912 0.055003 0.552175 }
+        <Binormal> { 0.045023 -0.998139 0.031593 }
+      }
+      <Normal> { -0.574389 0.000000 0.818567 }
+    }
+    <Vertex> 1534 {
+      -6.05722570419 15.9450550079 -3.85792136192
+      <UV>  {
+        0.643935 0.376977
+        <Tangent> { 0.831993 0.050098 0.552520 }
+        <Binormal> { 0.041009 -0.998403 0.028776 }
+      }
+      <Normal> { -0.574389 0.000000 0.818567 }
+    }
+    <Vertex> 1535 {
+      -5.07858848572 16.0748214722 -2.25320339203
+      <UV>  {
+        0.607152 0.376121
+        <Tangent> { 0.381856 -0.214051 0.899093 }
+        <Binormal> { -0.089007 -0.976571 -0.194695 }
+      }
+      <Normal> { -0.911802 0.001251 0.410565 }
+    }
+    <Vertex> 1536 {
+      -4.66642713547 -5.40828943253 -1.56579959393
+      <UV>  {
+        0.608898 0.794463
+        <Tangent> { 0.728259 0.172345 0.663277 }
+        <Binormal> { -0.106702 -0.927489 0.358153 }
+      }
+      <Normal> { -0.673757 0.332347 0.659932 }
+    }
+    <Vertex> 1537 {
+      -5.06850767136 -8.36518573761 -0.216073006392
+      <UV>  {
+        0.607081 0.858261
+        <Tangent> { 0.614580 0.234157 0.753300 }
+        <Binormal> { -0.053983 -0.939583 0.336103 }
+      }
+      <Normal> { -0.764855 0.255470 0.591327 }
+    }
+    <Vertex> 1538 {
+      -4.1140127182 -8.25123500824 1.05926406384
+      <UV>  {
+        0.571657 0.866805
+        <Tangent> { 0.645584 0.246080 0.722956 }
+        <Binormal> { 0.002245 -0.850554 0.287507 }
+      }
+      <Normal> { -0.401410 0.292337 0.867977 }
+    }
+    <Vertex> 1539 {
+      -3.62709021568 -5.27852344513 -0.40430277586
+      <UV>  {
+        0.573326 0.798771
+        <Tangent> { 0.688375 0.206234 0.695419 }
+        <Binormal> { -0.092745 -0.877274 0.351971 }
+      }
+      <Normal> { -0.467360 0.371288 0.802271 }
+    }
+    <Vertex> 1540 {
+      -4.66642713547 -5.40828943253 -1.56579959393
+      <UV>  {
+        0.608898 0.794463
+        <Tangent> { 0.728259 0.172345 0.663277 }
+        <Binormal> { -0.106702 -0.927489 0.358153 }
+      }
+      <Normal> { -0.673757 0.332347 0.659932 }
+    }
+    <Vertex> 1541 {
+      -3.62709021568 -5.27852344513 -0.40430277586
+      <UV>  {
+        0.573326 0.798771
+        <Tangent> { 0.688375 0.206234 0.695419 }
+        <Binormal> { -0.092745 -0.877274 0.351971 }
+      }
+      <Normal> { -0.467360 0.371288 0.802271 }
+    }
+    <Vertex> 1542 {
+      -3.31796836853 -2.2760591507 -1.65932631493
+      <UV>  {
+        0.574996 0.730736
+        <Tangent> { 0.679897 0.120334 0.723366 }
+        <Binormal> { 0.003681 -0.960768 0.156367 }
+      }
+      <Normal> { -0.558153 0.131199 0.819269 }
+    }
+    <Vertex> 1543 {
+      -4.46034574509 -2.40582537651 -2.79594349861
+      <UV>  {
+        0.611473 0.729839
+        <Tangent> { 0.803286 0.100387 0.587073 }
+        <Binormal> { -0.011842 -0.980828 0.183922 }
+      }
+      <Normal> { -0.644795 0.148381 0.749779 }
+    }
+    <Vertex> 1544 {
+      -4.66642713547 -5.40828943253 -1.56579959393
+      <UV>  {
+        0.608898 0.794463
+        <Tangent> { 0.728259 0.172345 0.663277 }
+        <Binormal> { -0.106702 -0.927489 0.358153 }
+      }
+      <Normal> { -0.673757 0.332347 0.659932 }
+    }
+    <Vertex> 1545 {
+      -4.46034574509 -2.40582537651 -2.79594349861
+      <UV>  {
+        0.611473 0.729839
+        <Tangent> { 0.803286 0.100387 0.587073 }
+        <Binormal> { -0.011842 -0.980828 0.183922 }
+      }
+      <Normal> { -0.644795 0.148381 0.749779 }
+    }
+    <Vertex> 1546 {
+      -5.90266561508 -2.53559160233 -3.52145266533
+      <UV>  {
+        0.652771 0.729502
+        <Tangent> { 0.981077 0.023330 0.192208 }
+        <Binormal> { -0.015373 -0.978895 0.197281 }
+      }
+      <Normal> { -0.242561 0.195318 0.950255 }
+    }
+    <Vertex> 1547 {
+      -5.95418548584 -5.53805494308 -2.58437824249
+      <UV>  {
+        0.649699 0.792454
+        <Tangent> { 0.962772 0.045216 0.266505 }
+        <Binormal> { -0.037377 -0.952327 0.296603 }
+      }
+      <Normal> { -0.325297 0.292795 0.899106 }
+    }
+    <Vertex> 1548 {
+      -4.66642713547 -5.40828943253 -1.56579959393
+      <UV>  {
+        0.608898 0.794463
+        <Tangent> { 0.728259 0.172345 0.663277 }
+        <Binormal> { -0.106702 -0.927489 0.358153 }
+      }
+      <Normal> { -0.673757 0.332347 0.659932 }
+    }
+    <Vertex> 1549 {
+      -5.95418548584 -5.53805494308 -2.58437824249
+      <UV>  {
+        0.649699 0.792454
+        <Tangent> { 0.962772 0.045216 0.266505 }
+        <Binormal> { -0.037377 -0.952327 0.296603 }
+      }
+      <Normal> { -0.325297 0.292795 0.899106 }
+    }
+    <Vertex> 1550 {
+      -6.14313840866 -8.4844083786 -1.68592369556
+      <UV>  {
+        0.646144 0.855278
+        <Tangent> { 0.882204 0.063724 0.466535 }
+        <Binormal> { -0.041240 -0.976453 0.211358 }
+      }
+      <Normal> { -0.479659 0.204932 0.853175 }
+    }
+    <Vertex> 1551 {
+      -5.06850767136 -8.36518573761 -0.216073006392
+      <UV>  {
+        0.607081 0.858261
+        <Tangent> { 0.614580 0.234157 0.753300 }
+        <Binormal> { -0.053983 -0.939583 0.336103 }
+      }
+      <Normal> { -0.764855 0.255470 0.591327 }
+    }
+    <Vertex> 1552 {
+      -5.07858848572 10.3894691467 -2.25320339203
+      <UV>  {
+        0.608966 0.483381
+        <Tangent> { 0.442298 0.027441 0.896448 }
+        <Binormal> { 0.029612 -0.999402 0.015982 }
+      }
+      <Normal> { -0.894284 -0.019349 0.447035 }
+    }
+    <Vertex> 1553 {
+      -4.97554731369 4.68445158005 -2.39612150192
+      <UV>  {
+        0.610559 0.591408
+        <Tangent> { 0.496952 0.254438 0.829638 }
+        <Binormal> { 0.203065 -0.963152 0.173749 }
+      }
+      <Normal> { -0.828791 -0.074709 0.554491 }
+    }
+    <Vertex> 1554 {
+      -4.15847110748 4.82189369202 -0.862862765789
+      <UV>  {
+        0.579086 0.604180
+        <Tangent> { 0.445809 0.253351 0.858526 }
+        <Binormal> { 0.294482 -0.887981 0.109127 }
+      }
+      <Normal> { -0.640278 -0.119083 0.758812 }
+    }
+    <Vertex> 1555 {
+      -4.51612854004 10.5499382019 -0.648485422134
+      <UV>  {
+        0.577180 0.480876
+        <Tangent> { 0.333683 0.025945 0.942328 }
+        <Binormal> { 0.056754 -0.904755 0.004814 }
+      }
+      <Normal> { -0.711875 -0.040925 0.701071 }
+    }
+    <Vertex> 1556 {
+      -5.07858848572 10.3894691467 -2.25320339203
+      <UV>  {
+        0.608966 0.483381
+        <Tangent> { 0.442298 0.027441 0.896448 }
+        <Binormal> { 0.029612 -0.999402 0.015982 }
+      }
+      <Normal> { -0.894284 -0.019349 0.447035 }
+    }
+    <Vertex> 1557 {
+      -4.51612854004 10.5499382019 -0.648485422134
+      <UV>  {
+        0.577180 0.480876
+        <Tangent> { 0.333683 0.025945 0.942328 }
+        <Binormal> { 0.056754 -0.904755 0.004814 }
+      }
+      <Normal> { -0.711875 -0.040925 0.701071 }
+    }
+    <Vertex> 1558 {
+      -4.65152549744 16.2772274017 -0.64848524332
+      <UV>  {
+        0.575275 0.357573
+        <Tangent> { 0.288182 -0.202334 0.935955 }
+        <Binormal> { -0.137496 -0.893559 -0.150833 }
+      }
+      <Normal> { -0.751640 0.004334 0.659505 }
+    }
+    <Vertex> 1559 {
+      -5.07858848572 16.0748214722 -2.25320339203
+      <UV>  {
+        0.607152 0.376121
+        <Tangent> { 0.381856 -0.214051 0.899093 }
+        <Binormal> { -0.089007 -0.976571 -0.194695 }
+      }
+      <Normal> { -0.911802 0.001251 0.410565 }
+    }
+    <Vertex> 1560 {
+      -5.07858848572 10.3894691467 -2.25320339203
+      <UV>  {
+        0.608966 0.483381
+        <Tangent> { 0.442298 0.027441 0.896448 }
+        <Binormal> { 0.029612 -0.999402 0.015982 }
+      }
+      <Normal> { -0.894284 -0.019349 0.447035 }
+    }
+    <Vertex> 1561 {
+      -5.07858848572 16.0748214722 -2.25320339203
+      <UV>  {
+        0.607152 0.376121
+        <Tangent> { 0.381856 -0.214051 0.899093 }
+        <Binormal> { -0.089007 -0.976571 -0.194695 }
+      }
+      <Normal> { -0.911802 0.001251 0.410565 }
+    }
+    <Vertex> 1562 {
+      -6.05722570419 15.9450550079 -3.85792136192
+      <UV>  {
+        0.643935 0.376977
+        <Tangent> { 0.831993 0.050098 0.552520 }
+        <Binormal> { 0.041009 -0.998403 0.028776 }
+      }
+      <Normal> { -0.574389 0.000000 0.818567 }
+    }
+    <Vertex> 1563 {
+      -6.05722475052 10.2597026825 -3.8579211235
+      <UV>  {
+        0.645677 0.484559
+        <Tangent> { 0.832208 0.044450 0.552679 }
+        <Binormal> { 0.037206 -0.998947 0.024318 }
+      }
+      <Normal> { -0.560228 -0.000702 0.828303 }
+    }
+    <Vertex> 1564 {
+      -5.07858848572 10.3894691467 -2.25320339203
+      <UV>  {
+        0.608966 0.483381
+        <Tangent> { 0.442298 0.027441 0.896448 }
+        <Binormal> { 0.029612 -0.999402 0.015982 }
+      }
+      <Normal> { -0.894284 -0.019349 0.447035 }
+    }
+    <Vertex> 1565 {
+      -6.05722475052 10.2597026825 -3.8579211235
+      <UV>  {
+        0.645677 0.484559
+        <Tangent> { 0.832208 0.044450 0.552679 }
+        <Binormal> { 0.037206 -0.998947 0.024318 }
+      }
+      <Normal> { -0.560228 -0.000702 0.828303 }
+    }
+    <Vertex> 1566 {
+      -6.0314655304 4.55468559265 -3.8543047905
+      <UV>  {
+        0.647886 0.592673
+        <Tangent> { 0.890930 0.033279 0.452920 }
+        <Binormal> { 0.030834 -0.998846 0.012738 }
+      }
+      <Normal> { -0.483261 -0.003754 0.875454 }
+    }
+    <Vertex> 1567 {
+      -4.97554731369 4.68445158005 -2.39612150192
+      <UV>  {
+        0.610559 0.591408
+        <Tangent> { 0.496952 0.254438 0.829638 }
+        <Binormal> { 0.203065 -0.963152 0.173749 }
+      }
+      <Normal> { -0.828791 -0.074709 0.554491 }
+    }
+    <Vertex> 1568 {
+      -4.66642618179 0.68888771534 -2.82487607002
+      <UV>  {
+        0.611710 0.667857
+        <Tangent> { 0.670791 0.127072 0.730679 }
+        <Binormal> { 0.140305 -0.988945 0.043182 }
+      }
+      <Normal> { -0.714866 -0.071047 0.695608 }
+    }
+    <Vertex> 1569 {
+      -4.46034574509 -2.40582537651 -2.79594349861
+      <UV>  {
+        0.611473 0.729839
+        <Tangent> { 0.803286 0.100387 0.587073 }
+        <Binormal> { -0.011842 -0.980828 0.183922 }
+      }
+      <Normal> { -0.644795 0.148381 0.749779 }
+    }
+    <Vertex> 1570 {
+      -3.31796836853 -2.2760591507 -1.65932631493
+      <UV>  {
+        0.574996 0.730736
+        <Tangent> { 0.679897 0.120334 0.723366 }
+        <Binormal> { 0.003681 -0.960768 0.156367 }
+      }
+      <Normal> { -0.558153 0.131199 0.819269 }
+    }
+    <Vertex> 1571 {
+      -3.62708950043 0.81865388155 -1.50599467754
+      <UV>  {
+        0.577041 0.667458
+        <Tangent> { 0.619387 0.063829 0.782487 }
+        <Binormal> { 0.148093 -0.957039 -0.039157 }
+      }
+      <Normal> { -0.593921 -0.124424 0.794824 }
+    }
+    <Vertex> 1572 {
+      -4.66642618179 0.68888771534 -2.82487607002
+      <UV>  {
+        0.611710 0.667857
+        <Tangent> { 0.670791 0.127072 0.730679 }
+        <Binormal> { 0.140305 -0.988945 0.043182 }
+      }
+      <Normal> { -0.714866 -0.071047 0.695608 }
+    }
+    <Vertex> 1573 {
+      -3.62708950043 0.81865388155 -1.50599467754
+      <UV>  {
+        0.577041 0.667458
+        <Tangent> { 0.619387 0.063829 0.782487 }
+        <Binormal> { 0.148093 -0.957039 -0.039157 }
+      }
+      <Normal> { -0.593921 -0.124424 0.794824 }
+    }
+    <Vertex> 1574 {
+      -4.15847110748 4.82189369202 -0.862862765789
+      <UV>  {
+        0.579086 0.604180
+        <Tangent> { 0.445809 0.253351 0.858526 }
+        <Binormal> { 0.294482 -0.887981 0.109127 }
+      }
+      <Normal> { -0.640278 -0.119083 0.758812 }
+    }
+    <Vertex> 1575 {
+      -4.97554731369 4.68445158005 -2.39612150192
+      <UV>  {
+        0.610559 0.591408
+        <Tangent> { 0.496952 0.254438 0.829638 }
+        <Binormal> { 0.203065 -0.963152 0.173749 }
+      }
+      <Normal> { -0.828791 -0.074709 0.554491 }
+    }
+    <Vertex> 1576 {
+      -4.66642618179 0.68888771534 -2.82487607002
+      <UV>  {
+        0.611710 0.667857
+        <Tangent> { 0.670791 0.127072 0.730679 }
+        <Binormal> { 0.140305 -0.988945 0.043182 }
+      }
+      <Normal> { -0.714866 -0.071047 0.695608 }
+    }
+    <Vertex> 1577 {
+      -4.97554731369 4.68445158005 -2.39612150192
+      <UV>  {
+        0.610559 0.591408
+        <Tangent> { 0.496952 0.254438 0.829638 }
+        <Binormal> { 0.203065 -0.963152 0.173749 }
+      }
+      <Normal> { -0.828791 -0.074709 0.554491 }
+    }
+    <Vertex> 1578 {
+      -6.0314655304 4.55468559265 -3.8543047905
+      <UV>  {
+        0.647886 0.592673
+        <Tangent> { 0.890930 0.033279 0.452920 }
+        <Binormal> { 0.030834 -0.998846 0.012738 }
+      }
+      <Normal> { -0.483261 -0.003754 0.875454 }
+    }
+    <Vertex> 1579 {
+      -5.95418548584 0.559121608734 -3.8434548378
+      <UV>  {
+        0.651208 0.668615
+        <Tangent> { 0.964026 0.017725 0.265215 }
+        <Binormal> { 0.004886 -0.996378 0.048833 }
+      }
+      <Normal> { -0.331645 0.044557 0.942320 }
+    }
+    <Vertex> 1580 {
+      -4.66642618179 0.68888771534 -2.82487607002
+      <UV>  {
+        0.611710 0.667857
+        <Tangent> { 0.670791 0.127072 0.730679 }
+        <Binormal> { 0.140305 -0.988945 0.043182 }
+      }
+      <Normal> { -0.714866 -0.071047 0.695608 }
+    }
+    <Vertex> 1581 {
+      -5.95418548584 0.559121608734 -3.8434548378
+      <UV>  {
+        0.651208 0.668615
+        <Tangent> { 0.964026 0.017725 0.265215 }
+        <Binormal> { 0.004886 -0.996378 0.048833 }
+      }
+      <Normal> { -0.331645 0.044557 0.942320 }
+    }
+    <Vertex> 1582 {
+      -5.90266561508 -2.53559160233 -3.52145266533
+      <UV>  {
+        0.652771 0.729502
+        <Tangent> { 0.981077 0.023330 0.192208 }
+        <Binormal> { -0.015373 -0.978895 0.197281 }
+      }
+      <Normal> { -0.242561 0.195318 0.950255 }
+    }
+    <Vertex> 1583 {
+      -4.46034574509 -2.40582537651 -2.79594349861
+      <UV>  {
+        0.611473 0.729839
+        <Tangent> { 0.803286 0.100387 0.587073 }
+        <Binormal> { -0.011842 -0.980828 0.183922 }
+      }
+      <Normal> { -0.644795 0.148381 0.749779 }
+    }
+    <Vertex> 1584 {
+      -8.68826389313 0.515866219997 -3.76328897476
+      <UV>  {
+        0.700363 0.670088
+        <Tangent> { 0.987235 -0.028549 -0.156691 }
+        <Binormal> { -0.003327 -0.987253 0.158910 }
+      }
+      <Normal> { 0.157598 0.156407 0.975005 }
+    }
+    <Vertex> 1585 {
+      -8.68826580048 -2.57884645462 -3.13375067711
+      <UV>  {
+        0.703898 0.732667
+        <Tangent> { 0.959920 -0.072165 -0.270826 }
+        <Binormal> { -0.013520 -0.975780 0.212088 }
+      }
+      <Normal> { 0.230445 0.203619 0.951506 }
+    }
+    <Vertex> 1586 {
+      -5.90266561508 -2.53559160233 -3.52145266533
+      <UV>  {
+        0.652771 0.729502
+        <Tangent> { 0.981077 0.023330 0.192208 }
+        <Binormal> { -0.015373 -0.978895 0.197281 }
+      }
+      <Normal> { -0.242561 0.195318 0.950255 }
+    }
+    <Vertex> 1587 {
+      -5.95418548584 0.559121608734 -3.8434548378
+      <UV>  {
+        0.651208 0.668615
+        <Tangent> { 0.964026 0.017725 0.265215 }
+        <Binormal> { 0.004886 -0.996378 0.048833 }
+      }
+      <Normal> { -0.331645 0.044557 0.942320 }
+    }
+    <Vertex> 1588 {
+      -8.68826389313 0.515866219997 -3.76328897476
+      <UV>  {
+        0.700363 0.670088
+        <Tangent> { 0.987235 -0.028549 -0.156691 }
+        <Binormal> { -0.003327 -0.987253 0.158910 }
+      }
+      <Normal> { 0.157598 0.156407 0.975005 }
+    }
+    <Vertex> 1589 {
+      -5.95418548584 0.559121608734 -3.8434548378
+      <UV>  {
+        0.651208 0.668615
+        <Tangent> { 0.964026 0.017725 0.265215 }
+        <Binormal> { 0.004886 -0.996378 0.048833 }
+      }
+      <Normal> { -0.331645 0.044557 0.942320 }
+    }
+    <Vertex> 1590 {
+      -6.0314655304 4.55468559265 -3.8543047905
+      <UV>  {
+        0.647886 0.592673
+        <Tangent> { 0.890930 0.033279 0.452920 }
+        <Binormal> { 0.030834 -0.998846 0.012738 }
+      }
+      <Normal> { -0.483261 -0.003754 0.875454 }
+    }
+    <Vertex> 1591 {
+      -8.68826389313 4.51143074036 -4.2354426384
+      <UV>  {
+        0.694946 0.591996
+        <Tangent> { 0.999613 0.020521 -0.018783 }
+        <Binormal> { 0.021739 -0.997132 0.067537 }
+      }
+      <Normal> { 0.043336 0.068453 0.996704 }
+    }
+    <Vertex> 1592 {
+      -8.68826389313 0.515866219997 -3.76328897476
+      <UV>  {
+        0.700363 0.670088
+        <Tangent> { 0.987235 -0.028549 -0.156691 }
+        <Binormal> { -0.003327 -0.987253 0.158910 }
+      }
+      <Normal> { 0.157598 0.156407 0.975005 }
+    }
+    <Vertex> 1593 {
+      -8.68826389313 4.51143074036 -4.2354426384
+      <UV>  {
+        0.694946 0.591996
+        <Tangent> { 0.999613 0.020521 -0.018783 }
+        <Binormal> { 0.021739 -0.997132 0.067537 }
+      }
+      <Normal> { 0.043336 0.068453 0.996704 }
+    }
+    <Vertex> 1594 {
+      -11.5645942688 4.55468559265 -3.74585914612
+      <UV>  {
+        0.743356 0.590492
+        <Tangent> { 0.915003 -0.025220 -0.402658 }
+        <Binormal> { 0.021177 -0.993309 0.110337 }
+      }
+      <Normal> { 0.426588 0.108829 0.897855 }
+    }
+    <Vertex> 1595 {
+      -11.4574260712 0.559121608734 -2.86513662338
+      <UV>  {
+        0.749761 0.672163
+        <Tangent> { 0.862394 -0.087156 -0.498679 }
+        <Binormal> { 0.049689 -0.965422 0.254661 }
+      }
+      <Normal> { 0.524216 0.242317 0.816340 }
+    }
+    <Vertex> 1596 {
+      -8.68826389313 0.515866219997 -3.76328897476
+      <UV>  {
+        0.700363 0.670088
+        <Tangent> { 0.987235 -0.028549 -0.156691 }
+        <Binormal> { -0.003327 -0.987253 0.158910 }
+      }
+      <Normal> { 0.157598 0.156407 0.975005 }
+    }
+    <Vertex> 1597 {
+      -11.4574260712 0.559121608734 -2.86513662338
+      <UV>  {
+        0.749761 0.672163
+        <Tangent> { 0.862394 -0.087156 -0.498679 }
+        <Binormal> { 0.049689 -0.965422 0.254661 }
+      }
+      <Normal> { 0.524216 0.242317 0.816340 }
+    }
+    <Vertex> 1598 {
+      -11.2966709137 -2.53559160233 -1.91784119606
+      <UV>  {
+        0.754813 0.737804
+        <Tangent> { 0.780181 -0.133340 -0.611177 }
+        <Binormal> { 0.031171 -0.967119 0.250786 }
+      }
+      <Normal> { 0.646199 0.211005 0.733390 }
+    }
+    <Vertex> 1599 {
+      -8.68826580048 -2.57884645462 -3.13375067711
+      <UV>  {
+        0.703898 0.732667
+        <Tangent> { 0.959920 -0.072165 -0.270826 }
+        <Binormal> { -0.013520 -0.975780 0.212088 }
+      }
+      <Normal> { 0.230445 0.203619 0.951506 }
+    }
+    <Vertex> 1600 {
+      -8.68826389313 10.2164478302 -4.392827034
+      <UV>  {
+        0.692238 0.483085
+        <Tangent> { 0.999382 0.033652 0.010117 }
+        <Binormal> { 0.033559 -0.999390 0.009267 }
+      }
+      <Normal> { -0.009827 0.008942 0.999908 }
+    }
+    <Vertex> 1601 {
+      -8.68826389313 4.51143074036 -4.2354426384
+      <UV>  {
+        0.694946 0.591996
+        <Tangent> { 0.999613 0.020521 -0.018783 }
+        <Binormal> { 0.021739 -0.997132 0.067537 }
+      }
+      <Normal> { 0.043336 0.068453 0.996704 }
+    }
+    <Vertex> 1602 {
+      -6.0314655304 4.55468559265 -3.8543047905
+      <UV>  {
+        0.647886 0.592673
+        <Tangent> { 0.890930 0.033279 0.452920 }
+        <Binormal> { 0.030834 -0.998846 0.012738 }
+      }
+      <Normal> { -0.483261 -0.003754 0.875454 }
+    }
+    <Vertex> 1603 {
+      -6.05722475052 10.2597026825 -3.8579211235
+      <UV>  {
+        0.645677 0.484559
+        <Tangent> { 0.832208 0.044450 0.552679 }
+        <Binormal> { 0.037206 -0.998947 0.024318 }
+      }
+      <Normal> { -0.560228 -0.000702 0.828303 }
+    }
+    <Vertex> 1604 {
+      -8.68826389313 10.2164478302 -4.392827034
+      <UV>  {
+        0.692238 0.483085
+        <Tangent> { 0.999382 0.033652 0.010117 }
+        <Binormal> { 0.033559 -0.999390 0.009267 }
+      }
+      <Normal> { -0.009827 0.008942 0.999908 }
+    }
+    <Vertex> 1605 {
+      -6.05722475052 10.2597026825 -3.8579211235
+      <UV>  {
+        0.645677 0.484559
+        <Tangent> { 0.832208 0.044450 0.552679 }
+        <Binormal> { 0.037206 -0.998947 0.024318 }
+      }
+      <Normal> { -0.560228 -0.000702 0.828303 }
+    }
+    <Vertex> 1606 {
+      -6.05722570419 15.9450550079 -3.85792136192
+      <UV>  {
+        0.643935 0.376977
+        <Tangent> { 0.831993 0.050098 0.552520 }
+        <Binormal> { 0.041009 -0.998403 0.028776 }
+      }
+      <Normal> { -0.574389 0.000000 0.818567 }
+    }
+    <Vertex> 1607 {
+      -8.68826389313 15.901799202 -4.392827034
+      <UV>  {
+        0.690616 0.375376
+        <Tangent> { 0.999220 0.037942 0.010967 }
+        <Binormal> { 0.037979 -0.999241 -0.003312 }
+      }
+      <Normal> { -0.007538 -0.003601 0.999939 }
+    }
+    <Vertex> 1608 {
+      -8.68826389313 10.2164478302 -4.392827034
+      <UV>  {
+        0.692238 0.483085
+        <Tangent> { 0.999382 0.033652 0.010117 }
+        <Binormal> { 0.033559 -0.999390 0.009267 }
+      }
+      <Normal> { -0.009827 0.008942 0.999908 }
+    }
+    <Vertex> 1609 {
+      -8.68826389313 15.901799202 -4.392827034
+      <UV>  {
+        0.690616 0.375376
+        <Tangent> { 0.999220 0.037942 0.010967 }
+        <Binormal> { 0.037979 -0.999241 -0.003312 }
+      }
+      <Normal> { -0.007538 -0.003601 0.999939 }
+    }
+    <Vertex> 1610 {
+      -11.2966690063 15.9450550079 -3.8851480484
+      <UV>  {
+        0.740080 0.373241
+        <Tangent> { 0.869572 -0.004739 -0.493783 }
+        <Binormal> { -0.021335 -0.997302 -0.028001 }
+      }
+      <Normal> { 0.548143 -0.035188 0.835627 }
+    }
+    <Vertex> 1611 {
+      -11.4574260712 10.2597026825 -3.96682834625
+      <UV>  {
+        0.741022 0.480651
+        <Tangent> { 0.918684 0.008162 -0.394908 }
+        <Binormal> { 0.000826 -0.997918 -0.018703 }
+      }
+      <Normal> { 0.450331 -0.016358 0.892666 }
+    }
+    <Vertex> 1612 {
+      -8.68826389313 10.2164478302 -4.392827034
+      <UV>  {
+        0.692238 0.483085
+        <Tangent> { 0.999382 0.033652 0.010117 }
+        <Binormal> { 0.033559 -0.999390 0.009267 }
+      }
+      <Normal> { -0.009827 0.008942 0.999908 }
+    }
+    <Vertex> 1613 {
+      -11.4574260712 10.2597026825 -3.96682834625
+      <UV>  {
+        0.741022 0.480651
+        <Tangent> { 0.918684 0.008162 -0.394908 }
+        <Binormal> { 0.000826 -0.997918 -0.018703 }
+      }
+      <Normal> { 0.450331 -0.016358 0.892666 }
+    }
+    <Vertex> 1614 {
+      -11.5645942688 4.55468559265 -3.74585914612
+      <UV>  {
+        0.743356 0.590492
+        <Tangent> { 0.915003 -0.025220 -0.402658 }
+        <Binormal> { 0.021177 -0.993309 0.110337 }
+      }
+      <Normal> { 0.426588 0.108829 0.897855 }
+    }
+    <Vertex> 1615 {
+      -8.68826389313 4.51143074036 -4.2354426384
+      <UV>  {
+        0.694946 0.591996
+        <Tangent> { 0.999613 0.020521 -0.018783 }
+        <Binormal> { 0.021739 -0.997132 0.067537 }
+      }
+      <Normal> { 0.043336 0.068453 0.996704 }
+    }
+    <Vertex> 1616 {
+      -8.68826580048 -5.58131074905 -2.50421237946
+      <UV>  {
+        0.700960 0.795041
+        <Tangent> { 0.982164 -0.058732 -0.178620 }
+        <Binormal> { -0.023224 -0.980553 0.194714 }
+      }
+      <Normal> { 0.186316 0.187109 0.964476 }
+    }
+    <Vertex> 1617 {
+      -8.67016029358 -8.53820705414 -2.05539393425
+      <UV>  {
+        0.696230 0.856614
+        <Tangent> { 0.998130 -0.034033 -0.050767 }
+        <Binormal> { -0.028225 -0.992777 0.110597 }
+      }
+      <Normal> { 0.090152 0.107730 0.990051 }
+    }
+    <Vertex> 1618 {
+      -6.14313840866 -8.4844083786 -1.68592369556
+      <UV>  {
+        0.646144 0.855278
+        <Tangent> { 0.882204 0.063724 0.466535 }
+        <Binormal> { -0.041240 -0.976453 0.211358 }
+      }
+      <Normal> { -0.479659 0.204932 0.853175 }
+    }
+    <Vertex> 1619 {
+      -5.95418548584 -5.53805494308 -2.58437824249
+      <UV>  {
+        0.649699 0.792454
+        <Tangent> { 0.962772 0.045216 0.266505 }
+        <Binormal> { -0.037377 -0.952327 0.296603 }
+      }
+      <Normal> { -0.325297 0.292795 0.899106 }
+    }
+    <Vertex> 1620 {
+      -8.68826580048 -5.58131074905 -2.50421237946
+      <UV>  {
+        0.700960 0.795041
+        <Tangent> { 0.982164 -0.058732 -0.178620 }
+        <Binormal> { -0.023224 -0.980553 0.194714 }
+      }
+      <Normal> { 0.186316 0.187109 0.964476 }
+    }
+    <Vertex> 1621 {
+      -5.95418548584 -5.53805494308 -2.58437824249
+      <UV>  {
+        0.649699 0.792454
+        <Tangent> { 0.962772 0.045216 0.266505 }
+        <Binormal> { -0.037377 -0.952327 0.296603 }
+      }
+      <Normal> { -0.325297 0.292795 0.899106 }
+    }
+    <Vertex> 1622 {
+      -5.90266561508 -2.53559160233 -3.52145266533
+      <UV>  {
+        0.652771 0.729502
+        <Tangent> { 0.981077 0.023330 0.192208 }
+        <Binormal> { -0.015373 -0.978895 0.197281 }
+      }
+      <Normal> { -0.242561 0.195318 0.950255 }
+    }
+    <Vertex> 1623 {
+      -8.68826580048 -2.57884645462 -3.13375067711
+      <UV>  {
+        0.703898 0.732667
+        <Tangent> { 0.959920 -0.072165 -0.270826 }
+        <Binormal> { -0.013520 -0.975780 0.212088 }
+      }
+      <Normal> { 0.230445 0.203619 0.951506 }
+    }
+    <Vertex> 1624 {
+      -8.68826580048 -5.58131074905 -2.50421237946
+      <UV>  {
+        0.700960 0.795041
+        <Tangent> { 0.982164 -0.058732 -0.178620 }
+        <Binormal> { -0.023224 -0.980553 0.194714 }
+      }
+      <Normal> { 0.186316 0.187109 0.964476 }
+    }
+    <Vertex> 1625 {
+      -8.68826580048 -2.57884645462 -3.13375067711
+      <UV>  {
+        0.703898 0.732667
+        <Tangent> { 0.959920 -0.072165 -0.270826 }
+        <Binormal> { -0.013520 -0.975780 0.212088 }
+      }
+      <Normal> { 0.230445 0.203619 0.951506 }
+    }
+    <Vertex> 1626 {
+      -11.2966709137 -2.53559160233 -1.91784119606
+      <UV>  {
+        0.754813 0.737804
+        <Tangent> { 0.780181 -0.133340 -0.611177 }
+        <Binormal> { 0.031171 -0.967119 0.250786 }
+      }
+      <Normal> { 0.646199 0.211005 0.733390 }
+    }
+    <Vertex> 1627 {
+      -11.2430868149 -5.53805494308 -1.49715280533
+      <UV>  {
+        0.753084 0.799554
+        <Tangent> { 0.740378 -0.137229 -0.658034 }
+        <Binormal> { -0.027031 -0.984086 0.174812 }
+      }
+      <Normal> { 0.682760 0.109561 0.722343 }
+    }
+    <Vertex> 1628 {
+      -8.68826580048 -5.58131074905 -2.50421237946
+      <UV>  {
+        0.700960 0.795041
+        <Tangent> { 0.982164 -0.058732 -0.178620 }
+        <Binormal> { -0.023224 -0.980553 0.194714 }
+      }
+      <Normal> { 0.186316 0.187109 0.964476 }
+    }
+    <Vertex> 1629 {
+      -11.2430868149 -5.53805494308 -1.49715280533
+      <UV>  {
+        0.753084 0.799554
+        <Tangent> { 0.740378 -0.137229 -0.658034 }
+        <Binormal> { -0.027031 -0.984086 0.174812 }
+      }
+      <Normal> { 0.682760 0.109561 0.722343 }
+    }
+    <Vertex> 1630 {
+      -11.0997304916 -8.51076793671 -1.38494825363
+      <UV>  {
+        0.749301 0.859394
+        <Tangent> { 0.780295 -0.104431 -0.616632 }
+        <Binormal> { -0.028234 -0.990095 0.131953 }
+      }
+      <Normal> { 0.654012 0.081576 0.752037 }
+    }
+    <Vertex> 1631 {
+      -8.67016029358 -8.53820705414 -2.05539393425
+      <UV>  {
+        0.696230 0.856614
+        <Tangent> { 0.998130 -0.034033 -0.050767 }
+        <Binormal> { -0.028225 -0.992777 0.110597 }
+      }
+      <Normal> { 0.090152 0.107730 0.990051 }
+    }
+    <Vertex> 1632 {
+      -8.68826389313 19.8383731842 -4.392827034
+      <UV>  {
+        0.688452 0.300891
+        <Tangent> { 0.999215 0.038893 0.007573 }
+        <Binormal> { 0.038901 -0.999176 -0.001232 }
+      }
+      <Normal> { 0.001099 -0.001190 0.999969 }
+    }
+    <Vertex> 1633 {
+      -8.68826389313 15.901799202 -4.392827034
+      <UV>  {
+        0.690616 0.375376
+        <Tangent> { 0.999220 0.037942 0.010967 }
+        <Binormal> { 0.037979 -0.999241 -0.003312 }
+      }
+      <Normal> { -0.007538 -0.003601 0.999939 }
+    }
+    <Vertex> 1634 {
+      -6.05722570419 15.9450550079 -3.85792136192
+      <UV>  {
+        0.643935 0.376977
+        <Tangent> { 0.831993 0.050098 0.552520 }
+        <Binormal> { 0.041009 -0.998403 0.028776 }
+      }
+      <Normal> { -0.574389 0.000000 0.818567 }
+    }
+    <Vertex> 1635 {
+      -6.05722475052 19.8816280365 -3.8579211235
+      <UV>  {
+        0.642011 0.302627
+        <Tangent> { 0.831912 0.055003 0.552175 }
+        <Binormal> { 0.045023 -0.998139 0.031593 }
+      }
+      <Normal> { -0.574389 0.000000 0.818567 }
+    }
+    <Vertex> 1636 {
+      -8.68826389313 19.8383731842 -4.392827034
+      <UV>  {
+        0.688452 0.300891
+        <Tangent> { 0.999215 0.038893 0.007573 }
+        <Binormal> { 0.038901 -0.999176 -0.001232 }
+      }
+      <Normal> { 0.001099 -0.001190 0.999969 }
+    }
+    <Vertex> 1637 {
+      -6.05722475052 19.8816280365 -3.8579211235
+      <UV>  {
+        0.642011 0.302627
+        <Tangent> { 0.831912 0.055003 0.552175 }
+        <Binormal> { 0.045023 -0.998139 0.031593 }
+      }
+      <Normal> { -0.574389 0.000000 0.818567 }
+    }
+    <Vertex> 1638 {
+      -6.05722475052 22.9438095093 -3.8579211235
+      <UV>  {
+        0.639997 0.244893
+        <Tangent> { 0.832010 0.056806 0.551845 }
+        <Binormal> { 0.046500 -0.998030 0.032629 }
+      }
+      <Normal> { -0.574389 0.000000 0.818567 }
+    }
+    <Vertex> 1639 {
+      -8.68826389313 22.9005527496 -4.392827034
+      <UV>  {
+        0.686018 0.243020
+        <Tangent> { 0.999177 0.040056 0.006362 }
+        <Binormal> { 0.040055 -0.999128 -0.000116 }
+      }
+      <Normal> { 0.002899 0.000000 0.999969 }
+    }
+    <Vertex> 1640 {
+      -8.68826389313 19.8383731842 -4.392827034
+      <UV>  {
+        0.688452 0.300891
+        <Tangent> { 0.999215 0.038893 0.007573 }
+        <Binormal> { 0.038901 -0.999176 -0.001232 }
+      }
+      <Normal> { 0.001099 -0.001190 0.999969 }
+    }
+    <Vertex> 1641 {
+      -8.68826389313 22.9005527496 -4.392827034
+      <UV>  {
+        0.686018 0.243020
+        <Tangent> { 0.999177 0.040056 0.006362 }
+        <Binormal> { 0.040055 -0.999128 -0.000116 }
+      }
+      <Normal> { 0.002899 0.000000 0.999969 }
+    }
+    <Vertex> 1642 {
+      -11.2430839539 22.9438095093 -3.8579211235
+      <UV>  {
+        0.734971 0.241008
+        <Tangent> { 0.828476 -0.018100 -0.559732 }
+        <Binormal> { -0.014187 -0.996936 0.011240 }
+      }
+      <Normal> { 0.620960 0.000000 0.783807 }
+    }
+    <Vertex> 1643 {
+      -11.2430839539 19.8816280365 -3.8579211235
+      <UV>  {
+        0.737848 0.298866
+        <Tangent> { 0.828452 -0.015835 -0.559837 }
+        <Binormal> { -0.019224 -0.997978 -0.000220 }
+      }
+      <Normal> { 0.608783 -0.011902 0.793237 }
+    }
+    <Vertex> 1644 {
+      -8.68826389313 19.8383731842 -4.392827034
+      <UV>  {
+        0.688452 0.300891
+        <Tangent> { 0.999215 0.038893 0.007573 }
+        <Binormal> { 0.038901 -0.999176 -0.001232 }
+      }
+      <Normal> { 0.001099 -0.001190 0.999969 }
+    }
+    <Vertex> 1645 {
+      -11.2430839539 19.8816280365 -3.8579211235
+      <UV>  {
+        0.737848 0.298866
+        <Tangent> { 0.828452 -0.015835 -0.559837 }
+        <Binormal> { -0.019224 -0.997978 -0.000220 }
+      }
+      <Normal> { 0.608783 -0.011902 0.793237 }
+    }
+    <Vertex> 1646 {
+      -11.2966690063 15.9450550079 -3.8851480484
+      <UV>  {
+        0.740080 0.373241
+        <Tangent> { 0.869572 -0.004739 -0.493783 }
+        <Binormal> { -0.021335 -0.997302 -0.028001 }
+      }
+      <Normal> { 0.548143 -0.035188 0.835627 }
+    }
+    <Vertex> 1647 {
+      -8.68826389313 15.901799202 -4.392827034
+      <UV>  {
+        0.690616 0.375376
+        <Tangent> { 0.999220 0.037942 0.010967 }
+        <Binormal> { 0.037979 -0.999241 -0.003312 }
+      }
+      <Normal> { -0.007538 -0.003601 0.999939 }
+    }
+    <Vertex> 1648 {
+      -8.61584568024 -11.4962177277 -1.96801507473
+      <UV>  {
+        0.694390 0.916786
+        <Tangent> { 0.998938 -0.015649 -0.043329 }
+        <Binormal> { -0.012108 -0.996583 0.080779 }
+      }
+      <Normal> { 0.053987 0.080020 0.995300 }
+    }
+    <Vertex> 1649 {
+      -8.6714630127 -14.4189186096 -1.64676845074
+      <UV>  {
+        0.693996 0.976260
+        <Tangent> { 0.994302 0.007753 -0.106313 }
+        <Binormal> { 0.030830 -0.975575 0.217200 }
+      }
+      <Normal> { 0.110416 0.219306 0.969359 }
+    }
+    <Vertex> 1650 {
+      -6.85692882538 -14.240237236 -1.37037372589
+      <UV>  {
+        0.642860 0.974567
+        <Tangent> { 0.795518 0.089379 0.599301 }
+        <Binormal> { -0.025787 -0.973954 0.179485 }
+      }
+      <Normal> { -0.491623 0.170385 0.853938 }
+    }
+    <Vertex> 1651 {
+      -6.50391483307 -11.4107866287 -1.47977948189
+      <UV>  {
+        0.646255 0.915782
+        <Tangent> { 0.797124 0.062790 0.600542 }
+        <Binormal> { -0.014048 -0.990025 0.122159 }
+      }
+      <Normal> { -0.547655 0.110111 0.829402 }
+    }
+    <Vertex> 1652 {
+      -8.61584568024 -11.4962177277 -1.96801507473
+      <UV>  {
+        0.694390 0.916786
+        <Tangent> { 0.998938 -0.015649 -0.043329 }
+        <Binormal> { -0.012108 -0.996583 0.080779 }
+      }
+      <Normal> { 0.053987 0.080020 0.995300 }
+    }
+    <Vertex> 1653 {
+      -6.50391483307 -11.4107866287 -1.47977948189
+      <UV>  {
+        0.646255 0.915782
+        <Tangent> { 0.797124 0.062790 0.600542 }
+        <Binormal> { -0.014048 -0.990025 0.122159 }
+      }
+      <Normal> { -0.547655 0.110111 0.829402 }
+    }
+    <Vertex> 1654 {
+      -6.14313840866 -8.4844083786 -1.68592369556
+      <UV>  {
+        0.646144 0.855278
+        <Tangent> { 0.882204 0.063724 0.466535 }
+        <Binormal> { -0.041240 -0.976453 0.211358 }
+      }
+      <Normal> { -0.479659 0.204932 0.853175 }
+    }
+    <Vertex> 1655 {
+      -8.67016029358 -8.53820705414 -2.05539393425
+      <UV>  {
+        0.696230 0.856614
+        <Tangent> { 0.998130 -0.034033 -0.050767 }
+        <Binormal> { -0.028225 -0.992777 0.110597 }
+      }
+      <Normal> { 0.090152 0.107730 0.990051 }
+    }
+    <Vertex> 1656 {
+      -8.61584568024 -11.4962177277 -1.96801507473
+      <UV>  {
+        0.694390 0.916786
+        <Tangent> { 0.998938 -0.015649 -0.043329 }
+        <Binormal> { -0.012108 -0.996583 0.080779 }
+      }
+      <Normal> { 0.053987 0.080020 0.995300 }
+    }
+    <Vertex> 1657 {
+      -8.67016029358 -8.53820705414 -2.05539393425
+      <UV>  {
+        0.696230 0.856614
+        <Tangent> { 0.998130 -0.034033 -0.050767 }
+        <Binormal> { -0.028225 -0.992777 0.110597 }
+      }
+      <Normal> { 0.090152 0.107730 0.990051 }
+    }
+    <Vertex> 1658 {
+      -11.0997304916 -8.51076793671 -1.38494825363
+      <UV>  {
+        0.749301 0.859394
+        <Tangent> { 0.780295 -0.104431 -0.616632 }
+        <Binormal> { -0.028234 -0.990095 0.131953 }
+      }
+      <Normal> { 0.654012 0.081576 0.752037 }
+    }
+    <Vertex> 1659 {
+      -10.6696643829 -11.5162258148 -1.36310350895
+      <UV>  {
+        0.748192 0.919304
+        <Tangent> { 0.798170 -0.092062 -0.595357 }
+        <Binormal> { -0.006421 -0.988712 0.144280 }
+      }
+      <Normal> { 0.632923 0.107761 0.766625 }
+    }
+    <Vertex> 1660 {
+      -8.61584568024 -11.4962177277 -1.96801507473
+      <UV>  {
+        0.694390 0.916786
+        <Tangent> { 0.998938 -0.015649 -0.043329 }
+        <Binormal> { -0.012108 -0.996583 0.080779 }
+      }
+      <Normal> { 0.053987 0.080020 0.995300 }
+    }
+    <Vertex> 1661 {
+      -10.6696643829 -11.5162258148 -1.36310350895
+      <UV>  {
+        0.748192 0.919304
+        <Tangent> { 0.798170 -0.092062 -0.595357 }
+        <Binormal> { -0.006421 -0.988712 0.144280 }
+      }
+      <Normal> { 0.632923 0.107761 0.766625 }
+    }
+    <Vertex> 1662 {
+      -10.4264764786 -14.4343919754 -0.970763266087
+      <UV>  {
+        0.745131 0.977952
+        <Tangent> { 0.801127 -0.127308 -0.584798 }
+        <Binormal> { 0.006490 -0.974755 0.221091 }
+      }
+      <Normal> { 0.622211 0.177099 0.762535 }
+    }
+    <Vertex> 1663 {
+      -8.6714630127 -14.4189186096 -1.64676845074
+      <UV>  {
+        0.693996 0.976260
+        <Tangent> { 0.994302 0.007753 -0.106313 }
+        <Binormal> { 0.030830 -0.975575 0.217200 }
+      }
+      <Normal> { 0.110416 0.219306 0.969359 }
+    }
+    <Vertex> 1664 {
+      3.9661090374 -17.0784988403 -0.113579511642
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.998659 -0.043409 -0.028215 }
+        <Binormal> { -0.043692 -0.998972 -0.009532 }
+      }
+      <Normal> { 0.024049 -0.010590 0.999634 }
+    }
+    <Vertex> 1665 {
+      7.04066562653 -17.0785007477 -0.113579511642
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.990136 -0.140108 0.000000 }
+        <Binormal> { -0.140108 -0.990136 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1666 {
+      7.04066562653 -14.2169818878 -0.113579511642
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.996779 -0.080194 0.000000 }
+        <Binormal> { -0.080194 -0.996779 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1667 {
+      3.9661090374 -14.2169799805 -0.113579511642
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.995569 0.083090 -0.044041 }
+        <Binormal> { 0.082690 -0.996500 -0.010806 }
+      }
+      <Normal> { 0.040468 -0.007477 0.999146 }
+    }
+    <Vertex> 1668 {
+      3.9661090374 -17.0784988403 -0.113579511642
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.998659 -0.043409 -0.028215 }
+        <Binormal> { -0.043692 -0.998972 -0.009532 }
+      }
+      <Normal> { 0.024049 -0.010590 0.999634 }
+    }
+    <Vertex> 1669 {
+      3.9661090374 -14.2169799805 -0.113579511642
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.995569 0.083090 -0.044041 }
+        <Binormal> { 0.082690 -0.996500 -0.010806 }
+      }
+      <Normal> { 0.040468 -0.007477 0.999146 }
+    }
+    <Vertex> 1670 {
+      0.868828475475 -14.2169790268 0.159442424774
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.997099 0.026848 -0.071222 }
+        <Binormal> { 0.023118 -0.994391 -0.051198 }
+      }
+      <Normal> { 0.161504 -0.046999 0.985748 }
+    }
+    <Vertex> 1671 {
+      0.800655782223 -17.078496933 0.0342006646097
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.997657 -0.048131 -0.048614 }
+        <Binormal> { -0.050976 -0.995606 -0.060403 }
+      }
+      <Normal> { 0.094974 -0.065127 0.993316 }
+    }
+    <Vertex> 1672 {
+      3.9661090374 -17.0784988403 -0.113579511642
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.998659 -0.043409 -0.028215 }
+        <Binormal> { -0.043692 -0.998972 -0.009532 }
+      }
+      <Normal> { 0.024049 -0.010590 0.999634 }
+    }
+    <Vertex> 1673 {
+      0.800655782223 -17.078496933 0.0342006646097
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.997657 -0.048131 -0.048614 }
+        <Binormal> { -0.050976 -0.995606 -0.060403 }
+      }
+      <Normal> { 0.094974 -0.065127 0.993316 }
+    }
+    <Vertex> 1674 {
+      0.782701313496 -19.865146637 -0.075658172369
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.993630 -0.107930 -0.032407 }
+        <Binormal> { -0.108681 -0.993736 -0.022678 }
+      }
+      <Normal> { 0.041627 -0.027345 0.998749 }
+    }
+    <Vertex> 1675 {
+      3.9661090374 -19.865146637 -0.113579511642
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.982215 -0.187665 -0.005952 }
+        <Binormal> { -0.187675 -0.982188 -0.002616 }
+      }
+      <Normal> { 0.010498 -0.004669 0.999908 }
+    }
+    <Vertex> 1676 {
+      3.9661090374 -17.0784988403 -0.113579511642
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.998659 -0.043409 -0.028215 }
+        <Binormal> { -0.043692 -0.998972 -0.009532 }
+      }
+      <Normal> { 0.024049 -0.010590 0.999634 }
+    }
+    <Vertex> 1677 {
+      3.9661090374 -19.865146637 -0.113579511642
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.982215 -0.187665 -0.005952 }
+        <Binormal> { -0.187675 -0.982188 -0.002616 }
+      }
+      <Normal> { 0.010498 -0.004669 0.999908 }
+    }
+    <Vertex> 1678 {
+      7.04066562653 -19.8651504517 -0.113579511642
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.986127 -0.165990 0.000000 }
+        <Binormal> { -0.165990 -0.986127 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1679 {
+      7.04066562653 -17.0785007477 -0.113579511642
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.990136 -0.140108 0.000000 }
+        <Binormal> { -0.140108 -0.990136 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1680 {
+      9.9826593399 -17.0785007477 -0.113579511642
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.977406 -0.211369 0.000000 }
+        <Binormal> { -0.211369 -0.977406 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1681 {
+      12.7938938141 -17.0785007477 -0.113579511642
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.975076 -0.221873 0.000000 }
+        <Binormal> { -0.221873 -0.975076 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1682 {
+      12.7938938141 -14.2169818878 -0.113579511642
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.974590 -0.223996 0.000000 }
+        <Binormal> { -0.223996 -0.974590 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1683 {
+      9.9826593399 -14.2169818878 -0.113579511642
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.974451 -0.224601 0.000000 }
+        <Binormal> { -0.224601 -0.974451 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1684 {
+      9.9826593399 -17.0785007477 -0.113579511642
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.977406 -0.211369 0.000000 }
+        <Binormal> { -0.211369 -0.977406 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1685 {
+      9.9826593399 -14.2169818878 -0.113579511642
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.974451 -0.224601 0.000000 }
+        <Binormal> { -0.224601 -0.974451 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1686 {
+      7.04066562653 -14.2169818878 -0.113579511642
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.996779 -0.080194 0.000000 }
+        <Binormal> { -0.080194 -0.996779 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1687 {
+      7.04066562653 -17.0785007477 -0.113579511642
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.990136 -0.140108 0.000000 }
+        <Binormal> { -0.140108 -0.990136 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1688 {
+      9.9826593399 -17.0785007477 -0.113579511642
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.977406 -0.211369 0.000000 }
+        <Binormal> { -0.211369 -0.977406 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1689 {
+      7.04066562653 -17.0785007477 -0.113579511642
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.990136 -0.140108 0.000000 }
+        <Binormal> { -0.140108 -0.990136 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1690 {
+      7.04066562653 -19.8651504517 -0.113579511642
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.986127 -0.165990 0.000000 }
+        <Binormal> { -0.165990 -0.986127 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1691 {
+      9.9826593399 -19.8651504517 -0.113579511642
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.975722 -0.219012 0.000000 }
+        <Binormal> { -0.219012 -0.975722 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1692 {
+      9.9826593399 -17.0785007477 -0.113579511642
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.977406 -0.211369 0.000000 }
+        <Binormal> { -0.211369 -0.977406 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1693 {
+      9.9826593399 -19.8651504517 -0.113579511642
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.975722 -0.219012 0.000000 }
+        <Binormal> { -0.219012 -0.975722 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1694 {
+      12.7938938141 -19.8651504517 -0.113579511642
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.975612 -0.219502 0.000000 }
+        <Binormal> { -0.219502 -0.975612 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1695 {
+      12.7938938141 -17.0785007477 -0.113579511642
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.975076 -0.221873 0.000000 }
+        <Binormal> { -0.221873 -0.975076 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1696 {
+      15.4761724472 -17.0785007477 -0.113579511642
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.975369 -0.220580 0.000000 }
+        <Binormal> { -0.220580 -0.975369 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1697 {
+      18.0939731598 -17.0785007477 -0.113579511642
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.975076 -0.221872 0.000000 }
+        <Binormal> { -0.221872 -0.975076 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1698 {
+      18.0939731598 -14.2169818878 -0.113579511642
+      <UV>  {
+        -0.042124 0.762705
+        <Tangent> { 0.974436 -0.224665 0.000000 }
+        <Binormal> { -0.224665 -0.974436 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1699 {
+      15.4761724472 -14.2169818878 -0.113579511642
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.975032 -0.222066 0.000000 }
+        <Binormal> { -0.222066 -0.975032 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1700 {
+      15.4761724472 -17.0785007477 -0.113579511642
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.975369 -0.220580 0.000000 }
+        <Binormal> { -0.220580 -0.975369 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1701 {
+      15.4761724472 -14.2169818878 -0.113579511642
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.975032 -0.222066 0.000000 }
+        <Binormal> { -0.222066 -0.975032 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1702 {
+      12.7938938141 -14.2169818878 -0.113579511642
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.974590 -0.223996 0.000000 }
+        <Binormal> { -0.223996 -0.974590 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1703 {
+      12.7938938141 -17.0785007477 -0.113579511642
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.975076 -0.221873 0.000000 }
+        <Binormal> { -0.221873 -0.975076 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1704 {
+      15.4761724472 -17.0785007477 -0.113579511642
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.975369 -0.220580 0.000000 }
+        <Binormal> { -0.220580 -0.975369 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1705 {
+      12.7938938141 -17.0785007477 -0.113579511642
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.975076 -0.221873 0.000000 }
+        <Binormal> { -0.221873 -0.975076 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1706 {
+      12.7938938141 -19.8651504517 -0.113579511642
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.975612 -0.219502 0.000000 }
+        <Binormal> { -0.219502 -0.975612 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1707 {
+      15.4761724472 -19.8651504517 -0.113579511642
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.976275 -0.216535 0.000000 }
+        <Binormal> { -0.216535 -0.976275 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1708 {
+      15.4761724472 -17.0785007477 -0.113579511642
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.975369 -0.220580 0.000000 }
+        <Binormal> { -0.220580 -0.975369 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1709 {
+      15.4761724472 -19.8651504517 -0.113579511642
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.976275 -0.216535 0.000000 }
+        <Binormal> { -0.216535 -0.976275 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1710 {
+      18.0939731598 -19.8651504517 -0.113579511642
+      <UV>  {
+        -0.073782 0.891829
+        <Tangent> { 0.975708 -0.219074 0.000000 }
+        <Binormal> { -0.219074 -0.975708 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1711 {
+      18.0939731598 -17.0785007477 -0.113579511642
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.975076 -0.221872 0.000000 }
+        <Binormal> { -0.221872 -0.975076 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1712 {
+      3.9661090374 -22.6229934692 -0.113579511642
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.998823 -0.047509 -0.009821 }
+        <Binormal> { -0.047772 -0.998426 -0.028634 }
+      }
+      <Normal> { 0.006195 -0.028962 0.999542 }
+    }
+    <Vertex> 1713 {
+      7.04066562653 -22.6229953766 -0.113579511642
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.990033 -0.140789 -0.003547 }
+        <Binormal> { -0.140828 -0.989684 -0.024773 }
+      }
+      <Normal> { -0.004700 -0.024354 0.999664 }
+    }
+    <Vertex> 1714 {
+      7.04066562653 -19.8651504517 -0.113579511642
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.997007 -0.077306 0.000000 }
+        <Binormal> { -0.077306 -0.997007 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1715 {
+      3.9661090374 -19.865146637 -0.113579511642
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.996850 0.079079 -0.006041 }
+        <Binormal> { 0.079043 -0.996822 -0.005485 }
+      }
+      <Normal> { 0.010498 -0.004669 0.999908 }
+    }
+    <Vertex> 1716 {
+      3.9661090374 -22.6229934692 -0.113579511642
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.998823 -0.047509 -0.009821 }
+        <Binormal> { -0.047772 -0.998426 -0.028634 }
+      }
+      <Normal> { 0.006195 -0.028962 0.999542 }
+    }
+    <Vertex> 1717 {
+      3.9661090374 -19.865146637 -0.113579511642
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.996850 0.079079 -0.006041 }
+        <Binormal> { 0.079043 -0.996822 -0.005485 }
+      }
+      <Normal> { 0.010498 -0.004669 0.999908 }
+    }
+    <Vertex> 1718 {
+      0.782701313496 -19.865146637 -0.075658172369
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.794134 -0.607695 -0.007662 }
+        <Binormal> { -0.607144 -0.793459 0.003581 }
+      }
+      <Normal> { 0.041627 -0.027345 0.998749 }
+    }
+    <Vertex> 1719 {
+      0.910633265972 -22.6229934692 -0.0712580233812
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.998625 -0.050181 -0.015167 }
+        <Binormal> { -0.050390 -0.998362 -0.014604 }
+      }
+      <Normal> { 0.036927 -0.016480 0.999176 }
+    }
+    <Vertex> 1720 {
+      3.9661090374 -22.6229934692 -0.113579511642
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.998823 -0.047509 -0.009821 }
+        <Binormal> { -0.047772 -0.998426 -0.028634 }
+      }
+      <Normal> { 0.006195 -0.028962 0.999542 }
+    }
+    <Vertex> 1721 {
+      0.910633265972 -22.6229934692 -0.0712580233812
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.998625 -0.050181 -0.015167 }
+        <Binormal> { -0.050390 -0.998362 -0.014604 }
+      }
+      <Normal> { 0.036927 -0.016480 0.999176 }
+    }
+    <Vertex> 1722 {
+      1.13197898865 -25.5655536652 -0.232177615166
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.992207 -0.121876 -0.025921 }
+        <Binormal> { -0.123674 -0.986842 -0.094041 }
+      }
+      <Normal> { 0.058229 -0.101932 0.993072 }
+    }
+    <Vertex> 1723 {
+      4.11504411697 -25.5846939087 -0.307364881039
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.978835 -0.203856 -0.018021 }
+        <Binormal> { -0.204593 -0.972748 -0.108902 }
+      }
+      <Normal> { -0.001251 -0.110996 0.993805 }
+    }
+    <Vertex> 1724 {
+      3.9661090374 -22.6229934692 -0.113579511642
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.998823 -0.047509 -0.009821 }
+        <Binormal> { -0.047772 -0.998426 -0.028634 }
+      }
+      <Normal> { 0.006195 -0.028962 0.999542 }
+    }
+    <Vertex> 1725 {
+      4.11504411697 -25.5846939087 -0.307364881039
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.978835 -0.203856 -0.018021 }
+        <Binormal> { -0.204593 -0.972748 -0.108902 }
+      }
+      <Normal> { -0.001251 -0.110996 0.993805 }
+    }
+    <Vertex> 1726 {
+      7.19918632507 -25.5716743469 -0.261906713247
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.985187 -0.171482 0.000468 }
+        <Binormal> { -0.170665 -0.980751 -0.093851 }
+      }
+      <Normal> { -0.027955 -0.090396 0.995483 }
+    }
+    <Vertex> 1727 {
+      7.04066562653 -22.6229953766 -0.113579511642
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.990033 -0.140789 -0.003547 }
+        <Binormal> { -0.140828 -0.989684 -0.024773 }
+      }
+      <Normal> { -0.004700 -0.024354 0.999664 }
+    }
+    <Vertex> 1728 {
+      9.9826593399 -22.6229953766 -0.113579511642
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.977508 -0.210886 0.002416 }
+        <Binormal> { -0.210826 -0.977402 -0.015013 }
+      }
+      <Normal> { -0.005554 -0.014161 0.999878 }
+    }
+    <Vertex> 1729 {
+      12.7938938141 -22.6229953766 -0.113579511642
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.975055 -0.221963 -0.000784 }
+        <Binormal> { -0.221960 -0.975022 -0.005858 }
+      }
+      <Normal> { -0.003601 -0.005188 0.999969 }
+    }
+    <Vertex> 1730 {
+      12.7938938141 -19.8651504517 -0.113579511642
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.976334 -0.216267 0.000000 }
+        <Binormal> { -0.216267 -0.976334 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1731 {
+      9.9826593399 -19.8651504517 -0.113579511642
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.976204 -0.216853 0.000000 }
+        <Binormal> { -0.216853 -0.976204 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1732 {
+      9.9826593399 -22.6229953766 -0.113579511642
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.977508 -0.210886 0.002416 }
+        <Binormal> { -0.210826 -0.977402 -0.015013 }
+      }
+      <Normal> { -0.005554 -0.014161 0.999878 }
+    }
+    <Vertex> 1733 {
+      9.9826593399 -19.8651504517 -0.113579511642
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.976204 -0.216853 0.000000 }
+        <Binormal> { -0.216853 -0.976204 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1734 {
+      7.04066562653 -19.8651504517 -0.113579511642
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.997007 -0.077306 0.000000 }
+        <Binormal> { -0.077306 -0.997007 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1735 {
+      7.04066562653 -22.6229953766 -0.113579511642
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.990033 -0.140789 -0.003547 }
+        <Binormal> { -0.140828 -0.989684 -0.024773 }
+      }
+      <Normal> { -0.004700 -0.024354 0.999664 }
+    }
+    <Vertex> 1736 {
+      9.9826593399 -22.6229953766 -0.113579511642
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.977508 -0.210886 0.002416 }
+        <Binormal> { -0.210826 -0.977402 -0.015013 }
+      }
+      <Normal> { -0.005554 -0.014161 0.999878 }
+    }
+    <Vertex> 1737 {
+      7.04066562653 -22.6229953766 -0.113579511642
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.990033 -0.140789 -0.003547 }
+        <Binormal> { -0.140828 -0.989684 -0.024773 }
+      }
+      <Normal> { -0.004700 -0.024354 0.999664 }
+    }
+    <Vertex> 1738 {
+      7.19918632507 -25.5716743469 -0.261906713247
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.985187 -0.171482 0.000468 }
+        <Binormal> { -0.170665 -0.980751 -0.093851 }
+      }
+      <Normal> { -0.027955 -0.090396 0.995483 }
+    }
+    <Vertex> 1739 {
+      10.0796890259 -25.5456466675 -0.19348423183
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.974387 -0.224329 0.015710 }
+        <Binormal> { -0.223025 -0.972930 -0.060043 }
+      }
+      <Normal> { -0.034089 -0.053774 0.997955 }
+    }
+    <Vertex> 1740 {
+      9.9826593399 -22.6229953766 -0.113579511642
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.977508 -0.210886 0.002416 }
+        <Binormal> { -0.210826 -0.977402 -0.015013 }
+      }
+      <Normal> { -0.005554 -0.014161 0.999878 }
+    }
+    <Vertex> 1741 {
+      10.0796890259 -25.5456466675 -0.19348423183
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.974387 -0.224329 0.015710 }
+        <Binormal> { -0.223025 -0.972930 -0.060043 }
+      }
+      <Normal> { -0.034089 -0.053774 0.997955 }
+    }
+    <Vertex> 1742 {
+      12.818151474 -25.5212535858 -0.133555784822
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.973955 -0.226695 0.004617 }
+        <Binormal> { -0.226499 -0.973612 -0.024430 }
+      }
+      <Normal> { -0.022279 -0.019898 0.999542 }
+    }
+    <Vertex> 1743 {
+      12.7938938141 -22.6229953766 -0.113579511642
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.975055 -0.221963 -0.000784 }
+        <Binormal> { -0.221960 -0.975022 -0.005858 }
+      }
+      <Normal> { -0.003601 -0.005188 0.999969 }
+    }
+    <Vertex> 1744 {
+      15.4761724472 -22.6229953766 -0.113579511642
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.975391 -0.220481 0.000730 }
+        <Binormal> { -0.220473 -0.975362 -0.001035 }
+      }
+      <Normal> { -0.000916 -0.000855 0.999969 }
+    }
+    <Vertex> 1745 {
+      18.0939731598 -22.6229953766 -0.113579511642
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.975077 -0.221865 0.000000 }
+        <Binormal> { -0.221865 -0.975077 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1746 {
+      18.0939731598 -19.8651504517 -0.113579511642
+      <UV>  {
+        -0.042124 0.762705
+        <Tangent> { 0.976191 -0.216915 0.000000 }
+        <Binormal> { -0.216915 -0.976191 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1747 {
+      15.4761724472 -19.8651504517 -0.113579511642
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.976747 -0.214397 0.000000 }
+        <Binormal> { -0.214397 -0.976747 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1748 {
+      15.4761724472 -22.6229953766 -0.113579511642
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.975391 -0.220481 0.000730 }
+        <Binormal> { -0.220473 -0.975362 -0.001035 }
+      }
+      <Normal> { -0.000916 -0.000855 0.999969 }
+    }
+    <Vertex> 1749 {
+      15.4761724472 -19.8651504517 -0.113579511642
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.976747 -0.214397 0.000000 }
+        <Binormal> { -0.214397 -0.976747 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1750 {
+      12.7938938141 -19.8651504517 -0.113579511642
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.976334 -0.216267 0.000000 }
+        <Binormal> { -0.216267 -0.976334 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1751 {
+      12.7938938141 -22.6229953766 -0.113579511642
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.975055 -0.221963 -0.000784 }
+        <Binormal> { -0.221960 -0.975022 -0.005858 }
+      }
+      <Normal> { -0.003601 -0.005188 0.999969 }
+    }
+    <Vertex> 1752 {
+      15.4761724472 -22.6229953766 -0.113579511642
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.975391 -0.220481 0.000730 }
+        <Binormal> { -0.220473 -0.975362 -0.001035 }
+      }
+      <Normal> { -0.000916 -0.000855 0.999969 }
+    }
+    <Vertex> 1753 {
+      12.7938938141 -22.6229953766 -0.113579511642
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.975055 -0.221963 -0.000784 }
+        <Binormal> { -0.221960 -0.975022 -0.005858 }
+      }
+      <Normal> { -0.003601 -0.005188 0.999969 }
+    }
+    <Vertex> 1754 {
+      12.818151474 -25.5212535858 -0.133555784822
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.973955 -0.226695 0.004617 }
+        <Binormal> { -0.226499 -0.973612 -0.024430 }
+      }
+      <Normal> { -0.022279 -0.019898 0.999542 }
+    }
+    <Vertex> 1755 {
+      15.4761724472 -25.5131206512 -0.113579511642
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.974645 -0.223728 0.003690 }
+        <Binormal> { -0.223710 -0.974636 -0.004423 }
+      }
+      <Normal> { -0.005676 -0.003235 0.999969 }
+    }
+    <Vertex> 1756 {
+      15.4761724472 -22.6229953766 -0.113579511642
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.975391 -0.220481 0.000730 }
+        <Binormal> { -0.220473 -0.975362 -0.001035 }
+      }
+      <Normal> { -0.000916 -0.000855 0.999969 }
+    }
+    <Vertex> 1757 {
+      15.4761724472 -25.5131206512 -0.113579511642
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.974645 -0.223728 0.003690 }
+        <Binormal> { -0.223710 -0.974636 -0.004423 }
+      }
+      <Normal> { -0.005676 -0.003235 0.999969 }
+    }
+    <Vertex> 1758 {
+      18.0939731598 -25.5131206512 -0.113579511642
+      <UV>  {
+        -0.073782 0.891829
+        <Tangent> { 0.973942 -0.226797 0.000000 }
+        <Binormal> { -0.226797 -0.973942 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1759 {
+      18.0939731598 -22.6229953766 -0.113579511642
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.975077 -0.221865 0.000000 }
+        <Binormal> { -0.221865 -0.975077 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1760 {
+      -1.97411859035 -22.6229934692 0.0557064339519
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.158768 -0.987277 -0.008719 }
+        <Binormal> { -0.987132 -0.158570 -0.019822 }
+      }
+      <Normal> { -0.018311 -0.010987 0.999756 }
+    }
+    <Vertex> 1761 {
+      -1.44529187679 -25.4951076508 0.0613350458443
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.123556 -0.992331 0.003556 }
+        <Binormal> { -0.989093 -0.123140 0.003697 }
+      }
+      <Normal> { 0.013184 -0.075961 0.997009 }
+    }
+    <Vertex> 1762 {
+      1.13197898865 -25.5655536652 -0.232177615166
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.717410 -0.689605 -0.098832 }
+        <Binormal> { -0.694902 -0.718195 -0.032972 }
+      }
+      <Normal> { 0.058229 -0.101932 0.993072 }
+    }
+    <Vertex> 1763 {
+      0.910633265972 -22.6229934692 -0.0712580233812
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.150557 -0.988112 -0.031093 }
+        <Binormal> { -0.987810 -0.151581 0.034007 }
+      }
+      <Normal> { 0.036927 -0.016480 0.999176 }
+    }
+    <Vertex> 1764 {
+      -1.97411859035 -22.6229934692 0.0557064339519
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.158768 -0.987277 -0.008719 }
+        <Binormal> { -0.987132 -0.158570 -0.019822 }
+      }
+      <Normal> { -0.018311 -0.010987 0.999756 }
+    }
+    <Vertex> 1765 {
+      0.910633265972 -22.6229934692 -0.0712580233812
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.150557 -0.988112 -0.031093 }
+        <Binormal> { -0.987810 -0.151581 0.034007 }
+      }
+      <Normal> { 0.036927 -0.016480 0.999176 }
+    }
+    <Vertex> 1766 {
+      0.782701313496 -19.865146637 -0.075658172369
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.794134 -0.607695 -0.007662 }
+        <Binormal> { -0.607144 -0.793459 0.003581 }
+      }
+      <Normal> { 0.041627 -0.027345 0.998749 }
+    }
+    <Vertex> 1767 {
+      -2.48584604263 -19.865146637 0.0381054617465
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.117370 -0.993076 0.005004 }
+        <Binormal> { -0.988884 -0.116919 -0.008934 }
+      }
+      <Normal> { 0.001251 -0.086703 0.996216 }
+    }
+    <Vertex> 1768 {
+      -1.97411859035 -22.6229934692 0.0557064339519
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.158768 -0.987277 -0.008719 }
+        <Binormal> { -0.987132 -0.158570 -0.019822 }
+      }
+      <Normal> { -0.018311 -0.010987 0.999756 }
+    }
+    <Vertex> 1769 {
+      -2.48584604263 -19.865146637 0.0381054617465
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.117370 -0.993076 0.005004 }
+        <Binormal> { -0.988884 -0.116919 -0.008934 }
+      }
+      <Normal> { 0.001251 -0.086703 0.996216 }
+    }
+    <Vertex> 1770 {
+      -6.12064647675 -19.6365470886 -0.213918238878
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.259344 -0.965750 -0.008265 }
+        <Binormal> { -0.926798 -0.246789 -0.244777 }
+      }
+      <Normal> { -0.197516 -0.208319 0.957884 }
+    }
+    <Vertex> 1771 {
+      -4.27453517914 -22.6229934692 -0.21685834229
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.263955 -0.964534 -0.001438 }
+        <Binormal> { -0.886090 -0.241902 -0.393106 }
+      }
+      <Normal> { -0.367748 -0.145482 0.918455 }
+    }
+    <Vertex> 1772 {
+      -1.97411859035 -22.6229934692 0.0557064339519
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.158768 -0.987277 -0.008719 }
+        <Binormal> { -0.987132 -0.158570 -0.019822 }
+      }
+      <Normal> { -0.018311 -0.010987 0.999756 }
+    }
+    <Vertex> 1773 {
+      -4.27453517914 -22.6229934692 -0.21685834229
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.263955 -0.964534 -0.001438 }
+        <Binormal> { -0.886090 -0.241902 -0.393106 }
+      }
+      <Normal> { -0.367748 -0.145482 0.918455 }
+    }
+    <Vertex> 1774 {
+      -3.54617714882 -25.4372901917 -0.105620525777
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.109275 -0.993988 0.006873 }
+        <Binormal> { -0.918381 -0.103591 -0.380023 }
+      }
+      <Normal> { -0.374371 -0.072329 0.924436 }
+    }
+    <Vertex> 1775 {
+      -1.44529187679 -25.4951076508 0.0613350458443
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.123556 -0.992331 0.003556 }
+        <Binormal> { -0.989093 -0.123140 0.003697 }
+      }
+      <Normal> { 0.013184 -0.075961 0.997009 }
+    }
+    <Vertex> 1776 {
+      -2.4140291214 -17.0784988403 0.477541953325
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.103482 -0.981855 -0.158909 }
+        <Binormal> { -0.991035 0.088275 0.099938 }
+      }
+      <Normal> { 0.084567 -0.163366 0.982910 }
+    }
+    <Vertex> 1777 {
+      0.800655782223 -17.078496933 0.0342006646097
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.015234 -0.999019 -0.041583 }
+        <Binormal> { -0.995050 0.011183 0.095873 }
+      }
+      <Normal> { 0.094974 -0.065127 0.993316 }
+    }
+    <Vertex> 1778 {
+      0.868828475475 -14.2169790268 0.159442424774
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.059103 -0.992329 -0.108580 }
+        <Binormal> { -0.983290 0.040725 0.163043 }
+      }
+      <Normal> { 0.161504 -0.046999 0.985748 }
+    }
+    <Vertex> 1779 {
+      -2.14133810997 -14.2169790268 0.978508234024
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.093457 -0.980708 -0.171692 }
+        <Binormal> { -0.977751 0.060576 0.186208 }
+      }
+      <Normal> { 0.179235 -0.111606 0.977447 }
+    }
+    <Vertex> 1780 {
+      -2.4140291214 -17.0784988403 0.477541953325
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.103482 -0.981855 -0.158909 }
+        <Binormal> { -0.991035 0.088275 0.099938 }
+      }
+      <Normal> { 0.084567 -0.163366 0.982910 }
+    }
+    <Vertex> 1781 {
+      -2.14133810997 -14.2169790268 0.978508234024
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.093457 -0.980708 -0.171692 }
+        <Binormal> { -0.977751 0.060576 0.186208 }
+      }
+      <Normal> { 0.179235 -0.111606 0.977447 }
+    }
+    <Vertex> 1782 {
+      -4.53326320648 -14.1648855209 1.29812788963
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.117816 -0.972165 -0.202522 }
+        <Binormal> { -0.934460 0.175877 -0.300640 }
+      }
+      <Normal> { -0.319193 -0.082064 0.944121 }
+    }
+    <Vertex> 1783 {
+      -4.93225812912 -16.8457946777 0.644491136074
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.269299 -0.928265 -0.256518 }
+        <Binormal> { -0.909229 0.332265 -0.247842 }
+      }
+      <Normal> { -0.305155 -0.131535 0.943144 }
+    }
+    <Vertex> 1784 {
+      -2.4140291214 -17.0784988403 0.477541953325
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.103482 -0.981855 -0.158909 }
+        <Binormal> { -0.991035 0.088275 0.099938 }
+      }
+      <Normal> { 0.084567 -0.163366 0.982910 }
+    }
+    <Vertex> 1785 {
+      -4.93225812912 -16.8457946777 0.644491136074
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.269299 -0.928265 -0.256518 }
+        <Binormal> { -0.909229 0.332265 -0.247842 }
+      }
+      <Normal> { -0.305155 -0.131535 0.943144 }
+    }
+    <Vertex> 1786 {
+      -6.12064647675 -19.6365470886 -0.213918238878
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.919375 -0.266981 0.288912 }
+        <Binormal> { -0.195551 -0.937720 -0.244257 }
+      }
+      <Normal> { -0.197516 -0.208319 0.957884 }
+    }
+    <Vertex> 1787 {
+      -2.48584604263 -19.865146637 0.0381054617465
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.025449 -0.987474 -0.155718 }
+        <Binormal> { -0.997238 0.025158 0.003442 }
+      }
+      <Normal> { 0.001251 -0.086703 0.996216 }
+    }
+    <Vertex> 1788 {
+      -2.4140291214 -17.0784988403 0.477541953325
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.103482 -0.981855 -0.158909 }
+        <Binormal> { -0.991035 0.088275 0.099938 }
+      }
+      <Normal> { 0.084567 -0.163366 0.982910 }
+    }
+    <Vertex> 1789 {
+      -2.48584604263 -19.865146637 0.0381054617465
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.025449 -0.987474 -0.155718 }
+        <Binormal> { -0.997238 0.025158 0.003442 }
+      }
+      <Normal> { 0.001251 -0.086703 0.996216 }
+    }
+    <Vertex> 1790 {
+      0.782701313496 -19.865146637 -0.075658172369
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.016028 -0.995050 -0.098071 }
+        <Binormal> { -0.996487 0.011925 0.041859 }
+      }
+      <Normal> { 0.041627 -0.027345 0.998749 }
+    }
+    <Vertex> 1791 {
+      0.800655782223 -17.078496933 0.0342006646097
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.015234 -0.999019 -0.041583 }
+        <Binormal> { -0.995050 0.011183 0.095873 }
+      }
+      <Normal> { 0.094974 -0.065127 0.993316 }
+    }
+    <Vertex> 1792 {
+      -6.00834178925 -16.147693634 -0.0369037613273
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.781366 0.070694 0.620056 }
+        <Binormal> { 0.039183 -0.996389 0.064224 }
+      }
+      <Normal> { -0.652791 0.023133 0.757164 }
+    }
+    <Vertex> 1793 {
+      -4.93225812912 -16.8457946777 0.644491136074
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.813739 0.129797 0.566552 }
+        <Binormal> { 0.196939 -0.940359 -0.067427 }
+      }
+      <Normal> { -0.305155 -0.131535 0.943144 }
+    }
+    <Vertex> 1794 {
+      -4.53326320648 -14.1648855209 1.29812788963
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.764388 0.034271 0.643846 }
+        <Binormal> { 0.085193 -0.927185 -0.051790 }
+      }
+      <Normal> { -0.319193 -0.082064 0.944121 }
+    }
+    <Vertex> 1795 {
+      -5.77582025528 -14.0086050034 0.0728101804852
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.656549 0.021291 0.753983 }
+        <Binormal> { -0.028320 -0.998022 0.052842 }
+      }
+      <Normal> { -0.741813 0.056429 0.668203 }
+    }
+    <Vertex> 1796 {
+      -6.00834178925 -16.147693634 -0.0369037613273
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.781366 0.070694 0.620056 }
+        <Binormal> { 0.039183 -0.996389 0.064224 }
+      }
+      <Normal> { -0.652791 0.023133 0.757164 }
+    }
+    <Vertex> 1797 {
+      -5.77582025528 -14.0086050034 0.0728101804852
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.656549 0.021291 0.753983 }
+        <Binormal> { -0.028320 -0.998022 0.052842 }
+      }
+      <Normal> { -0.741813 0.056429 0.668203 }
+    }
+    <Vertex> 1798 {
+      -6.85692882538 -14.240237236 -1.37037372589
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.921315 0.072593 0.381981 }
+        <Binormal> { -0.003094 -0.974536 0.192666 }
+      }
+      <Normal> { -0.491623 0.170385 0.853938 }
+    }
+    <Vertex> 1799 {
+      -7.02259349823 -16.8958034515 -0.762133955956
+      <UV>  {
+        0.791667 0.458333
+        <Tangent> { 0.921640 0.069917 0.381694 }
+        <Binormal> { -0.007057 -0.978593 0.196293 }
+      }
+      <Normal> { -0.331004 0.187872 0.924711 }
+    }
+    <Vertex> 1800 {
+      -6.00834178925 -16.147693634 -0.0369037613273
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.781366 0.070694 0.620056 }
+        <Binormal> { 0.039183 -0.996389 0.064224 }
+      }
+      <Normal> { -0.652791 0.023133 0.757164 }
+    }
+    <Vertex> 1801 {
+      -7.02259349823 -16.8958034515 -0.762133955956
+      <UV>  {
+        0.791667 0.458333
+        <Tangent> { 0.921640 0.069917 0.381694 }
+        <Binormal> { -0.007057 -0.978593 0.196293 }
+      }
+      <Normal> { -0.331004 0.187872 0.924711 }
+    }
+    <Vertex> 1802 {
+      -6.12064647675 -19.6365470886 -0.213918238878
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.919375 -0.266981 0.288912 }
+        <Binormal> { -0.195551 -0.937720 -0.244257 }
+      }
+      <Normal> { -0.197516 -0.208319 0.957884 }
+    }
+    <Vertex> 1803 {
+      -4.93225812912 -16.8457946777 0.644491136074
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.813739 0.129797 0.566552 }
+        <Binormal> { 0.196939 -0.940359 -0.067427 }
+      }
+      <Normal> { -0.305155 -0.131535 0.943144 }
+    }
+    <Vertex> 1804 {
+      -24.3980464935 -17.3461017609 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999999 0.000922 -0.000464 }
+        <Binormal> { 0.000922 -0.999969 -0.000611 }
+      }
+      <Normal> { 0.000458 -0.000610 0.999969 }
+    }
+    <Vertex> 1805 {
+      -20.3807945251 -17.3383312225 2.40457344055
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.999998 0.001934 0.000000 }
+        <Binormal> { 0.001934 -0.999968 -0.003818 }
+      }
+      <Normal> { 0.001831 -0.003815 0.999969 }
+    }
+    <Vertex> 1806 {
+      -20.3515148163 -14.3635282516 2.40457344055
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.801116 -0.598509 0.000000 }
+        <Binormal> { -0.598509 -0.801116 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1807 {
+      -24.3980464935 -14.3771276474 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.999999 0.001708 0.000000 }
+        <Binormal> { 0.001708 -0.999999 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1808 {
+      -24.3980464935 -17.3461017609 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999999 0.000922 -0.000464 }
+        <Binormal> { 0.000922 -0.999969 -0.000611 }
+      }
+      <Normal> { 0.000458 -0.000610 0.999969 }
+    }
+    <Vertex> 1809 {
+      -24.3980464935 -14.3771276474 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.999999 0.001708 0.000000 }
+        <Binormal> { 0.001708 -0.999999 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1810 {
+      -28.3144683838 -14.3771276474 2.40457344055
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1811 {
+      -28.3144683838 -17.3461017609 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1812 {
+      -24.3980464935 -17.3461017609 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999999 0.000922 -0.000464 }
+        <Binormal> { 0.000922 -0.999969 -0.000611 }
+      }
+      <Normal> { 0.000458 -0.000610 0.999969 }
+    }
+    <Vertex> 1813 {
+      -28.3144683838 -17.3461017609 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1814 {
+      -28.3144683838 -20.2730484009 2.40457344055
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1815 {
+      -24.3980464935 -20.2730484009 2.40457344055
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.999998 0.000012 -0.001868 }
+        <Binormal> { 0.000008 -0.999973 -0.002564 }
+      }
+      <Normal> { 0.002808 -0.002564 0.999969 }
+    }
+    <Vertex> 1816 {
+      -24.3980464935 -17.3461017609 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999999 0.000922 -0.000464 }
+        <Binormal> { 0.000922 -0.999969 -0.000611 }
+      }
+      <Normal> { 0.000458 -0.000610 0.999969 }
+    }
+    <Vertex> 1817 {
+      -24.3980464935 -20.2730484009 2.40457344055
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.999998 0.000012 -0.001868 }
+        <Binormal> { 0.000008 -0.999973 -0.002564 }
+      }
+      <Normal> { 0.002808 -0.002564 0.999969 }
+    }
+    <Vertex> 1818 {
+      -20.4411811829 -20.2729511261 2.38986229897
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.999998 0.000987 -0.001845 }
+        <Binormal> { 0.000957 -0.999805 -0.015881 }
+      }
+      <Normal> { 0.011475 -0.015870 0.999786 }
+    }
+    <Vertex> 1819 {
+      -20.3807945251 -17.3383312225 2.40457344055
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.999998 0.001934 0.000000 }
+        <Binormal> { 0.001934 -0.999968 -0.003818 }
+      }
+      <Normal> { 0.001831 -0.003815 0.999969 }
+    }
+    <Vertex> 1820 {
+      -32.1065597534 -17.3461017609 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1821 {
+      -28.3144683838 -17.3461017609 2.40457344055
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1822 {
+      -28.3144683838 -14.3771276474 2.40457344055
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.782416 -0.622756 0.000000 }
+        <Binormal> { -0.622756 -0.782416 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1823 {
+      -32.1065559387 -14.3771276474 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1824 {
+      -32.1065597534 -17.3461017609 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1825 {
+      -32.1065559387 -14.3771276474 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1826 {
+      -35.836479187 -14.3771276474 2.40457344055
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1827 {
+      -35.836479187 -17.3461017609 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1828 {
+      -32.1065597534 -17.3461017609 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1829 {
+      -35.836479187 -17.3461017609 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1830 {
+      -35.836479187 -20.2730484009 2.40457344055
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1831 {
+      -32.1065597534 -20.2730484009 2.40457344055
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1832 {
+      -32.1065597534 -17.3461017609 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1833 {
+      -32.1065597534 -20.2730484009 2.40457344055
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1834 {
+      -28.3144683838 -20.2730484009 2.40457344055
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1835 {
+      -28.3144683838 -17.3461017609 2.40457344055
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1836 {
+      -24.3980464935 -23.1652355194 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999837 0.000438 -0.018055 }
+        <Binormal> { -0.000004 -0.999677 -0.024510 }
+      }
+      <Normal> { 0.018159 -0.024506 0.999512 }
+    }
+    <Vertex> 1837 {
+      -20.5442523956 -23.1726131439 2.34572958946
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.999882 -0.001914 -0.015267 }
+        <Binormal> { -0.003154 -0.996037 -0.081684 }
+      }
+      <Normal> { 0.049959 -0.081790 0.995392 }
+    }
+    <Vertex> 1838 {
+      -20.4411811829 -20.2729511261 2.38986229897
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.819781 0.572494 0.014484 }
+        <Binormal> { 0.572601 -0.819440 -0.019579 }
+      }
+      <Normal> { 0.011475 -0.015870 0.999786 }
+    }
+    <Vertex> 1839 {
+      -24.3980464935 -20.2730484009 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.999998 0.000012 -0.001868 }
+        <Binormal> { 0.000008 -0.999973 -0.002564 }
+      }
+      <Normal> { 0.002808 -0.002564 0.999969 }
+    }
+    <Vertex> 1840 {
+      -24.3980464935 -23.1652355194 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999837 0.000438 -0.018055 }
+        <Binormal> { -0.000004 -0.999677 -0.024510 }
+      }
+      <Normal> { 0.018159 -0.024506 0.999512 }
+    }
+    <Vertex> 1841 {
+      -24.3980464935 -20.2730484009 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.999998 0.000012 -0.001868 }
+        <Binormal> { 0.000008 -0.999973 -0.002564 }
+      }
+      <Normal> { 0.002808 -0.002564 0.999969 }
+    }
+    <Vertex> 1842 {
+      -28.3144683838 -20.2730484009 2.40457344055
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1843 {
+      -28.3144683838 -23.1652355194 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.999969 -0.003906 }
+      }
+      <Normal> { 0.001984 -0.003906 0.999969 }
+    }
+    <Vertex> 1844 {
+      -24.3980464935 -23.1652355194 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999837 0.000438 -0.018055 }
+        <Binormal> { -0.000004 -0.999677 -0.024510 }
+      }
+      <Normal> { 0.018159 -0.024506 0.999512 }
+    }
+    <Vertex> 1845 {
+      -28.3144683838 -23.1652355194 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.999969 -0.003906 }
+      }
+      <Normal> { 0.001984 -0.003906 0.999969 }
+    }
+    <Vertex> 1846 {
+      -28.3466072083 -26.1558628082 2.38913798332
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.999982 -0.000766 -0.005985 }
+        <Binormal> { -0.000857 -0.999842 -0.015249 }
+      }
+      <Normal> { 0.012421 -0.015259 0.999786 }
+    }
+    <Vertex> 1847 {
+      -24.5266094208 -26.1617908478 2.34283208847
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.998437 0.003676 -0.055763 }
+        <Binormal> { -0.000063 -0.997736 -0.066897 }
+      }
+      <Normal> { 0.061739 -0.066775 0.995849 }
+    }
+    <Vertex> 1848 {
+      -24.3980464935 -23.1652355194 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999837 0.000438 -0.018055 }
+        <Binormal> { -0.000004 -0.999677 -0.024510 }
+      }
+      <Normal> { 0.018159 -0.024506 0.999512 }
+    }
+    <Vertex> 1849 {
+      -24.5266094208 -26.1617908478 2.34283208847
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.998437 0.003676 -0.055763 }
+        <Binormal> { -0.000063 -0.997736 -0.066897 }
+      }
+      <Normal> { 0.061739 -0.066775 0.995849 }
+    }
+    <Vertex> 1850 {
+      -20.6625614166 -26.1275749207 1.95997941494
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.998360 0.003472 -0.057137 }
+        <Binormal> { -0.017658 -0.903188 -0.363426 }
+      }
+      <Normal> { 0.280160 -0.363048 0.888638 }
+    }
+    <Vertex> 1851 {
+      -20.5442523956 -23.1726131439 2.34572958946
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.999882 -0.001914 -0.015267 }
+        <Binormal> { -0.003154 -0.996037 -0.081684 }
+      }
+      <Normal> { 0.049959 -0.081790 0.995392 }
+    }
+    <Vertex> 1852 {
+      -32.1065597534 -23.1652355194 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 1.000000 -0.000066 -0.000514 }
+        <Binormal> { -0.000066 -0.999970 -0.000641 }
+      }
+      <Normal> { 0.000488 -0.000641 0.999969 }
+    }
+    <Vertex> 1853 {
+      -28.3144683838 -23.1652355194 2.40457344055
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.999969 -0.003906 }
+      }
+      <Normal> { 0.001984 -0.003906 0.999969 }
+    }
+    <Vertex> 1854 {
+      -28.3144683838 -20.2730484009 2.40457344055
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1855 {
+      -32.1065597534 -20.2730484009 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1856 {
+      -32.1065597534 -23.1652355194 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 1.000000 -0.000066 -0.000514 }
+        <Binormal> { -0.000066 -0.999970 -0.000641 }
+      }
+      <Normal> { 0.000488 -0.000641 0.999969 }
+    }
+    <Vertex> 1857 {
+      -32.1065597534 -20.2730484009 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1858 {
+      -35.836479187 -20.2730484009 2.40457344055
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1859 {
+      -35.836479187 -23.1652355194 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1860 {
+      -32.1065597534 -23.1652355194 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 1.000000 -0.000066 -0.000514 }
+        <Binormal> { -0.000066 -0.999970 -0.000641 }
+      }
+      <Normal> { 0.000488 -0.000641 0.999969 }
+    }
+    <Vertex> 1861 {
+      -35.836479187 -23.1652355194 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1862 {
+      -35.836479187 -26.1538829803 2.40457344055
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1863 {
+      -32.1065597534 -26.1538829803 2.40457344055
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.999998 -0.000264 -0.002061 }
+        <Binormal> { -0.000269 -0.999974 -0.002471 }
+      }
+      <Normal> { 0.003082 -0.002472 0.999969 }
+    }
+    <Vertex> 1864 {
+      -32.1065597534 -23.1652355194 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 1.000000 -0.000066 -0.000514 }
+        <Binormal> { -0.000066 -0.999970 -0.000641 }
+      }
+      <Normal> { 0.000488 -0.000641 0.999969 }
+    }
+    <Vertex> 1865 {
+      -32.1065597534 -26.1538829803 2.40457344055
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.999998 -0.000264 -0.002061 }
+        <Binormal> { -0.000269 -0.999974 -0.002471 }
+      }
+      <Normal> { 0.003082 -0.002472 0.999969 }
+    }
+    <Vertex> 1866 {
+      -28.3466072083 -26.1558628082 2.38913798332
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.999998 -0.000262 -0.002044 }
+        <Binormal> { -0.000293 -0.999810 -0.015256 }
+      }
+      <Normal> { 0.012421 -0.015259 0.999786 }
+    }
+    <Vertex> 1867 {
+      -28.3144683838 -23.1652355194 2.40457344055
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.999969 -0.003906 }
+      }
+      <Normal> { 0.001984 -0.003906 0.999969 }
+    }
+    <Vertex> 1868 {
+      -16.9400424957 -23.1947441101 2.16919875145
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.190031 0.973373 0.128190 }
+        <Binormal> { 0.971252 -0.167536 -0.167660 }
+      }
+      <Normal> { 0.137791 -0.176489 0.974578 }
+    }
+    <Vertex> 1869 {
+      -16.5277519226 -20.2726535797 2.34572958946
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.139461 0.988425 0.059713 }
+        <Binormal> { 0.986663 -0.133674 -0.091680 }
+      }
+      <Normal> { 0.084658 -0.057375 0.994751 }
+    }
+    <Vertex> 1870 {
+      -20.4411811829 -20.2729511261 2.38986229897
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.819781 0.572494 0.014484 }
+        <Binormal> { 0.572601 -0.819440 -0.019579 }
+      }
+      <Normal> { 0.011475 -0.015870 0.999786 }
+    }
+    <Vertex> 1871 {
+      -20.5442523956 -23.1726131439 2.34572958946
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.037685 0.996607 0.073177 }
+        <Binormal> { 0.997999 -0.033855 -0.052871 }
+      }
+      <Normal> { 0.049959 -0.081790 0.995392 }
+    }
+    <Vertex> 1872 {
+      -16.9400424957 -23.1947441101 2.16919875145
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.190031 0.973373 0.128190 }
+        <Binormal> { 0.971252 -0.167536 -0.167660 }
+      }
+      <Normal> { 0.137791 -0.176489 0.974578 }
+    }
+    <Vertex> 1873 {
+      -20.5442523956 -23.1726131439 2.34572958946
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.037685 0.996607 0.073177 }
+        <Binormal> { 0.997999 -0.033855 -0.052871 }
+      }
+      <Normal> { 0.049959 -0.081790 0.995392 }
+    }
+    <Vertex> 1874 {
+      -20.6625614166 -26.1275749207 1.95997941494
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.699394 0.712911 0.051047 }
+        <Binormal> { 0.652053 -0.607207 -0.453643 }
+      }
+      <Normal> { 0.280160 -0.363048 0.888638 }
+    }
+    <Vertex> 1875 {
+      -17.1888771057 -25.3656044006 1.53771138191
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.109402 0.954436 0.277638 }
+        <Binormal> { 0.904468 -0.020600 -0.285584 }
+      }
+      <Normal> { 0.232276 -0.584002 0.777764 }
+    }
+    <Vertex> 1876 {
+      -16.9400424957 -23.1947441101 2.16919875145
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.190031 0.973373 0.128190 }
+        <Binormal> { 0.971252 -0.167536 -0.167660 }
+      }
+      <Normal> { 0.137791 -0.176489 0.974578 }
+    }
+    <Vertex> 1877 {
+      -17.1888771057 -25.3656044006 1.53771138191
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.109402 0.954436 0.277638 }
+        <Binormal> { 0.904468 -0.020600 -0.285584 }
+      }
+      <Normal> { 0.232276 -0.584002 0.777764 }
+    }
+    <Vertex> 1878 {
+      -15.062330246 -24.8115329742 1.09885978699
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.271223 0.925976 0.262692 }
+        <Binormal> { 0.818158 -0.090822 -0.524586 }
+      }
+      <Normal> { 0.403027 -0.558184 0.725211 }
+    }
+    <Vertex> 1879 {
+      -14.2060632706 -23.2094974518 1.53771138191
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.461130 0.878083 0.127785 }
+        <Binormal> { 0.758471 -0.315371 -0.569955 }
+      }
+      <Normal> { 0.468642 -0.343608 0.813776 }
+    }
+    <Vertex> 1880 {
+      -16.9400424957 -23.1947441101 2.16919875145
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.190031 0.973373 0.128190 }
+        <Binormal> { 0.971252 -0.167536 -0.167660 }
+      }
+      <Normal> { 0.137791 -0.176489 0.974578 }
+    }
+    <Vertex> 1881 {
+      -14.2060632706 -23.2094974518 1.53771138191
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.461130 0.878083 0.127785 }
+        <Binormal> { 0.758471 -0.315371 -0.569955 }
+      }
+      <Normal> { 0.468642 -0.343608 0.813776 }
+    }
+    <Vertex> 1882 {
+      -12.5347423553 -19.998506546 1.79928779602
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.892080 0.325505 -0.313432 }
+        <Binormal> { 0.226079 -0.920421 -0.312414 }
+      }
+      <Normal> { 0.447157 -0.187048 0.874660 }
+    }
+    <Vertex> 1883 {
+      -16.5277519226 -20.2726535797 2.34572958946
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.139461 0.988425 0.059713 }
+        <Binormal> { 0.986663 -0.133674 -0.091680 }
+      }
+      <Normal> { 0.084658 -0.057375 0.994751 }
+    }
+    <Vertex> 1884 {
+      -11.55813694 -16.3971214294 0.978157818317
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.723508 -0.034700 -0.689444 }
+        <Binormal> { 0.009685 -0.997970 0.060392 }
+      }
+      <Normal> { 0.702567 0.049776 0.709861 }
+    }
+    <Vertex> 1885 {
+      -11.3290185928 -14.1764011383 0.443251699209
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.639995 -0.046640 -0.766962 }
+        <Binormal> { 0.032140 -0.995605 0.087363 }
+      }
+      <Normal> { 0.771752 0.080264 0.630787 }
+    }
+    <Vertex> 1886 {
+      -12.8338851929 -14.2589521408 1.91424322128
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.819838 -0.483251 -0.307139 }
+        <Binormal> { -0.424440 -0.871173 0.237754 }
+      }
+      <Normal> { 0.436537 0.032685 0.899075 }
+    }
+    <Vertex> 1887 {
+      -13.0375680923 -17.0700035095 2.04796934128
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.805439 -0.149423 -0.573534 }
+        <Binormal> { -0.133933 -0.967097 0.063871 }
+      }
+      <Normal> { 0.397839 0.005493 0.917417 }
+    }
+    <Vertex> 1888 {
+      -11.55813694 -16.3971214294 0.978157818317
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.723508 -0.034700 -0.689444 }
+        <Binormal> { 0.009685 -0.997970 0.060392 }
+      }
+      <Normal> { 0.702567 0.049776 0.709861 }
+    }
+    <Vertex> 1889 {
+      -13.0375680923 -17.0700035095 2.04796934128
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.805439 -0.149423 -0.573534 }
+        <Binormal> { -0.133933 -0.967097 0.063871 }
+      }
+      <Normal> { 0.397839 0.005493 0.917417 }
+    }
+    <Vertex> 1890 {
+      -12.5347423553 -19.998506546 1.79928779602
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.773665 -0.026530 -0.633039 }
+        <Binormal> { -0.141613 -0.959762 -0.132849 }
+      }
+      <Normal> { 0.447157 -0.187048 0.874660 }
+    }
+    <Vertex> 1891 {
+      -10.8437681198 -17.1452312469 0.25292763114
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.663931 0.111663 -0.739410 }
+        <Binormal> { 0.222828 -0.952089 0.056301 }
+      }
+      <Normal> { 0.563860 0.179632 0.806055 }
+    }
+    <Vertex> 1892 {
+      -11.55813694 -16.3971214294 0.978157818317
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.723508 -0.034700 -0.689444 }
+        <Binormal> { 0.009685 -0.997970 0.060392 }
+      }
+      <Normal> { 0.702567 0.049776 0.709861 }
+    }
+    <Vertex> 1893 {
+      -10.8437681198 -17.1452312469 0.25292763114
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.663931 0.111663 -0.739410 }
+        <Binormal> { 0.222828 -0.952089 0.056301 }
+      }
+      <Normal> { 0.563860 0.179632 0.806055 }
+    }
+    <Vertex> 1894 {
+      -10.4264764786 -14.4343919754 -0.970763266087
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.574006 -0.006505 -0.818826 }
+        <Binormal> { 0.140053 -0.947182 0.105703 }
+      }
+      <Normal> { 0.622211 0.177099 0.762535 }
+    }
+    <Vertex> 1895 {
+      -11.3290185928 -14.1764011383 0.443251699209
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.639995 -0.046640 -0.766962 }
+        <Binormal> { 0.032140 -0.995605 0.087363 }
+      }
+      <Normal> { 0.771752 0.080264 0.630787 }
+    }
+    <Vertex> 1896 {
+      -16.2862110138 -17.3150196075 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.997770 0.030343 -0.059451 }
+        <Binormal> { 0.029636 -0.999439 -0.012720 }
+      }
+      <Normal> { 0.064943 -0.010773 0.997803 }
+    }
+    <Vertex> 1897 {
+      -13.0375680923 -17.0700035095 2.04796934128
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.991247 0.074761 -0.108809 }
+        <Binormal> { 0.069185 -0.952676 -0.024298 }
+      }
+      <Normal> { 0.397839 0.005493 0.917417 }
+    }
+    <Vertex> 1898 {
+      -12.8338851929 -14.2589521408 1.91424322128
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.819838 -0.483251 -0.307139 }
+        <Binormal> { -0.424440 -0.871173 0.237754 }
+      }
+      <Normal> { 0.436537 0.032685 0.899075 }
+    }
+    <Vertex> 1899 {
+      -16.1690883636 -14.3227319717 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.997784 0.013880 -0.065079 }
+        <Binormal> { 0.014209 -0.999849 0.004600 }
+      }
+      <Normal> { 0.070101 0.005585 0.997497 }
+    }
+    <Vertex> 1900 {
+      -16.2862110138 -17.3150196075 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.997770 0.030343 -0.059451 }
+        <Binormal> { 0.029636 -0.999439 -0.012720 }
+      }
+      <Normal> { 0.064943 -0.010773 0.997803 }
+    }
+    <Vertex> 1901 {
+      -16.1690883636 -14.3227319717 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.997784 0.013880 -0.065079 }
+        <Binormal> { 0.014209 -0.999849 0.004600 }
+      }
+      <Normal> { 0.070101 0.005585 0.997497 }
+    }
+    <Vertex> 1902 {
+      -20.3515148163 -14.3635282516 2.40457344055
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.999970 0.007745 0.000000 }
+        <Binormal> { 0.007745 -0.999970 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1903 {
+      -20.3807945251 -17.3383312225 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.999984 0.005693 0.000000 }
+        <Binormal> { 0.005693 -0.999953 -0.003825 }
+      }
+      <Normal> { 0.001831 -0.003815 0.999969 }
+    }
+    <Vertex> 1904 {
+      -16.2862110138 -17.3150196075 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.997770 0.030343 -0.059451 }
+        <Binormal> { 0.029636 -0.999439 -0.012720 }
+      }
+      <Normal> { 0.064943 -0.010773 0.997803 }
+    }
+    <Vertex> 1905 {
+      -20.3807945251 -17.3383312225 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.999984 0.005693 0.000000 }
+        <Binormal> { 0.005693 -0.999953 -0.003825 }
+      }
+      <Normal> { 0.001831 -0.003815 0.999969 }
+    }
+    <Vertex> 1906 {
+      -20.4411811829 -20.2729511261 2.38986229897
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.999980 0.002948 -0.005511 }
+        <Binormal> { 0.002860 -0.999830 -0.015903 }
+      }
+      <Normal> { 0.011475 -0.015870 0.999786 }
+    }
+    <Vertex> 1907 {
+      -16.5277519226 -20.2726535797 2.34572958946
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.996625 0.034594 -0.074443 }
+        <Binormal> { 0.030142 -0.997696 -0.060110 }
+      }
+      <Normal> { 0.084658 -0.057375 0.994751 }
+    }
+    <Vertex> 1908 {
+      -16.2862110138 -17.3150196075 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.997770 0.030343 -0.059451 }
+        <Binormal> { 0.029636 -0.999439 -0.012720 }
+      }
+      <Normal> { 0.064943 -0.010773 0.997803 }
+    }
+    <Vertex> 1909 {
+      -16.5277519226 -20.2726535797 2.34572958946
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.996625 0.034594 -0.074443 }
+        <Binormal> { 0.030142 -0.997696 -0.060110 }
+      }
+      <Normal> { 0.084658 -0.057375 0.994751 }
+    }
+    <Vertex> 1910 {
+      -12.5347423553 -19.998506546 1.79928779602
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.892080 0.325505 -0.313432 }
+        <Binormal> { 0.226079 -0.920421 -0.312414 }
+      }
+      <Normal> { 0.447157 -0.187048 0.874660 }
+    }
+    <Vertex> 1911 {
+      -13.0375680923 -17.0700035095 2.04796934128
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.991247 0.074761 -0.108809 }
+        <Binormal> { 0.069185 -0.952676 -0.024298 }
+      }
+      <Normal> { 0.397839 0.005493 0.917417 }
+    }
+    <Vertex> 1912 {
+      -8.9831609726 -17.2698879242 -0.496346473694
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.974553 0.038627 -0.220806 }
+        <Binormal> { 0.101883 -0.953673 0.282840 }
+      }
+      <Normal> { 0.206488 0.298410 0.931791 }
+    }
+    <Vertex> 1913 {
+      -8.6714630127 -14.4189186096 -1.64676845074
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.992343 0.053976 -0.111093 }
+        <Binormal> { 0.076685 -0.974204 0.211667 }
+      }
+      <Normal> { 0.110416 0.219306 0.969359 }
+    }
+    <Vertex> 1914 {
+      -10.4264764786 -14.4343919754 -0.970763266087
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.929959 -0.028083 -0.366590 }
+        <Binormal> { 0.043509 -0.937223 0.182168 }
+      }
+      <Normal> { 0.622211 0.177099 0.762535 }
+    }
+    <Vertex> 1915 {
+      -10.8437681198 -17.1452312469 0.25292763114
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.925823 -0.062028 -0.372833 }
+        <Binormal> { 0.016975 -0.956490 0.201283 }
+      }
+      <Normal> { 0.563860 0.179632 0.806055 }
+    }
+    <Vertex> 1916 {
+      -8.9831609726 -17.2698879242 -0.496346473694
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.974553 0.038627 -0.220806 }
+        <Binormal> { 0.101883 -0.953673 0.282840 }
+      }
+      <Normal> { 0.206488 0.298410 0.931791 }
+    }
+    <Vertex> 1917 {
+      -10.8437681198 -17.1452312469 0.25292763114
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.925823 -0.062028 -0.372833 }
+        <Binormal> { 0.016975 -0.956490 0.201283 }
+      }
+      <Normal> { 0.563860 0.179632 0.806055 }
+    }
+    <Vertex> 1918 {
+      -12.5347423553 -19.998506546 1.79928779602
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.892080 0.325505 -0.313432 }
+        <Binormal> { 0.226079 -0.920421 -0.312414 }
+      }
+      <Normal> { 0.447157 -0.187048 0.874660 }
+    }
+    <Vertex> 1919 {
+      -9.31296443939 -19.3812122345 0.277881801128
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.952727 0.053764 -0.299034 }
+        <Binormal> { -0.031707 -0.961005 -0.273801 }
+      }
+      <Normal> { 0.281655 -0.271493 0.920286 }
+    }
+    <Vertex> 1920 {
+      -8.9831609726 -17.2698879242 -0.496346473694
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.974553 0.038627 -0.220806 }
+        <Binormal> { 0.101883 -0.953673 0.282840 }
+      }
+      <Normal> { 0.206488 0.298410 0.931791 }
+    }
+    <Vertex> 1921 {
+      -9.31296443939 -19.3812122345 0.277881801128
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.952727 0.053764 -0.299034 }
+        <Binormal> { -0.031707 -0.961005 -0.273801 }
+      }
+      <Normal> { 0.281655 -0.271493 0.920286 }
+    }
+    <Vertex> 1922 {
+      -6.12064647675 -19.6365470886 -0.213918238878
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.919375 -0.266981 0.288912 }
+        <Binormal> { -0.195551 -0.937720 -0.244257 }
+      }
+      <Normal> { -0.197516 -0.208319 0.957884 }
+    }
+    <Vertex> 1923 {
+      -7.02259349823 -16.8958034515 -0.762133955956
+      <UV>  {
+        0.791667 0.458333
+        <Tangent> { 0.921640 0.069917 0.381694 }
+        <Binormal> { -0.007057 -0.978593 0.196293 }
+      }
+      <Normal> { -0.331004 0.187872 0.924711 }
+    }
+    <Vertex> 1924 {
+      -8.9831609726 -17.2698879242 -0.496346473694
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.974553 0.038627 -0.220806 }
+        <Binormal> { 0.101883 -0.953673 0.282840 }
+      }
+      <Normal> { 0.206488 0.298410 0.931791 }
+    }
+    <Vertex> 1925 {
+      -7.02259349823 -16.8958034515 -0.762133955956
+      <UV>  {
+        0.791667 0.458333
+        <Tangent> { 0.921640 0.069917 0.381694 }
+        <Binormal> { -0.007057 -0.978593 0.196293 }
+      }
+      <Normal> { -0.331004 0.187872 0.924711 }
+    }
+    <Vertex> 1926 {
+      -6.85692882538 -14.240237236 -1.37037372589
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.921315 0.072593 0.381981 }
+        <Binormal> { -0.003094 -0.974536 0.192666 }
+      }
+      <Normal> { -0.491623 0.170385 0.853938 }
+    }
+    <Vertex> 1927 {
+      -8.6714630127 -14.4189186096 -1.64676845074
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.992343 0.053976 -0.111093 }
+        <Binormal> { 0.076685 -0.974204 0.211667 }
+      }
+      <Normal> { 0.110416 0.219306 0.969359 }
+    }
+    <Vertex> 1928 {
+      4.56184911728 -28.9829063416 -0.888720989227
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.997324 -0.072924 0.005207 }
+        <Binormal> { -0.069735 -0.970231 -0.231452 }
+      }
+      <Normal> { -0.034364 -0.229560 0.972655 }
+    }
+    <Vertex> 1929 {
+      7.67474889755 -28.9308204651 -0.706889033318
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.988051 -0.146833 0.046859 }
+        <Binormal> { -0.136341 -0.974101 -0.177530 }
+      }
+      <Normal> { -0.102573 -0.164434 0.981017 }
+    }
+    <Vertex> 1930 {
+      7.19918632507 -25.5716743469 -0.261906713247
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.996292 -0.078471 0.035274 }
+        <Binormal> { -0.074928 -0.992778 -0.092254 }
+      }
+      <Normal> { -0.027955 -0.090396 0.995483 }
+    }
+    <Vertex> 1931 {
+      4.11504411697 -25.5846939087 -0.307364881039
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.994846 0.100633 0.012450 }
+        <Binormal> { 0.101392 -0.988698 -0.110298 }
+      }
+      <Normal> { -0.001251 -0.110996 0.993805 }
+    }
+    <Vertex> 1932 {
+      4.56184911728 -28.9829063416 -0.888720989227
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.997324 -0.072924 0.005207 }
+        <Binormal> { -0.069735 -0.970231 -0.231452 }
+      }
+      <Normal> { -0.034364 -0.229560 0.972655 }
+    }
+    <Vertex> 1933 {
+      4.11504411697 -25.5846939087 -0.307364881039
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.994846 0.100633 0.012450 }
+        <Binormal> { 0.101392 -0.988698 -0.110298 }
+      }
+      <Normal> { -0.001251 -0.110996 0.993805 }
+    }
+    <Vertex> 1934 {
+      1.13197898865 -25.5655536652 -0.232177615166
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.999693 0.019025 -0.015885 }
+        <Binormal> { 0.017274 -0.993692 -0.103008 }
+      }
+      <Normal> { 0.058229 -0.101932 0.993072 }
+    }
+    <Vertex> 1935 {
+      1.39426636696 -28.9063587189 -0.837996244431
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.996809 -0.074396 -0.028916 }
+        <Binormal> { -0.079134 -0.964851 -0.245552 }
+      }
+      <Normal> { 0.059389 -0.250771 0.966216 }
+    }
+    <Vertex> 1936 {
+      4.56184911728 -28.9829063416 -0.888720989227
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.997324 -0.072924 0.005207 }
+        <Binormal> { -0.069735 -0.970231 -0.231452 }
+      }
+      <Normal> { -0.034364 -0.229560 0.972655 }
+    }
+    <Vertex> 1937 {
+      1.39426636696 -28.9063587189 -0.837996244431
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.996809 -0.074396 -0.028916 }
+        <Binormal> { -0.079134 -0.964851 -0.245552 }
+      }
+      <Normal> { 0.059389 -0.250771 0.966216 }
+    }
+    <Vertex> 1938 {
+      1.48542678356 -31.5088615417 -1.76593053341
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.990959 -0.126158 -0.045658 }
+        <Binormal> { -0.127444 -0.780830 -0.608516 }
+      }
+      <Normal> { 0.019135 -0.616504 0.787072 }
+    }
+    <Vertex> 1939 {
+      4.85971927643 -31.6236820221 -1.79009187222
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.954998 -0.296613 -0.000503 }
+        <Binormal> { -0.239099 -0.768819 -0.589751 }
+      }
+      <Normal> { -0.114963 -0.581835 0.805109 }
+    }
+    <Vertex> 1940 {
+      4.56184911728 -28.9829063416 -0.888720989227
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.997324 -0.072924 0.005207 }
+        <Binormal> { -0.069735 -0.970231 -0.231452 }
+      }
+      <Normal> { -0.034364 -0.229560 0.972655 }
+    }
+    <Vertex> 1941 {
+      4.85971927643 -31.6236820221 -1.79009187222
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.954998 -0.296613 -0.000503 }
+        <Binormal> { -0.239099 -0.768819 -0.589751 }
+      }
+      <Normal> { -0.114963 -0.581835 0.805109 }
+    }
+    <Vertex> 1942 {
+      8.12346458435 -32.4771995544 -1.38274729252
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.966604 -0.236972 0.097576 }
+        <Binormal> { -0.187135 -0.899262 -0.330144 }
+      }
+      <Normal> { -0.376141 -0.249336 0.892361 }
+    }
+    <Vertex> 1943 {
+      7.67474889755 -28.9308204651 -0.706889033318
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.988051 -0.146833 0.046859 }
+        <Binormal> { -0.136341 -0.974101 -0.177530 }
+      }
+      <Normal> { -0.102573 -0.164434 0.981017 }
+    }
+    <Vertex> 1944 {
+      10.3707780838 -28.8267211914 -0.433198779821
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.967536 -0.237938 0.085198 }
+        <Binormal> { -0.228858 -0.967863 -0.104023 }
+      }
+      <Normal> { -0.107456 -0.081088 0.990875 }
+    }
+    <Vertex> 1945 {
+      12.8909225464 -28.729139328 -0.19348423183
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.965782 -0.253400 0.055266 }
+        <Binormal> { -0.251544 -0.967063 -0.038314 }
+      }
+      <Normal> { -0.058382 -0.024354 0.997986 }
+    }
+    <Vertex> 1946 {
+      12.818151474 -25.5212535858 -0.133555784822
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.969092 -0.245011 0.028816 }
+        <Binormal> { -0.244325 -0.969290 -0.024742 }
+      }
+      <Normal> { -0.022279 -0.019898 0.999542 }
+    }
+    <Vertex> 1947 {
+      10.0796890259 -25.5456466675 -0.19348423183
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.968873 -0.247540 0.002907 }
+        <Binormal> { -0.246877 -0.966991 -0.060538 }
+      }
+      <Normal> { -0.034089 -0.053774 0.997955 }
+    }
+    <Vertex> 1948 {
+      10.3707780838 -28.8267211914 -0.433198779821
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.967536 -0.237938 0.085198 }
+        <Binormal> { -0.228858 -0.967863 -0.104023 }
+      }
+      <Normal> { -0.107456 -0.081088 0.990875 }
+    }
+    <Vertex> 1949 {
+      10.0796890259 -25.5456466675 -0.19348423183
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.968873 -0.247540 0.002907 }
+        <Binormal> { -0.246877 -0.966991 -0.060538 }
+      }
+      <Normal> { -0.034089 -0.053774 0.997955 }
+    }
+    <Vertex> 1950 {
+      7.19918632507 -25.5716743469 -0.261906713247
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.996292 -0.078471 0.035274 }
+        <Binormal> { -0.074928 -0.992778 -0.092254 }
+      }
+      <Normal> { -0.027955 -0.090396 0.995483 }
+    }
+    <Vertex> 1951 {
+      7.67474889755 -28.9308204651 -0.706889033318
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.988051 -0.146833 0.046859 }
+        <Binormal> { -0.136341 -0.974101 -0.177530 }
+      }
+      <Normal> { -0.102573 -0.164434 0.981017 }
+    }
+    <Vertex> 1952 {
+      10.3707780838 -28.8267211914 -0.433198779821
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.967536 -0.237938 0.085198 }
+        <Binormal> { -0.228858 -0.967863 -0.104023 }
+      }
+      <Normal> { -0.107456 -0.081088 0.990875 }
+    }
+    <Vertex> 1953 {
+      7.67474889755 -28.9308204651 -0.706889033318
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.988051 -0.146833 0.046859 }
+        <Binormal> { -0.136341 -0.974101 -0.177530 }
+      }
+      <Normal> { -0.102573 -0.164434 0.981017 }
+    }
+    <Vertex> 1954 {
+      8.12346458435 -32.4771995544 -1.38274729252
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.966604 -0.236972 0.097576 }
+        <Binormal> { -0.187135 -0.899262 -0.330144 }
+      }
+      <Normal> { -0.376141 -0.249336 0.892361 }
+    }
+    <Vertex> 1955 {
+      10.5648374557 -32.3385810852 -0.593008577824
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.943683 -0.258231 0.206832 }
+        <Binormal> { -0.249300 -0.965578 -0.068084 }
+      }
+      <Normal> { -0.189825 -0.020203 0.981597 }
+    }
+    <Vertex> 1956 {
+      10.3707780838 -28.8267211914 -0.433198779821
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.967536 -0.237938 0.085198 }
+        <Binormal> { -0.228858 -0.967863 -0.104023 }
+      }
+      <Normal> { -0.107456 -0.081088 0.990875 }
+    }
+    <Vertex> 1957 {
+      10.5648374557 -32.3385810852 -0.593008577824
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.943683 -0.258231 0.206832 }
+        <Binormal> { -0.249300 -0.965578 -0.068084 }
+      }
+      <Normal> { -0.189825 -0.020203 0.981597 }
+    }
+    <Vertex> 1958 {
+      12.9394388199 -32.1922111511 -0.233436778188
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.962279 -0.262969 0.069760 }
+        <Binormal> { -0.262091 -0.964765 -0.021489 }
+      }
+      <Normal> { -0.080264 -0.000397 0.996765 }
+    }
+    <Vertex> 1959 {
+      12.8909225464 -28.729139328 -0.19348423183
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.965782 -0.253400 0.055266 }
+        <Binormal> { -0.251544 -0.967063 -0.038314 }
+      }
+      <Normal> { -0.058382 -0.024354 0.997986 }
+    }
+    <Vertex> 1960 {
+      15.4761724472 -28.6966152191 -0.113579511642
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.966710 -0.255553 0.012807 }
+        <Binormal> { -0.255472 -0.966777 -0.007465 }
+      }
+      <Normal> { -0.014435 -0.003906 0.999878 }
+    }
+    <Vertex> 1961 {
+      18.0939731598 -28.6966133118 -0.113579511642
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.966128 -0.258062 0.000000 }
+        <Binormal> { -0.258062 -0.966128 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1962 {
+      18.0939731598 -25.5131206512 -0.113579511642
+      <UV>  {
+        -0.042124 0.762705
+        <Tangent> { 0.968643 -0.248457 0.000000 }
+        <Binormal> { -0.248457 -0.968643 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1963 {
+      15.4761724472 -25.5131206512 -0.113579511642
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.969447 -0.245273 0.003671 }
+        <Binormal> { -0.245253 -0.969438 -0.004528 }
+      }
+      <Normal> { -0.005676 -0.003235 0.999969 }
+    }
+    <Vertex> 1964 {
+      15.4761724472 -28.6966152191 -0.113579511642
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.966710 -0.255553 0.012807 }
+        <Binormal> { -0.255472 -0.966777 -0.007465 }
+      }
+      <Normal> { -0.014435 -0.003906 0.999878 }
+    }
+    <Vertex> 1965 {
+      15.4761724472 -25.5131206512 -0.113579511642
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.969447 -0.245273 0.003671 }
+        <Binormal> { -0.245253 -0.969438 -0.004528 }
+      }
+      <Normal> { -0.005676 -0.003235 0.999969 }
+    }
+    <Vertex> 1966 {
+      12.818151474 -25.5212535858 -0.133555784822
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.969092 -0.245011 0.028816 }
+        <Binormal> { -0.244325 -0.969290 -0.024742 }
+      }
+      <Normal> { -0.022279 -0.019898 0.999542 }
+    }
+    <Vertex> 1967 {
+      12.8909225464 -28.729139328 -0.19348423183
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.965782 -0.253400 0.055266 }
+        <Binormal> { -0.251544 -0.967063 -0.038314 }
+      }
+      <Normal> { -0.058382 -0.024354 0.997986 }
+    }
+    <Vertex> 1968 {
+      15.4761724472 -28.6966152191 -0.113579511642
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.966710 -0.255553 0.012807 }
+        <Binormal> { -0.255472 -0.966777 -0.007465 }
+      }
+      <Normal> { -0.014435 -0.003906 0.999878 }
+    }
+    <Vertex> 1969 {
+      12.8909225464 -28.729139328 -0.19348423183
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.965782 -0.253400 0.055266 }
+        <Binormal> { -0.251544 -0.967063 -0.038314 }
+      }
+      <Normal> { -0.058382 -0.024354 0.997986 }
+    }
+    <Vertex> 1970 {
+      12.9394388199 -32.1922111511 -0.233436778188
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.962279 -0.262969 0.069760 }
+        <Binormal> { -0.262091 -0.964765 -0.021489 }
+      }
+      <Normal> { -0.080264 -0.000397 0.996765 }
+    }
+    <Vertex> 1971 {
+      15.4761724472 -32.1434249878 -0.113579511642
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.964547 -0.262957 0.022428 }
+        <Binormal> { -0.262899 -0.964778 -0.005179 }
+      }
+      <Normal> { -0.019471 -0.000061 0.999786 }
+    }
+    <Vertex> 1972 {
+      15.4761724472 -28.6966152191 -0.113579511642
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.966710 -0.255553 0.012807 }
+        <Binormal> { -0.255472 -0.966777 -0.007465 }
+      }
+      <Normal> { -0.014435 -0.003906 0.999878 }
+    }
+    <Vertex> 1973 {
+      15.4761724472 -32.1434249878 -0.113579511642
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.964547 -0.262957 0.022428 }
+        <Binormal> { -0.262899 -0.964778 -0.005179 }
+      }
+      <Normal> { -0.019471 -0.000061 0.999786 }
+    }
+    <Vertex> 1974 {
+      18.0939731598 -32.1434249878 -0.113579511642
+      <UV>  {
+        -0.073782 0.891829
+        <Tangent> { 0.963533 -0.267591 0.000000 }
+        <Binormal> { -0.267591 -0.963533 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1975 {
+      18.0939731598 -28.6966133118 -0.113579511642
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.966128 -0.258062 0.000000 }
+        <Binormal> { -0.258062 -0.966128 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1976 {
+      -1.4658113718 -28.6245594025 -0.41401720047
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.986449 -0.137830 -0.089005 }
+        <Binormal> { -0.155231 -0.959292 -0.234909 }
+      }
+      <Normal> { 0.032105 -0.242622 0.969573 }
+    }
+    <Vertex> 1977 {
+      1.39426636696 -28.9063587189 -0.837996244431
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.972092 -0.169196 -0.162510 }
+        <Binormal> { -0.204232 -0.948902 -0.233724 }
+      }
+      <Normal> { 0.059389 -0.250771 0.966216 }
+    }
+    <Vertex> 1978 {
+      1.13197898865 -25.5655536652 -0.232177615166
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.717410 -0.689605 -0.098832 }
+        <Binormal> { -0.694902 -0.718195 -0.032972 }
+      }
+      <Normal> { 0.058229 -0.101932 0.993072 }
+    }
+    <Vertex> 1979 {
+      -1.44529187679 -25.4951076508 0.0613350458443
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.995672 0.092525 -0.008717 }
+        <Binormal> { 0.091586 -0.992809 -0.076852 }
+      }
+      <Normal> { 0.013184 -0.075961 0.997009 }
+    }
+    <Vertex> 1980 {
+      -1.4658113718 -28.6245594025 -0.41401720047
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.986449 -0.137830 -0.089005 }
+        <Binormal> { -0.155231 -0.959292 -0.234909 }
+      }
+      <Normal> { 0.032105 -0.242622 0.969573 }
+    }
+    <Vertex> 1981 {
+      -1.44529187679 -25.4951076508 0.0613350458443
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.995672 0.092525 -0.008717 }
+        <Binormal> { 0.091586 -0.992809 -0.076852 }
+      }
+      <Normal> { 0.013184 -0.075961 0.997009 }
+    }
+    <Vertex> 1982 {
+      -3.54617714882 -25.4372901917 -0.105620525777
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.998587 -0.015939 0.050685 }
+        <Binormal> { -0.011069 -0.942105 -0.078194 }
+      }
+      <Normal> { -0.374371 -0.072329 0.924436 }
+    }
+    <Vertex> 1983 {
+      -3.77160167694 -28.3932991028 -0.404782384634
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.987772 -0.155113 -0.015688 }
+        <Binormal> { -0.146209 -0.905756 -0.250257 }
+      }
+      <Normal> { -0.329936 -0.201544 0.922208 }
+    }
+    <Vertex> 1984 {
+      -1.4658113718 -28.6245594025 -0.41401720047
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.986449 -0.137830 -0.089005 }
+        <Binormal> { -0.155231 -0.959292 -0.234909 }
+      }
+      <Normal> { 0.032105 -0.242622 0.969573 }
+    }
+    <Vertex> 1985 {
+      -3.77160167694 -28.3932991028 -0.404782384634
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.987772 -0.155113 -0.015688 }
+        <Binormal> { -0.146209 -0.905756 -0.250257 }
+      }
+      <Normal> { -0.329936 -0.201544 0.922208 }
+    }
+    <Vertex> 1986 {
+      -3.60399985313 -30.2704372406 -1.11836576462
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.933030 -0.350303 -0.082111 }
+        <Binormal> { -0.333737 -0.765572 -0.526176 }
+      }
+      <Normal> { -0.270821 -0.462264 0.844356 }
+    }
+    <Vertex> 1987 {
+      -1.81428253651 -31.0861663818 -1.2857388258
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.891390 -0.414056 -0.184343 }
+        <Binormal> { -0.444265 -0.720482 -0.529951 }
+      }
+      <Normal> { -0.040651 -0.575640 0.816675 }
+    }
+    <Vertex> 1988 {
+      -1.4658113718 -28.6245594025 -0.41401720047
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.986449 -0.137830 -0.089005 }
+        <Binormal> { -0.155231 -0.959292 -0.234909 }
+      }
+      <Normal> { 0.032105 -0.242622 0.969573 }
+    }
+    <Vertex> 1989 {
+      -1.81428253651 -31.0861663818 -1.2857388258
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.891390 -0.414056 -0.184343 }
+        <Binormal> { -0.444265 -0.720482 -0.529951 }
+      }
+      <Normal> { -0.040651 -0.575640 0.816675 }
+    }
+    <Vertex> 1990 {
+      1.48542678356 -31.5088615417 -1.76593053341
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.959302 -0.217054 -0.180629 }
+        <Binormal> { -0.282196 -0.758497 -0.587261 }
+      }
+      <Normal> { 0.019135 -0.616504 0.787072 }
+    }
+    <Vertex> 1991 {
+      1.39426636696 -28.9063587189 -0.837996244431
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.972092 -0.169196 -0.162510 }
+        <Binormal> { -0.204232 -0.948902 -0.233724 }
+      }
+      <Normal> { 0.059389 -0.250771 0.966216 }
+    }
+    <Vertex> 1992 {
+      -24.9122962952 -29.4018497467 2.15760707855
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.993246 -0.004185 -0.115952 }
+        <Binormal> { -0.011917 -0.997676 -0.066079 }
+      }
+      <Normal> { 0.123692 -0.067049 0.990020 }
+    }
+    <Vertex> 1993 {
+      -22.1854820251 -29.4176673889 1.52032351494
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.973744 -0.005648 -0.227574 }
+        <Binormal> { -0.046846 -0.943317 -0.177030 }
+      }
+      <Normal> { 0.483169 -0.184606 0.855831 }
+    }
+    <Vertex> 1994 {
+      -20.6625614166 -26.1275749207 1.95997941494
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.848636 0.527376 -0.041130 }
+        <Binormal> { 0.453714 -0.765653 -0.455845 }
+      }
+      <Normal> { 0.280160 -0.363048 0.888638 }
+    }
+    <Vertex> 1995 {
+      -24.5266094208 -26.1617908478 2.34283208847
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.998437 0.003676 -0.055763 }
+        <Binormal> { -0.000063 -0.997736 -0.066897 }
+      }
+      <Normal> { 0.061739 -0.066775 0.995849 }
+    }
+    <Vertex> 1996 {
+      -24.9122962952 -29.4018497467 2.15760707855
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.993246 -0.004185 -0.115952 }
+        <Binormal> { -0.011917 -0.997676 -0.066079 }
+      }
+      <Normal> { 0.123692 -0.067049 0.990020 }
+    }
+    <Vertex> 1997 {
+      -24.5266094208 -26.1617908478 2.34283208847
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.998437 0.003676 -0.055763 }
+        <Binormal> { -0.000063 -0.997736 -0.066897 }
+      }
+      <Normal> { 0.061739 -0.066775 0.995849 }
+    }
+    <Vertex> 1998 {
+      -28.3466072083 -26.1558628082 2.38913798332
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.999496 -0.004032 -0.031482 }
+        <Binormal> { -0.004512 -0.999674 -0.015201 }
+      }
+      <Normal> { 0.012421 -0.015259 0.999786 }
+    }
+    <Vertex> 1999 {
+      -28.443031311 -29.3781242371 2.34283161163
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.998604 -0.006710 -0.052387 }
+        <Binormal> { -0.007693 -0.999574 -0.018616 }
+      }
+      <Normal> { 0.032472 -0.018860 0.999268 }
+    }
+    <Vertex> 2000 {
+      -24.9122962952 -29.4018497467 2.15760707855
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.993246 -0.004185 -0.115952 }
+        <Binormal> { -0.011917 -0.997676 -0.066079 }
+      }
+      <Normal> { 0.123692 -0.067049 0.990020 }
+    }
+    <Vertex> 2001 {
+      -28.443031311 -29.3781242371 2.34283161163
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.998604 -0.006710 -0.052387 }
+        <Binormal> { -0.007693 -0.999574 -0.018616 }
+      }
+      <Normal> { 0.032472 -0.018860 0.999268 }
+    }
+    <Vertex> 2002 {
+      -28.5073108673 -32.8288879395 2.31196093559
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.997698 -0.008615 -0.067262 }
+        <Binormal> { -0.008636 -0.999670 -0.000045 }
+      }
+      <Normal> { 0.044252 -0.000427 0.998993 }
+    }
+    <Vertex> 2003 {
+      -25.1694221497 -32.8644752502 2.03412413597
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.986681 -0.009858 -0.162370 }
+        <Binormal> { -0.009931 -0.999912 0.000362 }
+      }
+      <Normal> { 0.155858 -0.001190 0.987762 }
+    }
+    <Vertex> 2004 {
+      -24.9122962952 -29.4018497467 2.15760707855
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.993246 -0.004185 -0.115952 }
+        <Binormal> { -0.011917 -0.997676 -0.066079 }
+      }
+      <Normal> { 0.123692 -0.067049 0.990020 }
+    }
+    <Vertex> 2005 {
+      -25.1694221497 -32.8644752502 2.03412413597
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.986681 -0.009858 -0.162370 }
+        <Binormal> { -0.009931 -0.999912 0.000362 }
+      }
+      <Normal> { 0.155858 -0.001190 0.987762 }
+    }
+    <Vertex> 2006 {
+      -22.5711708069 -32.8881988525 1.33509898186
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.969901 -0.007202 -0.243394 }
+        <Binormal> { -0.006762 -0.960293 0.001470 }
+      }
+      <Normal> { 0.504135 -0.002228 0.863582 }
+    }
+    <Vertex> 2007 {
+      -22.1854820251 -29.4176673889 1.52032351494
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.973744 -0.005648 -0.227574 }
+        <Binormal> { -0.046846 -0.943317 -0.177030 }
+      }
+      <Normal> { 0.483169 -0.184606 0.855831 }
+    }
+    <Vertex> 2008 {
+      -32.1065597534 -29.370218277 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999969 -0.001002 -0.007820 }
+        <Binormal> { -0.001025 -0.999970 -0.002983 }
+      }
+      <Normal> { 0.007904 -0.002991 0.999939 }
+    }
+    <Vertex> 2009 {
+      -28.443031311 -29.3781242371 2.34283161163
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.999856 -0.002158 -0.016851 }
+        <Binormal> { -0.002474 -0.999671 -0.018788 }
+      }
+      <Normal> { 0.032472 -0.018860 0.999268 }
+    }
+    <Vertex> 2010 {
+      -28.3466072083 -26.1558628082 2.38913798332
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.999945 -0.001332 -0.010396 }
+        <Binormal> { -0.001490 -0.999861 -0.015242 }
+      }
+      <Normal> { 0.012421 -0.015259 0.999786 }
+    }
+    <Vertex> 2011 {
+      -32.1065597534 -26.1538829803 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.999998 -0.000264 -0.002061 }
+        <Binormal> { -0.000269 -0.999974 -0.002471 }
+      }
+      <Normal> { 0.003082 -0.002472 0.999969 }
+    }
+    <Vertex> 2012 {
+      -32.1065597534 -29.370218277 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999969 -0.001002 -0.007820 }
+        <Binormal> { -0.001025 -0.999970 -0.002983 }
+      }
+      <Normal> { 0.007904 -0.002991 0.999939 }
+    }
+    <Vertex> 2013 {
+      -32.1065597534 -26.1538829803 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.999998 -0.000264 -0.002061 }
+        <Binormal> { -0.000269 -0.999974 -0.002471 }
+      }
+      <Normal> { 0.003082 -0.002472 0.999969 }
+    }
+    <Vertex> 2014 {
+      -35.836479187 -26.1538829803 2.40457344055
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 1.000000 -0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 2015 {
+      -35.836479187 -29.3702163696 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 1.000000 -0.000001 0.000000 }
+        <Binormal> { -0.000001 -1.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 2016 {
+      -32.1065597534 -29.370218277 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999969 -0.001002 -0.007820 }
+        <Binormal> { -0.001025 -0.999970 -0.002983 }
+      }
+      <Normal> { 0.007904 -0.002991 0.999939 }
+    }
+    <Vertex> 2017 {
+      -35.836479187 -29.3702163696 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 1.000000 -0.000001 0.000000 }
+        <Binormal> { -0.000001 -1.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 2018 {
+      -35.836479187 -32.8170280457 2.40457344055
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 1.000000 -0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 2019 {
+      -32.1065597534 -32.8170280457 2.40457344055
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.999919 -0.001618 -0.012635 }
+        <Binormal> { -0.001619 -0.999992 -0.000044 }
+      }
+      <Normal> { 0.010620 -0.000061 0.999939 }
+    }
+    <Vertex> 2020 {
+      -32.1065597534 -29.370218277 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999969 -0.001002 -0.007820 }
+        <Binormal> { -0.001025 -0.999970 -0.002983 }
+      }
+      <Normal> { 0.007904 -0.002991 0.999939 }
+    }
+    <Vertex> 2021 {
+      -32.1065597534 -32.8170280457 2.40457344055
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.999919 -0.001618 -0.012635 }
+        <Binormal> { -0.001619 -0.999992 -0.000044 }
+      }
+      <Normal> { 0.010620 -0.000061 0.999939 }
+    }
+    <Vertex> 2022 {
+      -28.5073108673 -32.8288879395 2.31196093559
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.999771 -0.002721 -0.021248 }
+        <Binormal> { -0.002727 -0.999704 -0.000307 }
+      }
+      <Normal> { 0.044252 -0.000427 0.998993 }
+    }
+    <Vertex> 2023 {
+      -28.443031311 -29.3781242371 2.34283161163
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.999856 -0.002158 -0.016851 }
+        <Binormal> { -0.002474 -0.999671 -0.018788 }
+      }
+      <Normal> { 0.032472 -0.018860 0.999268 }
+    }
+    <Vertex> 2024 {
+      10.3707780838 -35.9536132813 -0.433198779821
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.942679 -0.282708 0.177291 }
+        <Binormal> { -0.288145 -0.957535 0.005224 }
+      }
+      <Normal> { -0.173040 0.057436 0.983215 }
+    }
+    <Vertex> 2025 {
+      12.8909235001 -35.8560295105 -0.19348423183
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.960114 -0.273688 0.057229 }
+        <Binormal> { -0.273462 -0.961796 -0.011834 }
+      }
+      <Normal> { -0.059084 0.004517 0.998230 }
+    }
+    <Vertex> 2026 {
+      12.9394388199 -32.1922111511 -0.233436778188
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.956928 -0.278983 0.080363 }
+        <Binormal> { -0.278049 -0.960282 -0.022772 }
+      }
+      <Normal> { -0.080264 -0.000397 0.996765 }
+    }
+    <Vertex> 2027 {
+      10.5648374557 -32.3385810852 -0.593008577824
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.931072 -0.273893 0.241014 }
+        <Binormal> { -0.263984 -0.959688 -0.070802 }
+      }
+      <Normal> { -0.189825 -0.020203 0.981597 }
+    }
+    <Vertex> 2028 {
+      10.3707780838 -35.9536132813 -0.433198779821
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.942679 -0.282708 0.177291 }
+        <Binormal> { -0.288145 -0.957535 0.005224 }
+      }
+      <Normal> { -0.173040 0.057436 0.983215 }
+    }
+    <Vertex> 2029 {
+      10.5648374557 -32.3385810852 -0.593008577824
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.931072 -0.273893 0.241014 }
+        <Binormal> { -0.263984 -0.959688 -0.070802 }
+      }
+      <Normal> { -0.189825 -0.020203 0.981597 }
+    }
+    <Vertex> 2030 {
+      8.12346458435 -32.4771995544 -1.38274729252
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.773266 -0.617720 0.143111 }
+        <Binormal> { -0.515547 -0.743863 -0.425153 }
+      }
+      <Normal> { -0.376141 -0.249336 0.892361 }
+    }
+    <Vertex> 2031 {
+      8.40805339813 -36.0186653137 -1.10680878162
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.865568 -0.351542 0.356666 }
+        <Binormal> { -0.331214 -0.906875 -0.090047 }
+      }
+      <Normal> { -0.566637 0.126102 0.814234 }
+    }
+    <Vertex> 2032 {
+      10.3707780838 -35.9536132813 -0.433198779821
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.942679 -0.282708 0.177291 }
+        <Binormal> { -0.288145 -0.957535 0.005224 }
+      }
+      <Normal> { -0.173040 0.057436 0.983215 }
+    }
+    <Vertex> 2033 {
+      8.40805339813 -36.0186653137 -1.10680878162
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.865568 -0.351542 0.356666 }
+        <Binormal> { -0.331214 -0.906875 -0.090047 }
+      }
+      <Normal> { -0.566637 0.126102 0.814234 }
+    }
+    <Vertex> 2034 {
+      7.19533348083 -39.542350769 -0.598637402058
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.929378 -0.286018 0.233347 }
+        <Binormal> { -0.328083 -0.897518 0.206587 }
+      }
+      <Normal> { -0.345531 0.328623 0.878964 }
+    }
+    <Vertex> 2035 {
+      10.0990219116 -39.3871536255 -0.288117974997
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.968098 -0.241834 0.065602 }
+        <Binormal> { -0.242485 -0.970104 0.002212 }
+      }
+      <Normal> { -0.055361 0.016114 0.998321 }
+    }
+    <Vertex> 2036 {
+      10.3707780838 -35.9536132813 -0.433198779821
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.942679 -0.282708 0.177291 }
+        <Binormal> { -0.288145 -0.957535 0.005224 }
+      }
+      <Normal> { -0.173040 0.057436 0.983215 }
+    }
+    <Vertex> 2037 {
+      10.0990219116 -39.3871536255 -0.288117974997
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.968098 -0.241834 0.065602 }
+        <Binormal> { -0.242485 -0.970104 0.002212 }
+      }
+      <Normal> { -0.055361 0.016114 0.998321 }
+    }
+    <Vertex> 2038 {
+      12.9291086197 -39.3520507813 -0.285861551762
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.961203 -0.273900 0.032679 }
+        <Binormal> { -0.271230 -0.959796 -0.066744 }
+      }
+      <Normal> { -0.023377 -0.062777 0.997742 }
+    }
+    <Vertex> 2039 {
+      12.8909235001 -35.8560295105 -0.19348423183
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.960114 -0.273688 0.057229 }
+        <Binormal> { -0.273462 -0.961796 -0.011834 }
+      }
+      <Normal> { -0.059084 0.004517 0.998230 }
+    }
+    <Vertex> 2040 {
+      15.4761724472 -35.8235054016 -0.113579511642
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.957851 -0.286684 0.018272 }
+        <Binormal> { -0.286428 -0.957961 -0.015107 }
+      }
+      <Normal> { -0.022004 -0.009186 0.999695 }
+    }
+    <Vertex> 2041 {
+      18.0939731598 -35.8235054016 -0.113579511642
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.958661 -0.284552 0.000000 }
+        <Binormal> { -0.284526 -0.958573 -0.009750 }
+      }
+      <Normal> { -0.010102 -0.007172 0.999908 }
+    }
+    <Vertex> 2042 {
+      18.0939731598 -32.1434249878 -0.113579511642
+      <UV>  {
+        -0.042124 0.762705
+        <Tangent> { 0.958742 -0.284278 0.000000 }
+        <Binormal> { -0.284278 -0.958742 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 2043 {
+      15.4761724472 -32.1434249878 -0.113579511642
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.959750 -0.279967 0.022317 }
+        <Binormal> { -0.279906 -0.959980 -0.005510 }
+      }
+      <Normal> { -0.019471 -0.000061 0.999786 }
+    }
+    <Vertex> 2044 {
+      15.4761724472 -35.8235054016 -0.113579511642
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.957851 -0.286684 0.018272 }
+        <Binormal> { -0.286428 -0.957961 -0.015107 }
+      }
+      <Normal> { -0.022004 -0.009186 0.999695 }
+    }
+    <Vertex> 2045 {
+      15.4761724472 -32.1434249878 -0.113579511642
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.959750 -0.279967 0.022317 }
+        <Binormal> { -0.279906 -0.959980 -0.005510 }
+      }
+      <Normal> { -0.019471 -0.000061 0.999786 }
+    }
+    <Vertex> 2046 {
+      12.9394388199 -32.1922111511 -0.233436778188
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.956928 -0.278983 0.080363 }
+        <Binormal> { -0.278049 -0.960282 -0.022772 }
+      }
+      <Normal> { -0.080264 -0.000397 0.996765 }
+    }
+    <Vertex> 2047 {
+      12.8909235001 -35.8560295105 -0.19348423183
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.960114 -0.273688 0.057229 }
+        <Binormal> { -0.273462 -0.961796 -0.011834 }
+      }
+      <Normal> { -0.059084 0.004517 0.998230 }
+    }
+    <Vertex> 2048 {
+      15.4761724472 -35.8235054016 -0.113579511642
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.957851 -0.286684 0.018272 }
+        <Binormal> { -0.286428 -0.957961 -0.015107 }
+      }
+      <Normal> { -0.022004 -0.009186 0.999695 }
+    }
+    <Vertex> 2049 {
+      12.8909235001 -35.8560295105 -0.19348423183
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.960114 -0.273688 0.057229 }
+        <Binormal> { -0.273462 -0.961796 -0.011834 }
+      }
+      <Normal> { -0.059084 0.004517 0.998230 }
+    }
+    <Vertex> 2050 {
+      12.9291086197 -39.3520507813 -0.285861551762
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.961203 -0.273900 0.032679 }
+        <Binormal> { -0.271230 -0.959796 -0.066744 }
+      }
+      <Normal> { -0.023377 -0.062777 0.997742 }
+    }
+    <Vertex> 2051 {
+      15.5610723495 -39.4087181091 -0.216497406363
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.951765 -0.305921 0.023584 }
+        <Binormal> { -0.303704 -0.950181 -0.068926 }
+      }
+      <Normal> { -0.054781 -0.054811 0.996979 }
+    }
+    <Vertex> 2052 {
+      15.4761724472 -35.8235054016 -0.113579511642
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.957851 -0.286684 0.018272 }
+        <Binormal> { -0.286428 -0.957961 -0.015107 }
+      }
+      <Normal> { -0.022004 -0.009186 0.999695 }
+    }
+    <Vertex> 2053 {
+      15.5610723495 -39.4087181091 -0.216497406363
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.951765 -0.305921 0.023584 }
+        <Binormal> { -0.303704 -0.950181 -0.068926 }
+      }
+      <Normal> { -0.054781 -0.054811 0.996979 }
+    }
+    <Vertex> 2054 {
+      18.0939731598 -39.5112686157 -0.113579511642
+      <UV>  {
+        -0.073782 0.891829
+        <Tangent> { 0.953243 -0.301835 0.014978 }
+        <Binormal> { -0.300529 -0.951641 -0.050860 }
+      }
+      <Normal> { -0.065950 -0.032472 0.997284 }
+    }
+    <Vertex> 2055 {
+      18.0939731598 -35.8235054016 -0.113579511642
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.958661 -0.284552 0.000000 }
+        <Binormal> { -0.284526 -0.958573 -0.009750 }
+      }
+      <Normal> { -0.010102 -0.007172 0.999908 }
+    }
+    <Vertex> 2056 {
+      -24.9122982025 -36.5287399292 2.15760684013
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.993318 -0.007425 -0.115174 }
+        <Binormal> { -0.000137 -0.997938 0.063155 }
+      }
+      <Normal> { 0.123814 0.062655 0.990295 }
+    }
+    <Vertex> 2057 {
+      -22.1854839325 -36.5445556641 1.52032351494
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.973745 -0.005648 -0.227574 }
+        <Binormal> { 0.035574 -0.943937 0.175638 }
+      }
+      <Normal> { 0.485763 0.177557 0.855861 }
+    }
+    <Vertex> 2058 {
+      -22.5711708069 -32.8881988525 1.33509898186
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.531376 0.826310 -0.186688 }
+        <Binormal> { 0.713170 -0.553003 -0.417756 }
+      }
+      <Normal> { 0.504135 -0.002228 0.863582 }
+    }
+    <Vertex> 2059 {
+      -25.1694221497 -32.8644752502 2.03412413597
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.986681 -0.009858 -0.162370 }
+        <Binormal> { -0.009931 -0.999912 0.000362 }
+      }
+      <Normal> { 0.155858 -0.001190 0.987762 }
+    }
+    <Vertex> 2060 {
+      -24.9122982025 -36.5287399292 2.15760684013
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.993318 -0.007425 -0.115174 }
+        <Binormal> { -0.000137 -0.997938 0.063155 }
+      }
+      <Normal> { 0.123814 0.062655 0.990295 }
+    }
+    <Vertex> 2061 {
+      -25.1694221497 -32.8644752502 2.03412413597
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.986681 -0.009858 -0.162370 }
+        <Binormal> { -0.009931 -0.999912 0.000362 }
+      }
+      <Normal> { 0.155858 -0.001190 0.987762 }
+    }
+    <Vertex> 2062 {
+      -28.5073108673 -32.8288879395 2.31196093559
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.997698 -0.008615 -0.067262 }
+        <Binormal> { -0.008635 -0.999670 -0.000045 }
+      }
+      <Normal> { 0.044252 -0.000427 0.998993 }
+    }
+    <Vertex> 2063 {
+      -28.443031311 -36.5050163269 2.34283161163
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.998604 -0.006710 -0.052387 }
+        <Binormal> { -0.005802 -0.999609 0.017437 }
+      }
+      <Normal> { 0.032563 0.017243 0.999298 }
+    }
+    <Vertex> 2064 {
+      -24.9122982025 -36.5287399292 2.15760684013
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.993318 -0.007425 -0.115174 }
+        <Binormal> { -0.000137 -0.997938 0.063155 }
+      }
+      <Normal> { 0.123814 0.062655 0.990295 }
+    }
+    <Vertex> 2065 {
+      -28.443031311 -36.5050163269 2.34283161163
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.998604 -0.006710 -0.052387 }
+        <Binormal> { -0.005802 -0.999609 0.017437 }
+      }
+      <Normal> { 0.032563 0.017243 0.999298 }
+    }
+    <Vertex> 2066 {
+      -28.3140487671 -40.1868515015 2.38913798332
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.999509 -0.003979 -0.031069 }
+        <Binormal> { -0.003554 -0.999708 0.013684 }
+      }
+      <Normal> { 0.012268 0.013642 0.999817 }
+    }
+    <Vertex> 2067 {
+      -24.3963737488 -40.192779541 2.34283161163
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.998490 -0.007404 -0.054439 }
+        <Binormal> { -0.003963 -0.997958 0.063040 }
+      }
+      <Normal> { 0.060762 0.062685 0.996155 }
+    }
+    <Vertex> 2068 {
+      -24.9122982025 -36.5287399292 2.15760684013
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.993318 -0.007425 -0.115174 }
+        <Binormal> { -0.000137 -0.997938 0.063155 }
+      }
+      <Normal> { 0.123814 0.062655 0.990295 }
+    }
+    <Vertex> 2069 {
+      -24.3963737488 -40.192779541 2.34283161163
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.998490 -0.007404 -0.054439 }
+        <Binormal> { -0.003963 -0.997958 0.063040 }
+      }
+      <Normal> { 0.060762 0.062685 0.996155 }
+    }
+    <Vertex> 2070 {
+      -20.4595336914 -40.2450904846 1.96089971066
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.988454 -0.010106 -0.151185 }
+        <Binormal> { 0.043826 -0.925431 0.348394 }
+      }
+      <Normal> { 0.284097 0.349559 0.892788 }
+    }
+    <Vertex> 2071 {
+      -22.1854839325 -36.5445556641 1.52032351494
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.973745 -0.005648 -0.227574 }
+        <Binormal> { 0.035574 -0.943937 0.175638 }
+      }
+      <Normal> { 0.485763 0.177557 0.855861 }
+    }
+    <Vertex> 2072 {
+      -32.1065597534 -36.4971084595 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999969 -0.001001 -0.007812 }
+        <Binormal> { -0.000980 -0.999970 0.002693 }
+      }
+      <Normal> { 0.007904 0.002686 0.999939 }
+    }
+    <Vertex> 2073 {
+      -28.443031311 -36.5050163269 2.34283161163
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.999856 -0.002158 -0.016851 }
+        <Binormal> { -0.001866 -0.999703 0.017311 }
+      }
+      <Normal> { 0.032563 0.017243 0.999298 }
+    }
+    <Vertex> 2074 {
+      -28.5073108673 -32.8288879395 2.31196093559
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.999771 -0.002721 -0.021248 }
+        <Binormal> { -0.002728 -0.999704 -0.000307 }
+      }
+      <Normal> { 0.044252 -0.000427 0.998993 }
+    }
+    <Vertex> 2075 {
+      -32.1065597534 -32.8170280457 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.999919 -0.001618 -0.012635 }
+        <Binormal> { -0.001619 -0.999992 -0.000044 }
+      }
+      <Normal> { 0.010620 -0.000061 0.999939 }
+    }
+    <Vertex> 2076 {
+      -32.1065597534 -36.4971084595 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999969 -0.001001 -0.007812 }
+        <Binormal> { -0.000980 -0.999970 0.002693 }
+      }
+      <Normal> { 0.007904 0.002686 0.999939 }
+    }
+    <Vertex> 2077 {
+      -32.1065597534 -32.8170280457 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.999919 -0.001618 -0.012635 }
+        <Binormal> { -0.001619 -0.999992 -0.000044 }
+      }
+      <Normal> { 0.010620 -0.000061 0.999939 }
+    }
+    <Vertex> 2078 {
+      -35.836479187 -32.8170280457 2.40457344055
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 2079 {
+      -35.836479187 -36.4971084595 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 2080 {
+      -32.1065597534 -36.4971084595 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999969 -0.001001 -0.007812 }
+        <Binormal> { -0.000980 -0.999970 0.002693 }
+      }
+      <Normal> { 0.007904 0.002686 0.999939 }
+    }
+    <Vertex> 2081 {
+      -35.836479187 -36.4971084595 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 2082 {
+      -35.836479187 -40.1848716736 2.40457344055
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 2083 {
+      -32.1065597534 -40.1848716736 2.40457344055
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.999998 -0.000263 -0.002052 }
+        <Binormal> { -0.000259 -0.999974 0.002168 }
+      }
+      <Normal> { 0.003082 0.002167 0.999969 }
+    }
+    <Vertex> 2084 {
+      -32.1065597534 -36.4971084595 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999969 -0.001001 -0.007812 }
+        <Binormal> { -0.000980 -0.999970 0.002693 }
+      }
+      <Normal> { 0.007904 0.002686 0.999939 }
+    }
+    <Vertex> 2085 {
+      -32.1065597534 -40.1848716736 2.40457344055
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.999998 -0.000263 -0.002052 }
+        <Binormal> { -0.000259 -0.999974 0.002168 }
+      }
+      <Normal> { 0.003082 0.002167 0.999969 }
+    }
+    <Vertex> 2086 {
+      -28.3140487671 -40.1868515015 2.38913798332
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.999946 -0.001326 -0.010350 }
+        <Binormal> { -0.001185 -0.999889 0.013657 }
+      }
+      <Normal> { 0.012268 0.013642 0.999817 }
+    }
+    <Vertex> 2087 {
+      -28.443031311 -36.5050163269 2.34283161163
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.999856 -0.002158 -0.016851 }
+        <Binormal> { -0.001866 -0.999703 0.017311 }
+      }
+      <Normal> { 0.032563 0.017243 0.999298 }
+    }
+    <Vertex> 2088 {
+      4.06641864777 -42.885471344 -0.376289248466
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.969146 0.173671 0.174913 }
+        <Binormal> { 0.108093 -0.937181 0.331613 }
+      }
+      <Normal> { -0.222571 0.302286 0.926847 }
+    }
+    <Vertex> 2089 {
+      6.82280921936 -42.5842018127 -0.240754574537
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.998930 -0.045774 0.006669 }
+        <Binormal> { -0.046201 -0.981679 0.182267 }
+      }
+      <Normal> { -0.028138 0.183752 0.982543 }
+    }
+    <Vertex> 2090 {
+      7.19533348083 -39.542350769 -0.598637402058
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.994131 0.083361 0.068958 }
+        <Binormal> { 0.050610 -0.897632 0.355498 }
+      }
+      <Normal> { -0.345531 0.328623 0.878964 }
+    }
+    <Vertex> 2091 {
+      4.4444065094 -40.5874176025 -1.0628644228
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.291820 0.857986 0.422730 }
+        <Binormal> { 0.429077 -0.368641 0.452004 }
+      }
+      <Normal> { -0.342387 0.542253 0.767266 }
+    }
+    <Vertex> 2092 {
+      4.06641864777 -42.885471344 -0.376289248466
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.969146 0.173671 0.174913 }
+        <Binormal> { 0.108093 -0.937181 0.331613 }
+      }
+      <Normal> { -0.222571 0.302286 0.926847 }
+    }
+    <Vertex> 2093 {
+      4.4444065094 -40.5874176025 -1.0628644228
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.291820 0.857986 0.422730 }
+        <Binormal> { 0.429077 -0.368641 0.452004 }
+      }
+      <Normal> { -0.342387 0.542253 0.767266 }
+    }
+    <Vertex> 2094 {
+      2.79635214806 -41.291103363 -1.51639676094
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.499899 -0.741973 0.446741 }
+        <Binormal> { -0.736217 -0.578547 -0.137064 }
+      }
+      <Normal> { -0.521714 0.500168 0.691092 }
+    }
+    <Vertex> 2095 {
+      2.08877849579 -43.1081047058 -1.0628644228
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.935619 0.043423 0.350332 }
+        <Binormal> { -0.089001 -0.878289 0.346553 }
+      }
+      <Normal> { -0.619373 0.341655 0.706809 }
+    }
+    <Vertex> 2096 {
+      4.06641864777 -42.885471344 -0.376289248466
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.969146 0.173671 0.174913 }
+        <Binormal> { 0.108093 -0.937181 0.331613 }
+      }
+      <Normal> { -0.222571 0.302286 0.926847 }
+    }
+    <Vertex> 2097 {
+      2.08877849579 -43.1081047058 -1.0628644228
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.935619 0.043423 0.350332 }
+        <Binormal> { -0.089001 -0.878289 0.346553 }
+      }
+      <Normal> { -0.619373 0.341655 0.706809 }
+    }
+    <Vertex> 2098 {
+      1.39152395725 -46.1994247437 -0.046333078295
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.942290 0.103198 0.318497 }
+        <Binormal> { -0.102689 -0.669768 0.520825 }
+      }
+      <Normal> { -0.756310 0.469893 0.455153 }
+    }
+    <Vertex> 2099 {
+      3.84703230858 -45.2283363342 0.473477274179
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.988727 0.063794 0.135457 }
+        <Binormal> { -0.038671 -0.763553 0.641869 }
+      }
+      <Normal> { -0.202399 0.636128 0.744530 }
+    }
+    <Vertex> 2100 {
+      4.06641864777 -42.885471344 -0.376289248466
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.969146 0.173671 0.174913 }
+        <Binormal> { 0.108093 -0.937181 0.331613 }
+      }
+      <Normal> { -0.222571 0.302286 0.926847 }
+    }
+    <Vertex> 2101 {
+      3.84703230858 -45.2283363342 0.473477274179
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.988727 0.063794 0.135457 }
+        <Binormal> { -0.038671 -0.763553 0.641869 }
+      }
+      <Normal> { -0.202399 0.636128 0.744530 }
+    }
+    <Vertex> 2102 {
+      6.75631093979 -44.8541069031 0.311147242785
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.999347 -0.027055 -0.023953 }
+        <Binormal> { -0.007107 -0.796154 0.602740 }
+      }
+      <Normal> { -0.017029 0.603595 0.797082 }
+    }
+    <Vertex> 2103 {
+      6.82280921936 -42.5842018127 -0.240754574537
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.998930 -0.045774 0.006669 }
+        <Binormal> { -0.046201 -0.981679 0.182267 }
+      }
+      <Normal> { -0.028138 0.183752 0.982543 }
+    }
+    <Vertex> 2104 {
+      10.0599918365 -42.3545570374 -0.492114633322
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.990956 -0.125532 -0.047422 }
+        <Binormal> { -0.121813 -0.989699 0.074400 }
+      }
+      <Normal> { 0.047487 0.069063 0.996460 }
+    }
+    <Vertex> 2105 {
+      13.2377262115 -42.3117370605 -0.72280216217
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.975597 -0.219350 -0.009816 }
+        <Binormal> { -0.219082 -0.975232 0.018398 }
+      }
+      <Normal> { -0.009919 0.021088 0.999725 }
+    }
+    <Vertex> 2106 {
+      12.9291086197 -39.3520507813 -0.285861551762
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.968680 -0.247369 -0.021636 }
+        <Binormal> { -0.248169 -0.965986 -0.066593 }
+      }
+      <Normal> { -0.023377 -0.062777 0.997742 }
+    }
+    <Vertex> 2107 {
+      10.0990219116 -39.3871536255 -0.288117974997
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.978499 -0.202837 0.037362 }
+        <Binormal> { -0.203099 -0.978925 0.004538 }
+      }
+      <Normal> { -0.055361 0.016114 0.998321 }
+    }
+    <Vertex> 2108 {
+      10.0599918365 -42.3545570374 -0.492114633322
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.990956 -0.125532 -0.047422 }
+        <Binormal> { -0.121813 -0.989699 0.074400 }
+      }
+      <Normal> { 0.047487 0.069063 0.996460 }
+    }
+    <Vertex> 2109 {
+      10.0990219116 -39.3871536255 -0.288117974997
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.978499 -0.202837 0.037362 }
+        <Binormal> { -0.203099 -0.978925 0.004538 }
+      }
+      <Normal> { -0.055361 0.016114 0.998321 }
+    }
+    <Vertex> 2110 {
+      7.19533348083 -39.542350769 -0.598637402058
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.994131 0.083361 0.068958 }
+        <Binormal> { 0.050610 -0.897632 0.355498 }
+      }
+      <Normal> { -0.345531 0.328623 0.878964 }
+    }
+    <Vertex> 2111 {
+      6.82280921936 -42.5842018127 -0.240754574537
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.998930 -0.045774 0.006669 }
+        <Binormal> { -0.046201 -0.981679 0.182267 }
+      }
+      <Normal> { -0.028138 0.183752 0.982543 }
+    }
+    <Vertex> 2112 {
+      10.0599918365 -42.3545570374 -0.492114633322
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.990956 -0.125532 -0.047422 }
+        <Binormal> { -0.121813 -0.989699 0.074400 }
+      }
+      <Normal> { 0.047487 0.069063 0.996460 }
+    }
+    <Vertex> 2113 {
+      6.82280921936 -42.5842018127 -0.240754574537
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.998930 -0.045774 0.006669 }
+        <Binormal> { -0.046201 -0.981679 0.182267 }
+      }
+      <Normal> { -0.028138 0.183752 0.982543 }
+    }
+    <Vertex> 2114 {
+      6.75631093979 -44.8541069031 0.311147242785
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.999347 -0.027055 -0.023953 }
+        <Binormal> { -0.007107 -0.796154 0.602740 }
+      }
+      <Normal> { -0.017029 0.603595 0.797082 }
+    }
+    <Vertex> 2115 {
+      10.2525291443 -44.4553260803 -0.163017913699
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.994114 -0.064320 -0.087178 }
+        <Binormal> { 0.001440 -0.793247 0.601678 }
+      }
+      <Normal> { 0.015046 0.604266 0.796625 }
+    }
+    <Vertex> 2116 {
+      10.0599918365 -42.3545570374 -0.492114633322
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.990956 -0.125532 -0.047422 }
+        <Binormal> { -0.121813 -0.989699 0.074400 }
+      }
+      <Normal> { 0.047487 0.069063 0.996460 }
+    }
+    <Vertex> 2117 {
+      10.2525291443 -44.4553260803 -0.163017913699
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.994114 -0.064320 -0.087178 }
+        <Binormal> { 0.001440 -0.793247 0.601678 }
+      }
+      <Normal> { 0.015046 0.604266 0.796625 }
+    }
+    <Vertex> 2118 {
+      13.6012659073 -44.3292274475 -0.449449241161
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.978988 -0.200849 0.035241 }
+        <Binormal> { -0.177055 -0.752780 0.628222 }
+      }
+      <Normal> { 0.016327 0.638356 0.769524 }
+    }
+    <Vertex> 2119 {
+      13.2377262115 -42.3117370605 -0.72280216217
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.975597 -0.219350 -0.009816 }
+        <Binormal> { -0.219082 -0.975232 0.018398 }
+      }
+      <Normal> { -0.009919 0.021088 0.999725 }
+    }
+    <Vertex> 2120 {
+      15.8157720566 -42.5709266663 -0.525250732899
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.930218 -0.343314 0.129730 }
+        <Binormal> { -0.348086 -0.937310 0.015449 }
+      }
+      <Normal> { -0.114841 0.058992 0.991607 }
+    }
+    <Vertex> 2121 {
+      18.0939731598 -42.9811325073 -0.113579511642
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.892009 -0.407977 0.194613 }
+        <Binormal> { -0.420640 -0.906680 0.027285 }
+      }
+      <Normal> { -0.152318 0.100253 0.983215 }
+    }
+    <Vertex> 2122 {
+      18.0939731598 -39.5112686157 -0.113579511642
+      <UV>  {
+        -0.042124 0.762705
+        <Tangent> { 0.927302 -0.364378 0.085674 }
+        <Binormal> { -0.360606 -0.930433 -0.054142 }
+      }
+      <Normal> { -0.065950 -0.032472 0.997284 }
+    }
+    <Vertex> 2123 {
+      15.5610723495 -39.4087181091 -0.216497406363
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.962130 -0.272484 0.007671 }
+        <Binormal> { -0.271240 -0.959643 -0.067662 }
+      }
+      <Normal> { -0.054781 -0.054811 0.996979 }
+    }
+    <Vertex> 2124 {
+      15.8157720566 -42.5709266663 -0.525250732899
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.930218 -0.343314 0.129730 }
+        <Binormal> { -0.348086 -0.937310 0.015449 }
+      }
+      <Normal> { -0.114841 0.058992 0.991607 }
+    }
+    <Vertex> 2125 {
+      15.5610723495 -39.4087181091 -0.216497406363
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.962130 -0.272484 0.007671 }
+        <Binormal> { -0.271240 -0.959643 -0.067662 }
+      }
+      <Normal> { -0.054781 -0.054811 0.996979 }
+    }
+    <Vertex> 2126 {
+      12.9291086197 -39.3520507813 -0.285861551762
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.968680 -0.247369 -0.021636 }
+        <Binormal> { -0.248169 -0.965986 -0.066593 }
+      }
+      <Normal> { -0.023377 -0.062777 0.997742 }
+    }
+    <Vertex> 2127 {
+      13.2377262115 -42.3117370605 -0.72280216217
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.975597 -0.219350 -0.009816 }
+        <Binormal> { -0.219082 -0.975232 0.018398 }
+      }
+      <Normal> { -0.009919 0.021088 0.999725 }
+    }
+    <Vertex> 2128 {
+      15.8157720566 -42.5709266663 -0.525250732899
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.930218 -0.343314 0.129730 }
+        <Binormal> { -0.348086 -0.937310 0.015449 }
+      }
+      <Normal> { -0.114841 0.058992 0.991607 }
+    }
+    <Vertex> 2129 {
+      13.2377262115 -42.3117370605 -0.72280216217
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.975597 -0.219350 -0.009816 }
+        <Binormal> { -0.219082 -0.975232 0.018398 }
+      }
+      <Normal> { -0.009919 0.021088 0.999725 }
+    }
+    <Vertex> 2130 {
+      13.6012659073 -44.3292274475 -0.449449241161
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.978988 -0.200849 0.035241 }
+        <Binormal> { -0.177055 -0.752780 0.628222 }
+      }
+      <Normal> { 0.016327 0.638356 0.769524 }
+    }
+    <Vertex> 2131 {
+      16.0680961609 -44.7730445862 -0.0485777109861
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.878916 -0.401615 0.257317 }
+        <Binormal> { -0.470451 -0.646586 0.597741 }
+      }
+      <Normal> { 0.023408 0.669393 0.742515 }
+    }
+    <Vertex> 2132 {
+      15.8157720566 -42.5709266663 -0.525250732899
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.930218 -0.343314 0.129730 }
+        <Binormal> { -0.348086 -0.937310 0.015449 }
+      }
+      <Normal> { -0.114841 0.058992 0.991607 }
+    }
+    <Vertex> 2133 {
+      16.0680961609 -44.7730445862 -0.0485777109861
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.878916 -0.401615 0.257317 }
+        <Binormal> { -0.470451 -0.646586 0.597741 }
+      }
+      <Normal> { 0.023408 0.669393 0.742515 }
+    }
+    <Vertex> 2134 {
+      18.0939731598 -45.5018196106 0.695945441723
+      <UV>  {
+        -0.073782 0.891829
+        <Tangent> { 0.861481 -0.422136 0.282227 }
+        <Binormal> { -0.500773 -0.619523 0.601938 }
+      }
+      <Normal> { 0.031770 0.683157 0.729545 }
+    }
+    <Vertex> 2135 {
+      18.0939731598 -42.9811325073 -0.113579511642
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.892009 -0.407977 0.194613 }
+        <Binormal> { -0.420640 -0.906680 0.027285 }
+      }
+      <Normal> { -0.152318 0.100253 0.983215 }
+    }
+    <Vertex> 2136 {
+      -23.8770961761 -43.6547355652 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999833 0.005035 -0.017593 }
+        <Binormal> { 0.006406 -0.996871 0.078729 }
+      }
+      <Normal> { 0.017243 0.078829 0.996734 }
+    }
+    <Vertex> 2137 {
+      -19.6815776825 -43.6686973572 2.34668850899
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.999899 -0.003327 -0.013795 }
+        <Binormal> { -0.001309 -0.989156 0.143691 }
+      }
+      <Normal> { 0.044130 0.143559 0.988647 }
+    }
+    <Vertex> 2138 {
+      -20.4595336914 -40.2450904846 1.96089971066
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.554982 0.830930 0.039371 }
+        <Binormal> { 0.728082 -0.484297 -0.042065 }
+      }
+      <Normal> { 0.284097 0.349559 0.892788 }
+    }
+    <Vertex> 2139 {
+      -24.3963737488 -40.192779541 2.34283161163
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.998490 -0.007404 -0.054439 }
+        <Binormal> { -0.003963 -0.997958 0.063040 }
+      }
+      <Normal> { 0.060762 0.062685 0.996155 }
+    }
+    <Vertex> 2140 {
+      -23.8770961761 -43.6547355652 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999833 0.005035 -0.017593 }
+        <Binormal> { 0.006406 -0.996871 0.078729 }
+      }
+      <Normal> { 0.017243 0.078829 0.996734 }
+    }
+    <Vertex> 2141 {
+      -24.3963737488 -40.192779541 2.34283161163
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.998490 -0.007404 -0.054439 }
+        <Binormal> { -0.003963 -0.997958 0.063040 }
+      }
+      <Normal> { 0.060762 0.062685 0.996155 }
+    }
+    <Vertex> 2142 {
+      -28.3140487671 -40.1868515015 2.38913798332
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.999984 -0.000721 -0.005630 }
+        <Binormal> { -0.000644 -0.999870 0.013650 }
+      }
+      <Normal> { 0.012268 0.013642 0.999817 }
+    }
+    <Vertex> 2143 {
+      -28.1842308044 -43.6547355652 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.997528 0.069460 }
+      }
+      <Normal> { 0.008362 0.069460 0.997528 }
+    }
+    <Vertex> 2144 {
+      -23.8770961761 -43.6547355652 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999833 0.005035 -0.017593 }
+        <Binormal> { 0.006406 -0.996871 0.078729 }
+      }
+      <Normal> { 0.017243 0.078829 0.996734 }
+    }
+    <Vertex> 2145 {
+      -28.1842308044 -43.6547355652 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.997528 0.069460 }
+      }
+      <Normal> { 0.008362 0.069460 0.997528 }
+    }
+    <Vertex> 2146 {
+      -27.7901077271 -46.4382362366 2.78387331963
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.999254 0.033236 -0.019684 }
+        <Binormal> { 0.037896 -0.745790 0.664526 }
+      }
+      <Normal> { 0.019471 0.665670 0.745964 }
+    }
+    <Vertex> 2147 {
+      -23.2082595825 -46.142578125 2.60876917839
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.999573 0.028656 -0.005675 }
+        <Binormal> { 0.027543 -0.859778 0.509846 }
+      }
+      <Normal> { -0.014100 0.509659 0.860225 }
+    }
+    <Vertex> 2148 {
+      -23.8770961761 -43.6547355652 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999833 0.005035 -0.017593 }
+        <Binormal> { 0.006406 -0.996871 0.078729 }
+      }
+      <Normal> { 0.017243 0.078829 0.996734 }
+    }
+    <Vertex> 2149 {
+      -23.2082595825 -46.142578125 2.60876917839
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.999573 0.028656 -0.005675 }
+        <Binormal> { 0.027543 -0.859778 0.509846 }
+      }
+      <Normal> { -0.014100 0.509659 0.860225 }
+    }
+    <Vertex> 2150 {
+      -18.8465080261 -46.1818351746 2.73309445381
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.999951 -0.006219 0.007764 }
+        <Binormal> { -0.009669 -0.505769 0.840178 }
+      }
+      <Normal> { -0.194037 0.841426 0.504288 }
+    }
+    <Vertex> 2151 {
+      -19.6815776825 -43.6686973572 2.34668850899
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.999899 -0.003327 -0.013795 }
+        <Binormal> { -0.001309 -0.989156 0.143691 }
+      }
+      <Normal> { 0.044130 0.143559 0.988647 }
+    }
+    <Vertex> 2152 {
+      -32.1065597534 -43.6547355652 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999954 -0.008576 -0.004239 }
+        <Binormal> { -0.008194 -0.996468 0.083205 }
+      }
+      <Normal> { 0.005371 0.083163 0.996490 }
+    }
+    <Vertex> 2153 {
+      -28.1842308044 -43.6547355652 2.40457344055
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 1.000000 0.000000 -0.000000 }
+        <Binormal> { 0.000000 -0.997528 0.069460 }
+      }
+      <Normal> { 0.008362 0.069460 0.997528 }
+    }
+    <Vertex> 2154 {
+      -28.3140487671 -40.1868515015 2.38913798332
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.999998 -0.000257 -0.002001 }
+        <Binormal> { -0.000229 -0.999839 0.013645 }
+      }
+      <Normal> { 0.012268 0.013642 0.999817 }
+    }
+    <Vertex> 2155 {
+      -32.1065597534 -40.1848716736 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.999998 -0.000263 -0.002052 }
+        <Binormal> { -0.000259 -0.999974 0.002168 }
+      }
+      <Normal> { 0.003082 0.002167 0.999969 }
+    }
+    <Vertex> 2156 {
+      -32.1065597534 -43.6547355652 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999954 -0.008576 -0.004239 }
+        <Binormal> { -0.008194 -0.996468 0.083205 }
+      }
+      <Normal> { 0.005371 0.083163 0.996490 }
+    }
+    <Vertex> 2157 {
+      -32.1065597534 -40.1848716736 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.999998 -0.000263 -0.002052 }
+        <Binormal> { -0.000259 -0.999974 0.002168 }
+      }
+      <Normal> { 0.003082 0.002167 0.999969 }
+    }
+    <Vertex> 2158 {
+      -35.836479187 -40.1848716736 2.40457344055
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 2159 {
+      -35.836479187 -43.6547355652 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.995911 0.089908 }
+      }
+      <Normal> { 0.004730 0.089908 0.995911 }
+    }
+    <Vertex> 2160 {
+      -32.1065597534 -43.6547355652 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999954 -0.008576 -0.004239 }
+        <Binormal> { -0.008194 -0.996468 0.083205 }
+      }
+      <Normal> { 0.005371 0.083163 0.996490 }
+    }
+    <Vertex> 2161 {
+      -35.836479187 -43.6547355652 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.995911 0.089908 }
+      }
+      <Normal> { 0.004730 0.089908 0.995911 }
+    }
+    <Vertex> 2162 {
+      -35.836479187 -46.1754264832 2.89932918549
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.999949 0.001793 -0.009948 }
+        <Binormal> { 0.007135 -0.822189 0.569052 }
+      }
+      <Normal> { 0.015473 0.569109 0.822077 }
+    }
+    <Vertex> 2163 {
+      -32.1947669983 -46.1622085571 2.82599329948
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.999364 -0.032641 -0.014340 }
+        <Binormal> { -0.018582 -0.820107 0.571788 }
+      }
+      <Normal> { 0.020264 0.571490 0.820338 }
+    }
+    <Vertex> 2164 {
+      -32.1065597534 -43.6547355652 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999954 -0.008576 -0.004239 }
+        <Binormal> { -0.008194 -0.996468 0.083205 }
+      }
+      <Normal> { 0.005371 0.083163 0.996490 }
+    }
+    <Vertex> 2165 {
+      -32.1947669983 -46.1622085571 2.82599329948
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.999364 -0.032641 -0.014340 }
+        <Binormal> { -0.018582 -0.820107 0.571788 }
+      }
+      <Normal> { 0.020264 0.571490 0.820338 }
+    }
+    <Vertex> 2166 {
+      -27.7901077271 -46.4382362366 2.78387331963
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.999438 -0.033130 -0.005055 }
+        <Binormal> { -0.021349 -0.745643 0.665941 }
+      }
+      <Normal> { 0.019471 0.665670 0.745964 }
+    }
+    <Vertex> 2167 {
+      -28.1842308044 -43.6547355652 2.40457344055
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 1.000000 0.000000 -0.000000 }
+        <Binormal> { 0.000000 -0.997528 0.069460 }
+      }
+      <Normal> { 0.008362 0.069460 0.997528 }
+    }
+    <Vertex> 2168 {
+      -16.0940895081 -43.7105827332 2.17303323746
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.995861 -0.029910 -0.085825 }
+        <Binormal> { -0.008517 -0.970845 0.239505 }
+      }
+      <Normal> { 0.089908 0.237800 0.967132 }
+    }
+    <Vertex> 2169 {
+      -12.9835205078 -43.6638145447 1.75926482677
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.991158 0.014902 -0.131844 }
+        <Binormal> { 0.052759 -0.953965 0.288797 }
+      }
+      <Normal> { 0.181799 0.294107 0.938292 }
+    }
+    <Vertex> 2170 {
+      -13.2005634308 -41.2014007568 1.03015196323
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.869214 0.230702 -0.437315 }
+        <Binormal> { 0.441785 -0.751816 0.481483 }
+      }
+      <Normal> { 0.141362 0.591449 0.793817 }
+    }
+    <Vertex> 2171 {
+      -16.5711364746 -41.2178192139 1.54346323013
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 0.000000 1.000000 }
+        <Binormal> { -0.571886 0.154454 -0.000000 }
+      }
+      <Normal> { 0.154454 0.571886 0.805628 }
+    }
+    <Vertex> 2172 {
+      -16.0940895081 -43.7105827332 2.17303323746
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.995861 -0.029910 -0.085825 }
+        <Binormal> { -0.008517 -0.970845 0.239505 }
+      }
+      <Normal> { 0.089908 0.237800 0.967132 }
+    }
+    <Vertex> 2173 {
+      -16.5711364746 -41.2178192139 1.54346323013
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 0.000000 1.000000 }
+        <Binormal> { -0.571886 0.154454 -0.000000 }
+      }
+      <Normal> { 0.154454 0.571886 0.805628 }
+    }
+    <Vertex> 2174 {
+      -20.4595336914 -40.2450904846 1.96089971066
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.615972 0.770979 -0.161771 }
+        <Binormal> { 0.744870 -0.595891 -0.003714 }
+      }
+      <Normal> { 0.284097 0.349559 0.892788 }
+    }
+    <Vertex> 2175 {
+      -19.6815776825 -43.6686973572 2.34668850899
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.998763 -0.011661 -0.048346 }
+        <Binormal> { -0.004588 -0.989557 0.143896 }
+      }
+      <Normal> { 0.044130 0.143559 0.988647 }
+    }
+    <Vertex> 2176 {
+      -16.0940895081 -43.7105827332 2.17303323746
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.995861 -0.029910 -0.085825 }
+        <Binormal> { -0.008517 -0.970845 0.239505 }
+      }
+      <Normal> { 0.089908 0.237800 0.967132 }
+    }
+    <Vertex> 2177 {
+      -19.6815776825 -43.6686973572 2.34668850899
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.998763 -0.011661 -0.048346 }
+        <Binormal> { -0.004588 -0.989557 0.143896 }
+      }
+      <Normal> { 0.044130 0.143559 0.988647 }
+    }
+    <Vertex> 2178 {
+      -18.8465080261 -46.1818351746 2.73309445381
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.997453 0.060230 -0.038203 }
+        <Binormal> { 0.062518 -0.495591 0.850970 }
+      }
+      <Normal> { -0.194037 0.841426 0.504288 }
+    }
+    <Vertex> 2179 {
+      -15.5738811493 -45.7257080078 2.64400482178
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.999170 0.021828 -0.034383 }
+        <Binormal> { 0.039891 -0.357169 0.932490 }
+      }
+      <Normal> { 0.027558 0.933866 0.356517 }
+    }
+    <Vertex> 2180 {
+      -16.0940895081 -43.7105827332 2.17303323746
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.995861 -0.029910 -0.085825 }
+        <Binormal> { -0.008517 -0.970845 0.239505 }
+      }
+      <Normal> { 0.089908 0.237800 0.967132 }
+    }
+    <Vertex> 2181 {
+      -15.5738811493 -45.7257080078 2.64400482178
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.999170 0.021828 -0.034383 }
+        <Binormal> { 0.039891 -0.357169 0.932490 }
+      }
+      <Normal> { 0.027558 0.933866 0.356517 }
+    }
+    <Vertex> 2182 {
+      -12.559217453 -46.0444793701 2.51674008369
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.715479 0.197887 0.670023 }
+        <Binormal> { -0.580080 -0.054431 0.635510 }
+      }
+      <Normal> { 0.200201 0.943602 0.263558 }
+    }
+    <Vertex> 2183 {
+      -12.9835205078 -43.6638145447 1.75926482677
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.991158 0.014902 -0.131844 }
+        <Binormal> { 0.052759 -0.953965 0.288797 }
+      }
+      <Normal> { 0.181799 0.294107 0.938292 }
+    }
+    <Vertex> 2184 {
+      -10.2187509537 -43.4117965698 0.981038928032
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.081605 -0.951307 0.297246 }
+        <Binormal> { -0.941615 0.024122 0.335706 }
+      }
+      <Normal> { 0.326487 0.307779 0.893643 }
+    }
+    <Vertex> 2185 {
+      -8.11905384064 -43.1363143921 -0.166021123528
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.152736 -0.940368 0.303940 }
+        <Binormal> { -0.768203 0.079645 0.632455 }
+      }
+      <Normal> { 0.627949 0.274667 0.728141 }
+    }
+    <Vertex> 2186 {
+      -8.6047372818 -41.4014854431 -0.550100982189
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.565282 -0.752048 -0.338940 }
+        <Binormal> { -0.402879 -0.593637 0.645258 }
+      }
+      <Normal> { 0.538133 0.425550 0.727500 }
+    }
+    <Vertex> 2187 {
+      -10.2645511627 -40.9845962524 0.184837639332
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.227557 -0.933107 -0.278440 }
+        <Binormal> { -0.580704 -0.263567 0.408679 }
+      }
+      <Normal> { 0.306162 0.540513 0.783624 }
+    }
+    <Vertex> 2188 {
+      -10.2187509537 -43.4117965698 0.981038928032
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.081605 -0.951307 0.297246 }
+        <Binormal> { -0.941615 0.024122 0.335706 }
+      }
+      <Normal> { 0.326487 0.307779 0.893643 }
+    }
+    <Vertex> 2189 {
+      -10.2645511627 -40.9845962524 0.184837639332
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.227557 -0.933107 -0.278440 }
+        <Binormal> { -0.580704 -0.263567 0.408679 }
+      }
+      <Normal> { 0.306162 0.540513 0.783624 }
+    }
+    <Vertex> 2190 {
+      -13.2005634308 -41.2014007568 1.03015196323
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.051249 -0.953375 0.297405 }
+        <Binormal> { -0.932705 0.001359 0.165082 }
+      }
+      <Normal> { 0.141362 0.591449 0.793817 }
+    }
+    <Vertex> 2191 {
+      -12.9835205078 -43.6638145447 1.75926482677
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.125593 -0.948408 0.291115 }
+        <Binormal> { -0.975502 -0.064919 0.209357 }
+      }
+      <Normal> { 0.181799 0.294107 0.938292 }
+    }
+    <Vertex> 2192 {
+      -10.2187509537 -43.4117965698 0.981038928032
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.081605 -0.951307 0.297246 }
+        <Binormal> { -0.941615 0.024122 0.335706 }
+      }
+      <Normal> { 0.326487 0.307779 0.893643 }
+    }
+    <Vertex> 2193 {
+      -12.9835205078 -43.6638145447 1.75926482677
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.125593 -0.948408 0.291115 }
+        <Binormal> { -0.975502 -0.064919 0.209357 }
+      }
+      <Normal> { 0.181799 0.294107 0.938292 }
+    }
+    <Vertex> 2194 {
+      -12.559217453 -46.0444793701 2.51674008369
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.099671 -0.951823 0.289997 }
+        <Binormal> { -0.524502 0.031789 0.284606 }
+      }
+      <Normal> { 0.200201 0.943602 0.263558 }
+    }
+    <Vertex> 2195 {
+      -10.1550111771 -45.6917610168 1.64354300499
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.026836 -0.959935 0.278935 }
+        <Binormal> { -0.795350 0.043986 0.227897 }
+      }
+      <Normal> { 0.216010 0.765435 0.606128 }
+    }
+    <Vertex> 2196 {
+      -10.2187509537 -43.4117965698 0.981038928032
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.081605 -0.951307 0.297246 }
+        <Binormal> { -0.941615 0.024122 0.335706 }
+      }
+      <Normal> { 0.326487 0.307779 0.893643 }
+    }
+    <Vertex> 2197 {
+      -10.1550111771 -45.6917610168 1.64354300499
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.026836 -0.959935 0.278935 }
+        <Binormal> { -0.795350 0.043986 0.227897 }
+      }
+      <Normal> { 0.216010 0.765435 0.606128 }
+    }
+    <Vertex> 2198 {
+      -7.83629846573 -46.1326217651 0.979065775871
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.062006 -0.944203 0.323473 }
+        <Binormal> { -0.483824 0.226393 0.753575 }
+      }
+      <Normal> { 0.761010 0.564898 0.318888 }
+    }
+    <Vertex> 2199 {
+      -8.11905384064 -43.1363143921 -0.166021123528
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.152736 -0.940368 0.303940 }
+        <Binormal> { -0.768203 0.079645 0.632455 }
+      }
+      <Normal> { 0.627949 0.274667 0.728141 }
+    }
+    <Vertex> 2200 {
+      -7.00369501114 -43.0191459656 -1.68629300594
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.599572 0.132948 -0.789201 }
+        <Binormal> { 0.215957 -0.976296 -0.000399 }
+      }
+      <Normal> { 0.762322 0.168371 0.624897 }
+    }
+    <Vertex> 2201 {
+      -7.76692771912 -40.6621894836 -1.69989109039
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.577612 0.463990 -0.671624 }
+        <Binormal> { 0.633425 -0.771084 0.012058 }
+      }
+      <Normal> { 0.548906 0.461806 0.696707 }
+    }
+    <Vertex> 2202 {
+      -8.6047372818 -41.4014854431 -0.550100982189
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.565282 -0.752048 -0.338940 }
+        <Binormal> { -0.402879 -0.593637 0.645258 }
+      }
+      <Normal> { 0.538133 0.425550 0.727500 }
+    }
+    <Vertex> 2203 {
+      -8.11905384064 -43.1363143921 -0.166021123528
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.590395 0.062021 -0.804728 }
+        <Binormal> { 0.266192 -0.935219 0.123216 }
+      }
+      <Normal> { 0.627949 0.274667 0.728141 }
+    }
+    <Vertex> 2204 {
+      -7.00369501114 -43.0191459656 -1.68629300594
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.599572 0.132948 -0.789201 }
+        <Binormal> { 0.215957 -0.976296 -0.000399 }
+      }
+      <Normal> { 0.762322 0.168371 0.624897 }
+    }
+    <Vertex> 2205 {
+      -8.11905384064 -43.1363143921 -0.166021123528
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.590395 0.062021 -0.804728 }
+        <Binormal> { 0.266192 -0.935219 0.123216 }
+      }
+      <Normal> { 0.627949 0.274667 0.728141 }
+    }
+    <Vertex> 2206 {
+      -7.83629846573 -46.1326217651 0.979065775871
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.373370 -0.766463 -0.522618 }
+        <Binormal> { 0.050810 -0.516780 0.794201 }
+      }
+      <Normal> { 0.761010 0.564898 0.318888 }
+    }
+    <Vertex> 2207 {
+      -6.97407722473 -46.0848350525 -1.3913949728
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.485545 0.002683 -0.874207 }
+        <Binormal> { 0.076168 -0.995968 0.039248 }
+      }
+      <Normal> { 0.858058 0.085574 0.506333 }
+    }
+    <Vertex> 2208 {
+      -7.00369501114 -43.0191459656 -1.68629300594
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.599572 0.132948 -0.789201 }
+        <Binormal> { 0.215957 -0.976296 -0.000399 }
+      }
+      <Normal> { 0.762322 0.168371 0.624897 }
+    }
+    <Vertex> 2209 {
+      -6.97407722473 -46.0848350525 -1.3913949728
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.485545 0.002683 -0.874207 }
+        <Binormal> { 0.076168 -0.995968 0.039248 }
+      }
+      <Normal> { 0.858058 0.085574 0.506333 }
+    }
+    <Vertex> 2210 {
+      -5.62817716599 -46.1204185486 -2.99657797813
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.672206 -0.001752 -0.740362 }
+        <Binormal> { 0.015946 -0.964977 0.016761 }
+      }
+      <Normal> { 0.538865 0.023530 0.842036 }
+    }
+    <Vertex> 2211 {
+      -5.63558197021 -42.9906349182 -3.07030248642
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.702935 0.014649 -0.711103 }
+        <Binormal> { 0.063224 -0.959265 0.042737 }
+      }
+      <Normal> { 0.490341 0.071017 0.868618 }
+    }
+    <Vertex> 2212 {
+      -7.00369501114 -43.0191459656 -1.68629300594
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.599572 0.132948 -0.789201 }
+        <Binormal> { 0.215957 -0.976296 -0.000399 }
+      }
+      <Normal> { 0.762322 0.168371 0.624897 }
+    }
+    <Vertex> 2213 {
+      -5.63558197021 -42.9906349182 -3.07030248642
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.702935 0.014649 -0.711103 }
+        <Binormal> { 0.063224 -0.959265 0.042737 }
+      }
+      <Normal> { 0.490341 0.071017 0.868618 }
+    }
+    <Vertex> 2214 {
+      -6.39095926285 -39.6231803894 -3.12419271469
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.397358 -0.891170 -0.218912 }
+        <Binormal> { -0.768509 -0.433526 0.369885 }
+      }
+      <Normal> { 0.308969 0.237922 0.920804 }
+    }
+    <Vertex> 2215 {
+      -7.76692771912 -40.6621894836 -1.69989109039
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.577612 0.463990 -0.671624 }
+        <Binormal> { 0.633425 -0.771084 0.012058 }
+      }
+      <Normal> { 0.548906 0.461806 0.696707 }
+    }
+    <Vertex> 2216 {
+      1.18784761429 -43.1018409729 -2.46462607384
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { -0.241159 -0.964429 0.108251 }
+        <Binormal> { -0.587525 0.056352 -0.806821 }
+      }
+      <Normal> { -0.778008 0.234230 0.582904 }
+    }
+    <Vertex> 2217 {
+      0.832987964153 -46.1624603271 -2.2427418232
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { -0.132384 -0.990765 0.029306 }
+        <Binormal> { -0.407050 0.027396 -0.912568 }
+      }
+      <Normal> { -0.899686 0.160070 0.406110 }
+    }
+    <Vertex> 2218 {
+      1.39152395725 -46.1994247437 -0.046333078295
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { -0.054194 -0.717593 0.694351 }
+        <Binormal> { -0.652886 -0.500478 -0.568188 }
+      }
+      <Normal> { -0.756310 0.469893 0.455153 }
+    }
+    <Vertex> 2219 {
+      2.08877849579 -43.1081047058 -1.0628644228
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { -0.232308 -0.917798 0.321994 }
+        <Binormal> { -0.758718 -0.035237 -0.647829 }
+      }
+      <Normal> { -0.619373 0.341655 0.706809 }
+    }
+    <Vertex> 2220 {
+      1.18784761429 -43.1018409729 -2.46462607384
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { -0.241159 -0.964429 0.108251 }
+        <Binormal> { -0.587525 0.056352 -0.806821 }
+      }
+      <Normal> { -0.778008 0.234230 0.582904 }
+    }
+    <Vertex> 2221 {
+      2.08877849579 -43.1081047058 -1.0628644228
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { -0.232308 -0.917798 0.321994 }
+        <Binormal> { -0.758718 -0.035237 -0.647829 }
+      }
+      <Normal> { -0.619373 0.341655 0.706809 }
+    }
+    <Vertex> 2222 {
+      2.79635214806 -41.291103363 -1.51639676094
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.499899 -0.741973 0.446741 }
+        <Binormal> { -0.736217 -0.578547 -0.137064 }
+      }
+      <Normal> { -0.521714 0.500168 0.691092 }
+    }
+    <Vertex> 2223 {
+      2.15434503555 -40.6415138245 -2.61254906654
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { -0.388813 -0.920766 0.031860 }
+        <Binormal> { -0.630079 0.242128 -0.691760 }
+      }
+      <Normal> { -0.529527 0.525163 0.666128 }
+    }
+    <Vertex> 2224 {
+      1.18784761429 -43.1018409729 -2.46462607384
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { -0.241159 -0.964429 0.108251 }
+        <Binormal> { -0.587525 0.056352 -0.806821 }
+      }
+      <Normal> { -0.778008 0.234230 0.582904 }
+    }
+    <Vertex> 2225 {
+      2.15434503555 -40.6415138245 -2.61254906654
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { -0.388813 -0.920766 0.031860 }
+        <Binormal> { -0.630079 0.242128 -0.691760 }
+      }
+      <Normal> { -0.529527 0.525163 0.666128 }
+    }
+    <Vertex> 2226 {
+      0.838361620903 -39.579460144 -3.89968729019
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.611686 -0.790891 0.018203 }
+        <Binormal> { -0.759855 -0.587773 -0.003929 }
+      }
+      <Normal> { -0.183599 0.230964 0.955443 }
+    }
+    <Vertex> 2227 {
+      0.0151931177825 -43.0113105774 -3.68029117584
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { -0.211900 -0.976593 -0.036948 }
+        <Binormal> { -0.886726 0.207926 -0.410345 }
+      }
+      <Normal> { -0.398785 0.098605 0.911710 }
+    }
+    <Vertex> 2228 {
+      1.18784761429 -43.1018409729 -2.46462607384
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { -0.241159 -0.964429 0.108251 }
+        <Binormal> { -0.587525 0.056352 -0.806821 }
+      }
+      <Normal> { -0.778008 0.234230 0.582904 }
+    }
+    <Vertex> 2229 {
+      0.0151931177825 -43.0113105774 -3.68029117584
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { -0.211900 -0.976593 -0.036948 }
+        <Binormal> { -0.886726 0.207926 -0.410345 }
+      }
+      <Normal> { -0.398785 0.098605 0.911710 }
+    }
+    <Vertex> 2230 {
+      -0.0735220164061 -46.1398277283 -3.62481999397
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.556378 -0.830355 0.030891 }
+        <Binormal> { -0.721167 -0.497545 -0.385134 }
+      }
+      <Normal> { -0.496414 0.048647 0.866695 }
+    }
+    <Vertex> 2231 {
+      0.832987964153 -46.1624603271 -2.2427418232
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { -0.132384 -0.990765 0.029306 }
+        <Binormal> { -0.407050 0.027396 -0.912568 }
+      }
+      <Normal> { -0.899686 0.160070 0.406110 }
+    }
+    <Vertex> 2232 {
+      -9.93704986572 -40.0881309509 -1.06813716888
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.296347 0.554005 -0.777983 }
+        <Binormal> { 0.927603 -0.360320 0.096754 }
+      }
+      <Normal> { 0.221625 0.740806 0.634053 }
+    }
+    <Vertex> 2233 {
+      -13.0433340073 -40.3122062683 -0.294429689646
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.119117 0.549079 -0.827238 }
+        <Binormal> { 0.990493 -0.123120 0.060904 }
+      }
+      <Normal> { 0.067812 0.823878 0.562670 }
+    }
+    <Vertex> 2234 {
+      -13.2005634308 -41.2014007568 1.03015196323
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.869214 0.230702 -0.437315 }
+        <Binormal> { 0.441785 -0.751816 0.481483 }
+      }
+      <Normal> { 0.141362 0.591449 0.793817 }
+    }
+    <Vertex> 2235 {
+      -10.2645511627 -40.9845962524 0.184837639332
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.227557 -0.933107 -0.278440 }
+        <Binormal> { -0.580704 -0.263567 0.408679 }
+      }
+      <Normal> { 0.306162 0.540513 0.783624 }
+    }
+    <Vertex> 2236 {
+      -9.93704986572 -40.0881309509 -1.06813716888
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.296347 0.554005 -0.777983 }
+        <Binormal> { 0.927603 -0.360320 0.096754 }
+      }
+      <Normal> { 0.221625 0.740806 0.634053 }
+    }
+    <Vertex> 2237 {
+      -10.2645511627 -40.9845962524 0.184837639332
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.227557 -0.933107 -0.278440 }
+        <Binormal> { -0.580704 -0.263567 0.408679 }
+      }
+      <Normal> { 0.306162 0.540513 0.783624 }
+    }
+    <Vertex> 2238 {
+      -8.6047372818 -41.4014854431 -0.550100982189
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.372113 0.522340 -0.767263 }
+        <Binormal> { 0.706511 -0.683602 -0.122735 }
+      }
+      <Normal> { 0.538133 0.425550 0.727500 }
+    }
+    <Vertex> 2239 {
+      -7.76692771912 -40.6621894836 -1.69989109039
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.577612 0.463990 -0.671624 }
+        <Binormal> { 0.633425 -0.771084 0.012058 }
+      }
+      <Normal> { 0.548906 0.461806 0.696707 }
+    }
+    <Vertex> 2240 {
+      -9.93704986572 -40.0881309509 -1.06813716888
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.296347 0.554005 -0.777983 }
+        <Binormal> { 0.927603 -0.360320 0.096754 }
+      }
+      <Normal> { 0.221625 0.740806 0.634053 }
+    }
+    <Vertex> 2241 {
+      -7.76692771912 -40.6621894836 -1.69989109039
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.577612 0.463990 -0.671624 }
+        <Binormal> { 0.633425 -0.771084 0.012058 }
+      }
+      <Normal> { 0.548906 0.461806 0.696707 }
+    }
+    <Vertex> 2242 {
+      -6.39095926285 -39.6231803894 -3.12419271469
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.453314 0.536931 -0.711485 }
+        <Binormal> { 0.663687 -0.637240 -0.058042 }
+      }
+      <Normal> { 0.308969 0.237922 0.920804 }
+    }
+    <Vertex> 2243 {
+      -9.55143642426 -39.0406188965 -2.40867447853
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.137323 -0.979034 -0.150450 }
+        <Binormal> { -0.730423 -0.136618 0.222330 }
+      }
+      <Normal> { 0.151555 0.538530 0.828822 }
+    }
+    <Vertex> 2244 {
+      -9.93704986572 -40.0881309509 -1.06813716888
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.296347 0.554005 -0.777983 }
+        <Binormal> { 0.927603 -0.360320 0.096754 }
+      }
+      <Normal> { 0.221625 0.740806 0.634053 }
+    }
+    <Vertex> 2245 {
+      -9.55143642426 -39.0406188965 -2.40867447853
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.137323 -0.979034 -0.150450 }
+        <Binormal> { -0.730423 -0.136618 0.222330 }
+      }
+      <Normal> { 0.151555 0.538530 0.828822 }
+    }
+    <Vertex> 2246 {
+      -12.7850561142 -39.2860908508 -1.85544037819
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.177673 0.572190 -0.800644 }
+        <Binormal> { 0.948376 -0.199019 0.068226 }
+      }
+      <Normal> { 0.078158 0.635701 0.767937 }
+    }
+    <Vertex> 2247 {
+      -13.0433340073 -40.3122062683 -0.294429689646
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.119117 0.549079 -0.827238 }
+        <Binormal> { 0.990493 -0.123120 0.060904 }
+      }
+      <Normal> { 0.067812 0.823878 0.562670 }
+    }
+    <Vertex> 2248 {
+      -16.6150417328 -40.3496704102 0.1178323403
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.985369 0.131749 0.108126 }
+        <Binormal> { -0.015713 0.561451 -0.827311 }
+      }
+      <Normal> { 0.176672 0.815973 0.550401 }
+    }
+    <Vertex> 2249 {
+      -19.5969200134 -39.3665122986 0.229745984077
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.949108 0.312931 0.035621 }
+        <Binormal> { 0.169103 0.596498 -0.734556 }
+      }
+      <Normal> { 0.512680 0.604907 0.609241 }
+    }
+    <Vertex> 2250 {
+      -20.4595336914 -40.2450904846 1.96089971066
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.554982 0.830930 0.039371 }
+        <Binormal> { 0.728082 -0.484297 -0.042065 }
+      }
+      <Normal> { 0.284097 0.349559 0.892788 }
+    }
+    <Vertex> 2251 {
+      -16.5711364746 -41.2178192139 1.54346323013
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 0.000000 1.000000 }
+        <Binormal> { -0.571886 0.154454 -0.000000 }
+      }
+      <Normal> { 0.154454 0.571886 0.805628 }
+    }
+    <Vertex> 2252 {
+      -16.6150417328 -40.3496704102 0.1178323403
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.985369 0.131749 0.108126 }
+        <Binormal> { -0.015713 0.561451 -0.827311 }
+      }
+      <Normal> { 0.176672 0.815973 0.550401 }
+    }
+    <Vertex> 2253 {
+      -16.5711364746 -41.2178192139 1.54346323013
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 0.000000 1.000000 }
+        <Binormal> { -0.571886 0.154454 -0.000000 }
+      }
+      <Normal> { 0.154454 0.571886 0.805628 }
+    }
+    <Vertex> 2254 {
+      -13.2005634308 -41.2014007568 1.03015196323
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.991200 -0.007693 0.132151 }
+        <Binormal> { -0.084267 0.805512 -0.585156 }
+      }
+      <Normal> { 0.141362 0.591449 0.793817 }
+    }
+    <Vertex> 2255 {
+      -13.0433340073 -40.3122062683 -0.294429689646
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.993351 -0.010419 0.114657 }
+        <Binormal> { -0.100326 0.566703 -0.817693 }
+      }
+      <Normal> { 0.067812 0.823878 0.562670 }
+    }
+    <Vertex> 2256 {
+      -16.6150417328 -40.3496704102 0.1178323403
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.985369 0.131749 0.108126 }
+        <Binormal> { -0.015713 0.561451 -0.827311 }
+      }
+      <Normal> { 0.176672 0.815973 0.550401 }
+    }
+    <Vertex> 2257 {
+      -13.0433340073 -40.3122062683 -0.294429689646
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.993351 -0.010419 0.114657 }
+        <Binormal> { -0.100326 0.566703 -0.817693 }
+      }
+      <Normal> { 0.067812 0.823878 0.562670 }
+    }
+    <Vertex> 2258 {
+      -12.7850561142 -39.2860908508 -1.85544037819
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.744128 -0.582781 0.326557 }
+        <Binormal> { -0.655132 0.596967 -0.427494 }
+      }
+      <Normal> { 0.078158 0.635701 0.767937 }
+    }
+    <Vertex> 2259 {
+      -16.4855422974 -39.3586044312 -1.47942864895
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.210944 0.612323 0.761925 }
+    }
+    <Vertex> 2260 {
+      -16.6150417328 -40.3496704102 0.1178323403
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.985369 0.131749 0.108126 }
+        <Binormal> { -0.015713 0.561451 -0.827311 }
+      }
+      <Normal> { 0.176672 0.815973 0.550401 }
+    }
+    <Vertex> 2261 {
+      -16.4855422974 -39.3586044312 -1.47942864895
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.210944 0.612323 0.761925 }
+    }
+    <Vertex> 2262 {
+      -18.7281913757 -38.6161117554 -0.947580099106
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.943111 0.311508 0.116209 }
+        <Binormal> { 0.168516 0.742299 -0.622178 }
+      }
+      <Normal> { 0.452528 0.510239 0.731315 }
+    }
+    <Vertex> 2263 {
+      -19.5969200134 -39.3665122986 0.229745984077
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.949108 0.312931 0.035621 }
+        <Binormal> { 0.169103 0.596498 -0.734556 }
+      }
+      <Normal> { 0.512680 0.604907 0.609241 }
+    }
+    <Vertex> 2264 {
+      -20.9337120056 -36.5287399292 0.102405980229
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.229817 0.970914 -0.067162 }
+        <Binormal> { 0.654299 0.103062 -0.748994 }
+      }
+      <Normal> { 0.716849 0.230598 0.657949 }
+    }
+    <Vertex> 2265 {
+      -21.1908378601 -32.8644752502 -0.0210767760873
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.069960 0.996984 -0.033598 }
+        <Binormal> { 0.681419 0.023300 -0.727497 }
+      }
+      <Normal> { 0.729850 -0.002167 0.683554 }
+    }
+    <Vertex> 2266 {
+      -22.5711708069 -32.8881988525 1.33509898186
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.531376 0.826310 -0.186688 }
+        <Binormal> { 0.713170 -0.553003 -0.417756 }
+      }
+      <Normal> { 0.504135 -0.002228 0.863582 }
+    }
+    <Vertex> 2267 {
+      -22.1854839325 -36.5445556641 1.52032351494
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.274971 0.957993 -0.081490 }
+        <Binormal> { 0.834378 0.195752 -0.514181 }
+      }
+      <Normal> { 0.485763 0.177557 0.855861 }
+    }
+    <Vertex> 2268 {
+      -20.9337120056 -36.5287399292 0.102405980229
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.229817 0.970914 -0.067162 }
+        <Binormal> { 0.654299 0.103062 -0.748994 }
+      }
+      <Normal> { 0.716849 0.230598 0.657949 }
+    }
+    <Vertex> 2269 {
+      -22.1854839325 -36.5445556641 1.52032351494
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.274971 0.957993 -0.081490 }
+        <Binormal> { 0.834378 0.195752 -0.514181 }
+      }
+      <Normal> { 0.485763 0.177557 0.855861 }
+    }
+    <Vertex> 2270 {
+      -20.4595336914 -40.2450904846 1.96089971066
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.615972 0.770979 -0.161771 }
+        <Binormal> { 0.744870 -0.595891 -0.003714 }
+      }
+      <Normal> { 0.284097 0.349559 0.892788 }
+    }
+    <Vertex> 2271 {
+      -19.5969200134 -39.3665122986 0.229745984077
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.425804 0.903906 -0.040561 }
+        <Binormal> { 0.575232 0.238622 -0.720987 }
+      }
+      <Normal> { 0.512680 0.604907 0.609241 }
+    }
+    <Vertex> 2272 {
+      -20.9337120056 -36.5287399292 0.102405980229
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.229817 0.970914 -0.067162 }
+        <Binormal> { 0.654299 0.103062 -0.748994 }
+      }
+      <Normal> { 0.716849 0.230598 0.657949 }
+    }
+    <Vertex> 2273 {
+      -19.5969200134 -39.3665122986 0.229745984077
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.425804 0.903906 -0.040561 }
+        <Binormal> { 0.575232 0.238622 -0.720987 }
+      }
+      <Normal> { 0.512680 0.604907 0.609241 }
+    }
+    <Vertex> 2274 {
+      -18.7281913757 -38.6161117554 -0.947580099106
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.552249 0.729190 -0.404107 }
+        <Binormal> { 0.739459 -0.586738 -0.048200 }
+      }
+      <Normal> { 0.452528 0.510239 0.731315 }
+    }
+    <Vertex> 2275 {
+      -19.5537528992 -36.5050163269 -1.48328518867
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.150955 0.981760 -0.115583 }
+        <Binormal> { 0.820286 0.059350 -0.567201 }
+      }
+      <Normal> { 0.543474 0.222846 0.809290 }
+    }
+    <Vertex> 2276 {
+      -20.9337120056 -36.5287399292 0.102405980229
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.229817 0.970914 -0.067162 }
+        <Binormal> { 0.654299 0.103062 -0.748994 }
+      }
+      <Normal> { 0.716849 0.230598 0.657949 }
+    }
+    <Vertex> 2277 {
+      -19.5537528992 -36.5050163269 -1.48328518867
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.150955 0.981760 -0.115583 }
+        <Binormal> { 0.820286 0.059350 -0.567201 }
+      }
+      <Normal> { 0.543474 0.222846 0.809290 }
+    }
+    <Vertex> 2278 {
+      -19.6180343628 -32.8288879395 -1.62891376019
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.043715 0.998373 -0.036602 }
+        <Binormal> { 0.819257 0.014964 -0.570310 }
+      }
+      <Normal> { 0.571337 -0.002228 0.820673 }
+    }
+    <Vertex> 2279 {
+      -21.1908378601 -32.8644752502 -0.0210767760873
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.069960 0.996984 -0.033598 }
+        <Binormal> { 0.681419 0.023300 -0.727497 }
+      }
+      <Normal> { 0.729850 -0.002167 0.683554 }
+    }
+    <Vertex> 2280 {
+      7.49506568909 -35.9536132813 -2.48839974403
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { -0.161056 -0.986746 -0.019818 }
+        <Binormal> { -0.621102 0.116939 -0.774918 }
+      }
+      <Normal> { -0.766228 0.117008 0.631794 }
+    }
+    <Vertex> 2281 {
+      6.50941085815 -38.733745575 -2.32264661789
+      <UV>  {
+        0.053131 0.854502
+        <Tangent> { -0.403697 -0.913239 -0.054985 }
+        <Binormal> { -0.520753 0.275696 -0.755669 }
+      }
+      <Normal> { -0.589862 0.537492 0.602588 }
+    }
+    <Vertex> 2282 {
+      7.19533348083 -39.542350769 -0.598637402058
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { -0.388028 -0.921622 -0.006897 }
+        <Binormal> { -0.807805 0.343446 -0.445964 }
+      }
+      <Normal> { -0.345531 0.328623 0.878964 }
+    }
+    <Vertex> 2283 {
+      8.40805339813 -36.0186653137 -1.10680878162
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { -0.188585 -0.981852 0.020079 }
+        <Binormal> { -0.801989 0.142175 -0.580135 }
+      }
+      <Normal> { -0.566637 0.126102 0.814234 }
+    }
+    <Vertex> 2284 {
+      7.49506568909 -35.9536132813 -2.48839974403
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { -0.161056 -0.986746 -0.019818 }
+        <Binormal> { -0.621102 0.116939 -0.774918 }
+      }
+      <Normal> { -0.766228 0.117008 0.631794 }
+    }
+    <Vertex> 2285 {
+      8.40805339813 -36.0186653137 -1.10680878162
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { -0.188585 -0.981852 0.020079 }
+        <Binormal> { -0.801989 0.142175 -0.580135 }
+      }
+      <Normal> { -0.566637 0.126102 0.814234 }
+    }
+    <Vertex> 2286 {
+      8.12346458435 -32.4771995544 -1.38274729252
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.773266 -0.617720 0.143111 }
+        <Binormal> { -0.515547 -0.743863 -0.425153 }
+      }
+      <Normal> { -0.376141 -0.249336 0.892361 }
+    }
+    <Vertex> 2287 {
+      6.95582103729 -33.2101707458 -2.76208996773
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.584043 -0.811324 0.025456 }
+        <Binormal> { -0.564522 -0.428500 -0.705036 }
+      }
+      <Normal> { -0.568896 -0.416883 0.708884 }
+    }
+    <Vertex> 2288 {
+      7.49506568909 -35.9536132813 -2.48839974403
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { -0.161056 -0.986746 -0.019818 }
+        <Binormal> { -0.621102 0.116939 -0.774918 }
+      }
+      <Normal> { -0.766228 0.117008 0.631794 }
+    }
+    <Vertex> 2289 {
+      6.95582103729 -33.2101707458 -2.76208996773
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.584043 -0.811324 0.025456 }
+        <Binormal> { -0.564522 -0.428500 -0.705036 }
+      }
+      <Normal> { -0.568896 -0.416883 0.708884 }
+    }
+    <Vertex> 2290 {
+      5.99283361435 -33.8183059692 -3.57425165176
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.573852 -0.818751 -0.018446 }
+        <Binormal> { -0.701049 -0.479469 -0.527664 }
+      }
+      <Normal> { -0.430403 -0.305429 0.849361 }
+    }
+    <Vertex> 2291 {
+      6.4187669754 -35.8560295105 -3.79008579254
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { -0.166949 -0.981115 -0.097681 }
+        <Binormal> { -0.850433 0.192962 -0.484636 }
+      }
+      <Normal> { -0.482986 0.064516 0.873226 }
+    }
+    <Vertex> 2292 {
+      7.49506568909 -35.9536132813 -2.48839974403
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { -0.161056 -0.986746 -0.019818 }
+        <Binormal> { -0.621102 0.116939 -0.774918 }
+      }
+      <Normal> { -0.766228 0.117008 0.631794 }
+    }
+    <Vertex> 2293 {
+      6.4187669754 -35.8560295105 -3.79008579254
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { -0.166949 -0.981115 -0.097681 }
+        <Binormal> { -0.850433 0.192962 -0.484636 }
+      }
+      <Normal> { -0.482986 0.064516 0.873226 }
+    }
+    <Vertex> 2294 {
+      5.79442977905 -37.9606590271 -3.37894368172
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { -0.396896 -0.917844 0.005985 }
+        <Binormal> { -0.729886 0.311836 -0.580238 }
+      }
+      <Normal> { -0.458266 0.402173 0.792596 }
+    }
+    <Vertex> 2295 {
+      6.50941085815 -38.733745575 -2.32264661789
+      <UV>  {
+        0.053131 0.854502
+        <Tangent> { -0.403697 -0.913239 -0.054985 }
+        <Binormal> { -0.520753 0.275696 -0.755669 }
+      }
+      <Normal> { -0.589862 0.537492 0.602588 }
+    }
+    <Vertex> 2296 {
+      4.32868528366 -39.7409286499 -2.46462607384
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { -0.927389 -0.350449 -0.130903 }
+        <Binormal> { -0.119940 0.609963 -0.783256 }
+      }
+      <Normal> { -0.355785 0.710135 0.607501 }
+    }
+    <Vertex> 2297 {
+      2.15434503555 -40.6415138245 -2.61254906654
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { -0.932475 -0.347762 -0.097741 }
+        <Binormal> { -0.180324 0.672903 -0.673850 }
+      }
+      <Normal> { -0.529527 0.525163 0.666128 }
+    }
+    <Vertex> 2298 {
+      2.79635214806 -41.291103363 -1.51639676094
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { -0.909369 -0.392161 -0.138772 }
+        <Binormal> { -0.201610 0.700857 -0.659433 }
+      }
+      <Normal> { -0.521714 0.500168 0.691092 }
+    }
+    <Vertex> 2299 {
+      4.4444065094 -40.5874176025 -1.0628644228
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.291820 0.857986 0.422730 }
+        <Binormal> { 0.429077 -0.368641 0.452004 }
+      }
+      <Normal> { -0.342387 0.542253 0.767266 }
+    }
+    <Vertex> 2300 {
+      4.32868528366 -39.7409286499 -2.46462607384
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { -0.927389 -0.350449 -0.130903 }
+        <Binormal> { -0.119940 0.609963 -0.783256 }
+      }
+      <Normal> { -0.355785 0.710135 0.607501 }
+    }
+    <Vertex> 2301 {
+      4.4444065094 -40.5874176025 -1.0628644228
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.291820 0.857986 0.422730 }
+        <Binormal> { 0.429077 -0.368641 0.452004 }
+      }
+      <Normal> { -0.342387 0.542253 0.767266 }
+    }
+    <Vertex> 2302 {
+      7.19533348083 -39.542350769 -0.598637402058
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { -0.917153 -0.383834 -0.107252 }
+        <Binormal> { -0.302130 0.843202 -0.434024 }
+      }
+      <Normal> { -0.345531 0.328623 0.878964 }
+    }
+    <Vertex> 2303 {
+      6.50941085815 -38.733745575 -2.32264661789
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { -0.913422 -0.397079 -0.089382 }
+        <Binormal> { -0.191233 0.603140 -0.725178 }
+      }
+      <Normal> { -0.589862 0.537492 0.602588 }
+    }
+    <Vertex> 2304 {
+      4.32868528366 -39.7409286499 -2.46462607384
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { -0.927389 -0.350449 -0.130903 }
+        <Binormal> { -0.119940 0.609963 -0.783256 }
+      }
+      <Normal> { -0.355785 0.710135 0.607501 }
+    }
+    <Vertex> 2305 {
+      6.50941085815 -38.733745575 -2.32264661789
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { -0.913422 -0.397079 -0.089382 }
+        <Binormal> { -0.191233 0.603140 -0.725178 }
+      }
+      <Normal> { -0.589862 0.537492 0.602588 }
+    }
+    <Vertex> 2306 {
+      5.79442977905 -37.9606590271 -3.37894368172
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { -0.918902 -0.348062 -0.185665 }
+        <Binormal> { -0.201204 0.813402 -0.529063 }
+      }
+      <Normal> { -0.458266 0.402173 0.792596 }
+    }
+    <Vertex> 2307 {
+      4.05675315857 -38.7012138367 -3.7841424942
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { -0.088619 -0.898464 -0.430011 }
+        <Binormal> { -0.602779 0.177193 -0.246003 }
+      }
+      <Normal> { -0.231819 0.425672 0.874630 }
+    }
+    <Vertex> 2308 {
+      4.32868528366 -39.7409286499 -2.46462607384
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { -0.927389 -0.350449 -0.130903 }
+        <Binormal> { -0.119940 0.609963 -0.783256 }
+      }
+      <Normal> { -0.355785 0.710135 0.607501 }
+    }
+    <Vertex> 2309 {
+      4.05675315857 -38.7012138367 -3.7841424942
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { -0.088619 -0.898464 -0.430011 }
+        <Binormal> { -0.602779 0.177193 -0.246003 }
+      }
+      <Normal> { -0.231819 0.425672 0.874630 }
+    }
+    <Vertex> 2310 {
+      0.838361620903 -39.579460144 -3.89968729019
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.516136 -0.794506 -0.319945 }
+        <Binormal> { -0.685209 -0.434396 -0.026662 }
+      }
+      <Normal> { -0.183599 0.230964 0.955443 }
+    }
+    <Vertex> 2311 {
+      2.15434503555 -40.6415138245 -2.61254906654
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { -0.932475 -0.347762 -0.097741 }
+        <Binormal> { -0.180324 0.672903 -0.673850 }
+      }
+      <Normal> { -0.529527 0.525163 0.666128 }
+    }
+    <Vertex> 2312 {
+      -20.9337120056 -29.4018535614 0.102405980229
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.233664 0.969581 0.072893 }
+        <Binormal> { 0.654311 -0.101369 -0.749081 }
+      }
+      <Normal> { 0.714133 -0.242531 0.656606 }
+    }
+    <Vertex> 2313 {
+      -19.6781692505 -26.8878726959 0.228787466884
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.446350 0.893730 0.044929 }
+        <Binormal> { 0.557352 -0.241665 -0.729835 }
+      }
+      <Normal> { 0.501511 -0.630940 0.591906 }
+    }
+    <Vertex> 2314 {
+      -20.6625614166 -26.1275749207 1.95997941494
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.848636 0.527376 -0.041130 }
+        <Binormal> { 0.453714 -0.765653 -0.455845 }
+      }
+      <Normal> { 0.280160 -0.363048 0.888638 }
+    }
+    <Vertex> 2315 {
+      -22.1854820251 -29.4176673889 1.52032351494
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.270625 0.958599 0.088603 }
+        <Binormal> { 0.836755 -0.188799 -0.513124 }
+      }
+      <Normal> { 0.483169 -0.184606 0.855831 }
+    }
+    <Vertex> 2316 {
+      -20.9337120056 -29.4018535614 0.102405980229
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.233664 0.969581 0.072893 }
+        <Binormal> { 0.654311 -0.101369 -0.749081 }
+      }
+      <Normal> { 0.714133 -0.242531 0.656606 }
+    }
+    <Vertex> 2317 {
+      -22.1854820251 -29.4176673889 1.52032351494
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.270625 0.958599 0.088603 }
+        <Binormal> { 0.836755 -0.188799 -0.513124 }
+      }
+      <Normal> { 0.483169 -0.184606 0.855831 }
+    }
+    <Vertex> 2318 {
+      -22.5711708069 -32.8881988525 1.33509898186
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.092230 0.994752 0.044293 }
+        <Binormal> { 0.859149 -0.057318 -0.501695 }
+      }
+      <Normal> { 0.504135 -0.002228 0.863582 }
+    }
+    <Vertex> 2319 {
+      -21.1908378601 -32.8644752502 -0.0210767760873
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.074007 0.996624 0.035541 }
+        <Binormal> { 0.681323 -0.024648 -0.727547 }
+      }
+      <Normal> { 0.729850 -0.002167 0.683554 }
+    }
+    <Vertex> 2320 {
+      -20.9337120056 -29.4018535614 0.102405980229
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.233664 0.969581 0.072893 }
+        <Binormal> { 0.654311 -0.101369 -0.749081 }
+      }
+      <Normal> { 0.714133 -0.242531 0.656606 }
+    }
+    <Vertex> 2321 {
+      -21.1908378601 -32.8644752502 -0.0210767760873
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.074007 0.996624 0.035541 }
+        <Binormal> { 0.681323 -0.024648 -0.727547 }
+      }
+      <Normal> { 0.729850 -0.002167 0.683554 }
+    }
+    <Vertex> 2322 {
+      -19.6180343628 -32.8288879395 -1.62891376019
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.670474 0.703418 -0.235939 }
+        <Binormal> { 0.576751 -0.685041 -0.403383 }
+      }
+      <Normal> { 0.571337 -0.002228 0.820673 }
+    }
+    <Vertex> 2323 {
+      -19.5537528992 -29.3781261444 -1.48328518867
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.157711 0.979441 0.125785 }
+        <Binormal> { 0.818229 -0.058596 -0.569641 }
+      }
+      <Normal> { 0.542619 -0.242073 0.804315 }
+    }
+    <Vertex> 2324 {
+      -20.9337120056 -29.4018535614 0.102405980229
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.233664 0.969581 0.072893 }
+        <Binormal> { 0.654311 -0.101369 -0.749081 }
+      }
+      <Normal> { 0.714133 -0.242531 0.656606 }
+    }
+    <Vertex> 2325 {
+      -19.5537528992 -29.3781261444 -1.48328518867
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.157711 0.979441 0.125785 }
+        <Binormal> { 0.818229 -0.058596 -0.569641 }
+      }
+      <Normal> { 0.542619 -0.242073 0.804315 }
+    }
+    <Vertex> 2326 {
+      -18.7643032074 -27.5269126892 -0.948005974293
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.420290 0.897142 0.135986 }
+        <Binormal> { 0.712386 -0.238629 -0.627456 }
+      }
+      <Normal> { 0.444533 -0.544023 0.711600 }
+    }
+    <Vertex> 2327 {
+      -19.6781692505 -26.8878726959 0.228787466884
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.446350 0.893730 0.044929 }
+        <Binormal> { 0.557352 -0.241665 -0.729835 }
+      }
+      <Normal> { 0.501511 -0.630940 0.591906 }
+    }
+    <Vertex> 2328 {
+      -2.26931095123 -31.9547367096 -2.46921801567
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.965771 -0.218618 -0.139613 }
+        <Binormal> { -0.249492 -0.635653 -0.730498 }
+      }
+      <Normal> { -0.075442 -0.739311 0.669088 }
+    }
+    <Vertex> 2329 {
+      1.19339179993 -32.236530304 -2.89319705963
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.984989 -0.096704 -0.142986 }
+        <Binormal> { -0.172373 -0.594159 -0.785594 }
+      }
+      <Normal> { 0.002838 -0.797845 0.602802 }
+    }
+    <Vertex> 2330 {
+      1.48542678356 -31.5088615417 -1.76593053341
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.987152 -0.099441 -0.125070 }
+        <Binormal> { -0.155373 -0.779353 -0.606681 }
+      }
+      <Normal> { 0.019135 -0.616504 0.787072 }
+    }
+    <Vertex> 2331 {
+      -1.81428253651 -31.0861663818 -1.2857388258
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.975508 -0.204120 -0.081968 }
+        <Binormal> { -0.213884 -0.793341 -0.569839 }
+      }
+      <Normal> { -0.040651 -0.575640 0.816675 }
+    }
+    <Vertex> 2332 {
+      -2.26931095123 -31.9547367096 -2.46921801567
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.965771 -0.218618 -0.139613 }
+        <Binormal> { -0.249492 -0.635653 -0.730498 }
+      }
+      <Normal> { -0.075442 -0.739311 0.669088 }
+    }
+    <Vertex> 2333 {
+      -1.81428253651 -31.0861663818 -1.2857388258
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.975508 -0.204120 -0.081968 }
+        <Binormal> { -0.213884 -0.793341 -0.569839 }
+      }
+      <Normal> { -0.040651 -0.575640 0.816675 }
+    }
+    <Vertex> 2334 {
+      -3.60399985313 -30.2704372406 -1.11836576462
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.913480 -0.388814 -0.119907 }
+        <Binormal> { -0.383726 -0.738829 -0.527568 }
+      }
+      <Normal> { -0.270821 -0.462264 0.844356 }
+    }
+    <Vertex> 2335 {
+      -4.77597570419 -30.8909339905 -1.94618296623
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.888853 -0.406080 -0.212225 }
+        <Binormal> { -0.422159 -0.615198 -0.590966 }
+      }
+      <Normal> { -0.381939 -0.490371 0.783319 }
+    }
+    <Vertex> 2336 {
+      -2.26931095123 -31.9547367096 -2.46921801567
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.965771 -0.218618 -0.139613 }
+        <Binormal> { -0.249492 -0.635653 -0.730498 }
+      }
+      <Normal> { -0.075442 -0.739311 0.669088 }
+    }
+    <Vertex> 2337 {
+      -4.77597570419 -30.8909339905 -1.94618296623
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.888853 -0.406080 -0.212225 }
+        <Binormal> { -0.422159 -0.615198 -0.590966 }
+      }
+      <Normal> { -0.381939 -0.490371 0.783319 }
+    }
+    <Vertex> 2338 {
+      -6.17821788788 -32.10679245 -3.29684877396
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.921122 -0.353567 -0.162865 }
+        <Binormal> { -0.374021 -0.845355 -0.280164 }
+      }
+      <Normal> { -0.199744 -0.227485 0.953063 }
+    }
+    <Vertex> 2339 {
+      -2.6505408287 -32.957950592 -3.47373652458
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.972124 -0.192010 -0.134565 }
+        <Binormal> { -0.231145 -0.879978 -0.414205 }
+      }
+      <Normal> { 0.015229 -0.429090 0.903104 }
+    }
+    <Vertex> 2340 {
+      -2.26931095123 -31.9547367096 -2.46921801567
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.965771 -0.218618 -0.139613 }
+        <Binormal> { -0.249492 -0.635653 -0.730498 }
+      }
+      <Normal> { -0.075442 -0.739311 0.669088 }
+    }
+    <Vertex> 2341 {
+      -2.6505408287 -32.957950592 -3.47373652458
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.972124 -0.192010 -0.134565 }
+        <Binormal> { -0.231145 -0.879978 -0.414205 }
+      }
+      <Normal> { 0.015229 -0.429090 0.903104 }
+    }
+    <Vertex> 2342 {
+      0.830666780472 -33.0284042358 -3.81339669228
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.984551 -0.090952 -0.149626 }
+        <Binormal> { -0.150343 -0.875242 -0.457240 }
+      }
+      <Normal> { 0.042787 -0.468368 0.882473 }
+    }
+    <Vertex> 2343 {
+      1.19339179993 -32.236530304 -2.89319705963
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.984989 -0.096704 -0.142986 }
+        <Binormal> { -0.172373 -0.594159 -0.785594 }
+      }
+      <Normal> { 0.002838 -0.797845 0.602802 }
+    }
+    <Vertex> 2344 {
+      -5.27632188797 -28.4683742523 -1.59829080105
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.762440 -0.167168 -0.625092 }
+        <Binormal> { -0.218545 0.975698 0.005635 }
+      }
+      <Normal> { -0.599200 -0.138768 0.788446 }
+    }
+    <Vertex> 2345 {
+      -4.77597570419 -30.8909339905 -1.94618296623
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.670392 -0.478234 -0.567333 }
+        <Binormal> { -0.652813 0.741817 0.146085 }
+      }
+      <Normal> { -0.381939 -0.490371 0.783319 }
+    }
+    <Vertex> 2346 {
+      -3.60399985313 -30.2704372406 -1.11836576462
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.781395 -0.203055 -0.590076 }
+        <Binormal> { -0.444222 0.819581 0.306219 }
+      }
+      <Normal> { -0.270821 -0.462264 0.844356 }
+    }
+    <Vertex> 2347 {
+      -3.77160167694 -28.3932991028 -0.404782384634
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.782872 -0.039060 -0.620955 }
+        <Binormal> { -0.161171 0.926846 0.144896 }
+      }
+      <Normal> { -0.329936 -0.201544 0.922208 }
+    }
+    <Vertex> 2348 {
+      -5.27632188797 -28.4683742523 -1.59829080105
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.762440 -0.167168 -0.625092 }
+        <Binormal> { -0.218545 0.975698 0.005635 }
+      }
+      <Normal> { -0.599200 -0.138768 0.788446 }
+    }
+    <Vertex> 2349 {
+      -3.77160167694 -28.3932991028 -0.404782384634
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.782872 -0.039060 -0.620955 }
+        <Binormal> { -0.161171 0.926846 0.144896 }
+      }
+      <Normal> { -0.329936 -0.201544 0.922208 }
+    }
+    <Vertex> 2350 {
+      -3.54617714882 -25.4372901917 -0.105620525777
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.774085 -0.023751 -0.632636 }
+        <Binormal> { -0.067714 0.952432 0.047097 }
+      }
+      <Normal> { -0.374371 -0.072329 0.924436 }
+    }
+    <Vertex> 2351 {
+      -5.100086689 -25.4560604095 -1.41183853149
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.785902 -0.033997 -0.617416 }
+        <Binormal> { -0.071406 0.996701 0.036011 }
+      }
+      <Normal> { -0.623371 -0.072787 0.778497 }
+    }
+    <Vertex> 2352 {
+      -5.27632188797 -28.4683742523 -1.59829080105
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.762440 -0.167168 -0.625092 }
+        <Binormal> { -0.218545 0.975698 0.005635 }
+      }
+      <Normal> { -0.599200 -0.138768 0.788446 }
+    }
+    <Vertex> 2353 {
+      -5.100086689 -25.4560604095 -1.41183853149
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.785902 -0.033997 -0.617416 }
+        <Binormal> { -0.071406 0.996701 0.036011 }
+      }
+      <Normal> { -0.623371 -0.072787 0.778497 }
+    }
+    <Vertex> 2354 {
+      -6.82100057602 -25.5789527893 -2.67837190628
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.779647 -0.089108 -0.619847 }
+        <Binormal> { -0.150284 0.938093 0.054169 }
+      }
+      <Normal> { -0.337077 -0.108005 0.935240 }
+    }
+    <Vertex> 2355 {
+      -6.86505794525 -28.7237529755 -2.9630484581
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.752975 -0.121036 -0.646822 }
+        <Binormal> { -0.201107 0.935573 0.059043 }
+      }
+      <Normal> { -0.384014 -0.140141 0.912625 }
+    }
+    <Vertex> 2356 {
+      -5.27632188797 -28.4683742523 -1.59829080105
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.762440 -0.167168 -0.625092 }
+        <Binormal> { -0.218545 0.975698 0.005635 }
+      }
+      <Normal> { -0.599200 -0.138768 0.788446 }
+    }
+    <Vertex> 2357 {
+      -6.86505794525 -28.7237529755 -2.9630484581
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.752975 -0.121036 -0.646822 }
+        <Binormal> { -0.201107 0.935573 0.059043 }
+      }
+      <Normal> { -0.384014 -0.140141 0.912625 }
+    }
+    <Vertex> 2358 {
+      -6.17821788788 -32.10679245 -3.29684877396
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.247707 -0.892410 -0.377156 }
+        <Binormal> { -0.936320 0.311414 -0.121904 }
+      }
+      <Normal> { -0.199744 -0.227485 0.953063 }
+    }
+    <Vertex> 2359 {
+      -4.77597570419 -30.8909339905 -1.94618296623
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.670392 -0.478234 -0.567333 }
+        <Binormal> { -0.652813 0.741817 0.146085 }
+      }
+      <Normal> { -0.381939 -0.490371 0.783319 }
+    }
+    <Vertex> 2360 {
+      4.56184911728 -32.313079834 -2.94392180443
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.985819 -0.166137 0.023645 }
+        <Binormal> { -0.086627 -0.624459 -0.775977 }
+      }
+      <Normal> { -0.161565 -0.759911 0.629566 }
+    }
+    <Vertex> 2361 {
+      6.95582103729 -33.2101707458 -2.76208996773
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.584043 -0.811324 0.025456 }
+        <Binormal> { -0.564522 -0.428500 -0.705036 }
+      }
+      <Normal> { -0.568896 -0.416883 0.708884 }
+    }
+    <Vertex> 2362 {
+      8.12346458435 -32.4771995544 -1.38274729252
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.773266 -0.617720 0.143111 }
+        <Binormal> { -0.515547 -0.743863 -0.425153 }
+      }
+      <Normal> { -0.376141 -0.249336 0.892361 }
+    }
+    <Vertex> 2363 {
+      4.85971927643 -31.6236820221 -1.79009187222
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.988350 -0.124693 0.087273 }
+        <Binormal> { -0.049613 -0.805762 -0.589392 }
+      }
+      <Normal> { -0.114963 -0.581835 0.805109 }
+    }
+    <Vertex> 2364 {
+      4.56184911728 -32.313079834 -2.94392180443
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.985819 -0.166137 0.023645 }
+        <Binormal> { -0.086627 -0.624459 -0.775977 }
+      }
+      <Normal> { -0.161565 -0.759911 0.629566 }
+    }
+    <Vertex> 2365 {
+      4.85971927643 -31.6236820221 -1.79009187222
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.988350 -0.124693 0.087273 }
+        <Binormal> { -0.049613 -0.805762 -0.589392 }
+      }
+      <Normal> { -0.114963 -0.581835 0.805109 }
+    }
+    <Vertex> 2366 {
+      1.48542678356 -31.5088615417 -1.76593053341
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.999725 -0.023456 -0.000240 }
+        <Binormal> { -0.018609 -0.786860 -0.615886 }
+      }
+      <Normal> { 0.019135 -0.616504 0.787072 }
+    }
+    <Vertex> 2367 {
+      1.19339179993 -32.236530304 -2.89319705963
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.998885 -0.035059 -0.031612 }
+        <Binormal> { -0.046355 -0.602219 -0.796856 }
+      }
+      <Normal> { 0.002838 -0.797845 0.602802 }
+    }
+    <Vertex> 2368 {
+      4.56184911728 -32.313079834 -2.94392180443
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.985819 -0.166137 0.023645 }
+        <Binormal> { -0.086627 -0.624459 -0.775977 }
+      }
+      <Normal> { -0.161565 -0.759911 0.629566 }
+    }
+    <Vertex> 2369 {
+      1.19339179993 -32.236530304 -2.89319705963
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.998885 -0.035059 -0.031612 }
+        <Binormal> { -0.046355 -0.602219 -0.796856 }
+      }
+      <Normal> { 0.002838 -0.797845 0.602802 }
+    }
+    <Vertex> 2370 {
+      0.830666780472 -33.0284042358 -3.81339669228
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.997442 -0.043868 -0.056429 }
+        <Binormal> { -0.065142 -0.882631 -0.465293 }
+      }
+      <Normal> { 0.042787 -0.468368 0.882473 }
+    }
+    <Vertex> 2371 {
+      4.11504411697 -33.0475387573 -3.90396642685
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.975605 -0.216897 -0.033913 }
+        <Binormal> { -0.207969 -0.864636 -0.452872 }
+      }
+      <Normal> { -0.130863 -0.435102 0.890805 }
+    }
+    <Vertex> 2372 {
+      4.56184911728 -32.313079834 -2.94392180443
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.985819 -0.166137 0.023645 }
+        <Binormal> { -0.086627 -0.624459 -0.775977 }
+      }
+      <Normal> { -0.161565 -0.759911 0.629566 }
+    }
+    <Vertex> 2373 {
+      4.11504411697 -33.0475387573 -3.90396642685
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.975605 -0.216897 -0.033913 }
+        <Binormal> { -0.207969 -0.864636 -0.452872 }
+      }
+      <Normal> { -0.130863 -0.435102 0.890805 }
+    }
+    <Vertex> 2374 {
+      5.99283361435 -33.8183059692 -3.57425165176
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.573852 -0.818751 -0.018446 }
+        <Binormal> { -0.701049 -0.479469 -0.527664 }
+      }
+      <Normal> { -0.430403 -0.305429 0.849361 }
+    }
+    <Vertex> 2375 {
+      6.95582103729 -33.2101707458 -2.76208996773
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.584043 -0.811324 0.025456 }
+        <Binormal> { -0.564522 -0.428500 -0.705036 }
+      }
+      <Normal> { -0.568896 -0.416883 0.708884 }
+    }
+    <Vertex> 2376 {
+      -9.42289924622 -20.0849895477 -0.529452443123
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.035874 -0.557455 -0.829432 }
+        <Binormal> { -0.976267 -0.149287 0.142560 }
+      }
+      <Normal> { 0.205634 -0.778497 0.592975 }
+    }
+    <Vertex> 2377 {
+      -6.94023084641 -20.6167697906 -1.17978286743
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.550317 -0.564107 -0.615577 }
+        <Binormal> { -0.794052 0.574823 0.183110 }
+      }
+      <Normal> { -0.291360 -0.631397 0.718619 }
+    }
+    <Vertex> 2378 {
+      -6.12064647675 -19.6365470886 -0.213918238878
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.355304 -0.643701 -0.677797 }
+        <Binormal> { -0.757789 0.474216 -0.053124 }
+      }
+      <Normal> { -0.197516 -0.208319 0.957884 }
+    }
+    <Vertex> 2379 {
+      -9.31296443939 -19.3812122345 0.277881801128
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.102108 -0.653673 -0.749857 }
+        <Binormal> { -0.805146 -0.117233 0.211832 }
+      }
+      <Normal> { 0.281655 -0.271493 0.920286 }
+    }
+    <Vertex> 2380 {
+      -9.42289924622 -20.0849895477 -0.529452443123
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.035874 -0.557455 -0.829432 }
+        <Binormal> { -0.976267 -0.149287 0.142560 }
+      }
+      <Normal> { 0.205634 -0.778497 0.592975 }
+    }
+    <Vertex> 2381 {
+      -9.31296443939 -19.3812122345 0.277881801128
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.102108 -0.653673 -0.749857 }
+        <Binormal> { -0.805146 -0.117233 0.211832 }
+      }
+      <Normal> { 0.281655 -0.271493 0.920286 }
+    }
+    <Vertex> 2382 {
+      -12.5347423553 -19.998506546 1.79928779602
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.892080 0.325505 -0.313432 }
+        <Binormal> { 0.226079 -0.920421 -0.312414 }
+      }
+      <Normal> { 0.447157 -0.187048 0.874660 }
+    }
+    <Vertex> 2383 {
+      -11.8291101456 -20.9651470184 0.0708224028349
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.389080 -0.419822 -0.819979 }
+        <Binormal> { -0.709280 -0.704361 0.024074 }
+      }
+      <Normal> { 0.592273 -0.577197 0.562120 }
+    }
+    <Vertex> 2384 {
+      -9.42289924622 -20.0849895477 -0.529452443123
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.035874 -0.557455 -0.829432 }
+        <Binormal> { -0.976267 -0.149287 0.142560 }
+      }
+      <Normal> { 0.205634 -0.778497 0.592975 }
+    }
+    <Vertex> 2385 {
+      -11.8291101456 -20.9651470184 0.0708224028349
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.389080 -0.419822 -0.819979 }
+        <Binormal> { -0.709280 -0.704361 0.024074 }
+      }
+      <Normal> { 0.592273 -0.577197 0.562120 }
+    }
+    <Vertex> 2386 {
+      -11.1684131622 -21.4727935791 -1.08022630215
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.841279 -0.507551 -0.186120 }
+        <Binormal> { -0.433206 0.463291 0.694729 }
+      }
+      <Normal> { 0.551683 -0.492965 0.672750 }
+    }
+    <Vertex> 2387 {
+      -9.42289924622 -20.7872695923 -1.78078067303
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 -0.489418 -0.872049 }
+        <Binormal> { -0.889291 -0.188877 0.106003 }
+      }
+      <Normal> { 0.216590 -0.578387 0.786462 }
+    }
+    <Vertex> 2388 {
+      -9.42289924622 -20.0849895477 -0.529452443123
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.035874 -0.557455 -0.829432 }
+        <Binormal> { -0.976267 -0.149287 0.142560 }
+      }
+      <Normal> { 0.205634 -0.778497 0.592975 }
+    }
+    <Vertex> 2389 {
+      -9.42289924622 -20.7872695923 -1.78078067303
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 -0.489418 -0.872049 }
+        <Binormal> { -0.889291 -0.188877 0.106003 }
+      }
+      <Normal> { 0.216590 -0.578387 0.786462 }
+    }
+    <Vertex> 2390 {
+      -7.64340400696 -21.1974620819 -1.91725337505
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.284805 -0.519640 -0.805519 }
+        <Binormal> { -0.865841 0.388213 0.055696 }
+      }
+      <Normal> { -0.195318 -0.551927 0.810663 }
+    }
+    <Vertex> 2391 {
+      -6.94023084641 -20.6167697906 -1.17978286743
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.550317 -0.564107 -0.615577 }
+        <Binormal> { -0.794052 0.574823 0.183110 }
+      }
+      <Normal> { -0.291360 -0.631397 0.718619 }
+    }
+    <Vertex> 2392 {
+      -12.9629573822 -23.1947441101 0.113997928798
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.578175 -0.172608 -0.797446 }
+        <Binormal> { -0.417780 -0.902113 -0.107641 }
+      }
+      <Normal> { 0.701437 -0.395581 0.592822 }
+    }
+    <Vertex> 2393 {
+      -11.8291101456 -20.9651470184 0.0708224028349
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.389080 -0.419822 -0.819979 }
+        <Binormal> { -0.709280 -0.704361 0.024074 }
+      }
+      <Normal> { 0.592273 -0.577197 0.562120 }
+    }
+    <Vertex> 2394 {
+      -12.5347423553 -19.998506546 1.79928779602
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.509313 -0.248781 -0.823838 }
+        <Binormal> { -0.371696 -0.813861 0.015978 }
+      }
+      <Normal> { 0.447157 -0.187048 0.874660 }
+    }
+    <Vertex> 2395 {
+      -14.2060632706 -23.2094974518 1.53771138191
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.657692 0.007806 -0.753246 }
+        <Binormal> { -0.252469 -0.888217 -0.229646 }
+      }
+      <Normal> { 0.468642 -0.343608 0.813776 }
+    }
+    <Vertex> 2396 {
+      -12.9629573822 -23.1947441101 0.113997928798
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.578175 -0.172608 -0.797446 }
+        <Binormal> { -0.417780 -0.902113 -0.107641 }
+      }
+      <Normal> { 0.701437 -0.395581 0.592822 }
+    }
+    <Vertex> 2397 {
+      -14.2060632706 -23.2094974518 1.53771138191
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.657692 0.007806 -0.753246 }
+        <Binormal> { -0.252469 -0.888217 -0.229646 }
+      }
+      <Normal> { 0.468642 -0.343608 0.813776 }
+    }
+    <Vertex> 2398 {
+      -15.062330246 -24.8115329742 1.09885978699
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.630689 -0.162021 -0.758934 }
+        <Binormal> { -0.541124 -0.763254 -0.286741 }
+      }
+      <Normal> { 0.403027 -0.558184 0.725211 }
+    }
+    <Vertex> 2399 {
+      -14.2060632706 -25.3656044006 -0.00368922064081
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.595366 -0.321509 -0.736323 }
+        <Binormal> { -0.664789 -0.709224 -0.227850 }
+      }
+      <Normal> { 0.481887 -0.642933 0.595264 }
+    }
+    <Vertex> 2400 {
+      -12.9629573822 -23.1947441101 0.113997928798
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.578175 -0.172608 -0.797446 }
+        <Binormal> { -0.417780 -0.902113 -0.107641 }
+      }
+      <Normal> { 0.701437 -0.395581 0.592822 }
+    }
+    <Vertex> 2401 {
+      -14.2060632706 -25.3656044006 -0.00368922064081
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.595366 -0.321509 -0.736323 }
+        <Binormal> { -0.664789 -0.709224 -0.227850 }
+      }
+      <Normal> { 0.481887 -0.642933 0.595264 }
+    }
+    <Vertex> 2402 {
+      -12.7342815399 -26.0687236786 -1.7803696394
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.613242 -0.144320 -0.776599 }
+        <Binormal> { -0.466894 -0.771049 -0.225395 }
+      }
+      <Normal> { 0.339579 -0.447462 0.827296 }
+    }
+    <Vertex> 2403 {
+      -11.8291101456 -23.1048316956 -1.40904796124
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.902904 -0.085727 -0.421206 }
+        <Binormal> { -0.194972 0.460407 0.324239 }
+      }
+      <Normal> { 0.558916 -0.306040 0.770653 }
+    }
+    <Vertex> 2404 {
+      -12.9629573822 -23.1947441101 0.113997928798
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.578175 -0.172608 -0.797446 }
+        <Binormal> { -0.417780 -0.902113 -0.107641 }
+      }
+      <Normal> { 0.701437 -0.395581 0.592822 }
+    }
+    <Vertex> 2405 {
+      -11.8291101456 -23.1048316956 -1.40904796124
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.902904 -0.085727 -0.421206 }
+        <Binormal> { -0.194972 0.460407 0.324239 }
+      }
+      <Normal> { 0.558916 -0.306040 0.770653 }
+    }
+    <Vertex> 2406 {
+      -11.1684131622 -21.4727935791 -1.08022630215
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.552608 -0.128636 -0.823454 }
+        <Binormal> { -0.492475 -0.826053 -0.201450 }
+      }
+      <Normal> { 0.551683 -0.492965 0.672750 }
+    }
+    <Vertex> 2407 {
+      -11.8291101456 -20.9651470184 0.0708224028349
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.389080 -0.419822 -0.819979 }
+        <Binormal> { -0.709280 -0.704361 0.024074 }
+      }
+      <Normal> { 0.592273 -0.577197 0.562120 }
+    }
+    <Vertex> 2408 {
+      -16.9400424957 -26.0695533752 0.113997928798
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.964225 0.248537 -0.092193 }
+        <Binormal> { 0.052604 -0.520257 -0.852357 }
+      }
+      <Normal> { 0.263253 -0.816126 0.514389 }
+    }
+    <Vertex> 2409 {
+      -14.2060632706 -25.3656044006 -0.00368922064081
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.967573 0.249132 -0.041650 }
+        <Binormal> { 0.121521 -0.596032 -0.742139 }
+      }
+      <Normal> { 0.481887 -0.642933 0.595264 }
+    }
+    <Vertex> 2410 {
+      -15.062330246 -24.8115329742 1.09885978699
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.962206 0.249042 -0.110174 }
+        <Binormal> { 0.119111 -0.742206 -0.637458 }
+      }
+      <Normal> { 0.403027 -0.558184 0.725211 }
+    }
+    <Vertex> 2411 {
+      -17.1888771057 -25.3656044006 1.53771138191
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.962755 0.226245 -0.148038 }
+        <Binormal> { 0.089511 -0.783182 -0.614803 }
+      }
+      <Normal> { 0.232276 -0.584002 0.777764 }
+    }
+    <Vertex> 2412 {
+      -16.9400424957 -26.0695533752 0.113997928798
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.964225 0.248537 -0.092193 }
+        <Binormal> { 0.052604 -0.520257 -0.852357 }
+      }
+      <Normal> { 0.263253 -0.816126 0.514389 }
+    }
+    <Vertex> 2413 {
+      -17.1888771057 -25.3656044006 1.53771138191
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.962755 0.226245 -0.148038 }
+        <Binormal> { 0.089511 -0.783182 -0.614803 }
+      }
+      <Normal> { 0.232276 -0.584002 0.777764 }
+    }
+    <Vertex> 2414 {
+      -20.6625614166 -26.1275749207 1.95997941494
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.699394 0.712911 0.051047 }
+        <Binormal> { 0.652053 -0.607207 -0.453643 }
+      }
+      <Normal> { 0.280160 -0.363048 0.888638 }
+    }
+    <Vertex> 2415 {
+      -19.6781692505 -26.8878726959 0.228787466884
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.957354 0.286116 -0.040135 }
+        <Binormal> { 0.144031 -0.586792 -0.747523 }
+      }
+      <Normal> { 0.501511 -0.630940 0.591906 }
+    }
+    <Vertex> 2416 {
+      -16.9400424957 -26.0695533752 0.113997928798
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.964225 0.248537 -0.092193 }
+        <Binormal> { 0.052604 -0.520257 -0.852357 }
+      }
+      <Normal> { 0.263253 -0.816126 0.514389 }
+    }
+    <Vertex> 2417 {
+      -19.6781692505 -26.8878726959 0.228787466884
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.957354 0.286116 -0.040135 }
+        <Binormal> { 0.144031 -0.586792 -0.747523 }
+      }
+      <Normal> { 0.501511 -0.630940 0.591906 }
+    }
+    <Vertex> 2418 {
+      -18.7643032074 -27.5269126892 -0.948005974293
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.951162 0.282376 -0.124718 }
+        <Binormal> { 0.133089 -0.732288 -0.642979 }
+      }
+      <Normal> { 0.444533 -0.544023 0.711600 }
+    }
+    <Vertex> 2419 {
+      -16.5667934418 -26.8799648285 -1.48038721085
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.963352 0.232959 -0.132978 }
+        <Binormal> { 0.086908 -0.740031 -0.666834 }
+      }
+      <Normal> { 0.263558 -0.628468 0.731803 }
+    }
+    <Vertex> 2420 {
+      -16.9400424957 -26.0695533752 0.113997928798
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.964225 0.248537 -0.092193 }
+        <Binormal> { 0.052604 -0.520257 -0.852357 }
+      }
+      <Normal> { 0.263253 -0.816126 0.514389 }
+    }
+    <Vertex> 2421 {
+      -16.5667934418 -26.8799648285 -1.48038721085
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.963352 0.232959 -0.132978 }
+        <Binormal> { 0.086908 -0.740031 -0.666834 }
+      }
+      <Normal> { 0.263558 -0.628468 0.731803 }
+    }
+    <Vertex> 2422 {
+      -12.7342815399 -26.0687236786 -1.7803696394
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.763557 -0.566961 -0.309090 }
+        <Binormal> { -0.607350 -0.736648 -0.149135 }
+      }
+      <Normal> { 0.339579 -0.447462 0.827296 }
+    }
+    <Vertex> 2423 {
+      -14.2060632706 -25.3656044006 -0.00368922064081
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.967573 0.249132 -0.041650 }
+        <Binormal> { 0.121521 -0.596032 -0.742139 }
+      }
+      <Normal> { 0.481887 -0.642933 0.595264 }
+    }
+    <Vertex> 2424 {
+      -5.57700777054 -22.6229934692 -1.37312376499
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.752602 -0.136577 -0.644156 }
+        <Binormal> { -0.278069 0.952432 0.122944 }
+      }
+      <Normal> { -0.581744 -0.268929 0.767602 }
+    }
+    <Vertex> 2425 {
+      -5.100086689 -25.4560604095 -1.41183853149
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.785902 -0.033997 -0.617416 }
+        <Binormal> { -0.071406 0.996701 0.036011 }
+      }
+      <Normal> { -0.623371 -0.072787 0.778497 }
+    }
+    <Vertex> 2426 {
+      -3.54617714882 -25.4372901917 -0.105620525777
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.757389 -0.004977 -0.652944 }
+        <Binormal> { -0.051828 0.944601 0.052918 }
+      }
+      <Normal> { -0.374371 -0.072329 0.924436 }
+    }
+    <Vertex> 2427 {
+      -4.27453517914 -22.6229934692 -0.21685834229
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.747833 0.000000 -0.663886 }
+        <Binormal> { -0.096583 0.930994 0.108796 }
+      }
+      <Normal> { -0.367748 -0.145482 0.918455 }
+    }
+    <Vertex> 2428 {
+      -5.57700777054 -22.6229934692 -1.37312376499
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.752602 -0.136577 -0.644156 }
+        <Binormal> { -0.278069 0.952432 0.122944 }
+      }
+      <Normal> { -0.581744 -0.268929 0.767602 }
+    }
+    <Vertex> 2429 {
+      -4.27453517914 -22.6229934692 -0.21685834229
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.747833 0.000000 -0.663886 }
+        <Binormal> { -0.096583 0.930994 0.108796 }
+      }
+      <Normal> { -0.367748 -0.145482 0.918455 }
+    }
+    <Vertex> 2430 {
+      -6.12064647675 -19.6365470886 -0.213918238878
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.672150 -0.310480 -0.672173 }
+        <Binormal> { -0.437431 0.776607 0.078697 }
+      }
+      <Normal> { -0.197516 -0.208319 0.957884 }
+    }
+    <Vertex> 2431 {
+      -6.94023084641 -20.6167697906 -1.17978286743
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.550317 -0.564107 -0.615577 }
+        <Binormal> { -0.794052 0.574823 0.183110 }
+      }
+      <Normal> { -0.291360 -0.631397 0.718619 }
+    }
+    <Vertex> 2432 {
+      -5.57700777054 -22.6229934692 -1.37312376499
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.752602 -0.136577 -0.644156 }
+        <Binormal> { -0.278069 0.952432 0.122944 }
+      }
+      <Normal> { -0.581744 -0.268929 0.767602 }
+    }
+    <Vertex> 2433 {
+      -6.94023084641 -20.6167697906 -1.17978286743
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.550317 -0.564107 -0.615577 }
+        <Binormal> { -0.794052 0.574823 0.183110 }
+      }
+      <Normal> { -0.291360 -0.631397 0.718619 }
+    }
+    <Vertex> 2434 {
+      -7.64340400696 -21.1974620819 -1.91725337505
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.737464 -0.231429 -0.634498 }
+        <Binormal> { -0.537808 0.721764 0.361824 }
+      }
+      <Normal> { -0.195318 -0.551927 0.810663 }
+    }
+    <Vertex> 2435 {
+      -6.94023084641 -22.6907730103 -2.41353416443
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.794315 -0.039493 -0.606221 }
+        <Binormal> { -0.186657 0.905359 0.185590 }
+      }
+      <Normal> { -0.276864 -0.247414 0.928495 }
+    }
+    <Vertex> 2436 {
+      -5.57700777054 -22.6229934692 -1.37312376499
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.752602 -0.136577 -0.644156 }
+        <Binormal> { -0.278069 0.952432 0.122944 }
+      }
+      <Normal> { -0.581744 -0.268929 0.767602 }
+    }
+    <Vertex> 2437 {
+      -6.94023084641 -22.6907730103 -2.41353416443
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.794315 -0.039493 -0.606221 }
+        <Binormal> { -0.186657 0.905359 0.185590 }
+      }
+      <Normal> { -0.276864 -0.247414 0.928495 }
+    }
+    <Vertex> 2438 {
+      -6.82100057602 -25.5789527893 -2.67837190628
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.799787 -0.049446 -0.598243 }
+        <Binormal> { -0.110857 0.949647 0.069714 }
+      }
+      <Normal> { -0.337077 -0.108005 0.935240 }
+    }
+    <Vertex> 2439 {
+      -5.100086689 -25.4560604095 -1.41183853149
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.785902 -0.033997 -0.617416 }
+        <Binormal> { -0.071406 0.996701 0.036011 }
+      }
+      <Normal> { -0.623371 -0.072787 0.778497 }
+    }
+    <Vertex> 2440 {
+      -9.42289924622 -22.8941135406 -2.33853387833
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.978309 -0.081112 0.190611 }
+        <Binormal> { -0.037252 0.973997 0.223281 }
+      }
+      <Normal> { 0.196356 -0.211951 0.957335 }
+    }
+    <Vertex> 2441 {
+      -9.42289924622 -25.8335018158 -2.72627353668
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.985367 -0.081614 0.149640 }
+        <Binormal> { -0.050556 0.976954 0.199924 }
+      }
+      <Normal> { 0.108768 -0.193884 0.974944 }
+    }
+    <Vertex> 2442 {
+      -6.82100057602 -25.5789527893 -2.67837190628
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.597906 -0.793062 -0.116450 }
+        <Binormal> { -0.754280 0.598438 -0.202746 }
+      }
+      <Normal> { -0.337077 -0.108005 0.935240 }
+    }
+    <Vertex> 2443 {
+      -6.94023084641 -22.6907730103 -2.41353416443
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.996211 -0.081594 0.030095 }
+        <Binormal> { -0.068313 0.916645 0.223886 }
+      }
+      <Normal> { -0.276864 -0.247414 0.928495 }
+    }
+    <Vertex> 2444 {
+      -9.42289924622 -22.8941135406 -2.33853387833
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.978309 -0.081112 0.190611 }
+        <Binormal> { -0.037252 0.973997 0.223281 }
+      }
+      <Normal> { 0.196356 -0.211951 0.957335 }
+    }
+    <Vertex> 2445 {
+      -6.94023084641 -22.6907730103 -2.41353416443
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.996211 -0.081594 0.030095 }
+        <Binormal> { -0.068313 0.916645 0.223886 }
+      }
+      <Normal> { -0.276864 -0.247414 0.928495 }
+    }
+    <Vertex> 2446 {
+      -7.64340400696 -21.1974620819 -1.91725337505
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.997600 0.048416 0.049497 }
+        <Binormal> { 0.066568 0.799050 0.560059 }
+      }
+      <Normal> { -0.195318 -0.551927 0.810663 }
+    }
+    <Vertex> 2447 {
+      -9.42289924622 -20.7872695923 -1.78078067303
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.970149 -0.075776 0.230366 }
+        <Binormal> { 0.073645 0.812880 0.577534 }
+      }
+      <Normal> { 0.216590 -0.578387 0.786462 }
+    }
+    <Vertex> 2448 {
+      -9.42289924622 -22.8941135406 -2.33853387833
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.978309 -0.081112 0.190611 }
+        <Binormal> { -0.037252 0.973997 0.223281 }
+      }
+      <Normal> { 0.196356 -0.211951 0.957335 }
+    }
+    <Vertex> 2449 {
+      -9.42289924622 -20.7872695923 -1.78078067303
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.970149 -0.075776 0.230366 }
+        <Binormal> { 0.073645 0.812880 0.577534 }
+      }
+      <Normal> { 0.216590 -0.578387 0.786462 }
+    }
+    <Vertex> 2450 {
+      -11.1684131622 -21.4727935791 -1.08022630215
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.841279 -0.507551 -0.186120 }
+        <Binormal> { -0.433206 0.463291 0.694729 }
+      }
+      <Normal> { 0.551683 -0.492965 0.672750 }
+    }
+    <Vertex> 2451 {
+      -11.8291101456 -23.1048316956 -1.40904796124
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.902904 -0.085727 -0.421206 }
+        <Binormal> { -0.194972 0.460407 0.324239 }
+      }
+      <Normal> { 0.558916 -0.306040 0.770653 }
+    }
+    <Vertex> 2452 {
+      -9.42289924622 -22.8941135406 -2.33853387833
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.978309 -0.081112 0.190611 }
+        <Binormal> { -0.037252 0.973997 0.223281 }
+      }
+      <Normal> { 0.196356 -0.211951 0.957335 }
+    }
+    <Vertex> 2453 {
+      -11.8291101456 -23.1048316956 -1.40904796124
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.902904 -0.085727 -0.421206 }
+        <Binormal> { -0.194972 0.460407 0.324239 }
+      }
+      <Normal> { 0.558916 -0.306040 0.770653 }
+    }
+    <Vertex> 2454 {
+      -12.7342815399 -26.0687236786 -1.7803696394
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.947593 -0.073907 0.310814 }
+        <Binormal> { 0.077935 0.889486 0.449109 }
+      }
+      <Normal> { 0.339579 -0.447462 0.827296 }
+    }
+    <Vertex> 2455 {
+      -9.42289924622 -25.8335018158 -2.72627353668
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.985367 -0.081614 0.149640 }
+        <Binormal> { -0.050556 0.976954 0.199924 }
+      }
+      <Normal> { 0.108768 -0.193884 0.974944 }
+    }
+    <Vertex> 2456 {
+      -16.4423751831 -29.370218277 -2.62389039993
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.966985 0.063059 -0.246907 }
+        <Binormal> { -0.006865 -0.961938 -0.272563 }
+      }
+      <Normal> { 0.271432 -0.264168 0.925474 }
+    }
+    <Vertex> 2457 {
+      -12.698964119 -29.2860164642 -3.29383945465
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.984119 0.022136 -0.176125 }
+        <Binormal> { -0.026116 -0.962888 -0.266944 }
+      }
+      <Normal> { 0.146672 -0.267953 0.952178 }
+    }
+    <Vertex> 2458 {
+      -12.7342815399 -26.0687236786 -1.7803696394
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.985156 0.116441 -0.126128 }
+        <Binormal> { 0.039894 -0.857846 -0.480362 }
+      }
+      <Normal> { 0.339579 -0.447462 0.827296 }
+    }
+    <Vertex> 2459 {
+      -16.5667934418 -26.8799648285 -1.48038721085
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.963352 0.232959 -0.132978 }
+        <Binormal> { 0.086908 -0.740031 -0.666834 }
+      }
+      <Normal> { 0.263558 -0.628468 0.731803 }
+    }
+    <Vertex> 2460 {
+      -16.4423751831 -29.370218277 -2.62389039993
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.966985 0.063059 -0.246907 }
+        <Binormal> { -0.006865 -0.961938 -0.272563 }
+      }
+      <Normal> { 0.271432 -0.264168 0.925474 }
+    }
+    <Vertex> 2461 {
+      -16.5667934418 -26.8799648285 -1.48038721085
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.963352 0.232959 -0.132978 }
+        <Binormal> { 0.086908 -0.740031 -0.666834 }
+      }
+      <Normal> { 0.263558 -0.628468 0.731803 }
+    }
+    <Vertex> 2462 {
+      -18.7643032074 -27.5269126892 -0.948005974293
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.947231 0.116842 -0.298500 }
+        <Binormal> { -0.079246 -0.806742 -0.567255 }
+      }
+      <Normal> { 0.444533 -0.544023 0.711600 }
+    }
+    <Vertex> 2463 {
+      -19.5537528992 -29.3781261444 -1.48328518867
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.938896 0.002386 -0.344192 }
+        <Binormal> { -0.081400 -0.941934 -0.228576 }
+      }
+      <Normal> { 0.542619 -0.242073 0.804315 }
+    }
+    <Vertex> 2464 {
+      -16.4423751831 -29.370218277 -2.62389039993
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.966985 0.063059 -0.246907 }
+        <Binormal> { -0.006865 -0.961938 -0.272563 }
+      }
+      <Normal> { 0.271432 -0.264168 0.925474 }
+    }
+    <Vertex> 2465 {
+      -19.5537528992 -29.3781261444 -1.48328518867
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.938896 0.002386 -0.344192 }
+        <Binormal> { -0.081400 -0.941934 -0.228576 }
+      }
+      <Normal> { 0.542619 -0.242073 0.804315 }
+    }
+    <Vertex> 2466 {
+      -19.6180343628 -32.8288879395 -1.62891376019
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.670474 0.703418 -0.235939 }
+        <Binormal> { 0.576751 -0.685041 -0.403383 }
+      }
+      <Normal> { 0.571337 -0.002228 0.820673 }
+    }
+    <Vertex> 2467 {
+      -16.4423751831 -32.8170280457 -3.08292150497
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.946650 0.013143 -0.321996 }
+        <Binormal> { 0.011349 -0.999495 -0.007431 }
+      }
+      <Normal> { 0.295022 -0.003754 0.955473 }
+    }
+    <Vertex> 2468 {
+      -16.4423751831 -29.370218277 -2.62389039993
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.966985 0.063059 -0.246907 }
+        <Binormal> { -0.006865 -0.961938 -0.272563 }
+      }
+      <Normal> { 0.271432 -0.264168 0.925474 }
+    }
+    <Vertex> 2469 {
+      -16.4423751831 -32.8170280457 -3.08292150497
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.946650 0.013143 -0.321996 }
+        <Binormal> { 0.011349 -0.999495 -0.007431 }
+      }
+      <Normal> { 0.295022 -0.003754 0.955473 }
+    }
+    <Vertex> 2470 {
+      -12.698964119 -32.7328262329 -3.98238611221
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.720581 -0.692181 -0.040600 }
+        <Binormal> { -0.687992 -0.720568 0.074130 }
+      }
+      <Normal> { 0.112339 -0.005036 0.993652 }
+    }
+    <Vertex> 2471 {
+      -12.698964119 -29.2860164642 -3.29383945465
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.984119 0.022136 -0.176125 }
+        <Binormal> { -0.026116 -0.962888 -0.266944 }
+      }
+      <Normal> { 0.146672 -0.267953 0.952178 }
+    }
+    <Vertex> 2472 {
+      -9.42289924622 -29.0334148407 -3.4675617218
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.025111 -0.980809 -0.193349 }
+        <Binormal> { -0.999567 -0.022120 -0.017609 }
+      }
+      <Normal> { -0.012909 -0.197028 0.980285 }
+    }
+    <Vertex> 2473 {
+      -6.86505794525 -28.7237529755 -2.9630484581
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.097561 -0.990793 -0.093872 }
+        <Binormal> { -0.917378 -0.052989 -0.394151 }
+      }
+      <Normal> { -0.384014 -0.140141 0.912625 }
+    }
+    <Vertex> 2474 {
+      -6.82100057602 -25.5789527893 -2.67837190628
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.597906 -0.793062 -0.116450 }
+        <Binormal> { -0.754280 0.598438 -0.202746 }
+      }
+      <Normal> { -0.337077 -0.108005 0.935240 }
+    }
+    <Vertex> 2475 {
+      -9.42289924622 -25.8335018158 -2.72627353668
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 -0.974201 -0.225682 }
+        <Binormal> { -0.993548 -0.024547 0.105962 }
+      }
+      <Normal> { 0.108768 -0.193884 0.974944 }
+    }
+    <Vertex> 2476 {
+      -9.42289924622 -29.0334148407 -3.4675617218
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.025111 -0.980809 -0.193349 }
+        <Binormal> { -0.999567 -0.022120 -0.017609 }
+      }
+      <Normal> { -0.012909 -0.197028 0.980285 }
+    }
+    <Vertex> 2477 {
+      -9.42289924622 -25.8335018158 -2.72627353668
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 -0.974201 -0.225682 }
+        <Binormal> { -0.993548 -0.024547 0.105962 }
+      }
+      <Normal> { 0.108768 -0.193884 0.974944 }
+    }
+    <Vertex> 2478 {
+      -12.7342815399 -26.0687236786 -1.7803696394
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.763557 -0.566961 -0.309090 }
+        <Binormal> { -0.607350 -0.736648 -0.149135 }
+      }
+      <Normal> { 0.339579 -0.447462 0.827296 }
+    }
+    <Vertex> 2479 {
+      -12.698964119 -29.2860164642 -3.29383945465
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.005032 -0.949495 -0.313741 }
+        <Binormal> { -0.988156 -0.050808 0.137916 }
+      }
+      <Normal> { 0.146672 -0.267953 0.952178 }
+    }
+    <Vertex> 2480 {
+      -9.42289924622 -29.0334148407 -3.4675617218
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.025111 -0.980809 -0.193349 }
+        <Binormal> { -0.999567 -0.022120 -0.017609 }
+      }
+      <Normal> { -0.012909 -0.197028 0.980285 }
+    }
+    <Vertex> 2481 {
+      -12.698964119 -29.2860164642 -3.29383945465
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.005032 -0.949495 -0.313741 }
+        <Binormal> { -0.988156 -0.050808 0.137916 }
+      }
+      <Normal> { 0.146672 -0.267953 0.952178 }
+    }
+    <Vertex> 2482 {
+      -12.698964119 -32.7328262329 -3.98238611221
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.000000 -0.986425 -0.164210 }
+        <Binormal> { -0.980991 -0.018447 0.110814 }
+      }
+      <Normal> { 0.112339 -0.005036 0.993652 }
+    }
+    <Vertex> 2483 {
+      -9.42289924622 -32.4802246094 -3.92659282684
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 -0.991248 -0.132010 }
+        <Binormal> { -0.992775 0.007755 -0.058234 }
+      }
+      <Normal> { -0.058748 -0.027375 0.997894 }
+    }
+    <Vertex> 2484 {
+      -9.42289924622 -29.0334148407 -3.4675617218
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.025111 -0.980809 -0.193349 }
+        <Binormal> { -0.999567 -0.022120 -0.017609 }
+      }
+      <Normal> { -0.012909 -0.197028 0.980285 }
+    }
+    <Vertex> 2485 {
+      -9.42289924622 -32.4802246094 -3.92659282684
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 -0.991248 -0.132010 }
+        <Binormal> { -0.992775 0.007755 -0.058234 }
+      }
+      <Normal> { -0.058748 -0.027375 0.997894 }
+    }
+    <Vertex> 2486 {
+      -6.17821788788 -32.10679245 -3.29684877396
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.247707 -0.892410 -0.377156 }
+        <Binormal> { -0.936320 0.311414 -0.121904 }
+      }
+      <Normal> { -0.199744 -0.227485 0.953063 }
+    }
+    <Vertex> 2487 {
+      -6.86505794525 -28.7237529755 -2.9630484581
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.097561 -0.990793 -0.093872 }
+        <Binormal> { -0.917378 -0.052989 -0.394151 }
+      }
+      <Normal> { -0.384014 -0.140141 0.912625 }
+    }
+    <Vertex> 2488 {
+      3.9661090374 -35.8235054016 -4.22398138046
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.996775 -0.036606 0.071414 }
+        <Binormal> { -0.037374 -0.998757 0.009701 }
+      }
+      <Normal> { -0.102298 0.013489 0.994659 }
+    }
+    <Vertex> 2489 {
+      6.4187669754 -35.8560295105 -3.79008579254
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.981414 -0.074107 0.177016 }
+        <Binormal> { -0.076132 -0.942493 0.027525 }
+      }
+      <Normal> { -0.482986 0.064516 0.873226 }
+    }
+    <Vertex> 2490 {
+      5.99283361435 -33.8183059692 -3.57425165176
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.969425 -0.173139 0.173893 }
+        <Binormal> { -0.093946 -0.898235 -0.370610 }
+      }
+      <Normal> { -0.430403 -0.305429 0.849361 }
+    }
+    <Vertex> 2491 {
+      4.11504411697 -33.0475387573 -3.90396642685
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.996816 -0.055748 0.057007 }
+        <Binormal> { -0.024857 -0.895429 -0.441012 }
+      }
+      <Normal> { -0.130863 -0.435102 0.890805 }
+    }
+    <Vertex> 2492 {
+      3.9661090374 -35.8235054016 -4.22398138046
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.996775 -0.036606 0.071414 }
+        <Binormal> { -0.037374 -0.998757 0.009701 }
+      }
+      <Normal> { -0.102298 0.013489 0.994659 }
+    }
+    <Vertex> 2493 {
+      4.11504411697 -33.0475387573 -3.90396642685
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.996816 -0.055748 0.057007 }
+        <Binormal> { -0.024857 -0.895429 -0.441012 }
+      }
+      <Normal> { -0.130863 -0.435102 0.890805 }
+    }
+    <Vertex> 2494 {
+      0.830666780472 -33.0284042358 -3.81339669228
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.999424 0.021373 -0.026360 }
+        <Binormal> { 0.006515 -0.883093 -0.469012 }
+      }
+      <Normal> { 0.042787 -0.468368 0.882473 }
+    }
+    <Vertex> 2495 {
+      0.709758520126 -35.8235015869 -4.1201300621
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.997997 -0.054243 -0.032541 }
+        <Binormal> { -0.054998 -0.998165 -0.022889 }
+      }
+      <Normal> { 0.040712 -0.025147 0.998840 }
+    }
+    <Vertex> 2496 {
+      3.9661090374 -35.8235054016 -4.22398138046
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.996775 -0.036606 0.071414 }
+        <Binormal> { -0.037374 -0.998757 0.009701 }
+      }
+      <Normal> { -0.102298 0.013489 0.994659 }
+    }
+    <Vertex> 2497 {
+      0.709758520126 -35.8235015869 -4.1201300621
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.997997 -0.054243 -0.032541 }
+        <Binormal> { -0.054998 -0.998165 -0.022889 }
+      }
+      <Normal> { 0.040712 -0.025147 0.998840 }
+    }
+    <Vertex> 2498 {
+      0.838361620903 -39.579460144 -3.89968729019
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.611686 -0.790891 0.018203 }
+        <Binormal> { -0.759855 -0.587773 -0.003929 }
+      }
+      <Normal> { -0.183599 0.230964 0.955443 }
+    }
+    <Vertex> 2499 {
+      4.05675315857 -38.7012138367 -3.7841424942
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { -0.088619 -0.898464 -0.430011 }
+        <Binormal> { -0.602779 0.177193 -0.246003 }
+      }
+      <Normal> { -0.231819 0.425672 0.874630 }
+    }
+    <Vertex> 2500 {
+      3.9661090374 -35.8235054016 -4.22398138046
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.996775 -0.036606 0.071414 }
+        <Binormal> { -0.037374 -0.998757 0.009701 }
+      }
+      <Normal> { -0.102298 0.013489 0.994659 }
+    }
+    <Vertex> 2501 {
+      4.05675315857 -38.7012138367 -3.7841424942
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { -0.088619 -0.898464 -0.430011 }
+        <Binormal> { -0.602779 0.177193 -0.246003 }
+      }
+      <Normal> { -0.231819 0.425672 0.874630 }
+    }
+    <Vertex> 2502 {
+      5.79442977905 -37.9606590271 -3.37894368172
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.975059 -0.022875 0.220764 }
+        <Binormal> { -0.106916 -0.873997 0.381660 }
+      }
+      <Normal> { -0.458266 0.402173 0.792596 }
+    }
+    <Vertex> 2503 {
+      6.4187669754 -35.8560295105 -3.79008579254
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.981414 -0.074107 0.177016 }
+        <Binormal> { -0.076132 -0.942493 0.027525 }
+      }
+      <Normal> { -0.482986 0.064516 0.873226 }
+    }
+    <Vertex> 2504 {
+      -2.77761793137 -35.8235015869 -3.80857586861
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.993027 -0.083935 -0.082784 }
+        <Binormal> { -0.086083 -0.996014 -0.022734 }
+      }
+      <Normal> { 0.085513 -0.030122 0.995880 }
+    }
+    <Vertex> 2505 {
+      0.709758520126 -35.8235015869 -4.1201300621
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.993611 -0.068541 -0.089663 }
+        <Binormal> { -0.070716 -0.996109 -0.022196 }
+      }
+      <Normal> { 0.040712 -0.025147 0.998840 }
+    }
+    <Vertex> 2506 {
+      0.830666780472 -33.0284042358 -3.81339669228
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.995798 0.007329 -0.091286 }
+        <Binormal> { -0.036288 -0.882671 -0.466713 }
+      }
+      <Normal> { 0.042787 -0.468368 0.882473 }
+    }
+    <Vertex> 2507 {
+      -2.6505408287 -32.957950592 -3.47373652458
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.996251 -0.057491 -0.064644 }
+        <Binormal> { -0.079658 -0.900702 -0.426606 }
+      }
+      <Normal> { 0.015229 -0.429090 0.903104 }
+    }
+    <Vertex> 2508 {
+      -2.77761793137 -35.8235015869 -3.80857586861
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.993027 -0.083935 -0.082784 }
+        <Binormal> { -0.086083 -0.996014 -0.022734 }
+      }
+      <Normal> { 0.085513 -0.030122 0.995880 }
+    }
+    <Vertex> 2509 {
+      -2.6505408287 -32.957950592 -3.47373652458
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.996251 -0.057491 -0.064644 }
+        <Binormal> { -0.079658 -0.900702 -0.426606 }
+      }
+      <Normal> { 0.015229 -0.429090 0.903104 }
+    }
+    <Vertex> 2510 {
+      -6.17821788788 -32.10679245 -3.29684877396
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.991913 -0.111660 -0.060337 }
+        <Binormal> { -0.120145 -0.933303 -0.247949 }
+      }
+      <Normal> { -0.199744 -0.227485 0.953063 }
+    }
+    <Vertex> 2511 {
+      -6.24038219452 -35.907699585 -3.51561975479
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.995956 -0.034248 -0.083056 }
+        <Binormal> { -0.029828 -0.997710 0.053727 }
+      }
+      <Normal> { 0.057344 0.051973 0.996979 }
+    }
+    <Vertex> 2512 {
+      -2.77761793137 -35.8235015869 -3.80857586861
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.993027 -0.083935 -0.082784 }
+        <Binormal> { -0.086083 -0.996014 -0.022734 }
+      }
+      <Normal> { 0.085513 -0.030122 0.995880 }
+    }
+    <Vertex> 2513 {
+      -6.24038219452 -35.907699585 -3.51561975479
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.995956 -0.034248 -0.083056 }
+        <Binormal> { -0.029828 -0.997710 0.053727 }
+      }
+      <Normal> { 0.057344 0.051973 0.996979 }
+    }
+    <Vertex> 2514 {
+      -6.39095926285 -39.6231803894 -3.12419271469
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.986840 -0.101020 -0.126260 }
+        <Binormal> { -0.062980 -0.947697 0.266003 }
+      }
+      <Normal> { 0.308969 0.237922 0.920804 }
+    }
+    <Vertex> 2515 {
+      -2.77761793137 -39.5112686157 -3.80857586861
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.972755 -0.207026 -0.104348 }
+        <Binormal> { -0.202074 -0.977666 0.055908 }
+      }
+      <Normal> { 0.100558 0.036073 0.994263 }
+    }
+    <Vertex> 2516 {
+      -2.77761793137 -35.8235015869 -3.80857586861
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.993027 -0.083935 -0.082784 }
+        <Binormal> { -0.086083 -0.996014 -0.022734 }
+      }
+      <Normal> { 0.085513 -0.030122 0.995880 }
+    }
+    <Vertex> 2517 {
+      -2.77761793137 -39.5112686157 -3.80857586861
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.972755 -0.207026 -0.104348 }
+        <Binormal> { -0.202074 -0.977666 0.055908 }
+      }
+      <Normal> { 0.100558 0.036073 0.994263 }
+    }
+    <Vertex> 2518 {
+      0.838361620903 -39.579460144 -3.89968729019
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.516136 -0.794506 -0.319945 }
+        <Binormal> { -0.685209 -0.434396 -0.026662 }
+      }
+      <Normal> { -0.183599 0.230964 0.955443 }
+    }
+    <Vertex> 2519 {
+      0.709758520126 -35.8235015869 -4.1201300621
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.993611 -0.068541 -0.089663 }
+        <Binormal> { -0.070716 -0.996109 -0.022196 }
+      }
+      <Normal> { 0.040712 -0.025147 0.998840 }
+    }
+    <Vertex> 2520 {
+      -16.4423751831 -36.4971084595 -2.62389039993
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.967957 -0.014196 -0.250714 }
+        <Binormal> { 0.049344 -0.968054 0.245321 }
+      }
+      <Normal> { 0.259133 0.249641 0.932981 }
+    }
+    <Vertex> 2521 {
+      -12.698964119 -36.4129066467 -3.29383945465
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.984119 0.022136 -0.176125 }
+        <Binormal> { 0.070342 -0.957400 0.272713 }
+      }
+      <Normal> { 0.100162 0.279366 0.954924 }
+    }
+    <Vertex> 2522 {
+      -12.698964119 -32.7328262329 -3.98238611221
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.978490 0.022010 -0.205115 }
+        <Binormal> { 0.020837 -0.995321 -0.007400 }
+      }
+      <Normal> { 0.112339 -0.005036 0.993652 }
+    }
+    <Vertex> 2523 {
+      -16.4423751831 -32.8170280457 -3.08292150497
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.946650 0.013143 -0.321996 }
+        <Binormal> { 0.011349 -0.999495 -0.007431 }
+      }
+      <Normal> { 0.295022 -0.003754 0.955473 }
+    }
+    <Vertex> 2524 {
+      -16.4423751831 -36.4971084595 -2.62389039993
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.967957 -0.014196 -0.250714 }
+        <Binormal> { 0.049344 -0.968054 0.245321 }
+      }
+      <Normal> { 0.259133 0.249641 0.932981 }
+    }
+    <Vertex> 2525 {
+      -16.4423751831 -32.8170280457 -3.08292150497
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.946650 0.013143 -0.321996 }
+        <Binormal> { 0.011349 -0.999495 -0.007431 }
+      }
+      <Normal> { 0.295022 -0.003754 0.955473 }
+    }
+    <Vertex> 2526 {
+      -19.6180343628 -32.8288879395 -1.62891376019
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.924372 0.002906 -0.381481 }
+        <Binormal> { 0.001535 -0.976562 -0.003720 }
+      }
+      <Normal> { 0.571337 -0.002228 0.820673 }
+    }
+    <Vertex> 2527 {
+      -19.5537528992 -36.5050163269 -1.48328518867
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.938896 0.002386 -0.344192 }
+        <Binormal> { 0.078633 -0.946898 0.207933 }
+      }
+      <Normal> { 0.543474 0.222846 0.809290 }
+    }
+    <Vertex> 2528 {
+      -16.4423751831 -36.4971084595 -2.62389039993
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.967957 -0.014196 -0.250714 }
+        <Binormal> { 0.049344 -0.968054 0.245321 }
+      }
+      <Normal> { 0.259133 0.249641 0.932981 }
+    }
+    <Vertex> 2529 {
+      -19.5537528992 -36.5050163269 -1.48328518867
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.938896 0.002386 -0.344192 }
+        <Binormal> { 0.078633 -0.946898 0.207933 }
+      }
+      <Normal> { 0.543474 0.222846 0.809290 }
+    }
+    <Vertex> 2530 {
+      -18.7281913757 -38.6161117554 -0.947580099106
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.552249 0.729190 -0.404107 }
+        <Binormal> { 0.739459 -0.586738 -0.048200 }
+      }
+      <Normal> { 0.452528 0.510239 0.731315 }
+    }
+    <Vertex> 2531 {
+      -16.4855422974 -39.3586044312 -1.47942864895
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.210944 0.612323 0.761925 }
+    }
+    <Vertex> 2532 {
+      -16.4423751831 -36.4971084595 -2.62389039993
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.967957 -0.014196 -0.250714 }
+        <Binormal> { 0.049344 -0.968054 0.245321 }
+      }
+      <Normal> { 0.259133 0.249641 0.932981 }
+    }
+    <Vertex> 2533 {
+      -16.4855422974 -39.3586044312 -1.47942864895
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.210944 0.612323 0.761925 }
+    }
+    <Vertex> 2534 {
+      -12.7850561142 -39.2860908508 -1.85544037819
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.990057 0.020844 -0.139115 }
+        <Binormal> { 0.104442 -0.771174 0.627751 }
+      }
+      <Normal> { 0.078158 0.635701 0.767937 }
+    }
+    <Vertex> 2535 {
+      -12.698964119 -36.4129066467 -3.29383945465
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.984119 0.022136 -0.176125 }
+        <Binormal> { 0.070342 -0.957400 0.272713 }
+      }
+      <Normal> { 0.100162 0.279366 0.954924 }
+    }
+    <Vertex> 2536 {
+      -9.42289924622 -36.1603012085 -3.4675617218
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.020058 -0.981089 0.192514 }
+        <Binormal> { -0.999350 0.025115 0.023867 }
+      }
+      <Normal> { 0.028413 0.199835 0.979400 }
+    }
+    <Vertex> 2537 {
+      -6.24038219452 -35.907699585 -3.51561975479
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.028285 -0.999336 0.022955 }
+        <Binormal> { -0.997510 0.029516 0.055836 }
+      }
+      <Normal> { 0.057344 0.051973 0.996979 }
+    }
+    <Vertex> 2538 {
+      -6.17821788788 -32.10679245 -3.29684877396
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.008305 -0.999450 0.032098 }
+        <Binormal> { -0.945237 0.001504 -0.197745 }
+      }
+      <Normal> { -0.199744 -0.227485 0.953063 }
+    }
+    <Vertex> 2539 {
+      -9.42289924622 -32.4802246094 -3.92659282684
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 -0.992310 0.123775 }
+        <Binormal> { -0.986832 -0.007272 -0.058296 }
+      }
+      <Normal> { -0.058748 -0.027375 0.997894 }
+    }
+    <Vertex> 2540 {
+      -9.42289924622 -36.1603012085 -3.4675617218
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.020058 -0.981089 0.192514 }
+        <Binormal> { -0.999350 0.025115 0.023867 }
+      }
+      <Normal> { 0.028413 0.199835 0.979400 }
+    }
+    <Vertex> 2541 {
+      -9.42289924622 -32.4802246094 -3.92659282684
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 -0.992310 0.123775 }
+        <Binormal> { -0.986832 -0.007272 -0.058296 }
+      }
+      <Normal> { -0.058748 -0.027375 0.997894 }
+    }
+    <Vertex> 2542 {
+      -12.698964119 -32.7328262329 -3.98238611221
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.720581 -0.692181 -0.040600 }
+        <Binormal> { -0.687992 -0.720568 0.074130 }
+      }
+      <Normal> { 0.112339 -0.005036 0.993652 }
+    }
+    <Vertex> 2543 {
+      -12.698964119 -36.4129066467 -3.29383945465
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.012495 -0.951082 0.308686 }
+        <Binormal> { -0.994448 0.042850 0.091771 }
+      }
+      <Normal> { 0.100162 0.279366 0.954924 }
+    }
+    <Vertex> 2544 {
+      -9.42289924622 -36.1603012085 -3.4675617218
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.020058 -0.981089 0.192514 }
+        <Binormal> { -0.999350 0.025115 0.023867 }
+      }
+      <Normal> { 0.028413 0.199835 0.979400 }
+    }
+    <Vertex> 2545 {
+      -12.698964119 -36.4129066467 -3.29383945465
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.012495 -0.951082 0.308686 }
+        <Binormal> { -0.994448 0.042850 0.091771 }
+      }
+      <Normal> { 0.100162 0.279366 0.954924 }
+    }
+    <Vertex> 2546 {
+      -12.7850561142 -39.2860908508 -1.85544037819
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.744128 -0.582781 0.326557 }
+        <Binormal> { -0.655132 0.596967 -0.427494 }
+      }
+      <Normal> { 0.078158 0.635701 0.767937 }
+    }
+    <Vertex> 2547 {
+      -9.55143642426 -39.0406188965 -2.40867447853
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.137323 -0.979034 -0.150450 }
+        <Binormal> { -0.730423 -0.136618 0.222330 }
+      }
+      <Normal> { 0.151555 0.538530 0.828822 }
+    }
+    <Vertex> 2548 {
+      -9.42289924622 -36.1603012085 -3.4675617218
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.020058 -0.981089 0.192514 }
+        <Binormal> { -0.999350 0.025115 0.023867 }
+      }
+      <Normal> { 0.028413 0.199835 0.979400 }
+    }
+    <Vertex> 2549 {
+      -9.55143642426 -39.0406188965 -2.40867447853
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.137323 -0.979034 -0.150450 }
+        <Binormal> { -0.730423 -0.136618 0.222330 }
+      }
+      <Normal> { 0.151555 0.538530 0.828822 }
+    }
+    <Vertex> 2550 {
+      -6.39095926285 -39.6231803894 -3.12419271469
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.397358 -0.891170 -0.218912 }
+        <Binormal> { -0.768509 -0.433526 0.369885 }
+      }
+      <Normal> { 0.308969 0.237922 0.920804 }
+    }
+    <Vertex> 2551 {
+      -6.24038219452 -35.907699585 -3.51561975479
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.028285 -0.999336 0.022955 }
+        <Binormal> { -0.997510 0.029516 0.055836 }
+      }
+      <Normal> { 0.057344 0.051973 0.996979 }
+    }
+    <Vertex> 2552 {
+      -2.77761793137 -42.9811325073 -3.80857586861
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.993386 -0.038729 -0.108095 }
+        <Binormal> { -0.036188 -0.998985 0.025361 }
+      }
+      <Normal> { 0.104526 0.021455 0.994263 }
+    }
+    <Vertex> 2553 {
+      0.0151931177825 -43.0113105774 -3.68029117584
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.993971 -0.097658 0.049847 }
+        <Binormal> { -0.093951 -0.926092 0.059066 }
+      }
+      <Normal> { -0.398785 0.098605 0.911710 }
+    }
+    <Vertex> 2554 {
+      0.838361620903 -39.579460144 -3.89968729019
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.999963 0.008388 0.001817 }
+        <Binormal> { 0.007595 -0.955741 0.232496 }
+      }
+      <Normal> { -0.183599 0.230964 0.955443 }
+    }
+    <Vertex> 2555 {
+      -2.77761793137 -39.5112686157 -3.80857586861
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.990122 0.091534 -0.106211 }
+        <Binormal> { 0.094840 -0.995121 0.026512 }
+      }
+      <Normal> { 0.100558 0.036073 0.994263 }
+    }
+    <Vertex> 2556 {
+      -2.77761793137 -42.9811325073 -3.80857586861
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.993386 -0.038729 -0.108095 }
+        <Binormal> { -0.036188 -0.998985 0.025361 }
+      }
+      <Normal> { 0.104526 0.021455 0.994263 }
+    }
+    <Vertex> 2557 {
+      -2.77761793137 -39.5112686157 -3.80857586861
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.990122 0.091534 -0.106211 }
+        <Binormal> { 0.094840 -0.995121 0.026512 }
+      }
+      <Normal> { 0.100558 0.036073 0.994263 }
+    }
+    <Vertex> 2558 {
+      -6.39095926285 -39.6231803894 -3.12419271469
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.976770 0.051059 -0.208120 }
+        <Binormal> { 0.096532 -0.963717 0.216620 }
+      }
+      <Normal> { 0.308969 0.237922 0.920804 }
+    }
+    <Vertex> 2559 {
+      -5.63558197021 -42.9906349182 -3.07030248642
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.967418 -0.055801 -0.246957 }
+        <Binormal> { -0.030932 -0.961410 0.096064 }
+      }
+      <Normal> { 0.490341 0.071017 0.868618 }
+    }
+    <Vertex> 2560 {
+      -2.77761793137 -42.9811325073 -3.80857586861
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.993386 -0.038729 -0.108095 }
+        <Binormal> { -0.036188 -0.998985 0.025361 }
+      }
+      <Normal> { 0.104526 0.021455 0.994263 }
+    }
+    <Vertex> 2561 {
+      -5.63558197021 -42.9906349182 -3.07030248642
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.967418 -0.055801 -0.246957 }
+        <Binormal> { -0.030932 -0.961410 0.096064 }
+      }
+      <Normal> { 0.490341 0.071017 0.868618 }
+    }
+    <Vertex> 2562 {
+      -5.62817716599 -46.1204185486 -2.99657797813
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.957426 -0.130390 -0.257553 }
+        <Binormal> { -0.103733 -0.944974 0.092791 }
+      }
+      <Normal> { 0.538865 0.023530 0.842036 }
+    }
+    <Vertex> 2563 {
+      -2.77761793137 -46.1322822571 -3.80857586861
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.965045 -0.238273 -0.109148 }
+        <Binormal> { -0.235976 -0.971115 0.033562 }
+      }
+      <Normal> { 0.105258 0.008789 0.994385 }
+    }
+    <Vertex> 2564 {
+      -2.77761793137 -42.9811325073 -3.80857586861
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.993386 -0.038729 -0.108095 }
+        <Binormal> { -0.036188 -0.998985 0.025361 }
+      }
+      <Normal> { 0.104526 0.021455 0.994263 }
+    }
+    <Vertex> 2565 {
+      -2.77761793137 -46.1322822571 -3.80857586861
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.965045 -0.238273 -0.109148 }
+        <Binormal> { -0.235976 -0.971115 0.033562 }
+      }
+      <Normal> { 0.105258 0.008789 0.994385 }
+    }
+    <Vertex> 2566 {
+      -0.0735220164061 -46.1398277283 -3.62481999397
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.556378 -0.830355 0.030891 }
+        <Binormal> { -0.721167 -0.497545 -0.385134 }
+      }
+      <Normal> { -0.496414 0.048647 0.866695 }
+    }
+    <Vertex> 2567 {
+      0.0151931177825 -43.0113105774 -3.68029117584
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.993971 -0.097658 0.049847 }
+        <Binormal> { -0.093951 -0.926092 0.059066 }
+      }
+      <Normal> { -0.398785 0.098605 0.911710 }
+    }
+    <Vertex> 2568 {
+      -32.4593925476 -46.9627876282 4.09025287628
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.997713 0.007348 -0.067196 }
+        <Binormal> { 0.067065 -0.231518 0.970446 }
+      }
+      <Normal> { -0.002014 0.972655 0.232185 }
+    }
+    <Vertex> 2569 {
+      -29.1712741852 -46.8990974426 3.95841288567
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.999010 0.019351 -0.040056 }
+        <Binormal> { 0.042347 -0.138081 0.989449 }
+      }
+      <Normal> { -0.005341 0.990326 0.138432 }
+    }
+    <Vertex> 2570 {
+      -27.7901077271 -46.4382362366 2.78387331963
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.999364 -0.027585 -0.022599 }
+        <Binormal> { -0.005534 -0.745930 0.665783 }
+      }
+      <Normal> { 0.019471 0.665670 0.745964 }
+    }
+    <Vertex> 2571 {
+      -32.1947669983 -46.1622085571 2.82599329948
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.999364 -0.032641 -0.014340 }
+        <Binormal> { -0.018582 -0.820107 0.571788 }
+      }
+      <Normal> { 0.020264 0.571490 0.820338 }
+    }
+    <Vertex> 2572 {
+      -32.4593925476 -46.9627876282 4.09025287628
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.997713 0.007348 -0.067196 }
+        <Binormal> { 0.067065 -0.231518 0.970446 }
+      }
+      <Normal> { -0.002014 0.972655 0.232185 }
+    }
+    <Vertex> 2573 {
+      -32.1947669983 -46.1622085571 2.82599329948
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.999364 -0.032641 -0.014340 }
+        <Binormal> { -0.018582 -0.820107 0.571788 }
+      }
+      <Normal> { 0.020264 0.571490 0.820338 }
+    }
+    <Vertex> 2574 {
+      -35.836479187 -46.1754264832 2.89932918549
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.998594 0.009402 -0.052169 }
+        <Binormal> { 0.037419 -0.821728 0.568164 }
+      }
+      <Normal> { 0.015473 0.569109 0.822077 }
+    }
+    <Vertex> 2575 {
+      -35.836479187 -47.0156555176 4.38359642029
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.996127 0.015594 -0.086527 }
+        <Binormal> { 0.087639 -0.253467 0.963258 }
+      }
+      <Normal> { -0.005402 0.966918 0.254921 }
+    }
+    <Vertex> 2576 {
+      -32.4593925476 -46.9627876282 4.09025287628
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.997713 0.007348 -0.067196 }
+        <Binormal> { 0.067065 -0.231518 0.970446 }
+      }
+      <Normal> { -0.002014 0.972655 0.232185 }
+    }
+    <Vertex> 2577 {
+      -35.836479187 -47.0156555176 4.38359642029
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.996127 0.015594 -0.086527 }
+        <Binormal> { 0.087639 -0.253467 0.963258 }
+      }
+      <Normal> { -0.005402 0.966918 0.254921 }
+    }
+    <Vertex> 2578 {
+      -35.836479187 -47.0156555176 5.98122358322
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.992273 0.026057 -0.121306 }
+        <Binormal> { 0.120136 0.042235 0.991774 }
+      }
+      <Normal> { -0.043611 0.998352 -0.037233 }
+    }
+    <Vertex> 2579 {
+      -32.5823898315 -46.8943901062 5.4639005661
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.990107 0.034649 -0.135969 }
+        <Binormal> { 0.132740 0.082682 0.987669 }
+      }
+      <Normal> { -0.045625 0.995941 -0.077242 }
+    }
+    <Vertex> 2580 {
+      -32.4593925476 -46.9627876282 4.09025287628
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.997713 0.007348 -0.067196 }
+        <Binormal> { 0.067065 -0.231518 0.970446 }
+      }
+      <Normal> { -0.002014 0.972655 0.232185 }
+    }
+    <Vertex> 2581 {
+      -32.5823898315 -46.8943901062 5.4639005661
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.990107 0.034649 -0.135969 }
+        <Binormal> { 0.132740 0.082682 0.987669 }
+      }
+      <Normal> { -0.045625 0.995941 -0.077242 }
+    }
+    <Vertex> 2582 {
+      -29.0641727448 -46.7786598206 5.05120182037
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.996471 0.026268 -0.079722 }
+        <Binormal> { 0.074055 0.171977 0.982297 }
+      }
+      <Normal> { -0.043916 0.984619 -0.169073 }
+    }
+    <Vertex> 2583 {
+      -29.1712741852 -46.8990974426 3.95841288567
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.999010 0.019351 -0.040056 }
+        <Binormal> { 0.042347 -0.138081 0.989449 }
+      }
+      <Normal> { -0.005341 0.990326 0.138432 }
+    }
+    <Vertex> 2584 {
+      -15.400475502 -45.1609458923 3.59384012222
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999545 0.026120 -0.015061 }
+        <Binormal> { -0.008052 0.712608 0.701482 }
+      }
+      <Normal> { -0.025605 0.701132 -0.712546 }
+    }
+    <Vertex> 2585 {
+      -13.103102684 -45.1667747498 3.66006779671
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.999582 -0.002536 0.028816 }
+        <Binormal> { -0.018213 0.710829 0.694342 }
+      }
+      <Normal> { 0.132847 0.694296 -0.707297 }
+    }
+    <Vertex> 2586 {
+      -12.559217453 -46.0444793701 2.51674008369
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.998073 -0.060989 -0.011468 }
+        <Binormal> { -0.005253 -0.265346 0.953993 }
+      }
+      <Normal> { 0.200201 0.943602 0.263558 }
+    }
+    <Vertex> 2587 {
+      -15.5738811493 -45.7257080078 2.64400482178
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.999170 0.021828 -0.034383 }
+        <Binormal> { 0.039891 -0.357169 0.932490 }
+      }
+      <Normal> { 0.027558 0.933866 0.356517 }
+    }
+    <Vertex> 2588 {
+      -15.400475502 -45.1609458923 3.59384012222
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999545 0.026120 -0.015061 }
+        <Binormal> { -0.008052 0.712608 0.701482 }
+      }
+      <Normal> { -0.025605 0.701132 -0.712546 }
+    }
+    <Vertex> 2589 {
+      -15.5738811493 -45.7257080078 2.64400482178
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.999170 0.021828 -0.034383 }
+        <Binormal> { 0.039891 -0.357169 0.932490 }
+      }
+      <Normal> { 0.027558 0.933866 0.356517 }
+    }
+    <Vertex> 2590 {
+      -18.8465080261 -46.1818351746 2.73309445381
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.994157 0.102322 -0.034385 }
+        <Binormal> { 0.080532 -0.494669 0.856363 }
+      }
+      <Normal> { -0.194037 0.841426 0.504288 }
+    }
+    <Vertex> 2591 {
+      -17.7421188354 -45.2826576233 3.6989300251
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.997651 0.051855 -0.044773 }
+        <Binormal> { -0.002698 0.668146 0.713704 }
+      }
+      <Normal> { -0.276559 0.701010 -0.657308 }
+    }
+    <Vertex> 2592 {
+      -15.400475502 -45.1609458923 3.59384012222
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999545 0.026120 -0.015061 }
+        <Binormal> { -0.008052 0.712608 0.701482 }
+      }
+      <Normal> { -0.025605 0.701132 -0.712546 }
+    }
+    <Vertex> 2593 {
+      -17.7421188354 -45.2826576233 3.6989300251
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.997651 0.051855 -0.044773 }
+        <Binormal> { -0.002698 0.668146 0.713704 }
+      }
+      <Normal> { -0.276559 0.701010 -0.657308 }
+    }
+    <Vertex> 2594 {
+      -17.9432296753 -44.0518035889 4.54336023331
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.994932 0.097784 -0.023439 }
+        <Binormal> { -0.072529 0.855571 0.490642 }
+      }
+      <Normal> { -0.215430 0.471969 -0.854854 }
+    }
+    <Vertex> 2595 {
+      -15.4543781281 -43.698764801 4.53465223312
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.999426 0.033755 -0.002969 }
+        <Binormal> { -0.026635 0.836714 0.546900 }
+      }
+      <Normal> { -0.014069 0.546739 -0.837153 }
+    }
+    <Vertex> 2596 {
+      -15.400475502 -45.1609458923 3.59384012222
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999545 0.026120 -0.015061 }
+        <Binormal> { -0.008052 0.712608 0.701482 }
+      }
+      <Normal> { -0.025605 0.701132 -0.712546 }
+    }
+    <Vertex> 2597 {
+      -15.4543781281 -43.698764801 4.53465223312
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.999426 0.033755 -0.002969 }
+        <Binormal> { -0.026635 0.836714 0.546900 }
+      }
+      <Normal> { -0.014069 0.546739 -0.837153 }
+    }
+    <Vertex> 2598 {
+      -13.0206918716 -43.8855476379 4.52873849869
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.975725 0.135288 0.172214 }
+        <Binormal> { -0.207544 0.809257 0.540163 }
+      }
+      <Normal> { 0.164892 0.576464 -0.800287 }
+    }
+    <Vertex> 2599 {
+      -13.103102684 -45.1667747498 3.66006779671
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.999582 -0.002536 0.028816 }
+        <Binormal> { -0.018213 0.710829 0.694342 }
+      }
+      <Normal> { 0.132847 0.694296 -0.707297 }
+    }
+    <Vertex> 2600 {
+      10.6754779816 -45.2889518738 1.58134186268
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.992008 0.090907 0.087495 }
+        <Binormal> { -0.055065 -0.311962 0.948457 }
+      }
+      <Normal> { -0.107059 0.946287 0.305032 }
+    }
+    <Vertex> 2601 {
+      13.8042211533 -44.9986801147 1.58905553818
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.956515 -0.067398 0.283791 }
+        <Binormal> { -0.291508 -0.192598 0.936784 }
+      }
+      <Normal> { 0.026460 0.977508 0.209204 }
+    }
+    <Vertex> 2602 {
+      13.6012659073 -44.3292274475 -0.449449241161
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.970746 -0.100735 0.217955 }
+        <Binormal> { -0.216650 -0.743454 0.621326 }
+      }
+      <Normal> { 0.016327 0.638356 0.769524 }
+    }
+    <Vertex> 2603 {
+      10.2525291443 -44.4553260803 -0.163017913699
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.999783 0.019676 0.006782 }
+        <Binormal> { 0.011576 -0.796350 0.603840 }
+      }
+      <Normal> { 0.015046 0.604266 0.796625 }
+    }
+    <Vertex> 2604 {
+      10.6754779816 -45.2889518738 1.58134186268
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.992008 0.090907 0.087495 }
+        <Binormal> { -0.055065 -0.311962 0.948457 }
+      }
+      <Normal> { -0.107059 0.946287 0.305032 }
+    }
+    <Vertex> 2605 {
+      10.2525291443 -44.4553260803 -0.163017913699
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.999783 0.019676 0.006782 }
+        <Binormal> { 0.011576 -0.796350 0.603840 }
+      }
+      <Normal> { 0.015046 0.604266 0.796625 }
+    }
+    <Vertex> 2606 {
+      6.75631093979 -44.8541069031 0.311147242785
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.997056 0.076470 -0.005651 }
+        <Binormal> { 0.064364 -0.794639 0.603120 }
+      }
+      <Normal> { -0.017029 0.603595 0.797082 }
+    }
+    <Vertex> 2607 {
+      7.35510349274 -45.8565635681 1.92535662651
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.993361 0.113103 0.021027 }
+        <Binormal> { 0.021970 -0.365865 0.930074 }
+      }
+      <Normal> { -0.088565 0.926206 0.366436 }
+    }
+    <Vertex> 2608 {
+      10.6754779816 -45.2889518738 1.58134186268
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.992008 0.090907 0.087495 }
+        <Binormal> { -0.055065 -0.311962 0.948457 }
+      }
+      <Normal> { -0.107059 0.946287 0.305032 }
+    }
+    <Vertex> 2609 {
+      7.35510349274 -45.8565635681 1.92535662651
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.993361 0.113103 0.021027 }
+        <Binormal> { 0.021970 -0.365865 0.930074 }
+      }
+      <Normal> { -0.088565 0.926206 0.366436 }
+    }
+    <Vertex> 2610 {
+      7.87486314774 -46.3629455566 3.91087985039
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.984030 0.165117 0.066492 }
+        <Binormal> { -0.014351 -0.297587 0.951372 }
+      }
+      <Normal> { -0.099948 0.950041 0.295663 }
+    }
+    <Vertex> 2611 {
+      10.8328866959 -45.6497917175 3.73147511482
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.967899 0.177282 0.178165 }
+        <Binormal> { -0.128646 -0.259326 0.956920 }
+      }
+      <Normal> { -0.195166 0.952910 0.232002 }
+    }
+    <Vertex> 2612 {
+      10.6754779816 -45.2889518738 1.58134186268
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.992008 0.090907 0.087495 }
+        <Binormal> { -0.055065 -0.311962 0.948457 }
+      }
+      <Normal> { -0.107059 0.946287 0.305032 }
+    }
+    <Vertex> 2613 {
+      10.8328866959 -45.6497917175 3.73147511482
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.967899 0.177282 0.178165 }
+        <Binormal> { -0.128646 -0.259326 0.956920 }
+      }
+      <Normal> { -0.195166 0.952910 0.232002 }
+    }
+    <Vertex> 2614 {
+      13.6160917282 -45.1307907104 3.98471426964
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.941770 -0.023014 0.335469 }
+        <Binormal> { -0.334472 -0.166033 0.927580 }
+      }
+      <Normal> { -0.044618 0.986023 0.160405 }
+    }
+    <Vertex> 2615 {
+      13.8042211533 -44.9986801147 1.58905553818
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.956515 -0.067398 0.283791 }
+        <Binormal> { -0.291508 -0.192598 0.936784 }
+      }
+      <Normal> { 0.026460 0.977508 0.209204 }
+    }
+    <Vertex> 2616 {
+      16.1458721161 -45.4779701233 2.20478415489
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.836622 -0.274375 0.474112 }
+        <Binormal> { -0.500528 -0.031344 0.865094 }
+      }
+      <Normal> { 0.229865 0.958647 0.167730 }
+    }
+    <Vertex> 2617 {
+      18.0939750671 -46.3420524597 3.12452030182
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.747741 -0.365673 0.554226 }
+        <Binormal> { -0.577751 0.052761 0.814292 }
+      }
+      <Normal> { 0.313669 0.935606 0.161931 }
+    }
+    <Vertex> 2618 {
+      18.0939731598 -45.5018196106 0.695945441723
+      <UV>  {
+        -0.042124 0.762705
+        <Tangent> { 0.773168 -0.371776 0.513803 }
+        <Binormal> { -0.622235 -0.547738 0.540006 }
+      }
+      <Normal> { 0.031770 0.683157 0.729545 }
+    }
+    <Vertex> 2619 {
+      16.0680961609 -44.7730445862 -0.0485777109861
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.870386 -0.282715 0.403112 }
+        <Binormal> { -0.479761 -0.636839 0.589248 }
+      }
+      <Normal> { 0.023408 0.669393 0.742515 }
+    }
+    <Vertex> 2620 {
+      16.1458721161 -45.4779701233 2.20478415489
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.836622 -0.274375 0.474112 }
+        <Binormal> { -0.500528 -0.031344 0.865094 }
+      }
+      <Normal> { 0.229865 0.958647 0.167730 }
+    }
+    <Vertex> 2621 {
+      16.0680961609 -44.7730445862 -0.0485777109861
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.870386 -0.282715 0.403112 }
+        <Binormal> { -0.479761 -0.636839 0.589248 }
+      }
+      <Normal> { 0.023408 0.669393 0.742515 }
+    }
+    <Vertex> 2622 {
+      13.6012659073 -44.3292274475 -0.449449241161
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.970746 -0.100735 0.217955 }
+        <Binormal> { -0.216650 -0.743454 0.621326 }
+      }
+      <Normal> { 0.016327 0.638356 0.769524 }
+    }
+    <Vertex> 2623 {
+      13.8042211533 -44.9986801147 1.58905553818
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.956515 -0.067398 0.283791 }
+        <Binormal> { -0.291508 -0.192598 0.936784 }
+      }
+      <Normal> { 0.026460 0.977508 0.209204 }
+    }
+    <Vertex> 2624 {
+      16.1458721161 -45.4779701233 2.20478415489
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.836622 -0.274375 0.474112 }
+        <Binormal> { -0.500528 -0.031344 0.865094 }
+      }
+      <Normal> { 0.229865 0.958647 0.167730 }
+    }
+    <Vertex> 2625 {
+      13.8042211533 -44.9986801147 1.58905553818
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.956515 -0.067398 0.283791 }
+        <Binormal> { -0.291508 -0.192598 0.936784 }
+      }
+      <Normal> { 0.026460 0.977508 0.209204 }
+    }
+    <Vertex> 2626 {
+      13.6160917282 -45.1307907104 3.98471426964
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.941770 -0.023014 0.335469 }
+        <Binormal> { -0.334472 -0.166033 0.927580 }
+      }
+      <Normal> { -0.044618 0.986023 0.160405 }
+    }
+    <Vertex> 2627 {
+      15.963886261 -45.5114936829 4.7080578804
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.826340 -0.230078 0.514030 }
+        <Binormal> { -0.524958 0.015721 0.850945 }
+      }
+      <Normal> { 0.209754 0.971374 0.111454 }
+    }
+    <Vertex> 2628 {
+      16.1458721161 -45.4779701233 2.20478415489
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.836622 -0.274375 0.474112 }
+        <Binormal> { -0.500528 -0.031344 0.865094 }
+      }
+      <Normal> { 0.229865 0.958647 0.167730 }
+    }
+    <Vertex> 2629 {
+      15.963886261 -45.5114936829 4.7080578804
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.826340 -0.230078 0.514030 }
+        <Binormal> { -0.524958 0.015721 0.850945 }
+      }
+      <Normal> { 0.209754 0.971374 0.111454 }
+    }
+    <Vertex> 2630 {
+      18.0939750671 -46.3420524597 5.66645431519
+      <UV>  {
+        -0.073782 0.891829
+        <Tangent> { 0.765190 -0.322326 0.557306 }
+        <Binormal> { -0.552118 0.116149 0.825244 }
+      }
+      <Normal> { 0.311869 0.947111 0.075350 }
+    }
+    <Vertex> 2631 {
+      18.0939750671 -46.3420524597 3.12452030182
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.747741 -0.365673 0.554226 }
+        <Binormal> { -0.577751 0.052761 0.814292 }
+      }
+      <Normal> { 0.313669 0.935606 0.161931 }
+    }
+    <Vertex> 2632 {
+      4.43855857849 -46.2092666626 2.3648121357
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.971430 0.206092 -0.117685 }
+        <Binormal> { 0.177644 -0.302766 0.936150 }
+      }
+      <Normal> { -0.176214 0.926298 0.333018 }
+    }
+    <Vertex> 2633 {
+      7.35510349274 -45.8565635681 1.92535662651
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.981843 0.118736 -0.147941 }
+        <Binormal> { 0.180533 -0.346680 0.919905 }
+      }
+      <Normal> { -0.088565 0.926206 0.366436 }
+    }
+    <Vertex> 2634 {
+      6.75631093979 -44.8541069031 0.311147242785
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.987133 0.123172 -0.101967 }
+        <Binormal> { 0.159725 -0.785090 0.597926 }
+      }
+      <Normal> { -0.017029 0.603595 0.797082 }
+    }
+    <Vertex> 2635 {
+      3.84703230858 -45.2283363342 0.473477274179
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.967947 0.242730 0.064499 }
+        <Binormal> { 0.139690 -0.733720 0.664867 }
+      }
+      <Normal> { -0.202399 0.636128 0.744530 }
+    }
+    <Vertex> 2636 {
+      4.43855857849 -46.2092666626 2.3648121357
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.971430 0.206092 -0.117685 }
+        <Binormal> { 0.177644 -0.302766 0.936150 }
+      }
+      <Normal> { -0.176214 0.926298 0.333018 }
+    }
+    <Vertex> 2637 {
+      3.84703230858 -45.2283363342 0.473477274179
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.967947 0.242730 0.064499 }
+        <Binormal> { 0.139690 -0.733720 0.664867 }
+      }
+      <Normal> { -0.202399 0.636128 0.744530 }
+    }
+    <Vertex> 2638 {
+      1.39152395725 -46.1994247437 -0.046333078295
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.716680 0.109681 0.688723 }
+        <Binormal> { -0.273705 -0.847087 0.419716 }
+      }
+      <Normal> { -0.756310 0.469893 0.455153 }
+    }
+    <Vertex> 2639 {
+      2.2073264122 -47.0096130371 2.76426053047
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.928190 0.332943 -0.166170 }
+        <Binormal> { 0.216292 -0.155018 0.897563 }
+      }
+      <Normal> { -0.599292 0.752037 0.274300 }
+    }
+    <Vertex> 2640 {
+      4.43855857849 -46.2092666626 2.3648121357
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.971430 0.206092 -0.117685 }
+        <Binormal> { 0.177644 -0.302766 0.936150 }
+      }
+      <Normal> { -0.176214 0.926298 0.333018 }
+    }
+    <Vertex> 2641 {
+      2.2073264122 -47.0096130371 2.76426053047
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.928190 0.332943 -0.166170 }
+        <Binormal> { 0.216292 -0.155018 0.897563 }
+      }
+      <Normal> { -0.599292 0.752037 0.274300 }
+    }
+    <Vertex> 2642 {
+      2.69136691093 -47.1336174011 5.11570978165
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.935665 0.282041 -0.212096 }
+        <Binormal> { 0.203393 0.026022 0.931874 }
+      }
+      <Normal> { -0.548265 0.830683 0.096469 }
+    }
+    <Vertex> 2643 {
+      5.00261640549 -46.564704895 4.4854722023
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.963978 0.143322 -0.224063 }
+        <Binormal> { 0.249977 -0.200461 0.947243 }
+      }
+      <Normal> { -0.095065 0.968505 0.230049 }
+    }
+    <Vertex> 2644 {
+      4.43855857849 -46.2092666626 2.3648121357
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.971430 0.206092 -0.117685 }
+        <Binormal> { 0.177644 -0.302766 0.936150 }
+      }
+      <Normal> { -0.176214 0.926298 0.333018 }
+    }
+    <Vertex> 2645 {
+      5.00261640549 -46.564704895 4.4854722023
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.963978 0.143322 -0.224063 }
+        <Binormal> { 0.249977 -0.200461 0.947243 }
+      }
+      <Normal> { -0.095065 0.968505 0.230049 }
+    }
+    <Vertex> 2646 {
+      7.87486314774 -46.3629455566 3.91087985039
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.980647 0.093928 -0.171784 }
+        <Binormal> { 0.190973 -0.272772 0.941043 }
+      }
+      <Normal> { -0.099948 0.950041 0.295663 }
+    }
+    <Vertex> 2647 {
+      7.35510349274 -45.8565635681 1.92535662651
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.981843 0.118736 -0.147941 }
+        <Binormal> { 0.180533 -0.346680 0.919905 }
+      }
+      <Normal> { -0.088565 0.926206 0.366436 }
+    }
+    <Vertex> 2648 {
+      0.942890048027 -48.9201393127 2.98825407028
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.193837 -0.051322 0.979690 }
+        <Binormal> { -0.558949 -0.826413 0.067299 }
+      }
+      <Normal> { -0.807031 0.560869 0.184545 }
+    }
+    <Vertex> 2649 {
+      1.41633689404 -48.948261261 5.46205568314
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.187961 -0.011165 0.982113 }
+        <Binormal> { -0.568699 -0.807957 0.099655 }
+      }
+      <Normal> { -0.814478 0.578570 0.042817 }
+    }
+    <Vertex> 2650 {
+      2.69136691093 -47.1336174011 5.11570978165
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.521636 0.530113 0.668488 }
+        <Binormal> { -0.504162 -0.416830 0.723957 }
+      }
+      <Normal> { -0.548265 0.830683 0.096469 }
+    }
+    <Vertex> 2651 {
+      2.2073264122 -47.0096130371 2.76426053047
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.240510 -0.172853 0.955132 }
+        <Binormal> { -0.765708 -0.638375 0.077283 }
+      }
+      <Normal> { -0.599292 0.752037 0.274300 }
+    }
+    <Vertex> 2652 {
+      0.942890048027 -48.9201393127 2.98825407028
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.193837 -0.051322 0.979690 }
+        <Binormal> { -0.558949 -0.826413 0.067299 }
+      }
+      <Normal> { -0.807031 0.560869 0.184545 }
+    }
+    <Vertex> 2653 {
+      2.2073264122 -47.0096130371 2.76426053047
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.240510 -0.172853 0.955132 }
+        <Binormal> { -0.765708 -0.638375 0.077283 }
+      }
+      <Normal> { -0.599292 0.752037 0.274300 }
+    }
+    <Vertex> 2654 {
+      1.39152395725 -46.1994247437 -0.046333078295
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.716680 0.109681 0.688723 }
+        <Binormal> { -0.273705 -0.847087 0.419716 }
+      }
+      <Normal> { -0.756310 0.469893 0.455153 }
+    }
+    <Vertex> 2655 {
+      0.440038561821 -48.8779640198 0.148078873754
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.174319 -0.014621 0.984581 }
+        <Binormal> { -0.461670 -0.883198 0.068623 }
+      }
+      <Normal> { -0.876492 0.467177 0.116001 }
+    }
+    <Vertex> 2656 {
+      0.942890048027 -48.9201393127 2.98825407028
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.193837 -0.051322 0.979690 }
+        <Binormal> { -0.558949 -0.826413 0.067299 }
+      }
+      <Normal> { -0.807031 0.560869 0.184545 }
+    }
+    <Vertex> 2657 {
+      0.440038561821 -48.8779640198 0.148078873754
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.174319 -0.014621 0.984581 }
+        <Binormal> { -0.461670 -0.883198 0.068623 }
+      }
+      <Normal> { -0.876492 0.467177 0.116001 }
+    }
+    <Vertex> 2658 {
+      -0.911751627922 -50.7432327271 0.326278179884
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.157715 -0.010037 0.987434 }
+        <Binormal> { -0.827922 -0.541617 0.126733 }
+      }
+      <Normal> { -0.544786 0.838221 0.023316 }
+    }
+    <Vertex> 2659 {
+      -0.504589498043 -50.7589683533 3.18356585503
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.171284 -0.005981 0.985204 }
+        <Binormal> { -0.834556 -0.532237 0.141861 }
+      }
+      <Normal> { -0.522233 0.846461 0.103519 }
+    }
+    <Vertex> 2660 {
+      0.942890048027 -48.9201393127 2.98825407028
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.193837 -0.051322 0.979690 }
+        <Binormal> { -0.558949 -0.826413 0.067299 }
+      }
+      <Normal> { -0.807031 0.560869 0.184545 }
+    }
+    <Vertex> 2661 {
+      -0.504589498043 -50.7589683533 3.18356585503
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.171284 -0.005981 0.985204 }
+        <Binormal> { -0.834556 -0.532237 0.141861 }
+      }
+      <Normal> { -0.522233 0.846461 0.103519 }
+    }
+    <Vertex> 2662 {
+      0.0177282951772 -50.7756881714 5.67254209518
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.196718 -0.008859 0.980420 }
+        <Binormal> { -0.822419 -0.543248 0.160107 }
+      }
+      <Normal> { -0.541642 0.838282 0.062075 }
+    }
+    <Vertex> 2663 {
+      1.41633689404 -48.948261261 5.46205568314
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.187961 -0.011165 0.982113 }
+        <Binormal> { -0.568699 -0.807957 0.099655 }
+      }
+      <Normal> { -0.814478 0.578570 0.042817 }
+    }
+    <Vertex> 2664 {
+      -6.83783054352 -48.7851028442 3.69864606857
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.351085 -0.935648 0.036085 }
+        <Binormal> { 0.142428 0.091453 0.985561 }
+      }
+      <Normal> { 0.924161 0.344279 -0.165502 }
+    }
+    <Vertex> 2665 {
+      -7.27520275116 -48.7457008362 1.14718580246
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.299385 -0.953126 0.043820 }
+        <Binormal> { -0.016065 0.040882 0.998989 }
+      }
+      <Normal> { 0.955901 0.293588 0.003357 }
+    }
+    <Vertex> 2666 {
+      -7.83629846573 -46.1326217651 0.979065775871
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.150715 -0.550489 0.821125 }
+        <Binormal> { -0.639396 0.576823 0.504066 }
+      }
+      <Normal> { 0.761010 0.564898 0.318888 }
+    }
+    <Vertex> 2667 {
+      -7.28152084351 -46.8105506897 3.64229416847
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.219153 -0.975294 0.027834 }
+        <Binormal> { 0.049038 0.036709 0.900162 }
+      }
+      <Normal> { 0.784448 0.616443 -0.067873 }
+    }
+    <Vertex> 2668 {
+      -6.83783054352 -48.7851028442 3.69864606857
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.351085 -0.935648 0.036085 }
+        <Binormal> { 0.142428 0.091453 0.985561 }
+      }
+      <Normal> { 0.924161 0.344279 -0.165502 }
+    }
+    <Vertex> 2669 {
+      -7.28152084351 -46.8105506897 3.64229416847
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.219153 -0.975294 0.027834 }
+        <Binormal> { 0.049038 0.036709 0.900162 }
+      }
+      <Normal> { 0.784448 0.616443 -0.067873 }
+    }
+    <Vertex> 2670 {
+      -7.12337827682 -46.8284339905 5.819024086
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.172556 -0.727841 0.663681 }
+        <Binormal> { -0.460305 0.493173 0.660528 }
+      }
+      <Normal> { 0.751213 0.659291 0.031251 }
+    }
+    <Vertex> 2671 {
+      -6.32068920135 -48.8457641602 6.068151474
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.432506 -0.900031 0.053695 }
+        <Binormal> { 0.038994 0.078168 0.996160 }
+      }
+      <Normal> { 0.901944 0.426313 -0.068758 }
+    }
+    <Vertex> 2672 {
+      -6.83783054352 -48.7851028442 3.69864606857
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.351085 -0.935648 0.036085 }
+        <Binormal> { 0.142428 0.091453 0.985561 }
+      }
+      <Normal> { 0.924161 0.344279 -0.165502 }
+    }
+    <Vertex> 2673 {
+      -6.32068920135 -48.8457641602 6.068151474
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.432506 -0.900031 0.053695 }
+        <Binormal> { 0.038994 0.078168 0.996160 }
+      }
+      <Normal> { 0.901944 0.426313 -0.068758 }
+    }
+    <Vertex> 2674 {
+      -5.24020338058 -50.7472610474 6.05281829834
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.469688 -0.882821 0.004561 }
+        <Binormal> { 0.059246 0.036188 0.903368 }
+      }
+      <Normal> { 0.598926 0.797601 -0.071230 }
+    }
+    <Vertex> 2675 {
+      -5.8965716362 -50.6836547852 3.73361134529
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.444124 -0.895814 0.016498 }
+        <Binormal> { 0.096944 0.064602 0.898041 }
+      }
+      <Normal> { 0.617176 0.777184 -0.122532 }
+    }
+    <Vertex> 2676 {
+      -6.83783054352 -48.7851028442 3.69864606857
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.351085 -0.935648 0.036085 }
+        <Binormal> { 0.142428 0.091453 0.985561 }
+      }
+      <Normal> { 0.924161 0.344279 -0.165502 }
+    }
+    <Vertex> 2677 {
+      -5.8965716362 -50.6836547852 3.73361134529
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.444124 -0.895814 0.016498 }
+        <Binormal> { 0.096944 0.064602 0.898041 }
+      }
+      <Normal> { 0.617176 0.777184 -0.122532 }
+    }
+    <Vertex> 2678 {
+      -6.41803026199 -50.6478309631 1.18665266037
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.427652 -0.903770 0.017699 }
+        <Binormal> { 0.006792 0.020935 0.904890 }
+      }
+      <Normal> { 0.636402 0.771020 -0.022614 }
+    }
+    <Vertex> 2679 {
+      -7.27520275116 -48.7457008362 1.14718580246
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.299385 -0.953126 0.043820 }
+        <Binormal> { -0.016065 0.040882 0.998989 }
+      }
+      <Normal> { 0.955901 0.293588 0.003357 }
+    }
+    <Vertex> 2680 {
+      -7.00479793549 -48.7851028442 -1.17924892902
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.198945 -0.978349 0.057043 }
+        <Binormal> { -0.413086 -0.030980 0.909356 }
+      }
+      <Normal> { 0.880398 0.241371 0.408155 }
+    }
+    <Vertex> 2681 {
+      -5.63585758209 -48.844203949 -2.94354152679
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.132375 -0.985541 0.105767 }
+        <Binormal> { -0.822425 -0.049707 0.566151 }
+      }
+      <Normal> { 0.549486 0.185919 0.814539 }
+    }
+    <Vertex> 2682 {
+      -5.62817716599 -46.1204185486 -2.99657797813
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.007071 -0.998782 0.048831 }
+        <Binormal> { -0.842160 0.032267 0.538043 }
+      }
+      <Normal> { 0.538865 0.023530 0.842036 }
+    }
+    <Vertex> 2683 {
+      -6.97407722473 -46.0848350525 -1.3913949728
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.011341 -0.996864 0.078318 }
+        <Binormal> { -0.511447 0.072944 0.854397 }
+      }
+      <Normal> { 0.858058 0.085574 0.506333 }
+    }
+    <Vertex> 2684 {
+      -7.00479793549 -48.7851028442 -1.17924892902
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.198945 -0.978349 0.057043 }
+        <Binormal> { -0.413086 -0.030980 0.909356 }
+      }
+      <Normal> { 0.880398 0.241371 0.408155 }
+    }
+    <Vertex> 2685 {
+      -6.97407722473 -46.0848350525 -1.3913949728
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.011341 -0.996864 0.078318 }
+        <Binormal> { -0.511447 0.072944 0.854397 }
+      }
+      <Normal> { 0.858058 0.085574 0.506333 }
+    }
+    <Vertex> 2686 {
+      -7.83629846573 -46.1326217651 0.979065775871
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.373370 -0.766463 -0.522618 }
+        <Binormal> { 0.050810 -0.516780 0.794201 }
+      }
+      <Normal> { 0.761010 0.564898 0.318888 }
+    }
+    <Vertex> 2687 {
+      -7.27520275116 -48.7457008362 1.14718580246
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.299385 -0.953126 0.043820 }
+        <Binormal> { -0.016065 0.040882 0.998989 }
+      }
+      <Normal> { 0.955901 0.293588 0.003357 }
+    }
+    <Vertex> 2688 {
+      -7.00479793549 -48.7851028442 -1.17924892902
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.198945 -0.978349 0.057043 }
+        <Binormal> { -0.413086 -0.030980 0.909356 }
+      }
+      <Normal> { 0.880398 0.241371 0.408155 }
+    }
+    <Vertex> 2689 {
+      -7.27520275116 -48.7457008362 1.14718580246
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.299385 -0.953126 0.043820 }
+        <Binormal> { -0.016065 0.040882 0.998989 }
+      }
+      <Normal> { 0.955901 0.293588 0.003357 }
+    }
+    <Vertex> 2690 {
+      -6.41803026199 -50.6478309631 1.18665266037
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.411284 -0.911491 0.005398 }
+        <Binormal> { 0.016451 0.012736 0.897183 }
+      }
+      <Normal> { 0.636402 0.771020 -0.022614 }
+    }
+    <Vertex> 2691 {
+      -6.14702367783 -50.6836547852 -1.19620907307
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.411718 -0.911275 -0.008141 }
+        <Binormal> { -0.291475 -0.139291 0.850893 }
+      }
+      <Normal> { 0.605976 0.725455 0.326334 }
+    }
+    <Vertex> 2692 {
+      -7.00479793549 -48.7851028442 -1.17924892902
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.198945 -0.978349 0.057043 }
+        <Binormal> { -0.413086 -0.030980 0.909356 }
+      }
+      <Normal> { 0.880398 0.241371 0.408155 }
+    }
+    <Vertex> 2693 {
+      -6.14702367783 -50.6836547852 -1.19620907307
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.411718 -0.911275 -0.008141 }
+        <Binormal> { -0.291475 -0.139291 0.850893 }
+      }
+      <Normal> { 0.605976 0.725455 0.326334 }
+    }
+    <Vertex> 2694 {
+      -5.07577371597 -50.2330970764 -2.55521178246
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.393917 -0.913337 0.103176 }
+        <Binormal> { -0.691796 -0.225506 0.644991 }
+      }
+      <Normal> { 0.473861 0.538682 0.696585 }
+    }
+    <Vertex> 2695 {
+      -5.63585758209 -48.844203949 -2.94354152679
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.132375 -0.985541 0.105767 }
+        <Binormal> { -0.822425 -0.049707 0.566151 }
+      }
+      <Normal> { 0.549486 0.185919 0.814539 }
+    }
+    <Vertex> 2696 {
+      -2.77761793137 -48.8639030457 -3.80857586861
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.993541 -0.025172 -0.110644 }
+        <Binormal> { -0.006196 -0.985631 0.168593 }
+      }
+      <Normal> { 0.107456 0.166967 0.980071 }
+    }
+    <Vertex> 2697 {
+      -0.158378407359 -48.8639030457 -3.60632967949
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.994663 -0.058251 0.085165 }
+        <Binormal> { -0.070649 -0.851250 0.242893 }
+      }
+      <Normal> { -0.515610 0.274392 0.811670 }
+    }
+    <Vertex> 2698 {
+      -0.0735220164061 -46.1398277283 -3.62481999397
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.997187 0.021583 0.071775 }
+        <Binormal> { 0.015215 -0.899887 0.059224 }
+      }
+      <Normal> { -0.496414 0.048647 0.866695 }
+    }
+    <Vertex> 2699 {
+      -2.77761793137 -46.1322822571 -3.80857586861
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.990137 0.084191 -0.111986 }
+        <Binormal> { 0.084702 -0.996364 -0.000159 }
+      }
+      <Normal> { 0.105258 0.008789 0.994385 }
+    }
+    <Vertex> 2700 {
+      -2.77761793137 -48.8639030457 -3.80857586861
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.993541 -0.025172 -0.110644 }
+        <Binormal> { -0.006196 -0.985631 0.168593 }
+      }
+      <Normal> { 0.107456 0.166967 0.980071 }
+    }
+    <Vertex> 2701 {
+      -2.77761793137 -46.1322822571 -3.80857586861
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.990137 0.084191 -0.111986 }
+        <Binormal> { 0.084702 -0.996364 -0.000159 }
+      }
+      <Normal> { 0.105258 0.008789 0.994385 }
+    }
+    <Vertex> 2702 {
+      -5.62817716599 -46.1204185486 -2.99657797813
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.959696 0.021970 -0.280181 }
+        <Binormal> { 0.025092 -0.959078 0.010742 }
+      }
+      <Normal> { 0.538865 0.023530 0.842036 }
+    }
+    <Vertex> 2703 {
+      -5.63585758209 -48.844203949 -2.94354152679
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.957722 -0.043605 -0.284370 }
+        <Binormal> { 0.017352 -0.936360 0.202019 }
+      }
+      <Normal> { 0.549486 0.185919 0.814539 }
+    }
+    <Vertex> 2704 {
+      -2.77761793137 -48.8639030457 -3.80857586861
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.993541 -0.025172 -0.110644 }
+        <Binormal> { -0.006196 -0.985631 0.168593 }
+      }
+      <Normal> { 0.107456 0.166967 0.980071 }
+    }
+    <Vertex> 2705 {
+      -5.63585758209 -48.844203949 -2.94354152679
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.957722 -0.043605 -0.284370 }
+        <Binormal> { 0.017352 -0.936360 0.202019 }
+      }
+      <Normal> { 0.549486 0.185919 0.814539 }
+    }
+    <Vertex> 2706 {
+      -5.07577371597 -50.2330970764 -2.55521178246
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.947625 -0.167941 -0.271668 }
+        <Binormal> { 0.029357 -0.788834 0.590049 }
+      }
+      <Normal> { 0.473861 0.538682 0.696585 }
+    }
+    <Vertex> 2707 {
+      -2.94619321823 -50.7449073792 -3.25358939171
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.195029 -0.741418 -0.642078 }
+        <Binormal> { -0.118697 -0.201993 0.197191 }
+      }
+      <Normal> { 0.090243 0.668020 0.738609 }
+    }
+    <Vertex> 2708 {
+      -2.77761793137 -48.8639030457 -3.80857586861
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.993541 -0.025172 -0.110644 }
+        <Binormal> { -0.006196 -0.985631 0.168593 }
+      }
+      <Normal> { 0.107456 0.166967 0.980071 }
+    }
+    <Vertex> 2709 {
+      -2.94619321823 -50.7449073792 -3.25358939171
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.195029 -0.741418 -0.642078 }
+        <Binormal> { -0.118697 -0.201993 0.197191 }
+      }
+      <Normal> { 0.090243 0.668020 0.738609 }
+    }
+    <Vertex> 2710 {
+      -1.03521823883 -50.2603187561 -3.10762906075
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.993838 -0.009377 0.110443 }
+        <Binormal> { -0.079871 -0.672477 0.661630 }
+      }
+      <Normal> { -0.387951 0.669393 0.633534 }
+    }
+    <Vertex> 2711 {
+      -0.158378407359 -48.8639030457 -3.60632967949
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.994663 -0.058251 0.085165 }
+        <Binormal> { -0.070649 -0.851250 0.242893 }
+      }
+      <Normal> { -0.515610 0.274392 0.811670 }
+    }
+    <Vertex> 2712 {
+      0.493561476469 -48.8639030457 -2.16878032684
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.183438 -0.063680 0.980967 }
+        <Binormal> { -0.377340 -0.924313 0.010560 }
+      }
+      <Normal> { -0.895810 0.368542 0.248329 }
+    }
+    <Vertex> 2713 {
+      0.440038561821 -48.8779640198 0.148078873754
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { -0.058980 -0.077267 0.995264 }
+        <Binormal> { -0.473928 -0.865499 -0.095278 }
+      }
+      <Normal> { -0.876492 0.467177 0.116001 }
+    }
+    <Vertex> 2714 {
+      1.39152395725 -46.1994247437 -0.046333078295
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { -0.054194 -0.717593 0.694351 }
+        <Binormal> { -0.652886 -0.500478 -0.568188 }
+      }
+      <Normal> { -0.756310 0.469893 0.455153 }
+    }
+    <Vertex> 2715 {
+      0.832987964153 -46.1624603271 -2.2427418232
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.391170 0.109366 0.913797 }
+        <Binormal> { -0.101857 -0.980988 0.161009 }
+      }
+      <Normal> { -0.899686 0.160070 0.406110 }
+    }
+    <Vertex> 2716 {
+      0.493561476469 -48.8639030457 -2.16878032684
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.183438 -0.063680 0.980967 }
+        <Binormal> { -0.377340 -0.924313 0.010560 }
+      }
+      <Normal> { -0.895810 0.368542 0.248329 }
+    }
+    <Vertex> 2717 {
+      0.832987964153 -46.1624603271 -2.2427418232
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.391170 0.109366 0.913797 }
+        <Binormal> { -0.101857 -0.980988 0.161009 }
+      }
+      <Normal> { -0.899686 0.160070 0.406110 }
+    }
+    <Vertex> 2718 {
+      -0.0735220164061 -46.1398277283 -3.62481999397
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.502235 0.040539 0.863780 }
+        <Binormal> { -0.006885 -0.864077 0.044556 }
+      }
+      <Normal> { -0.496414 0.048647 0.866695 }
+    }
+    <Vertex> 2719 {
+      -0.158378407359 -48.8639030457 -3.60632967949
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.395011 -0.070253 0.915986 }
+        <Binormal> { -0.308361 -0.792911 0.072165 }
+      }
+      <Normal> { -0.515610 0.274392 0.811670 }
+    }
+    <Vertex> 2720 {
+      0.493561476469 -48.8639030457 -2.16878032684
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.183438 -0.063680 0.980967 }
+        <Binormal> { -0.377340 -0.924313 0.010560 }
+      }
+      <Normal> { -0.895810 0.368542 0.248329 }
+    }
+    <Vertex> 2721 {
+      -0.158378407359 -48.8639030457 -3.60632967949
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.395011 -0.070253 0.915986 }
+        <Binormal> { -0.308361 -0.792911 0.072165 }
+      }
+      <Normal> { -0.515610 0.274392 0.811670 }
+    }
+    <Vertex> 2722 {
+      -1.03521823883 -50.2603187561 -3.10762906075
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { -0.778894 -0.357411 0.515346 }
+        <Binormal> { -0.571401 0.293527 -0.660044 }
+      }
+      <Normal> { -0.387951 0.669393 0.633534 }
+    }
+    <Vertex> 2723 {
+      -0.658663630486 -50.7449073792 -2.02374267578
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { -0.099044 -0.344462 0.933561 }
+        <Binormal> { -0.829277 -0.487304 -0.267784 }
+      }
+      <Normal> { -0.541673 0.819819 0.185583 }
+    }
+    <Vertex> 2724 {
+      0.493561476469 -48.8639030457 -2.16878032684
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.183438 -0.063680 0.980967 }
+        <Binormal> { -0.377340 -0.924313 0.010560 }
+      }
+      <Normal> { -0.895810 0.368542 0.248329 }
+    }
+    <Vertex> 2725 {
+      -0.658663630486 -50.7449073792 -2.02374267578
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { -0.099044 -0.344462 0.933561 }
+        <Binormal> { -0.829277 -0.487304 -0.267784 }
+      }
+      <Normal> { -0.541673 0.819819 0.185583 }
+    }
+    <Vertex> 2726 {
+      -0.911751627922 -50.7432327271 0.326278179884
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { -0.128474 -0.109810 0.985615 }
+        <Binormal> { -0.828724 -0.533953 -0.167513 }
+      }
+      <Normal> { -0.544786 0.838221 0.023316 }
+    }
+    <Vertex> 2727 {
+      0.440038561821 -48.8779640198 0.148078873754
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { -0.058980 -0.077267 0.995264 }
+        <Binormal> { -0.473928 -0.865499 -0.095278 }
+      }
+      <Normal> { -0.876492 0.467177 0.116001 }
+    }
+    <Vertex> 2728 {
+      -3.45191907883 -51.3442077637 -1.5886297226
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { -0.991038 0.022605 0.131656 }
+        <Binormal> { -0.123920 0.212293 -0.969253 }
+      }
+      <Normal> { 0.039766 0.977111 0.208930 }
+    }
+    <Vertex> 2729 {
+      -6.14702367783 -50.6836547852 -1.19620907307
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { -0.964698 0.246400 0.092977 }
+        <Binormal> { 0.012958 0.371156 -0.849158 }
+      }
+      <Normal> { 0.605976 0.725455 0.326334 }
+    }
+    <Vertex> 2730 {
+      -6.41803026199 -50.6478309631 1.18665266037
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { -0.957962 0.238553 0.159377 }
+        <Binormal> { -0.128277 0.079764 -0.890424 }
+      }
+      <Normal> { 0.636402 0.771020 -0.022614 }
+    }
+    <Vertex> 2731 {
+      -3.74732756615 -51.3234329224 0.792742729187
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { -0.918815 0.050380 -0.391459 }
+        <Binormal> { 0.391264 -0.009848 -0.919623 }
+      }
+      <Normal> { 0.019929 0.999786 -0.002228 }
+    }
+    <Vertex> 2732 {
+      -3.45191907883 -51.3442077637 -1.5886297226
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { -0.991038 0.022605 0.131656 }
+        <Binormal> { -0.123920 0.212293 -0.969253 }
+      }
+      <Normal> { 0.039766 0.977111 0.208930 }
+    }
+    <Vertex> 2733 {
+      -3.74732756615 -51.3234329224 0.792742729187
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { -0.918815 0.050380 -0.391459 }
+        <Binormal> { 0.391264 -0.009848 -0.919623 }
+      }
+      <Normal> { 0.019929 0.999786 -0.002228 }
+    }
+    <Vertex> 2734 {
+      -0.911751627922 -50.7432327271 0.326278179884
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { -0.963377 -0.200072 0.178540 }
+        <Binormal> { -0.154321 -0.074804 -0.916519 }
+      }
+      <Normal> { -0.544786 0.838221 0.023316 }
+    }
+    <Vertex> 2735 {
+      -0.658663630486 -50.7449073792 -2.02374267578
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { -0.971776 -0.203715 0.118957 }
+        <Binormal> { -0.135329 0.115909 -0.907027 }
+      }
+      <Normal> { -0.541673 0.819819 0.185583 }
+    }
+    <Vertex> 2736 {
+      -3.45191907883 -51.3442077637 -1.5886297226
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { -0.991038 0.022605 0.131656 }
+        <Binormal> { -0.123920 0.212293 -0.969253 }
+      }
+      <Normal> { 0.039766 0.977111 0.208930 }
+    }
+    <Vertex> 2737 {
+      -0.658663630486 -50.7449073792 -2.02374267578
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { -0.971776 -0.203715 0.118957 }
+        <Binormal> { -0.135329 0.115909 -0.907027 }
+      }
+      <Normal> { -0.541673 0.819819 0.185583 }
+    }
+    <Vertex> 2738 {
+      -1.03521823883 -50.2603187561 -3.10762906075
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { -0.778894 -0.357411 0.515346 }
+        <Binormal> { -0.571401 0.293527 -0.660044 }
+      }
+      <Normal> { -0.387951 0.669393 0.633534 }
+    }
+    <Vertex> 2739 {
+      -2.94619321823 -50.7449073792 -3.25358939171
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.195029 -0.741418 -0.642078 }
+        <Binormal> { -0.118697 -0.201993 0.197191 }
+      }
+      <Normal> { 0.090243 0.668020 0.738609 }
+    }
+    <Vertex> 2740 {
+      -3.45191907883 -51.3442077637 -1.5886297226
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { -0.991038 0.022605 0.131656 }
+        <Binormal> { -0.123920 0.212293 -0.969253 }
+      }
+      <Normal> { 0.039766 0.977111 0.208930 }
+    }
+    <Vertex> 2741 {
+      -2.94619321823 -50.7449073792 -3.25358939171
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.195029 -0.741418 -0.642078 }
+        <Binormal> { -0.118697 -0.201993 0.197191 }
+      }
+      <Normal> { 0.090243 0.668020 0.738609 }
+    }
+    <Vertex> 2742 {
+      -5.07577371597 -50.2330970764 -2.55521178246
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { -0.953927 0.271669 0.127355 }
+        <Binormal> { 0.120637 0.724840 -0.642597 }
+      }
+      <Normal> { 0.473861 0.538682 0.696585 }
+    }
+    <Vertex> 2743 {
+      -6.14702367783 -50.6836547852 -1.19620907307
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { -0.964698 0.246400 0.092977 }
+        <Binormal> { 0.012958 0.371156 -0.849158 }
+      }
+      <Normal> { 0.605976 0.725455 0.326334 }
+    }
+    <Vertex> 2744 {
+      -3.2849509716 -51.3442077637 3.49696779251
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.996686 -0.016036 -0.079753 }
+        <Binormal> { 0.079660 -0.006276 0.996781 }
+      }
+      <Normal> { 0.019196 0.999786 0.004761 }
+    }
+    <Vertex> 2745 {
+      -0.504589498043 -50.7589683533 3.18356585503
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.978329 0.203017 -0.040692 }
+        <Binormal> { 0.055460 -0.080025 0.934140 }
+      }
+      <Normal> { -0.522233 0.846461 0.103519 }
+    }
+    <Vertex> 2746 {
+      -0.911751627922 -50.7432327271 0.326278179884
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.966599 0.201176 -0.158788 }
+        <Binormal> { 0.137791 0.063968 0.919822 }
+      }
+      <Normal> { -0.544786 0.838221 0.023316 }
+    }
+    <Vertex> 2747 {
+      -3.74732756615 -51.3234329224 0.792742729187
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { -0.918815 0.050380 -0.391459 }
+        <Binormal> { 0.391264 -0.009848 -0.919623 }
+      }
+      <Normal> { 0.019929 0.999786 -0.002228 }
+    }
+    <Vertex> 2748 {
+      -3.2849509716 -51.3442077637 3.49696779251
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.996686 -0.016036 -0.079753 }
+        <Binormal> { 0.079660 -0.006276 0.996781 }
+      }
+      <Normal> { 0.019196 0.999786 0.004761 }
+    }
+    <Vertex> 2749 {
+      -3.74732756615 -51.3234329224 0.792742729187
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { -0.918815 0.050380 -0.391459 }
+        <Binormal> { 0.391264 -0.009848 -0.919623 }
+      }
+      <Normal> { 0.019929 0.999786 -0.002228 }
+    }
+    <Vertex> 2750 {
+      -6.41803026199 -50.6478309631 1.18665266037
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.958326 -0.243440 -0.149491 }
+        <Binormal> { 0.120766 -0.073465 0.893814 }
+      }
+      <Normal> { 0.636402 0.771020 -0.022614 }
+    }
+    <Vertex> 2751 {
+      -5.8965716362 -50.6836547852 3.73361134529
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.969215 -0.243176 -0.038561 }
+        <Binormal> { 0.059766 0.094961 0.903341 }
+      }
+      <Normal> { 0.617176 0.777184 -0.122532 }
+    }
+    <Vertex> 2752 {
+      -3.2849509716 -51.3442077637 3.49696779251
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.996686 -0.016036 -0.079753 }
+        <Binormal> { 0.079660 -0.006276 0.996781 }
+      }
+      <Normal> { 0.019196 0.999786 0.004761 }
+    }
+    <Vertex> 2753 {
+      -5.8965716362 -50.6836547852 3.73361134529
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.969215 -0.243176 -0.038561 }
+        <Binormal> { 0.059766 0.094961 0.903341 }
+      }
+      <Normal> { 0.617176 0.777184 -0.122532 }
+    }
+    <Vertex> 2754 {
+      -5.24020338058 -50.7472610474 6.05281829834
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.970718 -0.237898 0.033331 }
+        <Binormal> { -0.009640 0.089107 0.916729 }
+      }
+      <Normal> { 0.598926 0.797601 -0.071230 }
+    }
+    <Vertex> 2755 {
+      -2.66425800323 -51.3829689026 5.89520645142
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.993143 -0.008101 0.116628 }
+        <Binormal> { -0.116719 -0.012128 0.993077 }
+      }
+      <Normal> { 0.010620 0.999847 0.013459 }
+    }
+    <Vertex> 2756 {
+      -3.2849509716 -51.3442077637 3.49696779251
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.996686 -0.016036 -0.079753 }
+        <Binormal> { 0.079660 -0.006276 0.996781 }
+      }
+      <Normal> { 0.019196 0.999786 0.004761 }
+    }
+    <Vertex> 2757 {
+      -2.66425800323 -51.3829689026 5.89520645142
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.993143 -0.008101 0.116628 }
+        <Binormal> { -0.116719 -0.012128 0.993077 }
+      }
+      <Normal> { 0.010620 0.999847 0.013459 }
+    }
+    <Vertex> 2758 {
+      0.0177282951772 -50.7756881714 5.67254209518
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.978533 0.205156 0.019608 }
+        <Binormal> { -0.003702 -0.071363 0.931408 }
+      }
+      <Normal> { -0.541642 0.838282 0.062075 }
+    }
+    <Vertex> 2759 {
+      -0.504589498043 -50.7589683533 3.18356585503
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.978329 0.203017 -0.040692 }
+        <Binormal> { 0.055460 -0.080025 0.934140 }
+      }
+      <Normal> { -0.522233 0.846461 0.103519 }
+    }
+    <Vertex> 2760 {
+      -32.2457199097 -46.794960022 6.21348571777
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.985270 0.059258 -0.160411 }
+        <Binormal> { 0.151132 0.137148 0.978940 }
+      }
+      <Normal> { -0.076876 0.988952 -0.126682 }
+    }
+    <Vertex> 2761 {
+      -28.439666748 -46.6000061035 5.65814161301
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.988253 0.050620 -0.144197 }
+        <Binormal> { 0.121738 0.309441 0.942962 }
+      }
+      <Normal> { -0.078219 0.950163 -0.301706 }
+    }
+    <Vertex> 2762 {
+      -29.0641727448 -46.7786598206 5.05120182037
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.990503 0.042016 -0.130914 }
+        <Binormal> { 0.121797 0.173216 0.977113 }
+      }
+      <Normal> { -0.043916 0.984619 -0.169073 }
+    }
+    <Vertex> 2763 {
+      -32.5823898315 -46.8943901062 5.4639005661
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.990107 0.034649 -0.135969 }
+        <Binormal> { 0.132740 0.082682 0.987669 }
+      }
+      <Normal> { -0.045625 0.995941 -0.077242 }
+    }
+    <Vertex> 2764 {
+      -32.2457199097 -46.794960022 6.21348571777
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.985270 0.059258 -0.160411 }
+        <Binormal> { 0.151132 0.137148 0.978940 }
+      }
+      <Normal> { -0.076876 0.988952 -0.126682 }
+    }
+    <Vertex> 2765 {
+      -32.5823898315 -46.8943901062 5.4639005661
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.990107 0.034649 -0.135969 }
+        <Binormal> { 0.132740 0.082682 0.987669 }
+      }
+      <Normal> { -0.045625 0.995941 -0.077242 }
+    }
+    <Vertex> 2766 {
+      -35.836479187 -47.0156555176 5.98122358322
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.985681 0.049244 -0.161269 }
+        <Binormal> { 0.159169 0.043733 0.986204 }
+      }
+      <Normal> { -0.043611 0.998352 -0.037233 }
+    }
+    <Vertex> 2767 {
+      -35.836479187 -47.0156555176 6.81605768204
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.984403 0.060503 -0.165195 }
+        <Binormal> { 0.161833 0.056783 0.985169 }
+      }
+      <Normal> { -0.068758 0.996551 -0.046144 }
+    }
+    <Vertex> 2768 {
+      -32.2457199097 -46.794960022 6.21348571777
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.985270 0.059258 -0.160411 }
+        <Binormal> { 0.151132 0.137148 0.978940 }
+      }
+      <Normal> { -0.076876 0.988952 -0.126682 }
+    }
+    <Vertex> 2769 {
+      -35.836479187 -47.0156555176 6.81605768204
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.984403 0.060503 -0.165195 }
+        <Binormal> { 0.161833 0.056783 0.985169 }
+      }
+      <Normal> { -0.068758 0.996551 -0.046144 }
+    }
+    <Vertex> 2770 {
+      -35.836479187 -47.0156555176 7.77505731583
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.974511 0.068781 -0.213536 }
+        <Binormal> { 0.210770 0.045166 0.976432 }
+      }
+      <Normal> { -0.086306 0.995880 -0.027436 }
+    }
+    <Vertex> 2771 {
+      -31.5272483826 -46.6787719727 6.64657020569
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.978213 0.084877 -0.189461 }
+        <Binormal> { 0.176554 0.139917 0.974258 }
+      }
+      <Normal> { -0.102542 0.987060 -0.123173 }
+    }
+    <Vertex> 2772 {
+      -32.2457199097 -46.794960022 6.21348571777
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.985270 0.059258 -0.160411 }
+        <Binormal> { 0.151132 0.137148 0.978940 }
+      }
+      <Normal> { -0.076876 0.988952 -0.126682 }
+    }
+    <Vertex> 2773 {
+      -31.5272483826 -46.6787719727 6.64657020569
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.978213 0.084877 -0.189461 }
+        <Binormal> { 0.176554 0.139917 0.974258 }
+      }
+      <Normal> { -0.102542 0.987060 -0.123173 }
+    }
+    <Vertex> 2774 {
+      -27.243730545 -46.2700843811 6.11081171036
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.988328 0.073749 -0.133303 }
+        <Binormal> { 0.081276 0.484350 0.870551 }
+      }
+      <Normal> { -0.157964 0.869045 -0.468764 }
+    }
+    <Vertex> 2775 {
+      -28.439666748 -46.6000061035 5.65814161301
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.988253 0.050620 -0.144197 }
+        <Binormal> { 0.121738 0.309441 0.942962 }
+      }
+      <Normal> { -0.078219 0.950163 -0.301706 }
+    }
+    <Vertex> 2776 {
+      -15.6160821915 -43.0216407776 4.97855806351
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999258 0.034794 0.016494 }
+        <Binormal> { -0.015436 -0.030437 0.999371 }
+      }
+      <Normal> { -0.042665 0.998627 0.029756 }
+    }
+    <Vertex> 2777 {
+      -12.869436264 -43.2817878723 4.98730802536
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.995540 -0.094292 0.003171 }
+        <Binormal> { 0.002752 0.060457 0.933659 }
+      }
+      <Normal> { 0.439589 0.896207 -0.059328 }
+    }
+    <Vertex> 2778 {
+      -13.0206918716 -43.8855476379 4.52873849869
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.996299 -0.085955 0.000545 }
+        <Binormal> { 0.068474 0.797415 0.588504 }
+      }
+      <Normal> { 0.164892 0.576464 -0.800287 }
+    }
+    <Vertex> 2779 {
+      -15.4543781281 -43.698764801 4.53465223312
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.999426 0.033755 -0.002969 }
+        <Binormal> { -0.026635 0.836714 0.546900 }
+      }
+      <Normal> { -0.014069 0.546739 -0.837153 }
+    }
+    <Vertex> 2780 {
+      -15.6160821915 -43.0216407776 4.97855806351
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999258 0.034794 0.016494 }
+        <Binormal> { -0.015436 -0.030437 0.999371 }
+      }
+      <Normal> { -0.042665 0.998627 0.029756 }
+    }
+    <Vertex> 2781 {
+      -15.4543781281 -43.698764801 4.53465223312
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.999426 0.033755 -0.002969 }
+        <Binormal> { -0.026635 0.836714 0.546900 }
+      }
+      <Normal> { -0.014069 0.546739 -0.837153 }
+    }
+    <Vertex> 2782 {
+      -17.9432296753 -44.0518035889 4.54336023331
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.988192 0.152499 0.014882 }
+        <Binormal> { -0.137388 0.841553 0.499248 }
+      }
+      <Normal> { -0.215430 0.471969 -0.854854 }
+    }
+    <Vertex> 2783 {
+      -18.4063129425 -43.4832763672 4.89034605026
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.986109 0.163149 0.031175 }
+        <Binormal> { -0.139642 0.718962 0.654514 }
+      }
+      <Normal> { -0.269234 0.619190 -0.737602 }
+    }
+    <Vertex> 2784 {
+      -15.6160821915 -43.0216407776 4.97855806351
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999258 0.034794 0.016494 }
+        <Binormal> { -0.015436 -0.030437 0.999371 }
+      }
+      <Normal> { -0.042665 0.998627 0.029756 }
+    }
+    <Vertex> 2785 {
+      -18.4063129425 -43.4832763672 4.89034605026
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.986109 0.163149 0.031175 }
+        <Binormal> { -0.139642 0.718962 0.654514 }
+      }
+      <Normal> { -0.269234 0.619190 -0.737602 }
+    }
+    <Vertex> 2786 {
+      -18.7911338806 -43.6828460693 4.95490074158
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.988102 0.148871 0.038633 }
+        <Binormal> { 0.122699 -0.910909 0.371926 }
+      }
+      <Normal> { -0.218696 0.343455 0.913327 }
+    }
+    <Vertex> 2787 {
+      -15.7758388519 -43.2697982788 5.0936756134
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.998995 0.032749 0.030587 }
+        <Binormal> { 0.024435 -0.970239 0.240766 }
+      }
+      <Normal> { -0.032685 0.239937 0.970214 }
+    }
+    <Vertex> 2788 {
+      -15.6160821915 -43.0216407776 4.97855806351
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999258 0.034794 0.016494 }
+        <Binormal> { -0.015436 -0.030437 0.999371 }
+      }
+      <Normal> { -0.042665 0.998627 0.029756 }
+    }
+    <Vertex> 2789 {
+      -15.7758388519 -43.2697982788 5.0936756134
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.998995 0.032749 0.030587 }
+        <Binormal> { 0.024435 -0.970239 0.240766 }
+      }
+      <Normal> { -0.032685 0.239937 0.970214 }
+    }
+    <Vertex> 2790 {
+      -12.785610199 -43.4859733582 5.13877391815
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.996527 -0.082740 0.009354 }
+        <Binormal> { -0.080047 -0.931448 0.288816 }
+      }
+      <Normal> { 0.220771 0.271493 0.936766 }
+    }
+    <Vertex> 2791 {
+      -12.869436264 -43.2817878723 4.98730802536
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.995540 -0.094292 0.003171 }
+        <Binormal> { 0.002752 0.060457 0.933659 }
+      }
+      <Normal> { 0.439589 0.896207 -0.059328 }
+    }
+    <Vertex> 2792 {
+      10.2288036346 -46.3321914673 5.27788925171
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.965386 0.254546 0.056891 }
+        <Binormal> { 0.017798 -0.281891 0.959250 }
+      }
+      <Normal> { -0.258889 0.925382 0.276742 }
+    }
+    <Vertex> 2793 {
+      12.8063755035 -45.5362701416 5.32952833176
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.969897 0.090959 0.225891 }
+        <Binormal> { -0.197036 -0.251914 0.947439 }
+      }
+      <Normal> { -0.138066 0.963897 0.227577 }
+    }
+    <Vertex> 2794 {
+      13.6160917282 -45.1307907104 3.98471426964
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.958441 0.033214 0.283351 }
+        <Binormal> { -0.274063 -0.166382 0.946526 }
+      }
+      <Normal> { -0.044618 0.986023 0.160405 }
+    }
+    <Vertex> 2795 {
+      10.8328866959 -45.6497917175 3.73147511482
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.976330 0.163742 0.141313 }
+        <Binormal> { -0.096670 -0.254090 0.962311 }
+      }
+      <Normal> { -0.195166 0.952910 0.232002 }
+    }
+    <Vertex> 2796 {
+      10.2288036346 -46.3321914673 5.27788925171
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.965386 0.254546 0.056891 }
+        <Binormal> { 0.017798 -0.281891 0.959250 }
+      }
+      <Normal> { -0.258889 0.925382 0.276742 }
+    }
+    <Vertex> 2797 {
+      10.8328866959 -45.6497917175 3.73147511482
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.976330 0.163742 0.141313 }
+        <Binormal> { -0.096670 -0.254090 0.962311 }
+      }
+      <Normal> { -0.195166 0.952910 0.232002 }
+    }
+    <Vertex> 2798 {
+      7.87486314774 -46.3629455566 3.91087985039
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.975623 0.214132 0.048023 }
+        <Binormal> { 0.017687 -0.293256 0.948285 }
+      }
+      <Normal> { -0.099948 0.950041 0.295663 }
+    }
+    <Vertex> 2799 {
+      7.57126808167 -47.1446342468 5.57672595978
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.969107 0.245889 0.019259 }
+        <Binormal> { 0.069061 -0.344370 0.921599 }
+      }
+      <Normal> { -0.073214 0.932401 0.353893 }
+    }
+    <Vertex> 2800 {
+      10.2288036346 -46.3321914673 5.27788925171
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.965386 0.254546 0.056891 }
+        <Binormal> { 0.017798 -0.281891 0.959250 }
+      }
+      <Normal> { -0.258889 0.925382 0.276742 }
+    }
+    <Vertex> 2801 {
+      7.57126808167 -47.1446342468 5.57672595978
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.969107 0.245889 0.019259 }
+        <Binormal> { 0.069061 -0.344370 0.921599 }
+      }
+      <Normal> { -0.073214 0.932401 0.353893 }
+    }
+    <Vertex> 2802 {
+      7.21483469009 -47.7228813171 6.93306970596
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.958740 0.279297 -0.053019 }
+        <Binormal> { 0.095142 -0.142596 0.969277 }
+      }
+      <Normal> { -0.094089 0.983581 0.153935 }
+    }
+    <Vertex> 2803 {
+      9.7493057251 -46.8299179077 6.38475418091
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.942612 0.328967 -0.057131 }
+        <Binormal> { 0.097676 -0.108068 0.989292 }
+      }
+      <Normal> { -0.325449 0.935942 0.134373 }
+    }
+    <Vertex> 2804 {
+      10.2288036346 -46.3321914673 5.27788925171
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.965386 0.254546 0.056891 }
+        <Binormal> { 0.017798 -0.281891 0.959250 }
+      }
+      <Normal> { -0.258889 0.925382 0.276742 }
+    }
+    <Vertex> 2805 {
+      9.7493057251 -46.8299179077 6.38475418091
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.942612 0.328967 -0.057131 }
+        <Binormal> { 0.097676 -0.108068 0.989292 }
+      }
+      <Normal> { -0.325449 0.935942 0.134373 }
+    }
+    <Vertex> 2806 {
+      12.2629232407 -45.8080177307 6.12763595581
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.977675 0.130678 0.164544 }
+        <Binormal> { -0.159171 -0.049771 0.985281 }
+      }
+      <Normal> { -0.172826 0.984680 0.021821 }
+    }
+    <Vertex> 2807 {
+      12.8063755035 -45.5362701416 5.32952833176
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.969897 0.090959 0.225891 }
+        <Binormal> { -0.197036 -0.251914 0.947439 }
+      }
+      <Normal> { -0.138066 0.963897 0.227577 }
+    }
+    <Vertex> 2808 {
+      15.4369297028 -45.6994018555 5.93446779251
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.922456 -0.160042 0.351372 }
+        <Binormal> { -0.369940 -0.105910 0.922963 }
+      }
+      <Normal> { 0.113285 0.980895 0.157964 }
+    }
+    <Vertex> 2809 {
+      18.0939750671 -46.3420524597 6.81605768204
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.905164 -0.215321 0.366491 }
+        <Binormal> { -0.374156 0.005336 0.927229 }
+      }
+      <Normal> { 0.214606 0.973327 0.080996 }
+    }
+    <Vertex> 2810 {
+      18.0939750671 -46.3420524597 5.66645431519
+      <UV>  {
+        -0.042124 0.762705
+        <Tangent> { 0.858963 -0.277904 0.430059 }
+        <Binormal> { -0.428254 0.069399 0.900204 }
+      }
+      <Normal> { 0.311869 0.947111 0.075350 }
+    }
+    <Vertex> 2811 {
+      15.963886261 -45.5114936829 4.7080578804
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.857809 -0.260135 0.443276 }
+        <Binormal> { -0.459579 -0.002627 0.887818 }
+      }
+      <Normal> { 0.209754 0.971374 0.111454 }
+    }
+    <Vertex> 2812 {
+      15.4369297028 -45.6994018555 5.93446779251
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.922456 -0.160042 0.351372 }
+        <Binormal> { -0.369940 -0.105910 0.922963 }
+      }
+      <Normal> { 0.113285 0.980895 0.157964 }
+    }
+    <Vertex> 2813 {
+      15.963886261 -45.5114936829 4.7080578804
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.857809 -0.260135 0.443276 }
+        <Binormal> { -0.459579 -0.002627 0.887818 }
+      }
+      <Normal> { 0.209754 0.971374 0.111454 }
+    }
+    <Vertex> 2814 {
+      13.6160917282 -45.1307907104 3.98471426964
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.958441 0.033214 0.283351 }
+        <Binormal> { -0.274063 -0.166382 0.946526 }
+      }
+      <Normal> { -0.044618 0.986023 0.160405 }
+    }
+    <Vertex> 2815 {
+      12.8063755035 -45.5362701416 5.32952833176
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.969897 0.090959 0.225891 }
+        <Binormal> { -0.197036 -0.251914 0.947439 }
+      }
+      <Normal> { -0.138066 0.963897 0.227577 }
+    }
+    <Vertex> 2816 {
+      15.4369297028 -45.6994018555 5.93446779251
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.922456 -0.160042 0.351372 }
+        <Binormal> { -0.369940 -0.105910 0.922963 }
+      }
+      <Normal> { 0.113285 0.980895 0.157964 }
+    }
+    <Vertex> 2817 {
+      12.8063755035 -45.5362701416 5.32952833176
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.969897 0.090959 0.225891 }
+        <Binormal> { -0.197036 -0.251914 0.947439 }
+      }
+      <Normal> { -0.138066 0.963897 0.227577 }
+    }
+    <Vertex> 2818 {
+      12.2629232407 -45.8080177307 6.12763595581
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.977675 0.130678 0.164544 }
+        <Binormal> { -0.159171 -0.049771 0.985281 }
+      }
+      <Normal> { -0.172826 0.984680 0.021821 }
+    }
+    <Vertex> 2819 {
+      15.125834465 -45.7836952209 6.63962650299
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.955842 -0.080469 0.282650 }
+        <Binormal> { -0.270664 0.133373 0.953281 }
+      }
+      <Normal> { 0.126957 0.986633 -0.101993 }
+    }
+    <Vertex> 2820 {
+      15.4369297028 -45.6994018555 5.93446779251
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.922456 -0.160042 0.351372 }
+        <Binormal> { -0.369940 -0.105910 0.922963 }
+      }
+      <Normal> { 0.113285 0.980895 0.157964 }
+    }
+    <Vertex> 2821 {
+      15.125834465 -45.7836952209 6.63962650299
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.955842 -0.080469 0.282650 }
+        <Binormal> { -0.270664 0.133373 0.953281 }
+      }
+      <Normal> { 0.126957 0.986633 -0.101993 }
+    }
+    <Vertex> 2822 {
+      18.1633930206 -46.2581520081 7.53617238998
+      <UV>  {
+        -0.073782 0.891829
+        <Tangent> { 0.922587 -0.182632 0.339823 }
+        <Binormal> { -0.302602 0.203651 0.930984 }
+      }
+      <Normal> { 0.226356 0.964293 -0.137364 }
+    }
+    <Vertex> 2823 {
+      18.0939750671 -46.3420524597 6.81605768204
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.905164 -0.215321 0.366491 }
+        <Binormal> { -0.374156 0.005336 0.927229 }
+      }
+      <Normal> { 0.214606 0.973327 0.080996 }
+    }
+    <Vertex> 2824 {
+      4.70082521439 -47.0310783386 6.02321386337
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.986053 0.020404 -0.165178 }
+        <Binormal> { 0.164701 -0.262112 0.950829 }
+      }
+      <Normal> { 0.015503 0.964599 0.263222 }
+    }
+    <Vertex> 2825 {
+      7.57126808167 -47.1446342468 5.57672595978
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.987364 -0.039061 -0.153581 }
+        <Binormal> { 0.129376 -0.338176 0.917760 }
+      }
+      <Normal> { -0.073214 0.932401 0.353893 }
+    }
+    <Vertex> 2826 {
+      7.87486314774 -46.3629455566 3.91087985039
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.984445 0.015120 -0.175040 }
+        <Binormal> { 0.170765 -0.273569 0.936775 }
+      }
+      <Normal> { -0.099948 0.950041 0.295663 }
+    }
+    <Vertex> 2827 {
+      5.00261640549 -46.564704895 4.4854722023
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.963978 0.143322 -0.224063 }
+        <Binormal> { 0.249977 -0.200461 0.947243 }
+      }
+      <Normal> { -0.095065 0.968505 0.230049 }
+    }
+    <Vertex> 2828 {
+      4.70082521439 -47.0310783386 6.02321386337
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.986053 0.020404 -0.165178 }
+        <Binormal> { 0.164701 -0.262112 0.950829 }
+      }
+      <Normal> { 0.015503 0.964599 0.263222 }
+    }
+    <Vertex> 2829 {
+      5.00261640549 -46.564704895 4.4854722023
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.963978 0.143322 -0.224063 }
+        <Binormal> { 0.249977 -0.200461 0.947243 }
+      }
+      <Normal> { -0.095065 0.968505 0.230049 }
+    }
+    <Vertex> 2830 {
+      2.69136691093 -47.1336174011 5.11570978165
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.963394 0.155777 -0.218187 }
+        <Binormal> { 0.196272 0.026687 0.885682 }
+      }
+      <Normal> { -0.548265 0.830683 0.096469 }
+    }
+    <Vertex> 2831 {
+      2.35582065582 -47.2150650024 6.44751358032
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.981102 0.076976 -0.177518 }
+        <Binormal> { 0.148485 0.140972 0.881770 }
+      }
+      <Normal> { -0.509751 0.858760 -0.051454 }
+    }
+    <Vertex> 2832 {
+      4.70082521439 -47.0310783386 6.02321386337
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.986053 0.020404 -0.165178 }
+        <Binormal> { 0.164701 -0.262112 0.950829 }
+      }
+      <Normal> { 0.015503 0.964599 0.263222 }
+    }
+    <Vertex> 2833 {
+      2.35582065582 -47.2150650024 6.44751358032
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.981102 0.076976 -0.177518 }
+        <Binormal> { 0.148485 0.140972 0.881770 }
+      }
+      <Normal> { -0.509751 0.858760 -0.051454 }
+    }
+    <Vertex> 2834 {
+      1.88778138161 -47.2446708679 7.49466085434
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.991361 0.014259 -0.130387 }
+        <Binormal> { 0.113618 0.135211 0.878645 }
+      }
+      <Normal> { -0.469893 0.879543 -0.074587 }
+    }
+    <Vertex> 2835 {
+      4.2893652916 -47.3603858948 7.294672966
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.990549 -0.088922 -0.104426 }
+        <Binormal> { 0.094958 -0.104247 0.989511 }
+      }
+      <Normal> { 0.067873 0.992859 0.098086 }
+    }
+    <Vertex> 2836 {
+      4.70082521439 -47.0310783386 6.02321386337
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.986053 0.020404 -0.165178 }
+        <Binormal> { 0.164701 -0.262112 0.950829 }
+      }
+      <Normal> { 0.015503 0.964599 0.263222 }
+    }
+    <Vertex> 2837 {
+      4.2893652916 -47.3603858948 7.294672966
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.990549 -0.088922 -0.104426 }
+        <Binormal> { 0.094958 -0.104247 0.989511 }
+      }
+      <Normal> { 0.067873 0.992859 0.098086 }
+    }
+    <Vertex> 2838 {
+      7.21483469009 -47.7228813171 6.93306970596
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.987159 -0.081081 -0.137634 }
+        <Binormal> { 0.122893 -0.139009 0.963322 }
+      }
+      <Normal> { -0.094089 0.983581 0.153935 }
+    }
+    <Vertex> 2839 {
+      7.57126808167 -47.1446342468 5.57672595978
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.987364 -0.039061 -0.153581 }
+        <Binormal> { 0.129376 -0.338176 0.917760 }
+      }
+      <Normal> { -0.073214 0.932401 0.353893 }
+    }
+    <Vertex> 2840 {
+      1.2746001482 -48.9201393127 6.6797914505
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.535249 0.838161 -0.104856 }
+        <Binormal> { -0.112905 0.194006 0.974436 }
+      }
+      <Normal> { -0.836360 0.510849 -0.198614 }
+    }
+    <Vertex> 2841 {
+      2.35582065582 -47.2150650024 6.44751358032
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.532016 0.838985 -0.114293 }
+        <Binormal> { 0.054981 0.085635 0.884548 }
+      }
+      <Normal> { -0.509751 0.858760 -0.051454 }
+    }
+    <Vertex> 2842 {
+      2.69136691093 -47.1336174011 5.11570978165
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.521636 0.530113 0.668488 }
+        <Binormal> { -0.504162 -0.416830 0.723957 }
+      }
+      <Normal> { -0.548265 0.830683 0.096469 }
+    }
+    <Vertex> 2843 {
+      1.41633689404 -48.948261261 5.46205568314
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.587321 0.800057 -0.122320 }
+        <Binormal> { 0.105027 0.074479 0.991435 }
+      }
+      <Normal> { -0.814478 0.578570 0.042817 }
+    }
+    <Vertex> 2844 {
+      1.2746001482 -48.9201393127 6.6797914505
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.535249 0.838161 -0.104856 }
+        <Binormal> { -0.112905 0.194006 0.974436 }
+      }
+      <Normal> { -0.836360 0.510849 -0.198614 }
+    }
+    <Vertex> 2845 {
+      1.41633689404 -48.948261261 5.46205568314
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.587321 0.800057 -0.122320 }
+        <Binormal> { 0.105027 0.074479 0.991435 }
+      }
+      <Normal> { -0.814478 0.578570 0.042817 }
+    }
+    <Vertex> 2846 {
+      0.0177282951772 -50.7756881714 5.67254209518
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.568259 0.816824 -0.099397 }
+        <Binormal> { 0.134027 0.018563 0.918788 }
+      }
+      <Normal> { -0.541642 0.838282 0.062075 }
+    }
+    <Vertex> 2847 {
+      0.110105976462 -50.7769508362 6.91763019562
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.528206 0.842235 -0.107882 }
+        <Binormal> { 0.021205 0.104424 0.919065 }
+      }
+      <Normal> { -0.584979 0.807215 -0.078219 }
+    }
+    <Vertex> 2848 {
+      1.2746001482 -48.9201393127 6.6797914505
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.535249 0.838161 -0.104856 }
+        <Binormal> { -0.112905 0.194006 0.974436 }
+      }
+      <Normal> { -0.836360 0.510849 -0.198614 }
+    }
+    <Vertex> 2849 {
+      0.110105976462 -50.7769508362 6.91763019562
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.528206 0.842235 -0.107882 }
+        <Binormal> { 0.021205 0.104424 0.919065 }
+      }
+      <Normal> { -0.584979 0.807215 -0.078219 }
+    }
+    <Vertex> 2850 {
+      -0.0748328492045 -50.7720985413 7.78572463989
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.496910 0.861198 -0.106859 }
+        <Binormal> { -0.033085 0.132490 0.913914 }
+      }
+      <Normal> { -0.611316 0.779717 -0.135166 }
+    }
+    <Vertex> 2851 {
+      0.924965977669 -48.8779640198 7.55813837051
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.484939 0.871586 -0.071918 }
+        <Binormal> { -0.138389 0.157633 0.977223 }
+      }
+      <Normal> { -0.847652 0.491653 -0.199347 }
+    }
+    <Vertex> 2852 {
+      1.2746001482 -48.9201393127 6.6797914505
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.535249 0.838161 -0.104856 }
+        <Binormal> { -0.112905 0.194006 0.974436 }
+      }
+      <Normal> { -0.836360 0.510849 -0.198614 }
+    }
+    <Vertex> 2853 {
+      0.924965977669 -48.8779640198 7.55813837051
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.484939 0.871586 -0.071918 }
+        <Binormal> { -0.138389 0.157633 0.977223 }
+      }
+      <Normal> { -0.847652 0.491653 -0.199347 }
+    }
+    <Vertex> 2854 {
+      1.88778138161 -47.2446708679 7.49466085434
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.520695 0.850412 -0.075340 }
+        <Binormal> { 0.002835 0.074239 0.857577 }
+      }
+      <Normal> { -0.469893 0.879543 -0.074587 }
+    }
+    <Vertex> 2855 {
+      2.35582065582 -47.2150650024 6.44751358032
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.532016 0.838985 -0.114293 }
+        <Binormal> { 0.054981 0.085635 0.884548 }
+      }
+      <Normal> { -0.509751 0.858760 -0.051454 }
+    }
+    <Vertex> 2856 {
+      -2.48471975327 -51.4161338806 7.35861587524
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.990983 -0.000552 -0.133984 }
+        <Binormal> { 0.133965 -0.012271 0.990892 }
+      }
+      <Normal> { -0.001862 0.999908 0.012635 }
+    }
+    <Vertex> 2857 {
+      0.110105976462 -50.7769508362 6.91763019562
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.962016 0.237333 -0.134898 }
+        <Binormal> { 0.090328 0.154160 0.915389 }
+      }
+      <Normal> { -0.584979 0.807215 -0.078219 }
+    }
+    <Vertex> 2858 {
+      0.0177282951772 -50.7756881714 5.67254209518
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.965210 0.227515 -0.128865 }
+        <Binormal> { 0.122148 0.009884 0.932350 }
+      }
+      <Normal> { -0.541642 0.838282 0.062075 }
+    }
+    <Vertex> 2859 {
+      -2.66425800323 -51.3829689026 5.89520645142
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.992489 -0.004265 -0.122257 }
+        <Binormal> { 0.122181 -0.014656 0.992383 }
+      }
+      <Normal> { 0.010620 0.999847 0.013459 }
+    }
+    <Vertex> 2860 {
+      -2.48471975327 -51.4161338806 7.35861587524
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.990983 -0.000552 -0.133984 }
+        <Binormal> { 0.133965 -0.012271 0.990892 }
+      }
+      <Normal> { -0.001862 0.999908 0.012635 }
+    }
+    <Vertex> 2861 {
+      -2.66425800323 -51.3829689026 5.89520645142
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.992489 -0.004265 -0.122257 }
+        <Binormal> { 0.122181 -0.014656 0.992383 }
+      }
+      <Normal> { 0.010620 0.999847 0.013459 }
+    }
+    <Vertex> 2862 {
+      -5.24020338058 -50.7472610474 6.05281829834
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.965842 -0.234661 -0.109923 }
+        <Binormal> { 0.104390 0.002961 0.910901 }
+      }
+      <Normal> { 0.598926 0.797601 -0.071230 }
+    }
+    <Vertex> 2863 {
+      -5.10648155212 -50.7948303223 7.75242185593
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.966513 -0.229765 -0.114286 }
+        <Binormal> { 0.084663 -0.101069 0.919184 }
+      }
+      <Normal> { 0.581347 0.812830 0.035829 }
+    }
+    <Vertex> 2864 {
+      -2.48471975327 -51.4161338806 7.35861587524
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.990983 -0.000552 -0.133984 }
+        <Binormal> { 0.133965 -0.012271 0.990892 }
+      }
+      <Normal> { -0.001862 0.999908 0.012635 }
+    }
+    <Vertex> 2865 {
+      -5.10648155212 -50.7948303223 7.75242185593
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.966513 -0.229765 -0.114286 }
+        <Binormal> { 0.084663 -0.101069 0.919184 }
+      }
+      <Normal> { 0.581347 0.812830 0.035829 }
+    }
+    <Vertex> 2866 {
+      -5.22015094757 -50.8244781494 9.15188980103
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.963866 -0.229157 -0.135829 }
+        <Binormal> { 0.097278 -0.136252 0.920176 }
+      }
+      <Normal> { 0.570421 0.819056 0.060976 }
+    }
+    <Vertex> 2867 {
+      -2.58736848831 -51.4389228821 8.47804546356
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.985222 0.008228 -0.171087 }
+        <Binormal> { 0.171058 0.003890 0.985240 }
+      }
+      <Normal> { -0.013245 0.999908 -0.001648 }
+    }
+    <Vertex> 2868 {
+      -2.48471975327 -51.4161338806 7.35861587524
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.990983 -0.000552 -0.133984 }
+        <Binormal> { 0.133965 -0.012271 0.990892 }
+      }
+      <Normal> { -0.001862 0.999908 0.012635 }
+    }
+    <Vertex> 2869 {
+      -2.58736848831 -51.4389228821 8.47804546356
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.985222 0.008228 -0.171087 }
+        <Binormal> { 0.171058 0.003890 0.985240 }
+      }
+      <Normal> { -0.013245 0.999908 -0.001648 }
+    }
+    <Vertex> 2870 {
+      -0.0748328492045 -50.7720985413 7.78572463989
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.957208 0.244647 -0.154598 }
+        <Binormal> { 0.087475 0.223891 0.895908 }
+      }
+      <Normal> { -0.611316 0.779717 -0.135166 }
+    }
+    <Vertex> 2871 {
+      0.110105976462 -50.7769508362 6.91763019562
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.962016 0.237333 -0.134898 }
+        <Binormal> { 0.090328 0.154160 0.915389 }
+      }
+      <Normal> { -0.584979 0.807215 -0.078219 }
+    }
+    <Vertex> 2872 {
+      -6.35178422928 -48.8701400757 7.84871864319
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.105943 0.004565 0.994362 }
+        <Binormal> { -0.501984 0.862913 -0.057445 }
+      }
+      <Normal> { 0.857723 0.505264 0.094638 }
+    }
+    <Vertex> 2873 {
+      -5.10648155212 -50.7948303223 7.75242185593
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.006468 -0.024908 0.999669 }
+        <Binormal> { -0.813453 0.580923 0.019738 }
+      }
+      <Normal> { 0.581347 0.812830 0.035829 }
+    }
+    <Vertex> 2874 {
+      -5.24020338058 -50.7472610474 6.05281829834
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.029470 -0.020659 0.999352 }
+        <Binormal> { -0.795613 0.600637 0.035879 }
+      }
+      <Normal> { 0.598926 0.797601 -0.071230 }
+    }
+    <Vertex> 2875 {
+      -6.32068920135 -48.8457641602 6.068151474
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.017459 -0.013687 0.999754 }
+        <Binormal> { -0.425267 0.900522 0.004901 }
+      }
+      <Normal> { 0.901944 0.426313 -0.068758 }
+    }
+    <Vertex> 2876 {
+      -6.35178422928 -48.8701400757 7.84871864319
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.105943 0.004565 0.994362 }
+        <Binormal> { -0.501984 0.862913 -0.057445 }
+      }
+      <Normal> { 0.857723 0.505264 0.094638 }
+    }
+    <Vertex> 2877 {
+      -6.32068920135 -48.8457641602 6.068151474
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.017459 -0.013687 0.999754 }
+        <Binormal> { -0.425267 0.900522 0.004901 }
+      }
+      <Normal> { 0.901944 0.426313 -0.068758 }
+    }
+    <Vertex> 2878 {
+      -7.12337827682 -46.8284339905 5.819024086
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.172556 -0.727841 0.663681 }
+        <Binormal> { -0.460305 0.493173 0.660528 }
+      }
+      <Normal> { 0.751213 0.659291 0.031251 }
+    }
+    <Vertex> 2879 {
+      -7.38470172882 -46.8359718323 7.40207386017
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.278129 0.064673 0.958364 }
+        <Binormal> { -0.709830 0.658197 -0.250418 }
+      }
+      <Normal> { 0.643544 0.750725 0.149022 }
+    }
+    <Vertex> 2880 {
+      -6.35178422928 -48.8701400757 7.84871864319
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.105943 0.004565 0.994362 }
+        <Binormal> { -0.501984 0.862913 -0.057445 }
+      }
+      <Normal> { 0.857723 0.505264 0.094638 }
+    }
+    <Vertex> 2881 {
+      -7.38470172882 -46.8359718323 7.40207386017
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.278129 0.064673 0.958364 }
+        <Binormal> { -0.709830 0.658197 -0.250418 }
+      }
+      <Normal> { 0.643544 0.750725 0.149022 }
+    }
+    <Vertex> 2882 {
+      -7.951379776 -46.6358985901 8.6721162796
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.277692 0.068203 0.958246 }
+        <Binormal> { -0.822699 0.493711 -0.273551 }
+      }
+      <Normal> { 0.472976 0.868923 0.145787 }
+    }
+    <Vertex> 2883 {
+      -6.58069419861 -48.8748130798 9.32404899597
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.153323 -0.003130 0.988171 }
+        <Binormal> { -0.534970 0.840360 -0.080343 }
+      }
+      <Normal> { 0.835200 0.541063 0.098086 }
+    }
+    <Vertex> 2884 {
+      -6.35178422928 -48.8701400757 7.84871864319
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.105943 0.004565 0.994362 }
+        <Binormal> { -0.501984 0.862913 -0.057445 }
+      }
+      <Normal> { 0.857723 0.505264 0.094638 }
+    }
+    <Vertex> 2885 {
+      -6.58069419861 -48.8748130798 9.32404899597
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.153323 -0.003130 0.988171 }
+        <Binormal> { -0.534970 0.840360 -0.080343 }
+      }
+      <Normal> { 0.835200 0.541063 0.098086 }
+    }
+    <Vertex> 2886 {
+      -5.22015094757 -50.8244781494 9.15188980103
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.118321 -0.011854 0.992905 }
+        <Binormal> { -0.813967 0.573589 -0.090150 }
+      }
+      <Normal> { 0.570421 0.819056 0.060976 }
+    }
+    <Vertex> 2887 {
+      -5.10648155212 -50.7948303223 7.75242185593
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.006468 -0.024908 0.999669 }
+        <Binormal> { -0.813453 0.580923 0.019738 }
+      }
+      <Normal> { 0.581347 0.812830 0.035829 }
+    }
+    <Vertex> 2888 {
+      -15.8238964081 -44.5834503174 5.04812335968
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.998967 0.030720 0.033489 }
+        <Binormal> { 0.028032 -0.996556 0.077981 }
+      }
+      <Normal> { -0.033601 0.077029 0.996460 }
+    }
+    <Vertex> 2889 {
+      -12.9054822922 -44.6285820007 5.08613395691
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.999796 -0.015461 0.013022 }
+        <Binormal> { -0.016893 -0.988443 0.123394 }
+      }
+      <Normal> { 0.075137 0.122257 0.989624 }
+    }
+    <Vertex> 2890 {
+      -12.785610199 -43.4859733582 5.13877391815
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.927850 -0.369078 -0.053629 }
+        <Binormal> { -0.331180 -0.881018 0.333386 }
+      }
+      <Normal> { 0.220771 0.271493 0.936766 }
+    }
+    <Vertex> 2891 {
+      -15.7758388519 -43.2697982788 5.0936756134
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.998995 0.032749 0.030587 }
+        <Binormal> { 0.024435 -0.970239 0.240766 }
+      }
+      <Normal> { -0.032685 0.239937 0.970214 }
+    }
+    <Vertex> 2892 {
+      -15.8238964081 -44.5834503174 5.04812335968
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.998967 0.030720 0.033489 }
+        <Binormal> { 0.028032 -0.996556 0.077981 }
+      }
+      <Normal> { -0.033601 0.077029 0.996460 }
+    }
+    <Vertex> 2893 {
+      -15.7758388519 -43.2697982788 5.0936756134
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.998995 0.032749 0.030587 }
+        <Binormal> { 0.024435 -0.970239 0.240766 }
+      }
+      <Normal> { -0.032685 0.239937 0.970214 }
+    }
+    <Vertex> 2894 {
+      -18.7911338806 -43.6828460693 4.95490074158
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.884564 0.461768 0.065705 }
+        <Binormal> { 0.399179 -0.822266 0.404795 }
+      }
+      <Normal> { -0.218696 0.343455 0.913327 }
+    }
+    <Vertex> 2895 {
+      -18.7574539185 -44.7562904358 4.95203733444
+      <UV>  {
+        0.833333 0.458333
+        <Tangent> { 0.889602 0.454884 0.041083 }
+        <Binormal> { 0.445636 -0.884161 0.140000 }
+      }
+      <Normal> { -0.105441 0.103458 0.989013 }
+    }
+    <Vertex> 2896 {
+      -15.8238964081 -44.5834503174 5.04812335968
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.998967 0.030720 0.033489 }
+        <Binormal> { 0.028032 -0.996556 0.077981 }
+      }
+      <Normal> { -0.033601 0.077029 0.996460 }
+    }
+    <Vertex> 2897 {
+      -18.7574539185 -44.7562904358 4.95203733444
+      <UV>  {
+        0.833333 0.458333
+        <Tangent> { 0.889602 0.454884 0.041083 }
+        <Binormal> { 0.445636 -0.884161 0.140000 }
+      }
+      <Normal> { -0.105441 0.103458 0.989013 }
+    }
+    <Vertex> 2898 {
+      -19.4436321259 -46.0605812073 5.20842695236
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.945582 0.318611 -0.066046 }
+        <Binormal> { 0.115870 -0.149793 0.936310 }
+      }
+      <Normal> { -0.008850 0.987213 0.159032 }
+    }
+    <Vertex> 2899 {
+      -16.0988826752 -45.9154319763 5.16372203827
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.998177 -0.011763 0.059200 }
+        <Binormal> { -0.051042 -0.687762 0.723957 }
+      }
+      <Normal> { -0.017518 0.725486 0.687979 }
+    }
+    <Vertex> 2900 {
+      -15.8238964081 -44.5834503174 5.04812335968
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.998967 0.030720 0.033489 }
+        <Binormal> { 0.028032 -0.996556 0.077981 }
+      }
+      <Normal> { -0.033601 0.077029 0.996460 }
+    }
+    <Vertex> 2901 {
+      -16.0988826752 -45.9154319763 5.16372203827
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.998177 -0.011763 0.059200 }
+        <Binormal> { -0.051042 -0.687762 0.723957 }
+      }
+      <Normal> { -0.017518 0.725486 0.687979 }
+    }
+    <Vertex> 2902 {
+      -12.6800937653 -46.1402893066 5.60956001282
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.996200 -0.042442 0.076060 }
+        <Binormal> { -0.086972 -0.442487 0.892206 }
+      }
+      <Normal> { 0.028260 0.894406 0.446333 }
+    }
+    <Vertex> 2903 {
+      -12.9054822922 -44.6285820007 5.08613395691
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.999796 -0.015461 0.013022 }
+        <Binormal> { -0.016893 -0.988443 0.123394 }
+      }
+      <Normal> { 0.075137 0.122257 0.989624 }
+    }
+    <Vertex> 2904 {
+      10.2804718018 -46.6367454529 7.21623754501
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.927387 0.359016 -0.105170 }
+        <Binormal> { 0.083912 0.074331 0.993673 }
+      }
+      <Normal> { -0.366344 0.929655 -0.038606 }
+    }
+    <Vertex> 2905 {
+      12.8735876083 -45.5389289856 6.88317632675
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.968379 0.212263 0.131096 }
+        <Binormal> { -0.164862 0.150327 0.974399 }
+      }
+      <Normal> { -0.161046 0.970916 -0.177038 }
+    }
+    <Vertex> 2906 {
+      12.2629232407 -45.8080177307 6.12763595581
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.971796 0.202011 0.121671 }
+        <Binormal> { -0.115399 -0.042233 0.991821 }
+      }
+      <Normal> { -0.172826 0.984680 0.021821 }
+    }
+    <Vertex> 2907 {
+      9.7493057251 -46.8299179077 6.38475418091
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.932654 0.353100 -0.074009 }
+        <Binormal> { 0.116715 -0.101237 0.987826 }
+      }
+      <Normal> { -0.325449 0.935942 0.134373 }
+    }
+    <Vertex> 2908 {
+      10.2804718018 -46.6367454529 7.21623754501
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.927387 0.359016 -0.105170 }
+        <Binormal> { 0.083912 0.074331 0.993673 }
+      }
+      <Normal> { -0.366344 0.929655 -0.038606 }
+    }
+    <Vertex> 2909 {
+      9.7493057251 -46.8299179077 6.38475418091
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.932654 0.353100 -0.074009 }
+        <Binormal> { 0.116715 -0.101237 0.987826 }
+      }
+      <Normal> { -0.325449 0.935942 0.134373 }
+    }
+    <Vertex> 2910 {
+      7.21483469009 -47.7228813171 6.93306970596
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.930959 0.332336 -0.151225 }
+        <Binormal> { 0.199900 -0.129079 0.946942 }
+      }
+      <Normal> { -0.094089 0.983581 0.153935 }
+    }
+    <Vertex> 2911 {
+      7.57608127594 -47.6189346313 7.99008893967
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.922959 0.340377 -0.179694 }
+        <Binormal> { 0.141177 0.122748 0.957634 }
+      }
+      <Normal> { -0.146062 0.983703 -0.104556 }
+    }
+    <Vertex> 2912 {
+      10.2804718018 -46.6367454529 7.21623754501
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.927387 0.359016 -0.105170 }
+        <Binormal> { 0.083912 0.074331 0.993673 }
+      }
+      <Normal> { -0.366344 0.929655 -0.038606 }
+    }
+    <Vertex> 2913 {
+      7.57608127594 -47.6189346313 7.99008893967
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.922959 0.340377 -0.179694 }
+        <Binormal> { 0.141177 0.122748 0.957634 }
+      }
+      <Normal> { -0.146062 0.983703 -0.104556 }
+    }
+    <Vertex> 2914 {
+      7.88416528702 -47.3451957703 8.93755340576
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.921814 0.336283 -0.192801 }
+        <Binormal> { 0.166179 0.093601 0.957785 }
+      }
+      <Normal> { -0.141850 0.987274 -0.071871 }
+    }
+    <Vertex> 2915 {
+      10.8057422638 -46.3373565674 8.07565593719
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.929267 0.350611 -0.116342 }
+        <Binormal> { 0.093250 0.082096 0.992230 }
+      }
+      <Normal> { -0.353893 0.934233 -0.044038 }
+    }
+    <Vertex> 2916 {
+      10.2804718018 -46.6367454529 7.21623754501
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.927387 0.359016 -0.105170 }
+        <Binormal> { 0.083912 0.074331 0.993673 }
+      }
+      <Normal> { -0.366344 0.929655 -0.038606 }
+    }
+    <Vertex> 2917 {
+      10.8057422638 -46.3373565674 8.07565593719
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.929267 0.350611 -0.116342 }
+        <Binormal> { 0.093250 0.082096 0.992230 }
+      }
+      <Normal> { -0.353893 0.934233 -0.044038 }
+    }
+    <Vertex> 2918 {
+      13.5316972733 -45.2612876892 7.80175495148
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.965008 0.207324 0.160550 }
+        <Binormal> { -0.166039 0.009403 0.985863 }
+      }
+      <Normal> { -0.184118 0.982055 -0.040376 }
+    }
+    <Vertex> 2919 {
+      12.8735876083 -45.5389289856 6.88317632675
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.968379 0.212263 0.131096 }
+        <Binormal> { -0.164862 0.150327 0.974399 }
+      }
+      <Normal> { -0.161046 0.970916 -0.177038 }
+    }
+    <Vertex> 2920 {
+      15.5914325714 -45.5063819885 7.57914972305
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.924352 -0.060643 0.376691 }
+        <Binormal> { -0.333687 0.350156 0.875196 }
+      }
+      <Normal> { 0.181646 0.934904 -0.304788 }
+    }
+    <Vertex> 2921 {
+      18.3716411591 -46.0064659119 8.78964042664
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.877098 -0.140236 0.459383 }
+        <Binormal> { -0.380051 0.382133 0.842285 }
+      }
+      <Normal> { 0.288308 0.914212 -0.284677 }
+    }
+    <Vertex> 2922 {
+      18.1633930206 -46.2581520081 7.53617238998
+      <UV>  {
+        -0.042124 0.762705
+        <Tangent> { 0.910276 -0.131803 0.392462 }
+        <Binormal> { -0.360343 0.213875 0.907607 }
+      }
+      <Normal> { 0.226356 0.964293 -0.137364 }
+    }
+    <Vertex> 2923 {
+      15.125834465 -45.7836952209 6.63962650299
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.957554 -0.052324 0.283466 }
+        <Binormal> { -0.274340 0.133652 0.951397 }
+      }
+      <Normal> { 0.126957 0.986633 -0.101993 }
+    }
+    <Vertex> 2924 {
+      15.5914325714 -45.5063819885 7.57914972305
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.924352 -0.060643 0.376691 }
+        <Binormal> { -0.333687 0.350156 0.875196 }
+      }
+      <Normal> { 0.181646 0.934904 -0.304788 }
+    }
+    <Vertex> 2925 {
+      15.125834465 -45.7836952209 6.63962650299
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.957554 -0.052324 0.283466 }
+        <Binormal> { -0.274340 0.133652 0.951397 }
+      }
+      <Normal> { 0.126957 0.986633 -0.101993 }
+    }
+    <Vertex> 2926 {
+      12.2629232407 -45.8080177307 6.12763595581
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.971796 0.202011 0.121671 }
+        <Binormal> { -0.115399 -0.042233 0.991821 }
+      }
+      <Normal> { -0.172826 0.984680 0.021821 }
+    }
+    <Vertex> 2927 {
+      12.8735876083 -45.5389289856 6.88317632675
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.968379 0.212263 0.131096 }
+        <Binormal> { -0.164862 0.150327 0.974399 }
+      }
+      <Normal> { -0.161046 0.970916 -0.177038 }
+    }
+    <Vertex> 2928 {
+      15.5914325714 -45.5063819885 7.57914972305
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.924352 -0.060643 0.376691 }
+        <Binormal> { -0.333687 0.350156 0.875196 }
+      }
+      <Normal> { 0.181646 0.934904 -0.304788 }
+    }
+    <Vertex> 2929 {
+      12.8735876083 -45.5389289856 6.88317632675
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.968379 0.212263 0.131096 }
+        <Binormal> { -0.164862 0.150327 0.974399 }
+      }
+      <Normal> { -0.161046 0.970916 -0.177038 }
+    }
+    <Vertex> 2930 {
+      13.5316972733 -45.2612876892 7.80175495148
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.965008 0.207324 0.160550 }
+        <Binormal> { -0.166039 0.009403 0.985863 }
+      }
+      <Normal> { -0.184118 0.982055 -0.040376 }
+    }
+    <Vertex> 2931 {
+      16.0683994293 -45.2562675476 8.64517688751
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.884818 -0.071737 0.460381 }
+        <Binormal> { -0.450584 0.119721 0.884644 }
+      }
+      <Normal> { 0.116520 0.990356 -0.074679 }
+    }
+    <Vertex> 2932 {
+      15.5914325714 -45.5063819885 7.57914972305
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.924352 -0.060643 0.376691 }
+        <Binormal> { -0.333687 0.350156 0.875196 }
+      }
+      <Normal> { 0.181646 0.934904 -0.304788 }
+    }
+    <Vertex> 2933 {
+      16.0683994293 -45.2562675476 8.64517688751
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.884818 -0.071737 0.460381 }
+        <Binormal> { -0.450584 0.119721 0.884644 }
+      }
+      <Normal> { 0.116520 0.990356 -0.074679 }
+    }
+    <Vertex> 2934 {
+      18.5104732513 -45.7867698669 10.0472612381
+      <UV>  {
+        -0.073782 0.891829
+        <Tangent> { 0.855498 -0.148891 0.495938 }
+        <Binormal> { -0.471288 0.172759 0.864843 }
+      }
+      <Normal> { 0.221107 0.972442 -0.073763 }
+    }
+    <Vertex> 2935 {
+      18.3716411591 -46.0064659119 8.78964042664
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.877098 -0.140236 0.459383 }
+        <Binormal> { -0.380051 0.382133 0.842285 }
+      }
+      <Normal> { 0.288308 0.914212 -0.284677 }
+    }
+    <Vertex> 2936 {
+      4.5244178772 -47.3046188354 8.61648464203
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.981111 -0.064393 -0.182414 }
+        <Binormal> { 0.187778 0.090597 0.977977 }
+      }
+      <Normal> { 0.041078 0.994110 -0.099979 }
+    }
+    <Vertex> 2937 {
+      7.57608127594 -47.6189346313 7.99008893967
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.974628 -0.100385 -0.200056 }
+        <Binormal> { 0.207291 0.131124 0.944083 }
+      }
+      <Normal> { -0.146062 0.983703 -0.104556 }
+    }
+    <Vertex> 2938 {
+      7.21483469009 -47.7228813171 6.93306970596
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.980512 -0.111027 -0.162075 }
+        <Binormal> { 0.142323 -0.135686 0.953967 }
+      }
+      <Normal> { -0.094089 0.983581 0.153935 }
+    }
+    <Vertex> 2939 {
+      4.2893652916 -47.3603858948 7.294672966
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.990549 -0.088922 -0.104426 }
+        <Binormal> { 0.094958 -0.104247 0.989511 }
+      }
+      <Normal> { 0.067873 0.992859 0.098086 }
+    }
+    <Vertex> 2940 {
+      4.5244178772 -47.3046188354 8.61648464203
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.981111 -0.064393 -0.182414 }
+        <Binormal> { 0.187778 0.090597 0.977977 }
+      }
+      <Normal> { 0.041078 0.994110 -0.099979 }
+    }
+    <Vertex> 2941 {
+      4.2893652916 -47.3603858948 7.294672966
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.990549 -0.088922 -0.104426 }
+        <Binormal> { 0.094958 -0.104247 0.989511 }
+      }
+      <Normal> { 0.067873 0.992859 0.098086 }
+    }
+    <Vertex> 2942 {
+      1.88778138161 -47.2446708679 7.49466085434
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.992454 -0.041525 -0.115375 }
+        <Binormal> { 0.104575 0.128238 0.853394 }
+      }
+      <Normal> { -0.469893 0.879543 -0.074587 }
+    }
+    <Vertex> 2943 {
+      1.97434282303 -47.2131538391 8.99213886261
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.988701 -0.035462 -0.145647 }
+        <Binormal> { 0.131103 0.094399 0.866988 }
+      }
+      <Normal> { -0.449049 0.893002 -0.029328 }
+    }
+    <Vertex> 2944 {
+      4.5244178772 -47.3046188354 8.61648464203
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.981111 -0.064393 -0.182414 }
+        <Binormal> { 0.187778 0.090597 0.977977 }
+      }
+      <Normal> { 0.041078 0.994110 -0.099979 }
+    }
+    <Vertex> 2945 {
+      1.97434282303 -47.2131538391 8.99213886261
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.988701 -0.035462 -0.145647 }
+        <Binormal> { 0.131103 0.094399 0.866988 }
+      }
+      <Normal> { -0.449049 0.893002 -0.029328 }
+    }
+    <Vertex> 2946 {
+      2.14553070068 -47.1733779907 10.5122842789
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.980626 -0.012073 -0.195515 }
+        <Binormal> { 0.175367 0.113297 0.872578 }
+      }
+      <Normal> { -0.444624 0.895291 -0.026887 }
+    }
+    <Vertex> 2947 {
+      4.76059961319 -47.1455039978 9.8581237793
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.963949 -0.028861 -0.264516 }
+        <Binormal> { 0.265411 0.034712 0.963423 }
+      }
+      <Normal> { 0.030702 0.998535 -0.044435 }
+    }
+    <Vertex> 2948 {
+      4.5244178772 -47.3046188354 8.61648464203
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.981111 -0.064393 -0.182414 }
+        <Binormal> { 0.187778 0.090597 0.977977 }
+      }
+      <Normal> { 0.041078 0.994110 -0.099979 }
+    }
+    <Vertex> 2949 {
+      4.76059961319 -47.1455039978 9.8581237793
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.963949 -0.028861 -0.264516 }
+        <Binormal> { 0.265411 0.034712 0.963423 }
+      }
+      <Normal> { 0.030702 0.998535 -0.044435 }
+    }
+    <Vertex> 2950 {
+      7.88416528702 -47.3451957703 8.93755340576
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.966879 -0.080480 -0.242214 }
+        <Binormal> { 0.244916 0.103849 0.943158 }
+      }
+      <Normal> { -0.141850 0.987274 -0.071871 }
+    }
+    <Vertex> 2951 {
+      7.57608127594 -47.6189346313 7.99008893967
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.974628 -0.100385 -0.200056 }
+        <Binormal> { 0.207291 0.131124 0.944083 }
+      }
+      <Normal> { -0.146062 0.983703 -0.104556 }
+    }
+    <Vertex> 2952 {
+      0.774720609188 -48.8639030457 9.01376724243
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.550335 0.833987 -0.039960 }
+        <Binormal> { -0.019925 0.060962 0.997904 }
+      }
+      <Normal> { -0.835017 0.547868 -0.050142 }
+    }
+    <Vertex> 2953 {
+      1.97434282303 -47.2131538391 8.99213886261
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.587843 0.808906 -0.010598 }
+        <Binormal> { -0.014259 0.022000 0.888183 }
+      }
+      <Normal> { -0.449049 0.893002 -0.029328 }
+    }
+    <Vertex> 2954 {
+      1.88778138161 -47.2446708679 7.49466085434
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.549822 0.835002 -0.021639 }
+        <Binormal> { -0.043248 0.051178 0.875954 }
+      }
+      <Normal> { -0.469893 0.879543 -0.074587 }
+    }
+    <Vertex> 2955 {
+      0.924965977669 -48.8779640198 7.55813837051
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.484939 0.871586 -0.071918 }
+        <Binormal> { -0.138389 0.157633 0.977223 }
+      }
+      <Normal> { -0.847652 0.491653 -0.199347 }
+    }
+    <Vertex> 2956 {
+      0.774720609188 -48.8639030457 9.01376724243
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.550335 0.833987 -0.039960 }
+        <Binormal> { -0.019925 0.060962 0.997904 }
+      }
+      <Normal> { -0.835017 0.547868 -0.050142 }
+    }
+    <Vertex> 2957 {
+      0.924965977669 -48.8779640198 7.55813837051
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.484939 0.871586 -0.071918 }
+        <Binormal> { -0.138389 0.157633 0.977223 }
+      }
+      <Normal> { -0.847652 0.491653 -0.199347 }
+    }
+    <Vertex> 2958 {
+      -0.0748328492045 -50.7720985413 7.78572463989
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.492277 0.866613 -0.081523 }
+        <Binormal> { -0.053572 0.116376 0.913611 }
+      }
+      <Normal> { -0.611316 0.779717 -0.135166 }
+    }
+    <Vertex> 2959 {
+      -0.384465664625 -50.7704811096 9.14371776581
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.518630 0.853020 -0.058141 }
+        <Binormal> { -0.020122 0.075486 0.928013 }
+      }
+      <Normal> { -0.607135 0.790765 -0.077486 }
+    }
+    <Vertex> 2960 {
+      0.774720609188 -48.8639030457 9.01376724243
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.550335 0.833987 -0.039960 }
+        <Binormal> { -0.019925 0.060962 0.997904 }
+      }
+      <Normal> { -0.835017 0.547868 -0.050142 }
+    }
+    <Vertex> 2961 {
+      -0.384465664625 -50.7704811096 9.14371776581
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.518630 0.853020 -0.058141 }
+        <Binormal> { -0.020122 0.075486 0.928013 }
+      }
+      <Normal> { -0.607135 0.790765 -0.077486 }
+    }
+    <Vertex> 2962 {
+      -0.570455491543 -50.7704811096 10.6003293991
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.544753 0.837901 -0.034131 }
+        <Binormal> { 0.033011 0.016640 0.935368 }
+      }
+      <Normal> { -0.592730 0.805353 0.006592 }
+    }
+    <Vertex> 2963 {
+      0.749444842339 -48.8639030457 10.5749530792
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.602460 0.797910 -0.019530 }
+        <Binormal> { 0.007602 0.018718 0.999240 }
+      }
+      <Normal> { -0.817225 0.576250 -0.004578 }
+    }
+    <Vertex> 2964 {
+      0.774720609188 -48.8639030457 9.01376724243
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.550335 0.833987 -0.039960 }
+        <Binormal> { -0.019925 0.060962 0.997904 }
+      }
+      <Normal> { -0.835017 0.547868 -0.050142 }
+    }
+    <Vertex> 2965 {
+      0.749444842339 -48.8639030457 10.5749530792
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.602460 0.797910 -0.019530 }
+        <Binormal> { 0.007602 0.018718 0.999240 }
+      }
+      <Normal> { -0.817225 0.576250 -0.004578 }
+    }
+    <Vertex> 2966 {
+      2.14553070068 -47.1733779907 10.5122842789
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.613368 0.789546 -0.019919 }
+        <Binormal> { -0.003395 0.025348 0.900194 }
+      }
+      <Normal> { -0.444624 0.895291 -0.026887 }
+    }
+    <Vertex> 2967 {
+      1.97434282303 -47.2131538391 8.99213886261
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.587843 0.808906 -0.010598 }
+        <Binormal> { -0.014259 0.022000 0.888183 }
+      }
+      <Normal> { -0.449049 0.893002 -0.029328 }
+    }
+    <Vertex> 2968 {
+      -2.81323337555 -51.4465179443 9.84433937073
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.969482 0.009426 -0.244979 }
+        <Binormal> { 0.244830 0.013927 0.969430 }
+      }
+      <Normal> { -0.016388 0.999786 -0.010224 }
+    }
+    <Vertex> 2969 {
+      -0.384465664625 -50.7704811096 9.14371776581
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.936564 0.262680 -0.232049 }
+        <Binormal> { 0.163142 0.213456 0.900085 }
+      }
+      <Normal> { -0.607135 0.790765 -0.077486 }
+    }
+    <Vertex> 2970 {
+      -0.0748328492045 -50.7720985413 7.78572463989
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.928850 0.251278 -0.272207 }
+        <Binormal> { 0.178280 0.291954 0.877851 }
+      }
+      <Normal> { -0.611316 0.779717 -0.135166 }
+    }
+    <Vertex> 2971 {
+      -2.58736848831 -51.4389228821 8.47804546356
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.954878 0.009896 -0.296833 }
+        <Binormal> { 0.296790 0.005505 0.954922 }
+      }
+      <Normal> { -0.013245 0.999908 -0.001648 }
+    }
+    <Vertex> 2972 {
+      -2.81323337555 -51.4465179443 9.84433937073
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.969482 0.009426 -0.244979 }
+        <Binormal> { 0.244830 0.013927 0.969430 }
+      }
+      <Normal> { -0.016388 0.999786 -0.010224 }
+    }
+    <Vertex> 2973 {
+      -2.58736848831 -51.4389228821 8.47804546356
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.954878 0.009896 -0.296833 }
+        <Binormal> { 0.296790 0.005505 0.954922 }
+      }
+      <Normal> { -0.013245 0.999908 -0.001648 }
+    }
+    <Vertex> 2974 {
+      -5.22015094757 -50.8244781494 9.15188980103
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.937714 -0.222595 -0.266728 }
+        <Binormal> { 0.204892 -0.209325 0.895013 }
+      }
+      <Normal> { 0.570421 0.819056 0.060976 }
+    }
+    <Vertex> 2975 {
+      -5.30595302582 -50.8343544006 10.5706920624
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.940791 -0.231312 -0.247806 }
+        <Binormal> { 0.199692 -0.154910 0.902725 }
+      }
+      <Normal> { 0.574725 0.818232 0.013276 }
+    }
+    <Vertex> 2976 {
+      -2.81323337555 -51.4465179443 9.84433937073
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.969482 0.009426 -0.244979 }
+        <Binormal> { 0.244830 0.013927 0.969430 }
+      }
+      <Normal> { -0.016388 0.999786 -0.010224 }
+    }
+    <Vertex> 2977 {
+      -5.30595302582 -50.8343544006 10.5706920624
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.940791 -0.231312 -0.247806 }
+        <Binormal> { 0.199692 -0.154910 0.902725 }
+      }
+      <Normal> { 0.574725 0.818232 0.013276 }
+    }
+    <Vertex> 2978 {
+      -5.31265878677 -50.8283691406 11.7584466934
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.948768 -0.240978 -0.204375 }
+        <Binormal> { 0.189322 -0.023255 0.906304 }
+      }
+      <Normal> { 0.580889 0.807703 -0.100620 }
+    }
+    <Vertex> 2979 {
+      -2.95696973801 -51.4465179443 11.1426115036
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.991780 0.012266 -0.127364 }
+        <Binormal> { 0.127253 0.009227 0.991807 }
+      }
+      <Normal> { -0.012085 0.999878 -0.007752 }
+    }
+    <Vertex> 2980 {
+      -2.81323337555 -51.4465179443 9.84433937073
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.969482 0.009426 -0.244979 }
+        <Binormal> { 0.244830 0.013927 0.969430 }
+      }
+      <Normal> { -0.016388 0.999786 -0.010224 }
+    }
+    <Vertex> 2981 {
+      -2.95696973801 -51.4465179443 11.1426115036
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.991780 0.012266 -0.127364 }
+        <Binormal> { 0.127253 0.009227 0.991807 }
+      }
+      <Normal> { -0.012085 0.999878 -0.007752 }
+    }
+    <Vertex> 2982 {
+      -0.570455491543 -50.7704811096 10.6003293991
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.946944 0.267989 -0.177423 }
+        <Binormal> { 0.144655 0.098922 0.921469 }
+      }
+      <Normal> { -0.592730 0.805353 0.006592 }
+    }
+    <Vertex> 2983 {
+      -0.384465664625 -50.7704811096 9.14371776581
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.936564 0.262680 -0.232049 }
+        <Binormal> { 0.163142 0.213456 0.900085 }
+      }
+      <Normal> { -0.607135 0.790765 -0.077486 }
+    }
+    <Vertex> 2984 {
+      -6.65699768066 -48.8763694763 10.777838707
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.023902 -0.011461 0.999649 }
+        <Binormal> { -0.533336 0.845545 0.022446 }
+      }
+      <Normal> { 0.845393 0.533738 -0.018769 }
+    }
+    <Vertex> 2985 {
+      -5.30595302582 -50.8343544006 10.5706920624
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.035468 -0.001492 0.999370 }
+        <Binormal> { -0.817736 0.574833 -0.028164 }
+      }
+      <Normal> { 0.574725 0.818232 0.013276 }
+    }
+    <Vertex> 2986 {
+      -5.22015094757 -50.8244781494 9.15188980103
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.056342 -0.003974 0.998404 }
+        <Binormal> { -0.817990 0.572946 -0.043880 }
+      }
+      <Normal> { 0.570421 0.819056 0.060976 }
+    }
+    <Vertex> 2987 {
+      -6.58069419861 -48.8748130798 9.32404899597
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.052414 -0.001069 0.998625 }
+        <Binormal> { -0.540423 0.839193 -0.027466 }
+      }
+      <Normal> { 0.835200 0.541063 0.098086 }
+    }
+    <Vertex> 2988 {
+      -6.65699768066 -48.8763694763 10.777838707
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.023902 -0.011461 0.999649 }
+        <Binormal> { -0.533336 0.845545 0.022446 }
+      }
+      <Normal> { 0.845393 0.533738 -0.018769 }
+    }
+    <Vertex> 2989 {
+      -6.58069419861 -48.8748130798 9.32404899597
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.052414 -0.001069 0.998625 }
+        <Binormal> { -0.540423 0.839193 -0.027466 }
+      }
+      <Normal> { 0.835200 0.541063 0.098086 }
+    }
+    <Vertex> 2990 {
+      -7.951379776 -46.6358985901 8.6721162796
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.008843 -0.078773 0.996853 }
+        <Binormal> { -0.877673 0.470198 0.044941 }
+      }
+      <Normal> { 0.472976 0.868923 0.145787 }
+    }
+    <Vertex> 2991 {
+      -7.84623765945 -46.8912353516 10.4692668915
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.084782 -0.051380 0.995074 }
+        <Binormal> { -0.773305 0.625683 0.098194 }
+      }
+      <Normal> { 0.625172 0.779321 -0.042360 }
+    }
+    <Vertex> 2992 {
+      -6.65699768066 -48.8763694763 10.777838707
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.023902 -0.011461 0.999649 }
+        <Binormal> { -0.533336 0.845545 0.022446 }
+      }
+      <Normal> { 0.845393 0.533738 -0.018769 }
+    }
+    <Vertex> 2993 {
+      -7.84623765945 -46.8912353516 10.4692668915
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.084782 -0.051380 0.995074 }
+        <Binormal> { -0.773305 0.625683 0.098194 }
+      }
+      <Normal> { 0.625172 0.779321 -0.042360 }
+    }
+    <Vertex> 2994 {
+      -7.67086648941 -46.805896759 11.964466095
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.106686 0.039893 0.993492 }
+        <Binormal> { -0.712706 0.674287 0.049458 }
+      }
+      <Normal> { 0.648000 0.705893 -0.285928 }
+    }
+    <Vertex> 2995 {
+      -6.54008340836 -48.8524131775 12.004483223
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.094864 0.019438 0.995300 }
+        <Binormal> { -0.494677 0.857599 0.030400 }
+      }
+      <Normal> { 0.839961 0.492569 -0.227546 }
+    }
+    <Vertex> 2996 {
+      -6.65699768066 -48.8763694763 10.777838707
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.023902 -0.011461 0.999649 }
+        <Binormal> { -0.533336 0.845545 0.022446 }
+      }
+      <Normal> { 0.845393 0.533738 -0.018769 }
+    }
+    <Vertex> 2997 {
+      -6.54008340836 -48.8524131775 12.004483223
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.094864 0.019438 0.995300 }
+        <Binormal> { -0.494677 0.857599 0.030400 }
+      }
+      <Normal> { 0.839961 0.492569 -0.227546 }
+    }
+    <Vertex> 2998 {
+      -5.31265878677 -50.8283691406 11.7584466934
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.045595 0.012387 0.998883 }
+        <Binormal> { -0.808047 0.584828 0.029632 }
+      }
+      <Normal> { 0.580889 0.807703 -0.100620 }
+    }
+    <Vertex> 2999 {
+      -5.30595302582 -50.8343544006 10.5706920624
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.035468 -0.001492 0.999370 }
+        <Binormal> { -0.817736 0.574833 -0.028164 }
+      }
+      <Normal> { 0.574725 0.818232 0.013276 }
+    }
+    <Vertex> 3000 {
+      -9.85354423523 -46.1976165771 9.64846515656
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.181829 0.981994 -0.050661 }
+    }
+    <Vertex> 3001 {
+      -7.84623765945 -46.8912353516 10.4692668915
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.881611 -0.304638 0.360497 }
+        <Binormal> { -0.268038 0.262717 0.877509 }
+      }
+      <Normal> { 0.625172 0.779321 -0.042360 }
+    }
+    <Vertex> 3002 {
+      -7.951379776 -46.6358985901 8.6721162796
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.785497 0.340909 0.516490 }
+        <Binormal> { -0.399095 0.358807 -0.843790 }
+      }
+      <Normal> { 0.472976 0.868923 0.145787 }
+    }
+    <Vertex> 3003 {
+      -10.0612516403 -46.2517166138 7.5200881958
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.999115 0.034240 0.023598 }
+        <Binormal> { -0.018764 0.135227 -0.990637 }
+      }
+      <Normal> { 0.037111 0.990204 0.134465 }
+    }
+    <Vertex> 3004 {
+      -9.85354423523 -46.1976165771 9.64846515656
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.181829 0.981994 -0.050661 }
+    }
+    <Vertex> 3005 {
+      -10.0612516403 -46.2517166138 7.5200881958
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.999115 0.034240 0.023598 }
+        <Binormal> { -0.018764 0.135227 -0.990637 }
+      }
+      <Normal> { 0.037111 0.990204 0.134465 }
+    }
+    <Vertex> 3006 {
+      -12.6800937653 -46.1402893066 5.60956001282
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.981634 0.109079 -0.156430 }
+        <Binormal> { 0.188602 0.433726 -0.881085 }
+      }
+      <Normal> { 0.028260 0.894406 0.446333 }
+    }
+    <Vertex> 3007 {
+      -12.2421474457 -46.1322441101 8.74668216705
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.935240 0.025596 -0.353087 }
+        <Binormal> { 0.350598 -0.070945 -0.933790 }
+      }
+      <Normal> { 0.043703 0.997253 -0.059358 }
+    }
+    <Vertex> 3008 {
+      -9.85354423523 -46.1976165771 9.64846515656
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.181829 0.981994 -0.050661 }
+    }
+    <Vertex> 3009 {
+      -12.2421474457 -46.1322441101 8.74668216705
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.935240 0.025596 -0.353087 }
+        <Binormal> { 0.350598 -0.070945 -0.933790 }
+      }
+      <Normal> { 0.043703 0.997253 -0.059358 }
+    }
+    <Vertex> 3010 {
+      -12.8457536697 -45.8217735291 11.4669027328
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.998558 0.040526 -0.034855 }
+        <Binormal> { 0.023004 -0.262794 -0.964578 }
+      }
+      <Normal> { 0.048250 0.963988 -0.261483 }
+    }
+    <Vertex> 3011 {
+      -9.73663043976 -45.9760322571 11.7221403122
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.240028 0.933012 -0.268014 }
+    }
+    <Vertex> 3012 {
+      -9.85354423523 -46.1976165771 9.64846515656
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.181829 0.981994 -0.050661 }
+    }
+    <Vertex> 3013 {
+      -9.73663043976 -45.9760322571 11.7221403122
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.240028 0.933012 -0.268014 }
+    }
+    <Vertex> 3014 {
+      -7.67086648941 -46.805896759 11.964466095
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.296221 0.579458 0.759227 }
+        <Binormal> { -0.701656 0.407304 -0.584622 }
+      }
+      <Normal> { 0.648000 0.705893 -0.285928 }
+    }
+    <Vertex> 3015 {
+      -7.84623765945 -46.8912353516 10.4692668915
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.881611 -0.304638 0.360497 }
+        <Binormal> { -0.268038 0.262717 0.877509 }
+      }
+      <Normal> { 0.625172 0.779321 -0.042360 }
+    }
+    <Vertex> 3016 {
+      -22.2436599731 -46.884262085 3.22135639191
+      <UV>  {
+        0.500000 0.333333
+        <Tangent> { 0.998777 0.048968 -0.006810 }
+        <Binormal> { 0.021971 -0.316230 0.948418 }
+      }
+      <Normal> { -0.046602 0.947295 0.316935 }
+    }
+    <Vertex> 3017 {
+      -24.1750183105 -46.8337936401 3.65760850906
+      <UV>  {
+        0.708333 0.500000
+        <Tangent> { 0.998328 -0.006093 -0.057482 }
+        <Binormal> { 0.056602 -0.094559 0.993064 }
+      }
+      <Normal> { -0.028840 0.994903 0.096377 }
+    }
+    <Vertex> 3018 {
+      -21.0202560425 -46.4016113281 4.54919958115
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.981449 0.190146 -0.024534 }
+        <Binormal> { -0.079364 0.519229 0.849338 }
+      }
+      <Normal> { -0.224830 0.821833 -0.523423 }
+    }
+    <Vertex> 3019 {
+      -19.8736686707 -46.5422973633 3.62376356125
+      <UV>  {
+        0.291667 0.500000
+        <Tangent> { 0.939136 0.340559 0.045190 }
+        <Binormal> { -0.113471 0.183417 0.975887 }
+      }
+      <Normal> { -0.293313 0.932768 -0.209418 }
+    }
+    <Vertex> 3020 {
+      -22.2436599731 -46.884262085 3.22135639191
+      <UV>  {
+        0.500000 0.333333
+        <Tangent> { 0.998777 0.048968 -0.006810 }
+        <Binormal> { 0.021971 -0.316230 0.948418 }
+      }
+      <Normal> { -0.046602 0.947295 0.316935 }
+    }
+    <Vertex> 3021 {
+      -19.8736686707 -46.5422973633 3.62376356125
+      <UV>  {
+        0.291667 0.500000
+        <Tangent> { 0.939136 0.340559 0.045190 }
+        <Binormal> { -0.113471 0.183417 0.975887 }
+      }
+      <Normal> { -0.293313 0.932768 -0.209418 }
+    }
+    <Vertex> 3022 {
+      -18.8465080261 -46.1818351746 2.73309445381
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.955852 0.292223 0.030863 }
+        <Binormal> { 0.121395 -0.488013 0.860981 }
+      }
+      <Normal> { -0.194037 0.841426 0.504288 }
+    }
+    <Vertex> 3023 {
+      -23.2082595825 -46.142578125 2.60876917839
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.999573 0.028656 -0.005675 }
+        <Binormal> { 0.027543 -0.859778 0.509846 }
+      }
+      <Normal> { -0.014100 0.509659 0.860225 }
+    }
+    <Vertex> 3024 {
+      -22.2436599731 -46.884262085 3.22135639191
+      <UV>  {
+        0.500000 0.333333
+        <Tangent> { 0.998777 0.048968 -0.006810 }
+        <Binormal> { 0.021971 -0.316230 0.948418 }
+      }
+      <Normal> { -0.046602 0.947295 0.316935 }
+    }
+    <Vertex> 3025 {
+      -23.2082595825 -46.142578125 2.60876917839
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.999573 0.028656 -0.005675 }
+        <Binormal> { 0.027543 -0.859778 0.509846 }
+      }
+      <Normal> { -0.014100 0.509659 0.860225 }
+    }
+    <Vertex> 3026 {
+      -27.7901077271 -46.4382362366 2.78387331963
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.998479 0.013581 -0.053425 }
+        <Binormal> { 0.045695 -0.745870 0.664393 }
+      }
+      <Normal> { 0.019471 0.665670 0.745964 }
+    }
+    <Vertex> 3027 {
+      -24.1750183105 -46.8337936401 3.65760850906
+      <UV>  {
+        0.708333 0.500000
+        <Tangent> { 0.998328 -0.006093 -0.057482 }
+        <Binormal> { 0.056602 -0.094559 0.993064 }
+      }
+      <Normal> { -0.028840 0.994903 0.096377 }
+    }
+    <Vertex> 3028 {
+      -26.0610961914 -46.8137702942 4.14958047867
+      <UV>  {
+        0.833333 0.666667
+        <Tangent> { 0.997663 0.031268 -0.060746 }
+        <Binormal> { 0.060241 0.016828 0.998036 }
+      }
+      <Normal> { -0.030427 0.999420 -0.015015 }
+    }
+    <Vertex> 3029 {
+      -29.1712741852 -46.8990974426 3.95841288567
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.997516 0.042652 -0.056059 }
+        <Binormal> { 0.061421 -0.137789 0.988093 }
+      }
+      <Normal> { -0.005341 0.990326 0.138432 }
+    }
+    <Vertex> 3030 {
+      -29.0641727448 -46.7786598206 5.05120182037
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.998375 0.019884 -0.053399 }
+        <Binormal> { 0.049216 0.171143 0.983892 }
+      }
+      <Normal> { -0.043916 0.984619 -0.169073 }
+    }
+    <Vertex> 3031 {
+      -25.0176963806 -46.673992157 4.84775018692
+      <UV>  {
+        0.750000 1.000000
+        <Tangent> { 0.996968 0.046732 -0.062218 }
+        <Binormal> { 0.045012 0.305834 0.950962 }
+      }
+      <Normal> { -0.070284 0.950560 -0.302377 }
+    }
+    <Vertex> 3032 {
+      -26.0610961914 -46.8137702942 4.14958047867
+      <UV>  {
+        0.833333 0.666667
+        <Tangent> { 0.997663 0.031268 -0.060746 }
+        <Binormal> { 0.060241 0.016828 0.998036 }
+      }
+      <Normal> { -0.030427 0.999420 -0.015015 }
+    }
+    <Vertex> 3033 {
+      -25.0176963806 -46.673992157 4.84775018692
+      <UV>  {
+        0.750000 1.000000
+        <Tangent> { 0.996968 0.046732 -0.062218 }
+        <Binormal> { 0.045012 0.305834 0.950962 }
+      }
+      <Normal> { -0.070284 0.950560 -0.302377 }
+    }
+    <Vertex> 3034 {
+      -21.0202560425 -46.4016113281 4.54919958115
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.981449 0.190146 -0.024534 }
+        <Binormal> { -0.079364 0.519229 0.849338 }
+      }
+      <Normal> { -0.224830 0.821833 -0.523423 }
+    }
+    <Vertex> 3035 {
+      -24.1750183105 -46.8337936401 3.65760850906
+      <UV>  {
+        0.708333 0.500000
+        <Tangent> { 0.998328 -0.006093 -0.057482 }
+        <Binormal> { 0.056602 -0.094559 0.993064 }
+      }
+      <Normal> { -0.028840 0.994903 0.096377 }
+    }
+    <Vertex> 3036 {
+      -26.0610961914 -46.8137702942 4.14958047867
+      <UV>  {
+        0.833333 0.666667
+        <Tangent> { 0.997663 0.031268 -0.060746 }
+        <Binormal> { 0.060241 0.016828 0.998036 }
+      }
+      <Normal> { -0.030427 0.999420 -0.015015 }
+    }
+    <Vertex> 3037 {
+      -24.1750183105 -46.8337936401 3.65760850906
+      <UV>  {
+        0.708333 0.500000
+        <Tangent> { 0.998328 -0.006093 -0.057482 }
+        <Binormal> { 0.056602 -0.094559 0.993064 }
+      }
+      <Normal> { -0.028840 0.994903 0.096377 }
+    }
+    <Vertex> 3038 {
+      -27.7901077271 -46.4382362366 2.78387331963
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.998479 0.013581 -0.053425 }
+        <Binormal> { 0.045695 -0.745870 0.664393 }
+      }
+      <Normal> { 0.019471 0.665670 0.745964 }
+    }
+    <Vertex> 3039 {
+      -29.1712741852 -46.8990974426 3.95841288567
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.997516 0.042652 -0.056059 }
+        <Binormal> { 0.061421 -0.137789 0.988093 }
+      }
+      <Normal> { -0.005341 0.990326 0.138432 }
+    }
+    <Vertex> 3040 {
+      -18.8966712952 -45.6477890015 4.01420021057
+      <UV>  {
+        0.166667 0.666667
+        <Tangent> { 0.834777 0.550426 0.013398 }
+        <Binormal> { -0.343968 0.502353 0.793245 }
+      }
+      <Normal> { -0.434370 0.663839 -0.608753 }
+    }
+    <Vertex> 3041 {
+      -19.8736686707 -46.5422973633 3.62376356125
+      <UV>  {
+        0.291667 0.500000
+        <Tangent> { 0.939136 0.340559 0.045190 }
+        <Binormal> { -0.113471 0.183417 0.975887 }
+      }
+      <Normal> { -0.293313 0.932768 -0.209418 }
+    }
+    <Vertex> 3042 {
+      -21.0202560425 -46.4016113281 4.54919958115
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.981449 0.190146 -0.024534 }
+        <Binormal> { -0.079364 0.519229 0.849338 }
+      }
+      <Normal> { -0.224830 0.821833 -0.523423 }
+    }
+    <Vertex> 3043 {
+      -19.1883201599 -45.0733299255 4.62055778503
+      <UV>  {
+        0.250000 1.000000
+        <Tangent> { 0.794757 0.606926 -0.001508 }
+        <Binormal> { -0.476107 0.624990 0.618577 }
+      }
+      <Normal> { -0.380902 0.487442 -0.785668 }
+    }
+    <Vertex> 3044 {
+      -18.8966712952 -45.6477890015 4.01420021057
+      <UV>  {
+        0.166667 0.666667
+        <Tangent> { 0.834777 0.550426 0.013398 }
+        <Binormal> { -0.343968 0.502353 0.793245 }
+      }
+      <Normal> { -0.434370 0.663839 -0.608753 }
+    }
+    <Vertex> 3045 {
+      -19.1883201599 -45.0733299255 4.62055778503
+      <UV>  {
+        0.250000 1.000000
+        <Tangent> { 0.794757 0.606926 -0.001508 }
+        <Binormal> { -0.476107 0.624990 0.618577 }
+      }
+      <Normal> { -0.380902 0.487442 -0.785668 }
+    }
+    <Vertex> 3046 {
+      -17.9432296753 -44.0518035889 4.54336023331
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.795848 0.604461 -0.035385 }
+        <Binormal> { -0.500026 0.687957 0.505835 }
+      }
+      <Normal> { -0.215430 0.471969 -0.854854 }
+    }
+    <Vertex> 3047 {
+      -17.7421188354 -45.2826576233 3.6989300251
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.875518 0.483100 -0.009096 }
+        <Binormal> { -0.311169 0.578000 0.747353 }
+      }
+      <Normal> { -0.276559 0.701010 -0.657308 }
+    }
+    <Vertex> 3048 {
+      -18.8966712952 -45.6477890015 4.01420021057
+      <UV>  {
+        0.166667 0.666667
+        <Tangent> { 0.834777 0.550426 0.013398 }
+        <Binormal> { -0.343968 0.502353 0.793245 }
+      }
+      <Normal> { -0.434370 0.663839 -0.608753 }
+    }
+    <Vertex> 3049 {
+      -17.7421188354 -45.2826576233 3.6989300251
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.875518 0.483100 -0.009096 }
+        <Binormal> { -0.311169 0.578000 0.747353 }
+      }
+      <Normal> { -0.276559 0.701010 -0.657308 }
+    }
+    <Vertex> 3050 {
+      -18.8465080261 -46.1818351746 2.73309445381
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.955852 0.292223 0.030863 }
+        <Binormal> { 0.121395 -0.488013 0.860981 }
+      }
+      <Normal> { -0.194037 0.841426 0.504288 }
+    }
+    <Vertex> 3051 {
+      -19.8736686707 -46.5422973633 3.62376356125
+      <UV>  {
+        0.291667 0.500000
+        <Tangent> { 0.939136 0.340559 0.045190 }
+        <Binormal> { -0.113471 0.183417 0.975887 }
+      }
+      <Normal> { -0.293313 0.932768 -0.209418 }
+    }
+    <Vertex> 3052 {
+      -19.5022716522 -44.7178192139 4.83000040054
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { 0.708920 0.705108 0.015944 }
+        <Binormal> { -0.618588 0.610757 0.494223 }
+      }
+      <Normal> { -0.343608 0.355388 -0.869259 }
+    }
+    <Vertex> 3053 {
+      -18.4063129425 -43.4832763672 4.89034605026
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.663442 0.747335 0.036530 }
+        <Binormal> { -0.573855 0.479521 0.612005 }
+      }
+      <Normal> { -0.269234 0.619190 -0.737602 }
+    }
+    <Vertex> 3054 {
+      -17.9432296753 -44.0518035889 4.54336023331
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.720045 0.693908 -0.005183 }
+        <Binormal> { -0.590743 0.616650 0.489327 }
+      }
+      <Normal> { -0.215430 0.471969 -0.854854 }
+    }
+    <Vertex> 3055 {
+      -19.1883201599 -45.0733299255 4.62055778503
+      <UV>  {
+        0.250000 0.000000
+        <Tangent> { 0.794757 0.606926 -0.001508 }
+        <Binormal> { -0.476107 0.624990 0.618577 }
+      }
+      <Normal> { -0.380902 0.487442 -0.785668 }
+    }
+    <Vertex> 3056 {
+      -19.5022716522 -44.7178192139 4.83000040054
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { 0.708920 0.705108 0.015944 }
+        <Binormal> { -0.618588 0.610757 0.494223 }
+      }
+      <Normal> { -0.343608 0.355388 -0.869259 }
+    }
+    <Vertex> 3057 {
+      -19.1883201599 -45.0733299255 4.62055778503
+      <UV>  {
+        0.250000 0.000000
+        <Tangent> { 0.794757 0.606926 -0.001508 }
+        <Binormal> { -0.476107 0.624990 0.618577 }
+      }
+      <Normal> { -0.380902 0.487442 -0.785668 }
+    }
+    <Vertex> 3058 {
+      -21.0202560425 -46.4016113281 4.54919958115
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.951839 0.301853 -0.053733 }
+        <Binormal> { -0.113837 0.510295 0.850118 }
+      }
+      <Normal> { -0.224830 0.821833 -0.523423 }
+    }
+    <Vertex> 3059 {
+      -20.8018722534 -45.9630012512 4.89860773087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.985920 0.143066 -0.086570 }
+        <Binormal> { -0.041397 0.704498 0.692791 }
+      }
+      <Normal> { -0.306192 0.658254 -0.687674 }
+    }
+    <Vertex> 3060 {
+      -19.5022716522 -44.7178192139 4.83000040054
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { 0.708920 0.705108 0.015944 }
+        <Binormal> { -0.618588 0.610757 0.494223 }
+      }
+      <Normal> { -0.343608 0.355388 -0.869259 }
+    }
+    <Vertex> 3061 {
+      -20.8018722534 -45.9630012512 4.89860773087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.985920 0.143066 -0.086570 }
+        <Binormal> { -0.041397 0.704498 0.692791 }
+      }
+      <Normal> { -0.306192 0.658254 -0.687674 }
+    }
+    <Vertex> 3062 {
+      -20.5276565552 -45.8317489624 4.91219949722
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.982844 0.143361 -0.116036 }
+        <Binormal> { 0.150279 -0.282782 0.923513 }
+      }
+      <Normal> { -0.306925 0.894864 0.323954 }
+    }
+    <Vertex> 3063 {
+      -19.7073421478 -44.6964607239 4.84501171112
+      <UV>  {
+        0.250000 1.000000
+        <Tangent> { 0.628453 0.777694 0.015454 }
+        <Binormal> { 0.158771 -0.147675 0.974913 }
+      }
+      <Normal> { -0.729331 0.648762 0.217048 }
+    }
+    <Vertex> 3064 {
+      -19.5022716522 -44.7178192139 4.83000040054
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { 0.708920 0.705108 0.015944 }
+        <Binormal> { -0.618588 0.610757 0.494223 }
+      }
+      <Normal> { -0.343608 0.355388 -0.869259 }
+    }
+    <Vertex> 3065 {
+      -19.7073421478 -44.6964607239 4.84501171112
+      <UV>  {
+        0.250000 1.000000
+        <Tangent> { 0.628453 0.777694 0.015454 }
+        <Binormal> { 0.158771 -0.147675 0.974913 }
+      }
+      <Normal> { -0.729331 0.648762 0.217048 }
+    }
+    <Vertex> 3066 {
+      -18.7911338806 -43.6828460693 4.95490074158
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.665857 0.743950 0.056333 }
+        <Binormal> { 0.660122 -0.620465 0.391391 }
+      }
+      <Normal> { -0.218696 0.343455 0.913327 }
+    }
+    <Vertex> 3067 {
+      -18.4063129425 -43.4832763672 4.89034605026
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.663442 0.747335 0.036530 }
+        <Binormal> { -0.573855 0.479521 0.612005 }
+      }
+      <Normal> { -0.269234 0.619190 -0.737602 }
+    }
+    <Vertex> 3068 {
+      -24.2030277252 -46.4565391541 5.19725179672
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { 0.991934 0.069003 -0.106331 }
+        <Binormal> { 0.061657 0.470253 0.880348 }
+      }
+      <Normal> { -0.114475 0.879543 -0.461806 }
+    }
+    <Vertex> 3069 {
+      -20.8018722534 -45.9630012512 4.89860773087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.985920 0.143066 -0.086570 }
+        <Binormal> { -0.041397 0.704498 0.692791 }
+      }
+      <Normal> { -0.306192 0.658254 -0.687674 }
+    }
+    <Vertex> 3070 {
+      -21.0202560425 -46.4016113281 4.54919958115
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.951839 0.301853 -0.053733 }
+        <Binormal> { -0.113837 0.510295 0.850118 }
+      }
+      <Normal> { -0.224830 0.821833 -0.523423 }
+    }
+    <Vertex> 3071 {
+      -25.0176963806 -46.673992157 4.84775018692
+      <UV>  {
+        0.750000 0.000000
+        <Tangent> { 0.996968 0.046732 -0.062218 }
+        <Binormal> { 0.045012 0.305834 0.950962 }
+      }
+      <Normal> { -0.070284 0.950560 -0.302377 }
+    }
+    <Vertex> 3072 {
+      -24.2030277252 -46.4565391541 5.19725179672
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { 0.991934 0.069003 -0.106331 }
+        <Binormal> { 0.061657 0.470253 0.880348 }
+      }
+      <Normal> { -0.114475 0.879543 -0.461806 }
+    }
+    <Vertex> 3073 {
+      -25.0176963806 -46.673992157 4.84775018692
+      <UV>  {
+        0.750000 0.000000
+        <Tangent> { 0.996968 0.046732 -0.062218 }
+        <Binormal> { 0.045012 0.305834 0.950962 }
+      }
+      <Normal> { -0.070284 0.950560 -0.302377 }
+    }
+    <Vertex> 3074 {
+      -29.0641727448 -46.7786598206 5.05120182037
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.996355 0.029847 -0.079912 }
+        <Binormal> { 0.073636 0.171966 0.982340 }
+      }
+      <Normal> { -0.043916 0.984619 -0.169073 }
+    }
+    <Vertex> 3075 {
+      -28.439666748 -46.6000061035 5.65814161301
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.993572 0.033646 -0.108087 }
+        <Binormal> { 0.092550 0.308221 0.946687 }
+      }
+      <Normal> { -0.078219 0.950163 -0.301706 }
+    }
+    <Vertex> 3076 {
+      -24.2030277252 -46.4565391541 5.19725179672
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { 0.991934 0.069003 -0.106331 }
+        <Binormal> { 0.061657 0.470253 0.880348 }
+      }
+      <Normal> { -0.114475 0.879543 -0.461806 }
+    }
+    <Vertex> 3077 {
+      -28.439666748 -46.6000061035 5.65814161301
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.993572 0.033646 -0.108087 }
+        <Binormal> { 0.092550 0.308221 0.946687 }
+      }
+      <Normal> { -0.078219 0.950163 -0.301706 }
+    }
+    <Vertex> 3078 {
+      -27.243730545 -46.2700843811 6.11081171036
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.987750 0.015771 -0.155248 }
+        <Binormal> { 0.127525 0.487545 0.860890 }
+      }
+      <Normal> { -0.157964 0.869045 -0.468764 }
+    }
+    <Vertex> 3079 {
+      -23.3327655792 -46.2834587097 5.29111242294
+      <UV>  {
+        0.750000 1.000000
+        <Tangent> { 0.982419 0.064119 -0.175332 }
+        <Binormal> { 0.160685 0.187652 0.968976 }
+      }
+      <Normal> { -0.095218 0.980102 -0.174017 }
+    }
+    <Vertex> 3080 {
+      -24.2030277252 -46.4565391541 5.19725179672
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { 0.991934 0.069003 -0.106331 }
+        <Binormal> { 0.061657 0.470253 0.880348 }
+      }
+      <Normal> { -0.114475 0.879543 -0.461806 }
+    }
+    <Vertex> 3081 {
+      -23.3327655792 -46.2834587097 5.29111242294
+      <UV>  {
+        0.750000 1.000000
+        <Tangent> { 0.982419 0.064119 -0.175332 }
+        <Binormal> { 0.160685 0.187652 0.968976 }
+      }
+      <Normal> { -0.095218 0.980102 -0.174017 }
+    }
+    <Vertex> 3082 {
+      -20.5276565552 -45.8317489624 4.91219949722
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.982844 0.143361 -0.116036 }
+        <Binormal> { 0.150279 -0.282782 0.923513 }
+      }
+      <Normal> { -0.306925 0.894864 0.323954 }
+    }
+    <Vertex> 3083 {
+      -20.8018722534 -45.9630012512 4.89860773087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.985920 0.143066 -0.086570 }
+        <Binormal> { -0.041397 0.704498 0.692791 }
+      }
+      <Normal> { -0.306192 0.658254 -0.687674 }
+    }
+    <Vertex> 3084 {
+      -19.6723556519 -45.1244697571 4.86807060242
+      <UV>  {
+        0.833333 0.333333
+        <Tangent> { 0.773737 0.632915 0.027377 }
+        <Binormal> { 0.620128 -0.765514 0.171277 }
+      }
+      <Normal> { -0.124851 0.119236 0.984954 }
+    }
+    <Vertex> 3085 {
+      -18.7574539185 -44.7562904358 4.95203733444
+      <UV>  {
+        0.833333 0.458333
+        <Tangent> { 0.889602 0.454884 0.041083 }
+        <Binormal> { 0.445636 -0.884161 0.140000 }
+      }
+      <Normal> { -0.105441 0.103458 0.989013 }
+    }
+    <Vertex> 3086 {
+      -18.7911338806 -43.6828460693 4.95490074158
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.884564 0.461768 0.065705 }
+        <Binormal> { 0.399179 -0.822266 0.404795 }
+      }
+      <Normal> { -0.218696 0.343455 0.913327 }
+    }
+    <Vertex> 3087 {
+      -19.7073421478 -44.6964607239 4.84501171112
+      <UV>  {
+        0.750000 -0.000000
+        <Tangent> { 0.628452 0.777694 0.015454 }
+        <Binormal> { 0.158771 -0.147675 0.974913 }
+      }
+      <Normal> { -0.729331 0.648762 0.217048 }
+    }
+    <Vertex> 3088 {
+      -19.6723556519 -45.1244697571 4.86807060242
+      <UV>  {
+        0.833333 0.333333
+        <Tangent> { 0.773737 0.632915 0.027377 }
+        <Binormal> { 0.620128 -0.765514 0.171277 }
+      }
+      <Normal> { -0.124851 0.119236 0.984954 }
+    }
+    <Vertex> 3089 {
+      -19.7073421478 -44.6964607239 4.84501171112
+      <UV>  {
+        0.750000 -0.000000
+        <Tangent> { 0.628452 0.777694 0.015454 }
+        <Binormal> { 0.158771 -0.147675 0.974913 }
+      }
+      <Normal> { -0.729331 0.648762 0.217048 }
+    }
+    <Vertex> 3090 {
+      -20.5276565552 -45.8317489624 4.91219949722
+      <UV>  {
+        0.500000 -0.000001
+        <Tangent> { 0.903818 0.410448 -0.121016 }
+        <Binormal> { 0.241259 -0.255653 0.934771 }
+      }
+      <Normal> { -0.306925 0.894864 0.323954 }
+    }
+    <Vertex> 3091 {
+      -20.160194397 -45.9718170166 4.93122959137
+      <UV>  {
+        0.708333 0.416666
+        <Tangent> { 0.897275 0.421978 -0.129740 }
+        <Binormal> { 0.422058 -0.734778 0.529074 }
+      }
+      <Normal> { -0.087405 0.548540 0.831538 }
+    }
+    <Vertex> 3092 {
+      -19.6723556519 -45.1244697571 4.86807060242
+      <UV>  {
+        0.833333 0.333333
+        <Tangent> { 0.773737 0.632915 0.027377 }
+        <Binormal> { 0.620128 -0.765514 0.171277 }
+      }
+      <Normal> { -0.124851 0.119236 0.984954 }
+    }
+    <Vertex> 3093 {
+      -20.160194397 -45.9718170166 4.93122959137
+      <UV>  {
+        0.708333 0.416666
+        <Tangent> { 0.897275 0.421978 -0.129740 }
+        <Binormal> { 0.422058 -0.734778 0.529074 }
+      }
+      <Normal> { -0.087405 0.548540 0.831538 }
+    }
+    <Vertex> 3094 {
+      -19.4436321259 -46.0605812073 5.20842695236
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.945582 0.318611 -0.066046 }
+        <Binormal> { 0.115870 -0.149793 0.936310 }
+      }
+      <Normal> { -0.008850 0.987213 0.159032 }
+    }
+    <Vertex> 3095 {
+      -18.7574539185 -44.7562904358 4.95203733444
+      <UV>  {
+        0.833333 0.458333
+        <Tangent> { 0.889602 0.454884 0.041083 }
+        <Binormal> { 0.445636 -0.884161 0.140000 }
+      }
+      <Normal> { -0.105441 0.103458 0.989013 }
+    }
+    <Vertex> 3096 {
+      -22.1225910187 -46.2767868042 5.22235870361
+      <UV>  {
+        0.500000 0.333333
+        <Tangent> { 0.978747 0.042082 -0.200706 }
+        <Binormal> { 0.203425 -0.077082 0.975843 }
+      }
+      <Normal> { -0.044557 0.995117 0.087893 }
+    }
+    <Vertex> 3097 {
+      -20.160194397 -45.9718170166 4.93122959137
+      <UV>  {
+        0.708333 0.416666
+        <Tangent> { 0.897275 0.421978 -0.129740 }
+        <Binormal> { 0.422058 -0.734778 0.529074 }
+      }
+      <Normal> { -0.087405 0.548540 0.831538 }
+    }
+    <Vertex> 3098 {
+      -20.5276565552 -45.8317489624 4.91219949722
+      <UV>  {
+        0.500000 -0.000001
+        <Tangent> { 0.903818 0.410448 -0.121016 }
+        <Binormal> { 0.241259 -0.255653 0.934771 }
+      }
+      <Normal> { -0.306925 0.894864 0.323954 }
+    }
+    <Vertex> 3099 {
+      -23.3327655792 -46.2834587097 5.29111242294
+      <UV>  {
+        0.250000 -0.000000
+        <Tangent> { 0.982419 0.064119 -0.175332 }
+        <Binormal> { 0.160685 0.187652 0.968976 }
+      }
+      <Normal> { -0.095218 0.980102 -0.174017 }
+    }
+    <Vertex> 3100 {
+      -22.1225910187 -46.2767868042 5.22235870361
+      <UV>  {
+        0.500000 0.333333
+        <Tangent> { 0.978747 0.042082 -0.200706 }
+        <Binormal> { 0.203425 -0.077082 0.975843 }
+      }
+      <Normal> { -0.044557 0.995117 0.087893 }
+    }
+    <Vertex> 3101 {
+      -23.3327655792 -46.2834587097 5.29111242294
+      <UV>  {
+        0.250000 -0.000000
+        <Tangent> { 0.982419 0.064119 -0.175332 }
+        <Binormal> { 0.160685 0.187652 0.968976 }
+      }
+      <Normal> { -0.095218 0.980102 -0.174017 }
+    }
+    <Vertex> 3102 {
+      -27.243730545 -46.2700843811 6.11081171036
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.976916 0.019711 -0.212713 }
+        <Binormal> { 0.175618 0.491544 0.852098 }
+      }
+      <Normal> { -0.157964 0.869045 -0.468764 }
+    }
+    <Vertex> 3103 {
+      -23.1062393188 -46.0454788208 5.67135334015
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.963909 -0.082894 -0.252997 }
+        <Binormal> { 0.255021 0.559972 0.788147 }
+      }
+      <Normal> { -0.089022 0.825312 -0.557573 }
+    }
+    <Vertex> 3104 {
+      -22.1225910187 -46.2767868042 5.22235870361
+      <UV>  {
+        0.500000 0.333333
+        <Tangent> { 0.978747 0.042082 -0.200706 }
+        <Binormal> { 0.203425 -0.077082 0.975843 }
+      }
+      <Normal> { -0.044557 0.995117 0.087893 }
+    }
+    <Vertex> 3105 {
+      -23.1062393188 -46.0454788208 5.67135334015
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.963909 -0.082894 -0.252997 }
+        <Binormal> { 0.255021 0.559972 0.788147 }
+      }
+      <Normal> { -0.089022 0.825312 -0.557573 }
+    }
+    <Vertex> 3106 {
+      -19.4436321259 -46.0605812073 5.20842695236
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.945582 0.318611 -0.066046 }
+        <Binormal> { 0.115870 -0.149793 0.936310 }
+      }
+      <Normal> { -0.008850 0.987213 0.159032 }
+    }
+    <Vertex> 3107 {
+      -20.160194397 -45.9718170166 4.93122959137
+      <UV>  {
+        0.708333 0.416666
+        <Tangent> { 0.897275 0.421978 -0.129740 }
+        <Binormal> { 0.422058 -0.734778 0.529074 }
+      }
+      <Normal> { -0.087405 0.548540 0.831538 }
+    }
+    <Vertex> 3108 {
+      -10.4286985397 -46.1465301514 2.49542713165
+      <UV>  {
+        0.333333 0.500000
+        <Tangent> { -0.249828 0.068639 0.965854 }
+        <Binormal> { -0.968093 -0.008349 -0.249813 }
+      }
+      <Normal> { 0.004791 0.998627 -0.051943 }
+    }
+    <Vertex> 3109 {
+      -11.5722103119 -45.8943252563 3.28683233261
+      <UV>  {
+        0.500000 0.708333
+        <Tangent> { -0.173522 0.511122 0.841810 }
+        <Binormal> { -0.968845 0.045209 -0.227157 }
+      }
+      <Normal> { 0.138951 0.899808 -0.413556 }
+    }
+    <Vertex> 3110 {
+      -10.9220352173 -45.3759231567 4.23617744446
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.071506 0.385231 0.920046 }
+        <Binormal> { -0.939125 0.270685 -0.186326 }
+      }
+      <Normal> { 0.313669 0.915891 -0.250404 }
+    }
+    <Vertex> 3111 {
+      -9.41248607635 -45.8731117249 2.84797811508
+      <UV>  {
+        0.500000 0.291667
+        <Tangent> { 0.011100 0.187132 0.982272 }
+        <Binormal> { -0.984719 0.145593 -0.016609 }
+      }
+      <Normal> { 0.147160 0.984619 -0.093814 }
+    }
+    <Vertex> 3112 {
+      -10.4286985397 -46.1465301514 2.49542713165
+      <UV>  {
+        0.333333 0.500000
+        <Tangent> { -0.249828 0.068639 0.965854 }
+        <Binormal> { -0.968093 -0.008349 -0.249813 }
+      }
+      <Normal> { 0.004791 0.998627 -0.051943 }
+    }
+    <Vertex> 3113 {
+      -9.41248607635 -45.8731117249 2.84797811508
+      <UV>  {
+        0.500000 0.291667
+        <Tangent> { 0.011100 0.187132 0.982272 }
+        <Binormal> { -0.984719 0.145593 -0.016609 }
+      }
+      <Normal> { 0.147160 0.984619 -0.093814 }
+    }
+    <Vertex> 3114 {
+      -7.83629846573 -46.1326217651 0.979065775871
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.150715 -0.550489 0.821125 }
+        <Binormal> { -0.639396 0.576823 0.504066 }
+      }
+      <Normal> { 0.761010 0.564898 0.318888 }
+    }
+    <Vertex> 3115 {
+      -10.1550111771 -45.6917610168 1.64354300499
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.272677 -0.453090 0.848738 }
+        <Binormal> { -0.924284 0.348613 -0.110844 }
+      }
+      <Normal> { 0.216010 0.765435 0.606128 }
+    }
+    <Vertex> 3116 {
+      -10.4286985397 -46.1465301514 2.49542713165
+      <UV>  {
+        0.333333 0.500000
+        <Tangent> { -0.249828 0.068639 0.965854 }
+        <Binormal> { -0.968093 -0.008349 -0.249813 }
+      }
+      <Normal> { 0.004791 0.998627 -0.051943 }
+    }
+    <Vertex> 3117 {
+      -10.1550111771 -45.6917610168 1.64354300499
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.272677 -0.453090 0.848738 }
+        <Binormal> { -0.924284 0.348613 -0.110844 }
+      }
+      <Normal> { 0.216010 0.765435 0.606128 }
+    }
+    <Vertex> 3118 {
+      -12.559217453 -46.0444793701 2.51674008369
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.715479 0.197887 0.670023 }
+        <Binormal> { -0.580080 -0.054431 0.635510 }
+      }
+      <Normal> { 0.200201 0.943602 0.263558 }
+    }
+    <Vertex> 3119 {
+      -11.5722103119 -45.8943252563 3.28683233261
+      <UV>  {
+        0.500000 0.708333
+        <Tangent> { -0.173522 0.511122 0.841810 }
+        <Binormal> { -0.968845 0.045209 -0.227157 }
+      }
+      <Normal> { 0.138951 0.899808 -0.413556 }
+    }
+    <Vertex> 3120 {
+      -12.0813589096 -45.1842498779 3.858751297
+      <UV>  {
+        0.666667 0.833333
+        <Tangent> { -0.137993 0.738064 0.660469 }
+        <Binormal> { -0.955473 0.076346 -0.284945 }
+      }
+      <Normal> { 0.260323 0.672567 -0.692709 }
+    }
+    <Vertex> 3121 {
+      -13.103102684 -45.1667747498 3.66006779671
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.154495 0.722779 0.673588 }
+        <Binormal> { -0.978889 -0.019790 -0.203284 }
+      }
+      <Normal> { 0.132847 0.694296 -0.707297 }
+    }
+    <Vertex> 3122 {
+      -13.0206918716 -43.8855476379 4.52873849869
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.077176 0.822198 0.563945 }
+        <Binormal> { -0.983089 0.031227 -0.180063 }
+      }
+      <Normal> { 0.164892 0.576464 -0.800287 }
+    }
+    <Vertex> 3123 {
+      -11.9410953522 -44.4834823608 4.45992517471
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.179180 0.811749 0.555840 }
+        <Binormal> { -0.857392 0.139205 -0.479684 }
+      }
+      <Normal> { 0.444563 0.663076 -0.602191 }
+    }
+    <Vertex> 3124 {
+      -12.0813589096 -45.1842498779 3.858751297
+      <UV>  {
+        0.666667 0.833333
+        <Tangent> { -0.137993 0.738064 0.660469 }
+        <Binormal> { -0.955473 0.076346 -0.284945 }
+      }
+      <Normal> { 0.260323 0.672567 -0.692709 }
+    }
+    <Vertex> 3125 {
+      -11.9410953522 -44.4834823608 4.45992517471
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.179180 0.811749 0.555840 }
+        <Binormal> { -0.857392 0.139205 -0.479684 }
+      }
+      <Normal> { 0.444563 0.663076 -0.602191 }
+    }
+    <Vertex> 3126 {
+      -10.9220352173 -45.3759231567 4.23617744446
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.071506 0.385231 0.920046 }
+        <Binormal> { -0.939125 0.270685 -0.186326 }
+      }
+      <Normal> { 0.313669 0.915891 -0.250404 }
+    }
+    <Vertex> 3127 {
+      -11.5722103119 -45.8943252563 3.28683233261
+      <UV>  {
+        0.500000 0.708333
+        <Tangent> { -0.173522 0.511122 0.841810 }
+        <Binormal> { -0.968845 0.045209 -0.227157 }
+      }
+      <Normal> { 0.138951 0.899808 -0.413556 }
+    }
+    <Vertex> 3128 {
+      -12.0813589096 -45.1842498779 3.858751297
+      <UV>  {
+        0.666667 0.833333
+        <Tangent> { -0.137993 0.738064 0.660469 }
+        <Binormal> { -0.955473 0.076346 -0.284945 }
+      }
+      <Normal> { 0.260323 0.672567 -0.692709 }
+    }
+    <Vertex> 3129 {
+      -11.5722103119 -45.8943252563 3.28683233261
+      <UV>  {
+        0.500000 0.708333
+        <Tangent> { -0.173522 0.511122 0.841810 }
+        <Binormal> { -0.968845 0.045209 -0.227157 }
+      }
+      <Normal> { 0.138951 0.899808 -0.413556 }
+    }
+    <Vertex> 3130 {
+      -12.559217453 -46.0444793701 2.51674008369
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.715479 0.197887 0.670023 }
+        <Binormal> { -0.580080 -0.054431 0.635510 }
+      }
+      <Normal> { 0.200201 0.943602 0.263558 }
+    }
+    <Vertex> 3131 {
+      -13.103102684 -45.1667747498 3.66006779671
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.154495 0.722779 0.673588 }
+        <Binormal> { -0.978889 -0.019790 -0.203284 }
+      }
+      <Normal> { 0.132847 0.694296 -0.707297 }
+    }
+    <Vertex> 3132 {
+      -8.40043735504 -45.9219894409 3.81477618217
+      <UV>  {
+        0.666667 0.166667
+        <Tangent> { 0.125432 -0.059684 0.990305 }
+        <Binormal> { -0.913160 0.383016 0.138744 }
+      }
+      <Normal> { 0.386151 0.922391 -0.004852 }
+    }
+    <Vertex> 3133 {
+      -9.41248607635 -45.8731117249 2.84797811508
+      <UV>  {
+        0.500000 0.291667
+        <Tangent> { 0.011100 0.187132 0.982272 }
+        <Binormal> { -0.984719 0.145593 -0.016609 }
+      }
+      <Normal> { 0.147160 0.984619 -0.093814 }
+    }
+    <Vertex> 3134 {
+      -10.9220352173 -45.3759231567 4.23617744446
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.071506 0.385231 0.920046 }
+        <Binormal> { -0.939125 0.270685 -0.186326 }
+      }
+      <Normal> { 0.313669 0.915891 -0.250404 }
+    }
+    <Vertex> 3135 {
+      -8.86593818665 -45.8452796936 5.18325567245
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { 0.101631 -0.100277 0.989755 }
+        <Binormal> { -0.930738 0.341411 0.130161 }
+      }
+      <Normal> { 0.349620 0.935759 0.045534 }
+    }
+    <Vertex> 3136 {
+      -8.40043735504 -45.9219894409 3.81477618217
+      <UV>  {
+        0.666667 0.166667
+        <Tangent> { 0.125432 -0.059684 0.990305 }
+        <Binormal> { -0.913160 0.383016 0.138744 }
+      }
+      <Normal> { 0.386151 0.922391 -0.004852 }
+    }
+    <Vertex> 3137 {
+      -8.86593818665 -45.8452796936 5.18325567245
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { 0.101631 -0.100277 0.989755 }
+        <Binormal> { -0.930738 0.341411 0.130161 }
+      }
+      <Normal> { 0.349620 0.935759 0.045534 }
+    }
+    <Vertex> 3138 {
+      -7.12337827682 -46.8284339905 5.819024086
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.072365 -0.086180 0.993648 }
+        <Binormal> { -0.657797 0.744180 0.112449 }
+      }
+      <Normal> { 0.751213 0.659291 0.031251 }
+    }
+    <Vertex> 3139 {
+      -7.28152084351 -46.8105506897 3.64229416847
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.144274 -0.140812 0.979468 }
+        <Binormal> { -0.594229 0.778134 0.199397 }
+      }
+      <Normal> { 0.784448 0.616443 -0.067873 }
+    }
+    <Vertex> 3140 {
+      -8.40043735504 -45.9219894409 3.81477618217
+      <UV>  {
+        0.666667 0.166667
+        <Tangent> { 0.125432 -0.059684 0.990305 }
+        <Binormal> { -0.913160 0.383016 0.138744 }
+      }
+      <Normal> { 0.386151 0.922391 -0.004852 }
+    }
+    <Vertex> 3141 {
+      -7.28152084351 -46.8105506897 3.64229416847
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.144274 -0.140812 0.979468 }
+        <Binormal> { -0.594229 0.778134 0.199397 }
+      }
+      <Normal> { 0.784448 0.616443 -0.067873 }
+    }
+    <Vertex> 3142 {
+      -7.83629846573 -46.1326217651 0.979065775871
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.150715 -0.550489 0.821125 }
+        <Binormal> { -0.639396 0.576823 0.504066 }
+      }
+      <Normal> { 0.761010 0.564898 0.318888 }
+    }
+    <Vertex> 3143 {
+      -9.41248607635 -45.8731117249 2.84797811508
+      <UV>  {
+        0.500000 0.291667
+        <Tangent> { 0.011100 0.187132 0.982272 }
+        <Binormal> { -0.984719 0.145593 -0.016609 }
+      }
+      <Normal> { 0.147160 0.984619 -0.093814 }
+    }
+    <Vertex> 3144 {
+      -9.3693113327 -45.88621521 6.1670498848
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.482593 -0.026646 0.875439 }
+        <Binormal> { -0.840104 0.294252 -0.454159 }
+      }
+      <Normal> { 0.228095 0.953673 0.195959 }
+    }
+    <Vertex> 3145 {
+      -7.38470172882 -46.8359718323 7.40207386017
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.278129 0.064673 0.958364 }
+        <Binormal> { -0.709830 0.658197 -0.250418 }
+      }
+      <Normal> { 0.643544 0.750725 0.149022 }
+    }
+    <Vertex> 3146 {
+      -7.12337827682 -46.8284339905 5.819024086
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.285466 -0.018095 0.958218 }
+        <Binormal> { -0.632310 0.728747 -0.174612 }
+      }
+      <Normal> { 0.751213 0.659291 0.031251 }
+    }
+    <Vertex> 3147 {
+      -8.86593818665 -45.8452796936 5.18325567245
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.455190 -0.037017 0.889624 }
+        <Binormal> { -0.834159 0.331757 -0.413006 }
+      }
+      <Normal> { 0.349620 0.935759 0.045534 }
+    }
+    <Vertex> 3148 {
+      -9.3693113327 -45.88621521 6.1670498848
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.482593 -0.026646 0.875439 }
+        <Binormal> { -0.840104 0.294252 -0.454159 }
+      }
+      <Normal> { 0.228095 0.953673 0.195959 }
+    }
+    <Vertex> 3149 {
+      -8.86593818665 -45.8452796936 5.18325567245
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.455190 -0.037017 0.889624 }
+        <Binormal> { -0.834159 0.331757 -0.413006 }
+      }
+      <Normal> { 0.349620 0.935759 0.045534 }
+    }
+    <Vertex> 3150 {
+      -10.9220352173 -45.3759231567 4.23617744446
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.349197 0.145505 0.925683 }
+        <Binormal> { -0.884260 0.202918 -0.365467 }
+      }
+      <Normal> { 0.313669 0.915891 -0.250404 }
+    }
+    <Vertex> 3151 {
+      -11.2332687378 -45.2640304565 5.01299858093
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.550582 -0.075191 0.831388 }
+        <Binormal> { -0.723732 0.538988 -0.430541 }
+      }
+      <Normal> { 0.406720 0.837519 0.364788 }
+    }
+    <Vertex> 3152 {
+      -9.3693113327 -45.88621521 6.1670498848
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.482593 -0.026646 0.875439 }
+        <Binormal> { -0.840104 0.294252 -0.454159 }
+      }
+      <Normal> { 0.228095 0.953673 0.195959 }
+    }
+    <Vertex> 3153 {
+      -11.2332687378 -45.2640304565 5.01299858093
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.550582 -0.075191 0.831388 }
+        <Binormal> { -0.723732 0.538988 -0.430541 }
+      }
+      <Normal> { 0.406720 0.837519 0.364788 }
+    }
+    <Vertex> 3154 {
+      -11.5796804428 -45.4657363892 5.22923469543
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.737404 -0.369321 0.565541 }
+        <Binormal> { -0.617402 0.553255 -0.443728 }
+      }
+      <Normal> { -0.101901 0.550707 0.828425 }
+    }
+    <Vertex> 3155 {
+      -9.95922851563 -45.9980201721 6.59095048904
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { -0.802631 -0.152120 0.576751 }
+        <Binormal> { -0.585585 0.295494 -0.736988 }
+      }
+      <Normal> { -0.072481 0.904477 0.420240 }
+    }
+    <Vertex> 3156 {
+      -9.3693113327 -45.88621521 6.1670498848
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.482593 -0.026646 0.875439 }
+        <Binormal> { -0.840104 0.294252 -0.454159 }
+      }
+      <Normal> { 0.228095 0.953673 0.195959 }
+    }
+    <Vertex> 3157 {
+      -9.95922851563 -45.9980201721 6.59095048904
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { -0.802631 -0.152120 0.576751 }
+        <Binormal> { -0.585585 0.295494 -0.736988 }
+      }
+      <Normal> { -0.072481 0.904477 0.420240 }
+    }
+    <Vertex> 3158 {
+      -7.951379776 -46.6358985901 8.6721162796
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.531419 -0.149597 0.833795 }
+        <Binormal> { -0.746313 0.316891 0.532518 }
+      }
+      <Normal> { 0.472976 0.868923 0.145787 }
+    }
+    <Vertex> 3159 {
+      -7.38470172882 -46.8359718323 7.40207386017
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.278129 0.064673 0.958364 }
+        <Binormal> { -0.709830 0.658197 -0.250418 }
+      }
+      <Normal> { 0.643544 0.750725 0.149022 }
+    }
+    <Vertex> 3160 {
+      -11.9042377472 -44.2125701904 4.80926990509
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.158442 0.205322 0.965784 }
+        <Binormal> { -0.631066 0.702813 -0.252946 }
+      }
+      <Normal> { 0.697562 0.692496 0.183782 }
+    }
+    <Vertex> 3161 {
+      -11.2332687378 -45.2640304565 5.01299858093
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.550582 -0.075191 0.831388 }
+        <Binormal> { -0.723732 0.538988 -0.430541 }
+      }
+      <Normal> { 0.406720 0.837519 0.364788 }
+    }
+    <Vertex> 3162 {
+      -10.9220352173 -45.3759231567 4.23617744446
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.349197 0.145505 0.925683 }
+        <Binormal> { -0.884260 0.202918 -0.365467 }
+      }
+      <Normal> { 0.313669 0.915891 -0.250404 }
+    }
+    <Vertex> 3163 {
+      -11.9410953522 -44.4834823608 4.45992517471
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.083084 0.610693 0.787496 }
+        <Binormal> { -0.889924 0.400124 -0.216401 }
+      }
+      <Normal> { 0.444563 0.663076 -0.602191 }
+    }
+    <Vertex> 3164 {
+      -11.9042377472 -44.2125701904 4.80926990509
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.158442 0.205322 0.965784 }
+        <Binormal> { -0.631066 0.702813 -0.252946 }
+      }
+      <Normal> { 0.697562 0.692496 0.183782 }
+    }
+    <Vertex> 3165 {
+      -11.9410953522 -44.4834823608 4.45992517471
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.083084 0.610693 0.787496 }
+        <Binormal> { -0.889924 0.400124 -0.216401 }
+      }
+      <Normal> { 0.444563 0.663076 -0.602191 }
+    }
+    <Vertex> 3166 {
+      -13.0206918716 -43.8855476379 4.52873849869
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.975725 0.135288 0.172214 }
+        <Binormal> { -0.207544 0.809257 0.540163 }
+      }
+      <Normal> { 0.164892 0.576464 -0.800287 }
+    }
+    <Vertex> 3167 {
+      -12.869436264 -43.2817878723 4.98730802536
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.306814 0.521500 0.796180 }
+        <Binormal> { -0.744482 0.368195 0.045723 }
+      }
+      <Normal> { 0.439589 0.896207 -0.059328 }
+    }
+    <Vertex> 3168 {
+      -11.9042377472 -44.2125701904 4.80926990509
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.158442 0.205322 0.965784 }
+        <Binormal> { -0.631066 0.702813 -0.252946 }
+      }
+      <Normal> { 0.697562 0.692496 0.183782 }
+    }
+    <Vertex> 3169 {
+      -12.869436264 -43.2817878723 4.98730802536
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.306814 0.521500 0.796180 }
+        <Binormal> { -0.744482 0.368195 0.045723 }
+      }
+      <Normal> { 0.439589 0.896207 -0.059328 }
+    }
+    <Vertex> 3170 {
+      -12.785610199 -43.4859733582 5.13877391815
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.092335 -0.747091 0.658278 }
+        <Binormal> { -0.878566 0.058832 0.190004 }
+      }
+      <Normal> { 0.220771 0.271493 0.936766 }
+    }
+    <Vertex> 3171 {
+      -11.94460392 -44.3600196838 4.96763706207
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.183387 -0.669872 0.719473 }
+        <Binormal> { -0.828299 0.352784 0.117337 }
+      }
+      <Normal> { 0.255562 0.293680 0.921079 }
+    }
+    <Vertex> 3172 {
+      -11.9042377472 -44.2125701904 4.80926990509
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.158442 0.205322 0.965784 }
+        <Binormal> { -0.631066 0.702813 -0.252946 }
+      }
+      <Normal> { 0.697562 0.692496 0.183782 }
+    }
+    <Vertex> 3173 {
+      -11.94460392 -44.3600196838 4.96763706207
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.183387 -0.669872 0.719473 }
+        <Binormal> { -0.828299 0.352784 0.117337 }
+      }
+      <Normal> { 0.255562 0.293680 0.921079 }
+    }
+    <Vertex> 3174 {
+      -11.5796804428 -45.4657363892 5.22923469543
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.737404 -0.369321 0.565541 }
+        <Binormal> { -0.617402 0.553255 -0.443728 }
+      }
+      <Normal> { -0.101901 0.550707 0.828425 }
+    }
+    <Vertex> 3175 {
+      -11.2332687378 -45.2640304565 5.01299858093
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.550582 -0.075191 0.831388 }
+        <Binormal> { -0.723732 0.538988 -0.430541 }
+      }
+      <Normal> { 0.406720 0.837519 0.364788 }
+    }
+    <Vertex> 3176 {
+      -10.6843729019 -46.133934021 6.27974700928
+      <UV>  {
+        0.833333 0.333333
+        <Tangent> { 0.668158 -0.177895 0.722439 }
+        <Binormal> { -0.706545 -0.455388 0.541322 }
+      }
+      <Normal> { -0.219977 0.868740 0.443709 }
+    }
+    <Vertex> 3177 {
+      -10.0612516403 -46.2517166138 7.5200881958
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.625095 -0.088758 0.775486 }
+        <Binormal> { -0.779823 -0.055274 0.622265 }
+      }
+      <Normal> { 0.037111 0.990204 0.134465 }
+    }
+    <Vertex> 3178 {
+      -7.951379776 -46.6358985901 8.6721162796
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.531419 -0.149597 0.833795 }
+        <Binormal> { -0.746313 0.316891 0.532518 }
+      }
+      <Normal> { 0.472976 0.868923 0.145787 }
+    }
+    <Vertex> 3179 {
+      -9.95922851563 -45.9980201721 6.59095048904
+      <UV>  {
+        0.750000 -0.000000
+        <Tangent> { 0.706327 -0.227797 0.670231 }
+        <Binormal> { -0.701938 -0.345406 0.622346 }
+      }
+      <Normal> { -0.072481 0.904477 0.420240 }
+    }
+    <Vertex> 3180 {
+      -10.6843729019 -46.133934021 6.27974700928
+      <UV>  {
+        0.833333 0.333333
+        <Tangent> { 0.668158 -0.177895 0.722439 }
+        <Binormal> { -0.706545 -0.455388 0.541322 }
+      }
+      <Normal> { -0.219977 0.868740 0.443709 }
+    }
+    <Vertex> 3181 {
+      -9.95922851563 -45.9980201721 6.59095048904
+      <UV>  {
+        0.750000 -0.000000
+        <Tangent> { 0.706327 -0.227797 0.670231 }
+        <Binormal> { -0.701938 -0.345406 0.622346 }
+      }
+      <Normal> { -0.072481 0.904477 0.420240 }
+    }
+    <Vertex> 3182 {
+      -11.5796804428 -45.4657363892 5.22923469543
+      <UV>  {
+        0.500000 -0.000000
+        <Tangent> { 0.628836 -0.543362 0.556168 }
+        <Binormal> { -0.756420 -0.577618 0.290935 }
+      }
+      <Normal> { -0.101901 0.550707 0.828425 }
+    }
+    <Vertex> 3183 {
+      -11.8340759277 -45.8011474609 5.22124004364
+      <UV>  {
+        0.708333 0.416667
+        <Tangent> { 0.606742 -0.547468 0.576319 }
+        <Binormal> { -0.764145 -0.597349 0.237038 }
+      }
+      <Normal> { -0.180944 0.553941 0.812647 }
+    }
+    <Vertex> 3184 {
+      -10.6843729019 -46.133934021 6.27974700928
+      <UV>  {
+        0.833333 0.333333
+        <Tangent> { 0.668158 -0.177895 0.722439 }
+        <Binormal> { -0.706545 -0.455388 0.541322 }
+      }
+      <Normal> { -0.219977 0.868740 0.443709 }
+    }
+    <Vertex> 3185 {
+      -11.8340759277 -45.8011474609 5.22124004364
+      <UV>  {
+        0.708333 0.416667
+        <Tangent> { 0.606742 -0.547468 0.576319 }
+        <Binormal> { -0.764145 -0.597349 0.237038 }
+      }
+      <Normal> { -0.180944 0.553941 0.812647 }
+    }
+    <Vertex> 3186 {
+      -12.6800937653 -46.1402893066 5.60956001282
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.981634 0.109079 -0.156430 }
+        <Binormal> { 0.188602 0.433726 -0.881085 }
+      }
+      <Normal> { 0.028260 0.894406 0.446333 }
+    }
+    <Vertex> 3187 {
+      -10.0612516403 -46.2517166138 7.5200881958
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.625095 -0.088758 0.775486 }
+        <Binormal> { -0.779823 -0.055274 0.622265 }
+      }
+      <Normal> { 0.037111 0.990204 0.134465 }
+    }
+    <Vertex> 3188 {
+      -12.0360155106 -44.9143371582 4.99587869644
+      <UV>  {
+        0.500000 0.333333
+        <Tangent> { 0.577748 -0.812341 0.079430 }
+        <Binormal> { -0.814728 -0.569013 0.106700 }
+      }
+      <Normal> { 0.022736 0.152715 0.988006 }
+    }
+    <Vertex> 3189 {
+      -11.8340759277 -45.8011474609 5.22124004364
+      <UV>  {
+        0.708333 0.416667
+        <Tangent> { 0.606742 -0.547468 0.576319 }
+        <Binormal> { -0.764145 -0.597349 0.237038 }
+      }
+      <Normal> { -0.180944 0.553941 0.812647 }
+    }
+    <Vertex> 3190 {
+      -11.5796804428 -45.4657363892 5.22923469543
+      <UV>  {
+        0.500000 -0.000000
+        <Tangent> { 0.628836 -0.543362 0.556168 }
+        <Binormal> { -0.756420 -0.577618 0.290935 }
+      }
+      <Normal> { -0.101901 0.550707 0.828425 }
+    }
+    <Vertex> 3191 {
+      -11.94460392 -44.3600196838 4.96763706207
+      <UV>  {
+        0.250000 -0.000000
+        <Tangent> { 0.519821 -0.853385 0.038993 }
+        <Binormal> { -0.797487 -0.468831 0.370754 }
+      }
+      <Normal> { 0.255562 0.293680 0.921079 }
+    }
+    <Vertex> 3192 {
+      -12.0360155106 -44.9143371582 4.99587869644
+      <UV>  {
+        0.500000 0.333333
+        <Tangent> { 0.577748 -0.812341 0.079430 }
+        <Binormal> { -0.814728 -0.569013 0.106700 }
+      }
+      <Normal> { 0.022736 0.152715 0.988006 }
+    }
+    <Vertex> 3193 {
+      -11.94460392 -44.3600196838 4.96763706207
+      <UV>  {
+        0.250000 -0.000000
+        <Tangent> { 0.519821 -0.853385 0.038993 }
+        <Binormal> { -0.797487 -0.468831 0.370754 }
+      }
+      <Normal> { 0.255562 0.293680 0.921079 }
+    }
+    <Vertex> 3194 {
+      -12.785610199 -43.4859733582 5.13877391815
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.927850 -0.369078 -0.053629 }
+        <Binormal> { -0.331180 -0.881018 0.333386 }
+      }
+      <Normal> { 0.220771 0.271493 0.936766 }
+    }
+    <Vertex> 3195 {
+      -12.9054822922 -44.6285820007 5.08613395691
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.772903 -0.634441 -0.010274 }
+        <Binormal> { -0.626602 -0.765655 0.142163 }
+      }
+      <Normal> { 0.075137 0.122257 0.989624 }
+    }
+    <Vertex> 3196 {
+      -12.0360155106 -44.9143371582 4.99587869644
+      <UV>  {
+        0.500000 0.333333
+        <Tangent> { 0.577748 -0.812341 0.079430 }
+        <Binormal> { -0.814728 -0.569013 0.106700 }
+      }
+      <Normal> { 0.022736 0.152715 0.988006 }
+    }
+    <Vertex> 3197 {
+      -12.9054822922 -44.6285820007 5.08613395691
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.772903 -0.634441 -0.010274 }
+        <Binormal> { -0.626602 -0.765655 0.142163 }
+      }
+      <Normal> { 0.075137 0.122257 0.989624 }
+    }
+    <Vertex> 3198 {
+      -12.6800937653 -46.1402893066 5.60956001282
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.981634 0.109079 -0.156430 }
+        <Binormal> { 0.188602 0.433726 -0.881085 }
+      }
+      <Normal> { 0.028260 0.894406 0.446333 }
+    }
+    <Vertex> 3199 {
+      -11.8340759277 -45.8011474609 5.22124004364
+      <UV>  {
+        0.708333 0.416667
+        <Tangent> { 0.606742 -0.547468 0.576319 }
+        <Binormal> { -0.764145 -0.597349 0.237038 }
+      }
+      <Normal> { -0.180944 0.553941 0.812647 }
+    }
+    <Vertex> 3200 {
+      -33.2763633728 -46.7838897705 9.13347148895
+      <UV>  {
+        0.666667 0.500000
+        <Tangent> { 0.974263 0.091730 -0.205904 }
+        <Binormal> { 0.205153 0.017597 0.978546 }
+      }
+      <Normal> { -0.093692 0.995575 0.001740 }
+    }
+    <Vertex> 3201 {
+      -32.0146827698 -46.7259521484 10.0120801926
+      <UV>  {
+        0.500000 0.708333
+        <Tangent> { 0.993686 0.065812 -0.090870 }
+        <Binormal> { 0.094965 -0.062035 0.993538 }
+      }
+      <Normal> { -0.057192 0.996063 0.067660 }
+    }
+    <Vertex> 3202 {
+      -28.2868919373 -46.1725234985 8.11273765564
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.986172 0.094376 -0.136224 }
+        <Binormal> { 0.141294 -0.171257 0.904231 }
+      }
+      <Normal> { -0.421705 0.876553 0.231910 }
+    }
+    <Vertex> 3203 {
+      -31.9434585571 -46.670009613 7.8459353447
+      <UV>  {
+        0.500000 0.291667
+        <Tangent> { 0.970058 0.097949 -0.222246 }
+        <Binormal> { 0.219026 0.042552 0.974760 }
+      }
+      <Normal> { -0.110874 0.993652 -0.018464 }
+    }
+    <Vertex> 3204 {
+      -33.2763633728 -46.7838897705 9.13347148895
+      <UV>  {
+        0.666667 0.500000
+        <Tangent> { 0.974263 0.091730 -0.205904 }
+        <Binormal> { 0.205153 0.017597 0.978546 }
+      }
+      <Normal> { -0.093692 0.995575 0.001740 }
+    }
+    <Vertex> 3205 {
+      -31.9434585571 -46.670009613 7.8459353447
+      <UV>  {
+        0.500000 0.291667
+        <Tangent> { 0.970058 0.097949 -0.222246 }
+        <Binormal> { 0.219026 0.042552 0.974760 }
+      }
+      <Normal> { -0.110874 0.993652 -0.018464 }
+    }
+    <Vertex> 3206 {
+      -35.836479187 -47.0156555176 7.77505731583
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.964528 0.081654 -0.251034 }
+        <Binormal> { 0.247759 0.048129 0.967602 }
+      }
+      <Normal> { -0.086306 0.995880 -0.027436 }
+    }
+    <Vertex> 3207 {
+      -35.836479187 -47.0156555176 9.74517917633
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.968873 0.087711 -0.231500 }
+        <Binormal> { 0.229983 0.026969 0.972743 }
+      }
+      <Normal> { -0.081881 0.996582 -0.008271 }
+    }
+    <Vertex> 3208 {
+      -33.2763633728 -46.7838897705 9.13347148895
+      <UV>  {
+        0.666667 0.500000
+        <Tangent> { 0.974263 0.091730 -0.205904 }
+        <Binormal> { 0.205153 0.017597 0.978546 }
+      }
+      <Normal> { -0.093692 0.995575 0.001740 }
+    }
+    <Vertex> 3209 {
+      -35.836479187 -47.0156555176 9.74517917633
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.968873 0.087711 -0.231500 }
+        <Binormal> { 0.229983 0.026969 0.972743 }
+      }
+      <Normal> { -0.081881 0.996582 -0.008271 }
+    }
+    <Vertex> 3210 {
+      -35.836479187 -46.9374694824 11.6720666885
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.997383 0.045478 -0.056212 }
+        <Binormal> { 0.050311 0.121798 0.991223 }
+      }
+      <Normal> { -0.041932 0.991913 -0.119755 }
+    }
+    <Vertex> 3211 {
+      -32.0146827698 -46.7259521484 10.0120801926
+      <UV>  {
+        0.500000 0.708333
+        <Tangent> { 0.993686 0.065812 -0.090870 }
+        <Binormal> { 0.094965 -0.062035 0.993538 }
+      }
+      <Normal> { -0.057192 0.996063 0.067660 }
+    }
+    <Vertex> 3212 {
+      -30.7897491455 -46.7838897705 10.7839269638
+      <UV>  {
+        0.333333 0.833333
+        <Tangent> { 0.999881 0.015094 0.003303 }
+        <Binormal> { -0.001740 -0.102425 0.994728 }
+      }
+      <Normal> { -0.014435 0.994629 0.102390 }
+    }
+    <Vertex> 3213 {
+      -31.7773551941 -46.8223190308 11.9317550659
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.999656 0.016972 0.020005 }
+        <Binormal> { -0.023447 0.236082 0.971348 }
+      }
+      <Normal> { -0.025361 0.971252 -0.236671 }
+    }
+    <Vertex> 3214 {
+      -28.4814758301 -46.8125953674 11.8192577362
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.932572 -0.260884 -0.249496 }
+        <Binormal> { 0.318840 -0.290416 -0.888099 }
+      }
+      <Normal> { -0.011170 0.949187 -0.314402 }
+    }
+    <Vertex> 3215 {
+      -28.8122997284 -46.727104187 10.2447633743
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.998857 -0.025622 0.040359 }
+        <Binormal> { -0.043795 -0.152053 0.987366 }
+      }
+      <Normal> { 0.014344 0.988128 0.152806 }
+    }
+    <Vertex> 3216 {
+      -30.7897491455 -46.7838897705 10.7839269638
+      <UV>  {
+        0.333333 0.833333
+        <Tangent> { 0.999881 0.015094 0.003303 }
+        <Binormal> { -0.001740 -0.102425 0.994728 }
+      }
+      <Normal> { -0.014435 0.994629 0.102390 }
+    }
+    <Vertex> 3217 {
+      -28.8122997284 -46.727104187 10.2447633743
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.998857 -0.025622 0.040359 }
+        <Binormal> { -0.043795 -0.152053 0.987366 }
+      }
+      <Normal> { 0.014344 0.988128 0.152806 }
+    }
+    <Vertex> 3218 {
+      -28.2868919373 -46.1725234985 8.11273765564
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.986172 0.094376 -0.136224 }
+        <Binormal> { 0.141294 -0.171257 0.904231 }
+      }
+      <Normal> { -0.421705 0.876553 0.231910 }
+    }
+    <Vertex> 3219 {
+      -32.0146827698 -46.7259521484 10.0120801926
+      <UV>  {
+        0.500000 0.708333
+        <Tangent> { 0.993686 0.065812 -0.090870 }
+        <Binormal> { 0.094965 -0.062035 0.993538 }
+      }
+      <Normal> { -0.057192 0.996063 0.067660 }
+    }
+    <Vertex> 3220 {
+      -30.7897491455 -46.7838897705 10.7839269638
+      <UV>  {
+        0.333333 0.833333
+        <Tangent> { 0.999881 0.015094 0.003303 }
+        <Binormal> { -0.001740 -0.102425 0.994728 }
+      }
+      <Normal> { -0.014435 0.994629 0.102390 }
+    }
+    <Vertex> 3221 {
+      -32.0146827698 -46.7259521484 10.0120801926
+      <UV>  {
+        0.500000 0.708333
+        <Tangent> { 0.993686 0.065812 -0.090870 }
+        <Binormal> { 0.094965 -0.062035 0.993538 }
+      }
+      <Normal> { -0.057192 0.996063 0.067660 }
+    }
+    <Vertex> 3222 {
+      -35.836479187 -46.9374694824 11.6720666885
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.997383 0.045478 -0.056212 }
+        <Binormal> { 0.050311 0.121798 0.991223 }
+      }
+      <Normal> { -0.041932 0.991913 -0.119755 }
+    }
+    <Vertex> 3223 {
+      -31.7773551941 -46.8223190308 11.9317550659
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.999656 0.016972 0.020005 }
+        <Binormal> { -0.023447 0.236082 0.971348 }
+      }
+      <Normal> { -0.025361 0.971252 -0.236671 }
+    }
+    <Vertex> 3224 {
+      -30.5048561096 -46.5601272583 7.07071399689
+      <UV>  {
+        0.333333 0.166667
+        <Tangent> { 0.977285 0.107806 -0.182460 }
+        <Binormal> { 0.171466 0.103746 0.979694 }
+      }
+      <Normal> { -0.123325 0.988861 -0.083132 }
+    }
+    <Vertex> 3225 {
+      -31.9434585571 -46.670009613 7.8459353447
+      <UV>  {
+        0.500000 0.291667
+        <Tangent> { 0.970058 0.097949 -0.222246 }
+        <Binormal> { 0.219026 0.042552 0.974760 }
+      }
+      <Normal> { -0.110874 0.993652 -0.018464 }
+    }
+    <Vertex> 3226 {
+      -28.2868919373 -46.1725234985 8.11273765564
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.986172 0.094376 -0.136224 }
+        <Binormal> { 0.141294 -0.171257 0.904231 }
+      }
+      <Normal> { -0.421705 0.876553 0.231910 }
+    }
+    <Vertex> 3227 {
+      -28.4710578918 -46.1985702515 7.0617442131
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { 0.976575 0.152745 -0.151562 }
+        <Binormal> { 0.094859 0.308240 0.921859 }
+      }
+      <Normal> { -0.397290 0.881832 -0.253975 }
+    }
+    <Vertex> 3228 {
+      -30.5048561096 -46.5601272583 7.07071399689
+      <UV>  {
+        0.333333 0.166667
+        <Tangent> { 0.977285 0.107806 -0.182460 }
+        <Binormal> { 0.171466 0.103746 0.979694 }
+      }
+      <Normal> { -0.123325 0.988861 -0.083132 }
+    }
+    <Vertex> 3229 {
+      -28.4710578918 -46.1985702515 7.0617442131
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { 0.976575 0.152745 -0.151562 }
+        <Binormal> { 0.094859 0.308240 0.921859 }
+      }
+      <Normal> { -0.397290 0.881832 -0.253975 }
+    }
+    <Vertex> 3230 {
+      -27.243730545 -46.2700843811 6.11081171036
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.976916 0.019711 -0.212713 }
+        <Binormal> { 0.175618 0.491544 0.852098 }
+      }
+      <Normal> { -0.157964 0.869045 -0.468764 }
+    }
+    <Vertex> 3231 {
+      -31.5272483826 -46.6787719727 6.64657020569
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.978213 0.084877 -0.189461 }
+        <Binormal> { 0.176554 0.139917 0.974258 }
+      }
+      <Normal> { -0.102542 0.987060 -0.123173 }
+    }
+    <Vertex> 3232 {
+      -30.5048561096 -46.5601272583 7.07071399689
+      <UV>  {
+        0.333333 0.166667
+        <Tangent> { 0.977285 0.107806 -0.182460 }
+        <Binormal> { 0.171466 0.103746 0.979694 }
+      }
+      <Normal> { -0.123325 0.988861 -0.083132 }
+    }
+    <Vertex> 3233 {
+      -31.5272483826 -46.6787719727 6.64657020569
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.978213 0.084877 -0.189461 }
+        <Binormal> { 0.176554 0.139917 0.974258 }
+      }
+      <Normal> { -0.102542 0.987060 -0.123173 }
+    }
+    <Vertex> 3234 {
+      -35.836479187 -47.0156555176 7.77505731583
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.964528 0.081654 -0.251034 }
+        <Binormal> { 0.247759 0.048129 0.967602 }
+      }
+      <Normal> { -0.086306 0.995880 -0.027436 }
+    }
+    <Vertex> 3235 {
+      -31.9434585571 -46.670009613 7.8459353447
+      <UV>  {
+        0.500000 0.291667
+        <Tangent> { 0.970058 0.097949 -0.222246 }
+        <Binormal> { 0.219026 0.042552 0.974760 }
+      }
+      <Normal> { -0.110874 0.993652 -0.018464 }
+    }
+    <Vertex> 3236 {
+      -14.5752744675 -46.0318489075 8.19516944885
+      <UV>  {
+        0.333333 0.500000
+        <Tangent> { 0.985506 -0.043827 0.163878 }
+        <Binormal> { -0.160488 0.072077 0.984394 }
+      }
+      <Normal> { 0.054231 0.996460 -0.064119 }
+    }
+    <Vertex> 3237 {
+      -15.7426595688 -46.1190795898 6.58052825928
+      <UV>  {
+        0.500000 0.291667
+        <Tangent> { 0.987755 -0.020751 0.154627 }
+        <Binormal> { -0.153510 0.046369 0.986844 }
+      }
+      <Normal> { 0.047609 0.998077 -0.039491 }
+    }
+    <Vertex> 3238 {
+      -18.9100933075 -45.6639175415 7.62107467651
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.997118 -0.053161 0.054127 }
+        <Binormal> { -0.062212 -0.234690 0.915545 }
+      }
+      <Normal> { 0.355693 0.899228 0.254677 }
+    }
+    <Vertex> 3239 {
+      -15.7426595688 -45.8856658936 9.6216211319
+      <UV>  {
+        0.500000 0.708333
+        <Tangent> { 0.998810 -0.044676 0.019566 }
+        <Binormal> { -0.017277 0.051025 0.998512 }
+      }
+      <Normal> { 0.040407 0.997894 -0.050295 }
+    }
+    <Vertex> 3240 {
+      -14.5752744675 -46.0318489075 8.19516944885
+      <UV>  {
+        0.333333 0.500000
+        <Tangent> { 0.985506 -0.043827 0.163878 }
+        <Binormal> { -0.160488 0.072077 0.984394 }
+      }
+      <Normal> { 0.054231 0.996460 -0.064119 }
+    }
+    <Vertex> 3241 {
+      -15.7426595688 -45.8856658936 9.6216211319
+      <UV>  {
+        0.500000 0.708333
+        <Tangent> { 0.998810 -0.044676 0.019566 }
+        <Binormal> { -0.017277 0.051025 0.998512 }
+      }
+      <Normal> { 0.040407 0.997894 -0.050295 }
+    }
+    <Vertex> 3242 {
+      -12.8457536697 -45.8217735291 11.4669027328
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.999497 -0.031689 0.001147 }
+        <Binormal> { 0.007181 0.261406 0.965032 }
+      }
+      <Normal> { 0.048250 0.963988 -0.261483 }
+    }
+    <Vertex> 3243 {
+      -12.2421474457 -46.1322441101 8.74668216705
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.972328 -0.041840 0.229842 }
+        <Binormal> { -0.226727 0.067761 0.971486 }
+      }
+      <Normal> { 0.043703 0.997253 -0.059358 }
+    }
+    <Vertex> 3244 {
+      -14.5752744675 -46.0318489075 8.19516944885
+      <UV>  {
+        0.333333 0.500000
+        <Tangent> { 0.985506 -0.043827 0.163878 }
+        <Binormal> { -0.160488 0.072077 0.984394 }
+      }
+      <Normal> { 0.054231 0.996460 -0.064119 }
+    }
+    <Vertex> 3245 {
+      -12.2421474457 -46.1322441101 8.74668216705
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.972328 -0.041840 0.229842 }
+        <Binormal> { -0.226727 0.067761 0.971486 }
+      }
+      <Normal> { 0.043703 0.997253 -0.059358 }
+    }
+    <Vertex> 3246 {
+      -12.6800937653 -46.1402893066 5.60956001282
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.980527 -0.013741 0.195902 }
+        <Binormal> { -0.181349 -0.432106 0.877378 }
+      }
+      <Normal> { 0.028260 0.894406 0.446333 }
+    }
+    <Vertex> 3247 {
+      -15.7426595688 -46.1190795898 6.58052825928
+      <UV>  {
+        0.500000 0.291667
+        <Tangent> { 0.987755 -0.020751 0.154627 }
+        <Binormal> { -0.153510 0.046369 0.986844 }
+      }
+      <Normal> { 0.047609 0.998077 -0.039491 }
+    }
+    <Vertex> 3248 {
+      -16.9394226074 -46.2185783386 5.76229476929
+      <UV>  {
+        0.666667 0.166667
+        <Tangent> { 0.997410 -0.041555 0.058709 }
+        <Binormal> { -0.059551 -0.019326 0.998020 }
+      }
+      <Normal> { 0.037385 0.999054 0.021577 }
+    }
+    <Vertex> 3249 {
+      -16.0988826752 -45.9154319763 5.16372203827
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.998177 -0.011763 0.059200 }
+        <Binormal> { -0.051042 -0.687762 0.723957 }
+      }
+      <Normal> { -0.017518 0.725486 0.687979 }
+    }
+    <Vertex> 3250 {
+      -19.4436321259 -46.0605812073 5.20842695236
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.997865 -0.018482 -0.062644 }
+        <Binormal> { 0.058903 -0.158138 0.984941 }
+      }
+      <Normal> { -0.008850 0.987213 0.159032 }
+    }
+    <Vertex> 3251 {
+      -18.6978435516 -45.9387664795 6.17211341858
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { 0.993367 -0.114913 -0.004146 }
+        <Binormal> { 0.026391 0.193999 0.946149 }
+      }
+      <Normal> { 0.363933 0.910367 -0.196814 }
+    }
+    <Vertex> 3252 {
+      -16.9394226074 -46.2185783386 5.76229476929
+      <UV>  {
+        0.666667 0.166667
+        <Tangent> { 0.997410 -0.041555 0.058709 }
+        <Binormal> { -0.059551 -0.019326 0.998020 }
+      }
+      <Normal> { 0.037385 0.999054 0.021577 }
+    }
+    <Vertex> 3253 {
+      -18.6978435516 -45.9387664795 6.17211341858
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { 0.993367 -0.114913 -0.004146 }
+        <Binormal> { 0.026391 0.193999 0.946149 }
+      }
+      <Normal> { 0.363933 0.910367 -0.196814 }
+    }
+    <Vertex> 3254 {
+      -18.9100933075 -45.6639175415 7.62107467651
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.997118 -0.053161 0.054127 }
+        <Binormal> { -0.062212 -0.234690 0.915545 }
+      }
+      <Normal> { 0.355693 0.899228 0.254677 }
+    }
+    <Vertex> 3255 {
+      -15.7426595688 -46.1190795898 6.58052825928
+      <UV>  {
+        0.500000 0.291667
+        <Tangent> { 0.987755 -0.020751 0.154627 }
+        <Binormal> { -0.153510 0.046369 0.986844 }
+      }
+      <Normal> { 0.047609 0.998077 -0.039491 }
+    }
+    <Vertex> 3256 {
+      -16.9394226074 -46.2185783386 5.76229476929
+      <UV>  {
+        0.666667 0.166667
+        <Tangent> { 0.997410 -0.041555 0.058709 }
+        <Binormal> { -0.059551 -0.019326 0.998020 }
+      }
+      <Normal> { 0.037385 0.999054 0.021577 }
+    }
+    <Vertex> 3257 {
+      -15.7426595688 -46.1190795898 6.58052825928
+      <UV>  {
+        0.500000 0.291667
+        <Tangent> { 0.987755 -0.020751 0.154627 }
+        <Binormal> { -0.153510 0.046369 0.986844 }
+      }
+      <Normal> { 0.047609 0.998077 -0.039491 }
+    }
+    <Vertex> 3258 {
+      -12.6800937653 -46.1402893066 5.60956001282
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.980527 -0.013741 0.195902 }
+        <Binormal> { -0.181349 -0.432106 0.877378 }
+      }
+      <Normal> { 0.028260 0.894406 0.446333 }
+    }
+    <Vertex> 3259 {
+      -16.0988826752 -45.9154319763 5.16372203827
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.998177 -0.011763 0.059200 }
+        <Binormal> { -0.051042 -0.687762 0.723957 }
+      }
+      <Normal> { -0.017518 0.725486 0.687979 }
+    }
+    <Vertex> 3260 {
+      -16.9394226074 -45.845123291 10.6280441284
+      <UV>  {
+        0.666667 0.833333
+        <Tangent> { 0.999405 -0.006610 -0.033843 }
+        <Binormal> { 0.034122 0.048082 0.998249 }
+      }
+      <Normal> { 0.005005 0.998810 -0.048280 }
+    }
+    <Vertex> 3261 {
+      -15.7426595688 -45.8856658936 9.6216211319
+      <UV>  {
+        0.500000 0.708333
+        <Tangent> { 0.998810 -0.044676 0.019566 }
+        <Binormal> { -0.017277 0.051025 0.998512 }
+      }
+      <Normal> { 0.040407 0.997894 -0.050295 }
+    }
+    <Vertex> 3262 {
+      -18.9100933075 -45.6639175415 7.62107467651
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.997118 -0.053161 0.054127 }
+        <Binormal> { -0.062212 -0.234690 0.915545 }
+      }
+      <Normal> { 0.355693 0.899228 0.254677 }
+    }
+    <Vertex> 3263 {
+      -19.2525119781 -45.8881149292 10.0453538895
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { 0.998731 0.023114 -0.044741 }
+        <Binormal> { 0.044986 -0.010280 0.998906 }
+      }
+      <Normal> { -0.015473 0.999817 0.010987 }
+    }
+    <Vertex> 3264 {
+      -16.9394226074 -45.845123291 10.6280441284
+      <UV>  {
+        0.666667 0.833333
+        <Tangent> { 0.999405 -0.006610 -0.033843 }
+        <Binormal> { 0.034122 0.048082 0.998249 }
+      }
+      <Normal> { 0.005005 0.998810 -0.048280 }
+    }
+    <Vertex> 3265 {
+      -19.2525119781 -45.8881149292 10.0453538895
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { 0.998731 0.023114 -0.044741 }
+        <Binormal> { 0.044986 -0.010280 0.998906 }
+      }
+      <Normal> { -0.015473 0.999817 0.010987 }
+    }
+    <Vertex> 3266 {
+      -19.092502594 -45.7313919067 11.7471122742
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.941794 0.209259 0.263125 }
+        <Binormal> { -0.321791 0.340239 0.881189 }
+      }
+      <Normal> { -0.034120 0.928068 -0.370800 }
+    }
+    <Vertex> 3267 {
+      -16.0969352722 -45.6721687317 11.8927841187
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.998891 -0.014453 -0.044807 }
+        <Binormal> { 0.046991 0.363707 0.930270 }
+      }
+      <Normal> { 0.004212 0.931242 -0.364299 }
+    }
+    <Vertex> 3268 {
+      -16.9394226074 -45.845123291 10.6280441284
+      <UV>  {
+        0.666667 0.833333
+        <Tangent> { 0.999405 -0.006610 -0.033843 }
+        <Binormal> { 0.034122 0.048082 0.998249 }
+      }
+      <Normal> { 0.005005 0.998810 -0.048280 }
+    }
+    <Vertex> 3269 {
+      -16.0969352722 -45.6721687317 11.8927841187
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.998891 -0.014453 -0.044807 }
+        <Binormal> { 0.046991 0.363707 0.930270 }
+      }
+      <Normal> { 0.004212 0.931242 -0.364299 }
+    }
+    <Vertex> 3270 {
+      -12.8457536697 -45.8217735291 11.4669027328
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.999497 -0.031689 0.001147 }
+        <Binormal> { 0.007181 0.261406 0.965032 }
+      }
+      <Normal> { 0.048250 0.963988 -0.261483 }
+    }
+    <Vertex> 3271 {
+      -15.7426595688 -45.8856658936 9.6216211319
+      <UV>  {
+        0.500000 0.708333
+        <Tangent> { 0.998810 -0.044676 0.019566 }
+        <Binormal> { -0.017277 0.051025 0.998512 }
+      }
+      <Normal> { 0.040407 0.997894 -0.050295 }
+    }
+    <Vertex> 3272 {
+      -23.4180984497 -45.1309356689 6.50823068619
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.995586 0.027073 -0.089869 }
+        <Binormal> { 0.036621 0.769526 0.637521 }
+      }
+      <Normal> { -0.084475 0.638050 -0.765313 }
+    }
+    <Vertex> 3273 {
+      -23.1062393188 -46.0454788208 5.67135334015
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.993021 0.026672 -0.114882 }
+        <Binormal> { 0.079942 0.563909 0.821927 }
+      }
+      <Normal> { -0.089022 0.825312 -0.557573 }
+    }
+    <Vertex> 3274 {
+      -27.243730545 -46.2700843811 6.11081171036
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.976916 0.019711 -0.212713 }
+        <Binormal> { 0.175618 0.491544 0.852098 }
+      }
+      <Normal> { -0.157964 0.869045 -0.468764 }
+    }
+    <Vertex> 3275 {
+      -26.5167827606 -45.2720832825 6.88316249847
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.991746 0.045175 -0.119998 }
+        <Binormal> { 0.041759 0.760983 0.631608 }
+      }
+      <Normal> { -0.260720 0.624989 -0.735771 }
+    }
+    <Vertex> 3276 {
+      -23.4180984497 -45.1309356689 6.50823068619
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.995586 0.027073 -0.089869 }
+        <Binormal> { 0.036621 0.769526 0.637521 }
+      }
+      <Normal> { -0.084475 0.638050 -0.765313 }
+    }
+    <Vertex> 3277 {
+      -26.5167827606 -45.2720832825 6.88316249847
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.991746 0.045175 -0.119998 }
+        <Binormal> { 0.041759 0.760983 0.631608 }
+      }
+      <Normal> { -0.260720 0.624989 -0.735771 }
+    }
+    <Vertex> 3278 {
+      -26.6389160156 -44.1815261841 7.62454938889
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.838084 0.538070 0.089982 }
+        <Binormal> { -0.515886 0.728224 0.450317 }
+      }
+      <Normal> { -0.199042 0.409528 -0.890286 }
+    }
+    <Vertex> 3279 {
+      -23.3979644775 -44.0939979553 7.30324935913
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.997435 0.039778 -0.059512 }
+        <Binormal> { -0.004683 0.865836 0.500248 }
+      }
+      <Normal> { -0.074068 0.498581 -0.863643 }
+    }
+    <Vertex> 3280 {
+      -23.4180984497 -45.1309356689 6.50823068619
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.995586 0.027073 -0.089869 }
+        <Binormal> { 0.036621 0.769526 0.637521 }
+      }
+      <Normal> { -0.084475 0.638050 -0.765313 }
+    }
+    <Vertex> 3281 {
+      -23.3979644775 -44.0939979553 7.30324935913
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.997435 0.039778 -0.059512 }
+        <Binormal> { -0.004683 0.865836 0.500248 }
+      }
+      <Normal> { -0.074068 0.498581 -0.863643 }
+    }
+    <Vertex> 3282 {
+      -20.1864509583 -43.9241981506 7.23956108093
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.877923 0.421779 0.226614 }
+        <Binormal> { -0.476669 0.804149 0.349957 }
+      }
+      <Normal> { 0.087436 0.440626 -0.893399 }
+    }
+    <Vertex> 3283 {
+      -20.361579895 -45.1443328857 6.32796525955
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.998256 -0.004376 -0.058874 }
+        <Binormal> { 0.044115 0.691238 0.696631 }
+      }
+      <Normal> { 0.148839 0.697195 -0.701224 }
+    }
+    <Vertex> 3284 {
+      -23.4180984497 -45.1309356689 6.50823068619
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.995586 0.027073 -0.089869 }
+        <Binormal> { 0.036621 0.769526 0.637521 }
+      }
+      <Normal> { -0.084475 0.638050 -0.765313 }
+    }
+    <Vertex> 3285 {
+      -20.361579895 -45.1443328857 6.32796525955
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.998256 -0.004376 -0.058874 }
+        <Binormal> { 0.044115 0.691238 0.696631 }
+      }
+      <Normal> { 0.148839 0.697195 -0.701224 }
+    }
+    <Vertex> 3286 {
+      -19.4436321259 -46.0605812073 5.20842695236
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.997865 -0.018482 -0.062644 }
+        <Binormal> { 0.058903 -0.158138 0.984941 }
+      }
+      <Normal> { -0.008850 0.987213 0.159032 }
+    }
+    <Vertex> 3287 {
+      -23.1062393188 -46.0454788208 5.67135334015
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.993021 0.026672 -0.114882 }
+        <Binormal> { 0.079942 0.563909 0.821927 }
+      }
+      <Normal> { -0.089022 0.825312 -0.557573 }
+    }
+    <Vertex> 3288 {
+      -27.7012958527 -45.5694389343 7.23361968994
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.694163 -0.090518 -0.714104 }
+        <Binormal> { 0.504608 0.764280 0.393639 }
+      }
+      <Normal> { -0.564928 0.640736 -0.519852 }
+    }
+    <Vertex> 3289 {
+      -26.5167827606 -45.2720832825 6.88316249847
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.873192 -0.040881 -0.485659 }
+        <Binormal> { 0.333610 0.769090 0.535076 }
+      }
+      <Normal> { -0.260720 0.624989 -0.735771 }
+    }
+    <Vertex> 3290 {
+      -27.243730545 -46.2700843811 6.11081171036
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.976916 0.019711 -0.212713 }
+        <Binormal> { 0.175618 0.491544 0.852098 }
+      }
+      <Normal> { -0.157964 0.869045 -0.468764 }
+    }
+    <Vertex> 3291 {
+      -28.4710578918 -46.1985702515 7.0617442131
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.461675 -0.043178 -0.885998 }
+        <Binormal> { 0.792268 0.469252 0.389966 }
+      }
+      <Normal> { -0.397290 0.881832 -0.253975 }
+    }
+    <Vertex> 3292 {
+      -27.7012958527 -45.5694389343 7.23361968994
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.694163 -0.090518 -0.714104 }
+        <Binormal> { 0.504608 0.764280 0.393639 }
+      }
+      <Normal> { -0.564928 0.640736 -0.519852 }
+    }
+    <Vertex> 3293 {
+      -28.4710578918 -46.1985702515 7.0617442131
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.461675 -0.043178 -0.885998 }
+        <Binormal> { 0.792268 0.469252 0.389966 }
+      }
+      <Normal> { -0.397290 0.881832 -0.253975 }
+    }
+    <Vertex> 3294 {
+      -28.2868919373 -46.1725234985 8.11273765564
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.336108 0.716644 -0.611108 }
+        <Binormal> { 0.701865 0.179760 0.596828 }
+      }
+      <Normal> { -0.421705 0.876553 0.231910 }
+    }
+    <Vertex> 3295 {
+      -27.7632770538 -45.0903091431 7.70106744766
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.509703 -0.223018 -0.830942 }
+        <Binormal> { 0.539344 0.817198 0.111506 }
+      }
+      <Normal> { -0.740715 0.542863 -0.395734 }
+    }
+    <Vertex> 3296 {
+      -27.7012958527 -45.5694389343 7.23361968994
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.694163 -0.090518 -0.714104 }
+        <Binormal> { 0.504608 0.764280 0.393639 }
+      }
+      <Normal> { -0.564928 0.640736 -0.519852 }
+    }
+    <Vertex> 3297 {
+      -27.7632770538 -45.0903091431 7.70106744766
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.509703 -0.223018 -0.830942 }
+        <Binormal> { 0.539344 0.817198 0.111506 }
+      }
+      <Normal> { -0.740715 0.542863 -0.395734 }
+    }
+    <Vertex> 3298 {
+      -26.6389160156 -44.1815261841 7.62454938889
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.829935 -0.121028 -0.544574 }
+        <Binormal> { 0.330768 0.847272 0.315792 }
+      }
+      <Normal> { -0.199042 0.409528 -0.890286 }
+    }
+    <Vertex> 3299 {
+      -26.5167827606 -45.2720832825 6.88316249847
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.873192 -0.040881 -0.485659 }
+        <Binormal> { 0.333610 0.769090 0.535076 }
+      }
+      <Normal> { -0.260720 0.624989 -0.735771 }
+    }
+    <Vertex> 3300 {
+      -19.3035697937 -45.3106079102 6.56151103973
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.534392 0.247830 0.808087 }
+        <Binormal> { -0.668992 0.704737 0.226274 }
+      }
+      <Normal> { 0.549333 0.678182 -0.488083 }
+    }
+    <Vertex> 3301 {
+      -18.6978435516 -45.9387664795 6.17211341858
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.213196 0.158502 0.964067 }
+        <Binormal> { -0.908850 0.392816 0.136402 }
+      }
+      <Normal> { 0.363933 0.910367 -0.196814 }
+    }
+    <Vertex> 3302 {
+      -19.4436321259 -46.0605812073 5.20842695236
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.701680 0.123770 0.701659 }
+        <Binormal> { -0.673004 -0.117800 0.693803 }
+      }
+      <Normal> { -0.008850 0.987213 0.159032 }
+    }
+    <Vertex> 3303 {
+      -20.361579895 -45.1443328857 6.32796525955
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.840291 0.170709 0.514558 }
+        <Binormal> { -0.478453 0.665818 0.560439 }
+      }
+      <Normal> { 0.148839 0.697195 -0.701224 }
+    }
+    <Vertex> 3304 {
+      -19.3035697937 -45.3106079102 6.56151103973
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.534392 0.247830 0.808087 }
+        <Binormal> { -0.668992 0.704737 0.226274 }
+      }
+      <Normal> { 0.549333 0.678182 -0.488083 }
+    }
+    <Vertex> 3305 {
+      -20.361579895 -45.1443328857 6.32796525955
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.840291 0.170709 0.514558 }
+        <Binormal> { -0.478453 0.665818 0.560439 }
+      }
+      <Normal> { 0.148839 0.697195 -0.701224 }
+    }
+    <Vertex> 3306 {
+      -20.1864509583 -43.9241981506 7.23956108093
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.877923 0.421779 0.226614 }
+        <Binormal> { -0.476669 0.804149 0.349957 }
+      }
+      <Normal> { 0.087436 0.440626 -0.893399 }
+    }
+    <Vertex> 3307 {
+      -19.2595043182 -44.7078475952 7.19155597687
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.319765 0.389516 0.863729 }
+        <Binormal> { -0.612880 0.775911 -0.123016 }
+      }
+      <Normal> { 0.745109 0.522935 -0.413862 }
+    }
+    <Vertex> 3308 {
+      -19.3035697937 -45.3106079102 6.56151103973
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.534392 0.247830 0.808087 }
+        <Binormal> { -0.668992 0.704737 0.226274 }
+      }
+      <Normal> { 0.549333 0.678182 -0.488083 }
+    }
+    <Vertex> 3309 {
+      -19.2595043182 -44.7078475952 7.19155597687
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.319765 0.389516 0.863729 }
+        <Binormal> { -0.612880 0.775911 -0.123016 }
+      }
+      <Normal> { 0.745109 0.522935 -0.413862 }
+    }
+    <Vertex> 3310 {
+      -18.9100933075 -45.6639175415 7.62107467651
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.010570 0.259472 0.965693 }
+        <Binormal> { -0.802296 0.340798 -0.082788 }
+      }
+      <Normal> { 0.355693 0.899228 0.254677 }
+    }
+    <Vertex> 3311 {
+      -18.6978435516 -45.9387664795 6.17211341858
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.213196 0.158502 0.964067 }
+        <Binormal> { -0.908850 0.392816 0.136402 }
+      }
+      <Normal> { 0.363933 0.910367 -0.196814 }
+    }
+    <Vertex> 3312 {
+      -27.7698802948 -44.427822113 7.90237522125
+      <UV>  {
+        0.333333 0.666667
+        <Tangent> { 0.414487 0.909520 0.031206 }
+        <Binormal> { 0.448669 -0.233969 0.859840 }
+      }
+      <Normal> { -0.761376 0.403760 0.507157 }
+    }
+    <Vertex> 3313 {
+      -27.2743663788 -43.6560668945 7.89144039154
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.478515 0.877223 0.038762 }
+        <Binormal> { 0.081106 -0.082857 0.873885 }
+      }
+      <Normal> { -0.543931 0.829096 0.129093 }
+    }
+    <Vertex> 3314 {
+      -26.6389160156 -44.1815261841 7.62454938889
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.320136 0.939135 0.124655 }
+        <Binormal> { -0.887148 0.260201 0.318032 }
+      }
+      <Normal> { -0.199042 0.409528 -0.890286 }
+    }
+    <Vertex> 3315 {
+      -27.7632770538 -45.0903091431 7.70106744766
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.258550 0.959045 0.115688 }
+        <Binormal> { -0.442329 0.016625 0.850736 }
+      }
+      <Normal> { -0.740715 0.542863 -0.395734 }
+    }
+    <Vertex> 3316 {
+      -27.7698802948 -44.427822113 7.90237522125
+      <UV>  {
+        0.333333 0.666667
+        <Tangent> { 0.414487 0.909520 0.031206 }
+        <Binormal> { 0.448669 -0.233969 0.859840 }
+      }
+      <Normal> { -0.761376 0.403760 0.507157 }
+    }
+    <Vertex> 3317 {
+      -27.7632770538 -45.0903091431 7.70106744766
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.258550 0.959045 0.115688 }
+        <Binormal> { -0.442329 0.016625 0.850736 }
+      }
+      <Normal> { -0.740715 0.542863 -0.395734 }
+    }
+    <Vertex> 3318 {
+      -28.2868919373 -46.1725234985 8.11273765564
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.352662 0.935376 -0.026495 }
+        <Binormal> { 0.240147 -0.070613 0.703579 }
+      }
+      <Normal> { -0.421705 0.876553 0.231910 }
+    }
+    <Vertex> 3319 {
+      -27.346162796 -44.5441093445 7.92701101303
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.509038 0.857742 -0.071831 }
+        <Binormal> { 0.843832 -0.481717 0.227674 }
+      }
+      <Normal> { -0.193060 0.121952 0.973571 }
+    }
+    <Vertex> 3320 {
+      -27.7698802948 -44.427822113 7.90237522125
+      <UV>  {
+        0.333333 0.666667
+        <Tangent> { 0.414487 0.909520 0.031206 }
+        <Binormal> { 0.448669 -0.233969 0.859840 }
+      }
+      <Normal> { -0.761376 0.403760 0.507157 }
+    }
+    <Vertex> 3321 {
+      -27.346162796 -44.5441093445 7.92701101303
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.509038 0.857742 -0.071831 }
+        <Binormal> { 0.843832 -0.481717 0.227674 }
+      }
+      <Normal> { -0.193060 0.121952 0.973571 }
+    }
+    <Vertex> 3322 {
+      -26.8676338196 -43.781036377 7.91246318817
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.608551 0.793467 -0.008727 }
+        <Binormal> { 0.792992 -0.607802 0.034985 }
+      }
+      <Normal> { -0.009217 0.045473 0.998901 }
+    }
+    <Vertex> 3323 {
+      -27.2743663788 -43.6560668945 7.89144039154
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.478515 0.877223 0.038762 }
+        <Binormal> { 0.081106 -0.082857 0.873885 }
+      }
+      <Normal> { -0.543931 0.829096 0.129093 }
+    }
+    <Vertex> 3324 {
+      -19.1860618591 -44.0188026428 7.44241428375
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { -0.312298 0.945529 0.091897 }
+        <Binormal> { 0.430272 0.226385 -0.867061 }
+      }
+      <Normal> { 0.806757 0.333811 0.487503 }
+    }
+    <Vertex> 3325 {
+      -19.6727085114 -44.1639175415 7.51778554916
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.445051 0.894937 -0.031899 }
+        <Binormal> { 0.851812 0.412238 -0.318915 }
+      }
+      <Normal> { 0.295450 0.122471 0.947447 }
+    }
+    <Vertex> 3326 {
+      -18.9100933075 -45.6639175415 7.62107467651
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.264803 0.964122 0.018644 }
+        <Binormal> { 0.228774 0.074071 -0.581050 }
+      }
+      <Normal> { 0.355693 0.899228 0.254677 }
+    }
+    <Vertex> 3327 {
+      -19.2595043182 -44.7078475952 7.19155597687
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.138393 0.972740 0.186076 }
+        <Binormal> { -0.499885 0.081371 -0.797168 }
+      }
+      <Normal> { 0.745109 0.522935 -0.413862 }
+    }
+    <Vertex> 3328 {
+      -19.1860618591 -44.0188026428 7.44241428375
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { -0.312298 0.945529 0.091897 }
+        <Binormal> { 0.430272 0.226385 -0.867061 }
+      }
+      <Normal> { 0.806757 0.333811 0.487503 }
+    }
+    <Vertex> 3329 {
+      -19.2595043182 -44.7078475952 7.19155597687
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.138393 0.972740 0.186076 }
+        <Binormal> { -0.499885 0.081371 -0.797168 }
+      }
+      <Normal> { 0.745109 0.522935 -0.413862 }
+    }
+    <Vertex> 3330 {
+      -20.1864509583 -43.9241981506 7.23956108093
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.877923 0.421779 0.226614 }
+        <Binormal> { -0.476669 0.804149 0.349957 }
+      }
+      <Normal> { 0.087436 0.440626 -0.893399 }
+    }
+    <Vertex> 3331 {
+      -19.5346183777 -43.319568634 7.47237062454
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.377599 0.921020 0.095614 }
+        <Binormal> { 0.010440 0.088545 -0.811700 }
+      }
+      <Normal> { 0.538102 0.837123 0.098239 }
+    }
+    <Vertex> 3332 {
+      -19.1860618591 -44.0188026428 7.44241428375
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { -0.312298 0.945529 0.091897 }
+        <Binormal> { 0.430272 0.226385 -0.867061 }
+      }
+      <Normal> { 0.806757 0.333811 0.487503 }
+    }
+    <Vertex> 3333 {
+      -19.5346183777 -43.319568634 7.47237062454
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.377599 0.921020 0.095614 }
+        <Binormal> { 0.010440 0.088545 -0.811700 }
+      }
+      <Normal> { 0.538102 0.837123 0.098239 }
+    }
+    <Vertex> 3334 {
+      -20.0024223328 -43.4673919678 7.54278326035
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.831711 0.543273 0.114502 }
+        <Binormal> { 0.535048 0.838626 -0.092555 }
+      }
+      <Normal> { 0.110935 0.038820 0.993042 }
+    }
+    <Vertex> 3335 {
+      -19.6727085114 -44.1639175415 7.51778554916
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.445051 0.894937 -0.031899 }
+        <Binormal> { 0.851812 0.412238 -0.318915 }
+      }
+      <Normal> { 0.295450 0.122471 0.947447 }
+    }
+    <Vertex> 3336 {
+      -21.5222396851 -46.0416374207 9.89009284973
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.041107 0.149256 -0.987944 }
+        <Binormal> { 0.994012 0.072781 0.052355 }
+      }
+      <Normal> { -0.077151 0.993500 0.083682 }
+    }
+    <Vertex> 3337 {
+      -23.2547550201 -46.2405586243 9.93703937531
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.041105 0.149257 -0.987944 }
+        <Binormal> { 0.982782 0.171847 0.066852 }
+      }
+      <Normal> { -0.179296 0.975341 0.128636 }
+    }
+    <Vertex> 3338 {
+      -23.8728981018 -46.3093299866 11.7669858932
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.319825 0.035582 -0.946808 }
+        <Binormal> { 0.856484 0.282751 0.299940 }
+      }
+      <Normal> { -0.179052 0.917905 -0.354015 }
+    }
+    <Vertex> 3339 {
+      -21.5924854279 -45.9275436401 11.7082967758
+      <UV>  {
+        0.250000 0.750000
+        <Tangent> { 0.041682 0.406987 -0.912482 }
+        <Binormal> { 0.707395 0.108586 0.080745 }
+      }
+      <Normal> { -0.103030 0.931181 -0.349620 }
+    }
+    <Vertex> 3340 {
+      -21.5222396851 -46.0416374207 9.89009284973
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.041107 0.149256 -0.987944 }
+        <Binormal> { 0.994012 0.072781 0.052355 }
+      }
+      <Normal> { -0.077151 0.993500 0.083682 }
+    }
+    <Vertex> 3341 {
+      -21.5924854279 -45.9275436401 11.7082967758
+      <UV>  {
+        0.250000 0.750000
+        <Tangent> { 0.041682 0.406987 -0.912482 }
+        <Binormal> { 0.707395 0.108586 0.080745 }
+      }
+      <Normal> { -0.103030 0.931181 -0.349620 }
+    }
+    <Vertex> 3342 {
+      -19.092502594 -45.7313919067 11.7471122742
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.747415 0.006673 -0.664324 }
+        <Binormal> { 0.614063 0.299808 0.693880 }
+      }
+      <Normal> { -0.034120 0.928068 -0.370800 }
+    }
+    <Vertex> 3343 {
+      -19.2525119781 -45.8881149292 10.0453538895
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.933055 0.068666 -0.353120 }
+        <Binormal> { 0.353809 -0.004787 0.933947 }
+      }
+      <Normal> { -0.015473 0.999817 0.010987 }
+    }
+    <Vertex> 3344 {
+      -21.5222396851 -46.0416374207 9.89009284973
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.041107 0.149256 -0.987944 }
+        <Binormal> { 0.994012 0.072781 0.052355 }
+      }
+      <Normal> { -0.077151 0.993500 0.083682 }
+    }
+    <Vertex> 3345 {
+      -19.2525119781 -45.8881149292 10.0453538895
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.933055 0.068666 -0.353120 }
+        <Binormal> { 0.353809 -0.004787 0.933947 }
+      }
+      <Normal> { -0.015473 0.999817 0.010987 }
+    }
+    <Vertex> 3346 {
+      -18.9100933075 -45.6639175415 7.62107467651
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.951573 0.028295 -0.306117 }
+        <Binormal> { 0.282475 -0.351227 0.845617 }
+      }
+      <Normal> { 0.355693 0.899228 0.254677 }
+    }
+    <Vertex> 3347 {
+      -21.4220809937 -45.5455703735 8.15752792358
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { 0.994593 0.019354 -0.102031 }
+        <Binormal> { 0.087961 -0.677705 0.728880 }
+      }
+      <Normal> { 0.014008 0.733116 0.679952 }
+    }
+    <Vertex> 3348 {
+      -21.5222396851 -46.0416374207 9.89009284973
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.041107 0.149256 -0.987944 }
+        <Binormal> { 0.994012 0.072781 0.052355 }
+      }
+      <Normal> { -0.077151 0.993500 0.083682 }
+    }
+    <Vertex> 3349 {
+      -21.4220809937 -45.5455703735 8.15752792358
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { 0.994593 0.019354 -0.102031 }
+        <Binormal> { 0.087961 -0.677705 0.728880 }
+      }
+      <Normal> { 0.014008 0.733116 0.679952 }
+    }
+    <Vertex> 3350 {
+      -23.7209339142 -45.7575340271 8.11459732056
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.240033 0.248707 -0.938365 }
+        <Binormal> { 0.921999 -0.070798 -0.254611 }
+      }
+      <Normal> { 0.197668 0.855922 0.477798 }
+    }
+    <Vertex> 3351 {
+      -23.2547550201 -46.2405586243 9.93703937531
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.041105 0.149257 -0.987944 }
+        <Binormal> { 0.982782 0.171847 0.066852 }
+      }
+      <Normal> { -0.179296 0.975341 0.128636 }
+    }
+    <Vertex> 3352 {
+      -23.3856258392 -43.4955024719 7.62666606903
+      <UV>  {
+        0.333333 0.500000
+        <Tangent> { 0.017876 0.919567 0.392525 }
+        <Binormal> { -0.997465 -0.010266 0.069474 }
+      }
+      <Normal> { -0.068087 0.383984 -0.920804 }
+    }
+    <Vertex> 3353 {
+      -25.0885658264 -43.3773536682 7.76327466965
+      <UV>  {
+        0.500000 0.708333
+        <Tangent> { -0.522780 0.805614 0.278725 }
+        <Binormal> { -0.831298 -0.467082 -0.209158 }
+      }
+      <Normal> { -0.074984 0.515641 -0.853481 }
+    }
+    <Vertex> 3354 {
+      -23.396314621 -43.1543655396 7.75679731369
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.049796 0.987442 0.149930 }
+        <Binormal> { -0.072548 -0.009589 0.087246 }
+      }
+      <Normal> { -0.038118 0.996216 0.077792 }
+    }
+    <Vertex> 3355 {
+      -21.6742458344 -43.2343788147 7.57767152786
+      <UV>  {
+        0.500000 0.291667
+        <Tangent> { 0.528020 0.818134 0.227711 }
+        <Binormal> { -0.818185 0.439052 0.319768 }
+      }
+      <Normal> { -0.062136 0.509323 -0.858303 }
+    }
+    <Vertex> 3356 {
+      -23.3856258392 -43.4955024719 7.62666606903
+      <UV>  {
+        0.333333 0.500000
+        <Tangent> { 0.017876 0.919567 0.392525 }
+        <Binormal> { -0.997465 -0.010266 0.069474 }
+      }
+      <Normal> { -0.068087 0.383984 -0.920804 }
+    }
+    <Vertex> 3357 {
+      -21.6742458344 -43.2343788147 7.57767152786
+      <UV>  {
+        0.500000 0.291667
+        <Tangent> { 0.528020 0.818134 0.227711 }
+        <Binormal> { -0.818185 0.439052 0.319768 }
+      }
+      <Normal> { -0.062136 0.509323 -0.858303 }
+    }
+    <Vertex> 3358 {
+      -20.1864509583 -43.9241981506 7.23956108093
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.519114 0.802336 0.294579 }
+        <Binormal> { -0.846606 0.489533 0.158583 }
+      }
+      <Normal> { 0.087436 0.440626 -0.893399 }
+    }
+    <Vertex> 3359 {
+      -23.3979644775 -44.0939979553 7.30324935913
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.018134 0.879620 0.475331 }
+        <Binormal> { -0.996669 -0.019545 0.074193 }
+      }
+      <Normal> { -0.074068 0.498581 -0.863643 }
+    }
+    <Vertex> 3360 {
+      -23.3856258392 -43.4955024719 7.62666606903
+      <UV>  {
+        0.333333 0.500000
+        <Tangent> { 0.017876 0.919567 0.392525 }
+        <Binormal> { -0.997465 -0.010266 0.069474 }
+      }
+      <Normal> { -0.068087 0.383984 -0.920804 }
+    }
+    <Vertex> 3361 {
+      -23.3979644775 -44.0939979553 7.30324935913
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.018134 0.879620 0.475331 }
+        <Binormal> { -0.996669 -0.019545 0.074193 }
+      }
+      <Normal> { -0.074068 0.498581 -0.863643 }
+    }
+    <Vertex> 3362 {
+      -26.6389160156 -44.1815261841 7.62454938889
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.838084 0.538070 0.089982 }
+        <Binormal> { -0.515886 0.728224 0.450317 }
+      }
+      <Normal> { -0.199042 0.409528 -0.890286 }
+    }
+    <Vertex> 3363 {
+      -25.0885658264 -43.3773536682 7.76327466965
+      <UV>  {
+        0.500000 0.708333
+        <Tangent> { -0.522780 0.805614 0.278725 }
+        <Binormal> { -0.831298 -0.467082 -0.209158 }
+      }
+      <Normal> { -0.074984 0.515641 -0.853481 }
+    }
+    <Vertex> 3364 {
+      -26.1740837097 -43.2333526611 7.86632108688
+      <UV>  {
+        0.666667 0.833333
+        <Tangent> { -0.175005 0.897442 0.404934 }
+        <Binormal> { -0.632593 -0.094365 -0.064256 }
+      }
+      <Normal> { -0.114597 0.954833 -0.274056 }
+    }
+    <Vertex> 3365 {
+      -27.2743663788 -43.6560668945 7.89144039154
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.420677 0.736615 0.529556 }
+        <Binormal> { -0.343961 -0.233735 0.051886 }
+      }
+      <Normal> { -0.543931 0.829096 0.129093 }
+    }
+    <Vertex> 3366 {
+      -26.8676338196 -43.781036377 7.91246318817
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.681310 -0.725565 0.096811 }
+        <Binormal> { -0.729170 -0.681454 0.024294 }
+      }
+      <Normal> { -0.009217 0.045473 0.998901 }
+    }
+    <Vertex> 3367 {
+      -25.7503604889 -43.3496398926 7.89095592499
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { 0.978351 -0.186785 -0.089113 }
+        <Binormal> { -0.143005 -0.915575 0.349069 }
+      }
+      <Normal> { 0.010559 0.354778 0.934874 }
+    }
+    <Vertex> 3368 {
+      -26.1740837097 -43.2333526611 7.86632108688
+      <UV>  {
+        0.666667 0.833333
+        <Tangent> { -0.175005 0.897442 0.404934 }
+        <Binormal> { -0.632593 -0.094365 -0.064256 }
+      }
+      <Normal> { -0.114597 0.954833 -0.274056 }
+    }
+    <Vertex> 3369 {
+      -25.7503604889 -43.3496398926 7.89095592499
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { 0.978351 -0.186785 -0.089113 }
+        <Binormal> { -0.143005 -0.915575 0.349069 }
+      }
+      <Normal> { 0.010559 0.354778 0.934874 }
+    }
+    <Vertex> 3370 {
+      -23.396314621 -43.1543655396 7.75679731369
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.049796 0.987442 0.149930 }
+        <Binormal> { -0.072548 -0.009589 0.087246 }
+      }
+      <Normal> { -0.038118 0.996216 0.077792 }
+    }
+    <Vertex> 3371 {
+      -25.0885658264 -43.3773536682 7.76327466965
+      <UV>  {
+        0.500000 0.708333
+        <Tangent> { -0.522780 0.805614 0.278725 }
+        <Binormal> { -0.831298 -0.467082 -0.209158 }
+      }
+      <Normal> { -0.074984 0.515641 -0.853481 }
+    }
+    <Vertex> 3372 {
+      -26.1740837097 -43.2333526611 7.86632108688
+      <UV>  {
+        0.666667 0.833333
+        <Tangent> { -0.175005 0.897442 0.404934 }
+        <Binormal> { -0.632593 -0.094365 -0.064256 }
+      }
+      <Normal> { -0.114597 0.954833 -0.274056 }
+    }
+    <Vertex> 3373 {
+      -25.0885658264 -43.3773536682 7.76327466965
+      <UV>  {
+        0.500000 0.708333
+        <Tangent> { -0.522780 0.805614 0.278725 }
+        <Binormal> { -0.831298 -0.467082 -0.209158 }
+      }
+      <Normal> { -0.074984 0.515641 -0.853481 }
+    }
+    <Vertex> 3374 {
+      -26.6389160156 -44.1815261841 7.62454938889
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.838084 0.538070 0.089982 }
+        <Binormal> { -0.515886 0.728224 0.450317 }
+      }
+      <Normal> { -0.199042 0.409528 -0.890286 }
+    }
+    <Vertex> 3375 {
+      -27.2743663788 -43.6560668945 7.89144039154
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.420677 0.736615 0.529556 }
+        <Binormal> { -0.343961 -0.233735 0.051886 }
+      }
+      <Normal> { -0.543931 0.829096 0.129093 }
+    }
+    <Vertex> 3376 {
+      -20.5802898407 -42.9991073608 7.56224107742
+      <UV>  {
+        0.666667 0.166667
+        <Tangent> { 0.150466 0.900692 0.407571 }
+        <Binormal> { -0.678638 0.049867 0.140336 }
+      }
+      <Normal> { 0.002136 0.945463 -0.325632 }
+    }
+    <Vertex> 3377 {
+      -21.6742458344 -43.2343788147 7.57767152786
+      <UV>  {
+        0.500000 0.291667
+        <Tangent> { 0.528020 0.818134 0.227711 }
+        <Binormal> { -0.818185 0.439052 0.319768 }
+      }
+      <Normal> { -0.062136 0.509323 -0.858303 }
+    }
+    <Vertex> 3378 {
+      -23.396314621 -43.1543655396 7.75679731369
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.049796 0.987442 0.149930 }
+        <Binormal> { -0.072548 -0.009589 0.087246 }
+      }
+      <Normal> { -0.038118 0.996216 0.077792 }
+    }
+    <Vertex> 3379 {
+      -21.0669384003 -43.1442222595 7.63761281967
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { -0.966821 -0.254774 0.018616 }
+        <Binormal> { -0.244687 0.904951 -0.322831 }
+      }
+      <Normal> { 0.060427 0.349834 0.934843 }
+    }
+    <Vertex> 3380 {
+      -20.5802898407 -42.9991073608 7.56224107742
+      <UV>  {
+        0.666667 0.166667
+        <Tangent> { 0.150466 0.900692 0.407571 }
+        <Binormal> { -0.678638 0.049867 0.140336 }
+      }
+      <Normal> { 0.002136 0.945463 -0.325632 }
+    }
+    <Vertex> 3381 {
+      -21.0669384003 -43.1442222595 7.63761281967
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { -0.966821 -0.254774 0.018616 }
+        <Binormal> { -0.244687 0.904951 -0.322831 }
+      }
+      <Normal> { 0.060427 0.349834 0.934843 }
+    }
+    <Vertex> 3382 {
+      -20.0024223328 -43.4673919678 7.54278326035
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.831711 0.543273 0.114502 }
+        <Binormal> { 0.535048 0.838626 -0.092555 }
+      }
+      <Normal> { 0.110935 0.038820 0.993042 }
+    }
+    <Vertex> 3383 {
+      -19.5346183777 -43.319568634 7.47237062454
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.318199 0.789852 0.524294 }
+        <Binormal> { -0.361304 0.250864 -0.158649 }
+      }
+      <Normal> { 0.538102 0.837123 0.098239 }
+    }
+    <Vertex> 3384 {
+      -20.5802898407 -42.9991073608 7.56224107742
+      <UV>  {
+        0.666667 0.166667
+        <Tangent> { 0.150466 0.900692 0.407571 }
+        <Binormal> { -0.678638 0.049867 0.140336 }
+      }
+      <Normal> { 0.002136 0.945463 -0.325632 }
+    }
+    <Vertex> 3385 {
+      -19.5346183777 -43.319568634 7.47237062454
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.318199 0.789852 0.524294 }
+        <Binormal> { -0.361304 0.250864 -0.158649 }
+      }
+      <Normal> { 0.538102 0.837123 0.098239 }
+    }
+    <Vertex> 3386 {
+      -20.1864509583 -43.9241981506 7.23956108093
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.519114 0.802336 0.294579 }
+        <Binormal> { -0.846606 0.489533 0.158583 }
+      }
+      <Normal> { 0.087436 0.440626 -0.893399 }
+    }
+    <Vertex> 3387 {
+      -21.6742458344 -43.2343788147 7.57767152786
+      <UV>  {
+        0.500000 0.291667
+        <Tangent> { 0.528020 0.818134 0.227711 }
+        <Binormal> { -0.818185 0.439052 0.319768 }
+      }
+      <Normal> { -0.062136 0.509323 -0.858303 }
+    }
+    <Vertex> 3388 {
+      -25.7309207916 -44.5087547302 7.85676050186
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.207249 0.974132 -0.090078 }
+        <Binormal> { 0.977744 -0.209237 -0.013185 }
+      }
+      <Normal> { 0.031404 0.083987 0.995941 }
+    }
+    <Vertex> 3389 {
+      -27.346162796 -44.5441093445 7.92701101303
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.509038 0.857742 -0.071831 }
+        <Binormal> { 0.843832 -0.481717 0.227674 }
+      }
+      <Normal> { -0.193060 0.121952 0.973571 }
+    }
+    <Vertex> 3390 {
+      -28.2868919373 -46.1725234985 8.11273765564
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.336108 0.716644 -0.611108 }
+        <Binormal> { 0.701865 0.179760 0.596828 }
+      }
+      <Normal> { -0.421705 0.876553 0.231910 }
+    }
+    <Vertex> 3391 {
+      -25.8366241455 -45.3561325073 8.02838516235
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { 0.074084 0.910205 0.407478 }
+        <Binormal> { -0.171159 -0.038498 0.117113 }
+      }
+      <Normal> { -0.049867 0.968139 0.245369 }
+    }
+    <Vertex> 3392 {
+      -25.7309207916 -44.5087547302 7.85676050186
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.207249 0.974132 -0.090078 }
+        <Binormal> { 0.977744 -0.209237 -0.013185 }
+      }
+      <Normal> { 0.031404 0.083987 0.995941 }
+    }
+    <Vertex> 3393 {
+      -25.8366241455 -45.3561325073 8.02838516235
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { 0.074084 0.910205 0.407478 }
+        <Binormal> { -0.171159 -0.038498 0.117113 }
+      }
+      <Normal> { -0.049867 0.968139 0.245369 }
+    }
+    <Vertex> 3394 {
+      -23.7209339142 -45.7575340271 8.11459732056
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.122214 0.950053 -0.287163 }
+        <Binormal> { 0.699723 -0.115157 -0.083190 }
+      }
+      <Normal> { 0.197668 0.855922 0.477798 }
+    }
+    <Vertex> 3395 {
+      -23.5199260712 -44.3975791931 7.73906564713
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.122607 0.983211 -0.135140 }
+        <Binormal> { 0.991945 -0.125730 -0.014794 }
+      }
+      <Normal> { 0.031495 0.131901 0.990753 }
+    }
+    <Vertex> 3396 {
+      -25.7309207916 -44.5087547302 7.85676050186
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.207249 0.974132 -0.090078 }
+        <Binormal> { 0.977744 -0.209237 -0.013185 }
+      }
+      <Normal> { 0.031404 0.083987 0.995941 }
+    }
+    <Vertex> 3397 {
+      -23.5199260712 -44.3975791931 7.73906564713
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.122607 0.983211 -0.135140 }
+        <Binormal> { 0.991945 -0.125730 -0.014794 }
+      }
+      <Normal> { 0.031495 0.131901 0.990753 }
+    }
+    <Vertex> 3398 {
+      -23.396314621 -43.1543655396 7.75679731369
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.097635 0.995062 0.017853 }
+        <Binormal> { 0.059622 -0.008276 0.135195 }
+      }
+      <Normal> { -0.038118 0.996216 0.077792 }
+    }
+    <Vertex> 3399 {
+      -25.7503604889 -43.3496398926 7.89095592499
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.016762 0.999425 0.029484 }
+        <Binormal> { 0.923875 0.015982 -0.016500 }
+      }
+      <Normal> { 0.010559 0.354778 0.934874 }
+    }
+    <Vertex> 3400 {
+      -25.7309207916 -44.5087547302 7.85676050186
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.207249 0.974132 -0.090078 }
+        <Binormal> { 0.977744 -0.209237 -0.013185 }
+      }
+      <Normal> { 0.031404 0.083987 0.995941 }
+    }
+    <Vertex> 3401 {
+      -25.7503604889 -43.3496398926 7.89095592499
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.016762 0.999425 0.029484 }
+        <Binormal> { 0.923875 0.015982 -0.016500 }
+      }
+      <Normal> { 0.010559 0.354778 0.934874 }
+    }
+    <Vertex> 3402 {
+      -26.8676338196 -43.781036377 7.91246318817
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.232291 0.972595 0.009941 }
+        <Binormal> { 0.971075 -0.232128 0.019527 }
+      }
+      <Normal> { -0.009217 0.045473 0.998901 }
+    }
+    <Vertex> 3403 {
+      -27.346162796 -44.5441093445 7.92701101303
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.509038 0.857742 -0.071831 }
+        <Binormal> { 0.843832 -0.481717 0.227674 }
+      }
+      <Normal> { -0.193060 0.121952 0.973571 }
+    }
+    <Vertex> 3404 {
+      -21.3089256287 -44.2864074707 7.62137126923
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.005911 0.988376 -0.151917 }
+        <Binormal> { 0.997621 -0.004322 -0.066935 }
+      }
+      <Normal> { 0.066897 0.138096 0.988128 }
+    }
+    <Vertex> 3405 {
+      -23.5199260712 -44.3975791931 7.73906564713
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.122607 0.983211 -0.135140 }
+        <Binormal> { 0.991945 -0.125730 -0.014794 }
+      }
+      <Normal> { 0.031495 0.131901 0.990753 }
+    }
+    <Vertex> 3406 {
+      -23.7209339142 -45.7575340271 8.11459732056
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.122214 0.950053 -0.287163 }
+        <Binormal> { 0.699723 -0.115157 -0.083190 }
+      }
+      <Normal> { 0.197668 0.855922 0.477798 }
+    }
+    <Vertex> 3407 {
+      -21.4220809937 -45.5455703735 8.15752792358
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { 0.082401 0.916936 -0.390435 }
+        <Binormal> { 0.909706 -0.061498 0.047565 }
+      }
+      <Normal> { 0.014008 0.733116 0.679952 }
+    }
+    <Vertex> 3408 {
+      -21.3089256287 -44.2864074707 7.62137126923
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.005911 0.988376 -0.151917 }
+        <Binormal> { 0.997621 -0.004322 -0.066935 }
+      }
+      <Normal> { 0.066897 0.138096 0.988128 }
+    }
+    <Vertex> 3409 {
+      -21.4220809937 -45.5455703735 8.15752792358
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { 0.082401 0.916936 -0.390435 }
+        <Binormal> { 0.909706 -0.061498 0.047565 }
+      }
+      <Normal> { 0.014008 0.733116 0.679952 }
+    }
+    <Vertex> 3410 {
+      -18.9100933075 -45.6639175415 7.62107467651
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.223505 0.949537 -0.220058 }
+        <Binormal> { 0.439708 -0.021352 -0.538726 }
+      }
+      <Normal> { 0.355693 0.899228 0.254677 }
+    }
+    <Vertex> 3411 {
+      -19.6727085114 -44.1639175415 7.51778554916
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.445051 0.894937 -0.031899 }
+        <Binormal> { 0.851812 0.412238 -0.318915 }
+      }
+      <Normal> { 0.295450 0.122471 0.947447 }
+    }
+    <Vertex> 3412 {
+      -21.3089256287 -44.2864074707 7.62137126923
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.005911 0.988376 -0.151917 }
+        <Binormal> { 0.997621 -0.004322 -0.066935 }
+      }
+      <Normal> { 0.066897 0.138096 0.988128 }
+    }
+    <Vertex> 3413 {
+      -19.6727085114 -44.1639175415 7.51778554916
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.445051 0.894937 -0.031899 }
+        <Binormal> { 0.851812 0.412238 -0.318915 }
+      }
+      <Normal> { 0.295450 0.122471 0.947447 }
+    }
+    <Vertex> 3414 {
+      -20.0024223328 -43.4673919678 7.54278326035
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.047645 0.998613 0.022397 }
+        <Binormal> { 0.990795 0.049798 -0.112630 }
+      }
+      <Normal> { 0.110935 0.038820 0.993042 }
+    }
+    <Vertex> 3415 {
+      -21.0669384003 -43.1442222595 7.63761281967
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.207242 0.978191 0.013910 }
+        <Binormal> { 0.909589 -0.192899 0.013392 }
+      }
+      <Normal> { 0.060427 0.349834 0.934843 }
+    }
+    <Vertex> 3416 {
+      -21.3089256287 -44.2864074707 7.62137126923
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.005911 0.988376 -0.151917 }
+        <Binormal> { 0.997621 -0.004322 -0.066935 }
+      }
+      <Normal> { 0.066897 0.138096 0.988128 }
+    }
+    <Vertex> 3417 {
+      -21.0669384003 -43.1442222595 7.63761281967
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.207242 0.978191 0.013910 }
+        <Binormal> { 0.909589 -0.192899 0.013392 }
+      }
+      <Normal> { 0.060427 0.349834 0.934843 }
+    }
+    <Vertex> 3418 {
+      -23.396314621 -43.1543655396 7.75679731369
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.097635 0.995062 0.017853 }
+        <Binormal> { 0.059622 -0.008276 0.135195 }
+      }
+      <Normal> { -0.038118 0.996216 0.077792 }
+    }
+    <Vertex> 3419 {
+      -23.5199260712 -44.3975791931 7.73906564713
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.122607 0.983211 -0.135140 }
+        <Binormal> { 0.991945 -0.125730 -0.014794 }
+      }
+      <Normal> { 0.031495 0.131901 0.990753 }
+    }
+    <Vertex> 3420 {
+      -27.9266796112 -46.7885055542 10.0642080307
+      <UV>  {
+        0.500000 0.166667
+        <Tangent> { -0.055250 0.243194 -0.968403 }
+        <Binormal> { 0.985058 0.171567 -0.013115 }
+      }
+      <Normal> { -0.162816 0.954039 0.251503 }
+    }
+    <Vertex> 3421 {
+      -28.8122997284 -46.727104187 10.2447633743
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.051663 0.169942 -0.984099 }
+        <Binormal> { 0.998384 -0.022010 0.048612 }
+      }
+      <Normal> { 0.014344 0.988128 0.152806 }
+    }
+    <Vertex> 3422 {
+      -28.4814758301 -46.8125953674 11.8192577362
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.766322 -0.024209 -0.642000 }
+        <Binormal> { 0.616989 -0.233762 -0.727653 }
+      }
+      <Normal> { -0.011170 0.949187 -0.314402 }
+    }
+    <Vertex> 3423 {
+      -27.3764820099 -46.9113006592 10.867269516
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { -0.293598 0.178125 -0.939187 }
+        <Binormal> { 0.939269 0.235111 -0.249033 }
+      }
+      <Normal> { -0.182684 0.959044 0.216407 }
+    }
+    <Vertex> 3424 {
+      -27.9266796112 -46.7885055542 10.0642080307
+      <UV>  {
+        0.500000 0.166667
+        <Tangent> { -0.055250 0.243194 -0.968403 }
+        <Binormal> { 0.985058 0.171567 -0.013115 }
+      }
+      <Normal> { -0.162816 0.954039 0.251503 }
+    }
+    <Vertex> 3425 {
+      -27.3764820099 -46.9113006592 10.867269516
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { -0.293598 0.178125 -0.939187 }
+        <Binormal> { 0.939269 0.235111 -0.249033 }
+      }
+      <Normal> { -0.182684 0.959044 0.216407 }
+    }
+    <Vertex> 3426 {
+      -27.205078125 -46.3209342957 10.1605672836
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.337866 0.670582 -0.660396 }
+        <Binormal> { 0.613799 0.688927 0.385527 }
+      }
+      <Normal> { -0.713492 0.275094 0.644368 }
+    }
+    <Vertex> 3427 {
+      -27.6871242523 -46.3933029175 9.30745506287
+      <UV>  {
+        0.708333 0.250000
+        <Tangent> { 0.074517 0.717891 -0.692156 }
+        <Binormal> { 0.735005 0.417833 0.512499 }
+      }
+      <Normal> { -0.645955 0.654530 0.392773 }
+    }
+    <Vertex> 3428 {
+      -27.9266796112 -46.7885055542 10.0642080307
+      <UV>  {
+        0.500000 0.166667
+        <Tangent> { -0.055250 0.243194 -0.968403 }
+        <Binormal> { 0.985058 0.171567 -0.013115 }
+      }
+      <Normal> { -0.162816 0.954039 0.251503 }
+    }
+    <Vertex> 3429 {
+      -27.6871242523 -46.3933029175 9.30745506287
+      <UV>  {
+        0.708333 0.250000
+        <Tangent> { 0.074517 0.717891 -0.692156 }
+        <Binormal> { 0.735005 0.417833 0.512499 }
+      }
+      <Normal> { -0.645955 0.654530 0.392773 }
+    }
+    <Vertex> 3430 {
+      -28.2868919373 -46.1725234985 8.11273765564
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.336108 0.716644 -0.611108 }
+        <Binormal> { 0.701865 0.179760 0.596828 }
+      }
+      <Normal> { -0.421705 0.876553 0.231910 }
+    }
+    <Vertex> 3431 {
+      -28.8122997284 -46.727104187 10.2447633743
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.051663 0.169942 -0.984099 }
+        <Binormal> { 0.998384 -0.022010 0.048612 }
+      }
+      <Normal> { 0.014344 0.988128 0.152806 }
+    }
+    <Vertex> 3432 {
+      -23.956199646 -46.4197425842 9.96096420288
+      <UV>  {
+        0.500000 0.166667
+        <Tangent> { -0.153262 -0.217333 0.963990 }
+        <Binormal> { -0.983725 0.123196 -0.128625 }
+      }
+      <Normal> { 0.087191 0.962889 0.255409 }
+    }
+    <Vertex> 3433 {
+      -24.0282783508 -46.1117630005 9.16807079315
+      <UV>  {
+        0.708333 0.250000
+        <Tangent> { 0.004989 -0.696697 0.717348 }
+        <Binormal> { -0.665858 0.518991 0.508682 }
+      }
+      <Normal> { 0.725852 0.597766 0.340251 }
+    }
+    <Vertex> 3434 {
+      -24.3250427246 -46.0732040405 10.0706834793
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.077868 -0.843780 0.531010 }
+        <Binormal> { -0.576034 0.470050 0.662445 }
+      }
+      <Normal> { 0.801447 0.177221 0.571154 }
+    }
+    <Vertex> 3435 {
+      -24.5272598267 -46.6080780029 10.8224811554
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { -0.391053 -0.179621 0.902670 }
+        <Binormal> { -0.917059 0.157784 -0.365889 }
+      }
+      <Normal> { 0.082156 0.973388 0.213843 }
+    }
+    <Vertex> 3436 {
+      -23.956199646 -46.4197425842 9.96096420288
+      <UV>  {
+        0.500000 0.166667
+        <Tangent> { -0.153262 -0.217333 0.963990 }
+        <Binormal> { -0.983725 0.123196 -0.128625 }
+      }
+      <Normal> { 0.087191 0.962889 0.255409 }
+    }
+    <Vertex> 3437 {
+      -24.5272598267 -46.6080780029 10.8224811554
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { -0.391053 -0.179621 0.902670 }
+        <Binormal> { -0.917059 0.157784 -0.365889 }
+      }
+      <Normal> { 0.082156 0.973388 0.213843 }
+    }
+    <Vertex> 3438 {
+      -23.8728981018 -46.3093299866 11.7669858932
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.303697 -0.053432 0.951269 }
+        <Binormal> { -0.854259 -0.277840 -0.288332 }
+      }
+      <Normal> { -0.179052 0.917905 -0.354015 }
+    }
+    <Vertex> 3439 {
+      -23.2547550201 -46.2405586243 9.93703937531
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.041105 -0.149257 0.987944 }
+        <Binormal> { -0.982782 -0.171847 -0.066853 }
+      }
+      <Normal> { -0.179296 0.975341 0.128636 }
+    }
+    <Vertex> 3440 {
+      -23.956199646 -46.4197425842 9.96096420288
+      <UV>  {
+        0.500000 0.166667
+        <Tangent> { -0.153262 -0.217333 0.963990 }
+        <Binormal> { -0.983725 0.123196 -0.128625 }
+      }
+      <Normal> { 0.087191 0.962889 0.255409 }
+    }
+    <Vertex> 3441 {
+      -23.2547550201 -46.2405586243 9.93703937531
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.041105 -0.149257 0.987944 }
+        <Binormal> { -0.982782 -0.171847 -0.066853 }
+      }
+      <Normal> { -0.179296 0.975341 0.128636 }
+    }
+    <Vertex> 3442 {
+      -23.7209339142 -45.7575340271 8.11459732056
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.107820 -0.298262 0.948375 }
+        <Binormal> { -0.954244 0.135948 0.151242 }
+      }
+      <Normal> { 0.197668 0.855922 0.477798 }
+    }
+    <Vertex> 3443 {
+      -24.0282783508 -46.1117630005 9.16807079315
+      <UV>  {
+        0.708333 0.250000
+        <Tangent> { 0.004989 -0.696697 0.717348 }
+        <Binormal> { -0.665858 0.518991 0.508682 }
+      }
+      <Normal> { 0.725852 0.597766 0.340251 }
+    }
+    <Vertex> 3444 {
+      -25.9553489685 -46.8115463257 11.1223039627
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.994592 -0.102381 0.017478 }
+        <Binormal> { -0.038724 0.209398 -0.977029 }
+      }
+      <Normal> { -0.094394 0.972625 0.212195 }
+    }
+    <Vertex> 3445 {
+      -26.0811290741 -46.5522270203 12.0163497925
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.994027 -0.108550 0.011275 }
+        <Binormal> { 0.044611 -0.498444 -0.865749 }
+      }
+      <Normal> { -0.101291 0.859890 -0.500290 }
+    }
+    <Vertex> 3446 {
+      -23.8728981018 -46.3093299866 11.7669858932
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.882725 0.200784 0.424831 }
+        <Binormal> { -0.461035 -0.388565 -0.774308 }
+      }
+      <Normal> { -0.179052 0.917905 -0.354015 }
+    }
+    <Vertex> 3447 {
+      -24.5272598267 -46.6080780029 10.8224811554
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { -0.969287 -0.138100 0.203499 }
+        <Binormal> { -0.227615 0.223994 -0.932146 }
+      }
+      <Normal> { 0.082156 0.973388 0.213843 }
+    }
+    <Vertex> 3448 {
+      -25.9553489685 -46.8115463257 11.1223039627
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.994592 -0.102381 0.017478 }
+        <Binormal> { -0.038724 0.209398 -0.977029 }
+      }
+      <Normal> { -0.094394 0.972625 0.212195 }
+    }
+    <Vertex> 3449 {
+      -24.5272598267 -46.6080780029 10.8224811554
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { -0.969287 -0.138100 0.203499 }
+        <Binormal> { -0.227615 0.223994 -0.932146 }
+      }
+      <Normal> { 0.082156 0.973388 0.213843 }
+    }
+    <Vertex> 3450 {
+      -24.3250427246 -46.0732040405 10.0706834793
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.985591 -0.068312 0.154739 }
+        <Binormal> { -0.066440 0.686939 -0.119919 }
+      }
+      <Normal> { 0.801447 0.177221 0.571154 }
+    }
+    <Vertex> 3451 {
+      -25.7746887207 -46.2349739075 10.4541301727
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.995840 -0.085658 0.031079 }
+        <Binormal> { -0.091120 0.935512 -0.341262 }
+      }
+      <Normal> { -0.004913 0.342265 0.939573 }
+    }
+    <Vertex> 3452 {
+      -25.9553489685 -46.8115463257 11.1223039627
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.994592 -0.102381 0.017478 }
+        <Binormal> { -0.038724 0.209398 -0.977029 }
+      }
+      <Normal> { -0.094394 0.972625 0.212195 }
+    }
+    <Vertex> 3453 {
+      -25.7746887207 -46.2349739075 10.4541301727
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.995840 -0.085658 0.031079 }
+        <Binormal> { -0.091120 0.935512 -0.341262 }
+      }
+      <Normal> { -0.004913 0.342265 0.939573 }
+    }
+    <Vertex> 3454 {
+      -27.205078125 -46.3209342957 10.1605672836
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.991453 -0.036699 -0.125199 }
+        <Binormal> { 0.010794 0.728189 -0.298927 }
+      }
+      <Normal> { -0.713492 0.275094 0.644368 }
+    }
+    <Vertex> 3455 {
+      -27.3764820099 -46.9113006592 10.867269516
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.981935 -0.068925 -0.176217 }
+        <Binormal> { 0.154084 0.244689 -0.954311 }
+      }
+      <Normal> { -0.182684 0.959044 0.216407 }
+    }
+    <Vertex> 3456 {
+      -25.9553489685 -46.8115463257 11.1223039627
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.994592 -0.102381 0.017478 }
+        <Binormal> { -0.038724 0.209398 -0.977029 }
+      }
+      <Normal> { -0.094394 0.972625 0.212195 }
+    }
+    <Vertex> 3457 {
+      -27.3764820099 -46.9113006592 10.867269516
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.981935 -0.068925 -0.176217 }
+        <Binormal> { 0.154084 0.244689 -0.954311 }
+      }
+      <Normal> { -0.182684 0.959044 0.216407 }
+    }
+    <Vertex> 3458 {
+      -28.4814758301 -46.8125953674 11.8192577362
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.766322 -0.024209 -0.642000 }
+        <Binormal> { 0.616989 -0.233762 -0.727653 }
+      }
+      <Normal> { -0.011170 0.949187 -0.314402 }
+    }
+    <Vertex> 3459 {
+      -26.0811290741 -46.5522270203 12.0163497925
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.994027 -0.108550 0.011275 }
+        <Binormal> { 0.044611 -0.498444 -0.865749 }
+      }
+      <Normal> { -0.101291 0.859890 -0.500290 }
+    }
+    <Vertex> 3460 {
+      -25.7883358002 -44.5372123718 8.67048454285
+      <UV>  {
+        0.750000 0.250000
+        <Tangent> { 0.093584 0.834038 0.543712 }
+        <Binormal> { -0.992298 0.039993 0.109447 }
+      }
+      <Normal> { -0.065645 0.584460 -0.808740 }
+    }
+    <Vertex> 3461 {
+      -25.8366241455 -45.3561325073 8.02838516235
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { 0.074084 0.910205 0.407478 }
+        <Binormal> { -0.171159 -0.038498 0.117113 }
+      }
+      <Normal> { -0.049867 0.968139 0.245369 }
+    }
+    <Vertex> 3462 {
+      -28.2868919373 -46.1725234985 8.11273765564
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.445216 0.757264 0.477843 }
+        <Binormal> { -0.243238 -0.304759 0.709597 }
+      }
+      <Normal> { -0.421705 0.876553 0.231910 }
+    }
+    <Vertex> 3463 {
+      -27.0536804199 -44.811756134 8.84604930878
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { 0.463383 0.759179 0.457081 }
+        <Binormal> { -0.576395 -0.133037 0.805309 }
+      }
+      <Normal> { -0.690146 0.607196 -0.393658 }
+    }
+    <Vertex> 3464 {
+      -25.7883358002 -44.5372123718 8.67048454285
+      <UV>  {
+        0.750000 0.250000
+        <Tangent> { 0.093584 0.834038 0.543712 }
+        <Binormal> { -0.992298 0.039993 0.109447 }
+      }
+      <Normal> { -0.065645 0.584460 -0.808740 }
+    }
+    <Vertex> 3465 {
+      -27.0536804199 -44.811756134 8.84604930878
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { 0.463383 0.759179 0.457081 }
+        <Binormal> { -0.576395 -0.133037 0.805309 }
+      }
+      <Normal> { -0.690146 0.607196 -0.393658 }
+    }
+    <Vertex> 3466 {
+      -26.7714557648 -43.6897239685 9.60756111145
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.100658 0.770385 0.629584 }
+        <Binormal> { -0.752129 -0.355257 0.554957 }
+      }
+      <Normal> { -0.650319 0.536088 -0.538194 }
+    }
+    <Vertex> 3467 {
+      -25.6630592346 -43.2317581177 9.50094509125
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.100658 0.770384 0.629584 }
+        <Binormal> { -0.991554 0.027797 0.124516 }
+      }
+      <Normal> { -0.076235 0.653554 -0.752983 }
+    }
+    <Vertex> 3468 {
+      -25.7883358002 -44.5372123718 8.67048454285
+      <UV>  {
+        0.750000 0.250000
+        <Tangent> { 0.093584 0.834038 0.543712 }
+        <Binormal> { -0.992298 0.039993 0.109447 }
+      }
+      <Normal> { -0.065645 0.584460 -0.808740 }
+    }
+    <Vertex> 3469 {
+      -25.6630592346 -43.2317581177 9.50094509125
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.100658 0.770384 0.629584 }
+        <Binormal> { -0.991554 0.027797 0.124516 }
+      }
+      <Normal> { -0.076235 0.653554 -0.752983 }
+    }
+    <Vertex> 3470 {
+      -24.5806159973 -43.5511894226 9.50129127502
+      <UV>  {
+        0.500000 -0.000000
+        <Tangent> { 0.100658 0.770384 0.629584 }
+        <Binormal> { -0.832312 0.411815 -0.370843 }
+      }
+      <Normal> { 0.545976 0.494430 -0.676321 }
+    }
+    <Vertex> 3471 {
+      -24.5228786469 -44.6554489136 8.72046470642
+      <UV>  {
+        0.750000 -0.000000
+        <Tangent> { -0.313287 0.804040 0.505342 }
+        <Binormal> { -0.707158 0.157496 -0.688993 }
+      }
+      <Normal> { 0.639149 0.558885 -0.528245 }
+    }
+    <Vertex> 3472 {
+      -25.7883358002 -44.5372123718 8.67048454285
+      <UV>  {
+        0.750000 0.250000
+        <Tangent> { 0.093584 0.834038 0.543712 }
+        <Binormal> { -0.992298 0.039993 0.109447 }
+      }
+      <Normal> { -0.065645 0.584460 -0.808740 }
+    }
+    <Vertex> 3473 {
+      -24.5228786469 -44.6554489136 8.72046470642
+      <UV>  {
+        0.750000 -0.000000
+        <Tangent> { -0.313287 0.804040 0.505342 }
+        <Binormal> { -0.707158 0.157496 -0.688993 }
+      }
+      <Normal> { 0.639149 0.558885 -0.528245 }
+    }
+    <Vertex> 3474 {
+      -23.7209339142 -45.7575340271 8.11459732056
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.107820 -0.298262 0.948375 }
+        <Binormal> { -0.954244 0.135948 0.151242 }
+      }
+      <Normal> { 0.197668 0.855922 0.477798 }
+    }
+    <Vertex> 3475 {
+      -25.8366241455 -45.3561325073 8.02838516235
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { 0.074084 0.910205 0.407478 }
+        <Binormal> { -0.171159 -0.038498 0.117113 }
+      }
+      <Normal> { -0.049867 0.968139 0.245369 }
+    }
+    <Vertex> 3476 {
+      -25.5377788544 -42.6195678711 10.2376480103
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { 0.143086 0.558617 0.816990 }
+        <Binormal> { -0.986739 0.016987 0.161201 }
+      }
+      <Normal> { -0.076235 0.828974 -0.554003 }
+    }
+    <Vertex> 3477 {
+      -25.6630592346 -43.2317581177 9.50094509125
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.100658 0.770384 0.629584 }
+        <Binormal> { -0.991554 0.027797 0.124516 }
+      }
+      <Normal> { -0.076235 0.653554 -0.752983 }
+    }
+    <Vertex> 3478 {
+      -26.7714557648 -43.6897239685 9.60756111145
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.100658 0.770385 0.629584 }
+        <Binormal> { -0.752129 -0.355257 0.554957 }
+      }
+      <Normal> { -0.650319 0.536088 -0.538194 }
+    }
+    <Vertex> 3479 {
+      -26.8240032196 -43.0539131165 10.2826156616
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.186710 0.535448 0.823672 }
+        <Binormal> { -0.760130 -0.609272 0.223765 }
+      }
+      <Normal> { -0.627216 0.600269 -0.496231 }
+    }
+    <Vertex> 3480 {
+      -25.5377788544 -42.6195678711 10.2376480103
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { 0.143086 0.558617 0.816990 }
+        <Binormal> { -0.986739 0.016987 0.161201 }
+      }
+      <Normal> { -0.076235 0.828974 -0.554003 }
+    }
+    <Vertex> 3481 {
+      -26.8240032196 -43.0539131165 10.2826156616
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.186710 0.535448 0.823672 }
+        <Binormal> { -0.760130 -0.609272 0.223765 }
+      }
+      <Normal> { -0.627216 0.600269 -0.496231 }
+    }
+    <Vertex> 3482 {
+      -27.0399875641 -42.919631958 10.792183876
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.943080 -0.178576 0.280553 }
+        <Binormal> { -0.053920 -0.734811 -0.648972 }
+      }
+      <Normal> { -0.500809 0.593310 -0.630177 }
+    }
+    <Vertex> 3483 {
+      -25.4358348846 -42.3495178223 10.797794342
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { 0.161779 0.428552 0.888915 }
+        <Binormal> { -0.965719 0.027990 0.162263 }
+      }
+      <Normal> { -0.077120 0.798700 -0.596759 }
+    }
+    <Vertex> 3484 {
+      -25.5377788544 -42.6195678711 10.2376480103
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { 0.143086 0.558617 0.816990 }
+        <Binormal> { -0.986739 0.016987 0.161201 }
+      }
+      <Normal> { -0.076235 0.828974 -0.554003 }
+    }
+    <Vertex> 3485 {
+      -25.4358348846 -42.3495178223 10.797794342
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { 0.161779 0.428552 0.888915 }
+        <Binormal> { -0.965719 0.027990 0.162263 }
+      }
+      <Normal> { -0.077120 0.798700 -0.596759 }
+    }
+    <Vertex> 3486 {
+      -23.9059486389 -42.7259712219 10.6367406845
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.397351 0.358765 0.844630 }
+        <Binormal> { -0.737092 0.599719 0.092024 }
+      }
+      <Normal> { 0.355327 0.552416 -0.753990 }
+    }
+    <Vertex> 3487 {
+      -24.2931976318 -42.8976097107 10.1570320129
+      <UV>  {
+        0.250000 -0.000000
+        <Tangent> { 0.433209 0.529879 0.729080 }
+        <Binormal> { -0.757722 0.651520 -0.023282 }
+      }
+      <Normal> { 0.499466 0.557176 -0.663350 }
+    }
+    <Vertex> 3488 {
+      -25.5377788544 -42.6195678711 10.2376480103
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { 0.143086 0.558617 0.816990 }
+        <Binormal> { -0.986739 0.016987 0.161201 }
+      }
+      <Normal> { -0.076235 0.828974 -0.554003 }
+    }
+    <Vertex> 3489 {
+      -24.2931976318 -42.8976097107 10.1570320129
+      <UV>  {
+        0.250000 -0.000000
+        <Tangent> { 0.433209 0.529879 0.729080 }
+        <Binormal> { -0.757722 0.651520 -0.023282 }
+      }
+      <Normal> { 0.499466 0.557176 -0.663350 }
+    }
+    <Vertex> 3490 {
+      -24.5806159973 -43.5511894226 9.50129127502
+      <UV>  {
+        0.500000 -0.000000
+        <Tangent> { 0.100658 0.770384 0.629584 }
+        <Binormal> { -0.832312 0.411815 -0.370843 }
+      }
+      <Normal> { 0.545976 0.494430 -0.676321 }
+    }
+    <Vertex> 3491 {
+      -25.6630592346 -43.2317581177 9.50094509125
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.100658 0.770384 0.629584 }
+        <Binormal> { -0.991554 0.027797 0.124516 }
+      }
+      <Normal> { -0.076235 0.653554 -0.752983 }
+    }
+    <Vertex> 3492 {
+      -27.2513751984 -44.1563987732 10.2386293411
+      <UV>  {
+        0.833333 0.666667
+        <Tangent> { 0.378794 0.875045 -0.301350 }
+        <Binormal> { -0.286423 0.420221 0.860184 }
+      }
+      <Normal> { -0.893460 0.206885 -0.398572 }
+    }
+    <Vertex> 3493 {
+      -27.4673595428 -44.3736534119 10.5467443466
+      <UV>  {
+        0.708333 0.666667
+        <Tangent> { 0.216336 -0.314705 -0.924170 }
+        <Binormal> { 0.183303 0.942880 -0.278167 }
+      }
+      <Normal> { -0.958922 0.109226 -0.261666 }
+    }
+    <Vertex> 3494 {
+      -27.0399875641 -42.919631958 10.792183876
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.487809 -0.794900 -0.360729 }
+        <Binormal> { 0.714988 -0.126756 -0.687550 }
+      }
+      <Normal> { -0.500809 0.593310 -0.630177 }
+    }
+    <Vertex> 3495 {
+      -26.8240032196 -43.0539131165 10.2826156616
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { 0.431821 0.890973 -0.140351 }
+        <Binormal> { -0.357880 0.302313 0.818041 }
+      }
+      <Normal> { -0.627216 0.600269 -0.496231 }
+    }
+    <Vertex> 3496 {
+      -27.2513751984 -44.1563987732 10.2386293411
+      <UV>  {
+        0.833333 0.666667
+        <Tangent> { 0.378794 0.875045 -0.301350 }
+        <Binormal> { -0.286423 0.420221 0.860184 }
+      }
+      <Normal> { -0.893460 0.206885 -0.398572 }
+    }
+    <Vertex> 3497 {
+      -26.8240032196 -43.0539131165 10.2826156616
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { 0.431821 0.890973 -0.140351 }
+        <Binormal> { -0.357880 0.302313 0.818041 }
+      }
+      <Normal> { -0.627216 0.600269 -0.496231 }
+    }
+    <Vertex> 3498 {
+      -26.7714557648 -43.6897239685 9.60756111145
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.378786 0.916196 -0.130791 }
+        <Binormal> { -0.422976 0.288916 0.798882 }
+      }
+      <Normal> { -0.650319 0.536088 -0.538194 }
+    }
+    <Vertex> 3499 {
+      -27.1922225952 -44.8938369751 9.77599620819
+      <UV>  {
+        0.791667 0.500000
+        <Tangent> { 0.186319 0.963540 -0.192030 }
+        <Binormal> { -0.085592 0.210276 0.972044 }
+      }
+      <Normal> { -0.965911 0.221931 -0.133061 }
+    }
+    <Vertex> 3500 {
+      -27.2513751984 -44.1563987732 10.2386293411
+      <UV>  {
+        0.833333 0.666667
+        <Tangent> { 0.378794 0.875045 -0.301350 }
+        <Binormal> { -0.286423 0.420221 0.860184 }
+      }
+      <Normal> { -0.893460 0.206885 -0.398572 }
+    }
+    <Vertex> 3501 {
+      -27.1922225952 -44.8938369751 9.77599620819
+      <UV>  {
+        0.791667 0.500000
+        <Tangent> { 0.186319 0.963540 -0.192030 }
+        <Binormal> { -0.085592 0.210276 0.972044 }
+      }
+      <Normal> { -0.965911 0.221931 -0.133061 }
+    }
+    <Vertex> 3502 {
+      -27.205078125 -46.3209342957 10.1605672836
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.337866 0.670582 -0.660396 }
+        <Binormal> { 0.613799 0.688927 0.385527 }
+      }
+      <Normal> { -0.713492 0.275094 0.644368 }
+    }
+    <Vertex> 3503 {
+      -27.4673595428 -44.3736534119 10.5467443466
+      <UV>  {
+        0.708333 0.666667
+        <Tangent> { 0.216336 -0.314705 -0.924170 }
+        <Binormal> { 0.183303 0.942880 -0.278167 }
+      }
+      <Normal> { -0.958922 0.109226 -0.261666 }
+    }
+    <Vertex> 3504 {
+      -27.4184131622 -45.4348297119 9.1938533783
+      <UV>  {
+        0.833333 0.333333
+        <Tangent> { 0.295210 0.930042 -0.218798 }
+        <Binormal> { 0.275820 0.136286 0.951459 }
+      }
+      <Normal> { -0.915036 0.340220 0.216529 }
+    }
+    <Vertex> 3505 {
+      -27.1922225952 -44.8938369751 9.77599620819
+      <UV>  {
+        0.791667 0.500000
+        <Tangent> { 0.186319 0.963540 -0.192030 }
+        <Binormal> { -0.085592 0.210276 0.972044 }
+      }
+      <Normal> { -0.965911 0.221931 -0.133061 }
+    }
+    <Vertex> 3506 {
+      -26.7714557648 -43.6897239685 9.60756111145
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.378786 0.916196 -0.130791 }
+        <Binormal> { -0.422976 0.288916 0.798882 }
+      }
+      <Normal> { -0.650319 0.536088 -0.538194 }
+    }
+    <Vertex> 3507 {
+      -27.0536804199 -44.811756134 8.84604930878
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { 0.509855 0.856392 -0.081493 }
+        <Binormal> { -0.287644 0.256950 0.900617 }
+      }
+      <Normal> { -0.690146 0.607196 -0.393658 }
+    }
+    <Vertex> 3508 {
+      -27.4184131622 -45.4348297119 9.1938533783
+      <UV>  {
+        0.833333 0.333333
+        <Tangent> { 0.295210 0.930042 -0.218798 }
+        <Binormal> { 0.275820 0.136286 0.951459 }
+      }
+      <Normal> { -0.915036 0.340220 0.216529 }
+    }
+    <Vertex> 3509 {
+      -27.0536804199 -44.811756134 8.84604930878
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { 0.509855 0.856392 -0.081493 }
+        <Binormal> { -0.287644 0.256950 0.900617 }
+      }
+      <Normal> { -0.690146 0.607196 -0.393658 }
+    }
+    <Vertex> 3510 {
+      -28.2868919373 -46.1725234985 8.11273765564
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.336108 0.716644 -0.611108 }
+        <Binormal> { 0.701865 0.179760 0.596828 }
+      }
+      <Normal> { -0.421705 0.876553 0.231910 }
+    }
+    <Vertex> 3511 {
+      -27.6871242523 -46.3933029175 9.30745506287
+      <UV>  {
+        0.708333 0.250000
+        <Tangent> { 0.074517 0.717891 -0.692156 }
+        <Binormal> { 0.735005 0.417833 0.512499 }
+      }
+      <Normal> { -0.645955 0.654530 0.392773 }
+    }
+    <Vertex> 3512 {
+      -27.4184131622 -45.4348297119 9.1938533783
+      <UV>  {
+        0.833333 0.333333
+        <Tangent> { 0.295210 0.930042 -0.218798 }
+        <Binormal> { 0.275820 0.136286 0.951459 }
+      }
+      <Normal> { -0.915036 0.340220 0.216529 }
+    }
+    <Vertex> 3513 {
+      -27.6871242523 -46.3933029175 9.30745506287
+      <UV>  {
+        0.708333 0.250000
+        <Tangent> { 0.074517 0.717891 -0.692156 }
+        <Binormal> { 0.735005 0.417833 0.512499 }
+      }
+      <Normal> { -0.645955 0.654530 0.392773 }
+    }
+    <Vertex> 3514 {
+      -27.205078125 -46.3209342957 10.1605672836
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.337866 0.670582 -0.660396 }
+        <Binormal> { 0.613799 0.688927 0.385527 }
+      }
+      <Normal> { -0.713492 0.275094 0.644368 }
+    }
+    <Vertex> 3515 {
+      -27.1922225952 -44.8938369751 9.77599620819
+      <UV>  {
+        0.791667 0.500000
+        <Tangent> { 0.186319 0.963540 -0.192030 }
+        <Binormal> { -0.085592 0.210276 0.972044 }
+      }
+      <Normal> { -0.965911 0.221931 -0.133061 }
+    }
+    <Vertex> 3516 {
+      -24.1577968597 -45.2107391357 9.04929065704
+      <UV>  {
+        0.833333 0.333333
+        <Tangent> { 0.239211 -0.941971 0.235517 }
+        <Binormal> { -0.110382 0.214600 0.970427 }
+      }
+      <Normal> { 0.964751 0.257759 0.052736 }
+    }
+    <Vertex> 3517 {
+      -24.0282783508 -46.1117630005 9.16807079315
+      <UV>  {
+        0.708333 0.250000
+        <Tangent> { 0.004989 -0.696697 0.717348 }
+        <Binormal> { -0.665858 0.518991 0.508682 }
+      }
+      <Normal> { 0.725852 0.597766 0.340251 }
+    }
+    <Vertex> 3518 {
+      -23.7209339142 -45.7575340271 8.11459732056
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.107820 -0.298262 0.948375 }
+        <Binormal> { -0.954244 0.135948 0.151242 }
+      }
+      <Normal> { 0.197668 0.855922 0.477798 }
+    }
+    <Vertex> 3519 {
+      -24.5228786469 -44.6554489136 8.72046470642
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { 0.480371 -0.872192 0.092330 }
+        <Binormal> { 0.409129 0.312766 0.825933 }
+      }
+      <Normal> { 0.639149 0.558885 -0.528245 }
+    }
+    <Vertex> 3520 {
+      -24.1577968597 -45.2107391357 9.04929065704
+      <UV>  {
+        0.833333 0.333333
+        <Tangent> { 0.239211 -0.941971 0.235517 }
+        <Binormal> { -0.110382 0.214600 0.970427 }
+      }
+      <Normal> { 0.964751 0.257759 0.052736 }
+    }
+    <Vertex> 3521 {
+      -24.5228786469 -44.6554489136 8.72046470642
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { 0.480371 -0.872192 0.092330 }
+        <Binormal> { 0.409129 0.312766 0.825933 }
+      }
+      <Normal> { 0.639149 0.558885 -0.528245 }
+    }
+    <Vertex> 3522 {
+      -24.5806159973 -43.5511894226 9.50129127502
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.348883 -0.929102 0.122678 }
+        <Binormal> { 0.567715 0.302936 0.679766 }
+      }
+      <Normal> { 0.545976 0.494430 -0.676321 }
+    }
+    <Vertex> 3523 {
+      -24.2377128601 -44.6792640686 9.65374946594
+      <UV>  {
+        0.791667 0.500000
+        <Tangent> { 0.128152 -0.970189 0.205696 }
+        <Binormal> { 0.288674 0.234473 0.926070 }
+      }
+      <Normal> { 0.938566 0.120823 -0.323160 }
+    }
+    <Vertex> 3524 {
+      -24.1577968597 -45.2107391357 9.04929065704
+      <UV>  {
+        0.833333 0.333333
+        <Tangent> { 0.239211 -0.941971 0.235517 }
+        <Binormal> { -0.110382 0.214600 0.970427 }
+      }
+      <Normal> { 0.964751 0.257759 0.052736 }
+    }
+    <Vertex> 3525 {
+      -24.2377128601 -44.6792640686 9.65374946594
+      <UV>  {
+        0.791667 0.500000
+        <Tangent> { 0.128152 -0.970189 0.205696 }
+        <Binormal> { 0.288674 0.234473 0.926070 }
+      }
+      <Normal> { 0.938566 0.120823 -0.323160 }
+    }
+    <Vertex> 3526 {
+      -24.3250427246 -46.0732040405 10.0706834793
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.077868 -0.843780 0.531010 }
+        <Binormal> { -0.576034 0.470050 0.662445 }
+      }
+      <Normal> { 0.801447 0.177221 0.571154 }
+    }
+    <Vertex> 3527 {
+      -24.0282783508 -46.1117630005 9.16807079315
+      <UV>  {
+        0.708333 0.250000
+        <Tangent> { 0.004989 -0.696697 0.717348 }
+        <Binormal> { -0.665858 0.518991 0.508682 }
+      }
+      <Normal> { 0.725852 0.597766 0.340251 }
+    }
+    <Vertex> 3528 {
+      -23.9907588959 -43.932308197 10.0940666199
+      <UV>  {
+        0.833333 0.666667
+        <Tangent> { 0.282661 -0.940345 0.189352 }
+        <Binormal> { 0.549350 0.320502 0.771594 }
+      }
+      <Normal> { 0.788903 0.105258 -0.605396 }
+    }
+    <Vertex> 3529 {
+      -24.2377128601 -44.6792640686 9.65374946594
+      <UV>  {
+        0.791667 0.500000
+        <Tangent> { 0.128152 -0.970189 0.205696 }
+        <Binormal> { 0.288674 0.234473 0.926070 }
+      }
+      <Normal> { 0.938566 0.120823 -0.323160 }
+    }
+    <Vertex> 3530 {
+      -24.5806159973 -43.5511894226 9.50129127502
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.348883 -0.929102 0.122678 }
+        <Binormal> { 0.567715 0.302936 0.679766 }
+      }
+      <Normal> { 0.545976 0.494430 -0.676321 }
+    }
+    <Vertex> 3531 {
+      -24.2931976318 -42.8976097107 10.1570320129
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { 0.416349 -0.900331 0.126722 }
+        <Binormal> { 0.526628 0.339478 0.681664 }
+      }
+      <Normal> { 0.499466 0.557176 -0.663350 }
+    }
+    <Vertex> 3532 {
+      -23.9907588959 -43.932308197 10.0940666199
+      <UV>  {
+        0.833333 0.666667
+        <Tangent> { 0.282661 -0.940345 0.189352 }
+        <Binormal> { 0.549350 0.320502 0.771594 }
+      }
+      <Normal> { 0.788903 0.105258 -0.605396 }
+    }
+    <Vertex> 3533 {
+      -24.2931976318 -42.8976097107 10.1570320129
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { 0.416349 -0.900331 0.126722 }
+        <Binormal> { 0.526628 0.339478 0.681664 }
+      }
+      <Normal> { 0.499466 0.557176 -0.663350 }
+    }
+    <Vertex> 3534 {
+      -23.9059486389 -42.7259712219 10.6367406845
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.608641 0.457822 0.648039 }
+        <Binormal> { -0.703180 0.689175 0.173546 }
+      }
+      <Normal> { 0.355327 0.552416 -0.753990 }
+    }
+    <Vertex> 3535 {
+      -23.7013683319 -44.1116523743 10.3821907043
+      <UV>  {
+        0.750000 0.750000
+        <Tangent> { 0.276764 -0.929368 0.244289 }
+        <Binormal> { 0.447053 0.346865 0.813122 }
+      }
+      <Normal> { 0.878201 -0.011017 -0.478133 }
+    }
+    <Vertex> 3536 {
+      -23.9907588959 -43.932308197 10.0940666199
+      <UV>  {
+        0.833333 0.666667
+        <Tangent> { 0.282661 -0.940345 0.189352 }
+        <Binormal> { 0.549350 0.320502 0.771594 }
+      }
+      <Normal> { 0.788903 0.105258 -0.605396 }
+    }
+    <Vertex> 3537 {
+      -23.7013683319 -44.1116523743 10.3821907043
+      <UV>  {
+        0.750000 0.750000
+        <Tangent> { 0.276764 -0.929368 0.244289 }
+        <Binormal> { 0.447053 0.346865 0.813122 }
+      }
+      <Normal> { 0.878201 -0.011017 -0.478133 }
+    }
+    <Vertex> 3538 {
+      -24.3250427246 -46.0732040405 10.0706834793
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.077868 -0.843780 0.531010 }
+        <Binormal> { -0.576034 0.470050 0.662445 }
+      }
+      <Normal> { 0.801447 0.177221 0.571154 }
+    }
+    <Vertex> 3539 {
+      -24.2377128601 -44.6792640686 9.65374946594
+      <UV>  {
+        0.791667 0.500000
+        <Tangent> { 0.128152 -0.970189 0.205696 }
+        <Binormal> { 0.288674 0.234473 0.926070 }
+      }
+      <Normal> { 0.938566 0.120823 -0.323160 }
+    }
+    <Vertex> 3540 {
+      -23.3167247772 -43.5330047607 10.6383447647
+      <UV>  {
+        0.833333 0.666667
+        <Tangent> { -0.171866 0.950237 0.259831 }
+        <Binormal> { 0.598695 0.300922 -0.704506 }
+      }
+      <Normal> { 0.787805 -0.256569 0.559893 }
+    }
+    <Vertex> 3541 {
+      -23.916261673 -44.0623931885 10.5973815918
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { 0.052227 0.968109 0.245024 }
+        <Binormal> { 0.966949 0.012140 -0.254070 }
+      }
+      <Normal> { 0.248085 -0.266091 0.931455 }
+    }
+    <Vertex> 3542 {
+      -24.3250427246 -46.0732040405 10.0706834793
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.985591 -0.068312 0.154739 }
+        <Binormal> { -0.066440 0.686939 -0.119919 }
+      }
+      <Normal> { 0.801447 0.177221 0.571154 }
+    }
+    <Vertex> 3543 {
+      -23.7013683319 -44.1116523743 10.3821907043
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.819742 -0.569952 -0.056372 }
+        <Binormal> { 0.271892 -0.441452 0.509563 }
+      }
+      <Normal> { 0.878201 -0.011017 -0.478133 }
+    }
+    <Vertex> 3544 {
+      -23.3167247772 -43.5330047607 10.6383447647
+      <UV>  {
+        0.833333 0.666667
+        <Tangent> { -0.171866 0.950237 0.259831 }
+        <Binormal> { 0.598695 0.300922 -0.704506 }
+      }
+      <Normal> { 0.787805 -0.256569 0.559893 }
+    }
+    <Vertex> 3545 {
+      -23.7013683319 -44.1116523743 10.3821907043
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.819742 -0.569952 -0.056372 }
+        <Binormal> { 0.271892 -0.441452 0.509563 }
+      }
+      <Normal> { 0.878201 -0.011017 -0.478133 }
+    }
+    <Vertex> 3546 {
+      -23.9059486389 -42.7259712219 10.6367406845
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.608641 0.457822 0.648039 }
+        <Binormal> { -0.703180 0.689175 0.173546 }
+      }
+      <Normal> { 0.355327 0.552416 -0.753990 }
+    }
+    <Vertex> 3547 {
+      -23.5798625946 -42.361038208 10.9165410995
+      <UV>  {
+        0.750000 0.750000
+        <Tangent> { -0.246946 0.933666 0.259393 }
+        <Binormal> { 0.146501 0.261294 -0.801037 }
+      }
+      <Normal> { 0.687704 0.643666 0.335734 }
+    }
+    <Vertex> 3548 {
+      -23.3167247772 -43.5330047607 10.6383447647
+      <UV>  {
+        0.833333 0.666667
+        <Tangent> { -0.171866 0.950237 0.259831 }
+        <Binormal> { 0.598695 0.300922 -0.704506 }
+      }
+      <Normal> { 0.787805 -0.256569 0.559893 }
+    }
+    <Vertex> 3549 {
+      -23.5798625946 -42.361038208 10.9165410995
+      <UV>  {
+        0.750000 0.750000
+        <Tangent> { -0.246946 0.933666 0.259393 }
+        <Binormal> { 0.146501 0.261294 -0.801037 }
+      }
+      <Normal> { 0.687704 0.643666 0.335734 }
+    }
+    <Vertex> 3550 {
+      -24.1516685486 -42.8594169617 10.8840789795
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.311174 0.921187 0.233635 }
+        <Binormal> { 0.944254 0.326535 -0.029844 }
+      }
+      <Normal> { 0.094974 -0.185247 0.978057 }
+    }
+    <Vertex> 3551 {
+      -23.916261673 -44.0623931885 10.5973815918
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { 0.052227 0.968109 0.245024 }
+        <Binormal> { 0.966949 0.012140 -0.254070 }
+      }
+      <Normal> { 0.248085 -0.266091 0.931455 }
+    }
+    <Vertex> 3552 {
+      -27.7157802582 -43.8236351013 10.8422584534
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.694021 -0.154973 0.703055 }
+    }
+    <Vertex> 3553 {
+      -27.2491035461 -42.5838928223 11.1014757156
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.404776 0.183140 -0.895863 }
+        <Binormal> { 0.643866 0.752768 -0.137029 }
+      }
+      <Normal> { -0.649281 0.632282 0.422620 }
+    }
+    <Vertex> 3554 {
+      -27.0399875641 -42.919631958 10.792183876
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.487809 -0.794900 -0.360729 }
+        <Binormal> { 0.714988 -0.126756 -0.687550 }
+      }
+      <Normal> { -0.500809 0.593310 -0.630177 }
+    }
+    <Vertex> 3555 {
+      -27.4673595428 -44.3736534119 10.5467443466
+      <UV>  {
+        0.708333 0.666667
+        <Tangent> { 0.216336 -0.314705 -0.924170 }
+        <Binormal> { 0.183303 0.942880 -0.278167 }
+      }
+      <Normal> { -0.958922 0.109226 -0.261666 }
+    }
+    <Vertex> 3556 {
+      -27.7157802582 -43.8236351013 10.8422584534
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.694021 -0.154973 0.703055 }
+    }
+    <Vertex> 3557 {
+      -27.4673595428 -44.3736534119 10.5467443466
+      <UV>  {
+        0.708333 0.666667
+        <Tangent> { 0.216336 -0.314705 -0.924170 }
+        <Binormal> { 0.183303 0.942880 -0.278167 }
+      }
+      <Normal> { -0.958922 0.109226 -0.261666 }
+    }
+    <Vertex> 3558 {
+      -27.205078125 -46.3209342957 10.1605672836
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.337866 0.670582 -0.660396 }
+        <Binormal> { 0.613799 0.688927 0.385527 }
+      }
+      <Normal> { -0.713492 0.275094 0.644368 }
+    }
+    <Vertex> 3559 {
+      -27.1940593719 -44.28748703 10.7428417206
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { 0.209058 0.941434 0.264453 }
+        <Binormal> { 0.969593 -0.234743 0.069174 }
+      }
+      <Normal> { -0.127201 -0.241951 0.961882 }
+    }
+    <Vertex> 3560 {
+      -27.7157802582 -43.8236351013 10.8422584534
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.694021 -0.154973 0.703055 }
+    }
+    <Vertex> 3561 {
+      -27.1940593719 -44.28748703 10.7428417206
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { 0.209058 0.941434 0.264453 }
+        <Binormal> { 0.969593 -0.234743 0.069174 }
+      }
+      <Normal> { -0.127201 -0.241951 0.961882 }
+    }
+    <Vertex> 3562 {
+      -26.7504558563 -43.0262107849 11.0082626343
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.023804 -0.185858 0.982269 }
+    }
+    <Vertex> 3563 {
+      -27.2491035461 -42.5838928223 11.1014757156
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.404776 0.183140 -0.895863 }
+        <Binormal> { 0.643866 0.752768 -0.137029 }
+      }
+      <Normal> { -0.649281 0.632282 0.422620 }
+    }
+    <Vertex> 3564 {
+      -25.3805599213 -42.0705108643 11.0985784531
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { -0.996878 -0.061482 0.049534 }
+        <Binormal> { -0.071016 0.424110 -0.902798 }
+      }
+      <Normal> { -0.032960 0.903592 0.427076 }
+    }
+    <Vertex> 3565 {
+      -23.5798625946 -42.361038208 10.9165410995
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.982353 0.158494 0.099309 }
+        <Binormal> { -0.010710 0.398104 -0.741304 }
+      }
+      <Normal> { 0.687704 0.643666 0.335734 }
+    }
+    <Vertex> 3566 {
+      -23.9059486389 -42.7259712219 10.6367406845
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.975568 0.195367 0.100496 }
+        <Binormal> { -0.202820 -0.699860 -0.608338 }
+      }
+      <Normal> { 0.355327 0.552416 -0.753990 }
+    }
+    <Vertex> 3567 {
+      -25.4358348846 -42.3495178223 10.797794342
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.996876 -0.061600 0.049443 }
+        <Binormal> { -0.002730 -0.598707 -0.800955 }
+      }
+      <Normal> { -0.077120 0.798700 -0.596759 }
+    }
+    <Vertex> 3568 {
+      -25.3805599213 -42.0705108643 11.0985784531
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { -0.996878 -0.061482 0.049534 }
+        <Binormal> { -0.071016 0.424110 -0.902798 }
+      }
+      <Normal> { -0.032960 0.903592 0.427076 }
+    }
+    <Vertex> 3569 {
+      -25.4358348846 -42.3495178223 10.797794342
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.996876 -0.061600 0.049443 }
+        <Binormal> { -0.002730 -0.598707 -0.800955 }
+      }
+      <Normal> { -0.077120 0.798700 -0.596759 }
+    }
+    <Vertex> 3570 {
+      -27.0399875641 -42.919631958 10.792183876
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.943080 -0.178576 0.280553 }
+        <Binormal> { -0.053920 -0.734811 -0.648972 }
+      }
+      <Normal> { -0.500809 0.593310 -0.630177 }
+    }
+    <Vertex> 3571 {
+      -27.2491035461 -42.5838928223 11.1014757156
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.964266 -0.264932 0.001495 }
+        <Binormal> { -0.112911 0.406548 -0.781704 }
+      }
+      <Normal> { -0.649281 0.632282 0.422620 }
+    }
+    <Vertex> 3572 {
+      -25.3805599213 -42.0705108643 11.0985784531
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { -0.996878 -0.061482 0.049534 }
+        <Binormal> { -0.071016 0.424110 -0.902798 }
+      }
+      <Normal> { -0.032960 0.903592 0.427076 }
+    }
+    <Vertex> 3573 {
+      -27.2491035461 -42.5838928223 11.1014757156
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.964266 -0.264932 0.001495 }
+        <Binormal> { -0.112911 0.406548 -0.781704 }
+      }
+      <Normal> { -0.649281 0.632282 0.422620 }
+    }
+    <Vertex> 3574 {
+      -26.7504558563 -43.0262107849 11.0082626343
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.023804 -0.185858 0.982269 }
+    }
+    <Vertex> 3575 {
+      -25.41147995 -42.4962615967 11.0711631775
+      <UV>  {
+        0.250000 -0.000000
+        <Tangent> { -0.996814 -0.063977 0.047633 }
+        <Binormal> { -0.054519 0.982391 0.178555 }
+      }
+      <Normal> { 0.058687 -0.175359 0.982727 }
+    }
+    <Vertex> 3576 {
+      -25.3805599213 -42.0705108643 11.0985784531
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { -0.996878 -0.061482 0.049534 }
+        <Binormal> { -0.071016 0.424110 -0.902798 }
+      }
+      <Normal> { -0.032960 0.903592 0.427076 }
+    }
+    <Vertex> 3577 {
+      -25.41147995 -42.4962615967 11.0711631775
+      <UV>  {
+        0.250000 -0.000000
+        <Tangent> { -0.996814 -0.063977 0.047633 }
+        <Binormal> { -0.054519 0.982391 0.178555 }
+      }
+      <Normal> { 0.058687 -0.175359 0.982727 }
+    }
+    <Vertex> 3578 {
+      -24.1516685486 -42.8594169617 10.8840789795
+      <UV>  {
+        0.500000 -0.000000
+        <Tangent> { -0.971210 0.207437 0.117136 }
+        <Binormal> { 0.224584 0.961024 0.160213 }
+      }
+      <Normal> { 0.094974 -0.185247 0.978057 }
+    }
+    <Vertex> 3579 {
+      -23.5798625946 -42.361038208 10.9165410995
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.982353 0.158494 0.099309 }
+        <Binormal> { -0.010710 0.398104 -0.741304 }
+      }
+      <Normal> { 0.687704 0.643666 0.335734 }
+    }
+    <Vertex> 3580 {
+      -25.5681304932 -44.3404808044 10.6467151642
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.996556 -0.071606 0.041817 }
+        <Binormal> { -0.061019 0.974703 0.214868 }
+      }
+      <Normal> { 0.055605 -0.211615 0.975738 }
+    }
+    <Vertex> 3581 {
+      -25.7746887207 -46.2349739075 10.4541301727
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.995840 -0.085658 0.031079 }
+        <Binormal> { -0.091120 0.935512 -0.341262 }
+      }
+      <Normal> { -0.004913 0.342265 0.939573 }
+    }
+    <Vertex> 3582 {
+      -24.3250427246 -46.0732040405 10.0706834793
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.985591 -0.068312 0.154739 }
+        <Binormal> { -0.066440 0.686939 -0.119919 }
+      }
+      <Normal> { 0.801447 0.177221 0.571154 }
+    }
+    <Vertex> 3583 {
+      -23.916261673 -44.0623931885 10.5973815918
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.985696 -0.165939 0.029438 }
+        <Binormal> { -0.146732 0.925435 0.303452 }
+      }
+      <Normal> { 0.248085 -0.266091 0.931455 }
+    }
+    <Vertex> 3584 {
+      -25.5681304932 -44.3404808044 10.6467151642
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.996556 -0.071606 0.041817 }
+        <Binormal> { -0.061019 0.974703 0.214868 }
+      }
+      <Normal> { 0.055605 -0.211615 0.975738 }
+    }
+    <Vertex> 3585 {
+      -23.916261673 -44.0623931885 10.5973815918
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.985696 -0.165939 0.029438 }
+        <Binormal> { -0.146732 0.925435 0.303452 }
+      }
+      <Normal> { 0.248085 -0.266091 0.931455 }
+    }
+    <Vertex> 3586 {
+      -24.1516685486 -42.8594169617 10.8840789795
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.996297 0.029108 0.080896 }
+        <Binormal> { 0.043455 0.982119 0.181797 }
+      }
+      <Normal> { 0.094974 -0.185247 0.978057 }
+    }
+    <Vertex> 3587 {
+      -25.41147995 -42.4962615967 11.0711631775
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.996814 -0.063977 0.047633 }
+        <Binormal> { -0.054519 0.982391 0.178555 }
+      }
+      <Normal> { 0.058687 -0.175359 0.982727 }
+    }
+    <Vertex> 3588 {
+      -25.5681304932 -44.3404808044 10.6467151642
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.996556 -0.071606 0.041817 }
+        <Binormal> { -0.061019 0.974703 0.214868 }
+      }
+      <Normal> { 0.055605 -0.211615 0.975738 }
+    }
+    <Vertex> 3589 {
+      -25.41147995 -42.4962615967 11.0711631775
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.996814 -0.063977 0.047633 }
+        <Binormal> { -0.054519 0.982391 0.178555 }
+      }
+      <Normal> { 0.058687 -0.175359 0.982727 }
+    }
+    <Vertex> 3590 {
+      -26.7504558563 -43.0262107849 11.0082626343
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.987246 -0.158815 0.011064 }
+        <Binormal> { -0.153943 0.970005 0.187268 }
+      }
+      <Normal> { 0.023804 -0.185858 0.982269 }
+    }
+    <Vertex> 3591 {
+      -27.1940593719 -44.28748703 10.7428417206
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.997729 0.032519 0.058987 }
+        <Binormal> { 0.045551 0.952195 0.245538 }
+      }
+      <Normal> { -0.127201 -0.241951 0.961882 }
+    }
+    <Vertex> 3592 {
+      -25.5681304932 -44.3404808044 10.6467151642
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.996556 -0.071606 0.041817 }
+        <Binormal> { -0.061019 0.974703 0.214868 }
+      }
+      <Normal> { 0.055605 -0.211615 0.975738 }
+    }
+    <Vertex> 3593 {
+      -27.1940593719 -44.28748703 10.7428417206
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.997729 0.032519 0.058987 }
+        <Binormal> { 0.045551 0.952195 0.245538 }
+      }
+      <Normal> { -0.127201 -0.241951 0.961882 }
+    }
+    <Vertex> 3594 {
+      -27.205078125 -46.3209342957 10.1605672836
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.991453 -0.036699 -0.125199 }
+        <Binormal> { 0.010794 0.728189 -0.298927 }
+      }
+      <Normal> { -0.713492 0.275094 0.644368 }
+    }
+    <Vertex> 3595 {
+      -25.7746887207 -46.2349739075 10.4541301727
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.995840 -0.085658 0.031079 }
+        <Binormal> { -0.091120 0.935512 -0.341262 }
+      }
+      <Normal> { -0.004913 0.342265 0.939573 }
+    }
+    <Vertex> 3596 {
+      -32.1065597534 -46.4740600586 12.5013723373
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.995498 0.058150 0.074850 }
+        <Binormal> { -0.079544 0.083265 0.993236 }
+      }
+      <Normal> { -0.065065 0.993927 -0.088534 }
+    }
+    <Vertex> 3597 {
+      -28.745721817 -46.2258796692 12.5013723373
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.998082 -0.050478 0.035827 }
+        <Binormal> { -0.014578 -0.370695 -0.928399 }
+      }
+      <Normal> { -0.079836 0.926145 -0.368542 }
+    }
+    <Vertex> 3598 {
+      -28.4814758301 -46.8125953674 11.8192577362
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.932572 -0.260884 -0.249496 }
+        <Binormal> { 0.318840 -0.290416 -0.888099 }
+      }
+      <Normal> { -0.011170 0.949187 -0.314402 }
+    }
+    <Vertex> 3599 {
+      -31.7773551941 -46.8223190308 11.9317550659
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.903665 -0.227168 -0.363020 }
+        <Binormal> { 0.406348 -0.204665 -0.883448 }
+      }
+      <Normal> { -0.025361 0.971252 -0.236671 }
+    }
+    <Vertex> 3600 {
+      -32.1065597534 -46.4740600586 12.5013723373
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.995498 0.058150 0.074850 }
+        <Binormal> { -0.079544 0.083265 0.993236 }
+      }
+      <Normal> { -0.065065 0.993927 -0.088534 }
+    }
+    <Vertex> 3601 {
+      -31.7773551941 -46.8223190308 11.9317550659
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.903665 -0.227168 -0.363020 }
+        <Binormal> { 0.406348 -0.204665 -0.883448 }
+      }
+      <Normal> { -0.025361 0.971252 -0.236671 }
+    }
+    <Vertex> 3602 {
+      -35.836479187 -46.9374694824 11.6720666885
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.989677 0.091841 0.110022 }
+        <Binormal> { -0.120130 0.113905 0.985524 }
+      }
+      <Normal> { -0.041932 0.991913 -0.119755 }
+    }
+    <Vertex> 3603 {
+      -35.836479187 -46.7029190063 12.5013723373
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.995498 0.058150 0.074850 }
+        <Binormal> { -0.069195 -0.093779 0.993136 }
+      }
+      <Normal> { -0.055513 0.994385 0.090030 }
+    }
+    <Vertex> 3604 {
+      -32.1065597534 -46.4740600586 12.5013723373
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.995498 0.058150 0.074850 }
+        <Binormal> { -0.079544 0.083265 0.993236 }
+      }
+      <Normal> { -0.065065 0.993927 -0.088534 }
+    }
+    <Vertex> 3605 {
+      -35.836479187 -46.7029190063 12.5013723373
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.995498 0.058150 0.074850 }
+        <Binormal> { -0.069195 -0.093779 0.993136 }
+      }
+      <Normal> { -0.055513 0.994385 0.090030 }
+    }
+    <Vertex> 3606 {
+      -35.836479187 -46.9813995361 12.7938575745
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.998944 0.024002 0.039167 }
+        <Binormal> { -0.002415 -0.823981 0.566539 }
+      }
+      <Normal> { -0.051302 0.565905 0.822840 }
+    }
+    <Vertex> 3607 {
+      -32.1065597534 -46.5808982849 12.7938575745
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.927632 -0.214000 0.306110 }
+        <Binormal> { -0.360967 0.684320 -0.615467 }
+      }
+      <Normal> { -0.061556 0.649281 0.758019 }
+    }
+    <Vertex> 3608 {
+      -32.1065597534 -46.4740600586 12.5013723373
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.995498 0.058150 0.074850 }
+        <Binormal> { -0.079544 0.083265 0.993236 }
+      }
+      <Normal> { -0.065065 0.993927 -0.088534 }
+    }
+    <Vertex> 3609 {
+      -32.1065597534 -46.5808982849 12.7938575745
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.927632 -0.214000 0.306110 }
+        <Binormal> { -0.360967 0.684320 -0.615467 }
+      }
+      <Normal> { -0.061556 0.649281 0.758019 }
+    }
+    <Vertex> 3610 {
+      -28.745721817 -46.2003059387 12.7938575745
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.993125 -0.095348 0.067909 }
+        <Binormal> { -0.111981 0.607717 -0.784393 }
+      }
+      <Normal> { -0.086184 0.781549 0.617817 }
+    }
+    <Vertex> 3611 {
+      -28.745721817 -46.2258796692 12.5013723373
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.998082 -0.050478 0.035827 }
+        <Binormal> { -0.014578 -0.370695 -0.928399 }
+      }
+      <Normal> { -0.079836 0.926145 -0.368542 }
+    }
+    <Vertex> 3612 {
+      10.3085603714 -46.516456604 9.26632499695
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.952756 0.299105 -0.052841 }
+        <Binormal> { 0.028544 0.085023 0.995929 }
+      }
+      <Normal> { -0.307657 0.948729 -0.072176 }
+    }
+    <Vertex> 3613 {
+      13.1305847168 -45.5073661804 9.0889787674
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.964843 0.171031 0.199565 }
+        <Binormal> { -0.176527 -0.140813 0.974138 }
+      }
+      <Normal> { -0.193457 0.975341 0.105930 }
+    }
+    <Vertex> 3614 {
+      13.5316972733 -45.2612876892 7.80175495148
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.963170 0.177964 0.201573 }
+        <Binormal> { -0.205142 0.001776 0.978653 }
+      }
+      <Normal> { -0.184118 0.982055 -0.040376 }
+    }
+    <Vertex> 3615 {
+      10.8057422638 -46.3373565674 8.07565593719
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.933294 0.344728 -0.100620 }
+        <Binormal> { 0.078821 0.076709 0.993911 }
+      }
+      <Normal> { -0.353893 0.934233 -0.044038 }
+    }
+    <Vertex> 3616 {
+      10.3085603714 -46.516456604 9.26632499695
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.952756 0.299105 -0.052841 }
+        <Binormal> { 0.028544 0.085023 0.995929 }
+      }
+      <Normal> { -0.307657 0.948729 -0.072176 }
+    }
+    <Vertex> 3617 {
+      10.8057422638 -46.3373565674 8.07565593719
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.933294 0.344728 -0.100620 }
+        <Binormal> { 0.078821 0.076709 0.993911 }
+      }
+      <Normal> { -0.353893 0.934233 -0.044038 }
+    }
+    <Vertex> 3618 {
+      7.88416528702 -47.3451957703 8.93755340576
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.935579 0.307248 -0.174043 }
+        <Binormal> { 0.149746 0.091929 0.967256 }
+      }
+      <Normal> { -0.141850 0.987274 -0.071871 }
+    }
+    <Vertex> 3619 {
+      7.36824035645 -47.4140510559 9.96523857117
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.938702 0.313014 -0.144431 }
+        <Binormal> { 0.102269 0.138386 0.964586 }
+      }
+      <Normal> { -0.134404 0.982757 -0.126743 }
+    }
+    <Vertex> 3620 {
+      10.3085603714 -46.516456604 9.26632499695
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.952756 0.299105 -0.052841 }
+        <Binormal> { 0.028544 0.085023 0.995929 }
+      }
+      <Normal> { -0.307657 0.948729 -0.072176 }
+    }
+    <Vertex> 3621 {
+      7.36824035645 -47.4140510559 9.96523857117
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.938702 0.313014 -0.144431 }
+        <Binormal> { 0.102269 0.138386 0.964586 }
+      }
+      <Normal> { -0.134404 0.982757 -0.126743 }
+    }
+    <Vertex> 3622 {
+      6.70784902573 -47.0221824646 11.24629879
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.958724 0.264095 -0.105369 }
+        <Binormal> { -0.026307 0.449171 0.886431 }
+      }
+      <Normal> { -0.177618 0.875668 -0.448988 }
+    }
+    <Vertex> 3623 {
+      9.57927322388 -46.501750946 10.7104196548
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.979314 0.202186 -0.008025 }
+        <Binormal> { -0.051084 0.285416 0.957000 }
+      }
+      <Normal> { -0.196509 0.936644 -0.289834 }
+    }
+    <Vertex> 3624 {
+      10.3085603714 -46.516456604 9.26632499695
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.952756 0.299105 -0.052841 }
+        <Binormal> { 0.028544 0.085023 0.995929 }
+      }
+      <Normal> { -0.307657 0.948729 -0.072176 }
+    }
+    <Vertex> 3625 {
+      9.57927322388 -46.501750946 10.7104196548
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.979314 0.202186 -0.008025 }
+        <Binormal> { -0.051084 0.285416 0.957000 }
+      }
+      <Normal> { -0.196509 0.936644 -0.289834 }
+    }
+    <Vertex> 3626 {
+      12.5138368607 -45.9000854492 10.5322751999
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.974898 0.142466 0.171106 }
+        <Binormal> { -0.165060 -0.052757 0.984374 }
+      }
+      <Normal> { -0.119144 0.992309 0.033204 }
+    }
+    <Vertex> 3627 {
+      13.1305847168 -45.5073661804 9.0889787674
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.964843 0.171031 0.199565 }
+        <Binormal> { -0.176527 -0.140813 0.974138 }
+      }
+      <Normal> { -0.193457 0.975341 0.105930 }
+    }
+    <Vertex> 3628 {
+      15.7914123535 -45.4221458435 9.72985172272
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.924572 -0.059601 0.376317 }
+        <Binormal> { -0.380980 -0.155016 0.911476 }
+      }
+      <Normal> { -0.000061 0.985839 0.167638 }
+    }
+    <Vertex> 3629 {
+      18.3716411591 -45.798866272 10.779835701
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.897169 -0.131780 0.421570 }
+        <Binormal> { -0.434871 -0.096692 0.895250 }
+      }
+      <Normal> { 0.072909 0.987152 0.142033 }
+    }
+    <Vertex> 3630 {
+      18.5104732513 -45.7867698669 10.0472612381
+      <UV>  {
+        -0.042124 0.762705
+        <Tangent> { 0.855355 -0.163763 0.491477 }
+        <Binormal> { -0.465853 0.171763 0.867992 }
+      }
+      <Normal> { 0.221107 0.972442 -0.073763 }
+    }
+    <Vertex> 3631 {
+      16.0683994293 -45.2562675476 8.64517688751
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.869040 -0.106434 0.483157 }
+        <Binormal> { -0.470549 0.121196 0.873061 }
+      }
+      <Normal> { 0.116520 0.990356 -0.074679 }
+    }
+    <Vertex> 3632 {
+      15.7914123535 -45.4221458435 9.72985172272
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.924572 -0.059601 0.376317 }
+        <Binormal> { -0.380980 -0.155016 0.911476 }
+      }
+      <Normal> { -0.000061 0.985839 0.167638 }
+    }
+    <Vertex> 3633 {
+      16.0683994293 -45.2562675476 8.64517688751
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.869040 -0.106434 0.483157 }
+        <Binormal> { -0.470549 0.121196 0.873061 }
+      }
+      <Normal> { 0.116520 0.990356 -0.074679 }
+    }
+    <Vertex> 3634 {
+      13.5316972733 -45.2612876892 7.80175495148
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.963170 0.177964 0.201573 }
+        <Binormal> { -0.205142 0.001776 0.978653 }
+      }
+      <Normal> { -0.184118 0.982055 -0.040376 }
+    }
+    <Vertex> 3635 {
+      13.1305847168 -45.5073661804 9.0889787674
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.964843 0.171031 0.199565 }
+        <Binormal> { -0.176527 -0.140813 0.974138 }
+      }
+      <Normal> { -0.193457 0.975341 0.105930 }
+    }
+    <Vertex> 3636 {
+      15.7914123535 -45.4221458435 9.72985172272
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.924572 -0.059601 0.376317 }
+        <Binormal> { -0.380980 -0.155016 0.911476 }
+      }
+      <Normal> { -0.000061 0.985839 0.167638 }
+    }
+    <Vertex> 3637 {
+      13.1305847168 -45.5073661804 9.0889787674
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.964843 0.171031 0.199565 }
+        <Binormal> { -0.176527 -0.140813 0.974138 }
+      }
+      <Normal> { -0.193457 0.975341 0.105930 }
+    }
+    <Vertex> 3638 {
+      12.5138368607 -45.9000854492 10.5322751999
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.974898 0.142466 0.171106 }
+        <Binormal> { -0.165060 -0.052757 0.984374 }
+      }
+      <Normal> { -0.119144 0.992309 0.033204 }
+    }
+    <Vertex> 3639 {
+      15.4297418594 -45.7328224182 10.886013031
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.968360 -0.002345 0.249547 }
+        <Binormal> { -0.247659 -0.131174 0.959802 }
+      }
+      <Normal> { -0.045076 0.991272 0.123844 }
+    }
+    <Vertex> 3640 {
+      15.7914123535 -45.4221458435 9.72985172272
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.924572 -0.059601 0.376317 }
+        <Binormal> { -0.380980 -0.155016 0.911476 }
+      }
+      <Normal> { -0.000061 0.985839 0.167638 }
+    }
+    <Vertex> 3641 {
+      15.4297418594 -45.7328224182 10.886013031
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.968360 -0.002345 0.249547 }
+        <Binormal> { -0.247659 -0.131174 0.959802 }
+      }
+      <Normal> { -0.045076 0.991272 0.123844 }
+    }
+    <Vertex> 3642 {
+      18.3363170624 -45.7827606201 11.505692482
+      <UV>  {
+        -0.073782 0.891829
+        <Tangent> { 0.930692 -0.084195 0.355981 }
+        <Binormal> { -0.360626 -0.065333 0.927383 }
+      }
+      <Normal> { -0.015015 0.997803 0.064455 }
+    }
+    <Vertex> 3643 {
+      18.3716411591 -45.798866272 10.779835701
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.897169 -0.131780 0.421570 }
+        <Binormal> { -0.434871 -0.096692 0.895250 }
+      }
+      <Normal> { 0.072909 0.987152 0.142033 }
+    }
+    <Vertex> 3644 {
+      4.35252714157 -47.1647644043 10.8890647888
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.960233 -0.017907 -0.278624 }
+        <Binormal> { 0.279185 0.061467 0.958216 }
+      }
+      <Normal> { -0.006256 0.998016 -0.062197 }
+    }
+    <Vertex> 3645 {
+      7.36824035645 -47.4140510559 9.96523857117
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.953170 -0.078791 -0.291992 }
+        <Binormal> { 0.296943 0.160053 0.926144 }
+      }
+      <Normal> { -0.134404 0.982757 -0.126743 }
+    }
+    <Vertex> 3646 {
+      7.88416528702 -47.3451957703 8.93755340576
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.955374 -0.069868 -0.287019 }
+        <Binormal> { 0.288388 0.109377 0.933304 }
+      }
+      <Normal> { -0.141850 0.987274 -0.071871 }
+    }
+    <Vertex> 3647 {
+      4.76059961319 -47.1455039978 9.8581237793
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.963949 -0.028861 -0.264516 }
+        <Binormal> { 0.265411 0.034712 0.963423 }
+      }
+      <Normal> { 0.030702 0.998535 -0.044435 }
+    }
+    <Vertex> 3648 {
+      4.35252714157 -47.1647644043 10.8890647888
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.960233 -0.017907 -0.278624 }
+        <Binormal> { 0.279185 0.061467 0.958216 }
+      }
+      <Normal> { -0.006256 0.998016 -0.062197 }
+    }
+    <Vertex> 3649 {
+      4.76059961319 -47.1455039978 9.8581237793
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.963949 -0.028861 -0.264516 }
+        <Binormal> { 0.265411 0.034712 0.963423 }
+      }
+      <Normal> { 0.030702 0.998535 -0.044435 }
+    }
+    <Vertex> 3650 {
+      2.14553070068 -47.1733779907 10.5122842789
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.963804 0.007904 -0.266494 }
+        <Binormal> { 0.238377 0.144403 0.866400 }
+      }
+      <Normal> { -0.444624 0.895291 -0.026887 }
+    }
+    <Vertex> 3651 {
+      1.93137025833 -47.1781921387 11.6274299622
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.956496 0.005305 -0.291697 }
+        <Binormal> { 0.254600 0.139403 0.837389 }
+      }
+      <Normal> { -0.488113 0.872768 0.003113 }
+    }
+    <Vertex> 3652 {
+      4.35252714157 -47.1647644043 10.8890647888
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.960233 -0.017907 -0.278624 }
+        <Binormal> { 0.279185 0.061467 0.958216 }
+      }
+      <Normal> { -0.006256 0.998016 -0.062197 }
+    }
+    <Vertex> 3653 {
+      1.93137025833 -47.1781921387 11.6274299622
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.956496 0.005305 -0.291697 }
+        <Binormal> { 0.254600 0.139403 0.837389 }
+      }
+      <Normal> { -0.488113 0.872768 0.003113 }
+    }
+    <Vertex> 3654 {
+      1.91012883186 -47.2664451599 12.5596075058
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.956305 0.071127 -0.283588 }
+        <Binormal> { 0.238893 -0.008341 0.803495 }
+      }
+      <Normal> { -0.576128 0.797357 0.179571 }
+    }
+    <Vertex> 3655 {
+      3.98136568069 -46.9457435608 11.9657716751
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.963356 0.049047 -0.263705 }
+        <Binormal> { 0.236002 0.305571 0.918986 }
+      }
+      <Normal> { -0.202521 0.943632 -0.261757 }
+    }
+    <Vertex> 3656 {
+      4.35252714157 -47.1647644043 10.8890647888
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.960233 -0.017907 -0.278624 }
+        <Binormal> { 0.279185 0.061467 0.958216 }
+      }
+      <Normal> { -0.006256 0.998016 -0.062197 }
+    }
+    <Vertex> 3657 {
+      3.98136568069 -46.9457435608 11.9657716751
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.963356 0.049047 -0.263705 }
+        <Binormal> { 0.236002 0.305571 0.918986 }
+      }
+      <Normal> { -0.202521 0.943632 -0.261757 }
+    }
+    <Vertex> 3658 {
+      6.70784902573 -47.0221824646 11.24629879
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.959979 -0.054455 -0.274726 }
+        <Binormal> { 0.265019 0.479816 0.830951 }
+      }
+      <Normal> { -0.177618 0.875668 -0.448988 }
+    }
+    <Vertex> 3659 {
+      7.36824035645 -47.4140510559 9.96523857117
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.953170 -0.078791 -0.291992 }
+        <Binormal> { 0.296943 0.160053 0.926144 }
+      }
+      <Normal> { -0.134404 0.982757 -0.126743 }
+    }
+    <Vertex> 3660 {
+      0.774720609188 -48.8639030457 11.7699623108
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.512851 0.857940 -0.030390 }
+        <Binormal> { 0.164669 -0.063569 0.984272 }
+      }
+      <Normal> { -0.839198 0.515336 0.173681 }
+    }
+    <Vertex> 3661 {
+      1.93137025833 -47.1781921387 11.6274299622
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.564402 0.822565 -0.069551 }
+        <Binormal> { 0.063262 0.032192 0.894097 }
+      }
+      <Normal> { -0.488113 0.872768 0.003113 }
+    }
+    <Vertex> 3662 {
+      2.14553070068 -47.1733779907 10.5122842789
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.602396 0.796727 -0.048424 }
+        <Binormal> { 0.021932 0.037727 0.893564 }
+      }
+      <Normal> { -0.444624 0.895291 -0.026887 }
+    }
+    <Vertex> 3663 {
+      0.749444842339 -48.8639030457 10.5749530792
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.602460 0.797910 -0.019530 }
+        <Binormal> { 0.007602 0.018718 0.999240 }
+      }
+      <Normal> { -0.817225 0.576250 -0.004578 }
+    }
+    <Vertex> 3664 {
+      0.774720609188 -48.8639030457 11.7699623108
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.512851 0.857940 -0.030390 }
+        <Binormal> { 0.164669 -0.063569 0.984272 }
+      }
+      <Normal> { -0.839198 0.515336 0.173681 }
+    }
+    <Vertex> 3665 {
+      0.749444842339 -48.8639030457 10.5749530792
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.602460 0.797910 -0.019530 }
+        <Binormal> { 0.007602 0.018718 0.999240 }
+      }
+      <Normal> { -0.817225 0.576250 -0.004578 }
+    }
+    <Vertex> 3666 {
+      -0.570455491543 -50.7704811096 10.6003293991
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.545066 0.838382 -0.004328 }
+        <Binormal> { 0.009013 -0.001027 0.935905 }
+      }
+      <Normal> { -0.592730 0.805353 0.006592 }
+    }
+    <Vertex> 3667 {
+      -0.384465306997 -50.7704811096 11.7642726898
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.519507 0.854462 0.002550 }
+        <Binormal> { 0.337059 -0.207514 0.865993 }
+      }
+      <Normal> { -0.581774 0.710074 0.396588 }
+    }
+    <Vertex> 3668 {
+      0.774720609188 -48.8639030457 11.7699623108
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.512851 0.857940 -0.030390 }
+        <Binormal> { 0.164669 -0.063569 0.984272 }
+      }
+      <Normal> { -0.839198 0.515336 0.173681 }
+    }
+    <Vertex> 3669 {
+      -0.384465306997 -50.7704811096 11.7642726898
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.519507 0.854462 0.002550 }
+        <Binormal> { 0.337059 -0.207514 0.865993 }
+      }
+      <Normal> { -0.581774 0.710074 0.396588 }
+    }
+    <Vertex> 3670 {
+      0.260279417038 -51.5365333557 12.731045723
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.392154 0.919898 -0.001396 }
+        <Binormal> { 0.747501 -0.317781 0.580022 }
+      }
+      <Normal> { -0.508988 0.285104 0.812159 }
+    }
+    <Vertex> 3671 {
+      1.0044438839 -48.978313446 12.718580246
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.360155 0.932142 -0.037424 }
+        <Binormal> { 0.485343 -0.153019 0.859428 }
+      }
+      <Normal> { -0.777795 0.373211 0.505692 }
+    }
+    <Vertex> 3672 {
+      0.774720609188 -48.8639030457 11.7699623108
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.512851 0.857940 -0.030390 }
+        <Binormal> { 0.164669 -0.063569 0.984272 }
+      }
+      <Normal> { -0.839198 0.515336 0.173681 }
+    }
+    <Vertex> 3673 {
+      1.0044438839 -48.978313446 12.718580246
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.360155 0.932142 -0.037424 }
+        <Binormal> { 0.485343 -0.153019 0.859428 }
+      }
+      <Normal> { -0.777795 0.373211 0.505692 }
+    }
+    <Vertex> 3674 {
+      1.91012883186 -47.2664451599 12.5596075058
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.517403 0.852392 -0.075642 }
+        <Binormal> { 0.213379 -0.049331 0.903642 }
+      }
+      <Normal> { -0.576128 0.797357 0.179571 }
+    }
+    <Vertex> 3675 {
+      1.93137025833 -47.1781921387 11.6274299622
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.564402 0.822565 -0.069551 }
+        <Binormal> { 0.063262 0.032192 0.894097 }
+      }
+      <Normal> { -0.488113 0.872768 0.003113 }
+    }
+    <Vertex> 3676 {
+      -2.81323242188 -51.4465179443 12.0579738617
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.989327 -0.010800 -0.145310 }
+        <Binormal> { 0.125207 -0.444858 0.885521 }
+      }
+      <Normal> { 0.027619 0.894772 0.445601 }
+    }
+    <Vertex> 3677 {
+      -0.384465306997 -50.7704811096 11.7642726898
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.963553 0.253851 -0.084415 }
+        <Binormal> { 0.160615 -0.333023 0.831878 }
+      }
+      <Normal> { -0.581774 0.710074 0.396588 }
+    }
+    <Vertex> 3678 {
+      -0.570455491543 -50.7704811096 10.6003293991
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.947111 0.266569 -0.178665 }
+        <Binormal> { 0.145646 0.099657 0.920762 }
+      }
+      <Normal> { -0.592730 0.805353 0.006592 }
+    }
+    <Vertex> 3679 {
+      -2.95696973801 -51.4465179443 11.1426115036
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.962774 0.011817 -0.270050 }
+        <Binormal> { 0.269926 0.010727 0.962799 }
+      }
+      <Normal> { -0.012085 0.999878 -0.007752 }
+    }
+    <Vertex> 3680 {
+      -2.81323242188 -51.4465179443 12.0579738617
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.989327 -0.010800 -0.145310 }
+        <Binormal> { 0.125207 -0.444858 0.885521 }
+      }
+      <Normal> { 0.027619 0.894772 0.445601 }
+    }
+    <Vertex> 3681 {
+      -2.95696973801 -51.4465179443 11.1426115036
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.962774 0.011817 -0.270050 }
+        <Binormal> { 0.269926 0.010727 0.962799 }
+      }
+      <Normal> { -0.012085 0.999878 -0.007752 }
+    }
+    <Vertex> 3682 {
+      -5.31265878677 -50.8283691406 11.7584466934
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.942192 -0.249696 -0.223441 }
+        <Binormal> { 0.205598 -0.034991 0.906057 }
+      }
+      <Normal> { 0.580889 0.807703 -0.100620 }
+    }
+    <Vertex> 3683 {
+      -5.18903923035 -50.8104057312 12.4647741318
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.952942 -0.263387 -0.150097 }
+        <Binormal> { 0.063781 -0.253961 0.850579 }
+      }
+      <Normal> { 0.696646 0.700034 0.156774 }
+    }
+    <Vertex> 3684 {
+      -2.81323242188 -51.4465179443 12.0579738617
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.989327 -0.010800 -0.145310 }
+        <Binormal> { 0.125207 -0.444858 0.885521 }
+      }
+      <Normal> { 0.027619 0.894772 0.445601 }
+    }
+    <Vertex> 3685 {
+      -5.18903923035 -50.8104057312 12.4647741318
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.952942 -0.263387 -0.150097 }
+        <Binormal> { 0.063781 -0.253961 0.850579 }
+      }
+      <Normal> { 0.696646 0.700034 0.156774 }
+    }
+    <Vertex> 3686 {
+      -5.35347032547 -51.5775108337 12.9710607529
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.951476 -0.282957 -0.120950 }
+        <Binormal> { -0.156862 -0.703153 0.411015 }
+      }
+      <Normal> { 0.732780 0.214057 0.645863 }
+    }
+    <Vertex> 3687 {
+      -2.59762811661 -52.2687759399 12.6009054184
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.998510 -0.054565 -0.001236 }
+        <Binormal> { -0.050793 -0.937281 0.344059 }
+      }
+      <Normal> { 0.042787 0.342235 0.938627 }
+    }
+    <Vertex> 3688 {
+      -2.81323242188 -51.4465179443 12.0579738617
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.989327 -0.010800 -0.145310 }
+        <Binormal> { 0.125207 -0.444858 0.885521 }
+      }
+      <Normal> { 0.027619 0.894772 0.445601 }
+    }
+    <Vertex> 3689 {
+      -2.59762811661 -52.2687759399 12.6009054184
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.998510 -0.054565 -0.001236 }
+        <Binormal> { -0.050793 -0.937281 0.344059 }
+      }
+      <Normal> { 0.042787 0.342235 0.938627 }
+    }
+    <Vertex> 3690 {
+      0.260279417038 -51.5365333557 12.731045723
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.976242 0.216612 -0.005454 }
+        <Binormal> { 0.177479 -0.790087 0.388584 }
+      }
+      <Normal> { -0.508988 0.285104 0.812159 }
+    }
+    <Vertex> 3691 {
+      -0.384465306997 -50.7704811096 11.7642726898
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.963553 0.253851 -0.084415 }
+        <Binormal> { 0.160615 -0.333023 0.831878 }
+      }
+      <Normal> { -0.581774 0.710074 0.396588 }
+    }
+    <Vertex> 3692 {
+      -6.18934249878 -48.7805557251 12.7983760834
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.323899 -0.021726 0.945842 }
+        <Binormal> { -0.375021 0.914704 0.149435 }
+      }
+      <Normal> { 0.874233 0.402722 -0.271126 }
+    }
+    <Vertex> 3693 {
+      -5.18903923035 -50.8104057312 12.4647741318
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.028621 -0.525366 0.850395 }
+        <Binormal> { -0.677668 0.596911 0.345959 }
+      }
+      <Normal> { 0.696646 0.700034 0.156774 }
+    }
+    <Vertex> 3694 {
+      -5.31265878677 -50.8283691406 11.7584466934
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.300992 0.056993 0.951922 }
+        <Binormal> { -0.774605 0.583247 0.210005 }
+      }
+      <Normal> { 0.580889 0.807703 -0.100620 }
+    }
+    <Vertex> 3695 {
+      -6.54008340836 -48.8524131775 12.004483223
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.402739 0.082510 0.911589 }
+        <Binormal> { -0.467795 0.857340 0.129071 }
+      }
+      <Normal> { 0.839961 0.492569 -0.227546 }
+    }
+    <Vertex> 3696 {
+      -6.18934249878 -48.7805557251 12.7983760834
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.323899 -0.021726 0.945842 }
+        <Binormal> { -0.375021 0.914704 0.149435 }
+      }
+      <Normal> { 0.874233 0.402722 -0.271126 }
+    }
+    <Vertex> 3697 {
+      -6.54008340836 -48.8524131775 12.004483223
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.402739 0.082510 0.911589 }
+        <Binormal> { -0.467795 0.857340 0.129071 }
+      }
+      <Normal> { 0.839961 0.492569 -0.227546 }
+    }
+    <Vertex> 3698 {
+      -7.67086648941 -46.805896759 11.964466095
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.296221 0.579458 0.759227 }
+        <Binormal> { -0.701656 0.407304 -0.584622 }
+      }
+      <Normal> { 0.648000 0.705893 -0.285928 }
+    }
+    <Vertex> 3699 {
+      -7.14475536346 -46.6199035645 12.9468793869
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.424431 0.137556 0.894951 }
+        <Binormal> { -0.634740 0.750042 0.185743 }
+      }
+      <Normal> { 0.646657 0.647206 -0.403638 }
+    }
+    <Vertex> 3700 {
+      -6.18934249878 -48.7805557251 12.7983760834
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.323899 -0.021726 0.945842 }
+        <Binormal> { -0.375021 0.914704 0.149435 }
+      }
+      <Normal> { 0.874233 0.402722 -0.271126 }
+    }
+    <Vertex> 3701 {
+      -7.14475536346 -46.6199035645 12.9468793869
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.424431 0.137556 0.894951 }
+        <Binormal> { -0.634740 0.750042 0.185743 }
+      }
+      <Normal> { 0.646657 0.647206 -0.403638 }
+    }
+    <Vertex> 3702 {
+      -6.66070270538 -46.4785079956 14.0944881439
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.363436 0.094052 0.926860 }
+        <Binormal> { -0.632943 0.738597 0.173238 }
+      }
+      <Normal> { 0.724326 0.664113 -0.185034 }
+    }
+    <Vertex> 3703 {
+      -5.88519668579 -48.7179756165 13.6608877182
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.331782 0.068266 0.940883 }
+        <Binormal> { -0.248491 0.916240 0.021146 }
+      }
+      <Normal> { 0.964629 0.262215 -0.026032 }
+    }
+    <Vertex> 3704 {
+      -6.18934249878 -48.7805557251 12.7983760834
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.323899 -0.021726 0.945842 }
+        <Binormal> { -0.375021 0.914704 0.149435 }
+      }
+      <Normal> { 0.874233 0.402722 -0.271126 }
+    }
+    <Vertex> 3705 {
+      -5.88519668579 -48.7179756165 13.6608877182
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.331782 0.068266 0.940883 }
+        <Binormal> { -0.248491 0.916240 0.021146 }
+      }
+      <Normal> { 0.964629 0.262215 -0.026032 }
+    }
+    <Vertex> 3706 {
+      -5.35347032547 -51.5775108337 12.9710607529
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.090384 -0.455768 0.885498 }
+        <Binormal> { -0.483911 0.590499 0.353325 }
+      }
+      <Normal> { 0.732780 0.214057 0.645863 }
+    }
+    <Vertex> 3707 {
+      -5.18903923035 -50.8104057312 12.4647741318
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.028621 -0.525366 0.850395 }
+        <Binormal> { -0.677668 0.596911 0.345959 }
+      }
+      <Normal> { 0.696646 0.700034 0.156774 }
+    }
+    <Vertex> 3708 {
+      -15.8161048889 -45.104221344 12.5013723373
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.817368 0.295035 0.494836 }
+        <Binormal> { -0.572741 -0.337168 -0.745022 }
+      }
+      <Normal> { 0.007080 0.908933 -0.416791 }
+    }
+    <Vertex> 3709 {
+      -12.4354410172 -45.2383537292 12.5756235123
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.887778 0.224093 0.402036 }
+        <Binormal> { -0.456219 -0.313498 -0.832682 }
+      }
+      <Normal> { 0.072115 0.919736 -0.385784 }
+    }
+    <Vertex> 3710 {
+      -12.8457536697 -45.8217735291 11.4669027328
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.811572 0.334888 0.478750 }
+        <Binormal> { -0.549077 -0.189112 -0.798504 }
+      }
+      <Normal> { 0.048250 0.963988 -0.261483 }
+    }
+    <Vertex> 3711 {
+      -16.0969352722 -45.6721687317 11.8927841187
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.818328 0.377293 0.433577 }
+        <Binormal> { -0.541213 -0.296290 -0.763650 }
+      }
+      <Normal> { 0.004212 0.931242 -0.364299 }
+    }
+    <Vertex> 3712 {
+      -15.8161048889 -45.104221344 12.5013723373
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.817368 0.295035 0.494836 }
+        <Binormal> { -0.572741 -0.337168 -0.745022 }
+      }
+      <Normal> { 0.007080 0.908933 -0.416791 }
+    }
+    <Vertex> 3713 {
+      -16.0969352722 -45.6721687317 11.8927841187
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.818328 0.377293 0.433577 }
+        <Binormal> { -0.541213 -0.296290 -0.763650 }
+      }
+      <Normal> { 0.004212 0.931242 -0.364299 }
+    }
+    <Vertex> 3714 {
+      -19.092502594 -45.7313919067 11.7471122742
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.941794 0.209259 0.263125 }
+        <Binormal> { -0.321791 0.340239 0.881189 }
+      }
+      <Normal> { -0.034120 0.928068 -0.370800 }
+    }
+    <Vertex> 3715 {
+      -19.0391654968 -45.1548843384 12.5013723373
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.040095 0.491089 0.870186 }
+        <Binormal> { -0.995050 -0.015431 0.054557 }
+      }
+      <Normal> { -0.036958 0.908017 -0.417249 }
+    }
+    <Vertex> 3716 {
+      -15.8161048889 -45.104221344 12.5013723373
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.817368 0.295035 0.494836 }
+        <Binormal> { -0.572741 -0.337168 -0.745022 }
+      }
+      <Normal> { 0.007080 0.908933 -0.416791 }
+    }
+    <Vertex> 3717 {
+      -19.0391654968 -45.1548843384 12.5013723373
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.040095 0.491089 0.870186 }
+        <Binormal> { -0.995050 -0.015431 0.054557 }
+      }
+      <Normal> { -0.036958 0.908017 -0.417249 }
+    }
+    <Vertex> 3718 {
+      -19.0391654968 -45.0781097412 12.9046955109
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.714252 0.114424 0.690471 }
+        <Binormal> { -0.558785 0.301975 -0.628073 }
+      }
+      <Normal> { -0.040681 0.885861 0.462111 }
+    }
+    <Vertex> 3719 {
+      -15.8161048889 -45.0431785583 12.8677501678
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.936717 0.059198 0.345046 }
+        <Binormal> { -0.279153 0.421594 -0.830161 }
+      }
+      <Normal> { -0.025300 0.887845 0.459395 }
+    }
+    <Vertex> 3720 {
+      -15.8161048889 -45.104221344 12.5013723373
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.817368 0.295035 0.494836 }
+        <Binormal> { -0.572741 -0.337168 -0.745022 }
+      }
+      <Normal> { 0.007080 0.908933 -0.416791 }
+    }
+    <Vertex> 3721 {
+      -15.8161048889 -45.0431785583 12.8677501678
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.936717 0.059198 0.345046 }
+        <Binormal> { -0.279153 0.421594 -0.830161 }
+      }
+      <Normal> { -0.025300 0.887845 0.459395 }
+    }
+    <Vertex> 3722 {
+      -12.2202997208 -45.0206985474 13.3239393234
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.944884 0.116599 0.305939 }
+        <Binormal> { -0.260180 0.205760 -0.881978 }
+      }
+      <Normal> { -0.150487 0.951994 0.266488 }
+    }
+    <Vertex> 3723 {
+      -12.4354410172 -45.2383537292 12.5756235123
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.887778 0.224093 0.402036 }
+        <Binormal> { -0.456219 -0.313498 -0.832682 }
+      }
+      <Normal> { 0.072115 0.919736 -0.385784 }
+    }
+    <Vertex> 3724 {
+      -9.38589000702 -45.5913734436 12.7983760834
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.269967 0.891629 -0.363445 }
+    }
+    <Vertex> 3725 {
+      -7.14475536346 -46.6199035645 12.9468793869
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.907215 -0.416351 0.060114 }
+        <Binormal> { 0.129148 0.405059 0.856391 }
+      }
+      <Normal> { 0.646657 0.647206 -0.403638 }
+    }
+    <Vertex> 3726 {
+      -7.67086648941 -46.805896759 11.964466095
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.296221 0.579458 0.759227 }
+        <Binormal> { -0.701656 0.407304 -0.584622 }
+      }
+      <Normal> { 0.648000 0.705893 -0.285928 }
+    }
+    <Vertex> 3727 {
+      -9.73663043976 -45.9760322571 11.7221403122
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.240028 0.933012 -0.268014 }
+    }
+    <Vertex> 3728 {
+      -9.38589000702 -45.5913734436 12.7983760834
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.269967 0.891629 -0.363445 }
+    }
+    <Vertex> 3729 {
+      -9.73663043976 -45.9760322571 11.7221403122
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.240028 0.933012 -0.268014 }
+    }
+    <Vertex> 3730 {
+      -12.8457536697 -45.8217735291 11.4669027328
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.998558 0.040526 -0.034855 }
+        <Binormal> { 0.023004 -0.262794 -0.964578 }
+      }
+      <Normal> { 0.048250 0.963988 -0.261483 }
+    }
+    <Vertex> 3731 {
+      -12.4354410172 -45.2383537292 12.5756235123
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.990762 0.114692 -0.072370 }
+        <Binormal> { 0.022315 -0.387439 -0.919510 }
+      }
+      <Normal> { 0.072115 0.919736 -0.385784 }
+    }
+    <Vertex> 3732 {
+      -9.38589000702 -45.5913734436 12.7983760834
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.269967 0.891629 -0.363445 }
+    }
+    <Vertex> 3733 {
+      -12.4354410172 -45.2383537292 12.5756235123
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.990762 0.114692 -0.072370 }
+        <Binormal> { 0.022315 -0.387439 -0.919510 }
+      }
+      <Normal> { 0.072115 0.919736 -0.385784 }
+    }
+    <Vertex> 3734 {
+      -12.2202997208 -45.0206985474 13.3239393234
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.961608 -0.078414 -0.262899 }
+        <Binormal> { 0.229392 0.295833 -0.927287 }
+      }
+      <Normal> { -0.150487 0.951994 0.266488 }
+    }
+    <Vertex> 3735 {
+      -8.97041320801 -45.338684082 13.9134101868
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.264931 0.957671 -0.112491 }
+    }
+    <Vertex> 3736 {
+      -9.38589000702 -45.5913734436 12.7983760834
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.269967 0.891629 -0.363445 }
+    }
+    <Vertex> 3737 {
+      -8.97041320801 -45.338684082 13.9134101868
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.264931 0.957671 -0.112491 }
+    }
+    <Vertex> 3738 {
+      -6.66070270538 -46.4785079956 14.0944881439
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.192004 0.452094 0.871021 }
+        <Binormal> { -0.662154 0.595417 -0.455007 }
+      }
+      <Normal> { 0.724326 0.664113 -0.185034 }
+    }
+    <Vertex> 3739 {
+      -7.14475536346 -46.6199035645 12.9468793869
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.907215 -0.416351 0.060114 }
+        <Binormal> { 0.129148 0.405059 0.856391 }
+      }
+      <Normal> { 0.646657 0.647206 -0.403638 }
+    }
+    <Vertex> 3740 {
+      -21.6159038544 -45.3562202454 12.5013723373
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.040092 0.491089 0.870186 }
+        <Binormal> { -0.992396 -0.065165 0.082498 }
+      }
+      <Normal> { -0.094668 0.898129 -0.429365 }
+    }
+    <Vertex> 3741 {
+      -19.0391654968 -45.1548843384 12.5013723373
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.040097 0.491090 0.870186 }
+        <Binormal> { -0.995050 -0.015430 0.054558 }
+      }
+      <Normal> { -0.036958 0.908017 -0.417249 }
+    }
+    <Vertex> 3742 {
+      -19.092502594 -45.7313919067 11.7471122742
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.056094 0.606308 0.793249 }
+        <Binormal> { -0.961008 -0.006266 0.072746 }
+      }
+      <Normal> { -0.034120 0.928068 -0.370800 }
+    }
+    <Vertex> 3743 {
+      -21.5924854279 -45.9275436401 11.7082967758
+      <UV>  {
+        0.250000 0.750000
+        <Tangent> { 0.041682 0.406987 -0.912482 }
+        <Binormal> { 0.707395 0.108586 0.080745 }
+      }
+      <Normal> { -0.103030 0.931181 -0.349620 }
+    }
+    <Vertex> 3744 {
+      -21.6159038544 -45.3562202454 12.5013723373
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.040092 0.491089 0.870186 }
+        <Binormal> { -0.992396 -0.065165 0.082498 }
+      }
+      <Normal> { -0.094668 0.898129 -0.429365 }
+    }
+    <Vertex> 3745 {
+      -21.5924854279 -45.9275436401 11.7082967758
+      <UV>  {
+        0.250000 0.750000
+        <Tangent> { 0.041682 0.406987 -0.912482 }
+        <Binormal> { 0.707395 0.108586 0.080745 }
+      }
+      <Normal> { -0.103030 0.931181 -0.349620 }
+    }
+    <Vertex> 3746 {
+      -23.8728981018 -46.3093299866 11.7669858932
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.903707 0.160122 0.397083 }
+        <Binormal> { -0.421170 -0.391024 -0.800847 }
+      }
+      <Normal> { -0.179052 0.917905 -0.354015 }
+    }
+    <Vertex> 3747 {
+      -23.8694820404 -45.6402664185 12.5013723373
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.992475 -0.041673 0.115136 }
+        <Binormal> { -0.079927 -0.491118 -0.866732 }
+      }
+      <Normal> { -0.126133 0.868007 -0.480209 }
+    }
+    <Vertex> 3748 {
+      -21.6159038544 -45.3562202454 12.5013723373
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.040092 0.491089 0.870186 }
+        <Binormal> { -0.992396 -0.065165 0.082498 }
+      }
+      <Normal> { -0.094668 0.898129 -0.429365 }
+    }
+    <Vertex> 3749 {
+      -23.8694820404 -45.6402664185 12.5013723373
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.992475 -0.041673 0.115136 }
+        <Binormal> { -0.079927 -0.491118 -0.866732 }
+      }
+      <Normal> { -0.126133 0.868007 -0.480209 }
+    }
+    <Vertex> 3750 {
+      -23.8694820404 -45.5515060425 12.8123311996
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.993122 -0.114991 0.022048 }
+        <Binormal> { -0.074750 0.478045 -0.873788 }
+      }
+      <Normal> { -0.138035 0.863857 0.484420 }
+    }
+    <Vertex> 3751 {
+      -21.6159038544 -45.2692985535 12.8677501678
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.995052 -0.097520 -0.019027 }
+        <Binormal> { -0.028320 0.461879 -0.886224 }
+      }
+      <Normal> { -0.115940 0.879269 0.461959 }
+    }
+    <Vertex> 3752 {
+      -21.6159038544 -45.3562202454 12.5013723373
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.040092 0.491089 0.870186 }
+        <Binormal> { -0.992396 -0.065165 0.082498 }
+      }
+      <Normal> { -0.094668 0.898129 -0.429365 }
+    }
+    <Vertex> 3753 {
+      -21.6159038544 -45.2692985535 12.8677501678
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.995052 -0.097520 -0.019027 }
+        <Binormal> { -0.028320 0.461879 -0.886224 }
+      }
+      <Normal> { -0.115940 0.879269 0.461959 }
+    }
+    <Vertex> 3754 {
+      -19.0391654968 -45.0781097412 12.9046955109
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.040681 0.885861 0.462111 }
+    }
+    <Vertex> 3755 {
+      -19.0391654968 -45.1548843384 12.5013723373
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.040097 0.491090 0.870186 }
+        <Binormal> { -0.995050 -0.015430 0.054558 }
+      }
+      <Normal> { -0.036958 0.908017 -0.417249 }
+    }
+    <Vertex> 3756 {
+      -26.1230583191 -45.9390525818 12.5013723373
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.076144 0.608715 0.789727 }
+        <Binormal> { -0.981743 -0.123013 0.000160 }
+      }
+      <Normal> { -0.108280 0.863521 -0.492508 }
+    }
+    <Vertex> 3757 {
+      -23.8694820404 -45.6402664185 12.5013723373
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.002646 0.586939 0.809627 }
+        <Binormal> { -0.984615 -0.100850 0.076329 }
+      }
+      <Normal> { -0.126133 0.868007 -0.480209 }
+    }
+    <Vertex> 3758 {
+      -23.8728981018 -46.3093299866 11.7669858932
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.882725 0.200784 0.424831 }
+        <Binormal> { -0.461035 -0.388565 -0.774308 }
+      }
+      <Normal> { -0.179052 0.917905 -0.354015 }
+    }
+    <Vertex> 3759 {
+      -26.0811290741 -46.5522270203 12.0163497925
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { -0.053554 0.783174 0.619492 }
+        <Binormal> { -0.924509 -0.089541 0.033278 }
+      }
+      <Normal> { -0.101291 0.859890 -0.500290 }
+    }
+    <Vertex> 3760 {
+      -26.1230583191 -45.9390525818 12.5013723373
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.076144 0.608715 0.789727 }
+        <Binormal> { -0.981743 -0.123013 0.000160 }
+      }
+      <Normal> { -0.108280 0.863521 -0.492508 }
+    }
+    <Vertex> 3761 {
+      -26.0811290741 -46.5522270203 12.0163497925
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { -0.053554 0.783174 0.619492 }
+        <Binormal> { -0.924509 -0.089541 0.033278 }
+      }
+      <Normal> { -0.101291 0.859890 -0.500290 }
+    }
+    <Vertex> 3762 {
+      -28.4814758301 -46.8125953674 11.8192577362
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.179926 0.705124 0.685877 }
+        <Binormal> { -0.872717 -0.064230 -0.162907 }
+      }
+      <Normal> { -0.011170 0.949187 -0.314402 }
+    }
+    <Vertex> 3763 {
+      -28.745721817 -46.2258796692 12.5013723373
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.223763 0.518486 0.825289 }
+        <Binormal> { -0.955421 -0.148354 -0.165843 }
+      }
+      <Normal> { -0.079836 0.926145 -0.368542 }
+    }
+    <Vertex> 3764 {
+      -26.1230583191 -45.9390525818 12.5013723373
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.076144 0.608715 0.789727 }
+        <Binormal> { -0.981743 -0.123013 0.000160 }
+      }
+      <Normal> { -0.108280 0.863521 -0.492508 }
+    }
+    <Vertex> 3765 {
+      -28.745721817 -46.2258796692 12.5013723373
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.223763 0.518486 0.825289 }
+        <Binormal> { -0.955421 -0.148354 -0.165843 }
+      }
+      <Normal> { -0.079836 0.926145 -0.368542 }
+    }
+    <Vertex> 3766 {
+      -28.745721817 -46.2003059387 12.7938575745
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.000001 0.176865 0.984235 }
+        <Binormal> { -0.659958 -0.084825 0.015242 }
+      }
+      <Normal> { -0.086184 0.781549 0.617817 }
+    }
+    <Vertex> 3767 {
+      -26.1230583191 -45.8595085144 12.7938575745
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.000000 0.262427 0.964952 }
+        <Binormal> { -0.676310 -0.111081 0.030209 }
+      }
+      <Normal> { -0.115116 0.843532 0.524552 }
+    }
+    <Vertex> 3768 {
+      -26.1230583191 -45.9390525818 12.5013723373
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.076144 0.608715 0.789727 }
+        <Binormal> { -0.981743 -0.123013 0.000160 }
+      }
+      <Normal> { -0.108280 0.863521 -0.492508 }
+    }
+    <Vertex> 3769 {
+      -26.1230583191 -45.8595085144 12.7938575745
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.000000 0.262427 0.964952 }
+        <Binormal> { -0.676310 -0.111081 0.030209 }
+      }
+      <Normal> { -0.115116 0.843532 0.524552 }
+    }
+    <Vertex> 3770 {
+      -23.8694820404 -45.5515060425 12.8123311996
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.000000 0.268653 0.963237 }
+        <Binormal> { -0.701958 -0.132961 0.037083 }
+      }
+      <Normal> { -0.138035 0.863857 0.484420 }
+    }
+    <Vertex> 3771 {
+      -23.8694820404 -45.6402664185 12.5013723373
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.002646 0.586939 0.809627 }
+        <Binormal> { -0.984615 -0.100850 0.076329 }
+      }
+      <Normal> { -0.126133 0.868007 -0.480209 }
+    }
+    <Vertex> 3772 {
+      -32.1065597534 -47.9846000671 13.110291481
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.989146 -0.142124 0.037309 }
+        <Binormal> { -0.146212 -0.977164 0.154048 }
+      }
+      <Normal> { -0.018677 0.158422 0.987182 }
+    }
+    <Vertex> 3773 {
+      -28.745721817 -47.5598640442 13.110291481
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.965131 -0.261005 0.019954 }
+        <Binormal> { -0.260786 0.952141 -0.159330 }
+      }
+      <Normal> { -0.019227 0.159886 0.986938 }
+    }
+    <Vertex> 3774 {
+      -28.745721817 -46.2003059387 12.7938575745
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.994968 0.088573 -0.046840 }
+        <Binormal> { 0.091330 0.618744 -0.769982 }
+      }
+      <Normal> { -0.086184 0.781549 0.617817 }
+    }
+    <Vertex> 3775 {
+      -32.1065597534 -46.5808982849 12.7938575745
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.817432 0.557237 -0.145916 }
+        <Binormal> { 0.517136 0.628611 -0.496442 }
+      }
+      <Normal> { -0.061556 0.649281 0.758019 }
+    }
+    <Vertex> 3776 {
+      -32.1065597534 -47.9846000671 13.110291481
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.989146 -0.142124 0.037309 }
+        <Binormal> { -0.146212 -0.977164 0.154048 }
+      }
+      <Normal> { -0.018677 0.158422 0.987182 }
+    }
+    <Vertex> 3777 {
+      -32.1065597534 -46.5808982849 12.7938575745
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.817432 0.557237 -0.145916 }
+        <Binormal> { 0.517136 0.628611 -0.496442 }
+      }
+      <Normal> { -0.061556 0.649281 0.758019 }
+    }
+    <Vertex> 3778 {
+      -35.836479187 -46.9813995361 12.7938575745
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.996446 -0.072863 0.042268 }
+        <Binormal> { -0.083874 -0.822084 0.560155 }
+      }
+      <Normal> { -0.051302 0.565905 0.822840 }
+    }
+    <Vertex> 3779 {
+      -35.836479187 -48.4423141479 13.110291481
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.989146 -0.142123 0.037308 }
+        <Binormal> { -0.146189 -0.977395 0.152547 }
+      }
+      <Normal> { -0.018403 0.156865 0.987426 }
+    }
+    <Vertex> 3780 {
+      -32.1065597534 -47.9846000671 13.110291481
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.989146 -0.142124 0.037309 }
+        <Binormal> { -0.146212 -0.977164 0.154048 }
+      }
+      <Normal> { -0.018677 0.158422 0.987182 }
+    }
+    <Vertex> 3781 {
+      -35.836479187 -48.4423141479 13.110291481
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.989146 -0.142123 0.037308 }
+        <Binormal> { -0.146189 -0.977395 0.152547 }
+      }
+      <Normal> { -0.018403 0.156865 0.987426 }
+    }
+    <Vertex> 3782 {
+      -35.836479187 -50.9559555054 13.356595993
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.977302 -0.209380 0.032268 }
+        <Binormal> { -0.210944 -0.975693 0.057794 }
+      }
+      <Normal> { -0.007447 0.060732 0.998108 }
+    }
+    <Vertex> 3783 {
+      -32.1065597534 -50.4982414246 13.356595993
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.318759 -0.943659 0.088887 }
+        <Binormal> { -0.947260 0.317661 -0.024567 }
+      }
+      <Normal> { -0.005890 0.059633 0.998199 }
+    }
+    <Vertex> 3784 {
+      -32.1065597534 -47.9846000671 13.110291481
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.989146 -0.142124 0.037309 }
+        <Binormal> { -0.146212 -0.977164 0.154048 }
+      }
+      <Normal> { -0.018677 0.158422 0.987182 }
+    }
+    <Vertex> 3785 {
+      -32.1065597534 -50.4982414246 13.356595993
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.318759 -0.943659 0.088887 }
+        <Binormal> { -0.947260 0.317661 -0.024567 }
+      }
+      <Normal> { -0.005890 0.059633 0.998199 }
+    }
+    <Vertex> 3786 {
+      -28.745721817 -50.0735054016 13.3497514725
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.812944 -0.580467 0.046693 }
+        <Binormal> { -0.582131 0.811741 -0.043928 }
+      }
+      <Normal> { 0.000275 0.054231 0.998505 }
+    }
+    <Vertex> 3787 {
+      -28.745721817 -47.5598640442 13.110291481
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.965131 -0.261005 0.019954 }
+        <Binormal> { -0.260786 0.952141 -0.159330 }
+      }
+      <Normal> { -0.019227 0.159886 0.986938 }
+    }
+    <Vertex> 3788 {
+      -15.8161048889 -46.390914917 13.4058609009
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.518184 -0.840232 0.159673 }
+        <Binormal> { -0.851509 0.492299 -0.172809 }
+      }
+      <Normal> { -0.039796 0.268960 0.962310 }
+    }
+    <Vertex> 3789 {
+      -13.0451097488 -46.5156097412 13.8221073151
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.774912 -0.631540 0.025849 }
+        <Binormal> { -0.530066 0.628615 -0.532272 }
+      }
+      <Normal> { -0.475875 0.299051 0.827082 }
+    }
+    <Vertex> 3790 {
+      -12.2202997208 -45.0206985474 13.3239393234
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.377266 -0.666590 0.642906 }
+        <Binormal> { -0.789681 0.003788 -0.459468 }
+      }
+      <Normal> { -0.150487 0.951994 0.266488 }
+    }
+    <Vertex> 3791 {
+      -15.8161048889 -45.0431785583 12.8677501678
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.766283 -0.612270 0.194772 }
+        <Binormal> { -0.454201 0.347099 -0.695831 }
+      }
+      <Normal> { -0.025300 0.887845 0.459395 }
+    }
+    <Vertex> 3792 {
+      -15.8161048889 -46.390914917 13.4058609009
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.518184 -0.840232 0.159673 }
+        <Binormal> { -0.851509 0.492299 -0.172809 }
+      }
+      <Normal> { -0.039796 0.268960 0.962310 }
+    }
+    <Vertex> 3793 {
+      -15.8161048889 -45.0431785583 12.8677501678
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.766283 -0.612270 0.194772 }
+        <Binormal> { -0.454201 0.347099 -0.695831 }
+      }
+      <Normal> { -0.025300 0.887845 0.459395 }
+    }
+    <Vertex> 3794 {
+      -19.0391654968 -45.0781097412 12.9046955109
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.477672 -0.802586 0.357331 }
+        <Binormal> { -0.687429 0.206201 -0.455801 }
+      }
+      <Normal> { -0.040681 0.885861 0.462111 }
+    }
+    <Vertex> 3795 {
+      -19.0391654968 -46.4206085205 13.5536460876
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 -0.960973 0.276641 }
+        <Binormal> { -0.999762 -0.005066 -0.017596 }
+      }
+      <Normal> { -0.018311 0.286935 0.957762 }
+    }
+    <Vertex> 3796 {
+      -15.8161048889 -46.390914917 13.4058609009
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.518184 -0.840232 0.159673 }
+        <Binormal> { -0.851509 0.492299 -0.172809 }
+      }
+      <Normal> { -0.039796 0.268960 0.962310 }
+    }
+    <Vertex> 3797 {
+      -19.0391654968 -46.4206085205 13.5536460876
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 -0.960973 0.276641 }
+        <Binormal> { -0.999762 -0.005066 -0.017596 }
+      }
+      <Normal> { -0.018311 0.286935 0.957762 }
+    }
+    <Vertex> 3798 {
+      -19.0391654968 -48.9342460632 14.0147857666
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.155578 -0.972109 0.175499 }
+        <Binormal> { -0.981143 0.152237 -0.026519 }
+      }
+      <Normal> { -0.017121 0.063478 0.997833 }
+    }
+    <Vertex> 3799 {
+      -15.8161048889 -48.9045562744 13.7999505997
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.280596 -0.948399 0.147666 }
+        <Binormal> { -0.955336 0.276450 -0.039811 }
+      }
+      <Normal> { -0.024018 0.060701 0.997864 }
+    }
+    <Vertex> 3800 {
+      -15.8161048889 -46.390914917 13.4058609009
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.518184 -0.840232 0.159673 }
+        <Binormal> { -0.851509 0.492299 -0.172809 }
+      }
+      <Normal> { -0.039796 0.268960 0.962310 }
+    }
+    <Vertex> 3801 {
+      -15.8161048889 -48.9045562744 13.7999505997
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.280596 -0.948399 0.147666 }
+        <Binormal> { -0.955336 0.276450 -0.039811 }
+      }
+      <Normal> { -0.024018 0.060701 0.997864 }
+    }
+    <Vertex> 3802 {
+      -13.0788087845 -48.8977127075 14.0308132172
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.946011 0.286996 0.150657 }
+        <Binormal> { 0.249684 0.758138 0.123601 }
+      }
+      <Normal> { -0.478957 0.014649 0.877682 }
+    }
+    <Vertex> 3803 {
+      -13.0451097488 -46.5156097412 13.8221073151
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.774912 -0.631540 0.025849 }
+        <Binormal> { -0.530066 0.628615 -0.532272 }
+      }
+      <Normal> { -0.475875 0.299051 0.827082 }
+    }
+    <Vertex> 3804 {
+      -21.6159038544 -46.6084098816 13.4058609009
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.097049 0.253182 0.962523 }
+    }
+    <Vertex> 3805 {
+      -19.0391654968 -46.4206085205 13.5536460876
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.018311 0.286935 0.957762 }
+    }
+    <Vertex> 3806 {
+      -19.0391654968 -45.0781097412 12.9046955109
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.040681 0.885861 0.462111 }
+    }
+    <Vertex> 3807 {
+      -21.6159038544 -45.2692985535 12.8677501678
+      <UV>  {
+        0.250000 0.750000
+        <Tangent> { -0.615624 -0.743014 0.262557 }
+        <Binormal> { -0.574100 0.253952 -0.627444 }
+      }
+      <Normal> { -0.115940 0.879269 0.461959 }
+    }
+    <Vertex> 3808 {
+      -21.6159038544 -46.6084098816 13.4058609009
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.097049 0.253182 0.962523 }
+    }
+    <Vertex> 3809 {
+      -21.6159038544 -45.2692985535 12.8677501678
+      <UV>  {
+        0.250000 0.750000
+        <Tangent> { -0.615624 -0.743014 0.262557 }
+        <Binormal> { -0.574100 0.253952 -0.627444 }
+      }
+      <Normal> { -0.115940 0.879269 0.461959 }
+    }
+    <Vertex> 3810 {
+      -23.8694820404 -45.5515060425 12.8123311996
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.745184 -0.646666 0.162862 }
+        <Binormal> { -0.453948 0.338502 -0.732995 }
+      }
+      <Normal> { -0.138035 0.863857 0.484420 }
+    }
+    <Vertex> 3811 {
+      -23.8694820404 -46.8900108337 13.1841831207
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.875060 -0.483290 -0.026469 }
+        <Binormal> { -0.466943 0.857112 -0.212705 }
+      }
+      <Normal> { -0.085696 0.195746 0.976897 }
+    }
+    <Vertex> 3812 {
+      -21.6159038544 -46.6084098816 13.4058609009
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.097049 0.253182 0.962523 }
+    }
+    <Vertex> 3813 {
+      -23.8694820404 -46.8900108337 13.1841831207
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.875060 -0.483290 -0.026469 }
+        <Binormal> { -0.466943 0.857112 -0.212705 }
+      }
+      <Normal> { -0.085696 0.195746 0.976897 }
+    }
+    <Vertex> 3814 {
+      -23.8694820404 -49.4036445618 13.4263725281
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.923363 -0.372858 -0.091531 }
+        <Binormal> { -0.367298 0.926996 -0.070884 }
+      }
+      <Normal> { -0.086795 0.041719 0.995331 }
+    }
+    <Vertex> 3815 {
+      -21.6159038544 -49.1220550537 13.7725763321
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.988075 -0.096019 -0.120364 }
+        <Binormal> { -0.089126 0.994003 -0.061312 }
+      }
+      <Normal> { -0.111881 0.051180 0.992370 }
+    }
+    <Vertex> 3816 {
+      -21.6159038544 -46.6084098816 13.4058609009
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.097049 0.253182 0.962523 }
+    }
+    <Vertex> 3817 {
+      -21.6159038544 -49.1220550537 13.7725763321
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.988075 -0.096019 -0.120364 }
+        <Binormal> { -0.089126 0.994003 -0.061312 }
+      }
+      <Normal> { -0.111881 0.051180 0.992370 }
+    }
+    <Vertex> 3818 {
+      -19.0391654968 -48.9342460632 14.0147857666
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.017121 0.063478 0.997833 }
+    }
+    <Vertex> 3819 {
+      -19.0391654968 -46.4206085205 13.5536460876
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.018311 0.286935 0.957762 }
+    }
+    <Vertex> 3820 {
+      -26.1230583191 -47.2010803223 13.110291481
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.000000 -0.989628 0.143655 }
+        <Binormal> { -0.999086 -0.005156 -0.035518 }
+      }
+      <Normal> { -0.035890 0.165075 0.985595 }
+    }
+    <Vertex> 3821 {
+      -23.8694820404 -46.8900108337 13.1841831207
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 -0.987532 0.157415 }
+        <Binormal> { -0.995531 -0.013490 -0.084628 }
+      }
+      <Normal> { -0.085696 0.195746 0.976897 }
+    }
+    <Vertex> 3822 {
+      -23.8694820404 -45.5515060425 12.8123311996
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.000000 -0.968569 0.248744 }
+        <Binormal> { -0.684074 -0.034335 -0.133697 }
+      }
+      <Normal> { -0.138035 0.863857 0.484420 }
+    }
+    <Vertex> 3823 {
+      -26.1230583191 -45.8595085144 12.7938575745
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { 0.000000 -0.973292 0.229569 }
+        <Binormal> { -0.704191 -0.026427 -0.112041 }
+      }
+      <Normal> { -0.115116 0.843532 0.524552 }
+    }
+    <Vertex> 3824 {
+      -26.1230583191 -47.2010803223 13.110291481
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.000000 -0.989628 0.143655 }
+        <Binormal> { -0.999086 -0.005156 -0.035518 }
+      }
+      <Normal> { -0.035890 0.165075 0.985595 }
+    }
+    <Vertex> 3825 {
+      -26.1230583191 -45.8595085144 12.7938575745
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { 0.000000 -0.973292 0.229569 }
+        <Binormal> { -0.704191 -0.026427 -0.112041 }
+      }
+      <Normal> { -0.115116 0.843532 0.524552 }
+    }
+    <Vertex> 3826 {
+      -28.745721817 -46.2003059387 12.7938575745
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 -0.973633 0.228120 }
+        <Binormal> { -0.779813 -0.019660 -0.083912 }
+      }
+      <Normal> { -0.086184 0.781549 0.617817 }
+    }
+    <Vertex> 3827 {
+      -28.745721817 -47.5598640442 13.110291481
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.000000 -0.989857 0.142067 }
+        <Binormal> { -0.999642 -0.002731 -0.019032 }
+      }
+      <Normal> { -0.019227 0.159886 0.986938 }
+    }
+    <Vertex> 3828 {
+      -26.1230583191 -47.2010803223 13.110291481
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.000000 -0.989628 0.143655 }
+        <Binormal> { -0.999086 -0.005156 -0.035518 }
+      }
+      <Normal> { -0.035890 0.165075 0.985595 }
+    }
+    <Vertex> 3829 {
+      -28.745721817 -47.5598640442 13.110291481
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.000000 -0.989857 0.142067 }
+        <Binormal> { -0.999642 -0.002731 -0.019032 }
+      }
+      <Normal> { -0.019227 0.159886 0.986938 }
+    }
+    <Vertex> 3830 {
+      -28.745721817 -50.0735054016 13.3497514725
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.000000 -0.995869 0.090804 }
+        <Binormal> { -0.999304 0.000025 0.000274 }
+      }
+      <Normal> { 0.000275 0.054231 0.998505 }
+    }
+    <Vertex> 3831 {
+      -26.1230583191 -49.7147216797 13.3292217255
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.000000 -0.996229 0.086768 }
+        <Binormal> { -0.998974 -0.001406 -0.016144 }
+      }
+      <Normal> { -0.016205 0.044954 0.998840 }
+    }
+    <Vertex> 3832 {
+      -26.1230583191 -47.2010803223 13.110291481
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.000000 -0.989628 0.143655 }
+        <Binormal> { -0.999086 -0.005156 -0.035518 }
+      }
+      <Normal> { -0.035890 0.165075 0.985595 }
+    }
+    <Vertex> 3833 {
+      -26.1230583191 -49.7147216797 13.3292217255
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.000000 -0.996229 0.086768 }
+        <Binormal> { -0.998974 -0.001406 -0.016144 }
+      }
+      <Normal> { -0.016205 0.044954 0.998840 }
+    }
+    <Vertex> 3834 {
+      -23.8694820404 -49.4036445618 13.4263725281
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.000000 -0.995820 0.091340 }
+        <Binormal> { -0.994981 -0.007928 -0.086432 }
+      }
+      <Normal> { -0.086795 0.041719 0.995331 }
+    }
+    <Vertex> 3835 {
+      -23.8694820404 -46.8900108337 13.1841831207
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 -0.987532 0.157415 }
+        <Binormal> { -0.995531 -0.013490 -0.084628 }
+      }
+      <Normal> { -0.085696 0.195746 0.976897 }
+    }
+    <Vertex> 3836 {
+      -8.65929317474 -45.5130157471 16.103477478
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.202704 0.967803 0.149174 }
+    }
+    <Vertex> 3837 {
+      -6.61151027679 -46.5269699097 16.0852737427
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.896131 -0.443717 -0.007966 }
+        <Binormal> { -0.041337 -0.099615 0.898452 }
+      }
+      <Normal> { 0.780786 0.615986 0.104221 }
+    }
+    <Vertex> 3838 {
+      -6.66070270538 -46.4785079956 14.0944881439
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.192004 0.452094 0.871021 }
+        <Binormal> { -0.662154 0.595417 -0.455007 }
+      }
+      <Normal> { 0.724326 0.664113 -0.185034 }
+    }
+    <Vertex> 3839 {
+      -8.97041320801 -45.338684082 13.9134101868
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.264931 0.957671 -0.112491 }
+    }
+    <Vertex> 3840 {
+      -8.65929317474 -45.5130157471 16.103477478
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.202704 0.967803 0.149174 }
+    }
+    <Vertex> 3841 {
+      -8.97041320801 -45.338684082 13.9134101868
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.264931 0.957671 -0.112491 }
+    }
+    <Vertex> 3842 {
+      -12.2202997208 -45.0206985474 13.3239393234
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.961608 -0.078414 -0.262899 }
+        <Binormal> { 0.229392 0.295833 -0.927287 }
+      }
+      <Normal> { -0.150487 0.951994 0.266488 }
+    }
+    <Vertex> 3843 {
+      -10.8105859756 -45.6207695007 15.7587862015
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.986200 -0.049397 -0.158014 }
+        <Binormal> { 0.114522 0.415532 -0.844653 }
+      }
+      <Normal> { -0.420423 0.835414 0.353984 }
+    }
+    <Vertex> 3844 {
+      -8.65929317474 -45.5130157471 16.103477478
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.202704 0.967803 0.149174 }
+    }
+    <Vertex> 3845 {
+      -10.8105859756 -45.6207695007 15.7587862015
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.986200 -0.049397 -0.158014 }
+        <Binormal> { 0.114522 0.415532 -0.844653 }
+      }
+      <Normal> { -0.420423 0.835414 0.353984 }
+    }
+    <Vertex> 3846 {
+      -10.1679496765 -46.2474937439 18.1269989014
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.502015 0.161152 -0.849677 }
+        <Binormal> { 0.666002 0.698815 -0.260955 }
+      }
+      <Normal> { -0.551714 0.696890 0.458144 }
+    }
+    <Vertex> 3847 {
+      -8.49569225311 -45.9391441345 18.4015712738
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.990264 0.122426 0.065880 }
+        <Binormal> { -0.021437 0.333734 -0.942423 }
+      }
+      <Normal> { 0.137364 0.934660 0.327860 }
+    }
+    <Vertex> 3848 {
+      -8.65929317474 -45.5130157471 16.103477478
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.202704 0.967803 0.149174 }
+    }
+    <Vertex> 3849 {
+      -8.49569225311 -45.9391441345 18.4015712738
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.990264 0.122426 0.065880 }
+        <Binormal> { -0.021437 0.333734 -0.942423 }
+      }
+      <Normal> { 0.137364 0.934660 0.327860 }
+    }
+    <Vertex> 3850 {
+      -6.90795135498 -46.8801879883 18.4110374451
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.504379 0.375909 0.777343 }
+        <Binormal> { -0.043620 0.888019 -0.457733 }
+      }
+      <Normal> { 0.862362 0.264779 0.431501 }
+    }
+    <Vertex> 3851 {
+      -6.61151027679 -46.5269699097 16.0852737427
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.896131 -0.443717 -0.007966 }
+        <Binormal> { -0.041337 -0.099615 0.898452 }
+      }
+      <Normal> { 0.780786 0.615986 0.104221 }
+    }
+    <Vertex> 3852 {
+      -11.8245639801 -46.7909736633 15.6619844437
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { 0.306337 -0.389111 0.868764 }
+        <Binormal> { -0.445607 -0.864259 -0.229966 }
+      }
+      <Normal> { -0.828242 0.301340 0.472396 }
+    }
+    <Vertex> 3853 {
+      -10.8105859756 -45.6207695007 15.7587862015
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.127649 -0.507963 0.851868 }
+        <Binormal> { -0.891473 -0.403331 -0.106919 }
+      }
+      <Normal> { -0.420423 0.835414 0.353984 }
+    }
+    <Vertex> 3854 {
+      -12.2202997208 -45.0206985474 13.3239393234
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.377266 -0.666590 0.642906 }
+        <Binormal> { -0.789681 0.003788 -0.459468 }
+      }
+      <Normal> { -0.150487 0.951994 0.266488 }
+    }
+    <Vertex> 3855 {
+      -13.0451097488 -46.5156097412 13.8221073151
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { 0.390737 -0.483457 0.783322 }
+        <Binormal> { -0.634112 -0.695935 -0.113215 }
+      }
+      <Normal> { -0.475875 0.299051 0.827082 }
+    }
+    <Vertex> 3856 {
+      -11.8245639801 -46.7909736633 15.6619844437
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { 0.306337 -0.389111 0.868764 }
+        <Binormal> { -0.445607 -0.864259 -0.229966 }
+      }
+      <Normal> { -0.828242 0.301340 0.472396 }
+    }
+    <Vertex> 3857 {
+      -13.0451097488 -46.5156097412 13.8221073151
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { 0.390737 -0.483457 0.783322 }
+        <Binormal> { -0.634112 -0.695935 -0.113215 }
+      }
+      <Normal> { -0.475875 0.299051 0.827082 }
+    }
+    <Vertex> 3858 {
+      -13.0788087845 -48.8977127075 14.0308132172
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.524382 -0.304084 0.795334 }
+        <Binormal> { -0.278540 -0.841172 -0.137962 }
+      }
+      <Normal> { -0.478957 0.014649 0.877682 }
+    }
+    <Vertex> 3859 {
+      -11.9593639374 -48.778465271 15.6101093292
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.512767 0.053867 0.856836 }
+        <Binormal> { 0.089777 -0.995884 0.008882 }
+      }
+      <Normal> { -0.851070 -0.072085 0.520035 }
+    }
+    <Vertex> 3860 {
+      -11.8245639801 -46.7909736633 15.6619844437
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { 0.306337 -0.389111 0.868764 }
+        <Binormal> { -0.445607 -0.864259 -0.229966 }
+      }
+      <Normal> { -0.828242 0.301340 0.472396 }
+    }
+    <Vertex> 3861 {
+      -11.9593639374 -48.778465271 15.6101093292
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.512767 0.053867 0.856836 }
+        <Binormal> { 0.089777 -0.995884 0.008882 }
+      }
+      <Normal> { -0.851070 -0.072085 0.520035 }
+    }
+    <Vertex> 3862 {
+      -11.3445453644 -48.7155265808 16.9287757874
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.029605 0.704959 0.708630 }
+        <Binormal> { 0.433158 -0.633702 0.612323 }
+      }
+      <Normal> { -0.875118 -0.155370 0.458266 }
+    }
+    <Vertex> 3863 {
+      -11.1838226318 -47.3864440918 17.7142772675
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.228187 -0.417843 0.879397 }
+        <Binormal> { -0.325135 -0.867132 -0.327649 }
+      }
+      <Normal> { -0.856777 0.133000 0.498215 }
+    }
+    <Vertex> 3864 {
+      -11.8245639801 -46.7909736633 15.6619844437
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { 0.306337 -0.389111 0.868764 }
+        <Binormal> { -0.445607 -0.864259 -0.229966 }
+      }
+      <Normal> { -0.828242 0.301340 0.472396 }
+    }
+    <Vertex> 3865 {
+      -11.1838226318 -47.3864440918 17.7142772675
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.228187 -0.417843 0.879397 }
+        <Binormal> { -0.325135 -0.867132 -0.327649 }
+      }
+      <Normal> { -0.856777 0.133000 0.498215 }
+    }
+    <Vertex> 3866 {
+      -10.1679496765 -46.2474937439 18.1269989014
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.619775 0.123273 0.775037 }
+        <Binormal> { -0.483639 -0.711545 0.499927 }
+      }
+      <Normal> { -0.551714 0.696890 0.458144 }
+    }
+    <Vertex> 3867 {
+      -10.8105859756 -45.6207695007 15.7587862015
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.127649 -0.507963 0.851868 }
+        <Binormal> { -0.891473 -0.403331 -0.106919 }
+      }
+      <Normal> { -0.420423 0.835414 0.353984 }
+    }
+    <Vertex> 3868 {
+      -2.52575969696 -54.7355461121 12.7818841934
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.998462 -0.051106 -0.021473 }
+        <Binormal> { -0.050567 -0.998357 0.024794 }
+      }
+      <Normal> { 0.013520 0.024140 0.999603 }
+    }
+    <Vertex> 3869 {
+      -0.0124856652692 -54.6899833679 12.9519500732
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.994453 -0.077298 0.071338 }
+        <Binormal> { -0.077435 -0.959808 0.039441 }
+      }
+      <Normal> { -0.330760 0.065371 0.941435 }
+    }
+    <Vertex> 3870 {
+      0.260279417038 -51.5365333557 12.731045723
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.634189 0.773169 0.003816 }
+        <Binormal> { 0.626848 -0.517004 0.574343 }
+      }
+      <Normal> { -0.508988 0.285104 0.812159 }
+    }
+    <Vertex> 3871 {
+      -2.59762811661 -52.2687759399 12.6009054184
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.995102 0.086174 -0.048432 }
+        <Binormal> { 0.097461 -0.936102 0.336871 }
+      }
+      <Normal> { 0.042787 0.342235 0.938627 }
+    }
+    <Vertex> 3872 {
+      -2.52575969696 -54.7355461121 12.7818841934
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.998462 -0.051106 -0.021473 }
+        <Binormal> { -0.050567 -0.998357 0.024794 }
+      }
+      <Normal> { 0.013520 0.024140 0.999603 }
+    }
+    <Vertex> 3873 {
+      -2.59762811661 -52.2687759399 12.6009054184
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.995102 0.086174 -0.048432 }
+        <Binormal> { 0.097461 -0.936102 0.336871 }
+      }
+      <Normal> { 0.042787 0.342235 0.938627 }
+    }
+    <Vertex> 3874 {
+      -5.35347032547 -51.5775108337 12.9710607529
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.629984 -0.769889 -0.101936 }
+        <Binormal> { -0.475423 -0.481580 0.699012 }
+      }
+      <Normal> { 0.732780 0.214057 0.645863 }
+    }
+    <Vertex> 3875 {
+      -5.0390329361 -54.7811050415 12.9900779724
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.995270 -0.050366 -0.083073 }
+        <Binormal> { -0.048195 -0.940201 -0.007378 }
+      }
+      <Normal> { 0.413160 -0.028321 0.910184 }
+    }
+    <Vertex> 3876 {
+      -2.52575969696 -54.7355461121 12.7818841934
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.998462 -0.051106 -0.021473 }
+        <Binormal> { -0.050567 -0.998357 0.024794 }
+      }
+      <Normal> { 0.013520 0.024140 0.999603 }
+    }
+    <Vertex> 3877 {
+      -5.0390329361 -54.7811050415 12.9900779724
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.995270 -0.050366 -0.083073 }
+        <Binormal> { -0.048195 -0.940201 -0.007378 }
+      }
+      <Normal> { 0.413160 -0.028321 0.910184 }
+    }
+    <Vertex> 3878 {
+      -5.63436937332 -57.9570732117 12.9359388351
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.984037 -0.157863 -0.082165 }
+        <Binormal> { -0.159630 -0.941474 -0.102939 }
+      }
+      <Normal> { 0.335063 -0.158361 0.928770 }
+    }
+    <Vertex> 3879 {
+      -3.14477968216 -57.9915313721 12.7509479523
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.954987 -0.296645 -0.001011 }
+        <Binormal> { -0.296615 -0.954835 -0.016686 }
+      }
+      <Normal> { -0.006928 -0.015320 0.999847 }
+    }
+    <Vertex> 3880 {
+      -2.52575969696 -54.7355461121 12.7818841934
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.998462 -0.051106 -0.021473 }
+        <Binormal> { -0.050567 -0.998357 0.024794 }
+      }
+      <Normal> { 0.013520 0.024140 0.999603 }
+    }
+    <Vertex> 3881 {
+      -3.14477968216 -57.9915313721 12.7509479523
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.954987 -0.296645 -0.001011 }
+        <Binormal> { -0.296615 -0.954835 -0.016686 }
+      }
+      <Normal> { -0.006928 -0.015320 0.999847 }
+    }
+    <Vertex> 3882 {
+      -0.649426758289 -58.0259895325 12.9442148209
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.981642 -0.176698 0.071818 }
+        <Binormal> { -0.174820 -0.950595 0.050717 }
+      }
+      <Normal> { -0.306040 0.106754 0.945982 }
+    }
+    <Vertex> 3883 {
+      -0.0124856652692 -54.6899833679 12.9519500732
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.994453 -0.077298 0.071338 }
+        <Binormal> { -0.077435 -0.959808 0.039441 }
+      }
+      <Normal> { -0.330760 0.065371 0.941435 }
+    }
+    <Vertex> 3884 {
+      -5.87679100037 -54.7962989807 13.6146593094
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { -0.088099 -0.994898 -0.049151 }
+        <Binormal> { -0.681648 0.024235 0.731251 }
+      }
+      <Normal> { 0.726188 -0.099521 0.680227 }
+    }
+    <Vertex> 3885 {
+      -6.45493078232 -57.9455909729 13.5527858734
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { -0.197920 -0.980201 -0.005833 }
+        <Binormal> { -0.748455 0.147363 0.632353 }
+      }
+      <Normal> { 0.592303 -0.261605 0.762017 }
+    }
+    <Vertex> 3886 {
+      -5.63436937332 -57.9570732117 12.9359388351
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.083118 -0.974417 -0.208813 }
+        <Binormal> { -0.938077 -0.147163 0.313328 }
+      }
+      <Normal> { 0.335063 -0.158361 0.928770 }
+    }
+    <Vertex> 3887 {
+      -5.0390329361 -54.7811050415 12.9900779724
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { -0.020391 -0.999525 -0.023128 }
+        <Binormal> { -0.910406 0.009004 0.413541 }
+      }
+      <Normal> { 0.413160 -0.028321 0.910184 }
+    }
+    <Vertex> 3888 {
+      -5.87679100037 -54.7962989807 13.6146593094
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { -0.088099 -0.994898 -0.049151 }
+        <Binormal> { -0.681648 0.024235 0.731251 }
+      }
+      <Normal> { 0.726188 -0.099521 0.680227 }
+    }
+    <Vertex> 3889 {
+      -5.0390329361 -54.7811050415 12.9900779724
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { -0.020391 -0.999525 -0.023128 }
+        <Binormal> { -0.910406 0.009004 0.413541 }
+      }
+      <Normal> { 0.413160 -0.028321 0.910184 }
+    }
+    <Vertex> 3890 {
+      -5.35347032547 -51.5775108337 12.9710607529
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.629984 -0.769889 -0.101936 }
+        <Binormal> { -0.475423 -0.481580 0.699012 }
+      }
+      <Normal> { 0.732780 0.214057 0.645863 }
+    }
+    <Vertex> 3891 {
+      -5.88460969925 -51.6331825256 13.9843406677
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { -0.005851 -0.995028 -0.099423 }
+        <Binormal> { -0.440705 -0.086676 0.893390 }
+      }
+      <Normal> { 0.897519 -0.057039 0.437208 }
+    }
+    <Vertex> 3892 {
+      -5.87679100037 -54.7962989807 13.6146593094
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { -0.088099 -0.994898 -0.049151 }
+        <Binormal> { -0.681648 0.024235 0.731251 }
+      }
+      <Normal> { 0.726188 -0.099521 0.680227 }
+    }
+    <Vertex> 3893 {
+      -5.88460969925 -51.6331825256 13.9843406677
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { -0.005851 -0.995028 -0.099423 }
+        <Binormal> { -0.440705 -0.086676 0.893390 }
+      }
+      <Normal> { 0.897519 -0.057039 0.437208 }
+    }
+    <Vertex> 3894 {
+      -6.33217811584 -51.7258758545 14.9410142899
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { -0.041080 -0.991560 -0.122969 }
+        <Binormal> { -0.662716 -0.063257 0.731461 }
+      }
+      <Normal> { 0.727012 -0.257668 0.636402 }
+    }
+    <Vertex> 3895 {
+      -6.47673654556 -54.7197265625 14.3222208023
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { -0.178619 -0.980221 -0.085216 }
+        <Binormal> { -0.831168 0.104053 0.545288 }
+      }
+      <Normal> { 0.520249 -0.197790 0.830744 }
+    }
+    <Vertex> 3896 {
+      -5.87679100037 -54.7962989807 13.6146593094
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { -0.088099 -0.994898 -0.049151 }
+        <Binormal> { -0.681648 0.024235 0.731251 }
+      }
+      <Normal> { 0.726188 -0.099521 0.680227 }
+    }
+    <Vertex> 3897 {
+      -6.47673654556 -54.7197265625 14.3222208023
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { -0.178619 -0.980221 -0.085216 }
+        <Binormal> { -0.831168 0.104053 0.545288 }
+      }
+      <Normal> { 0.520249 -0.197790 0.830744 }
+    }
+    <Vertex> 3898 {
+      -7.17759752274 -57.8108673096 14.1112775803
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { -0.225194 -0.974242 -0.011841 }
+        <Binormal> { -0.896996 0.202768 0.376022 }
+      }
+      <Normal> { 0.338389 -0.205817 0.918210 }
+    }
+    <Vertex> 3899 {
+      -6.45493078232 -57.9455909729 13.5527858734
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { -0.197920 -0.980201 -0.005833 }
+        <Binormal> { -0.748455 0.147363 0.632353 }
+      }
+      <Normal> { 0.592303 -0.261605 0.762017 }
+    }
+    <Vertex> 3900 {
+      -5.90806627274 -48.7218818665 15.0933885574
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.150008 -0.906177 -0.395399 }
+        <Binormal> { -0.139691 -0.415316 0.898824 }
+      }
+      <Normal> { 0.977508 0.086856 0.192053 }
+    }
+    <Vertex> 3901 {
+      -5.88460969925 -51.6331825256 13.9843406677
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.007529 -0.934463 -0.355980 }
+        <Binormal> { -0.428860 -0.322790 0.838269 }
+      }
+      <Normal> { 0.897519 -0.057039 0.437208 }
+    }
+    <Vertex> 3902 {
+      -5.35347032547 -51.5775108337 12.9710607529
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.091461 -0.950691 -0.296348 }
+        <Binormal> { -0.550581 -0.276229 0.716225 }
+      }
+      <Normal> { 0.732780 0.214057 0.645863 }
+    }
+    <Vertex> 3903 {
+      -5.88519668579 -48.7179756165 13.6608877182
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.242869 -0.947339 -0.208720 }
+        <Binormal> { 0.079391 -0.195015 0.977514 }
+      }
+      <Normal> { 0.964629 0.262215 -0.026032 }
+    }
+    <Vertex> 3904 {
+      -5.90806627274 -48.7218818665 15.0933885574
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.150008 -0.906177 -0.395399 }
+        <Binormal> { -0.139691 -0.415316 0.898824 }
+      }
+      <Normal> { 0.977508 0.086856 0.192053 }
+    }
+    <Vertex> 3905 {
+      -5.88519668579 -48.7179756165 13.6608877182
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.242869 -0.947339 -0.208720 }
+        <Binormal> { 0.079391 -0.195015 0.977514 }
+      }
+      <Normal> { 0.964629 0.262215 -0.026032 }
+    }
+    <Vertex> 3906 {
+      -6.66070270538 -46.4785079956 14.0944881439
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.302628 -0.907378 -0.291688 }
+        <Binormal> { 0.361609 -0.155281 0.858217 }
+      }
+      <Normal> { 0.724326 0.664113 -0.185034 }
+    }
+    <Vertex> 3907 {
+      -6.61151027679 -46.5269699097 16.0852737427
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.280341 -0.874730 -0.395292 }
+        <Binormal> { 0.152329 -0.337856 0.855663 }
+      }
+      <Normal> { 0.780786 0.615986 0.104221 }
+    }
+    <Vertex> 3908 {
+      -5.90806627274 -48.7218818665 15.0933885574
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.150008 -0.906177 -0.395399 }
+        <Binormal> { -0.139691 -0.415316 0.898824 }
+      }
+      <Normal> { 0.977508 0.086856 0.192053 }
+    }
+    <Vertex> 3909 {
+      -6.61151027679 -46.5269699097 16.0852737427
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.280341 -0.874730 -0.395292 }
+        <Binormal> { 0.152329 -0.337856 0.855663 }
+      }
+      <Normal> { 0.780786 0.615986 0.104221 }
+    }
+    <Vertex> 3910 {
+      -6.90795135498 -46.8801879883 18.4110374451
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.241142 -0.796355 -0.554679 }
+        <Binormal> { -0.196761 -0.582387 0.750596 }
+      }
+      <Normal> { 0.862362 0.264779 0.431501 }
+    }
+    <Vertex> 3911 {
+      -6.29688167572 -49.0263748169 16.3792533875
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.096158 -0.809266 -0.579519 }
+        <Binormal> { -0.500182 -0.542439 0.674491 }
+      }
+      <Normal> { 0.857906 -0.205725 0.470748 }
+    }
+    <Vertex> 3912 {
+      -5.90806627274 -48.7218818665 15.0933885574
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.150008 -0.906177 -0.395399 }
+        <Binormal> { -0.139691 -0.415316 0.898824 }
+      }
+      <Normal> { 0.977508 0.086856 0.192053 }
+    }
+    <Vertex> 3913 {
+      -6.29688167572 -49.0263748169 16.3792533875
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.096158 -0.809266 -0.579519 }
+        <Binormal> { -0.500182 -0.542439 0.674491 }
+      }
+      <Normal> { 0.857906 -0.205725 0.470748 }
+    }
+    <Vertex> 3914 {
+      -6.33217811584 -51.7258758545 14.9410142899
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.467095 -0.860673 -0.202642 }
+        <Binormal> { -0.599949 0.149938 0.746075 }
+      }
+      <Normal> { 0.727012 -0.257668 0.636402 }
+    }
+    <Vertex> 3915 {
+      -5.88460969925 -51.6331825256 13.9843406677
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.007529 -0.934463 -0.355980 }
+        <Binormal> { -0.428860 -0.322790 0.838269 }
+      }
+      <Normal> { 0.897519 -0.057039 0.437208 }
+    }
+    <Vertex> 3916 {
+      -32.1065597534 -53.9348945618 13.4386987686
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.940605 -0.339463 0.005176 }
+        <Binormal> { -0.339315 -0.939605 0.038768 }
+      }
+      <Normal> { -0.011963 0.045534 0.998871 }
+    }
+    <Vertex> 3917 {
+      -28.745721817 -53.5101547241 13.411324501
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.927556 -0.373023 0.022232 }
+        <Binormal> { -0.373501 0.926848 -0.031838 }
+      }
+      <Normal> { 0.026734 0.045076 0.998596 }
+    }
+    <Vertex> 3918 {
+      -28.745721817 -50.0735054016 13.3497514725
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.933236 0.359203 -0.006648 }
+        <Binormal> { 0.359026 0.931838 -0.050709 }
+      }
+      <Normal> { 0.000275 0.054231 0.998505 }
+    }
+    <Vertex> 3919 {
+      -32.1065597534 -50.4982414246 13.356595993
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.482612 0.875561 -0.021886 }
+        <Binormal> { 0.875290 0.481872 -0.023623 }
+      }
+      <Normal> { -0.005890 0.059633 0.998199 }
+    }
+    <Vertex> 3920 {
+      -32.1065597534 -53.9348945618 13.4386987686
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.940605 -0.339463 0.005176 }
+        <Binormal> { -0.339315 -0.939605 0.038768 }
+      }
+      <Normal> { -0.011963 0.045534 0.998871 }
+    }
+    <Vertex> 3921 {
+      -32.1065597534 -50.4982414246 13.356595993
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.482612 0.875561 -0.021886 }
+        <Binormal> { 0.875290 0.481872 -0.023623 }
+      }
+      <Normal> { -0.005890 0.059633 0.998199 }
+    }
+    <Vertex> 3922 {
+      -35.836479187 -50.9559555054 13.356595993
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.947305 -0.320164 0.010426 }
+        <Binormal> { -0.320191 -0.945590 0.055147 }
+      }
+      <Normal> { -0.007447 0.060732 0.998108 }
+    }
+    <Vertex> 3923 {
+      -35.836479187 -54.3926048279 13.4386987686
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.940605 -0.339463 0.005176 }
+        <Binormal> { -0.339332 -0.939904 0.022349 }
+      }
+      <Normal> { -0.025239 0.032868 0.999115 }
+    }
+    <Vertex> 3924 {
+      -32.1065597534 -53.9348945618 13.4386987686
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.940605 -0.339463 0.005176 }
+        <Binormal> { -0.339315 -0.939605 0.038768 }
+      }
+      <Normal> { -0.011963 0.045534 0.998871 }
+    }
+    <Vertex> 3925 {
+      -35.836479187 -54.3926048279 13.4386987686
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.940605 -0.339463 0.005176 }
+        <Binormal> { -0.339332 -0.939904 0.022349 }
+      }
+      <Normal> { -0.025239 0.032868 0.999115 }
+    }
+    <Vertex> 3926 {
+      -35.836479187 -58.1712722778 13.4386987686
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.933594 -0.358334 0.000000 }
+        <Binormal> { -0.214419 -0.558640 0.381725 }
+      }
+      <Normal> { -0.520829 0.608783 0.598376 }
+    }
+    <Vertex> 3927 {
+      -31.8782863617 -56.8203735352 13.7292461395
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.223863 -0.971237 0.081143 }
+        <Binormal> { -0.884664 0.191489 -0.148653 }
+      }
+      <Normal> { -0.039705 0.491775 0.869778 }
+    }
+    <Vertex> 3928 {
+      -32.1065597534 -53.9348945618 13.4386987686
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.940605 -0.339463 0.005176 }
+        <Binormal> { -0.339315 -0.939605 0.038768 }
+      }
+      <Normal> { -0.011963 0.045534 0.998871 }
+    }
+    <Vertex> 3929 {
+      -31.8782863617 -56.8203735352 13.7292461395
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.223863 -0.971237 0.081143 }
+        <Binormal> { -0.884664 0.191489 -0.148653 }
+      }
+      <Normal> { -0.039705 0.491775 0.869778 }
+    }
+    <Vertex> 3930 {
+      -28.5103988647 -57.3936233521 13.7695398331
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.753505 -0.654540 0.061706 }
+        <Binormal> { -0.617069 0.703018 -0.077979 }
+      }
+      <Normal> { 0.252113 0.322489 0.912351 }
+    }
+    <Vertex> 3931 {
+      -28.745721817 -53.5101547241 13.411324501
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.927556 -0.373023 0.022232 }
+        <Binormal> { -0.373501 0.926848 -0.031838 }
+      }
+      <Normal> { 0.026734 0.045076 0.998596 }
+    }
+    <Vertex> 3932 {
+      -15.8161048889 -52.3412055969 13.7342691422
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.265032 -0.963478 -0.038324 }
+        <Binormal> { -0.964031 0.265516 -0.008329 }
+      }
+      <Normal> { -0.016419 -0.028260 0.999451 }
+    }
+    <Vertex> 3933 {
+      -12.9572477341 -52.1151008606 14.0029659271
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.380589 -0.921904 -0.072427 }
+        <Binormal> { -0.864742 0.379778 -0.290058 }
+      }
+      <Normal> { -0.353648 -0.094516 0.930570 }
+    }
+    <Vertex> 3934 {
+      -13.0788087845 -48.8977127075 14.0308132172
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.419678 -0.906202 -0.051657 }
+        <Binormal> { -0.794600 0.393085 -0.440180 }
+      }
+      <Normal> { -0.478957 0.014649 0.877682 }
+    }
+    <Vertex> 3935 {
+      -15.8161048889 -48.9045562744 13.7999505997
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.396847 -0.917697 -0.018560 }
+        <Binormal> { -0.914610 0.396445 -0.046130 }
+      }
+      <Normal> { -0.024018 0.060701 0.997864 }
+    }
+    <Vertex> 3936 {
+      -15.8161048889 -52.3412055969 13.7342691422
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.265032 -0.963478 -0.038324 }
+        <Binormal> { -0.964031 0.265516 -0.008329 }
+      }
+      <Normal> { -0.016419 -0.028260 0.999451 }
+    }
+    <Vertex> 3937 {
+      -15.8161048889 -48.9045562744 13.7999505997
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.396847 -0.917697 -0.018560 }
+        <Binormal> { -0.914610 0.396445 -0.046130 }
+      }
+      <Normal> { -0.024018 0.060701 0.997864 }
+    }
+    <Vertex> 3938 {
+      -19.0391654968 -48.9342460632 14.0147857666
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.227774 -0.973570 -0.016730 }
+        <Binormal> { -0.970399 0.227567 -0.031127 }
+      }
+      <Normal> { -0.017121 0.063478 0.997833 }
+    }
+    <Vertex> 3939 {
+      -19.0391654968 -52.3708953857 13.8546791077
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.007267 -0.999222 -0.038775 }
+        <Binormal> { -0.999687 0.008169 -0.023142 }
+      }
+      <Normal> { -0.023408 -0.034028 0.999146 }
+    }
+    <Vertex> 3940 {
+      -15.8161048889 -52.3412055969 13.7342691422
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.265032 -0.963478 -0.038324 }
+        <Binormal> { -0.964031 0.265516 -0.008329 }
+      }
+      <Normal> { -0.016419 -0.028260 0.999451 }
+    }
+    <Vertex> 3941 {
+      -19.0391654968 -52.3708953857 13.8546791077
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.007267 -0.999222 -0.038775 }
+        <Binormal> { -0.999687 0.008169 -0.023142 }
+      }
+      <Normal> { -0.023408 -0.034028 0.999146 }
+    }
+    <Vertex> 3942 {
+      -19.0934810638 -56.4022789001 13.7249898911
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.127324 -0.991586 -0.023338 }
+        <Binormal> { -0.989374 0.127910 -0.036926 }
+      }
+      <Normal> { -0.032228 0.039033 0.998688 }
+    }
+    <Vertex> 3943 {
+      -16.0333709717 -56.3763046265 13.6569356918
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.251205 -0.967717 -0.020492 }
+        <Binormal> { -0.967228 0.250852 0.010689 }
+      }
+      <Normal> { 0.014618 0.013764 0.999786 }
+    }
+    <Vertex> 3944 {
+      -15.8161048889 -52.3412055969 13.7342691422
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.265032 -0.963478 -0.038324 }
+        <Binormal> { -0.964031 0.265516 -0.008329 }
+      }
+      <Normal> { -0.016419 -0.028260 0.999451 }
+    }
+    <Vertex> 3945 {
+      -16.0333709717 -56.3763046265 13.6569356918
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.251205 -0.967717 -0.020492 }
+        <Binormal> { -0.967228 0.250852 0.010689 }
+      }
+      <Normal> { 0.014618 0.013764 0.999786 }
+    }
+    <Vertex> 3946 {
+      -12.3883171082 -56.1570320129 13.7950839996
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.284827 -0.956845 -0.057633 }
+        <Binormal> { -0.947934 0.288555 -0.105932 }
+      }
+      <Normal> { -0.141606 -0.103793 0.984436 }
+    }
+    <Vertex> 3947 {
+      -12.9572477341 -52.1151008606 14.0029659271
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.380589 -0.921904 -0.072427 }
+        <Binormal> { -0.864742 0.379778 -0.290058 }
+      }
+      <Normal> { -0.353648 -0.094516 0.930570 }
+    }
+    <Vertex> 3948 {
+      -21.6159038544 -52.5587043762 13.6247692108
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.104038 -0.033845 0.993988 }
+    }
+    <Vertex> 3949 {
+      -19.0391654968 -52.3708953857 13.8546791077
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.023408 -0.034028 0.999146 }
+    }
+    <Vertex> 3950 {
+      -19.0391654968 -48.9342460632 14.0147857666
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.017121 0.063478 0.997833 }
+    }
+    <Vertex> 3951 {
+      -21.6159038544 -49.1220550537 13.7725763321
+      <UV>  {
+        0.250000 0.750000
+        <Tangent> { -0.320728 -0.943927 -0.078327 }
+        <Binormal> { -0.932717 0.327044 -0.122022 }
+      }
+      <Normal> { -0.111881 0.051180 0.992370 }
+    }
+    <Vertex> 3952 {
+      -21.6159038544 -52.5587043762 13.6247692108
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.104038 -0.033845 0.993988 }
+    }
+    <Vertex> 3953 {
+      -21.6159038544 -49.1220550537 13.7725763321
+      <UV>  {
+        0.250000 0.750000
+        <Tangent> { -0.320728 -0.943927 -0.078327 }
+        <Binormal> { -0.932717 0.327044 -0.122022 }
+      }
+      <Normal> { -0.111881 0.051180 0.992370 }
+    }
+    <Vertex> 3954 {
+      -23.8694820404 -49.4036445618 13.4263725281
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.439767 -0.893242 -0.093401 }
+        <Binormal> { -0.885175 0.445820 -0.095875 }
+      }
+      <Normal> { -0.086795 0.041719 0.995331 }
+    }
+    <Vertex> 3955 {
+      -23.8694820404 -52.8403015137 13.3483409882
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.721245 -0.685245 -0.101218 }
+        <Binormal> { -0.685708 0.725969 -0.028691 }
+      }
+      <Normal> { -0.061464 -0.018616 0.997925 }
+    }
+    <Vertex> 3956 {
+      -21.6159038544 -52.5587043762 13.6247692108
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.104038 -0.033845 0.993988 }
+    }
+    <Vertex> 3957 {
+      -23.8694820404 -52.8403015137 13.3483409882
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.721245 -0.685245 -0.101218 }
+        <Binormal> { -0.685708 0.725969 -0.028691 }
+      }
+      <Normal> { -0.061464 -0.018616 0.997925 }
+    }
+    <Vertex> 3958 {
+      -23.839345932 -56.8130111694 13.2712678909
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.866460 -0.488259 -0.104160 }
+        <Binormal> { -0.484397 0.869645 -0.047053 }
+      }
+      <Normal> { -0.041993 0.030641 0.998627 }
+    }
+    <Vertex> 3959 {
+      -21.6159038544 -56.566608429 13.4926862717
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.991787 -0.085835 -0.094818 }
+        <Binormal> { -0.082056 0.995501 -0.042885 }
+      }
+      <Normal> { -0.117374 0.033082 0.992523 }
+    }
+    <Vertex> 3960 {
+      -21.6159038544 -52.5587043762 13.6247692108
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.104038 -0.033845 0.993988 }
+    }
+    <Vertex> 3961 {
+      -21.6159038544 -56.566608429 13.4926862717
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.991787 -0.085835 -0.094818 }
+        <Binormal> { -0.082056 0.995501 -0.042885 }
+      }
+      <Normal> { -0.117374 0.033082 0.992523 }
+    }
+    <Vertex> 3962 {
+      -19.0934810638 -56.4022789001 13.7249898911
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.032228 0.039033 0.998688 }
+    }
+    <Vertex> 3963 {
+      -19.0391654968 -52.3708953857 13.8546791077
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.023408 -0.034028 0.999146 }
+    }
+    <Vertex> 3964 {
+      -26.1230583191 -53.1513748169 13.3291978836
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.017185 -0.999782 0.011881 }
+        <Binormal> { -0.999529 -0.016884 0.024954 }
+      }
+      <Normal> { 0.024751 0.012146 0.999603 }
+    }
+    <Vertex> 3965 {
+      -23.8694820404 -52.8403015137 13.3483409882
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.004066 -0.999773 -0.020929 }
+        <Binormal> { -0.998088 -0.002772 -0.061526 }
+      }
+      <Normal> { -0.061464 -0.018616 0.997925 }
+    }
+    <Vertex> 3966 {
+      -23.8694820404 -49.4036445618 13.4263725281
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.000000 -0.999936 -0.011356 }
+        <Binormal> { -0.994793 0.000986 -0.086789 }
+      }
+      <Normal> { -0.086795 0.041719 0.995331 }
+    }
+    <Vertex> 3967 {
+      -26.1230583191 -49.7147216797 13.3292217255
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { 0.000000 -1.000000 -0.000007 }
+        <Binormal> { -0.998840 0.000000 -0.016205 }
+      }
+      <Normal> { -0.016205 0.044954 0.998840 }
+    }
+    <Vertex> 3968 {
+      -26.1230583191 -53.1513748169 13.3291978836
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.017185 -0.999782 0.011881 }
+        <Binormal> { -0.999529 -0.016884 0.024954 }
+      }
+      <Normal> { 0.024751 0.012146 0.999603 }
+    }
+    <Vertex> 3969 {
+      -26.1230583191 -49.7147216797 13.3292217255
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { 0.000000 -1.000000 -0.000007 }
+        <Binormal> { -0.998840 0.000000 -0.016205 }
+      }
+      <Normal> { -0.016205 0.044954 0.998840 }
+    }
+    <Vertex> 3970 {
+      -28.745721817 -50.0735054016 13.3497514725
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 -0.999960 0.008954 }
+        <Binormal> { -0.998950 0.000002 0.000275 }
+      }
+      <Normal> { 0.000275 0.054231 0.998505 }
+    }
+    <Vertex> 3971 {
+      -28.745721817 -53.5101547241 13.411324501
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.032078 -0.997846 0.057224 }
+        <Binormal> { -0.999024 -0.030503 0.028123 }
+      }
+      <Normal> { 0.026734 0.045076 0.998596 }
+    }
+    <Vertex> 3972 {
+      -26.1230583191 -53.1513748169 13.3291978836
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.017185 -0.999782 0.011881 }
+        <Binormal> { -0.999529 -0.016884 0.024954 }
+      }
+      <Normal> { 0.024751 0.012146 0.999603 }
+    }
+    <Vertex> 3973 {
+      -28.745721817 -53.5101547241 13.411324501
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.032078 -0.997846 0.057224 }
+        <Binormal> { -0.999024 -0.030503 0.028123 }
+      }
+      <Normal> { 0.026734 0.045076 0.998596 }
+    }
+    <Vertex> 3974 {
+      -28.5103988647 -57.3936233521 13.7695398331
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.045416 -0.997656 0.051177 }
+        <Binormal> { -0.926717 -0.028533 0.266169 }
+      }
+      <Normal> { 0.252113 0.322489 0.912351 }
+    }
+    <Vertex> 3975 {
+      -26.0025138855 -57.0851898193 13.3719873428
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { 0.030627 -0.999472 0.010872 }
+        <Binormal> { -0.991478 -0.029192 0.109372 }
+      }
+      <Normal> { 0.107028 0.078372 0.991150 }
+    }
+    <Vertex> 3976 {
+      -26.1230583191 -53.1513748169 13.3291978836
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.017185 -0.999782 0.011881 }
+        <Binormal> { -0.999529 -0.016884 0.024954 }
+      }
+      <Normal> { 0.024751 0.012146 0.999603 }
+    }
+    <Vertex> 3977 {
+      -26.0025138855 -57.0851898193 13.3719873428
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { 0.030627 -0.999472 0.010872 }
+        <Binormal> { -0.991478 -0.029192 0.109372 }
+      }
+      <Normal> { 0.107028 0.078372 0.991150 }
+    }
+    <Vertex> 3978 {
+      -23.839345932 -56.8130111694 13.2712678909
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.019054 -0.999809 -0.004335 }
+        <Binormal> { -0.998303 -0.018846 -0.041402 }
+      }
+      <Normal> { -0.041993 0.030641 0.998627 }
+    }
+    <Vertex> 3979 {
+      -23.8694820404 -52.8403015137 13.3483409882
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.004066 -0.999773 -0.020929 }
+        <Binormal> { -0.998088 -0.002772 -0.061526 }
+      }
+      <Normal> { -0.061464 -0.018616 0.997925 }
+    }
+    <Vertex> 3980 {
+      0.825271785259 -54.6747970581 13.4621458054
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.114876 0.993310 0.011775 }
+        <Binormal> { 0.529111 -0.071215 0.845523 }
+      }
+      <Normal> { -0.840541 0.092318 0.533769 }
+    }
+    <Vertex> 3981 {
+      1.01708161831 -51.6919631958 13.4817581177
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.075173 0.996759 0.028646 }
+        <Binormal> { 0.483919 -0.061327 0.864028 }
+      }
+      <Normal> { -0.853633 0.175085 0.490524 }
+    }
+    <Vertex> 3982 {
+      0.260279417038 -51.5365333557 12.731045723
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.634189 0.773169 0.003816 }
+        <Binormal> { 0.626848 -0.517004 0.574343 }
+      }
+      <Normal> { -0.508988 0.285104 0.812159 }
+    }
+    <Vertex> 3983 {
+      -0.0124856652692 -54.6899833679 12.9519500732
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.116074 0.992144 -0.046651 }
+        <Binormal> { 0.937089 -0.093846 0.335749 }
+      }
+      <Normal> { -0.330760 0.065371 0.941435 }
+    }
+    <Vertex> 3984 {
+      0.825271785259 -54.6747970581 13.4621458054
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.114876 0.993310 0.011775 }
+        <Binormal> { 0.529111 -0.071215 0.845523 }
+      }
+      <Normal> { -0.840541 0.092318 0.533769 }
+    }
+    <Vertex> 3985 {
+      -0.0124856652692 -54.6899833679 12.9519500732
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.116074 0.992144 -0.046651 }
+        <Binormal> { 0.937089 -0.093846 0.335749 }
+      }
+      <Normal> { -0.330760 0.065371 0.941435 }
+    }
+    <Vertex> 3986 {
+      -0.649426758289 -58.0259895325 12.9442148209
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.400644 0.905865 0.137454 }
+        <Binormal> { 0.842258 -0.421069 0.320001 }
+      }
+      <Normal> { -0.306040 0.106754 0.945982 }
+    }
+    <Vertex> 3987 {
+      0.188428789377 -58.0374794006 13.4621458054
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.197896 0.980162 0.010956 }
+        <Binormal> { 0.703336 -0.149747 0.692675 }
+      }
+      <Normal> { -0.669576 0.183844 0.719626 }
+    }
+    <Vertex> 3988 {
+      0.825271785259 -54.6747970581 13.4621458054
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.114876 0.993310 0.011775 }
+        <Binormal> { 0.529111 -0.071215 0.845523 }
+      }
+      <Normal> { -0.840541 0.092318 0.533769 }
+    }
+    <Vertex> 3989 {
+      0.188428789377 -58.0374794006 13.4621458054
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.197896 0.980162 0.010956 }
+        <Binormal> { 0.703336 -0.149747 0.692675 }
+      }
+      <Normal> { -0.669576 0.183844 0.719626 }
+    }
+    <Vertex> 3990 {
+      0.800136804581 -58.5618629456 14.3294782639
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.098905 0.993480 0.056697 }
+        <Binormal> { 0.548220 -0.101390 0.820290 }
+      }
+      <Normal> { -0.833308 -0.076693 0.547441 }
+    }
+    <Vertex> 3991 {
+      0.761274933815 -54.6630172729 14.5136833191
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.046462 0.994431 0.094597 }
+        <Binormal> { 0.066648 -0.097537 0.992598 }
+      }
+      <Normal> { -0.995025 0.067019 0.073397 }
+    }
+    <Vertex> 3992 {
+      0.825271785259 -54.6747970581 13.4621458054
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.114876 0.993310 0.011775 }
+        <Binormal> { 0.529111 -0.071215 0.845523 }
+      }
+      <Normal> { -0.840541 0.092318 0.533769 }
+    }
+    <Vertex> 3993 {
+      0.761274933815 -54.6630172729 14.5136833191
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.046462 0.994431 0.094597 }
+        <Binormal> { 0.066648 -0.097537 0.992598 }
+      }
+      <Normal> { -0.995025 0.067019 0.073397 }
+    }
+    <Vertex> 3994 {
+      1.14493978024 -51.7748260498 14.5244092941
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.093346 0.994193 0.053534 }
+        <Binormal> { 0.087764 -0.060888 0.977735 }
+      }
+      <Normal> { -0.958464 0.266060 0.102603 }
+    }
+    <Vertex> 3995 {
+      1.01708161831 -51.6919631958 13.4817581177
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.075173 0.996759 0.028646 }
+        <Binormal> { 0.483919 -0.061327 0.864028 }
+      }
+      <Normal> { -0.853633 0.175085 0.490524 }
+    }
+    <Vertex> 3996 {
+      9.40822887421 -45.6209449768 12.3301124573
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.998647 -0.019317 -0.048283 }
+        <Binormal> { 0.051938 0.416419 0.907645 }
+      }
+      <Normal> { -0.007752 0.909024 -0.416608 }
+    }
+    <Vertex> 3997 {
+      12.5250453949 -46.0623397827 11.9190769196
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.996126 -0.042611 0.076927 }
+        <Binormal> { -0.070243 0.139022 0.986584 }
+      }
+      <Normal> { 0.004364 0.990234 -0.139225 }
+    }
+    <Vertex> 3998 {
+      12.5138368607 -45.9000854492 10.5322751999
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.993268 0.044809 0.106820 }
+        <Binormal> { -0.104511 -0.045708 0.990968 }
+      }
+      <Normal> { -0.119144 0.992309 0.033204 }
+    }
+    <Vertex> 3999 {
+      9.57927322388 -46.501750946 10.7104196548
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.966084 0.258153 0.006168 }
+        <Binormal> { -0.080599 0.278792 0.955606 }
+      }
+      <Normal> { -0.196509 0.936644 -0.289834 }
+    }
+    <Vertex> 4000 {
+      9.40822887421 -45.6209449768 12.3301124573
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.998647 -0.019317 -0.048283 }
+        <Binormal> { 0.051938 0.416419 0.907645 }
+      }
+      <Normal> { -0.007752 0.909024 -0.416608 }
+    }
+    <Vertex> 4001 {
+      9.57927322388 -46.501750946 10.7104196548
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.966084 0.258153 0.006168 }
+        <Binormal> { -0.080599 0.278792 0.955606 }
+      }
+      <Normal> { -0.196509 0.936644 -0.289834 }
+    }
+    <Vertex> 4002 {
+      6.70784902573 -47.0221824646 11.24629879
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.986399 0.149586 -0.068122 }
+        <Binormal> { -0.007510 0.454981 0.890327 }
+      }
+      <Normal> { -0.177618 0.875668 -0.448988 }
+    }
+    <Vertex> 4003 {
+      6.58253288269 -45.3662872314 12.9538946152
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.996895 0.023819 -0.075060 }
+        <Binormal> { 0.050609 0.521345 0.837604 }
+      }
+      <Normal> { -0.213660 0.835109 -0.506882 }
+    }
+    <Vertex> 4004 {
+      9.40822887421 -45.6209449768 12.3301124573
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.998647 -0.019317 -0.048283 }
+        <Binormal> { 0.051938 0.416419 0.907645 }
+      }
+      <Normal> { -0.007752 0.909024 -0.416608 }
+    }
+    <Vertex> 4005 {
+      6.58253288269 -45.3662872314 12.9538946152
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.996895 0.023819 -0.075060 }
+        <Binormal> { 0.050609 0.521345 0.837604 }
+      }
+      <Normal> { -0.213660 0.835109 -0.506882 }
+    }
+    <Vertex> 4006 {
+      6.77663993835 -44.2396659851 14.7889242172
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.992891 -0.070774 -0.095698 }
+        <Binormal> { 0.089994 -0.025630 0.952667 }
+      }
+      <Normal> { -0.217261 0.974975 0.046754 }
+    }
+    <Vertex> 4007 {
+      9.54758071899 -44.8330535889 14.0436153412
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.975492 -0.198594 -0.094735 }
+        <Binormal> { 0.122826 0.135422 0.980855 }
+      }
+      <Normal> { 0.116947 0.981689 -0.150182 }
+    }
+    <Vertex> 4008 {
+      9.40822887421 -45.6209449768 12.3301124573
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.998647 -0.019317 -0.048283 }
+        <Binormal> { 0.051938 0.416419 0.907645 }
+      }
+      <Normal> { -0.007752 0.909024 -0.416608 }
+    }
+    <Vertex> 4009 {
+      9.54758071899 -44.8330535889 14.0436153412
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.975492 -0.198594 -0.094735 }
+        <Binormal> { 0.122826 0.135422 0.980855 }
+      }
+      <Normal> { 0.116947 0.981689 -0.150182 }
+    }
+    <Vertex> 4010 {
+      12.7955036163 -45.8432769775 13.4040660858
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.996255 -0.062401 0.059856 }
+        <Binormal> { -0.041655 0.260130 0.964500 }
+      }
+      <Normal> { 0.057772 0.964507 -0.257637 }
+    }
+    <Vertex> 4011 {
+      12.5250453949 -46.0623397827 11.9190769196
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.996126 -0.042611 0.076927 }
+        <Binormal> { -0.070243 0.139022 0.986584 }
+      }
+      <Normal> { 0.004364 0.990234 -0.139225 }
+    }
+    <Vertex> 4012 {
+      15.6526613235 -45.9170722961 12.1665039063
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.977024 -0.036751 0.209939 }
+        <Binormal> { -0.213082 -0.152889 0.964890 }
+      }
+      <Normal> { -0.008881 0.987915 0.154576 }
+    }
+    <Vertex> 4013 {
+      18.7856750488 -45.4784736633 12.7431602478
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.965364 0.073762 0.250265 }
+        <Binormal> { -0.214552 -0.293311 0.914054 }
+      }
+      <Normal> { 0.032991 0.949370 0.312387 }
+    }
+    <Vertex> 4014 {
+      18.3363170624 -45.7827606201 11.505692482
+      <UV>  {
+        -0.042124 0.762705
+        <Tangent> { 0.961103 0.064367 0.268586 }
+        <Binormal> { -0.263847 -0.065981 0.959957 }
+      }
+      <Normal> { -0.015015 0.997803 0.064455 }
+    }
+    <Vertex> 4015 {
+      15.4297418594 -45.7328224182 10.886013031
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.968780 0.006484 0.247836 }
+        <Binormal> { -0.244870 -0.131149 0.960617 }
+      }
+      <Normal> { -0.045076 0.991272 0.123844 }
+    }
+    <Vertex> 4016 {
+      15.6526613235 -45.9170722961 12.1665039063
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.977024 -0.036751 0.209939 }
+        <Binormal> { -0.213082 -0.152889 0.964890 }
+      }
+      <Normal> { -0.008881 0.987915 0.154576 }
+    }
+    <Vertex> 4017 {
+      15.4297418594 -45.7328224182 10.886013031
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.968780 0.006484 0.247836 }
+        <Binormal> { -0.244870 -0.131149 0.960617 }
+      }
+      <Normal> { -0.045076 0.991272 0.123844 }
+    }
+    <Vertex> 4018 {
+      12.5138368607 -45.9000854492 10.5322751999
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.993268 0.044809 0.106820 }
+        <Binormal> { -0.104511 -0.045708 0.990968 }
+      }
+      <Normal> { -0.119144 0.992309 0.033204 }
+    }
+    <Vertex> 4019 {
+      12.5250453949 -46.0623397827 11.9190769196
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.996126 -0.042611 0.076927 }
+        <Binormal> { -0.070243 0.139022 0.986584 }
+      }
+      <Normal> { 0.004364 0.990234 -0.139225 }
+    }
+    <Vertex> 4020 {
+      15.6526613235 -45.9170722961 12.1665039063
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.977024 -0.036751 0.209939 }
+        <Binormal> { -0.213082 -0.152889 0.964890 }
+      }
+      <Normal> { -0.008881 0.987915 0.154576 }
+    }
+    <Vertex> 4021 {
+      12.5250453949 -46.0623397827 11.9190769196
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.996126 -0.042611 0.076927 }
+        <Binormal> { -0.070243 0.139022 0.986584 }
+      }
+      <Normal> { 0.004364 0.990234 -0.139225 }
+    }
+    <Vertex> 4022 {
+      12.7955036163 -45.8432769775 13.4040660858
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.996255 -0.062401 0.059856 }
+        <Binormal> { -0.041655 0.260130 0.964500 }
+      }
+      <Normal> { 0.057772 0.964507 -0.257637 }
+    }
+    <Vertex> 4023 {
+      16.0870494843 -45.7308197021 13.5851392746
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.947982 -0.276335 0.158017 }
+        <Binormal> { -0.131070 0.111263 0.980892 }
+      }
+      <Normal> { 0.202643 0.975646 -0.083590 }
+    }
+    <Vertex> 4024 {
+      15.6526613235 -45.9170722961 12.1665039063
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.977024 -0.036751 0.209939 }
+        <Binormal> { -0.213082 -0.152889 0.964890 }
+      }
+      <Normal> { -0.008881 0.987915 0.154576 }
+    }
+    <Vertex> 4025 {
+      16.0870494843 -45.7308197021 13.5851392746
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.947982 -0.276335 0.158017 }
+        <Binormal> { -0.131070 0.111263 0.980892 }
+      }
+      <Normal> { 0.202643 0.975646 -0.083590 }
+    }
+    <Vertex> 4026 {
+      18.5573348999 -47.6548233032 13.7965936661
+      <UV>  {
+        -0.073782 0.891829
+        <Tangent> { 0.925445 -0.312236 0.214618 }
+        <Binormal> { -0.097020 0.280633 0.826635 }
+      }
+      <Normal> { 0.760674 0.636586 -0.126835 }
+    }
+    <Vertex> 4027 {
+      18.7856750488 -45.4784736633 12.7431602478
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.965364 0.073762 0.250265 }
+        <Binormal> { -0.214552 -0.293311 0.914054 }
+      }
+      <Normal> { 0.032991 0.949370 0.312387 }
+    }
+    <Vertex> 4028 {
+      4.32828092575 -46.0717697144 13.344707489
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.884596 0.446097 -0.135967 }
+        <Binormal> { 0.040873 0.216014 0.974640 }
+      }
+      <Normal> { -0.500259 0.849513 -0.167302 }
+    }
+    <Vertex> 4029 {
+      6.58253288269 -45.3662872314 12.9538946152
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.941555 0.294666 -0.163235 }
+        <Binormal> { -0.013042 0.512134 0.849259 }
+      }
+      <Normal> { -0.213660 0.835109 -0.506882 }
+    }
+    <Vertex> 4030 {
+      6.70784902573 -47.0221824646 11.24629879
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.968711 0.122344 -0.215941 }
+        <Binormal> { 0.134162 0.473295 0.869999 }
+      }
+      <Normal> { -0.177618 0.875668 -0.448988 }
+    }
+    <Vertex> 4031 {
+      3.98136568069 -46.9457435608 11.9657716751
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.963356 0.049047 -0.263705 }
+        <Binormal> { 0.236002 0.305571 0.918986 }
+      }
+      <Normal> { -0.202521 0.943632 -0.261757 }
+    }
+    <Vertex> 4032 {
+      4.32828092575 -46.0717697144 13.344707489
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.884596 0.446097 -0.135967 }
+        <Binormal> { 0.040873 0.216014 0.974640 }
+      }
+      <Normal> { -0.500259 0.849513 -0.167302 }
+    }
+    <Vertex> 4033 {
+      3.98136568069 -46.9457435608 11.9657716751
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.963356 0.049047 -0.263705 }
+        <Binormal> { 0.236002 0.305571 0.918986 }
+      }
+      <Normal> { -0.202521 0.943632 -0.261757 }
+    }
+    <Vertex> 4034 {
+      1.91012883186 -47.2664451599 12.5596075058
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.892101 0.411744 -0.186074 }
+        <Binormal> { 0.222305 -0.052993 0.948540 }
+      }
+      <Normal> { -0.576128 0.797357 0.179571 }
+    }
+    <Vertex> 4035 {
+      2.66007328033 -47.4769859314 13.5308437347
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.762049 0.641913 -0.085028 }
+        <Binormal> { 0.304836 -0.241311 0.910276 }
+      }
+      <Normal> { -0.672018 0.628437 0.391644 }
+    }
+    <Vertex> 4036 {
+      4.32828092575 -46.0717697144 13.344707489
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.884596 0.446097 -0.135967 }
+        <Binormal> { 0.040873 0.216014 0.974640 }
+      }
+      <Normal> { -0.500259 0.849513 -0.167302 }
+    }
+    <Vertex> 4037 {
+      2.66007328033 -47.4769859314 13.5308437347
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.762049 0.641913 -0.085028 }
+        <Binormal> { 0.304836 -0.241311 0.910276 }
+      }
+      <Normal> { -0.672018 0.628437 0.391644 }
+    }
+    <Vertex> 4038 {
+      3.52629995346 -47.7887382507 14.7645540237
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.648294 0.761371 -0.005418 }
+        <Binormal> { 0.286533 -0.237387 0.926130 }
+      }
+      <Normal> { -0.743584 0.555284 0.372387 }
+    }
+    <Vertex> 4039 {
+      4.9160399437 -45.6026344299 14.9251327515
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.675380 0.737453 0.005064 }
+        <Binormal> { 0.188106 -0.178865 0.960069 }
+      }
+      <Normal> { -0.638569 0.724265 0.260048 }
+    }
+    <Vertex> 4040 {
+      4.32828092575 -46.0717697144 13.344707489
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.884596 0.446097 -0.135967 }
+        <Binormal> { 0.040873 0.216014 0.974640 }
+      }
+      <Normal> { -0.500259 0.849513 -0.167302 }
+    }
+    <Vertex> 4041 {
+      4.9160399437 -45.6026344299 14.9251327515
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.675380 0.737453 0.005064 }
+        <Binormal> { 0.188106 -0.178865 0.960069 }
+      }
+      <Normal> { -0.638569 0.724265 0.260048 }
+    }
+    <Vertex> 4042 {
+      6.77663993835 -44.2396659851 14.7889242172
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.887674 0.446216 -0.113691 }
+        <Binormal> { 0.131709 -0.016802 0.962406 }
+      }
+      <Normal> { -0.217261 0.974975 0.046754 }
+    }
+    <Vertex> 4043 {
+      6.58253288269 -45.3662872314 12.9538946152
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.941555 0.294666 -0.163235 }
+        <Binormal> { -0.013042 0.512134 0.849259 }
+      }
+      <Normal> { -0.213660 0.835109 -0.506882 }
+    }
+    <Vertex> 4044 {
+      1.59251117706 -49.3215408325 13.540594101
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.401585 0.915776 0.009159 }
+        <Binormal> { 0.511380 -0.232523 0.827195 }
+      }
+      <Normal> { -0.755364 0.337291 0.561785 }
+    }
+    <Vertex> 4045 {
+      2.66007328033 -47.4769859314 13.5308437347
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.500912 0.865486 -0.004575 }
+        <Binormal> { 0.341837 -0.193105 0.896414 }
+      }
+      <Normal> { -0.672018 0.628437 0.391644 }
+    }
+    <Vertex> 4046 {
+      1.91012883186 -47.2664451599 12.5596075058
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.484748 0.873671 -0.041449 }
+        <Binormal> { 0.189935 -0.063167 0.889864 }
+      }
+      <Normal> { -0.576128 0.797357 0.179571 }
+    }
+    <Vertex> 4047 {
+      1.0044438839 -48.978313446 12.718580246
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.360155 0.932142 -0.037424 }
+        <Binormal> { 0.485343 -0.153019 0.859428 }
+      }
+      <Normal> { -0.777795 0.373211 0.505692 }
+    }
+    <Vertex> 4048 {
+      1.59251117706 -49.3215408325 13.540594101
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.401585 0.915776 0.009159 }
+        <Binormal> { 0.511380 -0.232523 0.827195 }
+      }
+      <Normal> { -0.755364 0.337291 0.561785 }
+    }
+    <Vertex> 4049 {
+      1.0044438839 -48.978313446 12.718580246
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.360155 0.932142 -0.037424 }
+        <Binormal> { 0.485343 -0.153019 0.859428 }
+      }
+      <Normal> { -0.777795 0.373211 0.505692 }
+    }
+    <Vertex> 4050 {
+      0.260279417038 -51.5365333557 12.731045723
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.258620 0.965936 0.009088 }
+        <Binormal> { 0.781903 -0.214666 0.565383 }
+      }
+      <Normal> { -0.508988 0.285104 0.812159 }
+    }
+    <Vertex> 4051 {
+      1.01708161831 -51.6919631958 13.4817581177
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.235834 0.971494 0.024113 }
+        <Binormal> { 0.472319 -0.136266 0.870591 }
+      }
+      <Normal> { -0.853633 0.175085 0.490524 }
+    }
+    <Vertex> 4052 {
+      1.59251117706 -49.3215408325 13.540594101
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.401585 0.915776 0.009159 }
+        <Binormal> { 0.511380 -0.232523 0.827195 }
+      }
+      <Normal> { -0.755364 0.337291 0.561785 }
+    }
+    <Vertex> 4053 {
+      1.01708161831 -51.6919631958 13.4817581177
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.235834 0.971494 0.024113 }
+        <Binormal> { 0.472319 -0.136266 0.870591 }
+      }
+      <Normal> { -0.853633 0.175085 0.490524 }
+    }
+    <Vertex> 4054 {
+      1.14493978024 -51.7748260498 14.5244092941
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.335836 0.941365 0.032342 }
+        <Binormal> { 0.087982 -0.065456 0.991618 }
+      }
+      <Normal> { -0.958464 0.266060 0.102603 }
+    }
+    <Vertex> 4055 {
+      2.16794085503 -49.6647644043 14.6195068359
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.512180 0.857323 0.051650 }
+        <Binormal> { 0.237368 -0.199086 0.950739 }
+      }
+      <Normal> { -0.829096 0.468459 0.305094 }
+    }
+    <Vertex> 4056 {
+      1.59251117706 -49.3215408325 13.540594101
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.401585 0.915776 0.009159 }
+        <Binormal> { 0.511380 -0.232523 0.827195 }
+      }
+      <Normal> { -0.755364 0.337291 0.561785 }
+    }
+    <Vertex> 4057 {
+      2.16794085503 -49.6647644043 14.6195068359
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.512180 0.857323 0.051650 }
+        <Binormal> { 0.237368 -0.199086 0.950739 }
+      }
+      <Normal> { -0.829096 0.468459 0.305094 }
+    }
+    <Vertex> 4058 {
+      3.52629995346 -47.7887382507 14.7645540237
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.545929 0.837278 0.030447 }
+        <Binormal> { 0.294885 -0.225937 0.925732 }
+      }
+      <Normal> { -0.743584 0.555284 0.372387 }
+    }
+    <Vertex> 4059 {
+      2.66007328033 -47.4769859314 13.5308437347
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.500912 0.865486 -0.004575 }
+        <Binormal> { 0.341837 -0.193105 0.896414 }
+      }
+      <Normal> { -0.672018 0.628437 0.391644 }
+    }
+    <Vertex> 4060 {
+      9.74948215485 -45.0970916748 15.7691421509
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.996334 0.051422 -0.068365 }
+        <Binormal> { 0.073624 -0.108525 0.991336 }
+      }
+      <Normal> { -0.041749 0.992828 0.111789 }
+    }
+    <Vertex> 4061 {
+      12.9565048218 -45.0920372009 15.1419229507
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.995951 0.081693 0.037516 }
+        <Binormal> { -0.059594 0.287811 0.955346 }
+      }
+      <Normal> { -0.037233 0.956175 -0.290384 }
+    }
+    <Vertex> 4062 {
+      12.7955036163 -45.8432769775 13.4040660858
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.999229 -0.016708 0.035536 }
+        <Binormal> { -0.029970 0.259492 0.964728 }
+      }
+      <Normal> { 0.057772 0.964507 -0.257637 }
+    }
+    <Vertex> 4063 {
+      9.54758071899 -44.8330535889 14.0436153412
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.958310 -0.270599 -0.091753 }
+        <Binormal> { 0.130711 0.133190 0.972408 }
+      }
+      <Normal> { 0.116947 0.981689 -0.150182 }
+    }
+    <Vertex> 4064 {
+      9.74948215485 -45.0970916748 15.7691421509
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.996334 0.051422 -0.068365 }
+        <Binormal> { 0.073624 -0.108525 0.991336 }
+      }
+      <Normal> { -0.041749 0.992828 0.111789 }
+    }
+    <Vertex> 4065 {
+      9.54758071899 -44.8330535889 14.0436153412
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.958310 -0.270599 -0.091753 }
+        <Binormal> { 0.130711 0.133190 0.972408 }
+      }
+      <Normal> { 0.116947 0.981689 -0.150182 }
+    }
+    <Vertex> 4066 {
+      6.77663993835 -44.2396659851 14.7889242172
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.987850 -0.105352 -0.114249 }
+        <Binormal> { 0.106464 -0.021364 0.940240 }
+      }
+      <Normal> { -0.217261 0.974975 0.046754 }
+    }
+    <Vertex> 4067 {
+      7.07451963425 -45.4356269836 16.452299118
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.994654 0.020223 -0.101268 }
+        <Binormal> { 0.095771 -0.442349 0.852326 }
+      }
+      <Normal> { -0.233100 0.852168 0.468459 }
+    }
+    <Vertex> 4068 {
+      9.74948215485 -45.0970916748 15.7691421509
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.996334 0.051422 -0.068365 }
+        <Binormal> { 0.073624 -0.108525 0.991336 }
+      }
+      <Normal> { -0.041749 0.992828 0.111789 }
+    }
+    <Vertex> 4069 {
+      7.07451963425 -45.4356269836 16.452299118
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.994654 0.020223 -0.101268 }
+        <Binormal> { 0.095771 -0.442349 0.852326 }
+      }
+      <Normal> { -0.233100 0.852168 0.468459 }
+    }
+    <Vertex> 4070 {
+      7.37030935287 -46.6802444458 18.2744445801
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.966028 0.252569 -0.054756 }
+        <Binormal> { 0.068593 -0.049727 0.980773 }
+      }
+      <Normal> { -0.414747 0.906827 0.074984 }
+    }
+    <Vertex> 4071 {
+      9.92436504364 -45.2900428772 17.769361496
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.919205 0.393425 -0.016728 }
+        <Binormal> { -0.027368 0.106129 0.992187 }
+      }
+      <Normal> { -0.337382 0.934996 -0.109317 }
+    }
+    <Vertex> 4072 {
+      9.74948215485 -45.0970916748 15.7691421509
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.996334 0.051422 -0.068365 }
+        <Binormal> { 0.073624 -0.108525 0.991336 }
+      }
+      <Normal> { -0.041749 0.992828 0.111789 }
+    }
+    <Vertex> 4073 {
+      9.92436504364 -45.2900428772 17.769361496
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.919205 0.393425 -0.016728 }
+        <Binormal> { -0.027368 0.106129 0.992187 }
+      }
+      <Normal> { -0.337382 0.934996 -0.109317 }
+    }
+    <Vertex> 4074 {
+      13.0025978088 -44.145488739 17.2435398102
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.988883 0.142706 0.041778 }
+        <Binormal> { -0.079422 0.269431 0.959577 }
+      }
+      <Normal> { -0.142521 0.949797 -0.278481 }
+    }
+    <Vertex> 4075 {
+      12.9565048218 -45.0920372009 15.1419229507
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.995951 0.081693 0.037516 }
+        <Binormal> { -0.059594 0.287811 0.955346 }
+      }
+      <Normal> { -0.037233 0.956175 -0.290384 }
+    }
+    <Vertex> 4076 {
+      16.359790802 -44.9299697876 15.1557321548
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.949994 -0.266312 0.163061 }
+        <Binormal> { -0.022770 0.461691 0.886699 }
+      }
+      <Normal> { 0.306986 0.847316 -0.433302 }
+    }
+    <Vertex> 4077 {
+      18.6675643921 -47.174282074 15.4197187424
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.740955 -0.642195 0.196396 }
+        <Binormal> { 0.271028 0.543395 0.754320 }
+      }
+      <Normal> { 0.775964 0.345500 -0.527696 }
+    }
+    <Vertex> 4078 {
+      18.5573348999 -47.6548233032 13.7965936661
+      <UV>  {
+        -0.042124 0.762705
+        <Tangent> { 0.767067 -0.615386 0.181404 }
+        <Binormal> { -0.037426 0.235280 0.956412 }
+      }
+      <Normal> { 0.760674 0.636586 -0.126835 }
+    }
+    <Vertex> 4079 {
+      16.0870494843 -45.7308197021 13.5851392746
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.955588 -0.239628 0.171555 }
+        <Binormal> { -0.147347 0.114642 0.980874 }
+      }
+      <Normal> { 0.202643 0.975646 -0.083590 }
+    }
+    <Vertex> 4080 {
+      16.359790802 -44.9299697876 15.1557321548
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.949994 -0.266312 0.163061 }
+        <Binormal> { -0.022770 0.461691 0.886699 }
+      }
+      <Normal> { 0.306986 0.847316 -0.433302 }
+    }
+    <Vertex> 4081 {
+      16.0870494843 -45.7308197021 13.5851392746
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.955588 -0.239628 0.171555 }
+        <Binormal> { -0.147347 0.114642 0.980874 }
+      }
+      <Normal> { 0.202643 0.975646 -0.083590 }
+    }
+    <Vertex> 4082 {
+      12.7955036163 -45.8432769775 13.4040660858
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.999229 -0.016708 0.035536 }
+        <Binormal> { -0.029970 0.259492 0.964728 }
+      }
+      <Normal> { 0.057772 0.964507 -0.257637 }
+    }
+    <Vertex> 4083 {
+      12.9565048218 -45.0920372009 15.1419229507
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.995951 0.081693 0.037516 }
+        <Binormal> { -0.059594 0.287811 0.955346 }
+      }
+      <Normal> { -0.037233 0.956175 -0.290384 }
+    }
+    <Vertex> 4084 {
+      16.359790802 -44.9299697876 15.1557321548
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.949994 -0.266312 0.163061 }
+        <Binormal> { -0.022770 0.461691 0.886699 }
+      }
+      <Normal> { 0.306986 0.847316 -0.433302 }
+    }
+    <Vertex> 4085 {
+      12.9565048218 -45.0920372009 15.1419229507
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.995951 0.081693 0.037516 }
+        <Binormal> { -0.059594 0.287811 0.955346 }
+      }
+      <Normal> { -0.037233 0.956175 -0.290384 }
+    }
+    <Vertex> 4086 {
+      13.0025978088 -44.145488739 17.2435398102
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.988883 0.142706 0.041778 }
+        <Binormal> { -0.079422 0.269431 0.959577 }
+      }
+      <Normal> { -0.142521 0.949797 -0.278481 }
+    }
+    <Vertex> 4087 {
+      16.3692874908 -44.0825653076 17.0995540619
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.957885 -0.252221 0.137260 }
+        <Binormal> { -0.045387 0.338986 0.939642 }
+      }
+      <Normal> { 0.292184 0.904019 -0.312021 }
+    }
+    <Vertex> 4088 {
+      16.359790802 -44.9299697876 15.1557321548
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.949994 -0.266312 0.163061 }
+        <Binormal> { -0.022770 0.461691 0.886699 }
+      }
+      <Normal> { 0.306986 0.847316 -0.433302 }
+    }
+    <Vertex> 4089 {
+      16.3692874908 -44.0825653076 17.0995540619
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.957885 -0.252221 0.137260 }
+        <Binormal> { -0.045387 0.338986 0.939642 }
+      }
+      <Normal> { 0.292184 0.904019 -0.312021 }
+    }
+    <Vertex> 4090 {
+      19.5960426331 -46.2401428223 17.3689231873
+      <UV>  {
+        -0.073782 0.891829
+        <Tangent> { 0.803446 -0.564299 0.189844 }
+        <Binormal> { 0.115567 0.446207 0.837229 }
+      }
+      <Normal> { 0.793512 0.484725 -0.367870 }
+    }
+    <Vertex> 4091 {
+      18.6675643921 -47.174282074 15.4197187424
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.740955 -0.642195 0.196396 }
+        <Binormal> { 0.271028 0.543395 0.754320 }
+      }
+      <Normal> { 0.775964 0.345500 -0.527696 }
+    }
+    <Vertex> 4092 {
+      5.26741075516 -46.5981178284 16.606300354
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.778967 0.626848 -0.016501 }
+        <Binormal> { 0.281632 -0.326225 0.902296 }
+      }
+      <Normal> { -0.553880 0.712607 0.430525 }
+    }
+    <Vertex> 4093 {
+      7.07451963425 -45.4356269836 16.452299118
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.838862 0.539630 -0.071488 }
+        <Binormal> { 0.313714 -0.376309 0.840640 }
+      }
+      <Normal> { -0.233100 0.852168 0.468459 }
+    }
+    <Vertex> 4094 {
+      6.77663993835 -44.2396659851 14.7889242172
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.821888 0.565924 -0.065032 }
+        <Binormal> { 0.089864 -0.024298 0.924274 }
+      }
+      <Normal> { -0.217261 0.974975 0.046754 }
+    }
+    <Vertex> 4095 {
+      4.9160399437 -45.6026344299 14.9251327515
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.675380 0.737453 0.005064 }
+        <Binormal> { 0.188106 -0.178865 0.960069 }
+      }
+      <Normal> { -0.638569 0.724265 0.260048 }
+    }
+    <Vertex> 4096 {
+      5.26741075516 -46.5981178284 16.606300354
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.778967 0.626848 -0.016501 }
+        <Binormal> { 0.281632 -0.326225 0.902296 }
+      }
+      <Normal> { -0.553880 0.712607 0.430525 }
+    }
+    <Vertex> 4097 {
+      4.9160399437 -45.6026344299 14.9251327515
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.675380 0.737453 0.005064 }
+        <Binormal> { 0.188106 -0.178865 0.960069 }
+      }
+      <Normal> { -0.638569 0.724265 0.260048 }
+    }
+    <Vertex> 4098 {
+      3.52629995346 -47.7887382507 14.7645540237
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.595755 0.800916 0.060088 }
+        <Binormal> { 0.264884 -0.266532 0.926361 }
+      }
+      <Normal> { -0.743584 0.555284 0.372387 }
+    }
+    <Vertex> 4099 {
+      3.85390496254 -48.1806182861 16.4841423035
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.665061 0.744574 0.057476 }
+        <Binormal> { 0.116268 -0.179201 0.976113 }
+      }
+      <Normal> { -0.711234 0.671438 0.207984 }
+    }
+    <Vertex> 4100 {
+      5.26741075516 -46.5981178284 16.606300354
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.778967 0.626848 -0.016501 }
+        <Binormal> { 0.281632 -0.326225 0.902296 }
+      }
+      <Normal> { -0.553880 0.712607 0.430525 }
+    }
+    <Vertex> 4101 {
+      3.85390496254 -48.1806182861 16.4841423035
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.665061 0.744574 0.057476 }
+        <Binormal> { 0.116268 -0.179201 0.976113 }
+      }
+      <Normal> { -0.711234 0.671438 0.207984 }
+    }
+    <Vertex> 4102 {
+      4.23078632355 -47.966583252 18.5069332123
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.800000 0.599943 -0.008282 }
+        <Binormal> { -0.061620 0.095867 0.992369 }
+      }
+      <Normal> { -0.558916 0.821314 -0.114048 }
+    }
+    <Vertex> 4103 {
+      5.57615709305 -47.4801216125 18.356212616
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.923177 0.378248 -0.068363 }
+        <Binormal> { 0.064659 0.022009 0.994928 }
+      }
+      <Normal> { -0.445998 0.894986 0.009186 }
+    }
+    <Vertex> 4104 {
+      5.26741075516 -46.5981178284 16.606300354
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.778967 0.626848 -0.016501 }
+        <Binormal> { 0.281632 -0.326225 0.902296 }
+      }
+      <Normal> { -0.553880 0.712607 0.430525 }
+    }
+    <Vertex> 4105 {
+      5.57615709305 -47.4801216125 18.356212616
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.923177 0.378248 -0.068363 }
+        <Binormal> { 0.064659 0.022009 0.994928 }
+      }
+      <Normal> { -0.445998 0.894986 0.009186 }
+    }
+    <Vertex> 4106 {
+      7.37030935287 -46.6802444458 18.2744445801
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.876649 0.477696 -0.057393 }
+        <Binormal> { 0.087865 -0.041931 0.993091 }
+      }
+      <Normal> { -0.414747 0.906827 0.074984 }
+    }
+    <Vertex> 4107 {
+      7.07451963425 -45.4356269836 16.452299118
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.838862 0.539630 -0.071488 }
+        <Binormal> { 0.313714 -0.376309 0.840640 }
+      }
+      <Normal> { -0.233100 0.852168 0.468459 }
+    }
+    <Vertex> 4108 {
+      2.35975050926 -49.7791748047 16.3388271332
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.582755 0.812520 0.014420 }
+        <Binormal> { 0.036382 -0.043808 0.998133 }
+      }
+      <Normal> { -0.799493 0.598071 0.055391 }
+    }
+    <Vertex> 4109 {
+      3.85390496254 -48.1806182861 16.4841423035
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.681347 0.728955 0.066265 }
+        <Binormal> { 0.107118 -0.188839 0.975939 }
+      }
+      <Normal> { -0.711234 0.671438 0.207984 }
+    }
+    <Vertex> 4110 {
+      3.52629995346 -47.7887382507 14.7645540237
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.633206 0.771294 0.064455 }
+        <Binormal> { 0.251429 -0.283726 0.925131 }
+      }
+      <Normal> { -0.743584 0.555284 0.372387 }
+    }
+    <Vertex> 4111 {
+      2.16794085503 -49.6647644043 14.6195068359
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.512180 0.857323 0.051650 }
+        <Binormal> { 0.237368 -0.199086 0.950739 }
+      }
+      <Normal> { -0.829096 0.468459 0.305094 }
+    }
+    <Vertex> 4112 {
+      2.35975050926 -49.7791748047 16.3388271332
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.582755 0.812520 0.014420 }
+        <Binormal> { 0.036382 -0.043808 0.998133 }
+      }
+      <Normal> { -0.799493 0.598071 0.055391 }
+    }
+    <Vertex> 4113 {
+      2.16794085503 -49.6647644043 14.6195068359
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.512180 0.857323 0.051650 }
+        <Binormal> { 0.237368 -0.199086 0.950739 }
+      }
+      <Normal> { -0.829096 0.468459 0.305094 }
+    }
+    <Vertex> 4114 {
+      1.14493978024 -51.7748260498 14.5244092941
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.321376 0.946890 0.010821 }
+        <Binormal> { 0.094275 -0.043346 0.993066 }
+      }
+      <Normal> { -0.958464 0.266060 0.102603 }
+    }
+    <Vertex> 4115 {
+      1.14489448071 -51.794593811 16.2526168823
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { 0.346409 0.938064 0.006009 }
+        <Binormal> { -0.024597 0.002681 0.999418 }
+      }
+      <Normal> { -0.929624 0.367687 -0.023865 }
+    }
+    <Vertex> 4116 {
+      2.35975050926 -49.7791748047 16.3388271332
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.582755 0.812520 0.014420 }
+        <Binormal> { 0.036382 -0.043808 0.998133 }
+      }
+      <Normal> { -0.799493 0.598071 0.055391 }
+    }
+    <Vertex> 4117 {
+      1.14489448071 -51.794593811 16.2526168823
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { 0.346409 0.938064 0.006009 }
+        <Binormal> { -0.024597 0.002681 0.999418 }
+      }
+      <Normal> { -0.929624 0.367687 -0.023865 }
+    }
+    <Vertex> 4118 {
+      1.32257354259 -51.0387268066 19.057466507
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.372189 0.928118 -0.008529 }
+        <Binormal> { -0.053408 0.030531 0.991739 }
+      }
+      <Normal> { -0.878842 0.473067 -0.061892 }
+    }
+    <Vertex> 4119 {
+      2.75535011292 -49.244228363 18.3163547516
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.681717 0.720144 -0.129051 }
+        <Binormal> { 0.013669 0.163819 0.986366 }
+      }
+      <Normal> { -0.732566 0.673025 -0.101627 }
+    }
+    <Vertex> 4120 {
+      2.35975050926 -49.7791748047 16.3388271332
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.582755 0.812520 0.014420 }
+        <Binormal> { 0.036382 -0.043808 0.998133 }
+      }
+      <Normal> { -0.799493 0.598071 0.055391 }
+    }
+    <Vertex> 4121 {
+      2.75535011292 -49.244228363 18.3163547516
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.681717 0.720144 -0.129051 }
+        <Binormal> { 0.013669 0.163819 0.986366 }
+      }
+      <Normal> { -0.732566 0.673025 -0.101627 }
+    }
+    <Vertex> 4122 {
+      4.23078632355 -47.966583252 18.5069332123
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.715952 0.693437 0.080982 }
+        <Binormal> { -0.145597 0.036390 0.975595 }
+      }
+      <Normal> { -0.558916 0.821314 -0.114048 }
+    }
+    <Vertex> 4123 {
+      3.85390496254 -48.1806182861 16.4841423035
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.681347 0.728955 0.066265 }
+        <Binormal> { 0.107118 -0.188839 0.975939 }
+      }
+      <Normal> { -0.711234 0.671438 0.207984 }
+    }
+    <Vertex> 4124 {
+      -7.09057235718 -49.8655738831 16.8018665314
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.051210 -0.793418 -0.606519 }
+        <Binormal> { -0.790829 -0.402996 0.460408 }
+      }
+      <Normal> { 0.609149 -0.447218 0.654866 }
+    }
+    <Vertex> 4125 {
+      -6.29688167572 -49.0263748169 16.3792533875
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.096158 -0.809266 -0.579519 }
+        <Binormal> { -0.500182 -0.542439 0.674491 }
+      }
+      <Normal> { 0.857906 -0.205725 0.470748 }
+    }
+    <Vertex> 4126 {
+      -6.90795135498 -46.8801879883 18.4110374451
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.037317 -0.879570 -0.474303 }
+        <Binormal> { -0.253950 -0.392919 0.748627 }
+      }
+      <Normal> { 0.862362 0.264779 0.431501 }
+    }
+    <Vertex> 4127 {
+      -7.63492012024 -49.1231956482 18.0081825256
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.088119 -0.713051 -0.695552 }
+        <Binormal> { -0.758253 -0.500820 0.417357 }
+      }
+      <Normal> { 0.645528 -0.487259 0.588092 }
+    }
+    <Vertex> 4128 {
+      -7.09057235718 -49.8655738831 16.8018665314
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.051210 -0.793418 -0.606519 }
+        <Binormal> { -0.790829 -0.402996 0.460408 }
+      }
+      <Normal> { 0.609149 -0.447218 0.654866 }
+    }
+    <Vertex> 4129 {
+      -7.63492012024 -49.1231956482 18.0081825256
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.088119 -0.713051 -0.695552 }
+        <Binormal> { -0.758253 -0.500820 0.417357 }
+      }
+      <Normal> { 0.645528 -0.487259 0.588092 }
+    }
+    <Vertex> 4130 {
+      -9.07141685486 -51.348236084 16.9455776215
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.801054 0.572461 0.174932 }
+        <Binormal> { 0.553985 0.627851 0.482199 }
+      }
+      <Normal> { 0.040132 -0.630634 0.775018 }
+    }
+    <Vertex> 4131 {
+      -7.58169221878 -51.9853782654 15.703122139
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.013243 -0.835902 -0.548719 }
+        <Binormal> { -0.915261 -0.209134 0.340677 }
+      }
+      <Normal> { 0.400189 -0.465041 0.789666 }
+    }
+    <Vertex> 4132 {
+      -7.09057235718 -49.8655738831 16.8018665314
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.051210 -0.793418 -0.606519 }
+        <Binormal> { -0.790829 -0.402996 0.460408 }
+      }
+      <Normal> { 0.609149 -0.447218 0.654866 }
+    }
+    <Vertex> 4133 {
+      -7.58169221878 -51.9853782654 15.703122139
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.013243 -0.835902 -0.548719 }
+        <Binormal> { -0.915261 -0.209134 0.340677 }
+      }
+      <Normal> { 0.400189 -0.465041 0.789666 }
+    }
+    <Vertex> 4134 {
+      -6.33217811584 -51.7258758545 14.9410142899
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.021922 -0.856120 -0.516313 }
+        <Binormal> { -0.677874 -0.361415 0.628058 }
+      }
+      <Normal> { 0.727012 -0.257668 0.636402 }
+    }
+    <Vertex> 4135 {
+      -6.29688167572 -49.0263748169 16.3792533875
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.096158 -0.809266 -0.579519 }
+        <Binormal> { -0.500182 -0.542439 0.674491 }
+      }
+      <Normal> { 0.857906 -0.205725 0.470748 }
+    }
+    <Vertex> 4136 {
+      -8.05418109894 -48.5377464294 19.2726955414
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { -0.432485 -0.844124 -0.316879 }
+        <Binormal> { -0.738438 0.129964 0.661632 }
+      }
+      <Normal> { 0.519669 -0.515549 0.681265 }
+    }
+    <Vertex> 4137 {
+      -7.63492012024 -49.1231956482 18.0081825256
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.417975 -0.863214 -0.283123 }
+        <Binormal> { -0.645603 0.063044 0.760890 }
+      }
+      <Normal> { 0.645528 -0.487259 0.588092 }
+    }
+    <Vertex> 4138 {
+      -6.90795135498 -46.8801879883 18.4110374451
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.037317 -0.879570 -0.474303 }
+        <Binormal> { -0.253950 -0.392919 0.748627 }
+      }
+      <Normal> { 0.862362 0.264779 0.431501 }
+    }
+    <Vertex> 4139 {
+      -7.9141664505 -47.1285362244 20.036907196
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.263554 -0.911724 -0.315118 }
+        <Binormal> { -0.824797 0.099570 0.401750 }
+      }
+      <Normal> { 0.436415 -0.014649 0.899594 }
+    }
+    <Vertex> 4140 {
+      -8.05418109894 -48.5377464294 19.2726955414
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { -0.432485 -0.844124 -0.316879 }
+        <Binormal> { -0.738438 0.129964 0.661632 }
+      }
+      <Normal> { 0.519669 -0.515549 0.681265 }
+    }
+    <Vertex> 4141 {
+      -7.9141664505 -47.1285362244 20.036907196
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.263554 -0.911724 -0.315118 }
+        <Binormal> { -0.824797 0.099570 0.401750 }
+      }
+      <Normal> { 0.436415 -0.014649 0.899594 }
+    }
+    <Vertex> 4142 {
+      -8.76839542389 -47.7669754028 19.7674293518
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.210935 -0.943470 -0.255679 }
+        <Binormal> { -0.962356 -0.154831 -0.222609 }
+      }
+      <Normal> { -0.173986 -0.277139 0.944914 }
+    }
+    <Vertex> 4143 {
+      -9.01421642303 -49.1529159546 19.1710567474
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.602048 -0.722100 -0.340749 }
+        <Binormal> { -0.786775 0.520507 0.287069 }
+      }
+      <Normal> { -0.070101 -0.560900 0.824885 }
+    }
+    <Vertex> 4144 {
+      -8.05418109894 -48.5377464294 19.2726955414
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { -0.432485 -0.844124 -0.316879 }
+        <Binormal> { -0.738438 0.129964 0.661632 }
+      }
+      <Normal> { 0.519669 -0.515549 0.681265 }
+    }
+    <Vertex> 4145 {
+      -9.01421642303 -49.1529159546 19.1710567474
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.602048 -0.722100 -0.340749 }
+        <Binormal> { -0.786775 0.520507 0.287069 }
+      }
+      <Normal> { -0.070101 -0.560900 0.824885 }
+    }
+    <Vertex> 4146 {
+      -9.07141685486 -51.348236084 16.9455776215
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.514509 -0.751880 -0.412259 }
+        <Binormal> { -0.842705 0.382209 0.354641 }
+      }
+      <Normal> { 0.040132 -0.630634 0.775018 }
+    }
+    <Vertex> 4147 {
+      -7.63492012024 -49.1231956482 18.0081825256
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.417975 -0.863214 -0.283123 }
+        <Binormal> { -0.645603 0.063044 0.760890 }
+      }
+      <Normal> { 0.645528 -0.487259 0.588092 }
+    }
+    <Vertex> 4148 {
+      -8.522772789 -46.4418373108 19.840681076
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.983604 -0.119275 0.135267 }
+        <Binormal> { -0.178941 -0.737646 0.650750 }
+      }
+      <Normal> { -0.003632 0.662038 0.749443 }
+    }
+    <Vertex> 4149 {
+      -8.49569225311 -45.9391441345 18.4015712738
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.978111 -0.189830 0.085221 }
+        <Binormal> { -0.141891 -0.308978 0.940277 }
+      }
+      <Normal> { 0.137364 0.934660 0.327860 }
+    }
+    <Vertex> 4150 {
+      -10.1679496765 -46.2474937439 18.1269989014
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.619775 0.123273 0.775037 }
+        <Binormal> { -0.483639 -0.711545 0.499927 }
+      }
+      <Normal> { -0.551714 0.696890 0.458144 }
+    }
+    <Vertex> 4151 {
+      -9.48280715942 -47.0570068359 19.7390441895
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.916403 0.277942 0.288018 }
+        <Binormal> { 0.177681 -0.915140 0.317790 }
+      }
+      <Normal> { -0.510453 0.191961 0.838191 }
+    }
+    <Vertex> 4152 {
+      -8.522772789 -46.4418373108 19.840681076
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.983604 -0.119275 0.135267 }
+        <Binormal> { -0.178941 -0.737646 0.650750 }
+      }
+      <Normal> { -0.003632 0.662038 0.749443 }
+    }
+    <Vertex> 4153 {
+      -9.48280715942 -47.0570068359 19.7390441895
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.916403 0.277942 0.288018 }
+        <Binormal> { 0.177681 -0.915140 0.317790 }
+      }
+      <Normal> { -0.510453 0.191961 0.838191 }
+    }
+    <Vertex> 4154 {
+      -8.76839542389 -47.7669754028 19.7674293518
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.210935 -0.943470 -0.255679 }
+        <Binormal> { -0.962356 -0.154831 -0.222609 }
+      }
+      <Normal> { -0.173986 -0.277139 0.944914 }
+    }
+    <Vertex> 4155 {
+      -7.9141664505 -47.1285362244 20.036907196
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.862210 -0.505776 -0.028005 }
+        <Binormal> { -0.455403 -0.787861 0.208097 }
+      }
+      <Normal> { 0.436415 -0.014649 0.899594 }
+    }
+    <Vertex> 4156 {
+      -8.522772789 -46.4418373108 19.840681076
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.983604 -0.119275 0.135267 }
+        <Binormal> { -0.178941 -0.737646 0.650750 }
+      }
+      <Normal> { -0.003632 0.662038 0.749443 }
+    }
+    <Vertex> 4157 {
+      -7.9141664505 -47.1285362244 20.036907196
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.862210 -0.505776 -0.028005 }
+        <Binormal> { -0.455403 -0.787861 0.208097 }
+      }
+      <Normal> { 0.436415 -0.014649 0.899594 }
+    }
+    <Vertex> 4158 {
+      -6.90795135498 -46.8801879883 18.4110374451
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.843111 -0.518403 -0.142905 }
+        <Binormal> { -0.185853 -0.487039 0.670289 }
+      }
+      <Normal> { 0.862362 0.264779 0.431501 }
+    }
+    <Vertex> 4159 {
+      -8.49569225311 -45.9391441345 18.4015712738
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.978111 -0.189830 0.085221 }
+        <Binormal> { -0.141891 -0.308978 0.940277 }
+      }
+      <Normal> { 0.137364 0.934660 0.327860 }
+    }
+    <Vertex> 4160 {
+      -10.1522350311 -48.4714546204 18.767780304
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.255744 0.774673 0.578340 }
+        <Binormal> { 0.702565 -0.558975 0.438057 }
+      }
+      <Normal> { -0.651143 -0.259499 0.713187 }
+    }
+    <Vertex> 4161 {
+      -9.48280715942 -47.0570068359 19.7390441895
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.363468 0.767979 0.527351 }
+        <Binormal> { 0.542482 -0.573843 0.461789 }
+      }
+      <Normal> { -0.510453 0.191961 0.838191 }
+    }
+    <Vertex> 4162 {
+      -10.1679496765 -46.2474937439 18.1269989014
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.619775 0.123273 0.775037 }
+        <Binormal> { -0.483639 -0.711545 0.499927 }
+      }
+      <Normal> { -0.551714 0.696890 0.458144 }
+    }
+    <Vertex> 4163 {
+      -11.1838226318 -47.3864440918 17.7142772675
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.394146 0.826762 0.401391 }
+        <Binormal> { 0.358520 -0.540271 0.760771 }
+      }
+      <Normal> { -0.856777 0.133000 0.498215 }
+    }
+    <Vertex> 4164 {
+      -10.1522350311 -48.4714546204 18.767780304
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.255744 0.774673 0.578340 }
+        <Binormal> { 0.702565 -0.558975 0.438057 }
+      }
+      <Normal> { -0.651143 -0.259499 0.713187 }
+    }
+    <Vertex> 4165 {
+      -11.1838226318 -47.3864440918 17.7142772675
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.394146 0.826762 0.401391 }
+        <Binormal> { 0.358520 -0.540271 0.760771 }
+      }
+      <Normal> { -0.856777 0.133000 0.498215 }
+    }
+    <Vertex> 4166 {
+      -11.3445453644 -48.7155265808 16.9287757874
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.196287 0.769703 0.607477 }
+        <Binormal> { 0.447112 -0.621566 0.643084 }
+      }
+      <Normal> { -0.875118 -0.155370 0.458266 }
+    }
+    <Vertex> 4167 {
+      -10.74451828 -50.0951499939 17.2228431702
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.255494 0.700414 0.666440 }
+        <Binormal> { 0.708196 -0.604150 0.363447 }
+      }
+      <Normal> { -0.666463 -0.404523 0.626209 }
+    }
+    <Vertex> 4168 {
+      -10.1522350311 -48.4714546204 18.767780304
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.255744 0.774673 0.578340 }
+        <Binormal> { 0.702565 -0.558975 0.438057 }
+      }
+      <Normal> { -0.651143 -0.259499 0.713187 }
+    }
+    <Vertex> 4169 {
+      -10.74451828 -50.0951499939 17.2228431702
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.255494 0.700414 0.666440 }
+        <Binormal> { 0.708196 -0.604150 0.363447 }
+      }
+      <Normal> { -0.666463 -0.404523 0.626209 }
+    }
+    <Vertex> 4170 {
+      -9.07141685486 -51.348236084 16.9455776215
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.801054 0.572461 0.174932 }
+        <Binormal> { 0.553985 0.627851 0.482199 }
+      }
+      <Normal> { 0.040132 -0.630634 0.775018 }
+    }
+    <Vertex> 4171 {
+      -9.01421642303 -49.1529159546 19.1710567474
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.066314 0.783736 0.617544 }
+        <Binormal> { 0.992872 -0.097992 0.017745 }
+      }
+      <Normal> { -0.070101 -0.560900 0.824885 }
+    }
+    <Vertex> 4172 {
+      -10.1522350311 -48.4714546204 18.767780304
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.255744 0.774673 0.578340 }
+        <Binormal> { 0.702565 -0.558975 0.438057 }
+      }
+      <Normal> { -0.651143 -0.259499 0.713187 }
+    }
+    <Vertex> 4173 {
+      -9.01421642303 -49.1529159546 19.1710567474
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.066314 0.783736 0.617544 }
+        <Binormal> { 0.992872 -0.097992 0.017745 }
+      }
+      <Normal> { -0.070101 -0.560900 0.824885 }
+    }
+    <Vertex> 4174 {
+      -8.76839542389 -47.7669754028 19.7674293518
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.274251 0.839127 0.469737 }
+        <Binormal> { 0.923085 -0.340871 0.069991 }
+      }
+      <Normal> { -0.173986 -0.277139 0.944914 }
+    }
+    <Vertex> 4175 {
+      -9.48280715942 -47.0570068359 19.7390441895
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.363468 0.767979 0.527351 }
+        <Binormal> { 0.542482 -0.573843 0.461789 }
+      }
+      <Normal> { -0.510453 0.191961 0.838191 }
+    }
+    <Vertex> 4176 {
+      -11.4731216431 -51.3380584717 15.4001989365
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.342650 0.936689 0.072151 }
+        <Binormal> { 0.681340 0.194923 0.705177 }
+      }
+      <Normal> { -0.654073 -0.269997 0.706595 }
+    }
+    <Vertex> 4177 {
+      -11.9593639374 -48.778465271 15.6101093292
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.186028 0.979257 0.080308 }
+        <Binormal> { 0.515037 0.028393 0.846826 }
+      }
+      <Normal> { -0.851070 -0.072085 0.520035 }
+    }
+    <Vertex> 4178 {
+      -13.0788087845 -48.8977127075 14.0308132172
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.946011 0.286996 0.150657 }
+        <Binormal> { 0.249684 0.758138 0.123601 }
+      }
+      <Normal> { -0.478957 0.014649 0.877682 }
+    }
+    <Vertex> 4179 {
+      -12.9572477341 -52.1151008606 14.0029659271
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.094641 0.994987 0.032310 }
+        <Binormal> { 0.928959 0.076644 0.360821 }
+      }
+      <Normal> { -0.353648 -0.094516 0.930570 }
+    }
+    <Vertex> 4180 {
+      -11.4731216431 -51.3380584717 15.4001989365
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.342650 0.936689 0.072151 }
+        <Binormal> { 0.681340 0.194923 0.705177 }
+      }
+      <Normal> { -0.654073 -0.269997 0.706595 }
+    }
+    <Vertex> 4181 {
+      -12.9572477341 -52.1151008606 14.0029659271
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.094641 0.994987 0.032310 }
+        <Binormal> { 0.928959 0.076644 0.360821 }
+      }
+      <Normal> { -0.353648 -0.094516 0.930570 }
+    }
+    <Vertex> 4182 {
+      -12.3883171082 -56.1570320129 13.7950839996
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.650465 0.755996 0.073247 }
+        <Binormal> { 0.751832 0.629969 0.174567 }
+      }
+      <Normal> { -0.141606 -0.103793 0.984436 }
+    }
+    <Vertex> 4183 {
+      -10.2756023407 -53.548866272 15.100522995
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.705344 0.695502 0.136995 }
+        <Binormal> { 0.670028 0.591110 0.448791 }
+      }
+      <Normal> { -0.241157 -0.398480 0.884884 }
+    }
+    <Vertex> 4184 {
+      -11.4731216431 -51.3380584717 15.4001989365
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.342650 0.936689 0.072151 }
+        <Binormal> { 0.681340 0.194923 0.705177 }
+      }
+      <Normal> { -0.654073 -0.269997 0.706595 }
+    }
+    <Vertex> 4185 {
+      -10.2756023407 -53.548866272 15.100522995
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.705344 0.695502 0.136995 }
+        <Binormal> { 0.670028 0.591110 0.448791 }
+      }
+      <Normal> { -0.241157 -0.398480 0.884884 }
+    }
+    <Vertex> 4186 {
+      -9.07141685486 -51.348236084 16.9455776215
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.801054 0.572461 0.174932 }
+        <Binormal> { 0.553985 0.627851 0.482199 }
+      }
+      <Normal> { 0.040132 -0.630634 0.775018 }
+    }
+    <Vertex> 4187 {
+      -10.74451828 -50.0951499939 17.2228431702
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.653518 0.756896 -0.004830 }
+        <Binormal> { 0.472021 0.412458 0.768806 }
+      }
+      <Normal> { -0.666463 -0.404523 0.626209 }
+    }
+    <Vertex> 4188 {
+      -11.4731216431 -51.3380584717 15.4001989365
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.342650 0.936689 0.072151 }
+        <Binormal> { 0.681340 0.194923 0.705177 }
+      }
+      <Normal> { -0.654073 -0.269997 0.706595 }
+    }
+    <Vertex> 4189 {
+      -10.74451828 -50.0951499939 17.2228431702
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.653518 0.756896 -0.004830 }
+        <Binormal> { 0.472021 0.412458 0.768806 }
+      }
+      <Normal> { -0.666463 -0.404523 0.626209 }
+    }
+    <Vertex> 4190 {
+      -11.3445453644 -48.7155265808 16.9287757874
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.029605 0.704959 0.708630 }
+        <Binormal> { 0.433158 -0.633702 0.612323 }
+      }
+      <Normal> { -0.875118 -0.155370 0.458266 }
+    }
+    <Vertex> 4191 {
+      -11.9593639374 -48.778465271 15.6101093292
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.186028 0.979257 0.080308 }
+        <Binormal> { 0.515037 0.028393 0.846826 }
+      }
+      <Normal> { -0.851070 -0.072085 0.520035 }
+    }
+    <Vertex> 4192 {
+      -8.2765750885 -54.4900016785 14.7793512344
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.935773 0.299487 0.186109 }
+        <Binormal> { 0.341875 0.898588 0.272970 }
+      }
+      <Normal> { 0.116306 -0.328929 0.937132 }
+    }
+    <Vertex> 4193 {
+      -9.37350463867 -57.4066810608 14.1212005615
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.951553 0.302014 -0.057742 }
+        <Binormal> { 0.291497 0.944537 0.136624 }
+      }
+      <Normal> { -0.034394 -0.132664 0.990539 }
+    }
+    <Vertex> 4194 {
+      -7.17759752274 -57.8108673096 14.1112775803
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.791409 -0.611264 -0.005297 }
+        <Binormal> { -0.562359 0.724888 0.369730 }
+      }
+      <Normal> { 0.338389 -0.205817 0.918210 }
+    }
+    <Vertex> 4195 {
+      -6.47673654556 -54.7197265625 14.3222208023
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.961895 0.122773 0.244306 }
+        <Binormal> { 0.150314 0.926189 0.126381 }
+      }
+      <Normal> { 0.520249 -0.197790 0.830744 }
+    }
+    <Vertex> 4196 {
+      -8.2765750885 -54.4900016785 14.7793512344
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.935773 0.299487 0.186109 }
+        <Binormal> { 0.341875 0.898588 0.272970 }
+      }
+      <Normal> { 0.116306 -0.328929 0.937132 }
+    }
+    <Vertex> 4197 {
+      -6.47673654556 -54.7197265625 14.3222208023
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.961895 0.122773 0.244306 }
+        <Binormal> { 0.150314 0.926189 0.126381 }
+      }
+      <Normal> { 0.520249 -0.197790 0.830744 }
+    }
+    <Vertex> 4198 {
+      -6.33217811584 -51.7258758545 14.9410142899
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.467095 -0.860673 -0.202642 }
+        <Binormal> { -0.599949 0.149938 0.746075 }
+      }
+      <Normal> { 0.727012 -0.257668 0.636402 }
+    }
+    <Vertex> 4199 {
+      -7.58169221878 -51.9853782654 15.703122139
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.802048 0.110573 0.586935 }
+        <Binormal> { 0.360265 0.868235 0.328735 }
+      }
+      <Normal> { 0.400189 -0.465041 0.789666 }
+    }
+    <Vertex> 4200 {
+      -8.2765750885 -54.4900016785 14.7793512344
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.935773 0.299487 0.186109 }
+        <Binormal> { 0.341875 0.898588 0.272970 }
+      }
+      <Normal> { 0.116306 -0.328929 0.937132 }
+    }
+    <Vertex> 4201 {
+      -7.58169221878 -51.9853782654 15.703122139
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.802048 0.110573 0.586935 }
+        <Binormal> { 0.360265 0.868235 0.328735 }
+      }
+      <Normal> { 0.400189 -0.465041 0.789666 }
+    }
+    <Vertex> 4202 {
+      -9.07141685486 -51.348236084 16.9455776215
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.801054 0.572461 0.174932 }
+        <Binormal> { 0.553985 0.627851 0.482199 }
+      }
+      <Normal> { 0.040132 -0.630634 0.775018 }
+    }
+    <Vertex> 4203 {
+      -10.2756023407 -53.548866272 15.100522995
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.705344 0.695502 0.136995 }
+        <Binormal> { 0.670028 0.591110 0.448791 }
+      }
+      <Normal> { -0.241157 -0.398480 0.884884 }
+    }
+    <Vertex> 4204 {
+      -8.2765750885 -54.4900016785 14.7793512344
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.935773 0.299487 0.186109 }
+        <Binormal> { 0.341875 0.898588 0.272970 }
+      }
+      <Normal> { 0.116306 -0.328929 0.937132 }
+    }
+    <Vertex> 4205 {
+      -10.2756023407 -53.548866272 15.100522995
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.705344 0.695502 0.136995 }
+        <Binormal> { 0.670028 0.591110 0.448791 }
+      }
+      <Normal> { -0.241157 -0.398480 0.884884 }
+    }
+    <Vertex> 4206 {
+      -12.3883171082 -56.1570320129 13.7950839996
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.650465 0.755996 0.073247 }
+        <Binormal> { 0.751832 0.629969 0.174567 }
+      }
+      <Normal> { -0.141606 -0.103793 0.984436 }
+    }
+    <Vertex> 4207 {
+      -9.37350463867 -57.4066810608 14.1212005615
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.951553 0.302014 -0.057742 }
+        <Binormal> { 0.291497 0.944537 0.136624 }
+      }
+      <Normal> { -0.034394 -0.132664 0.990539 }
+    }
+    <Vertex> 4208 {
+      0.569283604622 -54.6276931763 16.3077697754
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.052646 0.998585 0.007543 }
+        <Binormal> { -0.081382 -0.003236 0.996437 }
+      }
+      <Normal> { -0.993927 0.074404 -0.080935 }
+    }
+    <Vertex> 4209 {
+      0.761274933815 -54.6630172729 14.5136833191
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.050717 0.998301 0.028672 }
+        <Binormal> { 0.071351 -0.032252 0.996734 }
+      }
+      <Normal> { -0.995025 0.067019 0.073397 }
+    }
+    <Vertex> 4210 {
+      0.800136804581 -58.5618629456 14.3294782639
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.118072 0.990996 0.063128 }
+        <Binormal> { 0.547354 0.012032 0.834860 }
+      }
+      <Normal> { -0.833308 -0.076693 0.547441 }
+    }
+    <Vertex> 4211 {
+      1.02450740337 -57.987613678 16.3203239441
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.317856 0.947742 0.027449 }
+        <Binormal> { -0.061378 -0.049405 0.995070 }
+      }
+      <Normal> { -0.963378 -0.258095 -0.072237 }
+    }
+    <Vertex> 4212 {
+      0.569283604622 -54.6276931763 16.3077697754
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.052646 0.998585 0.007543 }
+        <Binormal> { -0.081382 -0.003236 0.996437 }
+      }
+      <Normal> { -0.993927 0.074404 -0.080935 }
+    }
+    <Vertex> 4213 {
+      1.02450740337 -57.987613678 16.3203239441
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.317856 0.947742 0.027449 }
+        <Binormal> { -0.061378 -0.049405 0.995070 }
+      }
+      <Normal> { -0.963378 -0.258095 -0.072237 }
+    }
+    <Vertex> 4214 {
+      0.142042249441 -57.5461273193 18.6940250397
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.295726 0.953767 0.053610 }
+        <Binormal> { -0.535467 -0.208157 0.749538 }
+      }
+      <Normal> { -0.823267 0.120609 -0.554643 }
+    }
+    <Vertex> 4215 {
+      0.33462780714 -54.513381958 18.5160083771
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.178231 0.982458 0.054871 }
+        <Binormal> { -0.147793 -0.028384 0.988271 }
+      }
+      <Normal> { -0.977050 0.159124 -0.141545 }
+    }
+    <Vertex> 4216 {
+      0.569283604622 -54.6276931763 16.3077697754
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.052646 0.998585 0.007543 }
+        <Binormal> { -0.081382 -0.003236 0.996437 }
+      }
+      <Normal> { -0.993927 0.074404 -0.080935 }
+    }
+    <Vertex> 4217 {
+      0.33462780714 -54.513381958 18.5160083771
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.178231 0.982458 0.054871 }
+        <Binormal> { -0.147793 -0.028384 0.988271 }
+      }
+      <Normal> { -0.977050 0.159124 -0.141545 }
+    }
+    <Vertex> 4218 {
+      1.32257354259 -51.0387268066 19.057466507
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.372189 0.928118 -0.008529 }
+        <Binormal> { -0.053408 0.030531 0.991739 }
+      }
+      <Normal> { -0.878842 0.473067 -0.061892 }
+    }
+    <Vertex> 4219 {
+      1.14489448071 -51.794593811 16.2526168823
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { 0.346409 0.938064 0.006009 }
+        <Binormal> { -0.024597 0.002681 0.999418 }
+      }
+      <Normal> { -0.929624 0.367687 -0.023865 }
+    }
+    <Vertex> 4220 {
+      0.569283604622 -54.6276931763 16.3077697754
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.052646 0.998585 0.007543 }
+        <Binormal> { -0.081382 -0.003236 0.996437 }
+      }
+      <Normal> { -0.993927 0.074404 -0.080935 }
+    }
+    <Vertex> 4221 {
+      1.14489448071 -51.794593811 16.2526168823
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { 0.346409 0.938064 0.006009 }
+        <Binormal> { -0.024597 0.002681 0.999418 }
+      }
+      <Normal> { -0.929624 0.367687 -0.023865 }
+    }
+    <Vertex> 4222 {
+      1.14493978024 -51.7748260498 14.5244092941
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.321376 0.946890 0.010821 }
+        <Binormal> { 0.094275 -0.043346 0.993066 }
+      }
+      <Normal> { -0.958464 0.266060 0.102603 }
+    }
+    <Vertex> 4223 {
+      0.761274933815 -54.6630172729 14.5136833191
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.050717 0.998301 0.028672 }
+        <Binormal> { 0.071351 -0.032252 0.996734 }
+      }
+      <Normal> { -0.995025 0.067019 0.073397 }
+    }
+    <Vertex> 4224 {
+      -5.00184202194 -61.1814346313 12.6581373215
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.988458 -0.149623 0.023725 }
+        <Binormal> { -0.149384 -0.988704 -0.011485 }
+      }
+      <Normal> { -0.028169 -0.007355 0.999573 }
+    }
+    <Vertex> 4225 {
+      -2.56024861336 -61.4559631348 12.9210128784
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.968725 -0.222157 0.110533 }
+        <Binormal> { -0.226847 -0.940422 0.097985 }
+      }
+      <Normal> { -0.308298 0.171850 0.935606 }
+    }
+    <Vertex> 4226 {
+      -0.649426758289 -58.0259895325 12.9442148209
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.995613 -0.027054 0.089574 }
+        <Binormal> { -0.035155 -0.969245 0.098006 }
+      }
+      <Normal> { -0.306040 0.106754 0.945982 }
+    }
+    <Vertex> 4227 {
+      -3.14477968216 -57.9915313721 12.7509479523
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.995507 0.094568 0.004676 }
+        <Binormal> { 0.094625 -0.995388 -0.014596 }
+      }
+      <Normal> { -0.006928 -0.015320 0.999847 }
+    }
+    <Vertex> 4228 {
+      -5.00184202194 -61.1814346313 12.6581373215
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.988458 -0.149623 0.023725 }
+        <Binormal> { -0.149384 -0.988704 -0.011485 }
+      }
+      <Normal> { -0.028169 -0.007355 0.999573 }
+    }
+    <Vertex> 4229 {
+      -3.14477968216 -57.9915313721 12.7509479523
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.995507 0.094568 0.004676 }
+        <Binormal> { 0.094625 -0.995388 -0.014596 }
+      }
+      <Normal> { -0.006928 -0.015320 0.999847 }
+    }
+    <Vertex> 4230 {
+      -5.63436937332 -57.9570732117 12.9359388351
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.998015 -0.014371 -0.061310 }
+        <Binormal> { -0.023056 -0.947469 -0.153231 }
+      }
+      <Normal> { 0.335063 -0.158361 0.928770 }
+    }
+    <Vertex> 4231 {
+      -7.42037725449 -60.9069061279 12.7735214233
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.981219 -0.185757 -0.052002 }
+        <Binormal> { -0.183493 -0.921943 -0.169017 }
+      }
+      <Normal> { 0.307230 -0.230415 0.923307 }
+    }
+    <Vertex> 4232 {
+      -5.00184202194 -61.1814346313 12.6581373215
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.988458 -0.149623 0.023725 }
+        <Binormal> { -0.149384 -0.988704 -0.011485 }
+      }
+      <Normal> { -0.028169 -0.007355 0.999573 }
+    }
+    <Vertex> 4233 {
+      -7.42037725449 -60.9069061279 12.7735214233
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.981219 -0.185757 -0.052002 }
+        <Binormal> { -0.183493 -0.921943 -0.169017 }
+      }
+      <Normal> { 0.307230 -0.230415 0.923307 }
+    }
+    <Vertex> 4234 {
+      -9.46007061005 -64.0183792114 12.6652421951
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.943246 -0.328900 -0.045954 }
+        <Binormal> { -0.315234 -0.897300 -0.048335 }
+      }
+      <Normal> { 0.313150 -0.160436 0.936033 }
+    }
+    <Vertex> 4235 {
+      -7.08890581131 -64.4586486816 12.5962629318
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.864041 -0.500998 0.049338 }
+        <Binormal> { -0.501479 -0.865111 -0.002451 }
+      }
+      <Normal> { -0.038789 0.019654 0.999023 }
+    }
+    <Vertex> 4236 {
+      -5.00184202194 -61.1814346313 12.6581373215
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.988458 -0.149623 0.023725 }
+        <Binormal> { -0.149384 -0.988704 -0.011485 }
+      }
+      <Normal> { -0.028169 -0.007355 0.999573 }
+    }
+    <Vertex> 4237 {
+      -7.08890581131 -64.4586486816 12.5962629318
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.864041 -0.500998 0.049338 }
+        <Binormal> { -0.501479 -0.865111 -0.002451 }
+      }
+      <Normal> { -0.038789 0.019654 0.999023 }
+    }
+    <Vertex> 4238 {
+      -4.65595674515 -64.878578186 12.9149770737
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.931807 -0.341916 0.121779 }
+        <Binormal> { -0.339101 -0.910762 0.037549 }
+      }
+      <Normal> { -0.314768 0.155797 0.936277 }
+    }
+    <Vertex> 4239 {
+      -2.56024861336 -61.4559631348 12.9210128784
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.968725 -0.222157 0.110533 }
+        <Binormal> { -0.226847 -0.940422 0.097985 }
+      }
+      <Normal> { -0.308298 0.171850 0.935606 }
+    }
+    <Vertex> 4240 {
+      -8.18934822083 -60.8153915405 13.3671665192
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.734442 -0.203459 -0.647456 }
+        <Binormal> { -0.397440 -0.902188 -0.167330 }
+      }
+      <Normal> { 0.553758 -0.381237 0.740226 }
+    }
+    <Vertex> 4241 {
+      -7.42037725449 -60.9069061279 12.7735214233
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.678505 -0.339119 -0.651636 }
+        <Binormal> { -0.463257 -0.826671 -0.052150 }
+      }
+      <Normal> { 0.307230 -0.230415 0.923307 }
+    }
+    <Vertex> 4242 {
+      -5.63436937332 -57.9570732117 12.9359388351
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.083118 -0.974417 -0.208813 }
+        <Binormal> { -0.938077 -0.147163 0.313328 }
+      }
+      <Normal> { 0.335063 -0.158361 0.928770 }
+    }
+    <Vertex> 4243 {
+      -6.45493078232 -57.9455909729 13.5527858734
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.839588 0.167600 -0.516722 }
+        <Binormal> { -0.007463 -0.945836 -0.318910 }
+      }
+      <Normal> { 0.592303 -0.261605 0.762017 }
+    }
+    <Vertex> 4244 {
+      -8.18934822083 -60.8153915405 13.3671665192
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.734442 -0.203459 -0.647456 }
+        <Binormal> { -0.397440 -0.902188 -0.167330 }
+      }
+      <Normal> { 0.553758 -0.381237 0.740226 }
+    }
+    <Vertex> 4245 {
+      -6.45493078232 -57.9455909729 13.5527858734
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.839588 0.167600 -0.516722 }
+        <Binormal> { -0.007463 -0.945836 -0.318910 }
+      }
+      <Normal> { 0.592303 -0.261605 0.762017 }
+    }
+    <Vertex> 4246 {
+      -7.17759752274 -57.8108673096 14.1112775803
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.815024 -0.002114 -0.579423 }
+        <Binormal> { -0.121196 -0.944434 -0.167030 }
+      }
+      <Normal> { 0.338389 -0.205817 0.918210 }
+    }
+    <Vertex> 4247 {
+      -8.8817987442 -60.8022117615 13.8965911865
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.722851 -0.219393 -0.655251 }
+        <Binormal> { -0.353938 -0.862990 -0.101503 }
+      }
+      <Normal> { 0.293191 -0.229408 0.928098 }
+    }
+    <Vertex> 4248 {
+      -8.18934822083 -60.8153915405 13.3671665192
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.734442 -0.203459 -0.647456 }
+        <Binormal> { -0.397440 -0.902188 -0.167330 }
+      }
+      <Normal> { 0.553758 -0.381237 0.740226 }
+    }
+    <Vertex> 4249 {
+      -8.8817987442 -60.8022117615 13.8965911865
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.722851 -0.219393 -0.655251 }
+        <Binormal> { -0.353938 -0.862990 -0.101503 }
+      }
+      <Normal> { 0.293191 -0.229408 0.928098 }
+    }
+    <Vertex> 4250 {
+      -10.8337583542 -63.9921989441 13.788312912
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.547779 -0.436726 -0.713588 }
+        <Binormal> { -0.523726 -0.739035 0.050267 }
+      }
+      <Normal> { 0.318857 -0.162450 0.933775 }
+    }
+    <Vertex> 4251 {
+      -10.19465065 -63.8716163635 13.2434186935
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.276912 -0.721581 -0.634539 }
+        <Binormal> { -0.731616 -0.581607 0.342111 }
+      }
+      <Normal> { 0.589099 -0.299631 0.750420 }
+    }
+    <Vertex> 4252 {
+      -8.18934822083 -60.8153915405 13.3671665192
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.734442 -0.203459 -0.647456 }
+        <Binormal> { -0.397440 -0.902188 -0.167330 }
+      }
+      <Normal> { 0.553758 -0.381237 0.740226 }
+    }
+    <Vertex> 4253 {
+      -10.19465065 -63.8716163635 13.2434186935
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.276912 -0.721581 -0.634539 }
+        <Binormal> { -0.731616 -0.581607 0.342111 }
+      }
+      <Normal> { 0.589099 -0.299631 0.750420 }
+    }
+    <Vertex> 4254 {
+      -9.46007061005 -64.0183792114 12.6652421951
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.511872 -0.569327 -0.643315 }
+        <Binormal> { -0.636120 -0.680583 0.096163 }
+      }
+      <Normal> { 0.313150 -0.160436 0.936033 }
+    }
+    <Vertex> 4255 {
+      -7.42037725449 -60.9069061279 12.7735214233
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.678505 -0.339119 -0.651636 }
+        <Binormal> { -0.463257 -0.826671 -0.052150 }
+      }
+      <Normal> { 0.307230 -0.230415 0.923307 }
+    }
+    <Vertex> 4256 {
+      -16.6851654053 -60.6852493286 14.016076088
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.411171 -0.908248 0.077611 }
+        <Binormal> { -0.905719 0.416654 0.077568 }
+      }
+      <Normal> { 0.103793 0.040620 0.993744 }
+    }
+    <Vertex> 4257 {
+      -13.9429864883 -60.7169418335 13.6781978607
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.623542 -0.780970 0.035800 }
+        <Binormal> { -0.780707 0.624225 0.019462 }
+      }
+      <Normal> { 0.024384 -0.000671 0.999695 }
+    }
+    <Vertex> 4258 {
+      -12.3883171082 -56.1570320129 13.7950839996
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.546895 -0.836374 0.037203 }
+        <Binormal> { -0.819495 0.533115 -0.061671 }
+      }
+      <Normal> { -0.141606 -0.103793 0.984436 }
+    }
+    <Vertex> 4259 {
+      -16.0333709717 -56.3763046265 13.6569356918
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.469046 -0.880488 0.068827 }
+        <Binormal> { -0.881247 0.469952 0.006415 }
+      }
+      <Normal> { 0.014618 0.013764 0.999786 }
+    }
+    <Vertex> 4260 {
+      -16.6851654053 -60.6852493286 14.016076088
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.411171 -0.908248 0.077611 }
+        <Binormal> { -0.905719 0.416654 0.077568 }
+      }
+      <Normal> { 0.103793 0.040620 0.993744 }
+    }
+    <Vertex> 4261 {
+      -16.0333709717 -56.3763046265 13.6569356918
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.469046 -0.880488 0.068827 }
+        <Binormal> { -0.881247 0.469952 0.006415 }
+      }
+      <Normal> { 0.014618 0.013764 0.999786 }
+    }
+    <Vertex> 4262 {
+      -19.0934810638 -56.4022789001 13.7249898911
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.261029 -0.959575 0.105263 }
+        <Binormal> { -0.962424 0.257295 -0.041114 }
+      }
+      <Normal> { -0.032228 0.039033 0.998688 }
+    }
+    <Vertex> 4263 {
+      -19.2564296722 -60.7000961304 14.2773895264
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.086084 -0.989272 0.118029 }
+        <Binormal> { -0.995748 0.082502 -0.034739 }
+      }
+      <Normal> { -0.026490 0.099124 0.994720 }
+    }
+    <Vertex> 4264 {
+      -16.6851654053 -60.6852493286 14.016076088
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.411171 -0.908248 0.077611 }
+        <Binormal> { -0.905719 0.416654 0.077568 }
+      }
+      <Normal> { 0.103793 0.040620 0.993744 }
+    }
+    <Vertex> 4265 {
+      -19.2564296722 -60.7000961304 14.2773895264
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.086084 -0.989272 0.118029 }
+        <Binormal> { -0.995748 0.082502 -0.034739 }
+      }
+      <Normal> { -0.026490 0.099124 0.994720 }
+    }
+    <Vertex> 4266 {
+      -19.8271713257 -64.8338394165 14.7309522629
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.250761 -0.963002 0.098724 }
+        <Binormal> { -0.962364 0.249945 -0.006348 }
+      }
+      <Normal> { -0.008118 -0.005860 0.999939 }
+    }
+    <Vertex> 4267 {
+      -17.7514514923 -64.8301315308 14.3047637939
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.358114 -0.929106 0.092287 }
+        <Binormal> { -0.906085 0.368058 0.189439 }
+      }
+      <Normal> { 0.178686 -0.065401 0.981719 }
+    }
+    <Vertex> 4268 {
+      -16.6851654053 -60.6852493286 14.016076088
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.411171 -0.908248 0.077611 }
+        <Binormal> { -0.905719 0.416654 0.077568 }
+      }
+      <Normal> { 0.103793 0.040620 0.993744 }
+    }
+    <Vertex> 4269 {
+      -17.7514514923 -64.8301315308 14.3047637939
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.358114 -0.929106 0.092287 }
+        <Binormal> { -0.906085 0.368058 0.189439 }
+      }
+      <Normal> { 0.178686 -0.065401 0.981719 }
+    }
+    <Vertex> 4270 {
+      -15.5305328369 -64.7141723633 13.7349014282
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.524298 -0.848294 0.074224 }
+        <Binormal> { -0.842592 0.528359 0.086692 }
+      }
+      <Normal> { 0.082522 -0.031831 0.996063 }
+    }
+    <Vertex> 4271 {
+      -13.9429864883 -60.7169418335 13.6781978607
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.623542 -0.780970 0.035800 }
+        <Binormal> { -0.780707 0.624225 0.019462 }
+      }
+      <Normal> { 0.024384 -0.000671 0.999695 }
+    }
+    <Vertex> 4272 {
+      -21.6159038544 -60.7939987183 13.9065761566
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.108965 0.986755 -0.119961 }
+        <Binormal> { 0.979891 0.126925 0.153963 }
+      }
+      <Normal> { -0.167150 0.100772 0.980743 }
+    }
+    <Vertex> 4273 {
+      -19.2564296722 -60.7000961304 14.2773895264
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.097414 0.990077 -0.101256 }
+        <Binormal> { 0.994891 0.099582 0.016571 }
+      }
+      <Normal> { -0.026490 0.099124 0.994720 }
+    }
+    <Vertex> 4274 {
+      -19.0934810638 -56.4022789001 13.7249898911
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.032228 0.039033 0.998688 }
+    }
+    <Vertex> 4275 {
+      -21.6159038544 -56.566608429 13.4926862717
+      <UV>  {
+        0.250000 0.750000
+        <Tangent> { -0.263675 -0.962298 0.066773 }
+        <Binormal> { -0.957312 0.253866 -0.121672 }
+      }
+      <Normal> { -0.117374 0.033082 0.992523 }
+    }
+    <Vertex> 4276 {
+      -21.6159038544 -60.7939987183 13.9065761566
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.108965 0.986755 -0.119961 }
+        <Binormal> { 0.979891 0.126925 0.153963 }
+      }
+      <Normal> { -0.167150 0.100772 0.980743 }
+    }
+    <Vertex> 4277 {
+      -21.6159038544 -56.566608429 13.4926862717
+      <UV>  {
+        0.250000 0.750000
+        <Tangent> { -0.263675 -0.962298 0.066773 }
+        <Binormal> { -0.957312 0.253866 -0.121672 }
+      }
+      <Normal> { -0.117374 0.033082 0.992523 }
+    }
+    <Vertex> 4278 {
+      -23.839345932 -56.8130111694 13.2712678909
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.367567 -0.929549 0.028872 }
+        <Binormal> { -0.929157 0.365850 -0.050297 }
+      }
+      <Normal> { -0.041993 0.030641 0.998627 }
+    }
+    <Vertex> 4279 {
+      -23.7489376068 -60.9347991943 13.5163316727
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.708730 -0.700117 -0.086822 }
+        <Binormal> { -0.690643 0.709768 -0.085703 }
+      }
+      <Normal> { -0.044343 0.077120 0.996033 }
+    }
+    <Vertex> 4280 {
+      -21.6159038544 -60.7939987183 13.9065761566
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.108965 0.986755 -0.119961 }
+        <Binormal> { 0.979891 0.126925 0.153963 }
+      }
+      <Normal> { -0.167150 0.100772 0.980743 }
+    }
+    <Vertex> 4281 {
+      -23.7489376068 -60.9347991943 13.5163316727
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.708730 -0.700117 -0.086822 }
+        <Binormal> { -0.690643 0.709768 -0.085703 }
+      }
+      <Normal> { -0.044343 0.077120 0.996033 }
+    }
+    <Vertex> 4282 {
+      -24.0562496185 -64.8925170898 13.7604618073
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.884114 -0.439038 -0.159960 }
+        <Binormal> { -0.434360 0.890586 -0.043617 }
+      }
+      <Normal> { -0.048891 0.025056 0.998474 }
+    }
+    <Vertex> 4283 {
+      -22.0035934448 -64.8573226929 14.2773885727
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.974577 -0.013523 -0.223646 }
+        <Binormal> { -0.002276 0.998213 -0.050437 }
+      }
+      <Normal> { -0.193060 0.049074 0.979949 }
+    }
+    <Vertex> 4284 {
+      -21.6159038544 -60.7939987183 13.9065761566
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.108965 0.986755 -0.119961 }
+        <Binormal> { 0.979891 0.126925 0.153963 }
+      }
+      <Normal> { -0.167150 0.100772 0.980743 }
+    }
+    <Vertex> 4285 {
+      -22.0035934448 -64.8573226929 14.2773885727
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.974577 -0.013523 -0.223646 }
+        <Binormal> { -0.002276 0.998213 -0.050437 }
+      }
+      <Normal> { -0.193060 0.049074 0.979949 }
+    }
+    <Vertex> 4286 {
+      -19.8271713257 -64.8338394165 14.7309522629
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.008118 -0.005860 0.999939 }
+    }
+    <Vertex> 4287 {
+      -19.2564296722 -60.7000961304 14.2773895264
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.097414 0.990077 -0.101256 }
+        <Binormal> { 0.994891 0.099582 0.016571 }
+      }
+      <Normal> { -0.026490 0.099124 0.994720 }
+    }
+    <Vertex> 4288 {
+      -25.6408748627 -61.0903358459 13.7193555832
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.052513 -0.994694 0.088471 }
+        <Binormal> { -0.971086 -0.030208 0.236762 }
+      }
+      <Normal> { 0.232856 0.097903 0.967559 }
+    }
+    <Vertex> 4289 {
+      -23.7489376068 -60.9347991943 13.5163316727
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.026787 -0.997814 0.060415 }
+        <Binormal> { -0.998514 0.024002 -0.046312 }
+      }
+      <Normal> { -0.044343 0.077120 0.996033 }
+    }
+    <Vertex> 4290 {
+      -23.839345932 -56.8130111694 13.2712678909
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.055391 -0.995822 0.072593 }
+        <Binormal> { -0.996679 -0.058363 -0.040121 }
+      }
+      <Normal> { -0.041993 0.030641 0.998627 }
+    }
+    <Vertex> 4291 {
+      -26.0025138855 -57.0851898193 13.3719873428
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { 0.089594 -0.992253 0.086059 }
+        <Binormal> { -0.990216 -0.079590 0.113221 }
+      }
+      <Normal> { 0.107028 0.078372 0.991150 }
+    }
+    <Vertex> 4292 {
+      -25.6408748627 -61.0903358459 13.7193555832
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.052513 -0.994694 0.088471 }
+        <Binormal> { -0.971086 -0.030208 0.236762 }
+      }
+      <Normal> { 0.232856 0.097903 0.967559 }
+    }
+    <Vertex> 4293 {
+      -26.0025138855 -57.0851898193 13.3719873428
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { 0.089594 -0.992253 0.086059 }
+        <Binormal> { -0.990216 -0.079590 0.113221 }
+      }
+      <Normal> { 0.107028 0.078372 0.991150 }
+    }
+    <Vertex> 4294 {
+      -28.5103988647 -57.3936233521 13.7695398331
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.149438 -0.829646 0.537919 }
+        <Binormal> { -0.930401 0.271956 0.160973 }
+      }
+      <Normal> { 0.252113 0.322489 0.912351 }
+    }
+    <Vertex> 4295 {
+      -27.1535263062 -61.21251297 14.4811506271
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.178704 -0.974583 0.135100 }
+        <Binormal> { -0.800739 -0.064433 0.594377 }
+      }
+      <Normal> { 0.577136 0.178564 0.796869 }
+    }
+    <Vertex> 4296 {
+      -25.6408748627 -61.0903358459 13.7193555832
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.052513 -0.994694 0.088471 }
+        <Binormal> { -0.971086 -0.030208 0.236762 }
+      }
+      <Normal> { 0.232856 0.097903 0.967559 }
+    }
+    <Vertex> 4297 {
+      -27.1535263062 -61.21251297 14.4811506271
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.178704 -0.974583 0.135100 }
+        <Binormal> { -0.800739 -0.064433 0.594377 }
+      }
+      <Normal> { 0.577136 0.178564 0.796869 }
+    }
+    <Vertex> 4298 {
+      -27.1226387024 -64.9619445801 14.8186845779
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.011674 -0.996669 0.080718 }
+        <Binormal> { -0.751613 0.059964 0.631709 }
+      }
+      <Normal> { 0.632344 -0.126072 0.764336 }
+    }
+    <Vertex> 4299 {
+      -25.7606678009 -64.9314041138 13.9965600967
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.031091 -0.996924 0.071947 }
+        <Binormal> { -0.947236 0.050982 0.297085 }
+      }
+      <Normal> { 0.296457 -0.049532 0.953734 }
+    }
+    <Vertex> 4300 {
+      -25.6408748627 -61.0903358459 13.7193555832
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.052513 -0.994694 0.088471 }
+        <Binormal> { -0.971086 -0.030208 0.236762 }
+      }
+      <Normal> { 0.232856 0.097903 0.967559 }
+    }
+    <Vertex> 4301 {
+      -25.7606678009 -64.9314041138 13.9965600967
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.031091 -0.996924 0.071947 }
+        <Binormal> { -0.947236 0.050982 0.297085 }
+      }
+      <Normal> { 0.296457 -0.049532 0.953734 }
+    }
+    <Vertex> 4302 {
+      -24.0562496185 -64.8925170898 13.7604618073
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.054562 -0.996287 0.066600 }
+        <Binormal> { -0.996435 0.051223 -0.050076 }
+      }
+      <Normal> { -0.048891 0.025056 0.998474 }
+    }
+    <Vertex> 4303 {
+      -23.7489376068 -60.9347991943 13.5163316727
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.026787 -0.997814 0.060415 }
+        <Binormal> { -0.998514 0.024002 -0.046312 }
+      }
+      <Normal> { -0.044343 0.077120 0.996033 }
+    }
+    <Vertex> 4304 {
+      -1.72210097313 -61.5474777222 13.4621458054
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.744363 -0.369499 0.556232 }
+        <Binormal> { -0.452766 -0.891347 0.013790 }
+      }
+      <Normal> { -0.478744 0.256172 0.839717 }
+    }
+    <Vertex> 4305 {
+      -0.996917665005 -61.9727554321 13.8902273178
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.610913 -0.673000 0.416962 }
+        <Binormal> { -0.682527 -0.695621 -0.122766 }
+      }
+      <Normal> { -0.258156 0.083438 0.962462 }
+    }
+    <Vertex> 4306 {
+      0.800136804581 -58.5618629456 14.3294782639
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.668999 -0.380404 0.638540 }
+        <Binormal> { -0.159277 -0.898338 -0.368301 }
+      }
+      <Normal> { -0.833308 -0.076693 0.547441 }
+    }
+    <Vertex> 4307 {
+      0.188428789377 -58.0374794006 13.4621458054
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.790706 0.042307 0.610733 }
+        <Binormal> { -0.081834 -0.977945 0.173694 }
+      }
+      <Normal> { -0.669576 0.183844 0.719626 }
+    }
+    <Vertex> 4308 {
+      -1.72210097313 -61.5474777222 13.4621458054
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.744363 -0.369499 0.556232 }
+        <Binormal> { -0.452766 -0.891347 0.013790 }
+      }
+      <Normal> { -0.478744 0.256172 0.839717 }
+    }
+    <Vertex> 4309 {
+      0.188428789377 -58.0374794006 13.4621458054
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.790706 0.042307 0.610733 }
+        <Binormal> { -0.081834 -0.977945 0.173694 }
+      }
+      <Normal> { -0.669576 0.183844 0.719626 }
+    }
+    <Vertex> 4310 {
+      -0.649426758289 -58.0259895325 12.9442148209
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.400644 0.905865 0.137454 }
+        <Binormal> { 0.842258 -0.421069 0.320001 }
+      }
+      <Normal> { -0.306040 0.106754 0.945982 }
+    }
+    <Vertex> 4311 {
+      -2.56024861336 -61.4559631348 12.9210128784
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.768843 -0.291416 0.569172 }
+        <Binormal> { -0.370463 -0.894809 0.042282 }
+      }
+      <Normal> { -0.308298 0.171850 0.935606 }
+    }
+    <Vertex> 4312 {
+      -1.72210097313 -61.5474777222 13.4621458054
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.744363 -0.369499 0.556232 }
+        <Binormal> { -0.452766 -0.891347 0.013790 }
+      }
+      <Normal> { -0.478744 0.256172 0.839717 }
+    }
+    <Vertex> 4313 {
+      -2.56024861336 -61.4559631348 12.9210128784
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.768843 -0.291416 0.569172 }
+        <Binormal> { -0.370463 -0.894809 0.042282 }
+      }
+      <Normal> { -0.308298 0.171850 0.935606 }
+    }
+    <Vertex> 4314 {
+      -4.65595674515 -64.878578186 12.9149770737
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.632819 -0.520570 0.573190 }
+        <Binormal> { -0.576699 -0.772916 -0.065268 }
+      }
+      <Normal> { -0.314768 0.155797 0.936277 }
+    }
+    <Vertex> 4315 {
+      -3.73602843285 -64.9642791748 13.4998779297
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.552057 -0.717170 0.425324 }
+        <Binormal> { -0.723193 -0.665706 -0.183813 }
+      }
+      <Normal> { -0.413373 0.204047 0.887387 }
+    }
+    <Vertex> 4316 {
+      -1.72210097313 -61.5474777222 13.4621458054
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.744363 -0.369499 0.556232 }
+        <Binormal> { -0.452766 -0.891347 0.013790 }
+      }
+      <Normal> { -0.478744 0.256172 0.839717 }
+    }
+    <Vertex> 4317 {
+      -3.73602843285 -64.9642791748 13.4998779297
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.552057 -0.717170 0.425324 }
+        <Binormal> { -0.723193 -0.665706 -0.183813 }
+      }
+      <Normal> { -0.413373 0.204047 0.887387 }
+    }
+    <Vertex> 4318 {
+      -2.4554605484 -65.1486206055 13.9283847809
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.630565 -0.677013 0.379528 }
+        <Binormal> { -0.703589 -0.675102 -0.035293 }
+      }
+      <Normal> { -0.142094 0.096591 0.985107 }
+    }
+    <Vertex> 4319 {
+      -0.996917665005 -61.9727554321 13.8902273178
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.610913 -0.673000 0.416962 }
+        <Binormal> { -0.682527 -0.695621 -0.122766 }
+      }
+      <Normal> { -0.258156 0.083438 0.962462 }
+    }
+    <Vertex> 4320 {
+      -11.0707702637 -60.7626609802 13.8193187714
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.436153 -0.899196 -0.034879 }
+        <Binormal> { -0.898985 0.437087 -0.026716 }
+      }
+      <Normal> { -0.040132 -0.021485 0.998932 }
+    }
+    <Vertex> 4321 {
+      -8.8817987442 -60.8022117615 13.8965911865
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.508582 -0.859841 -0.044925 }
+        <Binormal> { -0.808323 0.458843 0.368770 }
+      }
+      <Normal> { 0.293191 -0.229408 0.928098 }
+    }
+    <Vertex> 4322 {
+      -7.17759752274 -57.8108673096 14.1112775803
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.791409 -0.611264 -0.005297 }
+        <Binormal> { -0.562359 0.724888 0.369730 }
+      }
+      <Normal> { 0.338389 -0.205817 0.918210 }
+    }
+    <Vertex> 4323 {
+      -9.37350463867 -57.4066810608 14.1212005615
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.449862 -0.889506 -0.080014 }
+        <Binormal> { -0.891706 0.448358 0.029087 }
+      }
+      <Normal> { -0.034394 -0.132664 0.990539 }
+    }
+    <Vertex> 4324 {
+      -11.0707702637 -60.7626609802 13.8193187714
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.436153 -0.899196 -0.034879 }
+        <Binormal> { -0.898985 0.437087 -0.026716 }
+      }
+      <Normal> { -0.040132 -0.021485 0.998932 }
+    }
+    <Vertex> 4325 {
+      -9.37350463867 -57.4066810608 14.1212005615
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.449862 -0.889506 -0.080014 }
+        <Binormal> { -0.891706 0.448358 0.029087 }
+      }
+      <Normal> { -0.034394 -0.132664 0.990539 }
+    }
+    <Vertex> 4326 {
+      -12.3883171082 -56.1570320129 13.7950839996
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.379541 -0.923883 -0.048875 }
+        <Binormal> { -0.914576 0.380555 -0.091433 }
+      }
+      <Normal> { -0.141606 -0.103793 0.984436 }
+    }
+    <Vertex> 4327 {
+      -13.9429864883 -60.7169418335 13.6781978607
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.344692 -0.938693 -0.006602 }
+        <Binormal> { -0.938411 0.344426 0.023121 }
+      }
+      <Normal> { 0.024384 -0.000671 0.999695 }
+    }
+    <Vertex> 4328 {
+      -11.0707702637 -60.7626609802 13.8193187714
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.436153 -0.899196 -0.034879 }
+        <Binormal> { -0.898985 0.437087 -0.026716 }
+      }
+      <Normal> { -0.040132 -0.021485 0.998932 }
+    }
+    <Vertex> 4329 {
+      -13.9429864883 -60.7169418335 13.6781978607
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.344692 -0.938693 -0.006602 }
+        <Binormal> { -0.938411 0.344426 0.023121 }
+      }
+      <Normal> { 0.024384 -0.000671 0.999695 }
+    }
+    <Vertex> 4330 {
+      -15.5305328369 -64.7141723633 13.7349014282
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.412405 -0.911000 -0.000621 }
+        <Binormal> { -0.907434 0.410730 0.088305 }
+      }
+      <Normal> { 0.082522 -0.031831 0.996063 }
+    }
+    <Vertex> 4331 {
+      -12.9185094833 -64.3539581299 13.7574453354
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.457448 -0.889104 -0.015318 }
+        <Binormal> { -0.888414 0.457652 -0.032433 }
+      }
+      <Normal> { -0.029695 0.013184 0.999451 }
+    }
+    <Vertex> 4332 {
+      -11.0707702637 -60.7626609802 13.8193187714
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.436153 -0.899196 -0.034879 }
+        <Binormal> { -0.898985 0.437087 -0.026716 }
+      }
+      <Normal> { -0.040132 -0.021485 0.998932 }
+    }
+    <Vertex> 4333 {
+      -12.9185094833 -64.3539581299 13.7574453354
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.457448 -0.889104 -0.015318 }
+        <Binormal> { -0.888414 0.457652 -0.032433 }
+      }
+      <Normal> { -0.029695 0.013184 0.999451 }
+    }
+    <Vertex> 4334 {
+      -10.8337583542 -63.9921989441 13.788312912
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.488700 -0.872178 -0.021884 }
+        <Binormal> { -0.817973 0.449358 0.357490 }
+      }
+      <Normal> { 0.318857 -0.162450 0.933775 }
+    }
+    <Vertex> 4335 {
+      -8.8817987442 -60.8022117615 13.8965911865
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.508582 -0.859841 -0.044925 }
+        <Binormal> { -0.808323 0.458843 0.368770 }
+      }
+      <Normal> { 0.293191 -0.229408 0.928098 }
+    }
+    <Vertex> 4336 {
+      9.9826593399 -44.2888755798 20.3069419861
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.901511 0.428218 0.062513 }
+        <Binormal> { -0.192997 0.268548 0.943678 }
+      }
+      <Normal> { -0.382519 0.865078 -0.324412 }
+    }
+    <Vertex> 4337 {
+      12.9283361435 -43.3405036926 19.8198032379
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.989836 0.119750 0.076716 }
+        <Binormal> { -0.095757 0.162515 0.981834 }
+      }
+      <Normal> { -0.086306 0.981475 -0.170873 }
+    }
+    <Vertex> 4338 {
+      13.0025978088 -44.145488739 17.2435398102
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.980441 0.182194 0.074432 }
+        <Binormal> { -0.121433 0.262426 0.957187 }
+      }
+      <Normal> { -0.142521 0.949797 -0.278481 }
+    }
+    <Vertex> 4339 {
+      9.92436504364 -45.2900428772 17.769361496
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.883393 0.468086 0.022640 }
+        <Binormal> { -0.072338 0.088932 0.983892 }
+      }
+      <Normal> { -0.337382 0.934996 -0.109317 }
+    }
+    <Vertex> 4340 {
+      9.9826593399 -44.2888755798 20.3069419861
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.901511 0.428218 0.062513 }
+        <Binormal> { -0.192997 0.268548 0.943678 }
+      }
+      <Normal> { -0.382519 0.865078 -0.324412 }
+    }
+    <Vertex> 4341 {
+      9.92436504364 -45.2900428772 17.769361496
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.883393 0.468086 0.022640 }
+        <Binormal> { -0.072338 0.088932 0.983892 }
+      }
+      <Normal> { -0.337382 0.934996 -0.109317 }
+    }
+    <Vertex> 4342 {
+      7.37030935287 -46.6802444458 18.2744445801
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.838092 0.542594 0.056519 }
+        <Binormal> { -0.010567 -0.086285 0.985043 }
+      }
+      <Normal> { -0.414747 0.906827 0.074984 }
+    }
+    <Vertex> 4343 {
+      7.55814838409 -45.6996002197 20.5857982635
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.815909 0.572181 0.083068 }
+        <Binormal> { -0.297552 0.293270 0.902532 }
+      }
+      <Normal> { -0.407147 0.820643 -0.400891 }
+    }
+    <Vertex> 4344 {
+      9.9826593399 -44.2888755798 20.3069419861
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.901511 0.428218 0.062513 }
+        <Binormal> { -0.192997 0.268548 0.943678 }
+      }
+      <Normal> { -0.382519 0.865078 -0.324412 }
+    }
+    <Vertex> 4345 {
+      7.55814838409 -45.6996002197 20.5857982635
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.815909 0.572181 0.083068 }
+        <Binormal> { -0.297552 0.293270 0.902532 }
+      }
+      <Normal> { -0.407147 0.820643 -0.400891 }
+    }
+    <Vertex> 4346 {
+      6.66407394409 -44.6763458252 22.7401390076
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.845304 0.514979 0.142328 }
+        <Binormal> { -0.252029 0.149485 0.955957 }
+      }
+      <Normal> { -0.484024 0.836024 -0.258339 }
+    }
+    <Vertex> 4347 {
+      9.52238559723 -43.4835357666 22.7827987671
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.939795 0.319499 0.121264 }
+        <Binormal> { -0.126751 -0.003285 0.990976 }
+      }
+      <Normal> { -0.276620 0.960418 -0.032197 }
+    }
+    <Vertex> 4348 {
+      9.9826593399 -44.2888755798 20.3069419861
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.901511 0.428218 0.062513 }
+        <Binormal> { -0.192997 0.268548 0.943678 }
+      }
+      <Normal> { -0.382519 0.865078 -0.324412 }
+    }
+    <Vertex> 4349 {
+      9.52238559723 -43.4835357666 22.7827987671
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.939795 0.319499 0.121264 }
+        <Binormal> { -0.126751 -0.003285 0.990976 }
+      }
+      <Normal> { -0.276620 0.960418 -0.032197 }
+    }
+    <Vertex> 4350 {
+      12.367231369 -43.1831855774 22.3011569977
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.996682 -0.000604 0.081388 }
+        <Binormal> { -0.078342 -0.258393 0.957462 }
+      }
+      <Normal> { 0.080752 0.960601 0.265847 }
+    }
+    <Vertex> 4351 {
+      12.9283361435 -43.3405036926 19.8198032379
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.989836 0.119750 0.076716 }
+        <Binormal> { -0.095757 0.162515 0.981834 }
+      }
+      <Normal> { -0.086306 0.981475 -0.170873 }
+    }
+    <Vertex> 4352 {
+      16.0139408112 -43.7566413879 19.6378803253
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.924326 -0.337711 0.177687 }
+        <Binormal> { -0.180702 0.022742 0.983233 }
+      }
+      <Normal> { 0.330882 0.942839 0.039003 }
+    }
+    <Vertex> 4353 {
+      18.639831543 -45.105884552 19.8413410187
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.851044 -0.462103 0.249368 }
+        <Binormal> { -0.275812 -0.008071 0.926335 }
+      }
+      <Normal> { 0.644215 0.738670 0.198248 }
+    }
+    <Vertex> 4354 {
+      19.5960426331 -46.2401428223 17.3689231873
+      <UV>  {
+        -0.042124 0.762705
+        <Tangent> { 0.843839 -0.484092 0.231496 }
+        <Binormal> { 0.065871 0.494118 0.793163 }
+      }
+      <Normal> { 0.793512 0.484725 -0.367870 }
+    }
+    <Vertex> 4355 {
+      16.3692874908 -44.0825653076 17.0995540619
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.942090 -0.286151 0.174886 }
+        <Binormal> { -0.068815 0.345051 0.935276 }
+      }
+      <Normal> { 0.292184 0.904019 -0.312021 }
+    }
+    <Vertex> 4356 {
+      16.0139408112 -43.7566413879 19.6378803253
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.924326 -0.337711 0.177687 }
+        <Binormal> { -0.180702 0.022742 0.983233 }
+      }
+      <Normal> { 0.330882 0.942839 0.039003 }
+    }
+    <Vertex> 4357 {
+      16.3692874908 -44.0825653076 17.0995540619
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.942090 -0.286151 0.174886 }
+        <Binormal> { -0.068815 0.345051 0.935276 }
+      }
+      <Normal> { 0.292184 0.904019 -0.312021 }
+    }
+    <Vertex> 4358 {
+      13.0025978088 -44.145488739 17.2435398102
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.980441 0.182194 0.074432 }
+        <Binormal> { -0.121433 0.262426 0.957187 }
+      }
+      <Normal> { -0.142521 0.949797 -0.278481 }
+    }
+    <Vertex> 4359 {
+      12.9283361435 -43.3405036926 19.8198032379
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.989836 0.119750 0.076716 }
+        <Binormal> { -0.095757 0.162515 0.981834 }
+      }
+      <Normal> { -0.086306 0.981475 -0.170873 }
+    }
+    <Vertex> 4360 {
+      16.0139408112 -43.7566413879 19.6378803253
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.924326 -0.337711 0.177687 }
+        <Binormal> { -0.180702 0.022742 0.983233 }
+      }
+      <Normal> { 0.330882 0.942839 0.039003 }
+    }
+    <Vertex> 4361 {
+      12.9283361435 -43.3405036926 19.8198032379
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.989836 0.119750 0.076716 }
+        <Binormal> { -0.095757 0.162515 0.981834 }
+      }
+      <Normal> { -0.086306 0.981475 -0.170873 }
+    }
+    <Vertex> 4362 {
+      12.367231369 -43.1831855774 22.3011569977
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.996682 -0.000604 0.081388 }
+        <Binormal> { -0.078342 -0.258393 0.957462 }
+      }
+      <Normal> { 0.080752 0.960601 0.265847 }
+    }
+    <Vertex> 4363 {
+      15.1503429413 -44.1010856628 22.1357250214
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.852594 -0.497638 0.159497 }
+        <Binormal> { -0.368626 -0.356399 0.858513 }
+      }
+      <Normal> { 0.369640 0.791192 0.487167 }
+    }
+    <Vertex> 4364 {
+      16.0139408112 -43.7566413879 19.6378803253
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.924326 -0.337711 0.177687 }
+        <Binormal> { -0.180702 0.022742 0.983233 }
+      }
+      <Normal> { 0.330882 0.942839 0.039003 }
+    }
+    <Vertex> 4365 {
+      15.1503429413 -44.1010856628 22.1357250214
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.852594 -0.497638 0.159497 }
+        <Binormal> { -0.368626 -0.356399 0.858513 }
+      }
+      <Normal> { 0.369640 0.791192 0.487167 }
+    }
+    <Vertex> 4366 {
+      17.6717739105 -45.9213790894 22.1716346741
+      <UV>  {
+        -0.073782 0.891829
+        <Tangent> { 0.794540 -0.569780 0.209898 }
+        <Binormal> { -0.478439 -0.384142 0.768290 }
+      }
+      <Normal> { 0.501938 0.607013 0.616077 }
+    }
+    <Vertex> 4367 {
+      18.639831543 -45.105884552 19.8413410187
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.851044 -0.462103 0.249368 }
+        <Binormal> { -0.275812 -0.008071 0.926335 }
+      }
+      <Normal> { 0.644215 0.738670 0.198248 }
+    }
+    <Vertex> 4368 {
+      6.03604078293 -46.6705284119 20.142873764
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.939507 0.339729 -0.043716 }
+        <Binormal> { -0.108162 0.415336 0.903156 }
+      }
+      <Normal> { -0.316507 0.846858 -0.427351 }
+    }
+    <Vertex> 4369 {
+      7.55814838409 -45.6996002197 20.5857982635
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.918767 0.356872 -0.168847 }
+        <Binormal> { -0.004504 0.437071 0.899279 }
+      }
+      <Normal> { -0.407147 0.820643 -0.400891 }
+    }
+    <Vertex> 4370 {
+      7.37030935287 -46.6802444458 18.2744445801
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.906385 0.401825 -0.130394 }
+        <Binormal> { 0.148375 -0.013884 0.988590 }
+      }
+      <Normal> { -0.414747 0.906827 0.074984 }
+    }
+    <Vertex> 4371 {
+      5.57615709305 -47.4801216125 18.356212616
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.923177 0.378248 -0.068363 }
+        <Binormal> { 0.064659 0.022009 0.994928 }
+      }
+      <Normal> { -0.445998 0.894986 0.009186 }
+    }
+    <Vertex> 4372 {
+      6.03604078293 -46.6705284119 20.142873764
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.939507 0.339729 -0.043716 }
+        <Binormal> { -0.108162 0.415336 0.903156 }
+      }
+      <Normal> { -0.316507 0.846858 -0.427351 }
+    }
+    <Vertex> 4373 {
+      5.57615709305 -47.4801216125 18.356212616
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.923177 0.378248 -0.068363 }
+        <Binormal> { 0.064659 0.022009 0.994928 }
+      }
+      <Normal> { -0.445998 0.894986 0.009186 }
+    }
+    <Vertex> 4374 {
+      4.23078632355 -47.966583252 18.5069332123
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.955504 0.290663 0.050267 }
+        <Binormal> { -0.074434 0.080878 0.947225 }
+      }
+      <Normal> { -0.558916 0.821314 -0.114048 }
+    }
+    <Vertex> 4375 {
+      5.24484157562 -46.460559845 20.6502380371
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.950280 0.268711 0.157357 }
+        <Binormal> { -0.227392 0.280328 0.894517 }
+      }
+      <Normal> { -0.446730 0.814997 -0.368969 }
+    }
+    <Vertex> 4376 {
+      6.03604078293 -46.6705284119 20.142873764
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.939507 0.339729 -0.043716 }
+        <Binormal> { -0.108162 0.415336 0.903156 }
+      }
+      <Normal> { -0.316507 0.846858 -0.427351 }
+    }
+    <Vertex> 4377 {
+      5.24484157562 -46.460559845 20.6502380371
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.950280 0.268711 0.157357 }
+        <Binormal> { -0.227392 0.280328 0.894517 }
+      }
+      <Normal> { -0.446730 0.814997 -0.368969 }
+    }
+    <Vertex> 4378 {
+      6.66407394409 -44.6763458252 22.7401390076
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.896634 0.410426 -0.166126 }
+        <Binormal> { 0.032857 0.312045 0.948263 }
+      }
+      <Normal> { -0.484024 0.836024 -0.258339 }
+    }
+    <Vertex> 4379 {
+      7.55814838409 -45.6996002197 20.5857982635
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.918767 0.356872 -0.168847 }
+        <Binormal> { -0.004504 0.437071 0.899279 }
+      }
+      <Normal> { -0.407147 0.820643 -0.400891 }
+    }
+    <Vertex> 4380 {
+      3.94214916229 -47.6393699646 20.169883728
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.731050 0.641449 -0.232612 }
+        <Binormal> { 0.044634 0.295183 0.954266 }
+      }
+      <Normal> { -0.669820 0.717612 -0.190649 }
+    }
+    <Vertex> 4381 {
+      5.24484157562 -46.460559845 20.6502380371
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.801461 0.563199 -0.201164 }
+        <Binormal> { -0.043855 0.385580 0.904786 }
+      }
+      <Normal> { -0.446730 0.814997 -0.368969 }
+    }
+    <Vertex> 4382 {
+      4.23078632355 -47.966583252 18.5069332123
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.786024 0.616686 -0.043180 }
+        <Binormal> { -0.034868 0.113778 0.990248 }
+      }
+      <Normal> { -0.558916 0.821314 -0.114048 }
+    }
+    <Vertex> 4383 {
+      2.75535011292 -49.244228363 18.3163547516
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.681717 0.720144 -0.129051 }
+        <Binormal> { 0.013669 0.163819 0.986366 }
+      }
+      <Normal> { -0.732566 0.673025 -0.101627 }
+    }
+    <Vertex> 4384 {
+      3.94214916229 -47.6393699646 20.169883728
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.731050 0.641449 -0.232612 }
+        <Binormal> { 0.044634 0.295183 0.954266 }
+      }
+      <Normal> { -0.669820 0.717612 -0.190649 }
+    }
+    <Vertex> 4385 {
+      2.75535011292 -49.244228363 18.3163547516
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.681717 0.720144 -0.129051 }
+        <Binormal> { 0.013669 0.163819 0.986366 }
+      }
+      <Normal> { -0.732566 0.673025 -0.101627 }
+    }
+    <Vertex> 4386 {
+      1.32257354259 -51.0387268066 19.057466507
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.624334 0.726292 -0.287587 }
+        <Binormal> { 0.091097 0.291385 0.933648 }
+      }
+      <Normal> { -0.878842 0.473067 -0.061892 }
+    }
+    <Vertex> 4387 {
+      3.91500663757 -47.3672142029 21.2607917786
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.705564 0.606234 -0.366959 }
+        <Binormal> { 0.164209 0.363690 0.916563 }
+      }
+      <Normal> { -0.707144 0.691458 -0.147679 }
+    }
+    <Vertex> 4388 {
+      3.94214916229 -47.6393699646 20.169883728
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.731050 0.641449 -0.232612 }
+        <Binormal> { 0.044634 0.295183 0.954266 }
+      }
+      <Normal> { -0.669820 0.717612 -0.190649 }
+    }
+    <Vertex> 4389 {
+      3.91500663757 -47.3672142029 21.2607917786
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.705564 0.606234 -0.366959 }
+        <Binormal> { 0.164209 0.363690 0.916563 }
+      }
+      <Normal> { -0.707144 0.691458 -0.147679 }
+    }
+    <Vertex> 4390 {
+      6.66407394409 -44.6763458252 22.7401390076
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.896634 0.410426 -0.166126 }
+        <Binormal> { 0.032857 0.312045 0.948263 }
+      }
+      <Normal> { -0.484024 0.836024 -0.258339 }
+    }
+    <Vertex> 4391 {
+      5.24484157562 -46.460559845 20.6502380371
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.801461 0.563199 -0.201164 }
+        <Binormal> { -0.043855 0.385580 0.904786 }
+      }
+      <Normal> { -0.446730 0.814997 -0.368969 }
+    }
+    <Vertex> 4392 {
+      8.1415643692 -44.2639694214 24.5978431702
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.985211 0.151042 0.080907 }
+        <Binormal> { 0.002140 -0.482983 0.875604 }
+      }
+      <Normal> { -0.171117 0.862514 0.476180 }
+    }
+    <Vertex> 4393 {
+      10.9527997971 -44.1796150208 24.1180343628
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.951896 -0.306081 0.014435 }
+        <Binormal> { -0.220840 -0.652672 0.723674 }
+      }
+      <Normal> { 0.175390 0.703848 0.688314 }
+    }
+    <Vertex> 4394 {
+      12.367231369 -43.1831855774 22.3011569977
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.967058 -0.252379 0.033209 }
+        <Binormal> { -0.098995 -0.254408 0.949337 }
+      }
+      <Normal> { 0.080752 0.960601 0.265847 }
+    }
+    <Vertex> 4395 {
+      9.52238559723 -43.4835357666 22.7827987671
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.973010 0.217440 0.077278 }
+        <Binormal> { -0.081220 0.009952 0.994644 }
+      }
+      <Normal> { -0.276620 0.960418 -0.032197 }
+    }
+    <Vertex> 4396 {
+      8.1415643692 -44.2639694214 24.5978431702
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.985211 0.151042 0.080907 }
+        <Binormal> { 0.002140 -0.482983 0.875604 }
+      }
+      <Normal> { -0.171117 0.862514 0.476180 }
+    }
+    <Vertex> 4397 {
+      9.52238559723 -43.4835357666 22.7827987671
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.973010 0.217440 0.077278 }
+        <Binormal> { -0.081220 0.009952 0.994644 }
+      }
+      <Normal> { -0.276620 0.960418 -0.032197 }
+    }
+    <Vertex> 4398 {
+      6.66407394409 -44.6763458252 22.7401390076
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.913980 0.361306 0.184657 }
+        <Binormal> { -0.247717 0.146739 0.938990 }
+      }
+      <Normal> { -0.484024 0.836024 -0.258339 }
+    }
+    <Vertex> 4399 {
+      5.61473226547 -45.3035202026 24.4929733276
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.927277 0.328303 0.179928 }
+        <Binormal> { -0.103194 -0.223885 0.940328 }
+      }
+      <Normal> { -0.566424 0.813532 0.131535 }
+    }
+    <Vertex> 4400 {
+      8.1415643692 -44.2639694214 24.5978431702
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.985211 0.151042 0.080907 }
+        <Binormal> { 0.002140 -0.482983 0.875604 }
+      }
+      <Normal> { -0.171117 0.862514 0.476180 }
+    }
+    <Vertex> 4401 {
+      5.61473226547 -45.3035202026 24.4929733276
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.927277 0.328303 0.179928 }
+        <Binormal> { -0.103194 -0.223885 0.940328 }
+      }
+      <Normal> { -0.566424 0.813532 0.131535 }
+    }
+    <Vertex> 4402 {
+      4.32910919189 -46.7539596558 25.6139812469
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.920862 0.314625 0.230271 }
+        <Binormal> { -0.062071 -0.440554 0.850166 }
+      }
+      <Normal> { -0.628071 0.708640 0.321360 }
+    }
+    <Vertex> 4403 {
+      6.71546792984 -45.6681022644 25.9967098236
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.984959 0.125808 0.118441 }
+        <Binormal> { -0.010896 -0.638806 0.769148 }
+      }
+      <Normal> { -0.159734 0.760491 0.629353 }
+    }
+    <Vertex> 4404 {
+      8.1415643692 -44.2639694214 24.5978431702
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.985211 0.151042 0.080907 }
+        <Binormal> { 0.002140 -0.482983 0.875604 }
+      }
+      <Normal> { -0.171117 0.862514 0.476180 }
+    }
+    <Vertex> 4405 {
+      6.71546792984 -45.6681022644 25.9967098236
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.984959 0.125808 0.118441 }
+        <Binormal> { -0.010896 -0.638806 0.769148 }
+      }
+      <Normal> { -0.159734 0.760491 0.629353 }
+    }
+    <Vertex> 4406 {
+      9.35116004944 -45.5462150574 25.4901542664
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.949025 -0.314816 -0.015535 }
+        <Binormal> { -0.230878 -0.727832 0.645241 }
+      }
+      <Normal> { 0.191748 0.616291 0.763787 }
+    }
+    <Vertex> 4407 {
+      10.9527997971 -44.1796150208 24.1180343628
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.951896 -0.306081 0.014435 }
+        <Binormal> { -0.220840 -0.652672 0.723674 }
+      }
+      <Normal> { 0.175390 0.703848 0.688314 }
+    }
+    <Vertex> 4408 {
+      13.6350803375 -45.2647743225 23.9580993652
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.774765 -0.624080 0.101308 }
+        <Binormal> { -0.534375 -0.560751 0.632339 }
+      }
+      <Normal> { 0.329142 0.551042 0.766808 }
+    }
+    <Vertex> 4409 {
+      16.1216907501 -47.2420883179 23.9381656647
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.675450 -0.729452 0.108014 }
+        <Binormal> { -0.631749 -0.497238 0.592553 }
+      }
+      <Normal> { 0.412091 0.432234 0.802057 }
+    }
+    <Vertex> 4410 {
+      17.6717739105 -45.9213790894 22.1716346741
+      <UV>  {
+        -0.042124 0.762705
+        <Tangent> { 0.914994 -0.284435 -0.286152 }
+        <Binormal> { -0.001536 -0.707337 0.698182 }
+      }
+      <Normal> { 0.501938 0.607013 0.616077 }
+    }
+    <Vertex> 4411 {
+      15.1503429413 -44.1010856628 22.1357250214
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.817086 -0.565541 0.111954 }
+        <Binormal> { -0.364090 -0.356675 0.855519 }
+      }
+      <Normal> { 0.369640 0.791192 0.487167 }
+    }
+    <Vertex> 4412 {
+      13.6350803375 -45.2647743225 23.9580993652
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.774765 -0.624080 0.101308 }
+        <Binormal> { -0.534375 -0.560751 0.632339 }
+      }
+      <Normal> { 0.329142 0.551042 0.766808 }
+    }
+    <Vertex> 4413 {
+      15.1503429413 -44.1010856628 22.1357250214
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.817086 -0.565541 0.111954 }
+        <Binormal> { -0.364090 -0.356675 0.855519 }
+      }
+      <Normal> { 0.369640 0.791192 0.487167 }
+    }
+    <Vertex> 4414 {
+      12.367231369 -43.1831855774 22.3011569977
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.967058 -0.252379 0.033209 }
+        <Binormal> { -0.098995 -0.254408 0.949337 }
+      }
+      <Normal> { 0.080752 0.960601 0.265847 }
+    }
+    <Vertex> 4415 {
+      10.9527997971 -44.1796150208 24.1180343628
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.951896 -0.306081 0.014435 }
+        <Binormal> { -0.220840 -0.652672 0.723674 }
+      }
+      <Normal> { 0.175390 0.703848 0.688314 }
+    }
+    <Vertex> 4416 {
+      13.6350803375 -45.2647743225 23.9580993652
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.774765 -0.624080 0.101308 }
+        <Binormal> { -0.534375 -0.560751 0.632339 }
+      }
+      <Normal> { 0.329142 0.551042 0.766808 }
+    }
+    <Vertex> 4417 {
+      10.9527997971 -44.1796150208 24.1180343628
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.951896 -0.306081 0.014435 }
+        <Binormal> { -0.220840 -0.652672 0.723674 }
+      }
+      <Normal> { 0.175390 0.703848 0.688314 }
+    }
+    <Vertex> 4418 {
+      9.35116004944 -45.5462150574 25.4901542664
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.949025 -0.314816 -0.015535 }
+        <Binormal> { -0.230878 -0.727832 0.645241 }
+      }
+      <Normal> { 0.191748 0.616291 0.763787 }
+    }
+    <Vertex> 4419 {
+      11.881146431 -46.4709625244 25.2588729858
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.728690 -0.675580 0.112264 }
+        <Binormal> { -0.603769 -0.556420 0.570562 }
+      }
+      <Normal> { 0.310495 0.495132 0.811426 }
+    }
+    <Vertex> 4420 {
+      13.6350803375 -45.2647743225 23.9580993652
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.774765 -0.624080 0.101308 }
+        <Binormal> { -0.534375 -0.560751 0.632339 }
+      }
+      <Normal> { 0.329142 0.551042 0.766808 }
+    }
+    <Vertex> 4421 {
+      11.881146431 -46.4709625244 25.2588729858
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.728690 -0.675580 0.112264 }
+        <Binormal> { -0.603769 -0.556420 0.570562 }
+      }
+      <Normal> { 0.310495 0.495132 0.811426 }
+    }
+    <Vertex> 4422 {
+      13.9417600632 -48.6074409485 25.5346794128
+      <UV>  {
+        -0.073782 0.891829
+        <Tangent> { 0.617428 -0.773336 0.143994 }
+        <Binormal> { -0.707192 -0.466314 0.527960 }
+      }
+      <Normal> { 0.378399 0.381146 0.843501 }
+    }
+    <Vertex> 4423 {
+      16.1216907501 -47.2420883179 23.9381656647
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.675450 -0.729452 0.108014 }
+        <Binormal> { -0.631749 -0.497238 0.592553 }
+      }
+      <Normal> { 0.412091 0.432234 0.802057 }
+    }
+    <Vertex> 4424 {
+      6.11936616898 -46.7338752747 27.2240200043
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.986173 0.164445 0.020497 }
+        <Binormal> { 0.090248 -0.636651 0.765686 }
+      }
+      <Normal> { -0.125736 0.755455 0.642964 }
+    }
+    <Vertex> 4425 {
+      8.22842979431 -46.499370575 26.6372184753
+      <UV>  {
+        0.053131 0.854502
+        <Tangent> { 0.984166 -0.004309 -0.177198 }
+        <Binormal> { 0.104845 -0.787960 0.601475 }
+      }
+      <Normal> { 0.220435 0.610187 0.760949 }
+    }
+    <Vertex> 4426 {
+      9.35116004944 -45.5462150574 25.4901542664
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.991960 -0.025425 -0.123970 }
+        <Binormal> { 0.056982 -0.781417 0.616211 }
+      }
+      <Normal> { 0.191748 0.616291 0.763787 }
+    }
+    <Vertex> 4427 {
+      6.71546792984 -45.6681022644 25.9967098236
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.984653 0.148109 0.092312 }
+        <Binormal> { 0.023011 -0.634440 0.772478 }
+      }
+      <Normal> { -0.159734 0.760491 0.629353 }
+    }
+    <Vertex> 4428 {
+      6.11936616898 -46.7338752747 27.2240200043
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.986173 0.164445 0.020497 }
+        <Binormal> { 0.090248 -0.636651 0.765686 }
+      }
+      <Normal> { -0.125736 0.755455 0.642964 }
+    }
+    <Vertex> 4429 {
+      6.71546792984 -45.6681022644 25.9967098236
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.984653 0.148109 0.092312 }
+        <Binormal> { 0.023011 -0.634440 0.772478 }
+      }
+      <Normal> { -0.159734 0.760491 0.629353 }
+    }
+    <Vertex> 4430 {
+      4.32910919189 -46.7539596558 25.6139812469
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.897614 0.354137 0.262443 }
+        <Binormal> { -0.072172 -0.453290 0.858508 }
+      }
+      <Normal> { -0.628071 0.708640 0.321360 }
+    }
+    <Vertex> 4431 {
+      4.06420469284 -47.8142547607 26.9635543823
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.885722 0.383096 0.262172 }
+        <Binormal> { -0.042431 -0.486343 0.854013 }
+      }
+      <Normal> { -0.613788 0.698721 0.367412 }
+    }
+    <Vertex> 4432 {
+      6.11936616898 -46.7338752747 27.2240200043
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.986173 0.164445 0.020497 }
+        <Binormal> { 0.090248 -0.636651 0.765686 }
+      }
+      <Normal> { -0.125736 0.755455 0.642964 }
+    }
+    <Vertex> 4433 {
+      4.06420469284 -47.8142547607 26.9635543823
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.885722 0.383096 0.262172 }
+        <Binormal> { -0.042431 -0.486343 0.854013 }
+      }
+      <Normal> { -0.613788 0.698721 0.367412 }
+    }
+    <Vertex> 4434 {
+      4.35131406784 -48.3970603943 28.6231327057
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.943233 0.309447 0.120638 }
+        <Binormal> { -0.044886 -0.234259 0.951849 }
+      }
+      <Normal> { -0.141240 0.962798 0.230293 }
+    }
+    <Vertex> 4435 {
+      6.05911493301 -47.8354034424 28.232465744
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.982762 0.067049 -0.172286 }
+        <Binormal> { 0.161905 -0.761918 0.627029 }
+      }
+      <Normal> { 0.081759 0.643605 0.760949 }
+    }
+    <Vertex> 4436 {
+      6.11936616898 -46.7338752747 27.2240200043
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.986173 0.164445 0.020497 }
+        <Binormal> { 0.090248 -0.636651 0.765686 }
+      }
+      <Normal> { -0.125736 0.755455 0.642964 }
+    }
+    <Vertex> 4437 {
+      6.05911493301 -47.8354034424 28.232465744
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.982762 0.067049 -0.172286 }
+        <Binormal> { 0.161905 -0.761918 0.627029 }
+      }
+      <Normal> { 0.081759 0.643605 0.760949 }
+    }
+    <Vertex> 4438 {
+      7.93674230576 -47.6438827515 27.5321445465
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.977051 -0.023618 -0.211690 }
+        <Binormal> { 0.085034 -0.863912 0.488858 }
+      }
+      <Normal> { 0.278573 0.493606 0.823847 }
+    }
+    <Vertex> 4439 {
+      8.22842979431 -46.499370575 26.6372184753
+      <UV>  {
+        0.053131 0.854502
+        <Tangent> { 0.984166 -0.004309 -0.177198 }
+        <Binormal> { 0.104845 -0.787960 0.601475 }
+      }
+      <Normal> { 0.220435 0.610187 0.760949 }
+    }
+    <Vertex> 4440 {
+      10.3015356064 -46.9429016113 26.1918983459
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.834455 -0.550813 0.017034 }
+        <Binormal> { -0.447517 -0.659284 0.604124 }
+      }
+      <Normal> { 0.316263 0.515213 0.796533 }
+    }
+    <Vertex> 4441 {
+      11.881146431 -46.4709625244 25.2588729858
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.831954 -0.554786 0.008069 }
+        <Binormal> { -0.454163 -0.672564 0.584186 }
+      }
+      <Normal> { 0.310495 0.495132 0.811426 }
+    }
+    <Vertex> 4442 {
+      9.35116004944 -45.5462150574 25.4901542664
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.924609 -0.376272 -0.059306 }
+        <Binormal> { -0.250842 -0.717576 0.641977 }
+      }
+      <Normal> { 0.191748 0.616291 0.763787 }
+    }
+    <Vertex> 4443 {
+      8.22842979431 -46.499370575 26.6372184753
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.916850 -0.395779 -0.052389 }
+        <Binormal> { -0.269200 -0.709224 0.646694 }
+      }
+      <Normal> { 0.220435 0.610187 0.760949 }
+    }
+    <Vertex> 4444 {
+      10.3015356064 -46.9429016113 26.1918983459
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.834455 -0.550813 0.017034 }
+        <Binormal> { -0.447517 -0.659284 0.604124 }
+      }
+      <Normal> { 0.316263 0.515213 0.796533 }
+    }
+    <Vertex> 4445 {
+      8.22842979431 -46.499370575 26.6372184753
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.916850 -0.395779 -0.052389 }
+        <Binormal> { -0.269200 -0.709224 0.646694 }
+      }
+      <Normal> { 0.220435 0.610187 0.760949 }
+    }
+    <Vertex> 4446 {
+      7.93674230576 -47.6438827515 27.5321445465
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.836839 -0.546838 0.025879 }
+        <Binormal> { -0.463285 -0.682218 0.565403 }
+      }
+      <Normal> { 0.278573 0.493606 0.823847 }
+    }
+    <Vertex> 4447 {
+      10.5679254532 -48.0281295776 26.7095680237
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.709281 -0.697300 0.103412 }
+        <Binormal> { -0.626096 -0.555846 0.546225 }
+      }
+      <Normal> { 0.341044 0.434828 0.833399 }
+    }
+    <Vertex> 4448 {
+      10.3015356064 -46.9429016113 26.1918983459
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.834455 -0.550813 0.017034 }
+        <Binormal> { -0.447517 -0.659284 0.604124 }
+      }
+      <Normal> { 0.316263 0.515213 0.796533 }
+    }
+    <Vertex> 4449 {
+      10.5679254532 -48.0281295776 26.7095680237
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.709281 -0.697300 0.103412 }
+        <Binormal> { -0.626096 -0.555846 0.546225 }
+      }
+      <Normal> { 0.341044 0.434828 0.833399 }
+    }
+    <Vertex> 4450 {
+      13.9417600632 -48.6074409485 25.5346794128
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.712805 -0.696796 0.079901 }
+        <Binormal> { -0.618202 -0.571017 0.535349 }
+      }
+      <Normal> { 0.378399 0.381146 0.843501 }
+    }
+    <Vertex> 4451 {
+      11.881146431 -46.4709625244 25.2588729858
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.831954 -0.554786 0.008069 }
+        <Binormal> { -0.454163 -0.672564 0.584186 }
+      }
+      <Normal> { 0.310495 0.495132 0.811426 }
+    }
+    <Vertex> 4452 {
+      3.78565883636 -47.0839653015 22.8988800049
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.617211 0.709757 0.339552 }
+        <Binormal> { -0.277981 -0.206998 0.937975 }
+      }
+      <Normal> { -0.732109 0.677816 -0.067385 }
+    }
+    <Vertex> 4453 {
+      3.91500663757 -47.3672142029 21.2607917786
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.587818 0.700163 0.405268 }
+        <Binormal> { -0.383625 -0.199775 0.901567 }
+      }
+      <Normal> { -0.707144 0.691458 -0.147679 }
+    }
+    <Vertex> 4454 {
+      1.32257354259 -51.0387268066 19.057466507
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.404186 0.779611 0.478374 }
+        <Binormal> { -0.274554 -0.395399 0.876361 }
+      }
+      <Normal> { -0.878842 0.473067 -0.061892 }
+    }
+    <Vertex> 4455 {
+      2.54712438583 -48.7211151123 23.1774101257
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.572984 0.774446 0.268182 }
+        <Binormal> { -0.113311 -0.249133 0.961531 }
+      }
+      <Normal> { -0.824641 0.563524 0.048830 }
+    }
+    <Vertex> 4456 {
+      3.78565883636 -47.0839653015 22.8988800049
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.617211 0.709757 0.339552 }
+        <Binormal> { -0.277981 -0.206998 0.937975 }
+      }
+      <Normal> { -0.732109 0.677816 -0.067385 }
+    }
+    <Vertex> 4457 {
+      2.54712438583 -48.7211151123 23.1774101257
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.572984 0.774446 0.268182 }
+        <Binormal> { -0.113311 -0.249133 0.961531 }
+      }
+      <Normal> { -0.824641 0.563524 0.048830 }
+    }
+    <Vertex> 4458 {
+      4.32910919189 -46.7539596558 25.6139812469
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.642146 0.715409 0.275388 }
+        <Binormal> { 0.034753 -0.379323 0.904378 }
+      }
+      <Normal> { -0.628071 0.708640 0.321360 }
+    }
+    <Vertex> 4459 {
+      5.61473226547 -45.3035202026 24.4929733276
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.678547 0.650552 0.341110 }
+        <Binormal> { -0.191934 -0.282465 0.920508 }
+      }
+      <Normal> { -0.566424 0.813532 0.131535 }
+    }
+    <Vertex> 4460 {
+      3.78565883636 -47.0839653015 22.8988800049
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.617211 0.709757 0.339552 }
+        <Binormal> { -0.277981 -0.206998 0.937975 }
+      }
+      <Normal> { -0.732109 0.677816 -0.067385 }
+    }
+    <Vertex> 4461 {
+      5.61473226547 -45.3035202026 24.4929733276
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.678547 0.650552 0.341110 }
+        <Binormal> { -0.191934 -0.282465 0.920508 }
+      }
+      <Normal> { -0.566424 0.813532 0.131535 }
+    }
+    <Vertex> 4462 {
+      6.66407394409 -44.6763458252 22.7401390076
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.684055 0.645150 0.340367 }
+        <Binormal> { -0.451223 0.011972 0.884154 }
+      }
+      <Normal> { -0.484024 0.836024 -0.258339 }
+    }
+    <Vertex> 4463 {
+      3.91500663757 -47.3672142029 21.2607917786
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.587818 0.700163 0.405268 }
+        <Binormal> { -0.383625 -0.199775 0.901567 }
+      }
+      <Normal> { -0.707144 0.691458 -0.147679 }
+    }
+    <Vertex> 4464 {
+      0.142636463046 -54.2646751404 20.8099899292
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.266304 0.956070 0.122527 }
+        <Binormal> { -0.158212 -0.082027 0.983919 }
+      }
+      <Normal> { -0.953490 0.271554 -0.130680 }
+    }
+    <Vertex> 4465 {
+      0.730509102345 -52.2979125977 22.3455543518
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.309282 0.916546 0.253551 }
+        <Binormal> { -0.139504 -0.218861 0.961315 }
+      }
+      <Normal> { -0.908078 0.417158 -0.036805 }
+    }
+    <Vertex> 4466 {
+      1.32257354259 -51.0387268066 19.057466507
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.404186 0.779611 0.478374 }
+        <Binormal> { -0.274554 -0.395399 0.876361 }
+      }
+      <Normal> { -0.878842 0.473067 -0.061892 }
+    }
+    <Vertex> 4467 {
+      0.33462780714 -54.513381958 18.5160083771
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.178231 0.982458 0.054871 }
+        <Binormal> { -0.147793 -0.028384 0.988271 }
+      }
+      <Normal> { -0.977050 0.159124 -0.141545 }
+    }
+    <Vertex> 4468 {
+      0.142636463046 -54.2646751404 20.8099899292
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.266304 0.956070 0.122527 }
+        <Binormal> { -0.158212 -0.082027 0.983919 }
+      }
+      <Normal> { -0.953490 0.271554 -0.130680 }
+    }
+    <Vertex> 4469 {
+      0.33462780714 -54.513381958 18.5160083771
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.178231 0.982458 0.054871 }
+        <Binormal> { -0.147793 -0.028384 0.988271 }
+      }
+      <Normal> { -0.977050 0.159124 -0.141545 }
+    }
+    <Vertex> 4470 {
+      0.142042249441 -57.5461273193 18.6940250397
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.130836 0.991381 -0.006794 }
+        <Binormal> { -0.549043 0.078160 0.831951 }
+      }
+      <Normal> { -0.823267 0.120609 -0.554643 }
+    }
+    <Vertex> 4471 {
+      -0.414448976517 -55.2739105225 21.7288970947
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.305814 0.951821 0.022688 }
+        <Binormal> { -0.412710 0.112223 0.854885 }
+      }
+      <Normal> { -0.721366 0.550249 -0.420484 }
+    }
+    <Vertex> 4472 {
+      0.142636463046 -54.2646751404 20.8099899292
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.266304 0.956070 0.122527 }
+        <Binormal> { -0.158212 -0.082027 0.983919 }
+      }
+      <Normal> { -0.953490 0.271554 -0.130680 }
+    }
+    <Vertex> 4473 {
+      -0.414448976517 -55.2739105225 21.7288970947
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.305814 0.951821 0.022688 }
+        <Binormal> { -0.412710 0.112223 0.854885 }
+      }
+      <Normal> { -0.721366 0.550249 -0.420484 }
+    }
+    <Vertex> 4474 {
+      0.20112003386 -53.0143852234 24.4598331451
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.352541 0.916331 0.189873 }
+        <Binormal> { -0.436045 -0.007096 0.843858 }
+      }
+      <Normal> { -0.664418 0.666677 -0.337718 }
+    }
+    <Vertex> 4475 {
+      0.730509102345 -52.2979125977 22.3455543518
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.309282 0.916546 0.253551 }
+        <Binormal> { -0.139504 -0.218861 0.961315 }
+      }
+      <Normal> { -0.908078 0.417158 -0.036805 }
+    }
+    <Vertex> 4476 {
+      2.15280866623 -49.9083518982 24.8670692444
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.458604 0.592803 0.662018 }
+        <Binormal> { -0.284520 -0.607778 0.741331 }
+      }
+      <Normal> { -0.839106 0.531846 0.113987 }
+    }
+    <Vertex> 4477 {
+      2.54712438583 -48.7211151123 23.1774101257
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.358362 0.510720 0.781500 }
+        <Binormal> { -0.415456 -0.661955 0.623106 }
+      }
+      <Normal> { -0.824641 0.563524 0.048830 }
+    }
+    <Vertex> 4478 {
+      1.32257354259 -51.0387268066 19.057466507
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.404186 0.779611 0.478374 }
+        <Binormal> { -0.274554 -0.395399 0.876361 }
+      }
+      <Normal> { -0.878842 0.473067 -0.061892 }
+    }
+    <Vertex> 4479 {
+      0.730509102345 -52.2979125977 22.3455543518
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.378896 0.636572 0.671724 }
+        <Binormal> { -0.303644 -0.596033 0.736117 }
+      }
+      <Normal> { -0.908078 0.417158 -0.036805 }
+    }
+    <Vertex> 4480 {
+      2.15280866623 -49.9083518982 24.8670692444
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.458604 0.592803 0.662018 }
+        <Binormal> { -0.284520 -0.607778 0.741331 }
+      }
+      <Normal> { -0.839106 0.531846 0.113987 }
+    }
+    <Vertex> 4481 {
+      0.730509102345 -52.2979125977 22.3455543518
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.378896 0.636572 0.671724 }
+        <Binormal> { -0.303644 -0.596033 0.736117 }
+      }
+      <Normal> { -0.908078 0.417158 -0.036805 }
+    }
+    <Vertex> 4482 {
+      0.20112003386 -53.0143852234 24.4598331451
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.414104 0.653861 0.633233 }
+        <Binormal> { -0.642982 -0.280881 0.710511 }
+      }
+      <Normal> { -0.664418 0.666677 -0.337718 }
+    }
+    <Vertex> 4483 {
+      1.96249687672 -50.376991272 26.806678772
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.555204 0.617695 0.556957 }
+        <Binormal> { -0.575456 -0.197832 0.793051 }
+      }
+      <Normal> { -0.615009 0.744163 -0.260628 }
+    }
+    <Vertex> 4484 {
+      2.15280866623 -49.9083518982 24.8670692444
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.458604 0.592803 0.662018 }
+        <Binormal> { -0.284520 -0.607778 0.741331 }
+      }
+      <Normal> { -0.839106 0.531846 0.113987 }
+    }
+    <Vertex> 4485 {
+      1.96249687672 -50.376991272 26.806678772
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.555204 0.617695 0.556957 }
+        <Binormal> { -0.575456 -0.197832 0.793051 }
+      }
+      <Normal> { -0.615009 0.744163 -0.260628 }
+    }
+    <Vertex> 4486 {
+      4.35131406784 -48.3970603943 28.6231327057
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.605720 0.573860 0.551169 }
+        <Binormal> { -0.398509 -0.217340 0.664238 }
+      }
+      <Normal> { -0.141240 0.962798 0.230293 }
+    }
+    <Vertex> 4487 {
+      4.06420469284 -47.8142547607 26.9635543823
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.542059 0.593872 0.594549 }
+        <Binormal> { -0.197228 -0.564086 0.743260 }
+      }
+      <Normal> { -0.613788 0.698721 0.367412 }
+    }
+    <Vertex> 4488 {
+      2.15280866623 -49.9083518982 24.8670692444
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.458604 0.592803 0.662018 }
+        <Binormal> { -0.284520 -0.607778 0.741331 }
+      }
+      <Normal> { -0.839106 0.531846 0.113987 }
+    }
+    <Vertex> 4489 {
+      4.06420469284 -47.8142547607 26.9635543823
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.542059 0.593872 0.594549 }
+        <Binormal> { -0.197228 -0.564086 0.743260 }
+      }
+      <Normal> { -0.613788 0.698721 0.367412 }
+    }
+    <Vertex> 4490 {
+      4.32910919189 -46.7539596558 25.6139812469
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.518789 0.570462 0.636734 }
+        <Binormal> { -0.267891 -0.566632 0.725926 }
+      }
+      <Normal> { -0.628071 0.708640 0.321360 }
+    }
+    <Vertex> 4491 {
+      2.54712438583 -48.7211151123 23.1774101257
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.358362 0.510720 0.781500 }
+        <Binormal> { -0.415456 -0.661955 0.623106 }
+      }
+      <Normal> { -0.824641 0.563524 0.048830 }
+    }
+    <Vertex> 4492 {
+      6.70239067078 -65.6521911621 16.3967418671
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.934179 0.291200 -0.206184 }
+        <Binormal> { -0.123577 0.276434 0.950320 }
+      }
+      <Normal> { -0.266610 -0.934172 0.237068 }
+    }
+    <Vertex> 4493 {
+      7.36922883987 -66.1596908569 14.8362121582
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.084658 -0.952727 0.291757 }
+    }
+    <Vertex> 4494 {
+      8.71514415741 -65.9041290283 15.4456949234
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.965541 -0.064603 -0.252105 }
+        <Binormal> { -0.258039 0.148507 0.950213 }
+      }
+      <Normal> { 0.112583 -0.976592 0.183203 }
+    }
+    <Vertex> 4495 {
+      8.7860622406 -65.6782836914 16.6827316284
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.990636 0.012405 -0.135968 }
+        <Binormal> { -0.130063 0.192938 0.965219 }
+      }
+      <Normal> { 0.079653 -0.975341 0.205695 }
+    }
+    <Vertex> 4496 {
+      6.70239067078 -65.6521911621 16.3967418671
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.934179 0.291200 -0.206184 }
+        <Binormal> { -0.123577 0.276434 0.950320 }
+      }
+      <Normal> { -0.266610 -0.934172 0.237068 }
+    }
+    <Vertex> 4497 {
+      8.7860622406 -65.6782836914 16.6827316284
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.990636 0.012405 -0.135968 }
+        <Binormal> { -0.130063 0.192938 0.965219 }
+      }
+      <Normal> { 0.079653 -0.975341 0.205695 }
+    }
+    <Vertex> 4498 {
+      9.66532993317 -65.1976394653 18.6893939972
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.998109 0.030077 -0.053615 }
+        <Binormal> { -0.047840 0.155297 0.977714 }
+      }
+      <Normal> { 0.094729 -0.982421 0.160680 }
+    }
+    <Vertex> 4499 {
+      6.79624557495 -65.0744857788 18.7093372345
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.974061 0.222561 -0.040878 }
+        <Binormal> { -0.020219 0.094234 0.994859 }
+      }
+      <Normal> { -0.195624 -0.976653 0.088534 }
+    }
+    <Vertex> 4500 {
+      6.70239067078 -65.6521911621 16.3967418671
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.934179 0.291200 -0.206184 }
+        <Binormal> { -0.123577 0.276434 0.950320 }
+      }
+      <Normal> { -0.266610 -0.934172 0.237068 }
+    }
+    <Vertex> 4501 {
+      6.79624557495 -65.0744857788 18.7093372345
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.974061 0.222561 -0.040878 }
+        <Binormal> { -0.020219 0.094234 0.994859 }
+      }
+      <Normal> { -0.195624 -0.976653 0.088534 }
+    }
+    <Vertex> 4502 {
+      4.44768333435 -64.0054702759 18.4704265594
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.713112 0.695485 -0.088165 }
+        <Binormal> { -0.347882 -0.252291 0.823620 }
+      }
+      <Normal> { -0.286691 -0.875362 -0.389233 }
+    }
+    <Vertex> 4503 {
+      5.14664411545 -64.4576644897 16.0152683258
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.681663 0.729809 -0.052096 }
+        <Binormal> { 0.053814 0.120502 0.983965 }
+      }
+      <Normal> { -0.642689 -0.755394 0.127659 }
+    }
+    <Vertex> 4504 {
+      6.70239067078 -65.6521911621 16.3967418671
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.934179 0.291200 -0.206184 }
+        <Binormal> { -0.123577 0.276434 0.950320 }
+      }
+      <Normal> { -0.266610 -0.934172 0.237068 }
+    }
+    <Vertex> 4505 {
+      5.14664411545 -64.4576644897 16.0152683258
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.681663 0.729809 -0.052096 }
+        <Binormal> { 0.053814 0.120502 0.983965 }
+      }
+      <Normal> { -0.642689 -0.755394 0.127659 }
+    }
+    <Vertex> 4506 {
+      6.00489807129 -66.2164764404 13.7195005417
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.710103 0.701061 -0.065326 }
+        <Binormal> { 0.542944 0.600404 0.541510 }
+      }
+      <Normal> { -0.257790 -0.508072 0.821802 }
+    }
+    <Vertex> 4507 {
+      7.36922883987 -66.1596908569 14.8362121582
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.084658 -0.952727 0.291757 }
+    }
+    <Vertex> 4508 {
+      12.6143264771 -65.0471191406 16.3052482605
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.903116 -0.412257 0.120111 }
+        <Binormal> { 0.120189 0.025603 0.991576 }
+      }
+      <Normal> { 0.375164 -0.926695 -0.021546 }
+    }
+    <Vertex> 4509 {
+      10.5501489639 -65.6284942627 14.950138092
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.891444 -0.367574 0.264985 }
+        <Binormal> { 0.188948 0.227554 0.951299 }
+      }
+      <Normal> { 0.332774 -0.929929 0.156346 }
+    }
+    <Vertex> 4510 {
+      14.2475652695 -63.6229171753 13.8011636734
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.811940 -0.554510 0.182405 }
+        <Binormal> { -0.001130 0.313165 0.946988 }
+      }
+      <Normal> { 0.640004 -0.729240 0.241920 }
+    }
+    <Vertex> 4511 {
+      16.4580364227 -61.9025306702 15.7600812912
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.769362 -0.629425 0.109121 }
+        <Binormal> { 0.373416 -0.309880 0.845349 }
+      }
+      <Normal> { 0.670095 -0.550554 -0.497818 }
+    }
+    <Vertex> 4512 {
+      12.6143264771 -65.0471191406 16.3052482605
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.903116 -0.412257 0.120111 }
+        <Binormal> { 0.120189 0.025603 0.991576 }
+      }
+      <Normal> { 0.375164 -0.926695 -0.021546 }
+    }
+    <Vertex> 4513 {
+      16.4580364227 -61.9025306702 15.7600812912
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.769362 -0.629425 0.109121 }
+        <Binormal> { 0.373416 -0.309880 0.845349 }
+      }
+      <Normal> { 0.670095 -0.550554 -0.497818 }
+    }
+    <Vertex> 4514 {
+      19.3550624847 -61.0774497986 18.1140480042
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.810954 -0.580497 0.073319 }
+        <Binormal> { 0.152094 -0.096035 0.921904 }
+      }
+      <Normal> { 0.806299 -0.559648 -0.191321 }
+    }
+    <Vertex> 4515 {
+      14.1863203049 -64.3841552734 18.3837013245
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.918890 -0.390723 0.054561 }
+        <Binormal> { 0.029169 0.070625 0.997012 }
+      }
+      <Normal> { 0.384686 -0.921445 0.054018 }
+    }
+    <Vertex> 4516 {
+      12.6143264771 -65.0471191406 16.3052482605
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.903116 -0.412257 0.120111 }
+        <Binormal> { 0.120189 0.025603 0.991576 }
+      }
+      <Normal> { 0.375164 -0.926695 -0.021546 }
+    }
+    <Vertex> 4517 {
+      14.1863203049 -64.3841552734 18.3837013245
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.918890 -0.390723 0.054561 }
+        <Binormal> { 0.029169 0.070625 0.997012 }
+      }
+      <Normal> { 0.384686 -0.921445 0.054018 }
+    }
+    <Vertex> 4518 {
+      9.66532993317 -65.1976394653 18.6893939972
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.982171 -0.169942 0.080366 }
+        <Binormal> { 0.051647 0.165428 0.981005 }
+      }
+      <Normal> { 0.094729 -0.982421 0.160680 }
+    }
+    <Vertex> 4519 {
+      8.7860622406 -65.6782836914 16.6827316284
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.982043 -0.161909 0.096834 }
+        <Binormal> { 0.061142 0.209714 0.970724 }
+      }
+      <Normal> { 0.079653 -0.975341 0.205695 }
+    }
+    <Vertex> 4520 {
+      12.6143264771 -65.0471191406 16.3052482605
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.903116 -0.412257 0.120111 }
+        <Binormal> { 0.120189 0.025603 0.991576 }
+      }
+      <Normal> { 0.375164 -0.926695 -0.021546 }
+    }
+    <Vertex> 4521 {
+      8.7860622406 -65.6782836914 16.6827316284
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.982043 -0.161909 0.096834 }
+        <Binormal> { 0.061142 0.209714 0.970724 }
+      }
+      <Normal> { 0.079653 -0.975341 0.205695 }
+    }
+    <Vertex> 4522 {
+      8.71514415741 -65.9041290283 15.4456949234
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.718440 -0.044750 0.694147 }
+        <Binormal> { 0.669701 0.209769 0.706662 }
+      }
+      <Normal> { 0.112583 -0.976592 0.183203 }
+    }
+    <Vertex> 4523 {
+      10.5501489639 -65.6284942627 14.950138092
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.891444 -0.367574 0.264985 }
+        <Binormal> { 0.188948 0.227554 0.951299 }
+      }
+      <Normal> { 0.332774 -0.929929 0.156346 }
+    }
+    <Vertex> 4524 {
+      2.90215539932 -61.5835418701 16.1063098907
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.544524 0.837641 0.043015 }
+        <Binormal> { 0.026527 -0.034058 0.999028 }
+      }
+      <Normal> { -0.835047 -0.550127 0.003418 }
+    }
+    <Vertex> 4525 {
+      1.02450740337 -57.987613678 16.3203239441
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.317856 0.947742 0.027449 }
+        <Binormal> { -0.061378 -0.049405 0.995070 }
+      }
+      <Normal> { -0.963378 -0.258095 -0.072237 }
+    }
+    <Vertex> 4526 {
+      0.800136804581 -58.5618629456 14.3294782639
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.118072 0.990996 0.063128 }
+        <Binormal> { 0.547354 0.012032 0.834860 }
+      }
+      <Normal> { -0.833308 -0.076693 0.547441 }
+    }
+    <Vertex> 4527 {
+      2.8804795742 -62.3616981506 14.304930687
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.561065 0.825156 0.065755 }
+        <Binormal> { 0.636256 0.379105 0.671588 }
+      }
+      <Normal> { -0.540269 -0.402417 0.739006 }
+    }
+    <Vertex> 4528 {
+      2.90215539932 -61.5835418701 16.1063098907
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.544524 0.837641 0.043015 }
+        <Binormal> { 0.026527 -0.034058 0.999028 }
+      }
+      <Normal> { -0.835047 -0.550127 0.003418 }
+    }
+    <Vertex> 4529 {
+      2.8804795742 -62.3616981506 14.304930687
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.561065 0.825156 0.065755 }
+        <Binormal> { 0.636256 0.379105 0.671588 }
+      }
+      <Normal> { -0.540269 -0.402417 0.739006 }
+    }
+    <Vertex> 4530 {
+      6.00489807129 -66.2164764404 13.7195005417
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.710103 0.701061 -0.065326 }
+        <Binormal> { 0.542944 0.600404 0.541510 }
+      }
+      <Normal> { -0.257790 -0.508072 0.821802 }
+    }
+    <Vertex> 4531 {
+      5.14664411545 -64.4576644897 16.0152683258
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.681663 0.729809 -0.052096 }
+        <Binormal> { 0.053814 0.120502 0.983965 }
+      }
+      <Normal> { -0.642689 -0.755394 0.127659 }
+    }
+    <Vertex> 4532 {
+      2.90215539932 -61.5835418701 16.1063098907
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.544524 0.837641 0.043015 }
+        <Binormal> { 0.026527 -0.034058 0.999028 }
+      }
+      <Normal> { -0.835047 -0.550127 0.003418 }
+    }
+    <Vertex> 4533 {
+      5.14664411545 -64.4576644897 16.0152683258
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.681663 0.729809 -0.052096 }
+        <Binormal> { 0.053814 0.120502 0.983965 }
+      }
+      <Normal> { -0.642689 -0.755394 0.127659 }
+    }
+    <Vertex> 4534 {
+      4.44768333435 -64.0054702759 18.4704265594
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.713112 0.695485 -0.088165 }
+        <Binormal> { -0.347882 -0.252291 0.823620 }
+      }
+      <Normal> { -0.286691 -0.875362 -0.389233 }
+    }
+    <Vertex> 4535 {
+      2.04483437538 -61.165222168 17.7630882263
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.554418 0.831740 0.028792 }
+        <Binormal> { -0.592750 -0.418922 0.687805 }
+      }
+      <Normal> { -0.585315 -0.362499 -0.725211 }
+    }
+    <Vertex> 4536 {
+      2.90215539932 -61.5835418701 16.1063098907
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.544524 0.837641 0.043015 }
+        <Binormal> { 0.026527 -0.034058 0.999028 }
+      }
+      <Normal> { -0.835047 -0.550127 0.003418 }
+    }
+    <Vertex> 4537 {
+      2.04483437538 -61.165222168 17.7630882263
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.554418 0.831740 0.028792 }
+        <Binormal> { -0.592750 -0.418922 0.687805 }
+      }
+      <Normal> { -0.585315 -0.362499 -0.725211 }
+    }
+    <Vertex> 4538 {
+      0.142042249441 -57.5461273193 18.6940250397
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.295726 0.953767 0.053610 }
+        <Binormal> { -0.535467 -0.208157 0.749538 }
+      }
+      <Normal> { -0.823267 0.120609 -0.554643 }
+    }
+    <Vertex> 4539 {
+      1.02450740337 -57.987613678 16.3203239441
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.317856 0.947742 0.027449 }
+        <Binormal> { -0.061378 -0.049405 0.995070 }
+      }
+      <Normal> { -0.963378 -0.258095 -0.072237 }
+    }
+    <Vertex> 4540 {
+      18.5880470276 -54.3883590698 15.5430364609
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.147185 -0.988831 0.023472 }
+        <Binormal> { 0.639468 -0.077027 0.764888 }
+      }
+      <Normal> { 0.755516 -0.121006 -0.643818 }
+    }
+    <Vertex> 4541 {
+      16.4889125824 -55.0806159973 13.9703378677
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.260575 -0.965454 0.000276 }
+        <Binormal> { 0.600673 -0.161897 0.781690 }
+      }
+      <Normal> { 0.765923 -0.162053 -0.622120 }
+    }
+    <Vertex> 4542 {
+      18.5573348999 -47.6548233032 13.7965936661
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.145135 -0.989208 0.020072 }
+        <Binormal> { 0.112688 -0.003140 0.660074 }
+      }
+      <Normal> { 0.760674 0.636586 -0.126835 }
+    }
+    <Vertex> 4543 {
+      18.6675643921 -47.174282074 15.4197187424
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.011020 -0.999793 0.017091 }
+        <Binormal> { 0.521682 0.007446 0.771996 }
+      }
+      <Normal> { 0.775964 0.345500 -0.527696 }
+    }
+    <Vertex> 4544 {
+      18.5880470276 -54.3883590698 15.5430364609
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.147185 -0.988831 0.023472 }
+        <Binormal> { 0.639468 -0.077027 0.764888 }
+      }
+      <Normal> { 0.755516 -0.121006 -0.643818 }
+    }
+    <Vertex> 4545 {
+      18.6675643921 -47.174282074 15.4197187424
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.011020 -0.999793 0.017091 }
+        <Binormal> { 0.521682 0.007446 0.771996 }
+      }
+      <Normal> { 0.775964 0.345500 -0.527696 }
+    }
+    <Vertex> 4546 {
+      19.5960426331 -46.2401428223 17.3689231873
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.042306 -0.999086 -0.006136 }
+        <Binormal> { 0.370508 0.010694 0.813293 }
+      }
+      <Normal> { 0.793512 0.484725 -0.367870 }
+    }
+    <Vertex> 4547 {
+      20.2951412201 -53.6578598022 17.15574646
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.016219 -0.998610 0.050150 }
+        <Binormal> { 0.548625 0.033035 0.835238 }
+      }
+      <Normal> { 0.835475 -0.057009 -0.546525 }
+    }
+    <Vertex> 4548 {
+      18.5880470276 -54.3883590698 15.5430364609
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.147185 -0.988831 0.023472 }
+        <Binormal> { 0.639468 -0.077027 0.764888 }
+      }
+      <Normal> { 0.755516 -0.121006 -0.643818 }
+    }
+    <Vertex> 4549 {
+      20.2951412201 -53.6578598022 17.15574646
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.016219 -0.998610 0.050150 }
+        <Binormal> { 0.548625 0.033035 0.835238 }
+      }
+      <Normal> { 0.835475 -0.057009 -0.546525 }
+    }
+    <Vertex> 4550 {
+      19.3550624847 -61.0774497986 18.1140480042
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.200773 -0.976618 0.076864 }
+        <Binormal> { 0.229864 0.023563 0.899808 }
+      }
+      <Normal> { 0.806299 -0.559648 -0.191321 }
+    }
+    <Vertex> 4551 {
+      16.4580364227 -61.9025306702 15.7600812912
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.272615 -0.961722 0.027779 }
+        <Binormal> { 0.494056 -0.117098 0.794534 }
+      }
+      <Normal> { 0.670095 -0.550554 -0.497818 }
+    }
+    <Vertex> 4552 {
+      18.5880470276 -54.3883590698 15.5430364609
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.147185 -0.988831 0.023472 }
+        <Binormal> { 0.639468 -0.077027 0.764888 }
+      }
+      <Normal> { 0.755516 -0.121006 -0.643818 }
+    }
+    <Vertex> 4553 {
+      16.4580364227 -61.9025306702 15.7600812912
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.272615 -0.961722 0.027779 }
+        <Binormal> { 0.494056 -0.117098 0.794534 }
+      }
+      <Normal> { 0.670095 -0.550554 -0.497818 }
+    }
+    <Vertex> 4554 {
+      14.2475652695 -63.6229171753 13.8011636734
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.262687 -0.964877 0.002877 }
+        <Binormal> { -0.231325 0.065390 0.809086 }
+      }
+      <Normal> { 0.640004 -0.729240 0.241920 }
+    }
+    <Vertex> 4555 {
+      16.4889125824 -55.0806159973 13.9703378677
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.260575 -0.965454 0.000276 }
+        <Binormal> { 0.600673 -0.161897 0.781690 }
+      }
+      <Normal> { 0.765923 -0.162053 -0.622120 }
+    }
+    <Vertex> 4556 {
+      18.3459243774 -49.8342285156 23.8783550262
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.742605 0.294385 -0.601561 }
+        <Binormal> { 0.396408 -0.917123 0.040540 }
+      }
+      <Normal> { 0.544145 0.270302 0.794214 }
+    }
+    <Vertex> 4557 {
+      19.7315807343 -48.3282279968 22.2940330505
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.677678 0.360034 -0.641193 }
+        <Binormal> { 0.461215 -0.862479 0.003171 }
+      }
+      <Normal> { 0.692984 0.372845 0.617023 }
+    }
+    <Vertex> 4558 {
+      17.6717739105 -45.9213790894 22.1716346741
+      <UV>  {
+        -0.042124 0.762705
+        <Tangent> { 0.914994 -0.284435 -0.286152 }
+        <Binormal> { -0.001536 -0.707337 0.698182 }
+      }
+      <Normal> { 0.501938 0.607013 0.616077 }
+    }
+    <Vertex> 4559 {
+      16.1216907501 -47.2420883179 23.9381656647
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.780113 0.266136 -0.566211 }
+        <Binormal> { 0.458192 -0.859026 0.227519 }
+      }
+      <Normal> { 0.412091 0.432234 0.802057 }
+    }
+    <Vertex> 4560 {
+      18.3459243774 -49.8342285156 23.8783550262
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.742605 0.294385 -0.601561 }
+        <Binormal> { 0.396408 -0.917123 0.040540 }
+      }
+      <Normal> { 0.544145 0.270302 0.794214 }
+    }
+    <Vertex> 4561 {
+      16.1216907501 -47.2420883179 23.9381656647
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.780113 0.266136 -0.566211 }
+        <Binormal> { 0.458192 -0.859026 0.227519 }
+      }
+      <Normal> { 0.412091 0.432234 0.802057 }
+    }
+    <Vertex> 4562 {
+      13.9417600632 -48.6074409485 25.5346794128
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.818966 0.276797 -0.502670 }
+        <Binormal> { 0.425069 -0.881009 0.207406 }
+      }
+      <Normal> { 0.378399 0.381146 0.843501 }
+    }
+    <Vertex> 4563 {
+      16.544752121 -51.2660331726 25.2850551605
+      <UV>  {
+        0.053131 0.854502
+        <Tangent> { 0.796239 0.302486 -0.523932 }
+        <Binormal> { 0.385015 -0.921210 0.053271 }
+      }
+      <Normal> { 0.478774 0.248787 0.841914 }
+    }
+    <Vertex> 4564 {
+      18.3459243774 -49.8342285156 23.8783550262
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.742605 0.294385 -0.601561 }
+        <Binormal> { 0.396408 -0.917123 0.040540 }
+      }
+      <Normal> { 0.544145 0.270302 0.794214 }
+    }
+    <Vertex> 4565 {
+      16.544752121 -51.2660331726 25.2850551605
+      <UV>  {
+        0.053131 0.854502
+        <Tangent> { 0.796239 0.302486 -0.523932 }
+        <Binormal> { 0.385015 -0.921210 0.053271 }
+      }
+      <Normal> { 0.478774 0.248787 0.841914 }
+    }
+    <Vertex> 4566 {
+      17.7866420746 -54.2352256775 25.1051540375
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.785403 0.210306 -0.582163 }
+        <Binormal> { 0.176083 -0.976814 -0.115317 }
+      }
+      <Normal> { 0.623096 0.020020 0.781854 }
+    }
+    <Vertex> 4567 {
+      19.6807785034 -53.1965560913 23.4898300171
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.695595 0.250399 -0.673385 }
+        <Binormal> { 0.174197 -0.967130 -0.179686 }
+      }
+      <Normal> { 0.727348 0.003510 0.686239 }
+    }
+    <Vertex> 4568 {
+      18.3459243774 -49.8342285156 23.8783550262
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.742605 0.294385 -0.601561 }
+        <Binormal> { 0.396408 -0.917123 0.040540 }
+      }
+      <Normal> { 0.544145 0.270302 0.794214 }
+    }
+    <Vertex> 4569 {
+      19.6807785034 -53.1965560913 23.4898300171
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.695595 0.250399 -0.673385 }
+        <Binormal> { 0.174197 -0.967130 -0.179686 }
+      }
+      <Normal> { 0.727348 0.003510 0.686239 }
+    }
+    <Vertex> 4570 {
+      20.973526001 -51.46692276 21.6388015747
+      <UV>  {
+        -0.073782 0.891829
+        <Tangent> { 0.617552 0.357358 -0.700660 }
+        <Binormal> { 0.204785 -0.895695 -0.276337 }
+      }
+      <Normal> { 0.900327 0.073519 0.428907 }
+    }
+    <Vertex> 4571 {
+      19.7315807343 -48.3282279968 22.2940330505
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.677678 0.360034 -0.641193 }
+        <Binormal> { 0.461215 -0.862479 0.003171 }
+      }
+      <Normal> { 0.692984 0.372845 0.617023 }
+    }
+    <Vertex> 4572 {
+      20.2063617706 -46.9568443298 20.5103626251
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.418392 -0.353347 -0.836716 }
+        <Binormal> { 0.300290 -0.812302 0.493194 }
+      }
+      <Normal> { 0.819727 0.486496 0.302164 }
+    }
+    <Vertex> 4573 {
+      20.9874038696 -48.8292274475 19.6041164398
+      <UV>  {
+        0.583333 0.416667
+        <Tangent> { 0.163010 -0.949599 -0.267749 }
+        <Binormal> { 0.079211 -0.257263 0.960633 }
+      }
+      <Normal> { 0.969939 0.242805 -0.014954 }
+    }
+    <Vertex> 4574 {
+      19.5960426331 -46.2401428223 17.3689231873
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.169912 -0.945513 -0.277733 }
+        <Binormal> { 0.482450 -0.157879 0.832636 }
+      }
+      <Normal> { 0.793512 0.484725 -0.367870 }
+    }
+    <Vertex> 4575 {
+      18.639831543 -45.105884552 19.8413410187
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.371217 -0.061494 -0.926508 }
+        <Binormal> { 0.672192 -0.670463 0.313822 }
+      }
+      <Normal> { 0.644215 0.738670 0.198248 }
+    }
+    <Vertex> 4576 {
+      20.2063617706 -46.9568443298 20.5103626251
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.418392 -0.353347 -0.836716 }
+        <Binormal> { 0.300290 -0.812302 0.493194 }
+      }
+      <Normal> { 0.819727 0.486496 0.302164 }
+    }
+    <Vertex> 4577 {
+      18.639831543 -45.105884552 19.8413410187
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.371217 -0.061494 -0.926508 }
+        <Binormal> { 0.672192 -0.670463 0.313822 }
+      }
+      <Normal> { 0.644215 0.738670 0.198248 }
+    }
+    <Vertex> 4578 {
+      17.6717739105 -45.9213790894 22.1716346741
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.460870 0.283846 -0.840851 }
+        <Binormal> { 0.685278 -0.705986 0.137281 }
+      }
+      <Normal> { 0.501938 0.607013 0.616077 }
+    }
+    <Vertex> 4579 {
+      19.7315807343 -48.3282279968 22.2940330505
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.469996 0.205008 -0.858531 }
+        <Binormal> { 0.446593 -0.884947 0.033169 }
+      }
+      <Normal> { 0.692984 0.372845 0.617023 }
+    }
+    <Vertex> 4580 {
+      20.2063617706 -46.9568443298 20.5103626251
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.418392 -0.353347 -0.836716 }
+        <Binormal> { 0.300290 -0.812302 0.493194 }
+      }
+      <Normal> { 0.819727 0.486496 0.302164 }
+    }
+    <Vertex> 4581 {
+      19.7315807343 -48.3282279968 22.2940330505
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.469996 0.205008 -0.858531 }
+        <Binormal> { 0.446593 -0.884947 0.033169 }
+      }
+      <Normal> { 0.692984 0.372845 0.617023 }
+    }
+    <Vertex> 4582 {
+      20.973526001 -51.46692276 21.6388015747
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.160867 -0.953322 -0.255536 }
+        <Binormal> { -0.390100 -0.299063 0.870128 }
+      }
+      <Normal> { 0.900327 0.073519 0.428907 }
+    }
+    <Vertex> 4583 {
+      20.9874038696 -48.8292274475 19.6041164398
+      <UV>  {
+        0.583333 0.416667
+        <Tangent> { 0.163010 -0.949599 -0.267749 }
+        <Binormal> { 0.079211 -0.257263 0.960633 }
+      }
+      <Normal> { 0.969939 0.242805 -0.014954 }
+    }
+    <Vertex> 4584 {
+      21.2181434631 -52.8508872986 18.8484764099
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.008243 -0.999841 0.015804 }
+        <Binormal> { 0.256933 0.017387 0.966007 }
+      }
+      <Normal> { 0.966308 -0.017884 -0.256691 }
+    }
+    <Vertex> 4585 {
+      20.2951412201 -53.6578598022 17.15574646
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.016219 -0.998610 0.050150 }
+        <Binormal> { 0.548625 0.033035 0.835238 }
+      }
+      <Normal> { 0.835475 -0.057009 -0.546525 }
+    }
+    <Vertex> 4586 {
+      19.5960426331 -46.2401428223 17.3689231873
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.169912 -0.945513 -0.277733 }
+        <Binormal> { 0.482450 -0.157879 0.832636 }
+      }
+      <Normal> { 0.793512 0.484725 -0.367870 }
+    }
+    <Vertex> 4587 {
+      20.9874038696 -48.8292274475 19.6041164398
+      <UV>  {
+        0.583333 0.416667
+        <Tangent> { 0.163010 -0.949599 -0.267749 }
+        <Binormal> { 0.079211 -0.257263 0.960633 }
+      }
+      <Normal> { 0.969939 0.242805 -0.014954 }
+    }
+    <Vertex> 4588 {
+      21.2181434631 -52.8508872986 18.8484764099
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.008243 -0.999841 0.015804 }
+        <Binormal> { 0.256933 0.017387 0.966007 }
+      }
+      <Normal> { 0.966308 -0.017884 -0.256691 }
+    }
+    <Vertex> 4589 {
+      20.9874038696 -48.8292274475 19.6041164398
+      <UV>  {
+        0.583333 0.416667
+        <Tangent> { 0.163010 -0.949599 -0.267749 }
+        <Binormal> { 0.079211 -0.257263 0.960633 }
+      }
+      <Normal> { 0.969939 0.242805 -0.014954 }
+    }
+    <Vertex> 4590 {
+      20.973526001 -51.46692276 21.6388015747
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.160867 -0.953322 -0.255536 }
+        <Binormal> { -0.390100 -0.299063 0.870128 }
+      }
+      <Normal> { 0.900327 0.073519 0.428907 }
+    }
+    <Vertex> 4591 {
+      21.0316944122 -56.1348190308 20.283498764
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.091612 -0.981140 0.170207 }
+        <Binormal> { -0.111728 0.178432 0.968413 }
+      }
+      <Normal> { 0.968291 -0.200659 0.148686 }
+    }
+    <Vertex> 4592 {
+      21.2181434631 -52.8508872986 18.8484764099
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.008243 -0.999841 0.015804 }
+        <Binormal> { 0.256933 0.017387 0.966007 }
+      }
+      <Normal> { 0.966308 -0.017884 -0.256691 }
+    }
+    <Vertex> 4593 {
+      21.0316944122 -56.1348190308 20.283498764
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.091612 -0.981140 0.170207 }
+        <Binormal> { -0.111728 0.178432 0.968413 }
+      }
+      <Normal> { 0.968291 -0.200659 0.148686 }
+    }
+    <Vertex> 4594 {
+      19.3550624847 -61.0774497986 18.1140480042
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.463189 -0.881636 0.090410 }
+        <Binormal> { 0.219273 -0.015720 0.970085 }
+      }
+      <Normal> { 0.806299 -0.559648 -0.191321 }
+    }
+    <Vertex> 4595 {
+      20.2951412201 -53.6578598022 17.15574646
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.016219 -0.998610 0.050150 }
+        <Binormal> { 0.548625 0.033035 0.835238 }
+      }
+      <Normal> { 0.835475 -0.057009 -0.546525 }
+    }
+    <Vertex> 4596 {
+      19.4992465973 -57.4844169617 22.4837493896
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.207616 -0.950725 -0.230254 }
+        <Binormal> { -0.556879 -0.078633 0.826806 }
+      }
+      <Normal> { 0.805872 -0.292093 0.515000 }
+    }
+    <Vertex> 4597 {
+      17.7023677826 -61.4232521057 21.5405807495
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.405535 -0.888950 -0.212862 }
+        <Binormal> { -0.436388 -0.010732 0.876205 }
+      }
+      <Normal> { 0.698416 -0.629658 0.340129 }
+    }
+    <Vertex> 4598 {
+      19.3550624847 -61.0774497986 18.1140480042
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.346255 -0.885344 -0.310280 }
+        <Binormal> { -0.004263 -0.316424 0.907633 }
+      }
+      <Normal> { 0.806299 -0.559648 -0.191321 }
+    }
+    <Vertex> 4599 {
+      21.0316944122 -56.1348190308 20.283498764
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.156167 -0.927329 -0.340107 }
+        <Binormal> { -0.206127 -0.306103 0.929261 }
+      }
+      <Normal> { 0.968291 -0.200659 0.148686 }
+    }
+    <Vertex> 4600 {
+      19.4992465973 -57.4844169617 22.4837493896
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.207616 -0.950725 -0.230254 }
+        <Binormal> { -0.556879 -0.078633 0.826806 }
+      }
+      <Normal> { 0.805872 -0.292093 0.515000 }
+    }
+    <Vertex> 4601 {
+      21.0316944122 -56.1348190308 20.283498764
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.156167 -0.927329 -0.340107 }
+        <Binormal> { -0.206127 -0.306103 0.929261 }
+      }
+      <Normal> { 0.968291 -0.200659 0.148686 }
+    }
+    <Vertex> 4602 {
+      20.973526001 -51.46692276 21.6388015747
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.013318 -0.966866 -0.254936 }
+        <Binormal> { -0.395953 -0.223813 0.869516 }
+      }
+      <Normal> { 0.900327 0.073519 0.428907 }
+    }
+    <Vertex> 4603 {
+      19.6807785034 -53.1965560913 23.4898300171
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.041182 -0.972734 -0.228237 }
+        <Binormal> { -0.666727 -0.137747 0.707371 }
+      }
+      <Normal> { 0.727348 0.003510 0.686239 }
+    }
+    <Vertex> 4604 {
+      19.4992465973 -57.4844169617 22.4837493896
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.207616 -0.950725 -0.230254 }
+        <Binormal> { -0.556879 -0.078633 0.826806 }
+      }
+      <Normal> { 0.805872 -0.292093 0.515000 }
+    }
+    <Vertex> 4605 {
+      19.6807785034 -53.1965560913 23.4898300171
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.041182 -0.972734 -0.228237 }
+        <Binormal> { -0.666727 -0.137747 0.707371 }
+      }
+      <Normal> { 0.727348 0.003510 0.686239 }
+    }
+    <Vertex> 4606 {
+      17.7866420746 -54.2352256775 25.1051540375
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.057063 -0.982278 -0.178533 }
+        <Binormal> { -0.764423 -0.066629 0.610911 }
+      }
+      <Normal> { 0.623096 0.020020 0.781854 }
+    }
+    <Vertex> 4607 {
+      17.522693634 -57.6158752441 24.7174491882
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.228486 -0.970485 -0.077154 }
+        <Binormal> { -0.641911 0.090598 0.761381 }
+      }
+      <Normal> { 0.731468 -0.225410 0.643513 }
+    }
+    <Vertex> 4608 {
+      19.4992465973 -57.4844169617 22.4837493896
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.207616 -0.950725 -0.230254 }
+        <Binormal> { -0.556879 -0.078633 0.826806 }
+      }
+      <Normal> { 0.805872 -0.292093 0.515000 }
+    }
+    <Vertex> 4609 {
+      17.522693634 -57.6158752441 24.7174491882
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.228486 -0.970485 -0.077154 }
+        <Binormal> { -0.641911 0.090598 0.761381 }
+      }
+      <Normal> { 0.731468 -0.225410 0.643513 }
+    }
+    <Vertex> 4610 {
+      16.1790218353 -61.0635375977 24.562297821
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.275516 -0.958281 0.076084 }
+        <Binormal> { -0.073036 0.098859 0.980658 }
+      }
+      <Normal> { 0.905362 -0.410382 0.108798 }
+    }
+    <Vertex> 4611 {
+      17.7023677826 -61.4232521057 21.5405807495
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.405535 -0.888950 -0.212862 }
+        <Binormal> { -0.436388 -0.010732 0.876205 }
+      }
+      <Normal> { 0.698416 -0.629658 0.340129 }
+    }
+    <Vertex> 4612 {
+      14.1911773682 -63.7384796143 21.3407783508
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.898102 -0.439775 -0.003214 }
+        <Binormal> { -0.075391 0.146754 0.986208 }
+      }
+      <Normal> { 0.423963 -0.890500 0.164922 }
+    }
+    <Vertex> 4613 {
+      10.3039121628 -64.804107666 21.5011901855
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.963656 -0.264170 0.039766 }
+        <Binormal> { 0.028597 0.045363 0.994336 }
+      }
+      <Normal> { 0.176366 -0.983490 0.039796 }
+    }
+    <Vertex> 4614 {
+      9.66532993317 -65.1976394653 18.6893939972
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.974501 -0.217785 0.054021 }
+        <Binormal> { 0.018077 0.161700 0.978001 }
+      }
+      <Normal> { 0.094729 -0.982421 0.160680 }
+    }
+    <Vertex> 4615 {
+      14.1863203049 -64.3841552734 18.3837013245
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.918890 -0.390723 0.054561 }
+        <Binormal> { 0.029169 0.070625 0.997012 }
+      }
+      <Normal> { 0.384686 -0.921445 0.054018 }
+    }
+    <Vertex> 4616 {
+      14.1911773682 -63.7384796143 21.3407783508
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.898102 -0.439775 -0.003214 }
+        <Binormal> { -0.075391 0.146754 0.986208 }
+      }
+      <Normal> { 0.423963 -0.890500 0.164922 }
+    }
+    <Vertex> 4617 {
+      14.1863203049 -64.3841552734 18.3837013245
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.918890 -0.390723 0.054561 }
+        <Binormal> { 0.029169 0.070625 0.997012 }
+      }
+      <Normal> { 0.384686 -0.921445 0.054018 }
+    }
+    <Vertex> 4618 {
+      19.3550624847 -61.0774497986 18.1140480042
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.463189 -0.881636 0.090410 }
+        <Binormal> { 0.219273 -0.015720 0.970085 }
+      }
+      <Normal> { 0.806299 -0.559648 -0.191321 }
+    }
+    <Vertex> 4619 {
+      17.7023677826 -61.4232521057 21.5405807495
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.833905 -0.549865 -0.047453 }
+        <Binormal> { -0.216904 0.250493 0.909109 }
+      }
+      <Normal> { 0.698416 -0.629658 0.340129 }
+    }
+    <Vertex> 4620 {
+      14.1911773682 -63.7384796143 21.3407783508
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.898102 -0.439775 -0.003214 }
+        <Binormal> { -0.075391 0.146754 0.986208 }
+      }
+      <Normal> { 0.423963 -0.890500 0.164922 }
+    }
+    <Vertex> 4621 {
+      17.7023677826 -61.4232521057 21.5405807495
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.833905 -0.549865 -0.047453 }
+        <Binormal> { -0.216904 0.250493 0.909109 }
+      }
+      <Normal> { 0.698416 -0.629658 0.340129 }
+    }
+    <Vertex> 4622 {
+      16.1790218353 -61.0635375977 24.562297821
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.774540 -0.623056 -0.109035 }
+        <Binormal> { -0.112533 -0.014447 0.881949 }
+      }
+      <Normal> { 0.905362 -0.410382 0.108798 }
+    }
+    <Vertex> 4623 {
+      13.820561409 -63.4699745178 23.9358100891
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.817281 -0.568877 -0.091820 }
+        <Binormal> { 0.064220 -0.248001 0.964886 }
+      }
+      <Normal> { 0.524552 -0.815485 -0.244514 }
+    }
+    <Vertex> 4624 {
+      14.1911773682 -63.7384796143 21.3407783508
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.898102 -0.439775 -0.003214 }
+        <Binormal> { -0.075391 0.146754 0.986208 }
+      }
+      <Normal> { 0.423963 -0.890500 0.164922 }
+    }
+    <Vertex> 4625 {
+      13.820561409 -63.4699745178 23.9358100891
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.817281 -0.568877 -0.091820 }
+        <Binormal> { 0.064220 -0.248001 0.964886 }
+      }
+      <Normal> { 0.524552 -0.815485 -0.244514 }
+    }
+    <Vertex> 4626 {
+      10.808093071 -64.8020248413 23.9588832855
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.807090 -0.522825 0.274336 }
+        <Binormal> { 0.432611 -0.217444 0.858331 }
+      }
+      <Normal> { 0.252205 -0.900113 -0.355144 }
+    }
+    <Vertex> 4627 {
+      10.3039121628 -64.804107666 21.5011901855
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.963656 -0.264170 0.039766 }
+        <Binormal> { 0.028597 0.045363 0.994336 }
+      }
+      <Normal> { 0.176366 -0.983490 0.039796 }
+    }
+    <Vertex> 4628 {
+      7.37881088257 -64.9941482544 21.6386623383
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.999876 -0.008470 -0.013244 }
+        <Binormal> { -0.012367 -0.096337 0.995257 }
+      }
+      <Normal> { 0.009369 -0.995300 -0.096225 }
+    }
+    <Vertex> 4629 {
+      5.43875074387 -65.0797805786 21.6685352325
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.998909 -0.044091 0.015381 }
+        <Binormal> { 0.028887 -0.332409 0.923183 }
+      }
+      <Normal> { 0.226081 -0.914212 -0.336253 }
+    }
+    <Vertex> 4630 {
+      4.44768333435 -64.0054702759 18.4704265594
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.666681 0.374301 -0.644543 }
+        <Binormal> { -0.709899 -0.074710 0.690896 }
+      }
+      <Normal> { -0.286691 -0.875362 -0.389233 }
+    }
+    <Vertex> 4631 {
+      6.79624557495 -65.0744857788 18.7093372345
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.974061 0.222561 -0.040878 }
+        <Binormal> { -0.020219 0.094234 0.994859 }
+      }
+      <Normal> { -0.195624 -0.976653 0.088534 }
+    }
+    <Vertex> 4632 {
+      7.37881088257 -64.9941482544 21.6386623383
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.999876 -0.008470 -0.013244 }
+        <Binormal> { -0.012367 -0.096337 0.995257 }
+      }
+      <Normal> { 0.009369 -0.995300 -0.096225 }
+    }
+    <Vertex> 4633 {
+      6.79624557495 -65.0744857788 18.7093372345
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.974061 0.222561 -0.040878 }
+        <Binormal> { -0.020219 0.094234 0.994859 }
+      }
+      <Normal> { -0.195624 -0.976653 0.088534 }
+    }
+    <Vertex> 4634 {
+      9.66532993317 -65.1976394653 18.6893939972
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.999565 -0.011539 0.027156 }
+        <Binormal> { 0.024825 0.163182 0.983087 }
+      }
+      <Normal> { 0.094729 -0.982421 0.160680 }
+    }
+    <Vertex> 4635 {
+      10.3039121628 -64.804107666 21.5011901855
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.996801 -0.064761 0.046847 }
+        <Binormal> { 0.043496 0.047931 0.991765 }
+      }
+      <Normal> { 0.176366 -0.983490 0.039796 }
+    }
+    <Vertex> 4636 {
+      7.37881088257 -64.9941482544 21.6386623383
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.999876 -0.008470 -0.013244 }
+        <Binormal> { -0.012367 -0.096337 0.995257 }
+      }
+      <Normal> { 0.009369 -0.995300 -0.096225 }
+    }
+    <Vertex> 4637 {
+      10.3039121628 -64.804107666 21.5011901855
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.996801 -0.064761 0.046847 }
+        <Binormal> { 0.043496 0.047931 0.991765 }
+      }
+      <Normal> { 0.176366 -0.983490 0.039796 }
+    }
+    <Vertex> 4638 {
+      10.808093071 -64.8020248413 23.9588832855
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.989135 -0.137639 0.051643 }
+        <Binormal> { 0.095366 -0.338261 0.925047 }
+      }
+      <Normal> { 0.252205 -0.900113 -0.355144 }
+    }
+    <Vertex> 4639 {
+      8.01560020447 -65.4075927734 24.11992836
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.980954 -0.176250 -0.081645 }
+        <Binormal> { 0.005334 -0.444421 0.895307 }
+      }
+      <Normal> { 0.166143 -0.882839 -0.439222 }
+    }
+    <Vertex> 4640 {
+      7.37881088257 -64.9941482544 21.6386623383
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.999876 -0.008470 -0.013244 }
+        <Binormal> { -0.012367 -0.096337 0.995257 }
+      }
+      <Normal> { 0.009369 -0.995300 -0.096225 }
+    }
+    <Vertex> 4641 {
+      8.01560020447 -65.4075927734 24.11992836
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.980954 -0.176250 -0.081645 }
+        <Binormal> { 0.005334 -0.444421 0.895307 }
+      }
+      <Normal> { 0.166143 -0.882839 -0.439222 }
+    }
+    <Vertex> 4642 {
+      6.32541418076 -65.6074371338 23.5857906342
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.987499 -0.077655 -0.137170 }
+        <Binormal> { -0.076704 -0.504001 0.837525 }
+      }
+      <Normal> { 0.328166 -0.822321 -0.464797 }
+    }
+    <Vertex> 4643 {
+      5.43875074387 -65.0797805786 21.6685352325
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.998909 -0.044091 0.015381 }
+        <Binormal> { 0.028887 -0.332409 0.923183 }
+      }
+      <Normal> { 0.226081 -0.914212 -0.336253 }
+    }
+    <Vertex> 4644 {
+      16.0039329529 -57.2453651428 26.2528171539
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.091962 -0.994960 -0.039963 }
+        <Binormal> { -0.737800 0.041137 0.673617 }
+      }
+      <Normal> { 0.669729 -0.078982 0.738365 }
+    }
+    <Vertex> 4645 {
+      17.522693634 -57.6158752441 24.7174491882
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.228486 -0.970485 -0.077154 }
+        <Binormal> { -0.641911 0.090598 0.761381 }
+      }
+      <Normal> { 0.731468 -0.225410 0.643513 }
+    }
+    <Vertex> 4646 {
+      17.7866420746 -54.2352256775 25.1051540375
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.039026 -0.994529 -0.096895 }
+        <Binormal> { -0.775636 -0.029862 0.618906 }
+      }
+      <Normal> { 0.623096 0.020020 0.781854 }
+    }
+    <Vertex> 4647 {
+      15.9685983658 -54.8000450134 26.432723999
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.014409 -0.997201 -0.073366 }
+        <Binormal> { -0.822931 -0.052586 0.553124 }
+      }
+      <Normal> { 0.553728 0.065676 0.830073 }
+    }
+    <Vertex> 4648 {
+      16.0039329529 -57.2453651428 26.2528171539
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.091962 -0.994960 -0.039963 }
+        <Binormal> { -0.737800 0.041137 0.673617 }
+      }
+      <Normal> { 0.669729 -0.078982 0.738365 }
+    }
+    <Vertex> 4649 {
+      15.9685983658 -54.8000450134 26.432723999
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.014409 -0.997201 -0.073366 }
+        <Binormal> { -0.822931 -0.052586 0.553124 }
+      }
+      <Normal> { 0.553728 0.065676 0.830073 }
+    }
+    <Vertex> 4650 {
+      14.710641861 -54.9005241394 27.1339435577
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.029688 -0.999553 0.003517 }
+        <Binormal> { -0.858326 0.027254 0.500346 }
+      }
+      <Normal> { 0.503494 0.098453 0.858364 }
+    }
+    <Vertex> 4651 {
+      14.5603275299 -56.3264503479 27.3274726868
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.015881 -0.993617 0.111685 }
+        <Binormal> { -0.805624 0.053439 0.589981 }
+      }
+      <Normal> { 0.592212 0.097598 0.799829 }
+    }
+    <Vertex> 4652 {
+      16.0039329529 -57.2453651428 26.2528171539
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.091962 -0.994960 -0.039963 }
+        <Binormal> { -0.737800 0.041137 0.673617 }
+      }
+      <Normal> { 0.669729 -0.078982 0.738365 }
+    }
+    <Vertex> 4653 {
+      14.5603275299 -56.3264503479 27.3274726868
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.015881 -0.993617 0.111685 }
+        <Binormal> { -0.805624 0.053439 0.589981 }
+      }
+      <Normal> { 0.592212 0.097598 0.799829 }
+    }
+    <Vertex> 4654 {
+      14.753610611 -57.5889358521 27.4361286163
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.029771 -0.999472 0.013030 }
+        <Binormal> { -0.318276 0.001058 0.808391 }
+      }
+      <Normal> { 0.793237 0.523087 0.311624 }
+    }
+    <Vertex> 4655 {
+      15.9059810638 -59.1833648682 26.1858844757
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.050448 -0.998132 -0.034472 }
+        <Binormal> { -0.208833 -0.021862 0.938610 }
+      }
+      <Normal> { 0.951415 0.218574 0.216773 }
+    }
+    <Vertex> 4656 {
+      16.0039329529 -57.2453651428 26.2528171539
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.091962 -0.994960 -0.039963 }
+        <Binormal> { -0.737800 0.041137 0.673617 }
+      }
+      <Normal> { 0.669729 -0.078982 0.738365 }
+    }
+    <Vertex> 4657 {
+      15.9059810638 -59.1833648682 26.1858844757
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.050448 -0.998132 -0.034472 }
+        <Binormal> { -0.208833 -0.021862 0.938610 }
+      }
+      <Normal> { 0.951415 0.218574 0.216773 }
+    }
+    <Vertex> 4658 {
+      16.1790218353 -61.0635375977 24.562297821
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.258370 -0.965226 -0.039802 }
+        <Binormal> { -0.121349 -0.007925 0.979909 }
+      }
+      <Normal> { 0.905362 -0.410382 0.108798 }
+    }
+    <Vertex> 4659 {
+      17.522693634 -57.6158752441 24.7174491882
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.228486 -0.970485 -0.077154 }
+        <Binormal> { -0.641911 0.090598 0.761381 }
+      }
+      <Normal> { 0.731468 -0.225410 0.643513 }
+    }
+    <Vertex> 4660 {
+      14.8234167099 -52.4148025513 26.5358734131
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.699357 -0.694067 -0.170793 }
+        <Binormal> { -0.550329 -0.675335 0.490951 }
+      }
+      <Normal> { 0.457686 0.247780 0.853877 }
+    }
+    <Vertex> 4661 {
+      16.544752121 -51.2660331726 25.2850551605
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.657971 -0.740332 -0.137779 }
+        <Binormal> { -0.589018 -0.619920 0.518146 }
+      }
+      <Normal> { 0.478774 0.248787 0.841914 }
+    }
+    <Vertex> 4662 {
+      13.9417600632 -48.6074409485 25.5346794128
+      <UV>  {
+        -0.042124 0.762705
+        <Tangent> { 0.788032 -0.594287 -0.160713 }
+        <Binormal> { -0.440027 -0.725519 0.525233 }
+      }
+      <Normal> { 0.378399 0.381146 0.843501 }
+    }
+    <Vertex> 4663 {
+      12.8279457092 -50.5107765198 26.8126487732
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.805356 -0.561905 -0.188851 }
+        <Binormal> { -0.417858 -0.763813 0.490681 }
+      }
+      <Normal> { 0.392621 0.335337 0.856349 }
+    }
+    <Vertex> 4664 {
+      14.8234167099 -52.4148025513 26.5358734131
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.699357 -0.694067 -0.170793 }
+        <Binormal> { -0.550329 -0.675335 0.490951 }
+      }
+      <Normal> { 0.457686 0.247780 0.853877 }
+    }
+    <Vertex> 4665 {
+      12.8279457092 -50.5107765198 26.8126487732
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.805356 -0.561905 -0.188851 }
+        <Binormal> { -0.417858 -0.763813 0.490681 }
+      }
+      <Normal> { 0.392621 0.335337 0.856349 }
+    }
+    <Vertex> 4666 {
+      11.7197132111 -51.9097290039 27.8682384491
+      <UV>  {
+        -0.073782 0.891829
+        <Tangent> { 0.803784 -0.561502 -0.196589 }
+        <Binormal> { -0.418450 -0.768346 0.483672 }
+      }
+      <Normal> { 0.403333 0.319987 0.857265 }
+    }
+    <Vertex> 4667 {
+      13.4791660309 -53.5178909302 27.5331077576
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.788309 -0.559541 -0.255896 }
+        <Binormal> { -0.427563 -0.797137 0.425869 }
+      }
+      <Normal> { 0.456435 0.216254 0.863033 }
+    }
+    <Vertex> 4668 {
+      14.8234167099 -52.4148025513 26.5358734131
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.699357 -0.694067 -0.170793 }
+        <Binormal> { -0.550329 -0.675335 0.490951 }
+      }
+      <Normal> { 0.457686 0.247780 0.853877 }
+    }
+    <Vertex> 4669 {
+      13.4791660309 -53.5178909302 27.5331077576
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.788309 -0.559541 -0.255896 }
+        <Binormal> { -0.427563 -0.797137 0.425869 }
+      }
+      <Normal> { 0.456435 0.216254 0.863033 }
+    }
+    <Vertex> 4670 {
+      14.710641861 -54.9005241394 27.1339435577
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.628780 -0.755265 -0.184959 }
+        <Binormal> { -0.630082 -0.632848 0.442177 }
+      }
+      <Normal> { 0.503494 0.098453 0.858364 }
+    }
+    <Vertex> 4671 {
+      15.9685983658 -54.8000450134 26.432723999
+      <UV>  {
+        0.053131 0.854502
+        <Tangent> { 0.532379 -0.838675 -0.114877 }
+        <Binormal> { -0.688617 -0.505524 0.499362 }
+      }
+      <Normal> { 0.553728 0.065676 0.830073 }
+    }
+    <Vertex> 4672 {
+      14.8234167099 -52.4148025513 26.5358734131
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.699357 -0.694067 -0.170793 }
+        <Binormal> { -0.550329 -0.675335 0.490951 }
+      }
+      <Normal> { 0.457686 0.247780 0.853877 }
+    }
+    <Vertex> 4673 {
+      15.9685983658 -54.8000450134 26.432723999
+      <UV>  {
+        0.053131 0.854502
+        <Tangent> { 0.532379 -0.838675 -0.114877 }
+        <Binormal> { -0.688617 -0.505524 0.499362 }
+      }
+      <Normal> { 0.553728 0.065676 0.830073 }
+    }
+    <Vertex> 4674 {
+      17.7866420746 -54.2352256775 25.1051540375
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.526427 -0.838796 -0.138912 }
+        <Binormal> { -0.653034 -0.498144 0.533190 }
+      }
+      <Normal> { 0.623096 0.020020 0.781854 }
+    }
+    <Vertex> 4675 {
+      16.544752121 -51.2660331726 25.2850551605
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.657971 -0.740332 -0.137779 }
+        <Binormal> { -0.589018 -0.619920 0.518146 }
+      }
+      <Normal> { 0.478774 0.248787 0.841914 }
+    }
+    <Vertex> 4676 {
+      10.2417430878 -49.509098053 27.513420105
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.628230 0.773841 -0.080382 }
+        <Binormal> { 0.694081 0.510783 -0.507300 }
+      }
+      <Normal> { 0.351512 0.374493 0.857997 }
+    }
+    <Vertex> 4677 {
+      10.5679254532 -48.0281295776 26.7095680237
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.697578 0.711327 -0.085673 }
+        <Binormal> { 0.630109 0.552176 -0.545952 }
+      }
+      <Normal> { 0.341044 0.434828 0.833399 }
+    }
+    <Vertex> 4678 {
+      7.93674230576 -47.6438827515 27.5321445465
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.729724 0.666482 -0.152575 }
+        <Binormal> { 0.624407 0.558692 -0.545874 }
+      }
+      <Normal> { 0.278573 0.493606 0.823847 }
+    }
+    <Vertex> 4679 {
+      7.80066585541 -49.1932754517 28.3351364136
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.940699 -0.121706 -0.316658 }
+        <Binormal> { 0.020344 -0.911336 0.410704 }
+      }
+      <Normal> { 0.320780 0.395093 0.860805 }
+    }
+    <Vertex> 4680 {
+      10.2417430878 -49.509098053 27.513420105
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.628230 0.773841 -0.080382 }
+        <Binormal> { 0.694081 0.510783 -0.507300 }
+      }
+      <Normal> { 0.351512 0.374493 0.857997 }
+    }
+    <Vertex> 4681 {
+      7.80066585541 -49.1932754517 28.3351364136
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.940699 -0.121706 -0.316658 }
+        <Binormal> { 0.020344 -0.911336 0.410704 }
+      }
+      <Normal> { 0.320780 0.395093 0.860805 }
+    }
+    <Vertex> 4682 {
+      8.02784633636 -50.3675079346 28.7422962189
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.620951 0.776743 -0.105020 }
+        <Binormal> { 0.710923 0.501698 -0.492836 }
+      }
+      <Normal> { 0.330119 0.380688 0.863735 }
+    }
+    <Vertex> 4683 {
+      9.5509853363 -50.9793167114 28.421415329
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.628251 0.774035 -0.078217 }
+        <Binormal> { 0.693109 0.511214 -0.508193 }
+      }
+      <Normal> { 0.353374 0.373486 0.857662 }
+    }
+    <Vertex> 4684 {
+      10.2417430878 -49.509098053 27.513420105
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.628230 0.773841 -0.080382 }
+        <Binormal> { 0.694081 0.510783 -0.507300 }
+      }
+      <Normal> { 0.351512 0.374493 0.857997 }
+    }
+    <Vertex> 4685 {
+      9.5509853363 -50.9793167114 28.421415329
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.628251 0.774035 -0.078217 }
+        <Binormal> { 0.693109 0.511214 -0.508193 }
+      }
+      <Normal> { 0.353374 0.373486 0.857662 }
+    }
+    <Vertex> 4686 {
+      11.7197132111 -51.9097290039 27.8682384491
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.594661 0.803705 -0.020214 }
+        <Binormal> { 0.695476 0.501643 -0.514458 }
+      }
+      <Normal> { 0.403333 0.319987 0.857265 }
+    }
+    <Vertex> 4687 {
+      12.8279457092 -50.5107765198 26.8126487732
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.904085 0.350167 0.244976 }
+        <Binormal> { 0.217716 0.870395 -0.440656 }
+      }
+      <Normal> { 0.392621 0.335337 0.856349 }
+    }
+    <Vertex> 4688 {
+      10.2417430878 -49.509098053 27.513420105
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.628230 0.773841 -0.080382 }
+        <Binormal> { 0.694081 0.510783 -0.507300 }
+      }
+      <Normal> { 0.351512 0.374493 0.857997 }
+    }
+    <Vertex> 4689 {
+      12.8279457092 -50.5107765198 26.8126487732
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.904085 0.350167 0.244976 }
+        <Binormal> { 0.217716 0.870395 -0.440656 }
+      }
+      <Normal> { 0.392621 0.335337 0.856349 }
+    }
+    <Vertex> 4690 {
+      13.9417600632 -48.6074409485 25.5346794128
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.655505 0.753725 -0.046516 }
+        <Binormal> { 0.653529 0.535343 -0.535077 }
+      }
+      <Normal> { 0.378399 0.381146 0.843501 }
+    }
+    <Vertex> 4691 {
+      10.5679254532 -48.0281295776 26.7095680237
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.697578 0.711327 -0.085673 }
+        <Binormal> { 0.630109 0.552176 -0.545952 }
+      }
+      <Normal> { 0.341044 0.434828 0.833399 }
+    }
+    <Vertex> 4692 {
+      6.24057006836 -49.3468132019 28.9747467041
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.787473 0.358398 -0.501436 }
+        <Binormal> { 0.531024 -0.807083 0.257082 }
+      }
+      <Normal> { 0.330363 0.476821 0.814539 }
+    }
+    <Vertex> 4693 {
+      6.05911493301 -47.8354034424 28.232465744
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.863767 0.358593 -0.354002 }
+        <Binormal> { 0.500708 -0.686225 0.526607 }
+      }
+      <Normal> { 0.081759 0.643605 0.760949 }
+    }
+    <Vertex> 4694 {
+      4.35131406784 -48.3970603943 28.6231327057
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.794697 0.375111 -0.477231 }
+        <Binormal> { 0.545862 -0.115609 0.818113 }
+      }
+      <Normal> { -0.141240 0.962798 0.230293 }
+    }
+    <Vertex> 4695 {
+      5.30085802078 -49.3419837952 29.614818573
+      <UV>  {
+        0.053131 0.854502
+        <Tangent> { 0.407141 0.889569 0.207132 }
+        <Binormal> { 0.239865 -0.046707 -0.270889 }
+      }
+      <Normal> { 0.610370 0.668264 0.425245 }
+    }
+    <Vertex> 4696 {
+      6.24057006836 -49.3468132019 28.9747467041
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.787473 0.358398 -0.501436 }
+        <Binormal> { 0.531024 -0.807083 0.257082 }
+      }
+      <Normal> { 0.330363 0.476821 0.814539 }
+    }
+    <Vertex> 4697 {
+      5.30085802078 -49.3419837952 29.614818573
+      <UV>  {
+        0.053131 0.854502
+        <Tangent> { 0.407141 0.889569 0.207132 }
+        <Binormal> { 0.239865 -0.046707 -0.270889 }
+      }
+      <Normal> { 0.610370 0.668264 0.425245 }
+    }
+    <Vertex> 4698 {
+      6.24800300598 -50.9838409424 30.0005741119
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.611398 0.392102 -0.687349 }
+        <Binormal> { 0.580064 -0.689068 0.122886 }
+      }
+      <Normal> { 0.680166 0.637196 0.362377 }
+    }
+    <Vertex> 4699 {
+      7.01249361038 -50.8763618469 29.3485336304
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.589102 0.548932 -0.592986 }
+        <Binormal> { 0.704961 -0.707111 0.045765 }
+      }
+      <Normal> { 0.411542 0.461165 0.786065 }
+    }
+    <Vertex> 4700 {
+      6.24057006836 -49.3468132019 28.9747467041
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.787473 0.358398 -0.501436 }
+        <Binormal> { 0.531024 -0.807083 0.257082 }
+      }
+      <Normal> { 0.330363 0.476821 0.814539 }
+    }
+    <Vertex> 4701 {
+      7.01249361038 -50.8763618469 29.3485336304
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.589102 0.548932 -0.592986 }
+        <Binormal> { 0.704961 -0.707111 0.045765 }
+      }
+      <Normal> { 0.411542 0.461165 0.786065 }
+    }
+    <Vertex> 4702 {
+      8.02784633636 -50.3675079346 28.7422962189
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.773153 0.425137 -0.470630 }
+        <Binormal> { 0.546369 -0.823163 0.153984 }
+      }
+      <Normal> { 0.330119 0.380688 0.863735 }
+    }
+    <Vertex> 4703 {
+      7.80066585541 -49.1932754517 28.3351364136
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.862292 0.261034 -0.433951 }
+        <Binormal> { 0.396150 -0.881468 0.256951 }
+      }
+      <Normal> { 0.320780 0.395093 0.860805 }
+    }
+    <Vertex> 4704 {
+      6.24057006836 -49.3468132019 28.9747467041
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.787473 0.358398 -0.501436 }
+        <Binormal> { 0.531024 -0.807083 0.257082 }
+      }
+      <Normal> { 0.330363 0.476821 0.814539 }
+    }
+    <Vertex> 4705 {
+      7.80066585541 -49.1932754517 28.3351364136
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.862292 0.261034 -0.433951 }
+        <Binormal> { 0.396150 -0.881468 0.256951 }
+      }
+      <Normal> { 0.320780 0.395093 0.860805 }
+    }
+    <Vertex> 4706 {
+      7.93674230576 -47.6438827515 27.5321445465
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.863839 0.265731 -0.427982 }
+        <Binormal> { 0.430176 -0.830896 0.352371 }
+      }
+      <Normal> { 0.278573 0.493606 0.823847 }
+    }
+    <Vertex> 4707 {
+      6.05911493301 -47.8354034424 28.232465744
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.863767 0.358593 -0.354002 }
+        <Binormal> { 0.500708 -0.686225 0.526607 }
+      }
+      <Normal> { 0.081759 0.643605 0.760949 }
+    }
+    <Vertex> 4708 {
+      12.8092412949 -54.8126602173 28.1790504456
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.260718 -0.868828 0.420908 }
+        <Binormal> { -0.805128 0.435927 0.401119 }
+      }
+      <Normal> { 0.539384 0.258950 0.801233 }
+    }
+    <Vertex> 4709 {
+      12.7377071381 -55.8041267395 28.7273979187
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.063011 -0.873341 0.483016 }
+        <Binormal> { -0.612022 0.349382 0.551876 }
+      }
+      <Normal> { 0.678823 0.650166 0.341197 }
+    }
+    <Vertex> 4710 {
+      14.753610611 -57.5889358521 27.4361286163
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.519338 0.314104 0.794721 }
+        <Binormal> { -0.317840 0.792276 -0.520842 }
+      }
+      <Normal> { 0.793237 0.523087 0.311624 }
+    }
+    <Vertex> 4711 {
+      14.5603275299 -56.3264503479 27.3274726868
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.015881 -0.993617 0.111685 }
+        <Binormal> { -0.805624 0.053439 0.589981 }
+      }
+      <Normal> { 0.592212 0.097598 0.799829 }
+    }
+    <Vertex> 4712 {
+      12.8092412949 -54.8126602173 28.1790504456
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.260718 -0.868828 0.420908 }
+        <Binormal> { -0.805128 0.435927 0.401119 }
+      }
+      <Normal> { 0.539384 0.258950 0.801233 }
+    }
+    <Vertex> 4713 {
+      14.5603275299 -56.3264503479 27.3274726868
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.015881 -0.993617 0.111685 }
+        <Binormal> { -0.805624 0.053439 0.589981 }
+      }
+      <Normal> { 0.592212 0.097598 0.799829 }
+    }
+    <Vertex> 4714 {
+      14.710641861 -54.9005241394 27.1339435577
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.276822 -0.918207 0.283313 }
+        <Binormal> { -0.816048 0.380261 0.435058 }
+      }
+      <Normal> { 0.503494 0.098453 0.858364 }
+    }
+    <Vertex> 4715 {
+      13.4791660309 -53.5178909302 27.5331077576
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.420144 -0.812016 0.405104 }
+        <Binormal> { -0.788402 0.547502 0.279774 }
+      }
+      <Normal> { 0.456435 0.216254 0.863033 }
+    }
+    <Vertex> 4716 {
+      12.8092412949 -54.8126602173 28.1790504456
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.260718 -0.868828 0.420908 }
+        <Binormal> { -0.805128 0.435927 0.401119 }
+      }
+      <Normal> { 0.539384 0.258950 0.801233 }
+    }
+    <Vertex> 4717 {
+      13.4791660309 -53.5178909302 27.5331077576
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.420144 -0.812016 0.405104 }
+        <Binormal> { -0.788402 0.547502 0.279774 }
+      }
+      <Normal> { 0.456435 0.216254 0.863033 }
+    }
+    <Vertex> 4718 {
+      11.7197132111 -51.9097290039 27.8682384491
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.454307 -0.759121 0.466198 }
+        <Binormal> { -0.799945 0.577494 0.160806 }
+      }
+      <Normal> { 0.403333 0.319987 0.857265 }
+    }
+    <Vertex> 4719 {
+      10.8354282379 -53.2119560242 28.8171844482
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.438445 -0.676902 0.591244 }
+        <Binormal> { -0.767870 0.623935 0.144905 }
+      }
+      <Normal> { 0.469863 0.394910 0.789453 }
+    }
+    <Vertex> 4720 {
+      12.8092412949 -54.8126602173 28.1790504456
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.260718 -0.868828 0.420908 }
+        <Binormal> { -0.805128 0.435927 0.401119 }
+      }
+      <Normal> { 0.539384 0.258950 0.801233 }
+    }
+    <Vertex> 4721 {
+      10.8354282379 -53.2119560242 28.8171844482
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.438445 -0.676902 0.591244 }
+        <Binormal> { -0.767870 0.623935 0.144905 }
+      }
+      <Normal> { 0.469863 0.394910 0.789453 }
+    }
+    <Vertex> 4722 {
+      10.3430070877 -54.0351829529 29.7247276306
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.235580 -0.758048 0.608166 }
+        <Binormal> { -0.696210 0.445612 0.285748 }
+      }
+      <Normal> { 0.601825 0.723594 0.337901 }
+    }
+    <Vertex> 4723 {
+      12.7377071381 -55.8041267395 28.7273979187
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.063011 -0.873341 0.483016 }
+        <Binormal> { -0.612022 0.349382 0.551876 }
+      }
+      <Normal> { 0.678823 0.650166 0.341197 }
+    }
+    <Vertex> 4724 {
+      8.72364616394 -52.0322990417 29.2515125275
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.850963 -0.510859 -0.122003 }
+        <Binormal> { -0.337226 -0.709490 0.618692 }
+      }
+      <Normal> { 0.409650 0.481124 0.775018 }
+    }
+    <Vertex> 4725 {
+      9.5509853363 -50.9793167114 28.421415329
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.901467 -0.376574 -0.213424 }
+        <Binormal> { -0.243262 -0.848572 0.469756 }
+      }
+      <Normal> { 0.353374 0.373486 0.857662 }
+    }
+    <Vertex> 4726 {
+      8.02784633636 -50.3675079346 28.7422962189
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.871900 -0.476549 -0.112658 }
+        <Binormal> { -0.368724 -0.790281 0.489239 }
+      }
+      <Normal> { 0.330119 0.380688 0.863735 }
+    }
+    <Vertex> 4727 {
+      7.01249361038 -50.8763618469 29.3485336304
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.827731 -0.559159 -0.046932 }
+        <Binormal> { -0.417892 -0.669965 0.611838 }
+      }
+      <Normal> { 0.411542 0.461165 0.786065 }
+    }
+    <Vertex> 4728 {
+      8.72364616394 -52.0322990417 29.2515125275
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.850963 -0.510859 -0.122003 }
+        <Binormal> { -0.337226 -0.709490 0.618692 }
+      }
+      <Normal> { 0.409650 0.481124 0.775018 }
+    }
+    <Vertex> 4729 {
+      7.01249361038 -50.8763618469 29.3485336304
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.827731 -0.559159 -0.046932 }
+        <Binormal> { -0.417892 -0.669965 0.611838 }
+      }
+      <Normal> { 0.411542 0.461165 0.786065 }
+    }
+    <Vertex> 4730 {
+      6.24800300598 -50.9838409424 30.0005741119
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.797557 -0.603243 -0.001004 }
+        <Binormal> { -0.217961 -0.289699 0.918505 }
+      }
+      <Normal> { 0.680166 0.637196 0.362377 }
+    }
+    <Vertex> 4731 {
+      8.05424594879 -52.4883308411 30.0931663513
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.800700 -0.596632 -0.053937 }
+        <Binormal> { -0.141929 -0.276395 0.950444 }
+      }
+      <Normal> { 0.587115 0.749535 0.305643 }
+    }
+    <Vertex> 4732 {
+      8.72364616394 -52.0322990417 29.2515125275
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.850963 -0.510859 -0.122003 }
+        <Binormal> { -0.337226 -0.709490 0.618692 }
+      }
+      <Normal> { 0.409650 0.481124 0.775018 }
+    }
+    <Vertex> 4733 {
+      8.05424594879 -52.4883308411 30.0931663513
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.800700 -0.596632 -0.053937 }
+        <Binormal> { -0.141929 -0.276395 0.950444 }
+      }
+      <Normal> { 0.587115 0.749535 0.305643 }
+    }
+    <Vertex> 4734 {
+      10.3430070877 -54.0351829529 29.7247276306
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.731103 0.328965 0.597686 }
+        <Binormal> { -0.321338 0.606768 -0.727031 }
+      }
+      <Normal> { 0.601825 0.723594 0.337901 }
+    }
+    <Vertex> 4735 {
+      10.8354282379 -53.2119560242 28.8171844482
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.859282 -0.480001 -0.176728 }
+        <Binormal> { -0.309147 -0.761401 0.564874 }
+      }
+      <Normal> { 0.469863 0.394910 0.789453 }
+    }
+    <Vertex> 4736 {
+      8.72364616394 -52.0322990417 29.2515125275
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.850963 -0.510859 -0.122003 }
+        <Binormal> { -0.337226 -0.709490 0.618692 }
+      }
+      <Normal> { 0.409650 0.481124 0.775018 }
+    }
+    <Vertex> 4737 {
+      10.8354282379 -53.2119560242 28.8171844482
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.859282 -0.480001 -0.176728 }
+        <Binormal> { -0.309147 -0.761401 0.564874 }
+      }
+      <Normal> { 0.469863 0.394910 0.789453 }
+    }
+    <Vertex> 4738 {
+      11.7197132111 -51.9097290039 27.8682384491
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.594661 0.803705 -0.020214 }
+        <Binormal> { 0.695476 0.501643 -0.514458 }
+      }
+      <Normal> { 0.403333 0.319987 0.857265 }
+    }
+    <Vertex> 4739 {
+      9.5509853363 -50.9793167114 28.421415329
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.901467 -0.376574 -0.213424 }
+        <Binormal> { -0.243262 -0.848572 0.469756 }
+      }
+      <Normal> { 0.353374 0.373486 0.857662 }
+    }
+    <Vertex> 4740 {
+      1.10578429699 -63.2485923767 13.813952446
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.450490 0.887709 0.095034 }
+        <Binormal> { 0.891609 -0.452763 0.002745 }
+      }
+      <Normal> { -0.044893 -0.082369 0.995575 }
+    }
+    <Vertex> 4741 {
+      2.8804795742 -62.3616981506 14.304930687
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.375050 0.894043 0.244997 }
+        <Binormal> { 0.759294 -0.409529 0.332097 }
+      }
+      <Normal> { -0.540269 -0.402417 0.739006 }
+    }
+    <Vertex> 4742 {
+      0.800136804581 -58.5618629456 14.3294782639
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.118072 0.990996 0.063128 }
+        <Binormal> { 0.547354 0.012032 0.834860 }
+      }
+      <Normal> { -0.833308 -0.076693 0.547441 }
+    }
+    <Vertex> 4743 {
+      -0.996917665005 -61.9727554321 13.8902273178
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.442436 0.895142 0.054509 }
+        <Binormal> { 0.856992 -0.439900 0.268002 }
+      }
+      <Normal> { -0.258156 0.083438 0.962462 }
+    }
+    <Vertex> 4744 {
+      1.10578429699 -63.2485923767 13.813952446
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.450490 0.887709 0.095034 }
+        <Binormal> { 0.891609 -0.452763 0.002745 }
+      }
+      <Normal> { -0.044893 -0.082369 0.995575 }
+    }
+    <Vertex> 4745 {
+      -0.996917665005 -61.9727554321 13.8902273178
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.442436 0.895142 0.054509 }
+        <Binormal> { 0.856992 -0.439900 0.268002 }
+      }
+      <Normal> { -0.258156 0.083438 0.962462 }
+    }
+    <Vertex> 4746 {
+      -2.4554605484 -65.1486206055 13.9283847809
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.883808 0.467001 -0.028173 }
+        <Binormal> { 0.462767 -0.866642 0.151726 }
+      }
+      <Normal> { -0.142094 0.096591 0.985107 }
+    }
+    <Vertex> 4747 {
+      1.05940437317 -65.8644638062 13.7779159546
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.512864 0.858470 0.000430 }
+        <Binormal> { 0.858290 -0.512747 -0.019814 }
+      }
+      <Normal> { 0.017975 -0.008545 0.999786 }
+    }
+    <Vertex> 4748 {
+      1.10578429699 -63.2485923767 13.813952446
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.450490 0.887709 0.095034 }
+        <Binormal> { 0.891609 -0.452763 0.002745 }
+      }
+      <Normal> { -0.044893 -0.082369 0.995575 }
+    }
+    <Vertex> 4749 {
+      1.05940437317 -65.8644638062 13.7779159546
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.512864 0.858470 0.000430 }
+        <Binormal> { 0.858290 -0.512747 -0.019814 }
+      }
+      <Normal> { 0.017975 -0.008545 0.999786 }
+    }
+    <Vertex> 4750 {
+      6.00489807129 -66.2164764404 13.7195005417
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.457224 0.879453 0.132320 }
+        <Binormal> { 0.789964 -0.409859 -0.005589 }
+      }
+      <Normal> { -0.257790 -0.508072 0.821802 }
+    }
+    <Vertex> 4751 {
+      2.8804795742 -62.3616981506 14.304930687
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.375050 0.894043 0.244997 }
+        <Binormal> { 0.759294 -0.409529 0.332097 }
+      }
+      <Normal> { -0.540269 -0.402417 0.739006 }
+    }
+    <Vertex> 4752 {
+      -8.39793395996 -67.9765930176 12.6581373215
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.986033 -0.161989 0.038702 }
+        <Binormal> { -0.163258 -0.986041 0.032295 }
+      }
+      <Normal> { -0.028199 0.037385 0.998901 }
+    }
+    <Vertex> 4753 {
+      -5.84755802155 -68.1924972534 12.9587469101
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.976901 -0.177350 0.119209 }
+        <Binormal> { -0.178934 -0.958486 0.040375 }
+      }
+      <Normal> { -0.320200 0.099460 0.942076 }
+    }
+    <Vertex> 4754 {
+      -4.65595674515 -64.878578186 12.9149770737
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.987724 -0.098184 0.121496 }
+        <Binormal> { -0.110856 -0.963027 0.122979 }
+      }
+      <Normal> { -0.314768 0.155797 0.936277 }
+    }
+    <Vertex> 4755 {
+      -7.08890581131 -64.4586486816 12.5962629318
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.997872 -0.044933 0.047242 }
+        <Binormal> { -0.045818 -0.998730 0.017869 }
+      }
+      <Normal> { -0.038789 0.019654 0.999023 }
+    }
+    <Vertex> 4756 {
+      -8.39793395996 -67.9765930176 12.6581373215
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.986033 -0.161989 0.038702 }
+        <Binormal> { -0.163258 -0.986041 0.032295 }
+      }
+      <Normal> { -0.028199 0.037385 0.998901 }
+    }
+    <Vertex> 4757 {
+      -7.08890581131 -64.4586486816 12.5962629318
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.997872 -0.044933 0.047242 }
+        <Binormal> { -0.045818 -0.998730 0.017869 }
+      }
+      <Normal> { -0.038789 0.019654 0.999023 }
+    }
+    <Vertex> 4758 {
+      -9.46007061005 -64.0183792114 12.6652421951
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.992760 -0.114440 -0.036492 }
+        <Binormal> { -0.112974 -0.940684 -0.123437 }
+      }
+      <Normal> { 0.313150 -0.160436 0.936033 }
+    }
+    <Vertex> 4759 {
+      -10.8164691925 -67.6792755127 12.7735214233
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.978007 -0.203747 -0.044593 }
+        <Binormal> { -0.194448 -0.934961 0.007263 }
+      }
+      <Normal> { 0.333171 -0.061983 0.940794 }
+    }
+    <Vertex> 4760 {
+      -8.39793395996 -67.9765930176 12.6581373215
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.986033 -0.161989 0.038702 }
+        <Binormal> { -0.163258 -0.986041 0.032295 }
+      }
+      <Normal> { -0.028199 0.037385 0.998901 }
+    }
+    <Vertex> 4761 {
+      -10.8164691925 -67.6792755127 12.7735214233
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.978007 -0.203747 -0.044593 }
+        <Binormal> { -0.194448 -0.934961 0.007263 }
+      }
+      <Normal> { 0.333171 -0.061983 0.940794 }
+    }
+    <Vertex> 4762 {
+      -11.5693979263 -71.223274231 12.9505004883
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.965976 -0.254937 -0.043570 }
+        <Binormal> { -0.241305 -0.927351 0.076240 }
+      }
+      <Normal> { 0.325999 -0.007111 0.945311 }
+    }
+    <Vertex> 4763 {
+      -9.05541038513 -71.3144760132 12.8091955185
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.957057 -0.288871 0.024418 }
+        <Binormal> { -0.289703 -0.955987 0.045265 }
+      }
+      <Normal> { -0.017212 0.052492 0.998444 }
+    }
+    <Vertex> 4764 {
+      -8.39793395996 -67.9765930176 12.6581373215
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.986033 -0.161989 0.038702 }
+        <Binormal> { -0.163258 -0.986041 0.032295 }
+      }
+      <Normal> { -0.028199 0.037385 0.998901 }
+    }
+    <Vertex> 4765 {
+      -9.05541038513 -71.3144760132 12.8091955185
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.957057 -0.288871 0.024418 }
+        <Binormal> { -0.289703 -0.955987 0.045265 }
+      }
+      <Normal> { -0.017212 0.052492 0.998444 }
+    }
+    <Vertex> 4766 {
+      -6.19889211655 -71.3269424438 13.0155086517
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.971709 -0.212725 0.102616 }
+        <Binormal> { -0.207844 -0.956696 -0.015094 }
+      }
+      <Normal> { -0.298746 0.049867 0.953001 }
+    }
+    <Vertex> 4767 {
+      -5.84755802155 -68.1924972534 12.9587469101
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.976901 -0.177350 0.119209 }
+        <Binormal> { -0.178934 -0.958486 0.040375 }
+      }
+      <Normal> { -0.320200 0.099460 0.942076 }
+    }
+    <Vertex> 4768 {
+      -11.5854406357 -67.5801696777 13.3671655655
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.776877 -0.161461 -0.608598 }
+        <Binormal> { -0.218557 -0.975534 -0.020179 }
+      }
+      <Normal> { 0.598804 -0.150426 0.786615 }
+    }
+    <Vertex> 4769 {
+      -10.8164691925 -67.6792755127 12.7735214233
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.709268 -0.373043 -0.598146 }
+        <Binormal> { -0.388031 -0.866559 0.080324 }
+      }
+      <Normal> { 0.333171 -0.061983 0.940794 }
+    }
+    <Vertex> 4770 {
+      -9.46007061005 -64.0183792114 12.6652421951
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.798376 -0.042526 -0.600656 }
+        <Binormal> { -0.136172 -0.935402 -0.114771 }
+      }
+      <Normal> { 0.313150 -0.160436 0.936033 }
+    }
+    <Vertex> 4771 {
+      -10.19465065 -63.8716163635 13.2434186935
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.777711 0.307148 -0.548476 }
+        <Binormal> { 0.066149 -0.906716 -0.413967 }
+      }
+      <Normal> { 0.589099 -0.299631 0.750420 }
+    }
+    <Vertex> 4772 {
+      -11.5854406357 -67.5801696777 13.3671655655
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.776877 -0.161461 -0.608598 }
+        <Binormal> { -0.218557 -0.975534 -0.020179 }
+      }
+      <Normal> { 0.598804 -0.150426 0.786615 }
+    }
+    <Vertex> 4773 {
+      -10.19465065 -63.8716163635 13.2434186935
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.777711 0.307148 -0.548476 }
+        <Binormal> { 0.066149 -0.906716 -0.413967 }
+      }
+      <Normal> { 0.589099 -0.299631 0.750420 }
+    }
+    <Vertex> 4774 {
+      -10.8337583542 -63.9921989441 13.788312912
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.767499 0.241958 -0.593634 }
+        <Binormal> { 0.129499 -0.905956 -0.201830 }
+      }
+      <Normal> { 0.318857 -0.162450 0.933775 }
+    }
+    <Vertex> 4775 {
+      -12.2778902054 -67.6792755127 13.8965911865
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.764351 -0.116733 -0.634145 }
+        <Binormal> { -0.150237 -0.919023 -0.011911 }
+      }
+      <Normal> { 0.303018 -0.061861 0.950957 }
+    }
+    <Vertex> 4776 {
+      -11.5854406357 -67.5801696777 13.3671655655
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.776877 -0.161461 -0.608598 }
+        <Binormal> { -0.218557 -0.975534 -0.020179 }
+      }
+      <Normal> { 0.598804 -0.150426 0.786615 }
+    }
+    <Vertex> 4777 {
+      -12.2778902054 -67.6792755127 13.8965911865
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.764351 -0.116733 -0.634145 }
+        <Binormal> { -0.150237 -0.919023 -0.011911 }
+      }
+      <Normal> { 0.303018 -0.061861 0.950957 }
+    }
+    <Vertex> 4778 {
+      -13.1705560684 -71.2176589966 14.0590105057
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.707063 -0.427775 -0.563090 }
+        <Binormal> { -0.421583 -0.830541 0.101581 }
+      }
+      <Normal> { 0.264046 -0.016083 0.964354 }
+    }
+    <Vertex> 4779 {
+      -12.3980903625 -71.1928863525 13.5527858734
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.557482 -0.692454 -0.457952 }
+        <Binormal> { -0.596413 -0.717690 0.359159 }
+      }
+      <Normal> { 0.569659 -0.063326 0.819422 }
+    }
+    <Vertex> 4780 {
+      -11.5854406357 -67.5801696777 13.3671655655
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.776877 -0.161461 -0.608598 }
+        <Binormal> { -0.218557 -0.975534 -0.020179 }
+      }
+      <Normal> { 0.598804 -0.150426 0.786615 }
+    }
+    <Vertex> 4781 {
+      -12.3980903625 -71.1928863525 13.5527858734
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.557482 -0.692454 -0.457952 }
+        <Binormal> { -0.596413 -0.717690 0.359159 }
+      }
+      <Normal> { 0.569659 -0.063326 0.819422 }
+    }
+    <Vertex> 4782 {
+      -11.5693979263 -71.223274231 12.9505004883
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.652301 -0.528460 -0.543354 }
+        <Binormal> { -0.503422 -0.793760 0.167639 }
+      }
+      <Normal> { 0.325999 -0.007111 0.945311 }
+    }
+    <Vertex> 4783 {
+      -10.8164691925 -67.6792755127 12.7735214233
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.709268 -0.373043 -0.598146 }
+        <Binormal> { -0.388031 -0.866559 0.080324 }
+      }
+      <Normal> { 0.333171 -0.061983 0.940794 }
+    }
+    <Vertex> 4784 {
+      -19.2121963501 -68.373008728 14.016076088
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.530341 -0.845836 -0.057435 }
+        <Binormal> { -0.835728 0.510230 0.202837 }
+      }
+      <Normal> { 0.138524 -0.161534 0.977081 }
+    }
+    <Vertex> 4785 {
+      -17.1218128204 -68.2739028931 13.6781978607
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.634400 -0.772243 0.034320 }
+        <Binormal> { -0.768620 0.634361 0.066103 }
+      }
+      <Normal> { 0.041749 -0.053377 0.997681 }
+    }
+    <Vertex> 4786 {
+      -15.5305328369 -64.7141723633 13.7349014282
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.609412 -0.792648 0.018075 }
+        <Binormal> { -0.788952 0.608504 0.084809 }
+      }
+      <Normal> { 0.082522 -0.031831 0.996063 }
+    }
+    <Vertex> 4787 {
+      -17.7514514923 -64.8301315308 14.3047637939
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.578628 -0.815541 -0.009056 }
+        <Binormal> { -0.801225 0.566432 0.183569 }
+      }
+      <Normal> { 0.178686 -0.065401 0.981719 }
+    }
+    <Vertex> 4788 {
+      -19.2121963501 -68.373008728 14.016076088
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.530341 -0.845836 -0.057435 }
+        <Binormal> { -0.835728 0.510230 0.202837 }
+      }
+      <Normal> { 0.138524 -0.161534 0.977081 }
+    }
+    <Vertex> 4789 {
+      -17.7514514923 -64.8301315308 14.3047637939
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.578628 -0.815541 -0.009056 }
+        <Binormal> { -0.801225 0.566432 0.183569 }
+      }
+      <Normal> { 0.178686 -0.065401 0.981719 }
+    }
+    <Vertex> 4790 {
+      -19.8271713257 -64.8338394165 14.7309522629
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.469499 -0.880726 -0.062385 }
+        <Binormal> { -0.881038 0.469977 -0.004399 }
+      }
+      <Normal> { -0.008118 -0.005860 0.999939 }
+    }
+    <Vertex> 4791 {
+      -21.1048641205 -68.373008728 14.3047637939
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.352012 -0.922897 -0.156040 }
+        <Binormal> { -0.935758 0.347560 0.055342 }
+      }
+      <Normal> { 0.004639 -0.145054 0.989410 }
+    }
+    <Vertex> 4792 {
+      -19.2121963501 -68.373008728 14.016076088
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.530341 -0.845836 -0.057435 }
+        <Binormal> { -0.835728 0.510230 0.202837 }
+      }
+      <Normal> { 0.138524 -0.161534 0.977081 }
+    }
+    <Vertex> 4793 {
+      -21.1048641205 -68.373008728 14.3047637939
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.352012 -0.922897 -0.156040 }
+        <Binormal> { -0.935758 0.347560 0.055342 }
+      }
+      <Normal> { 0.004639 -0.145054 0.989410 }
+    }
+    <Vertex> 4794 {
+      -22.3282394409 -71.3910903931 13.6222763062
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.431241 -0.886899 -0.165655 }
+        <Binormal> { -0.901304 0.423926 0.076663 }
+      }
+      <Normal> { 0.017304 -0.142186 0.989685 }
+    }
+    <Vertex> 4795 {
+      -20.4556751251 -71.3910903931 13.5540771484
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.495895 -0.858596 -0.130004 }
+        <Binormal> { -0.867661 0.487750 0.088371 }
+      }
+      <Normal> { 0.031220 -0.124149 0.991760 }
+    }
+    <Vertex> 4796 {
+      -19.2121963501 -68.373008728 14.016076088
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.530341 -0.845836 -0.057435 }
+        <Binormal> { -0.835728 0.510230 0.202837 }
+      }
+      <Normal> { 0.138524 -0.161534 0.977081 }
+    }
+    <Vertex> 4797 {
+      -20.4556751251 -71.3910903931 13.5540771484
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.495895 -0.858596 -0.130004 }
+        <Binormal> { -0.867661 0.487750 0.088371 }
+      }
+      <Normal> { 0.031220 -0.124149 0.991760 }
+    }
+    <Vertex> 4798 {
+      -18.3166694641 -71.366317749 13.5859012604
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.576322 -0.816012 -0.044478 }
+        <Binormal> { -0.815955 0.577545 -0.023176 }
+      }
+      <Normal> { -0.049654 -0.030091 0.998291 }
+    }
+    <Vertex> 4799 {
+      -17.1218128204 -68.2739028931 13.6781978607
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.634400 -0.772243 0.034320 }
+        <Binormal> { -0.768620 0.634361 0.066103 }
+      }
+      <Normal> { 0.041749 -0.053377 0.997681 }
+    }
+    <Vertex> 4800 {
+      -23.1666622162 -68.373008728 14.016076088
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.029136 0.997768 0.059852 }
+        <Binormal> { 0.990269 -0.036965 0.134169 }
+      }
+      <Normal> { -0.136082 -0.055361 0.989135 }
+    }
+    <Vertex> 4801 {
+      -21.1048641205 -68.373008728 14.3047637939
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.147109 0.978755 0.142803 }
+        <Binormal> { 0.989109 -0.144889 -0.025879 }
+      }
+      <Normal> { 0.004639 -0.145054 0.989410 }
+    }
+    <Vertex> 4802 {
+      -19.8271713257 -64.8338394165 14.7309522629
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.008118 -0.005860 0.999939 }
+    }
+    <Vertex> 4803 {
+      -22.0035934448 -64.8573226929 14.2773885727
+      <UV>  {
+        0.250000 0.750000
+        <Tangent> { -0.528543 -0.840388 -0.119960 }
+        <Binormal> { -0.817651 0.541105 -0.188183 }
+      }
+      <Normal> { -0.193060 0.049074 0.979949 }
+    }
+    <Vertex> 4804 {
+      -23.1666622162 -68.373008728 14.016076088
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.029136 0.997768 0.059852 }
+        <Binormal> { 0.990269 -0.036965 0.134169 }
+      }
+      <Normal> { -0.136082 -0.055361 0.989135 }
+    }
+    <Vertex> 4805 {
+      -22.0035934448 -64.8573226929 14.2773885727
+      <UV>  {
+        0.250000 0.750000
+        <Tangent> { -0.528543 -0.840388 -0.119960 }
+        <Binormal> { -0.817651 0.541105 -0.188183 }
+      }
+      <Normal> { -0.193060 0.049074 0.979949 }
+    }
+    <Vertex> 4806 {
+      -24.0562496185 -64.8925170898 13.7604618073
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.618069 -0.776169 -0.124707 }
+        <Binormal> { -0.771860 0.623223 -0.053434 }
+      }
+      <Normal> { -0.048891 0.025056 0.998474 }
+    }
+    <Vertex> 4807 {
+      -25.2192821503 -68.373008728 13.6805820465
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.845251 -0.519835 -0.123783 }
+        <Binormal> { -0.524811 0.848206 0.021571 }
+      }
+      <Normal> { -0.036164 -0.047761 0.998199 }
+    }
+    <Vertex> 4808 {
+      -23.1666622162 -68.373008728 14.016076088
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.029136 0.997768 0.059852 }
+        <Binormal> { 0.990269 -0.036965 0.134169 }
+      }
+      <Normal> { -0.136082 -0.055361 0.989135 }
+    }
+    <Vertex> 4809 {
+      -25.2192821503 -68.373008728 13.6805820465
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.845251 -0.519835 -0.123783 }
+        <Binormal> { -0.524811 0.848206 0.021571 }
+      }
+      <Normal> { -0.036164 -0.047761 0.998199 }
+    }
+    <Vertex> 4810 {
+      -26.4124526978 -71.3910903931 13.5549955368
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.949019 -0.302648 -0.088127 }
+        <Binormal> { -0.304993 0.949141 0.024835 }
+      }
+      <Normal> { -0.005982 -0.028077 0.999573 }
+    }
+    <Vertex> 4811 {
+      -24.3297290802 -71.3910903931 13.596121788
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.999864 -0.000000 -0.016471 }
+        <Binormal> { -0.001224 0.997180 0.074272 }
+      }
+      <Normal> { -0.024171 -0.074282 0.996918 }
+    }
+    <Vertex> 4812 {
+      -23.1666622162 -68.373008728 14.016076088
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.029136 0.997768 0.059852 }
+        <Binormal> { 0.990269 -0.036965 0.134169 }
+      }
+      <Normal> { -0.136082 -0.055361 0.989135 }
+    }
+    <Vertex> 4813 {
+      -24.3297290802 -71.3910903931 13.596121788
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.999864 -0.000000 -0.016471 }
+        <Binormal> { -0.001224 0.997180 0.074272 }
+      }
+      <Normal> { -0.024171 -0.074282 0.996918 }
+    }
+    <Vertex> 4814 {
+      -22.3282394409 -71.3910903931 13.6222763062
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.145352 0.979675 0.138206 }
+        <Binormal> { 0.989229 -0.141462 -0.037620 }
+      }
+      <Normal> { 0.017304 -0.142186 0.989685 }
+    }
+    <Vertex> 4815 {
+      -21.1048641205 -68.373008728 14.3047637939
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.147109 0.978755 0.142803 }
+        <Binormal> { 0.989109 -0.144889 -0.025879 }
+      }
+      <Normal> { 0.004639 -0.145054 0.989410 }
+    }
+    <Vertex> 4816 {
+      -27.0844173431 -68.373008728 13.8288564682
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.392171 -0.917527 -0.065920 }
+        <Binormal> { -0.889853 0.360238 0.279839 }
+      }
+      <Normal> { 0.231697 -0.171484 0.957518 }
+    }
+    <Vertex> 4817 {
+      -25.2192821503 -68.373008728 13.6805820465
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.340709 -0.939699 -0.029711 }
+        <Binormal> { -0.939426 0.341170 -0.017711 }
+      }
+      <Normal> { -0.036164 -0.047761 0.998199 }
+    }
+    <Vertex> 4818 {
+      -24.0562496185 -64.8925170898 13.7604618073
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.337905 -0.940579 -0.033642 }
+        <Binormal> { -0.938300 0.339035 -0.054452 }
+      }
+      <Normal> { -0.048891 0.025056 0.998474 }
+    }
+    <Vertex> 4819 {
+      -25.7606678009 -64.9314041138 13.9965600967
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { -0.358621 -0.932377 -0.045433 }
+        <Binormal> { -0.891490 0.328561 0.294173 }
+      }
+      <Normal> { 0.296457 -0.049532 0.953734 }
+    }
+    <Vertex> 4820 {
+      -27.0844173431 -68.373008728 13.8288564682
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.392171 -0.917527 -0.065920 }
+        <Binormal> { -0.889853 0.360238 0.279839 }
+      }
+      <Normal> { 0.231697 -0.171484 0.957518 }
+    }
+    <Vertex> 4821 {
+      -25.7606678009 -64.9314041138 13.9965600967
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { -0.358621 -0.932377 -0.045433 }
+        <Binormal> { -0.891490 0.328561 0.294173 }
+      }
+      <Normal> { 0.296457 -0.049532 0.953734 }
+    }
+    <Vertex> 4822 {
+      -27.1226387024 -64.9619445801 14.8186845779
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.639256 -0.642426 0.422658 }
+        <Binormal> { -0.437744 0.755872 0.486826 }
+      }
+      <Normal> { 0.632344 -0.126072 0.764336 }
+    }
+    <Vertex> 4823 {
+      -28.5970687866 -68.373008728 14.5085248947
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.438089 -0.891748 -0.113417 }
+        <Binormal> { -0.710638 0.266323 0.650961 }
+      }
+      <Normal> { 0.557146 -0.351817 0.752159 }
+    }
+    <Vertex> 4824 {
+      -27.0844173431 -68.373008728 13.8288564682
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.392171 -0.917527 -0.065920 }
+        <Binormal> { -0.889853 0.360238 0.279839 }
+      }
+      <Normal> { 0.231697 -0.171484 0.957518 }
+    }
+    <Vertex> 4825 {
+      -28.5970687866 -68.373008728 14.5085248947
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.438089 -0.891748 -0.113417 }
+        <Binormal> { -0.710638 0.266323 0.650961 }
+      }
+      <Normal> { 0.557146 -0.351817 0.752159 }
+    }
+    <Vertex> 4826 {
+      -30.257068634 -71.3422012329 14.0072135925
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.457458 -0.882301 -0.110800 }
+        <Binormal> { -0.762412 0.325406 0.556543 }
+      }
+      <Normal> { 0.480148 -0.290536 0.827631 }
+    }
+    <Vertex> 4827 {
+      -28.5287132263 -71.3910903931 13.5782823563
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.430461 -0.899514 -0.074682 }
+        <Binormal> { -0.894991 0.415111 0.158812 }
+      }
+      <Normal> { 0.127964 -0.101535 0.986541 }
+    }
+    <Vertex> 4828 {
+      -27.0844173431 -68.373008728 13.8288564682
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.392171 -0.917527 -0.065920 }
+        <Binormal> { -0.889853 0.360238 0.279839 }
+      }
+      <Normal> { 0.231697 -0.171484 0.957518 }
+    }
+    <Vertex> 4829 {
+      -28.5287132263 -71.3910903931 13.5782823563
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.430461 -0.899514 -0.074682 }
+        <Binormal> { -0.894991 0.415111 0.158812 }
+      }
+      <Normal> { 0.127964 -0.101535 0.986541 }
+    }
+    <Vertex> 4830 {
+      -26.4124526978 -71.3910903931 13.5549955368
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.399740 -0.914854 -0.057012 }
+        <Binormal> { -0.916064 0.399910 0.005751 }
+      }
+      <Normal> { -0.005982 -0.028077 0.999573 }
+    }
+    <Vertex> 4831 {
+      -25.2192821503 -68.373008728 13.6805820465
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.340709 -0.939699 -0.029711 }
+        <Binormal> { -0.939426 0.341170 -0.017711 }
+      }
+      <Normal> { -0.036164 -0.047761 0.998199 }
+    }
+    <Vertex> 4832 {
+      -4.68306398392 -68.04737854 13.6130781174
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.912370 0.037727 0.407624 }
+        <Binormal> { -0.019239 -0.990573 0.134743 }
+      }
+      <Normal> { -0.420820 0.130284 0.897702 }
+    }
+    <Vertex> 4833 {
+      -3.11658453941 -67.9795455933 14.1249694824
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.943910 -0.068098 0.323105 }
+        <Binormal> { -0.098065 -0.975609 0.080864 }
+      }
+      <Normal> { -0.140812 0.095828 0.985382 }
+    }
+    <Vertex> 4834 {
+      -2.4554605484 -65.1486206055 13.9283847809
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.951313 -0.001955 0.308219 }
+        <Binormal> { -0.031697 -0.980942 0.091611 }
+      }
+      <Normal> { -0.142094 0.096591 0.985107 }
+    }
+    <Vertex> 4835 {
+      -3.73602843285 -64.9642791748 13.4998779297
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.916752 0.110176 0.383962 }
+        <Binormal> { 0.019423 -0.972233 0.232604 }
+      }
+      <Normal> { -0.413373 0.204047 0.887387 }
+    }
+    <Vertex> 4836 {
+      -4.68306398392 -68.04737854 13.6130781174
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.912370 0.037727 0.407624 }
+        <Binormal> { -0.019239 -0.990573 0.134743 }
+      }
+      <Normal> { -0.420820 0.130284 0.897702 }
+    }
+    <Vertex> 4837 {
+      -3.73602843285 -64.9642791748 13.4998779297
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.916752 0.110176 0.383962 }
+        <Binormal> { 0.019423 -0.972233 0.232604 }
+      }
+      <Normal> { -0.413373 0.204047 0.887387 }
+    }
+    <Vertex> 4838 {
+      -4.65595674515 -64.878578186 12.9149770737
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.861184 0.079774 0.501994 }
+        <Binormal> { -0.003518 -0.964319 0.159280 }
+      }
+      <Normal> { -0.314768 0.155797 0.936277 }
+    }
+    <Vertex> 4839 {
+      -5.84755802155 -68.1924972534 12.9587469101
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.862868 -0.022364 0.504935 }
+        <Binormal> { -0.071289 -0.974567 0.078660 }
+      }
+      <Normal> { -0.320200 0.099460 0.942076 }
+    }
+    <Vertex> 4840 {
+      -4.68306398392 -68.04737854 13.6130781174
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.912370 0.037727 0.407624 }
+        <Binormal> { -0.019239 -0.990573 0.134743 }
+      }
+      <Normal> { -0.420820 0.130284 0.897702 }
+    }
+    <Vertex> 4841 {
+      -5.84755802155 -68.1924972534 12.9587469101
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.862868 -0.022364 0.504935 }
+        <Binormal> { -0.071289 -0.974567 0.078660 }
+      }
+      <Normal> { -0.320200 0.099460 0.942076 }
+    }
+    <Vertex> 4842 {
+      -6.19889211655 -71.3269424438 13.0155086517
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.837982 0.204186 0.506057 }
+        <Binormal> { 0.169354 -0.949781 0.102787 }
+      }
+      <Normal> { -0.298746 0.049867 0.953001 }
+    }
+    <Vertex> 4843 {
+      -5.03026485443 -70.2021942139 13.7020301819
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.888490 0.140116 0.436982 }
+        <Binormal> { 0.104377 -0.988895 0.104862 }
+      }
+      <Normal> { -0.437208 0.049074 0.897977 }
+    }
+    <Vertex> 4844 {
+      -4.68306398392 -68.04737854 13.6130781174
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.912370 0.037727 0.407624 }
+        <Binormal> { -0.019239 -0.990573 0.134743 }
+      }
+      <Normal> { -0.420820 0.130284 0.897702 }
+    }
+    <Vertex> 4845 {
+      -5.03026485443 -70.2021942139 13.7020301819
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.888490 0.140116 0.436982 }
+        <Binormal> { 0.104377 -0.988895 0.104862 }
+      }
+      <Normal> { -0.437208 0.049074 0.897977 }
+    }
+    <Vertex> 4846 {
+      -3.48870635033 -69.9984741211 14.2370128632
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.937723 -0.099118 0.332943 }
+        <Binormal> { -0.104816 -0.979684 0.003556 }
+      }
+      <Normal> { -0.165654 0.021302 0.985931 }
+    }
+    <Vertex> 4847 {
+      -3.11658453941 -67.9795455933 14.1249694824
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.943910 -0.068098 0.323105 }
+        <Binormal> { -0.098065 -0.975609 0.080864 }
+      }
+      <Normal> { -0.140812 0.095828 0.985382 }
+    }
+    <Vertex> 4848 {
+      -14.4668617249 -67.9765930176 13.8193187714
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.348420 -0.937225 0.014557 }
+        <Binormal> { -0.935939 0.347016 -0.059631 }
+      }
+      <Normal> { -0.051180 0.033479 0.998108 }
+    }
+    <Vertex> 4849 {
+      -12.2778902054 -67.6792755127 13.8965911865
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.307524 -0.950873 0.035624 }
+        <Binormal> { -0.902036 0.303236 0.307156 }
+      }
+      <Normal> { 0.303018 -0.061861 0.950957 }
+    }
+    <Vertex> 4850 {
+      -10.8337583542 -63.9921989441 13.788312912
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.378778 -0.925237 0.021537 }
+        <Binormal> { -0.860464 0.360561 0.356551 }
+      }
+      <Normal> { 0.318857 -0.162450 0.933775 }
+    }
+    <Vertex> 4851 {
+      -12.9185094833 -64.3539581299 13.7574453354
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.392969 -0.919418 0.015703 }
+        <Binormal> { -0.919120 0.392287 -0.032483 }
+      }
+      <Normal> { -0.029695 0.013184 0.999451 }
+    }
+    <Vertex> 4852 {
+      -14.4668617249 -67.9765930176 13.8193187714
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.348420 -0.937225 0.014557 }
+        <Binormal> { -0.935939 0.347016 -0.059631 }
+      }
+      <Normal> { -0.051180 0.033479 0.998108 }
+    }
+    <Vertex> 4853 {
+      -12.9185094833 -64.3539581299 13.7574453354
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.392969 -0.919418 0.015703 }
+        <Binormal> { -0.919120 0.392287 -0.032483 }
+      }
+      <Normal> { -0.029695 0.013184 0.999451 }
+    }
+    <Vertex> 4854 {
+      -15.5305328369 -64.7141723633 13.7349014282
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.400535 -0.916281 0.000660 }
+        <Binormal> { -0.912653 0.399012 0.088363 }
+      }
+      <Normal> { 0.082522 -0.031831 0.996063 }
+    }
+    <Vertex> 4855 {
+      -17.1218128204 -68.2739028931 13.6781978607
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.386235 -0.922169 -0.020655 }
+        <Binormal> { -0.921133 0.384477 0.059116 }
+      }
+      <Normal> { 0.041749 -0.053377 0.997681 }
+    }
+    <Vertex> 4856 {
+      -14.4668617249 -67.9765930176 13.8193187714
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.348420 -0.937225 0.014557 }
+        <Binormal> { -0.935939 0.347016 -0.059631 }
+      }
+      <Normal> { -0.051180 0.033479 0.998108 }
+    }
+    <Vertex> 4857 {
+      -17.1218128204 -68.2739028931 13.6781978607
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.386235 -0.922169 -0.020655 }
+        <Binormal> { -0.921133 0.384477 0.059116 }
+      }
+      <Normal> { 0.041749 -0.053377 0.997681 }
+    }
+    <Vertex> 4858 {
+      -18.3166694641 -71.366317749 13.5859012604
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.330497 -0.943807 0.000076 }
+        <Binormal> { -0.942192 0.329928 -0.036918 }
+      }
+      <Normal> { -0.049654 -0.030091 0.998291 }
+    }
+    <Vertex> 4859 {
+      -15.5158557892 -71.2919921875 13.9121294022
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.301554 -0.953076 0.026680 }
+        <Binormal> { -0.950046 0.298091 -0.089455 }
+      }
+      <Normal> { -0.084262 0.030335 0.995972 }
+    }
+    <Vertex> 4860 {
+      -14.4668617249 -67.9765930176 13.8193187714
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.348420 -0.937225 0.014557 }
+        <Binormal> { -0.935939 0.347016 -0.059631 }
+      }
+      <Normal> { -0.051180 0.033479 0.998108 }
+    }
+    <Vertex> 4861 {
+      -15.5158557892 -71.2919921875 13.9121294022
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.301554 -0.953076 0.026680 }
+        <Binormal> { -0.950046 0.298091 -0.089455 }
+      }
+      <Normal> { -0.084262 0.030335 0.995972 }
+    }
+    <Vertex> 4862 {
+      -13.1705560684 -71.2176589966 14.0590105057
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.272396 -0.961519 0.035806 }
+        <Binormal> { -0.926669 0.272141 0.258266 }
+      }
+      <Normal> { 0.264046 -0.016083 0.964354 }
+    }
+    <Vertex> 4863 {
+      -12.2778902054 -67.6792755127 13.8965911865
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.307524 -0.950873 0.035624 }
+        <Binormal> { -0.902036 0.303236 0.307156 }
+      }
+      <Normal> { 0.303018 -0.061861 0.950957 }
+    }
+    <Vertex> 4864 {
+      0.639751911163 -68.4273071289 13.9982557297
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.989430 -0.139575 -0.039324 }
+        <Binormal> { -0.136648 -0.988180 0.069215 }
+      }
+      <Normal> { 0.048067 0.063173 0.996826 }
+    }
+    <Vertex> 4865 {
+      5.27937889099 -68.9584579468 13.6979417801
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.991463 -0.113504 -0.064175 }
+        <Binormal> { -0.110313 -0.992017 0.050271 }
+      }
+      <Normal> { 0.035035 0.046693 0.998291 }
+    }
+    <Vertex> 4866 {
+      6.00489807129 -66.2164764404 13.7195005417
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.922978 0.369809 0.106554 }
+        <Binormal> { 0.358047 -0.785974 -0.373606 }
+      }
+      <Normal> { -0.257790 -0.508072 0.821802 }
+    }
+    <Vertex> 4867 {
+      1.05940437317 -65.8644638062 13.7779159546
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.991831 -0.125188 -0.024488 }
+        <Binormal> { -0.125370 -0.992059 -0.006225 }
+      }
+      <Normal> { 0.017975 -0.008545 0.999786 }
+    }
+    <Vertex> 4868 {
+      0.639751911163 -68.4273071289 13.9982557297
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.989430 -0.139575 -0.039324 }
+        <Binormal> { -0.136648 -0.988180 0.069215 }
+      }
+      <Normal> { 0.048067 0.063173 0.996826 }
+    }
+    <Vertex> 4869 {
+      1.05940437317 -65.8644638062 13.7779159546
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.991831 -0.125188 -0.024488 }
+        <Binormal> { -0.125370 -0.992059 -0.006225 }
+      }
+      <Normal> { 0.017975 -0.008545 0.999786 }
+    }
+    <Vertex> 4870 {
+      -2.4554605484 -65.1486206055 13.9283847809
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.883808 0.467001 -0.028173 }
+        <Binormal> { 0.462767 -0.866642 0.151726 }
+      }
+      <Normal> { -0.142094 0.096591 0.985107 }
+    }
+    <Vertex> 4871 {
+      -3.11658453941 -67.9795455933 14.1249694824
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.992414 -0.118297 -0.033477 }
+        <Binormal> { -0.113360 -0.973192 0.078443 }
+      }
+      <Normal> { -0.140812 0.095828 0.985382 }
+    }
+    <Vertex> 4872 {
+      0.639751911163 -68.4273071289 13.9982557297
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.989430 -0.139575 -0.039324 }
+        <Binormal> { -0.136648 -0.988180 0.069215 }
+      }
+      <Normal> { 0.048067 0.063173 0.996826 }
+    }
+    <Vertex> 4873 {
+      -3.11658453941 -67.9795455933 14.1249694824
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.992414 -0.118297 -0.033477 }
+        <Binormal> { -0.113360 -0.973192 0.078443 }
+      }
+      <Normal> { -0.140812 0.095828 0.985382 }
+    }
+    <Vertex> 4874 {
+      -3.48870635033 -69.9984741211 14.2370128632
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.992775 -0.118366 -0.019700 }
+        <Binormal> { -0.116281 -0.975544 0.001540 }
+      }
+      <Normal> { -0.165654 0.021302 0.985931 }
+    }
+    <Vertex> 4875 {
+      -0.150619730353 -70.3965606689 14.2229480743
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.978001 -0.206233 -0.031325 }
+        <Binormal> { -0.205210 -0.978099 0.032607 }
+      }
+      <Normal> { 0.025971 0.027863 0.999268 }
+    }
+    <Vertex> 4876 {
+      0.639751911163 -68.4273071289 13.9982557297
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.989430 -0.139575 -0.039324 }
+        <Binormal> { -0.136648 -0.988180 0.069215 }
+      }
+      <Normal> { 0.048067 0.063173 0.996826 }
+    }
+    <Vertex> 4877 {
+      -0.150619730353 -70.3965606689 14.2229480743
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.978001 -0.206233 -0.031325 }
+        <Binormal> { -0.205210 -0.978099 0.032607 }
+      }
+      <Normal> { 0.025971 0.027863 0.999268 }
+    }
+    <Vertex> 4878 {
+      4.19780635834 -71.6193466187 13.99081707
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.979832 -0.191205 -0.058044 }
+        <Binormal> { -0.187138 -0.979748 0.068378 }
+      }
+      <Normal> { 0.051088 0.059816 0.996887 }
+    }
+    <Vertex> 4879 {
+      5.27937889099 -68.9584579468 13.6979417801
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.991463 -0.113504 -0.064175 }
+        <Binormal> { -0.110313 -0.992017 0.050271 }
+      }
+      <Normal> { 0.035035 0.046693 0.998291 }
+    }
+    <Vertex> 4880 {
+      9.06874370575 -66.0294265747 14.1630878448
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.666164 0.380351 0.641528 }
+        <Binormal> { 0.720643 -0.106785 -0.685006 }
+      }
+      <Normal> { 0.190222 -0.919675 0.343486 }
+    }
+    <Vertex> 4881 {
+      7.36922883987 -66.1596908569 14.8362121582
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.084658 -0.952727 0.291757 }
+    }
+    <Vertex> 4882 {
+      6.00489807129 -66.2164764404 13.7195005417
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.922978 0.369809 0.106554 }
+        <Binormal> { 0.358047 -0.785974 -0.373606 }
+      }
+      <Normal> { -0.257790 -0.508072 0.821802 }
+    }
+    <Vertex> 4883 {
+      9.68840789795 -66.7380523682 13.678355217
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.518092 0.783812 0.342372 }
+        <Binormal> { 0.843485 -0.404794 -0.349678 }
+      }
+      <Normal> { 0.110355 -0.507981 0.854244 }
+    }
+    <Vertex> 4884 {
+      9.06874370575 -66.0294265747 14.1630878448
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.666164 0.380351 0.641528 }
+        <Binormal> { 0.720643 -0.106785 -0.685006 }
+      }
+      <Normal> { 0.190222 -0.919675 0.343486 }
+    }
+    <Vertex> 4885 {
+      9.68840789795 -66.7380523682 13.678355217
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.518092 0.783812 0.342372 }
+        <Binormal> { 0.843485 -0.404794 -0.349678 }
+      }
+      <Normal> { 0.110355 -0.507981 0.854244 }
+    }
+    <Vertex> 4886 {
+      14.2475652695 -63.6229171753 13.8011636734
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.454737 0.585509 0.671114 }
+        <Binormal> { 0.631049 0.319505 -0.706340 }
+      }
+      <Normal> { 0.640004 -0.729240 0.241920 }
+    }
+    <Vertex> 4887 {
+      10.5501489639 -65.6284942627 14.950138092
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.466226 0.017279 0.884497 }
+        <Binormal> { 0.825221 0.221445 -0.439307 }
+      }
+      <Normal> { 0.332774 -0.929929 0.156346 }
+    }
+    <Vertex> 4888 {
+      9.06874370575 -66.0294265747 14.1630878448
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.666164 0.380351 0.641528 }
+        <Binormal> { 0.720643 -0.106785 -0.685006 }
+      }
+      <Normal> { 0.190222 -0.919675 0.343486 }
+    }
+    <Vertex> 4889 {
+      10.5501489639 -65.6284942627 14.950138092
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.466226 0.017279 0.884497 }
+        <Binormal> { 0.825221 0.221445 -0.439307 }
+      }
+      <Normal> { 0.332774 -0.929929 0.156346 }
+    }
+    <Vertex> 4890 {
+      8.71514415741 -65.9041290283 15.4456949234
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.718440 -0.044750 0.694147 }
+        <Binormal> { 0.669701 0.209769 0.706662 }
+      }
+      <Normal> { 0.112583 -0.976592 0.183203 }
+    }
+    <Vertex> 4891 {
+      7.36922883987 -66.1596908569 14.8362121582
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.084658 -0.952727 0.291757 }
+    }
+    <Vertex> 4892 {
+      9.49573326111 -69.1408157349 13.6890363693
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.149430 0.988286 -0.030999 }
+        <Binormal> { 0.988747 -0.149154 0.011022 }
+      }
+      <Normal> { -0.006256 0.032380 0.999451 }
+    }
+    <Vertex> 4893 {
+      9.68840789795 -66.7380523682 13.678355217
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.079931 0.996791 -0.004431 }
+        <Binormal> { 0.849251 -0.068770 -0.150604 }
+      }
+      <Normal> { 0.110355 -0.507981 0.854244 }
+    }
+    <Vertex> 4894 {
+      6.00489807129 -66.2164764404 13.7195005417
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.922978 0.369809 0.106554 }
+        <Binormal> { 0.358047 -0.785974 -0.373606 }
+      }
+      <Normal> { -0.257790 -0.508072 0.821802 }
+    }
+    <Vertex> 4895 {
+      5.27937889099 -68.9584579468 13.6979417801
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.316838 0.947286 -0.047570 }
+        <Binormal> { 0.947888 -0.317963 -0.018394 }
+      }
+      <Normal> { 0.035035 0.046693 0.998291 }
+    }
+    <Vertex> 4896 {
+      9.49573326111 -69.1408157349 13.6890363693
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.149430 0.988286 -0.030999 }
+        <Binormal> { 0.988747 -0.149154 0.011022 }
+      }
+      <Normal> { -0.006256 0.032380 0.999451 }
+    }
+    <Vertex> 4897 {
+      5.27937889099 -68.9584579468 13.6979417801
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.316838 0.947286 -0.047570 }
+        <Binormal> { 0.947888 -0.317963 -0.018394 }
+      }
+      <Normal> { 0.035035 0.046693 0.998291 }
+    }
+    <Vertex> 4898 {
+      4.19780635834 -71.6193466187 13.99081707
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.259113 0.962327 -0.082382 }
+        <Binormal> { 0.964259 -0.262515 -0.033664 }
+      }
+      <Normal> { 0.051088 0.059816 0.996887 }
+    }
+    <Vertex> 4899 {
+      9.04659843445 -72.1648635864 13.8828315735
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.146615 0.987169 -0.063262 }
+        <Binormal> { 0.988894 -0.146896 -0.000383 }
+      }
+      <Normal> { 0.006561 0.041566 0.999084 }
+    }
+    <Vertex> 4900 {
+      9.49573326111 -69.1408157349 13.6890363693
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.149430 0.988286 -0.030999 }
+        <Binormal> { 0.988747 -0.149154 0.011022 }
+      }
+      <Normal> { -0.006256 0.032380 0.999451 }
+    }
+    <Vertex> 4901 {
+      9.04659843445 -72.1648635864 13.8828315735
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.146615 0.987169 -0.063262 }
+        <Binormal> { 0.988894 -0.146896 -0.000383 }
+      }
+      <Normal> { 0.006561 0.041566 0.999084 }
+    }
+    <Vertex> 4902 {
+      13.5004501343 -72.7486724854 13.9170331955
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.067587 0.996791 -0.042886 }
+        <Binormal> { 0.997572 -0.067160 0.011159 }
+      }
+      <Normal> { -0.009095 0.030976 0.999451 }
+    }
+    <Vertex> 4903 {
+      13.5004501343 -69.1487731934 13.8258371353
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.081589 0.996586 -0.012654 }
+        <Binormal> { 0.996249 -0.081216 0.027266 }
+      }
+      <Normal> { -0.025208 0.026276 0.999329 }
+    }
+    <Vertex> 4904 {
+      9.49573326111 -69.1408157349 13.6890363693
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.149430 0.988286 -0.030999 }
+        <Binormal> { 0.988747 -0.149154 0.011022 }
+      }
+      <Normal> { -0.006256 0.032380 0.999451 }
+    }
+    <Vertex> 4905 {
+      13.5004501343 -69.1487731934 13.8258371353
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.081589 0.996586 -0.012654 }
+        <Binormal> { 0.996249 -0.081216 0.027266 }
+      }
+      <Normal> { -0.025208 0.026276 0.999329 }
+    }
+    <Vertex> 4906 {
+      14.2475652695 -63.6229171753 13.8011636734
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.117706 0.993039 -0.004428 }
+        <Binormal> { 0.237007 -0.031309 -0.721384 }
+      }
+      <Normal> { 0.640004 -0.729240 0.241920 }
+    }
+    <Vertex> 4907 {
+      9.68840789795 -66.7380523682 13.678355217
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.079931 0.996791 -0.004431 }
+        <Binormal> { 0.849251 -0.068770 -0.150604 }
+      }
+      <Normal> { 0.110355 -0.507981 0.854244 }
+    }
+    <Vertex> 4908 {
+      -9.18782806396 -74.0515060425 13.0148735046
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.997980 -0.053918 0.033606 }
+        <Binormal> { -0.055725 -0.996873 0.055431 }
+      }
+      <Normal> { -0.035035 0.057436 0.997711 }
+    }
+    <Vertex> 4909 {
+      -6.58286237717 -74.0182876587 13.1800298691
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.995578 -0.062149 0.070446 }
+        <Binormal> { -0.067084 -0.994687 0.070528 }
+      }
+      <Normal> { -0.098636 0.076998 0.992126 }
+    }
+    <Vertex> 4910 {
+      -6.19889211655 -71.3269424438 13.0155086517
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.997459 0.025327 0.066581 }
+        <Binormal> { 0.020816 -0.970471 0.057307 }
+      }
+      <Normal> { -0.298746 0.049867 0.953001 }
+    }
+    <Vertex> 4911 {
+      -9.05541038513 -71.3144760132 12.8091955185
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.997396 0.071929 0.005174 }
+        <Binormal> { 0.071546 -0.995933 0.053593 }
+      }
+      <Normal> { -0.017212 0.052492 0.998444 }
+    }
+    <Vertex> 4912 {
+      -9.18782806396 -74.0515060425 13.0148735046
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.997980 -0.053918 0.033606 }
+        <Binormal> { -0.055725 -0.996873 0.055431 }
+      }
+      <Normal> { -0.035035 0.057436 0.997711 }
+    }
+    <Vertex> 4913 {
+      -9.05541038513 -71.3144760132 12.8091955185
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.997396 0.071929 0.005174 }
+        <Binormal> { 0.071546 -0.995933 0.053593 }
+      }
+      <Normal> { -0.017212 0.052492 0.998444 }
+    }
+    <Vertex> 4914 {
+      -11.5693979263 -71.223274231 12.9505004883
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.999167 -0.000500 -0.040814 }
+        <Binormal> { -0.000763 -0.957828 -0.006942 }
+      }
+      <Normal> { 0.325999 -0.007111 0.945311 }
+    }
+    <Vertex> 4915 {
+      -11.7986879349 -73.9840545654 13.0483255386
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.996762 -0.079592 -0.011451 }
+        <Binormal> { -0.075635 -0.955297 0.056214 }
+      }
+      <Normal> { 0.294656 0.032868 0.955016 }
+    }
+    <Vertex> 4916 {
+      -9.18782806396 -74.0515060425 13.0148735046
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.997980 -0.053918 0.033606 }
+        <Binormal> { -0.055725 -0.996873 0.055431 }
+      }
+      <Normal> { -0.035035 0.057436 0.997711 }
+    }
+    <Vertex> 4917 {
+      -11.7986879349 -73.9840545654 13.0483255386
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.996762 -0.079592 -0.011451 }
+        <Binormal> { -0.075635 -0.955297 0.056214 }
+      }
+      <Normal> { 0.294656 0.032868 0.955016 }
+    }
+    <Vertex> 4918 {
+      -11.4810743332 -76.4500961304 13.0774488449
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.989517 -0.144295 0.005987 }
+        <Binormal> { -0.138816 -0.947677 0.102822 }
+      }
+      <Normal> { 0.274758 0.063845 0.959380 }
+    }
+    <Vertex> 4919 {
+      -8.82142162323 -76.55128479 13.1313676834
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.971608 -0.218906 0.089764 }
+        <Binormal> { -0.217930 -0.975300 -0.019572 }
+      }
+      <Normal> { -0.063265 -0.005890 0.997955 }
+    }
+    <Vertex> 4920 {
+      -9.18782806396 -74.0515060425 13.0148735046
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.997980 -0.053918 0.033606 }
+        <Binormal> { -0.055725 -0.996873 0.055431 }
+      }
+      <Normal> { -0.035035 0.057436 0.997711 }
+    }
+    <Vertex> 4921 {
+      -8.82142162323 -76.55128479 13.1313676834
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.971608 -0.218906 0.089764 }
+        <Binormal> { -0.217930 -0.975300 -0.019572 }
+      }
+      <Normal> { -0.063265 -0.005890 0.997955 }
+    }
+    <Vertex> 4922 {
+      -5.85239982605 -76.681098938 13.5620059967
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.985099 -0.134115 0.107668 }
+        <Binormal> { -0.131043 -0.980590 -0.022498 }
+      }
+      <Normal> { -0.250465 0.011261 0.968047 }
+    }
+    <Vertex> 4923 {
+      -6.58286237717 -74.0182876587 13.1800298691
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.995578 -0.062149 0.070446 }
+        <Binormal> { -0.067084 -0.994687 0.070528 }
+      }
+      <Normal> { -0.098636 0.076998 0.992126 }
+    }
+    <Vertex> 4924 {
+      -12.6689739227 -73.9615707397 13.6146593094
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.839613 -0.102647 -0.533398 }
+        <Binormal> { -0.076702 -0.994512 0.070648 }
+      }
+      <Normal> { 0.541978 0.017884 0.840175 }
+    }
+    <Vertex> 4925 {
+      -11.7986879349 -73.9840545654 13.0483255386
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.823750 -0.202216 -0.529664 }
+        <Binormal> { -0.175710 -0.942763 0.086660 }
+      }
+      <Normal> { 0.294656 0.032868 0.955016 }
+    }
+    <Vertex> 4926 {
+      -11.5693979263 -71.223274231 12.9505004883
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.823009 0.034602 -0.566973 }
+        <Binormal> { 0.028678 -0.962832 -0.017132 }
+      }
+      <Normal> { 0.325999 -0.007111 0.945311 }
+    }
+    <Vertex> 4927 {
+      -12.3980903625 -71.1928863525 13.5527858734
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.803295 0.239917 -0.545122 }
+        <Binormal> { 0.162073 -0.968770 -0.187540 }
+      }
+      <Normal> { 0.569659 -0.063326 0.819422 }
+    }
+    <Vertex> 4928 {
+      -12.6689739227 -73.9615707397 13.6146593094
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.839613 -0.102647 -0.533398 }
+        <Binormal> { -0.076702 -0.994512 0.070648 }
+      }
+      <Normal> { 0.541978 0.017884 0.840175 }
+    }
+    <Vertex> 4929 {
+      -12.3980903625 -71.1928863525 13.5527858734
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.803295 0.239917 -0.545122 }
+        <Binormal> { 0.162073 -0.968770 -0.187540 }
+      }
+      <Normal> { 0.569659 -0.063326 0.819422 }
+    }
+    <Vertex> 4930 {
+      -13.1705560684 -71.2176589966 14.0590105057
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.838497 0.102090 -0.535257 }
+        <Binormal> { 0.089842 -0.949941 -0.040442 }
+      }
+      <Normal> { 0.264046 -0.016083 0.964354 }
+    }
+    <Vertex> 4931 {
+      -13.4681100845 -73.9615707397 14.1131496429
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.839887 -0.147601 -0.522306 }
+        <Binormal> { -0.137340 -0.942059 0.045374 }
+      }
+      <Normal> { 0.244545 0.011048 0.969573 }
+    }
+    <Vertex> 4932 {
+      -12.6689739227 -73.9615707397 13.6146593094
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.839613 -0.102647 -0.533398 }
+        <Binormal> { -0.076702 -0.994512 0.070648 }
+      }
+      <Normal> { 0.541978 0.017884 0.840175 }
+    }
+    <Vertex> 4933 {
+      -13.4681100845 -73.9615707397 14.1131496429
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.839887 -0.147601 -0.522306 }
+        <Binormal> { -0.137340 -0.942059 0.045374 }
+      }
+      <Normal> { 0.244545 0.011048 0.969573 }
+    }
+    <Vertex> 4934 {
+      -13.1667613983 -76.4163742065 14.1131496429
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.820072 -0.297656 -0.488756 }
+        <Binormal> { -0.261672 -0.911902 0.116302 }
+      }
+      <Normal> { 0.239296 0.054964 0.969359 }
+    }
+    <Vertex> 4935 {
+      -12.3676233292 -76.4163742065 13.6146593094
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.770529 -0.461471 -0.439693 }
+        <Binormal> { -0.334355 -0.879762 0.337403 }
+      }
+      <Normal> { 0.528031 0.121647 0.840449 }
+    }
+    <Vertex> 4936 {
+      -12.6689739227 -73.9615707397 13.6146593094
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.839613 -0.102647 -0.533398 }
+        <Binormal> { -0.076702 -0.994512 0.070648 }
+      }
+      <Normal> { 0.541978 0.017884 0.840175 }
+    }
+    <Vertex> 4937 {
+      -12.3676233292 -76.4163742065 13.6146593094
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.770529 -0.461471 -0.439693 }
+        <Binormal> { -0.334355 -0.879762 0.337403 }
+      }
+      <Normal> { 0.528031 0.121647 0.840449 }
+    }
+    <Vertex> 4938 {
+      -11.4810743332 -76.4500961304 13.0774488449
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.812236 -0.319527 -0.488031 }
+        <Binormal> { -0.275390 -0.913334 0.139650 }
+      }
+      <Normal> { 0.274758 0.063845 0.959380 }
+    }
+    <Vertex> 4939 {
+      -11.7986879349 -73.9840545654 13.0483255386
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.823750 -0.202216 -0.529664 }
+        <Binormal> { -0.175710 -0.942763 0.086660 }
+      }
+      <Normal> { 0.294656 0.032868 0.955016 }
+    }
+    <Vertex> 4940 {
+      -20.8701686859 -73.9615707397 13.3228359222
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.326555 -0.943030 -0.063684 }
+        <Binormal> { -0.944273 0.328394 -0.020860 }
+      }
+      <Normal> { -0.039674 -0.050691 0.997894 }
+    }
+    <Vertex> 4941 {
+      -18.7149562836 -73.9615707397 13.5358247757
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.510867 -0.857619 -0.059191 }
+        <Binormal> { -0.853474 0.514175 -0.083697 }
+      }
+      <Normal> { -0.108554 -0.018403 0.993896 }
+    }
+    <Vertex> 4942 {
+      -18.3166694641 -71.366317749 13.5859012604
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.538270 -0.839757 -0.071230 }
+        <Binormal> { -0.840465 0.540887 -0.025500 }
+      }
+      <Normal> { -0.049654 -0.030091 0.998291 }
+    }
+    <Vertex> 4943 {
+      -20.4556751251 -71.3910903931 13.5540771484
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.480606 -0.873696 -0.075326 }
+        <Binormal> { -0.875848 0.474294 0.086944 }
+      }
+      <Normal> { 0.031220 -0.124149 0.991760 }
+    }
+    <Vertex> 4944 {
+      -20.8701686859 -73.9615707397 13.3228359222
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.326555 -0.943030 -0.063684 }
+        <Binormal> { -0.944273 0.328394 -0.020860 }
+      }
+      <Normal> { -0.039674 -0.050691 0.997894 }
+    }
+    <Vertex> 4945 {
+      -20.4556751251 -71.3910903931 13.5540771484
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.480606 -0.873696 -0.075326 }
+        <Binormal> { -0.875848 0.474294 0.086944 }
+      }
+      <Normal> { 0.031220 -0.124149 0.991760 }
+    }
+    <Vertex> 4946 {
+      -22.3282394409 -71.3910903931 13.6222763062
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.322228 -0.941993 -0.093901 }
+        <Binormal> { -0.945628 0.317279 0.062116 }
+      }
+      <Normal> { 0.017304 -0.142186 0.989685 }
+    }
+    <Vertex> 4947 {
+      -22.7360343933 -73.9615707397 13.3069486618
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.073244 -0.994457 -0.075436 }
+        <Binormal> { -0.996339 0.070093 0.043365 }
+      }
+      <Normal> { 0.039399 -0.057131 0.997559 }
+    }
+    <Vertex> 4948 {
+      -20.8701686859 -73.9615707397 13.3228359222
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.326555 -0.943030 -0.063684 }
+        <Binormal> { -0.944273 0.328394 -0.020860 }
+      }
+      <Normal> { -0.039674 -0.050691 0.997894 }
+    }
+    <Vertex> 4949 {
+      -22.7360343933 -73.9615707397 13.3069486618
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.073244 -0.994457 -0.075436 }
+        <Binormal> { -0.996339 0.070093 0.043365 }
+      }
+      <Normal> { 0.039399 -0.057131 0.997559 }
+    }
+    <Vertex> 4950 {
+      -22.6983642578 -76.4163742065 13.2410755157
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.062260 -0.997712 -0.026370 }
+        <Binormal> { -0.996377 0.060824 0.051196 }
+      }
+      <Normal> { 0.051302 -0.000183 0.998657 }
+    }
+    <Vertex> 4951 {
+      -20.7194957733 -76.4163742065 13.2649049759
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.152953 -0.987526 -0.037398 }
+        <Binormal> { -0.986293 0.154778 -0.053212 }
+      }
+      <Normal> { -0.055269 -0.008942 0.998413 }
+    }
+    <Vertex> 4952 {
+      -20.8701686859 -73.9615707397 13.3228359222
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.326555 -0.943030 -0.063684 }
+        <Binormal> { -0.944273 0.328394 -0.020860 }
+      }
+      <Normal> { -0.039674 -0.050691 0.997894 }
+    }
+    <Vertex> 4953 {
+      -20.7194957733 -76.4163742065 13.2649049759
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.152953 -0.987526 -0.037398 }
+        <Binormal> { -0.986293 0.154778 -0.053212 }
+      }
+      <Normal> { -0.055269 -0.008942 0.998413 }
+    }
+    <Vertex> 4954 {
+      -18.4512748718 -76.4163742065 13.5213413239
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.307567 -0.949999 -0.053892 }
+        <Binormal> { -0.944008 0.311738 -0.107726 }
+      }
+      <Normal> { -0.120945 -0.023316 0.992370 }
+    }
+    <Vertex> 4955 {
+      -18.7149562836 -73.9615707397 13.5358247757
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.510867 -0.857619 -0.059191 }
+        <Binormal> { -0.853474 0.514175 -0.083697 }
+      }
+      <Normal> { -0.108554 -0.018403 0.993896 }
+    }
+    <Vertex> 4956 {
+      -24.7174186707 -73.9615707397 13.4910154343
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.071688 -0.017792 0.997253 }
+    }
+    <Vertex> 4957 {
+      -22.7360343933 -73.9615707397 13.3069486618
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.039399 -0.057131 0.997559 }
+    }
+    <Vertex> 4958 {
+      -22.3282394409 -71.3910903931 13.6222763062
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.145352 0.979675 0.138206 }
+        <Binormal> { 0.989229 -0.141462 -0.037620 }
+      }
+      <Normal> { 0.017304 -0.142186 0.989685 }
+    }
+    <Vertex> 4959 {
+      -24.3297290802 -71.3910903931 13.596121788
+      <UV>  {
+        0.250000 0.750000
+        <Tangent> { -0.480188 -0.876181 -0.041560 }
+        <Binormal> { -0.876567 0.479712 0.014491 }
+      }
+      <Normal> { -0.024171 -0.074282 0.996918 }
+    }
+    <Vertex> 4960 {
+      -24.7174186707 -73.9615707397 13.4910154343
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.071688 -0.017792 0.997253 }
+    }
+    <Vertex> 4961 {
+      -24.3297290802 -71.3910903931 13.596121788
+      <UV>  {
+        0.250000 0.750000
+        <Tangent> { -0.480188 -0.876181 -0.041560 }
+        <Binormal> { -0.876567 0.479712 0.014491 }
+      }
+      <Normal> { -0.024171 -0.074282 0.996918 }
+    }
+    <Vertex> 4962 {
+      -26.4124526978 -71.3910903931 13.5549955368
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.625340 -0.780345 -0.003260 }
+        <Binormal> { -0.780103 0.625093 0.012890 }
+      }
+      <Normal> { -0.005982 -0.028077 0.999573 }
+    }
+    <Vertex> 4963 {
+      -26.8101768494 -73.9615707397 13.6620025635
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.864182 -0.495254 0.088954 }
+        <Binormal> { -0.497007 0.865801 -0.008021 }
+      }
+      <Normal> { 0.023530 0.022767 0.999451 }
+    }
+    <Vertex> 4964 {
+      -24.7174186707 -73.9615707397 13.4910154343
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.071688 -0.017792 0.997253 }
+    }
+    <Vertex> 4965 {
+      -26.8101768494 -73.9615707397 13.6620025635
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.864182 -0.495254 0.088954 }
+        <Binormal> { -0.497007 0.865801 -0.008021 }
+      }
+      <Normal> { 0.023530 0.022767 0.999451 }
+    }
+    <Vertex> 4966 {
+      -26.8101768494 -76.4163742065 13.7736520767
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.953754 -0.279688 0.110128 }
+        <Binormal> { -0.279657 0.957021 0.008569 }
+      }
+      <Normal> { 0.035218 0.001343 0.999359 }
+    }
+    <Vertex> 4967 {
+      -24.7174186707 -76.4163742065 13.5171728134
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.991716 -0.000000 0.128451 }
+        <Binormal> { -0.000153 0.999758 -0.001180 }
+      }
+      <Normal> { 0.106906 0.001190 0.994263 }
+    }
+    <Vertex> 4968 {
+      -24.7174186707 -73.9615707397 13.4910154343
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.071688 -0.017792 0.997253 }
+    }
+    <Vertex> 4969 {
+      -24.7174186707 -76.4163742065 13.5171728134
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.991716 -0.000000 0.128451 }
+        <Binormal> { -0.000153 0.999758 -0.001180 }
+      }
+      <Normal> { 0.106906 0.001190 0.994263 }
+    }
+    <Vertex> 4970 {
+      -22.6983642578 -76.4163742065 13.2410755157
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.051302 -0.000183 0.998657 }
+    }
+    <Vertex> 4971 {
+      -22.7360343933 -73.9615707397 13.3069486618
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.039399 -0.057131 0.997559 }
+    }
+    <Vertex> 4972 {
+      -29.01014328 -73.9615707397 13.606877327
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.120080 -0.992690 0.012101 }
+        <Binormal> { -0.991541 0.120524 0.047847 }
+      }
+      <Normal> { 0.048524 0.002686 0.998810 }
+    }
+    <Vertex> 4973 {
+      -26.8101768494 -73.9615707397 13.6620025635
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.078824 -0.995946 0.043335 }
+        <Binormal> { -0.996386 0.079800 0.021640 }
+      }
+      <Normal> { 0.023530 0.022767 0.999451 }
+    }
+    <Vertex> 4974 {
+      -26.4124526978 -71.3910903931 13.5549955368
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.168506 -0.985358 0.025991 }
+        <Binormal> { -0.984207 0.168278 -0.001163 }
+      }
+      <Normal> { -0.005982 -0.028077 0.999573 }
+    }
+    <Vertex> 4975 {
+      -28.5287132263 -71.3910903931 13.5782823563
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { -0.184080 -0.982850 0.010934 }
+        <Binormal> { -0.968512 0.183002 0.144460 }
+      }
+      <Normal> { 0.127964 -0.101535 0.986541 }
+    }
+    <Vertex> 4976 {
+      -29.01014328 -73.9615707397 13.606877327
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.120080 -0.992690 0.012101 }
+        <Binormal> { -0.991541 0.120524 0.047847 }
+      }
+      <Normal> { 0.048524 0.002686 0.998810 }
+    }
+    <Vertex> 4977 {
+      -28.5287132263 -71.3910903931 13.5782823563
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { -0.184080 -0.982850 0.010934 }
+        <Binormal> { -0.968512 0.183002 0.144460 }
+      }
+      <Normal> { 0.127964 -0.101535 0.986541 }
+    }
+    <Vertex> 4978 {
+      -30.257068634 -71.3422012329 14.0072135925
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.641737 -0.593145 0.486161 }
+        <Binormal> { -0.349658 0.764551 0.471245 }
+      }
+      <Normal> { 0.480148 -0.290536 0.827631 }
+    }
+    <Vertex> 4979 {
+      -30.7828865051 -73.7660140991 13.7712898254
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.211946 -0.976428 -0.040835 }
+        <Binormal> { -0.854921 0.165056 0.490545 }
+      }
+      <Normal> { 0.479507 -0.105411 0.871151 }
+    }
+    <Vertex> 4980 {
+      -29.01014328 -73.9615707397 13.606877327
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.120080 -0.992690 0.012101 }
+        <Binormal> { -0.991541 0.120524 0.047847 }
+      }
+      <Normal> { 0.048524 0.002686 0.998810 }
+    }
+    <Vertex> 4981 {
+      -30.7828865051 -73.7660140991 13.7712898254
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.211946 -0.976428 -0.040835 }
+        <Binormal> { -0.854921 0.165056 0.490545 }
+      }
+      <Normal> { 0.479507 -0.105411 0.871151 }
+    }
+    <Vertex> 4982 {
+      -31.3029937744 -76.1607513428 13.8057003021
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.150384 -0.736657 -0.659334 }
+        <Binormal> { -0.792083 -0.181711 0.383683 }
+      }
+      <Normal> { 0.468398 -0.256905 0.845302 }
+    }
+    <Vertex> 4983 {
+      -29.01014328 -76.4163742065 13.6909675598
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.000000 -0.999414 0.034235 }
+        <Binormal> { -0.998870 0.000009 0.000275 }
+      }
+      <Normal> { 0.000275 -0.013215 0.999908 }
+    }
+    <Vertex> 4984 {
+      -29.01014328 -73.9615707397 13.606877327
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.120080 -0.992690 0.012101 }
+        <Binormal> { -0.991541 0.120524 0.047847 }
+      }
+      <Normal> { 0.048524 0.002686 0.998810 }
+    }
+    <Vertex> 4985 {
+      -29.01014328 -76.4163742065 13.6909675598
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.000000 -0.999414 0.034235 }
+        <Binormal> { -0.998870 0.000009 0.000275 }
+      }
+      <Normal> { 0.000275 -0.013215 0.999908 }
+    }
+    <Vertex> 4986 {
+      -26.8101768494 -76.4163742065 13.7736520767
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.000000 -0.999206 0.039837 }
+        <Binormal> { -0.998619 0.001403 0.035190 }
+      }
+      <Normal> { 0.035218 0.001343 0.999359 }
+    }
+    <Vertex> 4987 {
+      -26.8101768494 -73.9615707397 13.6620025635
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.078824 -0.995946 0.043335 }
+        <Binormal> { -0.996386 0.079800 0.021640 }
+      }
+      <Normal> { 0.023530 0.022767 0.999451 }
+    }
+    <Vertex> 4988 {
+      -15.8655195236 -73.9615707397 13.943066597
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.011095 -0.999935 0.002510 }
+        <Binormal> { -0.994662 0.010779 -0.102503 }
+      }
+      <Normal> { -0.102481 0.002564 0.994720 }
+    }
+    <Vertex> 4989 {
+      -13.4681100845 -73.9615707397 14.1131496429
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000730 -0.999946 0.010413 }
+        <Binormal> { -0.969635 0.001839 0.244540 }
+      }
+      <Normal> { 0.244545 0.011048 0.969573 }
+    }
+    <Vertex> 4990 {
+      -13.1705560684 -71.2176589966 14.0590105057
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.118697 -0.992808 0.015603 }
+        <Binormal> { -0.957168 0.118585 0.264056 }
+      }
+      <Normal> { 0.264046 -0.016083 0.964354 }
+    }
+    <Vertex> 4991 {
+      -15.5158557892 -71.2919921875 13.9121294022
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.129863 -0.991465 0.011490 }
+        <Binormal> { -0.987820 0.128372 -0.087482 }
+      }
+      <Normal> { -0.084262 0.030335 0.995972 }
+    }
+    <Vertex> 4992 {
+      -15.8655195236 -73.9615707397 13.943066597
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.011095 -0.999935 0.002510 }
+        <Binormal> { -0.994662 0.010779 -0.102503 }
+      }
+      <Normal> { -0.102481 0.002564 0.994720 }
+    }
+    <Vertex> 4993 {
+      -15.5158557892 -71.2919921875 13.9121294022
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.129863 -0.991465 0.011490 }
+        <Binormal> { -0.987820 0.128372 -0.087482 }
+      }
+      <Normal> { -0.084262 0.030335 0.995972 }
+    }
+    <Vertex> 4994 {
+      -18.3166694641 -71.366317749 13.5859012604
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.140652 -0.990053 -0.003599 }
+        <Binormal> { -0.988469 0.140591 -0.044927 }
+      }
+      <Normal> { -0.049654 -0.030091 0.998291 }
+    }
+    <Vertex> 4995 {
+      -18.7149562836 -73.9615707397 13.5358247757
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.026643 -0.999563 -0.012778 }
+        <Binormal> { -0.993698 0.027867 -0.108017 }
+      }
+      <Normal> { -0.108554 -0.018403 0.993896 }
+    }
+    <Vertex> 4996 {
+      -15.8655195236 -73.9615707397 13.943066597
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.011095 -0.999935 0.002510 }
+        <Binormal> { -0.994662 0.010779 -0.102503 }
+      }
+      <Normal> { -0.102481 0.002564 0.994720 }
+    }
+    <Vertex> 4997 {
+      -18.7149562836 -73.9615707397 13.5358247757
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.026643 -0.999563 -0.012778 }
+        <Binormal> { -0.993698 0.027867 -0.108017 }
+      }
+      <Normal> { -0.108554 -0.018403 0.993896 }
+    }
+    <Vertex> 4998 {
+      -18.4512748718 -76.4163742065 13.5213413239
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.114332 -0.993438 -0.002931 }
+        <Binormal> { -0.985927 -0.113105 -0.122817 }
+      }
+      <Normal> { -0.120945 -0.023316 0.992370 }
+    }
+    <Vertex> 4999 {
+      -15.5641689301 -76.4163742065 13.943066597
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.121845 -0.992549 0.000000 }
+        <Binormal> { -0.986673 -0.121124 -0.108080 }
+      }
+      <Normal> { -0.106021 -0.023377 0.994079 }
+    }
+    <Vertex> 5000 {
+      -15.8655195236 -73.9615707397 13.943066597
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.011095 -0.999935 0.002510 }
+        <Binormal> { -0.994662 0.010779 -0.102503 }
+      }
+      <Normal> { -0.102481 0.002564 0.994720 }
+    }
+    <Vertex> 5001 {
+      -15.5641689301 -76.4163742065 13.943066597
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.121845 -0.992549 0.000000 }
+        <Binormal> { -0.986673 -0.121124 -0.108080 }
+      }
+      <Normal> { -0.106021 -0.023377 0.994079 }
+    }
+    <Vertex> 5002 {
+      -13.1667613983 -76.4163742065 14.1131496429
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.121845 -0.992549 0.000000 }
+        <Binormal> { -0.962137 -0.118111 0.244210 }
+      }
+      <Normal> { 0.239296 0.054964 0.969359 }
+    }
+    <Vertex> 5003 {
+      -13.4681100845 -73.9615707397 14.1131496429
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000730 -0.999946 0.010413 }
+        <Binormal> { -0.969635 0.001839 0.244540 }
+      }
+      <Normal> { 0.244545 0.011048 0.969573 }
+    }
+    <Vertex> 5004 {
+      -7.98242902756 -79.1773681641 13.0148735046
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.996137 -0.071641 0.050775 }
+        <Binormal> { -0.067265 -0.994235 -0.083168 }
+      }
+      <Normal> { -0.049959 -0.079897 0.995544 }
+    }
+    <Vertex> 5005 {
+      -5.29207277298 -79.3135147095 13.3596801758
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.986301 -0.117390 0.115888 }
+        <Binormal> { -0.085555 -0.949197 -0.233359 }
+      }
+      <Normal> { -0.327616 -0.197607 0.923887 }
+    }
+    <Vertex> 5006 {
+      -5.85239982605 -76.681098938 13.5620059967
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.990038 -0.025596 0.138457 }
+        <Binormal> { -0.026337 -0.993082 0.004738 }
+      }
+      <Normal> { -0.250465 0.011261 0.968047 }
+    }
+    <Vertex> 5007 {
+      -8.82142162323 -76.55128479 13.1313676834
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.994808 0.043899 0.091810 }
+        <Binormal> { 0.044350 -0.998583 -0.003082 }
+      }
+      <Normal> { -0.063265 -0.005890 0.997955 }
+    }
+    <Vertex> 5008 {
+      -7.98242902756 -79.1773681641 13.0148735046
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.996137 -0.071641 0.050775 }
+        <Binormal> { -0.067265 -0.994235 -0.083168 }
+      }
+      <Normal> { -0.049959 -0.079897 0.995544 }
+    }
+    <Vertex> 5009 {
+      -8.82142162323 -76.55128479 13.1313676834
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.994808 0.043899 0.091810 }
+        <Binormal> { 0.044350 -0.998583 -0.003082 }
+      }
+      <Normal> { -0.063265 -0.005890 0.997955 }
+    }
+    <Vertex> 5010 {
+      -11.4810743332 -76.4500961304 13.0774488449
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.999955 -0.004035 0.008628 }
+        <Binormal> { -0.004422 -0.956966 0.064950 }
+      }
+      <Normal> { 0.274758 0.063845 0.959380 }
+    }
+    <Vertex> 5011 {
+      -10.593287468 -79.109916687 13.0483255386
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.996712 -0.079913 -0.013386 }
+        <Binormal> { -0.074801 -0.951852 0.112830 }
+      }
+      <Normal> { 0.295877 0.089480 0.951018 }
+    }
+    <Vertex> 5012 {
+      -7.98242902756 -79.1773681641 13.0148735046
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.996137 -0.071641 0.050775 }
+        <Binormal> { -0.067265 -0.994235 -0.083168 }
+      }
+      <Normal> { -0.049959 -0.079897 0.995544 }
+    }
+    <Vertex> 5013 {
+      -10.593287468 -79.109916687 13.0483255386
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.996712 -0.079913 -0.013386 }
+        <Binormal> { -0.074801 -0.951852 0.112830 }
+      }
+      <Normal> { 0.295877 0.089480 0.951018 }
+    }
+    <Vertex> 5014 {
+      -9.42041683197 -81.866607666 12.9900779724
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.989462 -0.136403 -0.048562 }
+        <Binormal> { -0.123523 -0.947969 0.145884 }
+      }
+      <Normal> { 0.317698 0.103641 0.942473 }
+    }
+    <Vertex> 5015 {
+      -6.90714359283 -81.866607666 12.7818841934
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.978307 -0.205694 -0.024618 }
+        <Binormal> { -0.207030 -0.972674 -0.100145 }
+      }
+      <Normal> { -0.027467 -0.096591 0.994934 }
+    }
+    <Vertex> 5016 {
+      -7.98242902756 -79.1773681641 13.0148735046
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.996137 -0.071641 0.050775 }
+        <Binormal> { -0.067265 -0.994235 -0.083168 }
+      }
+      <Normal> { -0.049959 -0.079897 0.995544 }
+    }
+    <Vertex> 5017 {
+      -6.90714359283 -81.866607666 12.7818841934
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.978307 -0.205694 -0.024618 }
+        <Binormal> { -0.207030 -0.972674 -0.100145 }
+      }
+      <Normal> { -0.027467 -0.096591 0.994934 }
+    }
+    <Vertex> 5018 {
+      -4.39386940002 -81.866607666 12.9519500732
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.984371 -0.155950 0.081809 }
+        <Binormal> { -0.124840 -0.934004 -0.278323 }
+      }
+      <Normal> { -0.302744 -0.234779 0.923673 }
+    }
+    <Vertex> 5019 {
+      -5.29207277298 -79.3135147095 13.3596801758
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.986301 -0.117390 0.115888 }
+        <Binormal> { -0.085555 -0.949197 -0.233359 }
+      }
+      <Normal> { -0.327616 -0.197607 0.923887 }
+    }
+    <Vertex> 5020 {
+      -11.4635734558 -79.0874252319 13.6146593094
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.850796 -0.119123 -0.511817 }
+        <Binormal> { 0.004953 -0.972068 0.234477 }
+      }
+      <Normal> { 0.531083 0.201239 0.823054 }
+    }
+    <Vertex> 5021 {
+      -10.593287468 -79.109916687 13.0483255386
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.839986 -0.196605 -0.505736 }
+        <Binormal> { -0.141722 -0.948478 0.133333 }
+      }
+      <Normal> { 0.295877 0.089480 0.951018 }
+    }
+    <Vertex> 5022 {
+      -11.4810743332 -76.4500961304 13.0774488449
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.841677 0.031160 -0.539082 }
+        <Binormal> { 0.064311 -0.955605 0.045175 }
+      }
+      <Normal> { 0.274758 0.063845 0.959380 }
+    }
+    <Vertex> 5023 {
+      -12.3676233292 -76.4163742065 13.6146593094
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.803564 0.235903 -0.546474 }
+        <Binormal> { 0.264742 -0.963910 -0.026813 }
+      }
+      <Normal> { 0.528031 0.121647 0.840449 }
+    }
+    <Vertex> 5024 {
+      -11.4635734558 -79.0874252319 13.6146593094
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.850796 -0.119123 -0.511817 }
+        <Binormal> { 0.004953 -0.972068 0.234477 }
+      }
+      <Normal> { 0.531083 0.201239 0.823054 }
+    }
+    <Vertex> 5025 {
+      -12.3676233292 -76.4163742065 13.6146593094
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.803564 0.235903 -0.546474 }
+        <Binormal> { 0.264742 -0.963910 -0.026813 }
+      }
+      <Normal> { 0.528031 0.121647 0.840449 }
+    }
+    <Vertex> 5026 {
+      -13.1667613983 -76.4163742065 14.1131496429
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.837216 0.085101 -0.540210 }
+        <Binormal> { 0.112186 -0.940833 0.025652 }
+      }
+      <Normal> { 0.239296 0.054964 0.969359 }
+    }
+    <Vertex> 5027 {
+      -12.262711525 -79.0874252319 14.1131496429
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.854791 -0.147023 -0.497711 }
+        <Binormal> { -0.096727 -0.944644 0.112923 }
+      }
+      <Normal> { 0.236824 0.091372 0.967223 }
+    }
+    <Vertex> 5028 {
+      -11.4635734558 -79.0874252319 13.6146593094
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.850796 -0.119123 -0.511817 }
+        <Binormal> { 0.004953 -0.972068 0.234477 }
+      }
+      <Normal> { 0.531083 0.201239 0.823054 }
+    }
+    <Vertex> 5029 {
+      -12.262711525 -79.0874252319 14.1131496429
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.854791 -0.147023 -0.497711 }
+        <Binormal> { -0.096727 -0.944644 0.112923 }
+      }
+      <Normal> { 0.236824 0.091372 0.967223 }
+    }
+    <Vertex> 5030 {
+      -11.0573120117 -81.866607666 14.1131496429
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.842820 -0.305500 -0.443086 }
+        <Binormal> { -0.249912 -0.918961 0.158235 }
+      }
+      <Normal> { 0.235817 0.102268 0.966369 }
+    }
+    <Vertex> 5031 {
+      -10.2581758499 -81.866607666 13.6146593094
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.795993 -0.440644 -0.415004 }
+        <Binormal> { -0.263323 -0.869361 0.418008 }
+      }
+      <Normal> { 0.537309 0.227699 0.812037 }
+    }
+    <Vertex> 5032 {
+      -11.4635734558 -79.0874252319 13.6146593094
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.850796 -0.119123 -0.511817 }
+        <Binormal> { 0.004953 -0.972068 0.234477 }
+      }
+      <Normal> { 0.531083 0.201239 0.823054 }
+    }
+    <Vertex> 5033 {
+      -10.2581758499 -81.866607666 13.6146593094
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.795993 -0.440644 -0.415004 }
+        <Binormal> { -0.263323 -0.869361 0.418008 }
+      }
+      <Normal> { 0.537309 0.227699 0.812037 }
+    }
+    <Vertex> 5034 {
+      -9.42041683197 -81.866607666 12.9900779724
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.820068 -0.313530 -0.478735 }
+        <Binormal> { -0.245877 -0.924985 0.184600 }
+      }
+      <Normal> { 0.317698 0.103641 0.942473 }
+    }
+    <Vertex> 5035 {
+      -10.593287468 -79.109916687 13.0483255386
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.839986 -0.196605 -0.505736 }
+        <Binormal> { -0.141722 -0.948478 0.133333 }
+      }
+      <Normal> { 0.295877 0.089480 0.951018 }
+    }
+    <Vertex> 5036 {
+      -33.5501022339 -79.0874252319 13.4386987686
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.863480 -0.504383 0.000000 }
+        <Binormal> { -0.503305 -0.861636 -0.063428 }
+      }
+      <Normal> { -0.019745 -0.061922 0.997864 }
+    }
+    <Vertex> 5037 {
+      -31.2719230652 -79.0874252319 13.4807443619
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.953531 -0.299033 -0.036862 }
+        <Binormal> { -0.300827 0.951432 0.063424 }
+      }
+      <Normal> { -0.002289 -0.067232 0.997711 }
+    }
+    <Vertex> 5038 {
+      -31.3029937744 -76.1607513428 13.8057003021
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.956895 0.272170 0.101364 }
+        <Binormal> { 0.256107 0.856344 0.118347 }
+      }
+      <Normal> { 0.468398 -0.256905 0.845302 }
+    }
+    <Vertex> 5039 {
+      -33.4709510803 -77.003036499 13.8745203018
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.170495 0.299332 -0.938793 }
+        <Binormal> { -0.299899 0.151927 0.102907 }
+      }
+      <Normal> { -0.013825 -0.579302 0.814966 }
+    }
+    <Vertex> 5040 {
+      -33.5501022339 -79.0874252319 13.4386987686
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.863480 -0.504383 0.000000 }
+        <Binormal> { -0.503305 -0.861636 -0.063428 }
+      }
+      <Normal> { -0.019745 -0.061922 0.997864 }
+    }
+    <Vertex> 5041 {
+      -33.4709510803 -77.003036499 13.8745203018
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.170495 0.299332 -0.938793 }
+        <Binormal> { -0.299899 0.151927 0.102907 }
+      }
+      <Normal> { -0.013825 -0.579302 0.814966 }
+    }
+    <Vertex> 5042 {
+      -35.836479187 -76.4163665771 13.4386987686
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.863481 -0.504381 -0.000001 }
+        <Binormal> { -0.384193 -0.657723 -0.606553 }
+      }
+      <Normal> { -0.502518 -0.408918 0.761711 }
+    }
+    <Vertex> 5043 {
+      -35.836479187 -79.0874252319 13.4386987686
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.863481 -0.504381 0.000000 }
+        <Binormal> { -0.503181 -0.861426 -0.064818 }
+      }
+      <Normal> { -0.052126 -0.044618 0.997620 }
+    }
+    <Vertex> 5044 {
+      -33.5501022339 -79.0874252319 13.4386987686
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.863480 -0.504383 0.000000 }
+        <Binormal> { -0.503305 -0.861636 -0.063428 }
+      }
+      <Normal> { -0.019745 -0.061922 0.997864 }
+    }
+    <Vertex> 5045 {
+      -35.836479187 -79.0874252319 13.4386987686
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.863481 -0.504381 0.000000 }
+        <Binormal> { -0.503181 -0.861426 -0.064818 }
+      }
+      <Normal> { -0.052126 -0.044618 0.997620 }
+    }
+    <Vertex> 5046 {
+      -35.2648849487 -81.1718063354 13.4386987686
+      <UV>  {
+        0.750000 0.812500
+        <Tangent> { 0.442622 -0.896708 0.000000 }
+        <Binormal> { -0.896708 -0.442622 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 5047 {
+      -33.5501022339 -81.866607666 13.4386987686
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.232407 -0.972619 0.000000 }
+        <Binormal> { -0.972589 0.232400 -0.003610 }
+      }
+      <Normal> { -0.004608 -0.003754 0.999969 }
+    }
+    <Vertex> 5048 {
+      -33.5501022339 -79.0874252319 13.4386987686
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.863480 -0.504383 0.000000 }
+        <Binormal> { -0.503305 -0.861636 -0.063428 }
+      }
+      <Normal> { -0.019745 -0.061922 0.997864 }
+    }
+    <Vertex> 5049 {
+      -33.5501022339 -81.866607666 13.4386987686
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.232407 -0.972619 0.000000 }
+        <Binormal> { -0.972589 0.232400 -0.003610 }
+      }
+      <Normal> { -0.004608 -0.003754 0.999969 }
+    }
+    <Vertex> 5050 {
+      -31.2719230652 -81.866607666 13.4386987686
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.721853 -0.691899 -0.014274 }
+        <Binormal> { -0.691906 0.721787 0.003551 }
+      }
+      <Normal> { -0.018525 -0.022675 0.999542 }
+    }
+    <Vertex> 5051 {
+      -31.2719230652 -79.0874252319 13.4807443619
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.953531 -0.299033 -0.036862 }
+        <Binormal> { -0.300827 0.951432 0.063424 }
+      }
+      <Normal> { -0.002289 -0.067232 0.997711 }
+    }
+    <Vertex> 5052 {
+      -20.2674694061 -79.0874252319 13.3228359222
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.129098 -0.991613 0.006050 }
+        <Binormal> { -0.990684 0.128710 -0.043761 }
+      }
+      <Normal> { -0.041993 0.016419 0.998962 }
+    }
+    <Vertex> 5053 {
+      -17.6602306366 -79.0874252319 13.5358247757
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.286363 -0.957190 -0.042244 }
+        <Binormal> { -0.952543 0.289146 -0.094571 }
+      }
+      <Normal> { -0.105411 -0.022095 0.994171 }
+    }
+    <Vertex> 5054 {
+      -18.4512748718 -76.4163742065 13.5213413239
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.291526 -0.955908 -0.035393 }
+        <Binormal> { -0.949440 0.293583 -0.108815 }
+      }
+      <Normal> { -0.120945 -0.023316 0.992370 }
+    }
+    <Vertex> 5055 {
+      -20.7194957733 -76.4163742065 13.2649049759
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.222552 -0.974911 -0.004429 }
+        <Binormal> { -0.973403 0.222444 -0.051892 }
+      }
+      <Normal> { -0.055269 -0.008942 0.998413 }
+    }
+    <Vertex> 5056 {
+      -20.2674694061 -79.0874252319 13.3228359222
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.129098 -0.991613 0.006050 }
+        <Binormal> { -0.990684 0.128710 -0.043761 }
+      }
+      <Normal> { -0.041993 0.016419 0.998962 }
+    }
+    <Vertex> 5057 {
+      -20.7194957733 -76.4163742065 13.2649049759
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.222552 -0.974911 -0.004429 }
+        <Binormal> { -0.973403 0.222444 -0.051892 }
+      }
+      <Normal> { -0.055269 -0.008942 0.998413 }
+    }
+    <Vertex> 5058 {
+      -22.6983642578 -76.4163742065 13.2410755157
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.079177 -0.996642 0.020874 }
+        <Binormal> { -0.995300 0.080142 0.051144 }
+      }
+      <Normal> { 0.051302 -0.000183 0.998657 }
+    }
+    <Vertex> 5059 {
+      -22.5853557587 -79.0874252319 13.3069486618
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.048291 -0.998177 0.036194 }
+        <Binormal> { -0.998121 -0.046986 0.035923 }
+      }
+      <Normal> { 0.034883 0.022858 0.999115 }
+    }
+    <Vertex> 5060 {
+      -20.2674694061 -79.0874252319 13.3228359222
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.129098 -0.991613 0.006050 }
+        <Binormal> { -0.990684 0.128710 -0.043761 }
+      }
+      <Normal> { -0.041993 0.016419 0.998962 }
+    }
+    <Vertex> 5061 {
+      -22.5853557587 -79.0874252319 13.3069486618
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.048291 -0.998177 0.036194 }
+        <Binormal> { -0.998121 -0.046986 0.035923 }
+      }
+      <Normal> { 0.034883 0.022858 0.999115 }
+    }
+    <Vertex> 5062 {
+      -22.4346847534 -81.866607666 13.4386987686
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.010943 -0.998949 0.044501 }
+        <Binormal> { -0.999632 -0.010079 0.019562 }
+      }
+      <Normal> { 0.019257 0.029725 0.999359 }
+    }
+    <Vertex> 5063 {
+      -19.6647701263 -81.866607666 13.4386987686
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.045243 -0.998329 0.035958 }
+        <Binormal> { -0.998415 0.044074 -0.032563 }
+      }
+      <Normal> { -0.031434 0.026124 0.999146 }
+    }
+    <Vertex> 5064 {
+      -20.2674694061 -79.0874252319 13.3228359222
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.129098 -0.991613 0.006050 }
+        <Binormal> { -0.990684 0.128710 -0.043761 }
+      }
+      <Normal> { -0.041993 0.016419 0.998962 }
+    }
+    <Vertex> 5065 {
+      -19.6647701263 -81.866607666 13.4386987686
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.045243 -0.998329 0.035958 }
+        <Binormal> { -0.998415 0.044074 -0.032563 }
+      }
+      <Normal> { -0.031434 0.026124 0.999146 }
+    }
+    <Vertex> 5066 {
+      -16.6055049896 -81.866607666 13.564789772
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.150390 -0.988614 -0.005102 }
+        <Binormal> { -0.984215 0.150182 -0.089278 }
+      }
+      <Normal> { -0.093204 -0.019044 0.995453 }
+    }
+    <Vertex> 5067 {
+      -17.6602306366 -79.0874252319 13.5358247757
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.286363 -0.957190 -0.042244 }
+        <Binormal> { -0.952543 0.289146 -0.094571 }
+      }
+      <Normal> { -0.105411 -0.022095 0.994171 }
+    }
+    <Vertex> 5068 {
+      -24.7174186707 -79.0874252319 13.4910154343
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.007979 0.999878 0.011958 }
+        <Binormal> { 0.997257 -0.007077 -0.073674 }
+      }
+      <Normal> { 0.073580 -0.012513 0.997192 }
+    }
+    <Vertex> 5069 {
+      -22.5853557587 -79.0874252319 13.3069486618
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.024883 0.999433 -0.021997 }
+        <Binormal> { 0.999082 0.024095 -0.035433 }
+      }
+      <Normal> { 0.034883 0.022858 0.999115 }
+    }
+    <Vertex> 5070 {
+      -22.6983642578 -76.4163742065 13.2410755157
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.051302 -0.000183 0.998657 }
+    }
+    <Vertex> 5071 {
+      -24.7174186707 -76.4163742065 13.5171728134
+      <UV>  {
+        0.250000 0.750000
+        <Tangent> { -0.358919 -0.932621 0.037355 }
+        <Binormal> { -0.927315 0.360853 0.099276 }
+      }
+      <Normal> { 0.106906 0.001190 0.994263 }
+    }
+    <Vertex> 5072 {
+      -24.7174186707 -79.0874252319 13.4910154343
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.007979 0.999878 0.011958 }
+        <Binormal> { 0.997257 -0.007077 -0.073674 }
+      }
+      <Normal> { 0.073580 -0.012513 0.997192 }
+    }
+    <Vertex> 5073 {
+      -24.7174186707 -76.4163742065 13.5171728134
+      <UV>  {
+        0.250000 0.750000
+        <Tangent> { -0.358919 -0.932621 0.037355 }
+        <Binormal> { -0.927315 0.360853 0.099276 }
+      }
+      <Normal> { 0.106906 0.001190 0.994263 }
+    }
+    <Vertex> 5074 {
+      -26.8101768494 -76.4163742065 13.7736520767
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.530658 -0.846619 0.040486 }
+        <Binormal> { -0.846130 0.531744 0.029104 }
+      }
+      <Normal> { 0.035218 0.001343 0.999359 }
+    }
+    <Vertex> 5075 {
+      -26.8101768494 -79.0874252319 13.6620025635
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.837518 -0.545293 0.034917 }
+        <Binormal> { -0.542953 0.837229 0.051607 }
+      }
+      <Normal> { 0.024659 -0.045564 0.998627 }
+    }
+    <Vertex> 5076 {
+      -24.7174186707 -79.0874252319 13.4910154343
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.007979 0.999878 0.011958 }
+        <Binormal> { 0.997257 -0.007077 -0.073674 }
+      }
+      <Normal> { 0.073580 -0.012513 0.997192 }
+    }
+    <Vertex> 5077 {
+      -26.8101768494 -79.0874252319 13.6620025635
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.837518 -0.545293 0.034917 }
+        <Binormal> { -0.542953 0.837229 0.051607 }
+      }
+      <Normal> { 0.024659 -0.045564 0.998627 }
+    }
+    <Vertex> 5078 {
+      -26.8101768494 -81.866607666 13.4386987686
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.948976 -0.315060 0.013453 }
+        <Binormal> { -0.313649 0.947342 0.061274 }
+      }
+      <Normal> { 0.014130 -0.059877 0.998077 }
+    }
+    <Vertex> 5079 {
+      -24.7174186707 -81.866607666 13.4386987686
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -1.000000 -0.000000 -0.000000 }
+        <Binormal> { -0.000000 0.998993 0.017029 }
+      }
+      <Normal> { 0.041231 -0.017029 0.998993 }
+    }
+    <Vertex> 5080 {
+      -24.7174186707 -79.0874252319 13.4910154343
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.007979 0.999878 0.011958 }
+        <Binormal> { 0.997257 -0.007077 -0.073674 }
+      }
+      <Normal> { 0.073580 -0.012513 0.997192 }
+    }
+    <Vertex> 5081 {
+      -24.7174186707 -81.866607666 13.4386987686
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -1.000000 -0.000000 -0.000000 }
+        <Binormal> { -0.000000 0.998993 0.017029 }
+      }
+      <Normal> { 0.041231 -0.017029 0.998993 }
+    }
+    <Vertex> 5082 {
+      -22.4346847534 -81.866607666 13.4386987686
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.030693 0.999091 -0.029126 }
+        <Binormal> { 0.999343 0.030113 -0.020153 }
+      }
+      <Normal> { 0.019257 0.029725 0.999359 }
+    }
+    <Vertex> 5083 {
+      -22.5853557587 -79.0874252319 13.3069486618
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.024883 0.999433 -0.021997 }
+        <Binormal> { 0.999082 0.024095 -0.035433 }
+      }
+      <Normal> { 0.034883 0.022858 0.999115 }
+    }
+    <Vertex> 5084 {
+      -29.01014328 -79.0874252319 13.606877327
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.001407 -0.998506 -0.054618 }
+        <Binormal> { -0.999801 -0.000337 -0.019579 }
+      }
+      <Normal> { -0.019532 -0.054384 0.998321 }
+    }
+    <Vertex> 5085 {
+      -26.8101768494 -79.0874252319 13.6620025635
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 -0.998117 -0.061341 }
+        <Binormal> { -0.999541 -0.001513 0.024613 }
+      }
+      <Normal> { 0.024659 -0.045564 0.998627 }
+    }
+    <Vertex> 5086 {
+      -26.8101768494 -76.4163742065 13.7736520767
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.000000 -0.999329 -0.036616 }
+        <Binormal> { -0.998640 -0.001290 0.035195 }
+      }
+      <Normal> { 0.035218 0.001343 0.999359 }
+    }
+    <Vertex> 5087 {
+      -29.01014328 -76.4163742065 13.6909675598
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { 0.000000 -0.999505 -0.031466 }
+        <Binormal> { -0.999829 -0.000009 0.000275 }
+      }
+      <Normal> { 0.000275 -0.013215 0.999908 }
+    }
+    <Vertex> 5088 {
+      -29.01014328 -79.0874252319 13.606877327
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.001407 -0.998506 -0.054618 }
+        <Binormal> { -0.999801 -0.000337 -0.019579 }
+      }
+      <Normal> { -0.019532 -0.054384 0.998321 }
+    }
+    <Vertex> 5089 {
+      -29.01014328 -76.4163742065 13.6909675598
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { 0.000000 -0.999505 -0.031466 }
+        <Binormal> { -0.999829 -0.000009 0.000275 }
+      }
+      <Normal> { 0.000275 -0.013215 0.999908 }
+    }
+    <Vertex> 5090 {
+      -31.3029937744 -76.1607513428 13.8057003021
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.005536 -0.997325 -0.072878 }
+        <Binormal> { -0.861764 -0.038815 0.465723 }
+      }
+      <Normal> { 0.468398 -0.256905 0.845302 }
+    }
+    <Vertex> 5091 {
+      -31.2719230652 -79.0874252319 13.4807443619
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.005434 -0.997923 -0.064187 }
+        <Binormal> { -0.999954 -0.005275 -0.002649 }
+      }
+      <Normal> { -0.002289 -0.067232 0.997711 }
+    }
+    <Vertex> 5092 {
+      -29.01014328 -79.0874252319 13.606877327
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.001407 -0.998506 -0.054618 }
+        <Binormal> { -0.999801 -0.000337 -0.019579 }
+      }
+      <Normal> { -0.019532 -0.054384 0.998321 }
+    }
+    <Vertex> 5093 {
+      -31.2719230652 -79.0874252319 13.4807443619
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.005434 -0.997923 -0.064187 }
+        <Binormal> { -0.999954 -0.005275 -0.002649 }
+      }
+      <Normal> { -0.002289 -0.067232 0.997711 }
+    }
+    <Vertex> 5094 {
+      -31.2719230652 -81.866607666 13.4386987686
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.000000 -0.999286 -0.037794 }
+        <Binormal> { -0.999685 0.000700 -0.018512 }
+      }
+      <Normal> { -0.018525 -0.022675 0.999542 }
+    }
+    <Vertex> 5095 {
+      -29.01014328 -81.866607666 13.4386987686
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.000000 -0.998174 -0.060403 }
+        <Binormal> { -0.999761 0.001219 -0.020136 }
+      }
+      <Normal> { -0.020173 -0.054018 0.998321 }
+    }
+    <Vertex> 5096 {
+      -29.01014328 -79.0874252319 13.606877327
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.001407 -0.998506 -0.054618 }
+        <Binormal> { -0.999801 -0.000337 -0.019579 }
+      }
+      <Normal> { -0.019532 -0.054384 0.998321 }
+    }
+    <Vertex> 5097 {
+      -29.01014328 -81.866607666 13.4386987686
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.000000 -0.998174 -0.060403 }
+        <Binormal> { -0.999761 0.001219 -0.020136 }
+      }
+      <Normal> { -0.020173 -0.054018 0.998321 }
+    }
+    <Vertex> 5098 {
+      -26.8101768494 -81.866607666 13.4386987686
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.000000 -0.997529 -0.070257 }
+        <Binormal> { -0.999818 -0.000993 0.014095 }
+      }
+      <Normal> { 0.014130 -0.059877 0.998077 }
+    }
+    <Vertex> 5099 {
+      -26.8101768494 -79.0874252319 13.6620025635
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 -0.998117 -0.061341 }
+        <Binormal> { -0.999541 -0.001513 0.024613 }
+      }
+      <Normal> { 0.024659 -0.045564 0.998627 }
+    }
+    <Vertex> 5100 {
+      -4.18329572678 -79.5420837402 13.9281225204
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.889702 -0.290145 0.352486 }
+        <Binormal> { -0.170144 -0.927160 -0.333726 }
+      }
+      <Normal> { -0.427564 -0.235664 0.872707 }
+    }
+    <Vertex> 5101 {
+      -2.92497515678 -79.6569976807 14.3556995392
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.935714 -0.191107 0.296509 }
+        <Binormal> { -0.140961 -0.959913 -0.173847 }
+      }
+      <Normal> { -0.160009 -0.153111 0.975158 }
+    }
+    <Vertex> 5102 {
+      -3.41103816032 -77.8269882202 14.4683427811
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.959417 -0.057289 0.276110 }
+        <Binormal> { -0.079475 -0.981993 0.072405 }
+      }
+      <Normal> { -0.118137 0.082522 0.989532 }
+    }
+    <Vertex> 5103 {
+      -4.75005340576 -77.705291748 14.1505403519
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.882125 -0.307416 0.356862 }
+        <Binormal> { -0.291320 -0.951380 -0.099448 }
+      }
+      <Normal> { -0.361766 0.013337 0.932157 }
+    }
+    <Vertex> 5104 {
+      -4.18329572678 -79.5420837402 13.9281225204
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.889702 -0.290145 0.352486 }
+        <Binormal> { -0.170144 -0.927160 -0.333726 }
+      }
+      <Normal> { -0.427564 -0.235664 0.872707 }
+    }
+    <Vertex> 5105 {
+      -4.75005340576 -77.705291748 14.1505403519
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.882125 -0.307416 0.356862 }
+        <Binormal> { -0.291320 -0.951380 -0.099448 }
+      }
+      <Normal> { -0.361766 0.013337 0.932157 }
+    }
+    <Vertex> 5106 {
+      -5.85239982605 -76.681098938 13.5620059967
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.778107 -0.467275 0.419767 }
+        <Binormal> { -0.457071 -0.858381 -0.108274 }
+      }
+      <Normal> { -0.250465 0.011261 0.968047 }
+    }
+    <Vertex> 5107 {
+      -5.29207277298 -79.3135147095 13.3596801758
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.865746 -0.277982 0.416185 }
+        <Binormal> { -0.174583 -0.936200 -0.262149 }
+      }
+      <Normal> { -0.327616 -0.197607 0.923887 }
+    }
+    <Vertex> 5108 {
+      -4.18329572678 -79.5420837402 13.9281225204
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.889702 -0.290145 0.352486 }
+        <Binormal> { -0.170144 -0.927160 -0.333726 }
+      }
+      <Normal> { -0.427564 -0.235664 0.872707 }
+    }
+    <Vertex> 5109 {
+      -5.29207277298 -79.3135147095 13.3596801758
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.865746 -0.277982 0.416185 }
+        <Binormal> { -0.174583 -0.936200 -0.262149 }
+      }
+      <Normal> { -0.327616 -0.197607 0.923887 }
+    }
+    <Vertex> 5110 {
+      -4.39386940002 -81.866607666 12.9519500732
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.857618 -0.337512 0.388042 }
+        <Binormal> { -0.220646 -0.909636 -0.303530 }
+      }
+      <Normal> { -0.302744 -0.234779 0.923673 }
+    }
+    <Vertex> 5111 {
+      -3.55611133575 -81.866607666 13.4621458054
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.853263 -0.407571 0.325313 }
+        <Binormal> { -0.259324 -0.872662 -0.413141 }
+      }
+      <Normal> { -0.433851 -0.276955 0.857326 }
+    }
+    <Vertex> 5112 {
+      -4.18329572678 -79.5420837402 13.9281225204
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.889702 -0.290145 0.352486 }
+        <Binormal> { -0.170144 -0.927160 -0.333726 }
+      }
+      <Normal> { -0.427564 -0.235664 0.872707 }
+    }
+    <Vertex> 5113 {
+      -3.55611133575 -81.866607666 13.4621458054
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.853263 -0.407571 0.325313 }
+        <Binormal> { -0.259324 -0.872662 -0.413141 }
+      }
+      <Normal> { -0.433851 -0.276955 0.857326 }
+    }
+    <Vertex> 5114 {
+      -2.57493185997 -81.866607666 13.947968483
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.912290 -0.283055 0.295985 }
+        <Binormal> { -0.213083 -0.933446 -0.235901 }
+      }
+      <Normal> { -0.191504 -0.199164 0.961058 }
+    }
+    <Vertex> 5115 {
+      -2.92497515678 -79.6569976807 14.3556995392
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.935714 -0.191107 0.296509 }
+        <Binormal> { -0.140961 -0.959913 -0.173847 }
+      }
+      <Normal> { -0.160009 -0.153111 0.975158 }
+    }
+    <Vertex> 5116 {
+      -14.6601190567 -79.0874252319 13.943066597
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.351076 -0.936345 0.001866 }
+        <Binormal> { -0.930792 -0.349209 -0.107890 }
+      }
+      <Normal> { -0.101871 -0.035615 0.994140 }
+    }
+    <Vertex> 5117 {
+      -12.262711525 -79.0874252319 14.1131496429
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.360947 -0.932586 0.000000 }
+        <Binormal> { -0.902019 -0.349116 0.253839 }
+      }
+      <Normal> { 0.236824 0.091372 0.967223 }
+    }
+    <Vertex> 5118 {
+      -13.1667613983 -76.4163742065 14.1131496429
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.320597 -0.947216 0.000000 }
+        <Binormal> { -0.918192 -0.310773 0.244286 }
+      }
+      <Normal> { 0.239296 0.054964 0.969359 }
+    }
+    <Vertex> 5119 {
+      -15.5641689301 -76.4163742065 13.943066597
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.320597 -0.947216 0.000000 }
+        <Binormal> { -0.941608 -0.318699 -0.107920 }
+      }
+      <Normal> { -0.106021 -0.023377 0.994079 }
+    }
+    <Vertex> 5120 {
+      -14.6601190567 -79.0874252319 13.943066597
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.351076 -0.936345 0.001866 }
+        <Binormal> { -0.930792 -0.349209 -0.107890 }
+      }
+      <Normal> { -0.101871 -0.035615 0.994140 }
+    }
+    <Vertex> 5121 {
+      -15.5641689301 -76.4163742065 13.943066597
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.320597 -0.947216 0.000000 }
+        <Binormal> { -0.941608 -0.318699 -0.107920 }
+      }
+      <Normal> { -0.106021 -0.023377 0.994079 }
+    }
+    <Vertex> 5122 {
+      -18.4512748718 -76.4163742065 13.5213413239
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.302447 -0.953163 0.002584 }
+        <Binormal> { -0.945830 -0.300452 -0.122332 }
+      }
+      <Normal> { -0.120945 -0.023316 0.992370 }
+    }
+    <Vertex> 5123 {
+      -17.6602306366 -79.0874252319 13.5358247757
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.320755 -0.947132 0.007550 }
+        <Binormal> { -0.941444 -0.319681 -0.106925 }
+      }
+      <Normal> { -0.105411 -0.022095 0.994171 }
+    }
+    <Vertex> 5124 {
+      -14.6601190567 -79.0874252319 13.943066597
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.351076 -0.936345 0.001866 }
+        <Binormal> { -0.930792 -0.349209 -0.107890 }
+      }
+      <Normal> { -0.101871 -0.035615 0.994140 }
+    }
+    <Vertex> 5125 {
+      -17.6602306366 -79.0874252319 13.5358247757
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.320755 -0.947132 0.007550 }
+        <Binormal> { -0.941444 -0.319681 -0.106925 }
+      }
+      <Normal> { -0.105411 -0.022095 0.994171 }
+    }
+    <Vertex> 5126 {
+      -16.6055049896 -81.866607666 13.564789772
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.376664 -0.926337 0.004827 }
+        <Binormal> { -0.922033 -0.375401 -0.093511 }
+      }
+      <Normal> { -0.093204 -0.019044 0.995453 }
+    }
+    <Vertex> 5127 {
+      -13.4547224045 -81.866607666 13.943066597
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.397909 -0.917425 0.000000 }
+        <Binormal> { -0.912245 -0.395662 -0.105832 }
+      }
+      <Normal> { -0.098666 -0.038484 0.994354 }
+    }
+    <Vertex> 5128 {
+      -14.6601190567 -79.0874252319 13.943066597
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.351076 -0.936345 0.001866 }
+        <Binormal> { -0.930792 -0.349209 -0.107890 }
+      }
+      <Normal> { -0.101871 -0.035615 0.994140 }
+    }
+    <Vertex> 5129 {
+      -13.4547224045 -81.866607666 13.943066597
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.397909 -0.917425 0.000000 }
+        <Binormal> { -0.912245 -0.395662 -0.105832 }
+      }
+      <Normal> { -0.098666 -0.038484 0.994354 }
+    }
+    <Vertex> 5130 {
+      -11.0573120117 -81.866607666 14.1131496429
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.397909 -0.917425 0.000000 }
+        <Binormal> { -0.886571 -0.384527 0.257037 }
+      }
+      <Normal> { 0.235817 0.102268 0.966369 }
+    }
+    <Vertex> 5131 {
+      -12.262711525 -79.0874252319 14.1131496429
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.360947 -0.932586 0.000000 }
+        <Binormal> { -0.902019 -0.349116 0.253839 }
+      }
+      <Normal> { 0.236824 0.091372 0.967223 }
+    }
+    <Vertex> 5132 {
+      0.214008584619 -79.4521484375 14.2779083252
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.997721 0.057351 -0.035544 }
+        <Binormal> { 0.055025 -0.996457 -0.063252 }
+      }
+      <Normal> { 0.034669 -0.061403 0.997497 }
+    }
+    <Vertex> 5133 {
+      4.42438602448 -79.372543335 14.030049324
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.998094 0.018871 -0.058756 }
+        <Binormal> { 0.017683 -0.999274 -0.020555 }
+      }
+      <Normal> { 0.033570 -0.019959 0.999207 }
+    }
+    <Vertex> 5134 {
+      4.07204818726 -76.522354126 14.0548553467
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.990918 0.118250 -0.064021 }
+        <Binormal> { 0.117957 -0.992671 -0.007770 }
+      }
+      <Normal> { 0.040132 -0.003052 0.999176 }
+    }
+    <Vertex> 5135 {
+      -0.251588791609 -77.4611434937 14.3583564758
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.983684 0.171500 -0.054355 }
+        <Binormal> { 0.174603 -0.982471 0.059981 }
+      }
+      <Normal> { 0.018555 0.064211 0.997742 }
+    }
+    <Vertex> 5136 {
+      0.214008584619 -79.4521484375 14.2779083252
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.997721 0.057351 -0.035544 }
+        <Binormal> { 0.055025 -0.996457 -0.063252 }
+      }
+      <Normal> { 0.034669 -0.061403 0.997497 }
+    }
+    <Vertex> 5137 {
+      -0.251588791609 -77.4611434937 14.3583564758
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.983684 0.171500 -0.054355 }
+        <Binormal> { 0.174603 -0.982471 0.059981 }
+      }
+      <Normal> { 0.018555 0.064211 0.997742 }
+    }
+    <Vertex> 5138 {
+      -3.41103816032 -77.8269882202 14.4683427811
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.995481 0.090199 -0.029679 }
+        <Binormal> { 0.091704 -0.981555 0.092805 }
+      }
+      <Normal> { -0.118137 0.082522 0.989532 }
+    }
+    <Vertex> 5139 {
+      -2.92497515678 -79.6569976807 14.3556995392
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.997572 0.065101 -0.024722 }
+        <Binormal> { 0.059699 -0.968835 -0.142323 }
+      }
+      <Normal> { -0.160009 -0.153111 0.975158 }
+    }
+    <Vertex> 5140 {
+      0.214008584619 -79.4521484375 14.2779083252
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.997721 0.057351 -0.035544 }
+        <Binormal> { 0.055025 -0.996457 -0.063252 }
+      }
+      <Normal> { 0.034669 -0.061403 0.997497 }
+    }
+    <Vertex> 5141 {
+      -2.92497515678 -79.6569976807 14.3556995392
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.997572 0.065101 -0.024722 }
+        <Binormal> { 0.059699 -0.968835 -0.142323 }
+      }
+      <Normal> { -0.160009 -0.153111 0.975158 }
+    }
+    <Vertex> 5142 {
+      -2.57493185997 -81.866607666 13.947968483
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.999428 0.033659 0.003148 }
+        <Binormal> { 0.032975 -0.961112 -0.192604 }
+      }
+      <Normal> { -0.191504 -0.199164 0.961058 }
+    }
+    <Vertex> 5143 {
+      0.36860653758 -81.866607666 14.044919014
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.999615 -0.027546 0.003385 }
+        <Binormal> { -0.027086 -0.994698 -0.095799 }
+      }
+      <Normal> { 0.019654 -0.096377 0.995148 }
+    }
+    <Vertex> 5144 {
+      0.214008584619 -79.4521484375 14.2779083252
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.997721 0.057351 -0.035544 }
+        <Binormal> { 0.055025 -0.996457 -0.063252 }
+      }
+      <Normal> { 0.034669 -0.061403 0.997497 }
+    }
+    <Vertex> 5145 {
+      0.36860653758 -81.866607666 14.044919014
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.999615 -0.027546 0.003385 }
+        <Binormal> { -0.027086 -0.994698 -0.095799 }
+      }
+      <Normal> { 0.019654 -0.096377 0.995148 }
+    }
+    <Vertex> 5146 {
+      4.4630355835 -82.060546875 13.9718027115
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.999159 -0.013756 -0.038617 }
+        <Binormal> { -0.015020 -0.999243 -0.032690 }
+      }
+      <Normal> { 0.024262 -0.033052 0.999146 }
+    }
+    <Vertex> 5147 {
+      4.42438602448 -79.372543335 14.030049324
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.998094 0.018871 -0.058756 }
+        <Binormal> { 0.017683 -0.999274 -0.020555 }
+      }
+      <Normal> { 0.033570 -0.019959 0.999207 }
+    }
+    <Vertex> 5148 {
+      8.89688682556 -79.8631820679 13.9474306107
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.989517 -0.144191 -0.008027 }
+        <Binormal> { -0.144210 -0.989519 -0.002273 }
+      }
+      <Normal> { 0.007691 -0.003418 0.999939 }
+    }
+    <Vertex> 5149 {
+      13.5004501343 -80.6389465332 13.9474306107
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.986097 -0.166171 0.000000 }
+        <Binormal> { -0.166171 -0.986097 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 5150 {
+      13.5004501343 -77.9678878784 13.9474306107
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.986097 -0.166171 0.000000 }
+        <Binormal> { -0.166171 -0.986097 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 5151 {
+      8.89688682556 -77.1921234131 13.9474306107
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.988387 -0.151537 -0.011261 }
+        <Binormal> { -0.151535 -0.988446 0.000902 }
+      }
+      <Normal> { 0.010529 -0.000702 0.999939 }
+    }
+    <Vertex> 5152 {
+      8.89688682556 -79.8631820679 13.9474306107
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.989517 -0.144191 -0.008027 }
+        <Binormal> { -0.144210 -0.989519 -0.002273 }
+      }
+      <Normal> { 0.007691 -0.003418 0.999939 }
+    }
+    <Vertex> 5153 {
+      8.89688682556 -77.1921234131 13.9474306107
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.988387 -0.151537 -0.011261 }
+        <Binormal> { -0.151535 -0.988446 0.000902 }
+      }
+      <Normal> { 0.010529 -0.000702 0.999939 }
+    }
+    <Vertex> 5154 {
+      4.07204818726 -76.522354126 14.0548553467
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.940054 0.340469 -0.019495 }
+        <Binormal> { 0.340129 -0.940061 -0.016533 }
+      }
+      <Normal> { 0.040132 -0.003052 0.999176 }
+    }
+    <Vertex> 5155 {
+      4.42438602448 -79.372543335 14.030049324
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.993869 -0.109029 -0.018359 }
+        <Binormal> { -0.109309 -0.993697 -0.016177 }
+      }
+      <Normal> { 0.033570 -0.019959 0.999207 }
+    }
+    <Vertex> 5156 {
+      8.89688682556 -79.8631820679 13.9474306107
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.989517 -0.144191 -0.008027 }
+        <Binormal> { -0.144210 -0.989519 -0.002273 }
+      }
+      <Normal> { 0.007691 -0.003418 0.999939 }
+    }
+    <Vertex> 5157 {
+      4.42438602448 -79.372543335 14.030049324
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.993869 -0.109029 -0.018359 }
+        <Binormal> { -0.109309 -0.993697 -0.016177 }
+      }
+      <Normal> { 0.033570 -0.019959 0.999207 }
+    }
+    <Vertex> 5158 {
+      4.4630355835 -82.060546875 13.9718027115
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.992757 -0.119543 -0.011926 }
+        <Binormal> { -0.119836 -0.992198 -0.029912 }
+      }
+      <Normal> { 0.024262 -0.033052 0.999146 }
+    }
+    <Vertex> 5159 {
+      8.89688682556 -82.6423721313 13.9474306107
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.988901 -0.148550 -0.002667 }
+        <Binormal> { -0.148560 -0.988885 -0.004428 }
+      }
+      <Normal> { 0.005341 -0.005280 0.999969 }
+    }
+    <Vertex> 5160 {
+      8.89688682556 -79.8631820679 13.9474306107
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.989517 -0.144191 -0.008027 }
+        <Binormal> { -0.144210 -0.989519 -0.002273 }
+      }
+      <Normal> { 0.007691 -0.003418 0.999939 }
+    }
+    <Vertex> 5161 {
+      8.89688682556 -82.6423721313 13.9474306107
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.988901 -0.148550 -0.002667 }
+        <Binormal> { -0.148560 -0.988885 -0.004428 }
+      }
+      <Normal> { 0.005341 -0.005280 0.999969 }
+    }
+    <Vertex> 5162 {
+      12.3495597839 -82.5293884277 13.9474306107
+      <UV>  {
+        0.125000 0.875000
+        <Tangent> { 0.986097 -0.166170 0.000000 }
+        <Binormal> { -0.166170 -0.986097 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 5163 {
+      13.5004501343 -80.6389465332 13.9474306107
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.986097 -0.166171 0.000000 }
+        <Binormal> { -0.166171 -0.986097 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 5164 {
+      -5.73025608063 -73.7387161255 13.2095241547
+      <UV>  {
+        0.227152 0.889163
+        <Tangent> { 0.973239 0.082886 0.214327 }
+        <Binormal> { 0.072854 -0.993907 0.053546 }
+      }
+      <Normal> { -0.156163 0.041719 0.986847 }
+    }
+    <Vertex> 5165 {
+      -5.58489465714 -75.8368453979 13.4196300507
+      <UV>  {
+        0.224230 0.930573
+        <Tangent> { 0.518713 -0.815093 0.257991 }
+        <Binormal> { -0.835623 -0.547032 -0.048194 }
+      }
+      <Normal> { -0.175054 0.182165 0.967528 }
+    }
+    <Vertex> 5166 {
+      -4.83536243439 -75.5830001831 13.4370956421
+      <UV>  {
+        0.169884 0.905942
+        <Tangent> { 0.781414 -0.563960 0.267099 }
+        <Binormal> { -0.593261 -0.802592 0.041003 }
+      }
+      <Normal> { -0.155004 0.164342 0.974120 }
+    }
+    <Vertex> 5167 {
+      -4.98317337036 -73.489692688 13.3641862869
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.950322 -0.256976 0.175648 }
+        <Binormal> { -0.248256 -0.965970 -0.070070 }
+      }
+      <Normal> { -0.204505 -0.018433 0.978668 }
+    }
+    <Vertex> 5168 {
+      -5.73025608063 -73.7387161255 13.2095241547
+      <UV>  {
+        0.227152 0.889163
+        <Tangent> { 0.973239 0.082886 0.214327 }
+        <Binormal> { 0.072854 -0.993907 0.053546 }
+      }
+      <Normal> { -0.156163 0.041719 0.986847 }
+    }
+    <Vertex> 5169 {
+      -4.98317337036 -73.489692688 13.3641862869
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.950322 -0.256976 0.175648 }
+        <Binormal> { -0.248256 -0.965970 -0.070070 }
+      }
+      <Normal> { -0.204505 -0.018433 0.978668 }
+    }
+    <Vertex> 5170 {
+      -4.70174360275 -71.5251693726 13.6122722626
+      <UV>  {
+        0.180437 0.862900
+        <Tangent> { 0.850135 0.409424 0.331122 }
+        <Binormal> { 0.443859 -0.892974 -0.035441 }
+      }
+      <Normal> { -0.225593 -0.150334 0.962523 }
+    }
+    <Vertex> 5171 {
+      -5.62065076828 -71.6907501221 13.2828702927
+      <UV>  {
+        0.221408 0.846962
+        <Tangent> { 0.609218 0.716654 0.339500 }
+        <Binormal> { 0.700623 -0.685143 0.189039 }
+      }
+      <Normal> { -0.329936 -0.077822 0.940764 }
+    }
+    <Vertex> 5172 {
+      -5.73025608063 -73.7387161255 13.2095241547
+      <UV>  {
+        0.227152 0.889163
+        <Tangent> { 0.973239 0.082886 0.214327 }
+        <Binormal> { 0.072854 -0.993907 0.053546 }
+      }
+      <Normal> { -0.156163 0.041719 0.986847 }
+    }
+    <Vertex> 5173 {
+      -5.62065076828 -71.6907501221 13.2828702927
+      <UV>  {
+        0.221408 0.846962
+        <Tangent> { 0.609218 0.716654 0.339500 }
+        <Binormal> { 0.700623 -0.685143 0.189039 }
+      }
+      <Normal> { -0.329936 -0.077822 0.940764 }
+    }
+    <Vertex> 5174 {
+      -6.19889211655 -71.3269424438 13.0155086517
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.626682 0.708587 0.324305 }
+        <Binormal> { 0.659113 -0.694113 0.242938 }
+      }
+      <Normal> { -0.298746 0.049867 0.953001 }
+    }
+    <Vertex> 5175 {
+      -6.58286237717 -74.0182876587 13.1800298691
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.986703 0.154436 0.050664 }
+        <Binormal> { 0.149319 -0.983931 0.091207 }
+      }
+      <Normal> { -0.098636 0.076998 0.992126 }
+    }
+    <Vertex> 5176 {
+      -5.73025608063 -73.7387161255 13.2095241547
+      <UV>  {
+        0.227152 0.889163
+        <Tangent> { 0.973239 0.082886 0.214327 }
+        <Binormal> { 0.072854 -0.993907 0.053546 }
+      }
+      <Normal> { -0.156163 0.041719 0.986847 }
+    }
+    <Vertex> 5177 {
+      -6.58286237717 -74.0182876587 13.1800298691
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.986703 0.154436 0.050664 }
+        <Binormal> { 0.149319 -0.983931 0.091207 }
+      }
+      <Normal> { -0.098636 0.076998 0.992126 }
+    }
+    <Vertex> 5178 {
+      -5.85239982605 -76.681098938 13.5620059967
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.622501 -0.728498 0.285976 }
+        <Binormal> { -0.708441 -0.674238 -0.175453 }
+      }
+      <Normal> { -0.250465 0.011261 0.968047 }
+    }
+    <Vertex> 5179 {
+      -5.58489465714 -75.8368453979 13.4196300507
+      <UV>  {
+        0.224230 0.930573
+        <Tangent> { 0.518713 -0.815093 0.257991 }
+        <Binormal> { -0.835623 -0.547032 -0.048194 }
+      }
+      <Normal> { -0.175054 0.182165 0.967528 }
+    }
+    <Vertex> 5180 {
+      -5.19595623016 -76.8439483643 13.885840416
+      <UV>  {
+        0.207275 0.945529
+        <Tangent> { 0.747987 -0.577835 0.326532 }
+        <Binormal> { -0.627469 -0.775370 0.065241 }
+      }
+      <Normal> { -0.236122 0.269631 0.933531 }
+    }
+    <Vertex> 5181 {
+      -4.75005340576 -77.705291748 14.1505403519
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.738852 -0.597101 0.312359 }
+        <Binormal> { -0.560758 -0.801727 -0.206157 }
+      }
+      <Normal> { -0.361766 0.013337 0.932157 }
+    }
+    <Vertex> 5182 {
+      -3.41103816032 -77.8269882202 14.4683427811
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.866012 -0.422390 0.267601 }
+        <Binormal> { -0.440052 -0.888560 0.021565 }
+      }
+      <Normal> { -0.118137 0.082522 0.989532 }
+    }
+    <Vertex> 5183 {
+      -4.16913843155 -76.7562179565 13.9908123016
+      <UV>  {
+        0.164607 0.927463
+        <Tangent> { 0.849415 -0.446572 0.281188 }
+        <Binormal> { -0.504651 -0.841877 0.187418 }
+      }
+      <Normal> { -0.121158 0.284341 0.951018 }
+    }
+    <Vertex> 5184 {
+      -5.19595623016 -76.8439483643 13.885840416
+      <UV>  {
+        0.207275 0.945529
+        <Tangent> { 0.747987 -0.577835 0.326532 }
+        <Binormal> { -0.627469 -0.775370 0.065241 }
+      }
+      <Normal> { -0.236122 0.269631 0.933531 }
+    }
+    <Vertex> 5185 {
+      -4.16913843155 -76.7562179565 13.9908123016
+      <UV>  {
+        0.164607 0.927463
+        <Tangent> { 0.849415 -0.446572 0.281188 }
+        <Binormal> { -0.504651 -0.841877 0.187418 }
+      }
+      <Normal> { -0.121158 0.284341 0.951018 }
+    }
+    <Vertex> 5186 {
+      -4.83536243439 -75.5830001831 13.4370956421
+      <UV>  {
+        0.169884 0.905942
+        <Tangent> { 0.781414 -0.563960 0.267099 }
+        <Binormal> { -0.593261 -0.802592 0.041003 }
+      }
+      <Normal> { -0.155004 0.164342 0.974120 }
+    }
+    <Vertex> 5187 {
+      -5.58489465714 -75.8368453979 13.4196300507
+      <UV>  {
+        0.224230 0.930573
+        <Tangent> { 0.518713 -0.815093 0.257991 }
+        <Binormal> { -0.835623 -0.547032 -0.048194 }
+      }
+      <Normal> { -0.175054 0.182165 0.967528 }
+    }
+    <Vertex> 5188 {
+      -5.19595623016 -76.8439483643 13.885840416
+      <UV>  {
+        0.207275 0.945529
+        <Tangent> { 0.747987 -0.577835 0.326532 }
+        <Binormal> { -0.627469 -0.775370 0.065241 }
+      }
+      <Normal> { -0.236122 0.269631 0.933531 }
+    }
+    <Vertex> 5189 {
+      -5.58489465714 -75.8368453979 13.4196300507
+      <UV>  {
+        0.224230 0.930573
+        <Tangent> { 0.518713 -0.815093 0.257991 }
+        <Binormal> { -0.835623 -0.547032 -0.048194 }
+      }
+      <Normal> { -0.175054 0.182165 0.967528 }
+    }
+    <Vertex> 5190 {
+      -5.85239982605 -76.681098938 13.5620059967
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.622501 -0.728498 0.285976 }
+        <Binormal> { -0.708441 -0.674238 -0.175453 }
+      }
+      <Normal> { -0.250465 0.011261 0.968047 }
+    }
+    <Vertex> 5191 {
+      -4.75005340576 -77.705291748 14.1505403519
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.738852 -0.597101 0.312359 }
+        <Binormal> { -0.560758 -0.801727 -0.206157 }
+      }
+      <Normal> { -0.361766 0.013337 0.932157 }
+    }
+    <Vertex> 5192 {
+      -5.24468660355 -70.8341598511 13.6670236588
+      <UV>  {
+        0.212367 0.829636
+        <Tangent> { 0.817980 0.451703 0.356192 }
+        <Binormal> { 0.448440 -0.887950 0.096226 }
+      }
+      <Normal> { -0.387280 -0.096225 0.916898 }
+    }
+    <Vertex> 5193 {
+      -5.62065076828 -71.6907501221 13.2828702927
+      <UV>  {
+        0.221408 0.846962
+        <Tangent> { 0.609218 0.716654 0.339500 }
+        <Binormal> { 0.700623 -0.685143 0.189039 }
+      }
+      <Normal> { -0.329936 -0.077822 0.940764 }
+    }
+    <Vertex> 5194 {
+      -4.70174360275 -71.5251693726 13.6122722626
+      <UV>  {
+        0.180437 0.862900
+        <Tangent> { 0.850135 0.409424 0.331122 }
+        <Binormal> { 0.443859 -0.892974 -0.035441 }
+      }
+      <Normal> { -0.225593 -0.150334 0.962523 }
+    }
+    <Vertex> 5195 {
+      -4.08024787903 -70.7383651733 14.0215444565
+      <UV>  {
+        0.185713 0.841380
+        <Tangent> { 0.897801 0.307593 0.315181 }
+        <Binormal> { 0.343834 -0.932497 -0.069373 }
+      }
+      <Normal> { -0.195624 -0.144292 0.969970 }
+    }
+    <Vertex> 5196 {
+      -5.24468660355 -70.8341598511 13.6670236588
+      <UV>  {
+        0.212367 0.829636
+        <Tangent> { 0.817980 0.451703 0.356192 }
+        <Binormal> { 0.448440 -0.887950 0.096226 }
+      }
+      <Normal> { -0.387280 -0.096225 0.916898 }
+    }
+    <Vertex> 5197 {
+      -4.08024787903 -70.7383651733 14.0215444565
+      <UV>  {
+        0.185713 0.841380
+        <Tangent> { 0.897801 0.307593 0.315181 }
+        <Binormal> { 0.343834 -0.932497 -0.069373 }
+      }
+      <Normal> { -0.195624 -0.144292 0.969970 }
+    }
+    <Vertex> 5198 {
+      -3.48870635033 -69.9984741211 14.2370128632
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.911282 0.284730 0.297480 }
+        <Binormal> { 0.274387 -0.947740 0.066579 }
+      }
+      <Normal> { -0.165654 0.021302 0.985931 }
+    }
+    <Vertex> 5199 {
+      -5.03026485443 -70.2021942139 13.7020301819
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.791074 0.506766 0.342622 }
+        <Binormal> { 0.438251 -0.860163 0.260383 }
+      }
+      <Normal> { -0.437208 0.049074 0.897977 }
+    }
+    <Vertex> 5200 {
+      -5.24468660355 -70.8341598511 13.6670236588
+      <UV>  {
+        0.212367 0.829636
+        <Tangent> { 0.817980 0.451703 0.356192 }
+        <Binormal> { 0.448440 -0.887950 0.096226 }
+      }
+      <Normal> { -0.387280 -0.096225 0.916898 }
+    }
+    <Vertex> 5201 {
+      -5.03026485443 -70.2021942139 13.7020301819
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.791074 0.506766 0.342622 }
+        <Binormal> { 0.438251 -0.860163 0.260383 }
+      }
+      <Normal> { -0.437208 0.049074 0.897977 }
+    }
+    <Vertex> 5202 {
+      -6.19889211655 -71.3269424438 13.0155086517
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.626682 0.708587 0.324305 }
+        <Binormal> { 0.659113 -0.694113 0.242938 }
+      }
+      <Normal> { -0.298746 0.049867 0.953001 }
+    }
+    <Vertex> 5203 {
+      -5.62065076828 -71.6907501221 13.2828702927
+      <UV>  {
+        0.221408 0.846962
+        <Tangent> { 0.609218 0.716654 0.339500 }
+        <Binormal> { 0.700623 -0.685143 0.189039 }
+      }
+      <Normal> { -0.329936 -0.077822 0.940764 }
+    }
+    <Vertex> 5204 {
+      -1.30915641785 -71.2316970825 14.1999664307
+      <UV>  {
+        0.500000 0.166667
+        <Tangent> { 0.969658 -0.241553 0.037628 }
+        <Binormal> { -0.238471 -0.968472 -0.071813 }
+      }
+      <Normal> { -0.052644 -0.060945 0.996734 }
+    }
+    <Vertex> 5205 {
+      -0.150619730353 -70.3965606689 14.2229480743
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.978001 -0.206233 -0.031325 }
+        <Binormal> { -0.205209 -0.978099 0.032607 }
+      }
+      <Normal> { 0.025971 0.027863 0.999268 }
+    }
+    <Vertex> 5206 {
+      -3.48870635033 -69.9984741211 14.2370128632
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.989171 -0.144335 0.026612 }
+        <Binormal> { -0.142871 -0.979663 -0.002838 }
+      }
+      <Normal> { -0.165654 0.021302 0.985931 }
+    }
+    <Vertex> 5207 {
+      -4.08024787903 -70.7383651733 14.0215444565
+      <UV>  {
+        1.000000 0.166667
+        <Tangent> { 0.982548 -0.174921 0.063263 }
+        <Binormal> { -0.160540 -0.965418 -0.175992 }
+      }
+      <Normal> { -0.195624 -0.144292 0.969970 }
+    }
+    <Vertex> 5208 {
+      -1.30915641785 -71.2316970825 14.1999664307
+      <UV>  {
+        0.500000 0.166667
+        <Tangent> { 0.969658 -0.241553 0.037628 }
+        <Binormal> { -0.238471 -0.968472 -0.071813 }
+      }
+      <Normal> { -0.052644 -0.060945 0.996734 }
+    }
+    <Vertex> 5209 {
+      -4.08024787903 -70.7383651733 14.0215444565
+      <UV>  {
+        1.000000 0.166667
+        <Tangent> { 0.982548 -0.174921 0.063263 }
+        <Binormal> { -0.160540 -0.965418 -0.175992 }
+      }
+      <Normal> { -0.195624 -0.144292 0.969970 }
+    }
+    <Vertex> 5210 {
+      -4.70174360275 -71.5251693726 13.6122722626
+      <UV>  {
+        1.000000 0.333334
+        <Tangent> { 0.977428 -0.138611 0.159440 }
+        <Binormal> { -0.109447 -0.976766 -0.178211 }
+      }
+      <Normal> { -0.225593 -0.150334 0.962523 }
+    }
+    <Vertex> 5211 {
+      -2.32687139511 -71.9448318481 14.0527801514
+      <UV>  {
+        0.500000 0.333334
+        <Tangent> { 0.964382 -0.225047 0.139003 }
+        <Binormal> { -0.212610 -0.971968 -0.098566 }
+      }
+      <Normal> { -0.140324 -0.069460 0.987640 }
+    }
+    <Vertex> 5212 {
+      -1.30915641785 -71.2316970825 14.1999664307
+      <UV>  {
+        0.500000 0.166667
+        <Tangent> { 0.969658 -0.241553 0.037628 }
+        <Binormal> { -0.238471 -0.968472 -0.071813 }
+      }
+      <Normal> { -0.052644 -0.060945 0.996734 }
+    }
+    <Vertex> 5213 {
+      -2.32687139511 -71.9448318481 14.0527801514
+      <UV>  {
+        0.500000 0.333334
+        <Tangent> { 0.964382 -0.225047 0.139003 }
+        <Binormal> { -0.212610 -0.971968 -0.098566 }
+      }
+      <Normal> { -0.140324 -0.069460 0.987640 }
+    }
+    <Vertex> 5214 {
+      -0.191067636013 -72.5777740479 14.2624254227
+      <UV>  {
+        0.000000 0.333334
+        <Tangent> { 0.964356 -0.247316 0.094085 }
+        <Binormal> { -0.248167 -0.968147 -0.001242 }
+      }
+      <Normal> { -0.059999 0.014100 0.998077 }
+    }
+    <Vertex> 5215 {
+      1.38754177094 -72.282951355 14.268406868
+      <UV>  {
+        0.000000 0.166667
+        <Tangent> { 0.931448 -0.363106 0.023640 }
+        <Binormal> { -0.363672 -0.929812 0.047420 }
+      }
+      <Normal> { 0.023499 0.041749 0.998840 }
+    }
+    <Vertex> 5216 {
+      -1.30915641785 -71.2316970825 14.1999664307
+      <UV>  {
+        0.500000 0.166667
+        <Tangent> { 0.969658 -0.241553 0.037628 }
+        <Binormal> { -0.238471 -0.968472 -0.071813 }
+      }
+      <Normal> { -0.052644 -0.060945 0.996734 }
+    }
+    <Vertex> 5217 {
+      1.38754177094 -72.282951355 14.268406868
+      <UV>  {
+        0.000000 0.166667
+        <Tangent> { 0.931448 -0.363106 0.023640 }
+        <Binormal> { -0.363672 -0.929812 0.047420 }
+      }
+      <Normal> { 0.023499 0.041749 0.998840 }
+    }
+    <Vertex> 5218 {
+      4.19780635834 -71.6193466187 13.99081707
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.963402 0.259921 -0.065560 }
+        <Binormal> { 0.263033 -0.963752 0.044348 }
+      }
+      <Normal> { 0.051088 0.059816 0.996887 }
+    }
+    <Vertex> 5219 {
+      -0.150619730353 -70.3965606689 14.2229480743
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.978001 -0.206233 -0.031325 }
+        <Binormal> { -0.205209 -0.978099 0.032607 }
+      }
+      <Normal> { 0.025971 0.027863 0.999268 }
+    }
+    <Vertex> 5220 {
+      -2.69477748871 -73.5481033325 13.9048538208
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.983865 -0.042115 0.173882 }
+        <Binormal> { -0.034447 -0.998302 -0.046886 }
+      }
+      <Normal> { -0.175756 -0.040132 0.983612 }
+    }
+    <Vertex> 5221 {
+      -2.32687139511 -71.9448318481 14.0527801514
+      <UV>  {
+        0.500000 0.333334
+        <Tangent> { 0.964382 -0.225047 0.139003 }
+        <Binormal> { -0.212610 -0.971968 -0.098566 }
+      }
+      <Normal> { -0.140324 -0.069460 0.987640 }
+    }
+    <Vertex> 5222 {
+      -4.70174360275 -71.5251693726 13.6122722626
+      <UV>  {
+        1.000000 0.333334
+        <Tangent> { 0.977428 -0.138611 0.159440 }
+        <Binormal> { -0.109447 -0.976766 -0.178211 }
+      }
+      <Normal> { -0.225593 -0.150334 0.962523 }
+    }
+    <Vertex> 5223 {
+      -4.98317337036 -73.489692688 13.3641862869
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.972906 -0.024833 0.229864 }
+        <Binormal> { -0.020066 -0.999160 -0.023012 }
+      }
+      <Normal> { -0.204505 -0.018433 0.978668 }
+    }
+    <Vertex> 5224 {
+      -2.69477748871 -73.5481033325 13.9048538208
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.983865 -0.042115 0.173882 }
+        <Binormal> { -0.034447 -0.998302 -0.046886 }
+      }
+      <Normal> { -0.175756 -0.040132 0.983612 }
+    }
+    <Vertex> 5225 {
+      -4.98317337036 -73.489692688 13.3641862869
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.972906 -0.024833 0.229864 }
+        <Binormal> { -0.020066 -0.999160 -0.023012 }
+      }
+      <Normal> { -0.204505 -0.018433 0.978668 }
+    }
+    <Vertex> 5226 {
+      -4.83536243439 -75.5830001831 13.4370956421
+      <UV>  {
+        1.000000 0.666666
+        <Tangent> { 0.982830 0.099681 0.155269 }
+        <Binormal> { 0.071584 -0.981462 0.176971 }
+      }
+      <Normal> { -0.155004 0.164342 0.974120 }
+    }
+    <Vertex> 5227 {
+      -2.37738037109 -75.2645187378 13.8879241943
+      <UV>  {
+        0.500000 0.666666
+        <Tangent> { 0.976064 0.149336 0.158105 }
+        <Binormal> { 0.139832 -0.987540 0.069513 }
+      }
+      <Normal> { -0.148320 0.048524 0.987732 }
+    }
+    <Vertex> 5228 {
+      -2.69477748871 -73.5481033325 13.9048538208
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.983865 -0.042115 0.173882 }
+        <Binormal> { -0.034447 -0.998302 -0.046886 }
+      }
+      <Normal> { -0.175756 -0.040132 0.983612 }
+    }
+    <Vertex> 5229 {
+      -2.37738037109 -75.2645187378 13.8879241943
+      <UV>  {
+        0.500000 0.666666
+        <Tangent> { 0.976064 0.149336 0.158105 }
+        <Binormal> { 0.139832 -0.987540 0.069513 }
+      }
+      <Normal> { -0.148320 0.048524 0.987732 }
+    }
+    <Vertex> 5230 {
+      -0.185277283192 -74.8715438843 14.190325737
+      <UV>  {
+        0.000000 0.666666
+        <Tangent> { 0.981664 0.150237 0.117320 }
+        <Binormal> { 0.153906 -0.987395 -0.023361 }
+      }
+      <Normal> { -0.084597 -0.036744 0.995727 }
+    }
+    <Vertex> 5231 {
+      0.0906433984637 -73.7323760986 14.368719101
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.984322 -0.065119 0.163922 }
+        <Binormal> { -0.060744 -0.993089 -0.029754 }
+      }
+      <Normal> { -0.070345 -0.025575 0.997192 }
+    }
+    <Vertex> 5232 {
+      -2.69477748871 -73.5481033325 13.9048538208
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.983865 -0.042115 0.173882 }
+        <Binormal> { -0.034447 -0.998302 -0.046886 }
+      }
+      <Normal> { -0.175756 -0.040132 0.983612 }
+    }
+    <Vertex> 5233 {
+      0.0906433984637 -73.7323760986 14.368719101
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.984322 -0.065119 0.163922 }
+        <Binormal> { -0.060744 -0.993089 -0.029754 }
+      }
+      <Normal> { -0.070345 -0.025575 0.997192 }
+    }
+    <Vertex> 5234 {
+      -0.191067636013 -72.5777740479 14.2624254227
+      <UV>  {
+        0.000000 0.333334
+        <Tangent> { 0.964356 -0.247316 0.094085 }
+        <Binormal> { -0.248167 -0.968147 -0.001242 }
+      }
+      <Normal> { -0.059999 0.014100 0.998077 }
+    }
+    <Vertex> 5235 {
+      -2.32687139511 -71.9448318481 14.0527801514
+      <UV>  {
+        0.500000 0.333334
+        <Tangent> { 0.964382 -0.225047 0.139003 }
+        <Binormal> { -0.212610 -0.971968 -0.098566 }
+      }
+      <Normal> { -0.140324 -0.069460 0.987640 }
+    }
+    <Vertex> 5236 {
+      -1.33918428421 -76.3170700073 14.13372612
+      <UV>  {
+        0.500000 0.833333
+        <Tangent> { 0.979400 0.198631 0.036356 }
+        <Binormal> { 0.190739 -0.969093 0.156296 }
+      }
+      <Normal> { -0.065920 0.146214 0.987030 }
+    }
+    <Vertex> 5237 {
+      -2.37738037109 -75.2645187378 13.8879241943
+      <UV>  {
+        0.500000 0.666666
+        <Tangent> { 0.976064 0.149336 0.158105 }
+        <Binormal> { 0.139832 -0.987540 0.069513 }
+      }
+      <Normal> { -0.148320 0.048524 0.987732 }
+    }
+    <Vertex> 5238 {
+      -4.83536243439 -75.5830001831 13.4370956421
+      <UV>  {
+        1.000000 0.666666
+        <Tangent> { 0.982830 0.099681 0.155269 }
+        <Binormal> { 0.071584 -0.981462 0.176971 }
+      }
+      <Normal> { -0.155004 0.164342 0.974120 }
+    }
+    <Vertex> 5239 {
+      -4.16913843155 -76.7562179565 13.9908123016
+      <UV>  {
+        1.000000 0.833333
+        <Tangent> { 0.986945 0.153153 0.049841 }
+        <Binormal> { 0.131479 -0.944641 0.299185 }
+      }
+      <Normal> { -0.121158 0.284341 0.951018 }
+    }
+    <Vertex> 5240 {
+      -1.33918428421 -76.3170700073 14.13372612
+      <UV>  {
+        0.500000 0.833333
+        <Tangent> { 0.979400 0.198631 0.036356 }
+        <Binormal> { 0.190739 -0.969093 0.156296 }
+      }
+      <Normal> { -0.065920 0.146214 0.987030 }
+    }
+    <Vertex> 5241 {
+      -4.16913843155 -76.7562179565 13.9908123016
+      <UV>  {
+        1.000000 0.833333
+        <Tangent> { 0.986945 0.153153 0.049841 }
+        <Binormal> { 0.131479 -0.944641 0.299185 }
+      }
+      <Normal> { -0.121158 0.284341 0.951018 }
+    }
+    <Vertex> 5242 {
+      -3.41103816032 -77.8269882202 14.4683427811
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.991074 0.133203 0.005449 }
+        <Binormal> { 0.131359 -0.981343 0.097522 }
+      }
+      <Normal> { -0.118137 0.082522 0.989532 }
+    }
+    <Vertex> 5243 {
+      -0.251588791609 -77.4611434937 14.3583564758
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.983684 0.171500 -0.054355 }
+        <Binormal> { 0.174603 -0.982471 0.059981 }
+      }
+      <Normal> { 0.018555 0.064211 0.997742 }
+    }
+    <Vertex> 5244 {
+      -1.33918428421 -76.3170700073 14.13372612
+      <UV>  {
+        0.500000 0.833333
+        <Tangent> { 0.979400 0.198631 0.036356 }
+        <Binormal> { 0.190739 -0.969093 0.156296 }
+      }
+      <Normal> { -0.065920 0.146214 0.987030 }
+    }
+    <Vertex> 5245 {
+      -0.251588791609 -77.4611434937 14.3583564758
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.983684 0.171500 -0.054355 }
+        <Binormal> { 0.174603 -0.982471 0.059981 }
+      }
+      <Normal> { 0.018555 0.064211 0.997742 }
+    }
+    <Vertex> 5246 {
+      4.07204818726 -76.522354126 14.0548553467
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.997954 0.037472 -0.051801 }
+        <Binormal> { 0.037283 -0.999211 -0.004549 }
+      }
+      <Normal> { 0.040132 -0.003052 0.999176 }
+    }
+    <Vertex> 5247 {
+      1.44357275963 -75.3955993652 14.2544813156
+      <UV>  {
+        0.000000 0.833333
+        <Tangent> { 0.948503 0.314083 0.041159 }
+        <Binormal> { 0.314497 -0.948563 -0.009086 }
+      }
+      <Normal> { -0.002869 -0.010529 0.999939 }
+    }
+    <Vertex> 5248 {
+      -1.33918428421 -76.3170700073 14.13372612
+      <UV>  {
+        0.500000 0.833333
+        <Tangent> { 0.979400 0.198631 0.036356 }
+        <Binormal> { 0.190739 -0.969093 0.156296 }
+      }
+      <Normal> { -0.065920 0.146214 0.987030 }
+    }
+    <Vertex> 5249 {
+      1.44357275963 -75.3955993652 14.2544813156
+      <UV>  {
+        0.000000 0.833333
+        <Tangent> { 0.948503 0.314083 0.041159 }
+        <Binormal> { 0.314497 -0.948563 -0.009086 }
+      }
+      <Normal> { -0.002869 -0.010529 0.999939 }
+    }
+    <Vertex> 5250 {
+      -0.185277283192 -74.8715438843 14.190325737
+      <UV>  {
+        0.000000 0.666666
+        <Tangent> { 0.981664 0.150237 0.117320 }
+        <Binormal> { 0.153906 -0.987395 -0.023361 }
+      }
+      <Normal> { -0.084597 -0.036744 0.995727 }
+    }
+    <Vertex> 5251 {
+      -2.37738037109 -75.2645187378 13.8879241943
+      <UV>  {
+        0.500000 0.666666
+        <Tangent> { 0.976064 0.149336 0.158105 }
+        <Binormal> { 0.139832 -0.987540 0.069513 }
+      }
+      <Normal> { -0.148320 0.048524 0.987732 }
+    }
+    <Vertex> 5252 {
+      -35.836479187 -68.373008728 15.2559137344
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.036768 0.961131 0.273633 }
+        <Binormal> { -0.032959 -0.274815 0.960855 }
+      }
+      <Normal> { -0.999146 -0.014832 -0.038514 }
+    }
+    <Vertex> 5253 {
+      -35.836479187 -65.0865631104 15.3079805374
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.005146 -0.993868 0.110456 }
+        <Binormal> { 0.045500 -0.110574 -0.992816 }
+      }
+      <Normal> { -0.998932 0.001892 -0.045991 }
+    }
+    <Vertex> 5254 {
+      -35.836479187 -65.086555481 13.4386987686
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.000000 -0.961859 -0.273545 }
+        <Binormal> { -0.000000 0.273545 -0.961859 }
+      }
+      <Normal> { -1.000000 0.000000 0.000000 }
+    }
+    <Vertex> 5255 {
+      -35.836479187 -68.373008728 13.4386987686
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.000000 -0.655219 -0.755439 }
+        <Binormal> { -0.015498 0.755324 -0.655119 }
+      }
+      <Normal> { -0.999847 -0.008393 0.013977 }
+    }
+    <Vertex> 5256 {
+      -35.836479187 -68.373008728 15.2559137344
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.036768 0.961131 0.273633 }
+        <Binormal> { -0.032959 -0.274815 0.960855 }
+      }
+      <Normal> { -0.999146 -0.014832 -0.038514 }
+    }
+    <Vertex> 5257 {
+      -35.836479187 -68.373008728 13.4386987686
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.000000 -0.655219 -0.755439 }
+        <Binormal> { -0.015498 0.755324 -0.655119 }
+      }
+      <Normal> { -0.999847 -0.008393 0.013977 }
+    }
+    <Vertex> 5258 {
+      -35.836479187 -71.3910903931 13.4386987686
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.016828 0.960980 0.276106 }
+        <Binormal> { 0.135117 -0.271406 0.952859 }
+      }
+      <Normal> { -0.990448 -0.062899 0.122532 }
+    }
+    <Vertex> 5259 {
+      -35.7342033386 -71.1955337524 15.3950242996
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.036768 0.961131 0.273633 }
+        <Binormal> { 0.002504 -0.273028 0.959344 }
+      }
+      <Normal> { -0.994140 -0.104556 -0.027161 }
+    }
+    <Vertex> 5260 {
+      -35.836479187 -68.373008728 15.2559137344
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.036768 0.961131 0.273633 }
+        <Binormal> { -0.032959 -0.274815 0.960855 }
+      }
+      <Normal> { -0.999146 -0.014832 -0.038514 }
+    }
+    <Vertex> 5261 {
+      -35.7342033386 -71.1955337524 15.3950242996
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.036768 0.961131 0.273633 }
+        <Binormal> { 0.002504 -0.273028 0.959344 }
+      }
+      <Normal> { -0.994140 -0.104556 -0.027161 }
+    }
+    <Vertex> 5262 {
+      -35.841381073 -71.8590393066 17.0761871338
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.060125 0.960815 0.270593 }
+        <Binormal> { -0.354598 -0.262923 0.854789 }
+      }
+      <Normal> { -0.876034 -0.217597 -0.430342 }
+    }
+    <Vertex> 5263 {
+      -35.9719848633 -68.40234375 16.6728916168
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.069655 -0.520590 0.850961 }
+        <Binormal> { 0.206660 -0.821457 -0.485625 }
+      }
+      <Normal> { -0.936796 -0.029603 -0.348582 }
+    }
+    <Vertex> 5264 {
+      -35.836479187 -68.373008728 15.2559137344
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.036768 0.961131 0.273633 }
+        <Binormal> { -0.032959 -0.274815 0.960855 }
+      }
+      <Normal> { -0.999146 -0.014832 -0.038514 }
+    }
+    <Vertex> 5265 {
+      -35.9719848633 -68.40234375 16.6728916168
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.069655 -0.520590 0.850961 }
+        <Binormal> { 0.206660 -0.821457 -0.485625 }
+      }
+      <Normal> { -0.936796 -0.029603 -0.348582 }
+    }
+    <Vertex> 5266 {
+      -35.9719848633 -64.9678497314 16.7640094757
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.030701 -0.951269 0.306831 }
+        <Binormal> { 0.311389 -0.299509 -0.897413 }
+      }
+      <Normal> { -0.942839 0.016938 -0.332804 }
+    }
+    <Vertex> 5267 {
+      -35.836479187 -65.0865631104 15.3079805374
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.005146 -0.993868 0.110456 }
+        <Binormal> { 0.045500 -0.110574 -0.992816 }
+      }
+      <Normal> { -0.998932 0.001892 -0.045991 }
+    }
+    <Vertex> 5268 {
+      -35.836479187 -61.7109489441 15.4641838074
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.009554 0.960385 0.278511 }
+        <Binormal> { -0.013428 -0.277221 0.955476 }
+      }
+      <Normal> { -0.995788 0.090518 0.012268 }
+    }
+    <Vertex> 5269 {
+      -35.2973861694 -59.0695304871 15.7247886658
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.155750 -0.982859 0.098642 }
+        <Binormal> { -0.157284 -0.061316 -0.859289 }
+      }
+      <Normal> { -0.775414 0.623859 0.097415 }
+    }
+    <Vertex> 5270 {
+      -35.836479187 -58.1712722778 13.4386987686
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.081529 -0.934785 -0.345732 }
+        <Binormal> { -0.348877 0.228852 -0.536496 }
+      }
+      <Normal> { -0.520829 0.608783 0.598376 }
+    }
+    <Vertex> 5271 {
+      -35.836479187 -61.7109489441 13.4386987686
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.000000 -0.649208 -0.760611 }
+        <Binormal> { -0.015038 0.758104 -0.647068 }
+      }
+      <Normal> { -0.996704 0.040193 0.070254 }
+    }
+    <Vertex> 5272 {
+      -35.836479187 -61.7109489441 15.4641838074
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.009554 0.960385 0.278511 }
+        <Binormal> { -0.013428 -0.277221 0.955476 }
+      }
+      <Normal> { -0.995788 0.090518 0.012268 }
+    }
+    <Vertex> 5273 {
+      -35.836479187 -61.7109489441 13.4386987686
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.000000 -0.649208 -0.760611 }
+        <Binormal> { -0.015038 0.758104 -0.647068 }
+      }
+      <Normal> { -0.996704 0.040193 0.070254 }
+    }
+    <Vertex> 5274 {
+      -35.836479187 -65.086555481 13.4386987686
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 0.951549 0.307497 }
+        <Binormal> { -0.000000 -0.307497 0.951549 }
+      }
+      <Normal> { -1.000000 0.000000 0.000000 }
+    }
+    <Vertex> 5275 {
+      -35.836479187 -65.0865631104 15.3079805374
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.009554 0.960386 0.278511 }
+        <Binormal> { -0.044696 -0.278653 0.959342 }
+      }
+      <Normal> { -0.998932 0.001892 -0.045991 }
+    }
+    <Vertex> 5276 {
+      -35.836479187 -61.7109489441 15.4641838074
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.009554 0.960385 0.278511 }
+        <Binormal> { -0.013428 -0.277221 0.955476 }
+      }
+      <Normal> { -0.995788 0.090518 0.012268 }
+    }
+    <Vertex> 5277 {
+      -35.836479187 -65.0865631104 15.3079805374
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.009554 0.960386 0.278511 }
+        <Binormal> { -0.044696 -0.278653 0.959342 }
+      }
+      <Normal> { -0.998932 0.001892 -0.045991 }
+    }
+    <Vertex> 5278 {
+      -35.9719848633 -64.9678497314 16.7640094757
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.019098 0.968252 0.249244 }
+        <Binormal> { -0.326460 -0.241353 0.912582 }
+      }
+      <Normal> { -0.942839 0.016938 -0.332804 }
+    }
+    <Vertex> 5279 {
+      -35.9719848633 -61.4401893616 17.0373668671
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.169152 -0.343558 0.923773 }
+        <Binormal> { -0.034471 -0.900260 -0.341125 }
+      }
+      <Normal> { -0.903470 0.181677 -0.388165 }
+    }
+    <Vertex> 5280 {
+      -35.836479187 -61.7109489441 15.4641838074
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.009554 0.960385 0.278511 }
+        <Binormal> { -0.013428 -0.277221 0.955476 }
+      }
+      <Normal> { -0.995788 0.090518 0.012268 }
+    }
+    <Vertex> 5281 {
+      -35.9719848633 -61.4401893616 17.0373668671
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.169152 -0.343558 0.923773 }
+        <Binormal> { -0.034471 -0.900260 -0.341125 }
+      }
+      <Normal> { -0.903470 0.181677 -0.388165 }
+    }
+    <Vertex> 5282 {
+      -34.9179916382 -58.4592971802 17.6732330322
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.227569 -0.898801 0.374659 }
+        <Binormal> { 0.156019 -0.286726 -0.593084 }
+      }
+      <Normal> { -0.473006 0.737999 -0.481216 }
+    }
+    <Vertex> 5283 {
+      -35.2973861694 -59.0695304871 15.7247886658
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.155750 -0.982859 0.098642 }
+        <Binormal> { -0.157284 -0.061316 -0.859289 }
+      }
+      <Normal> { -0.775414 0.623859 0.097415 }
+    }
+    <Vertex> 5284 {
+      -31.9765090942 -56.05128479 19.375295639
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.849941 0.418114 0.320593 }
+        <Binormal> { -0.344430 0.031821 0.871636 }
+      }
+      <Normal> { -0.059084 0.996460 -0.059725 }
+    }
+    <Vertex> 5285 {
+      -28.6750202179 -56.7903060913 20.3149032593
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.936082 0.245719 -0.251739 }
+        <Binormal> { 0.247077 0.009840 -0.909140 }
+      }
+      <Normal> { 0.534562 0.830897 0.154271 }
+    }
+    <Vertex> 5286 {
+      -29.1713294983 -58.0324745178 19.7914867401
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.943333 0.019986 -0.331245 }
+        <Binormal> { 0.129289 -0.827433 -0.418117 }
+      }
+      <Normal> { 0.614307 0.430219 -0.661428 }
+    }
+    <Vertex> 5287 {
+      -31.8457717896 -57.3494720459 19.0269432068
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.619076 -0.665990 -0.416176 }
+        <Binormal> { 0.740434 -0.486535 -0.322838 }
+      }
+      <Normal> { 0.193518 0.729667 -0.655812 }
+    }
+    <Vertex> 5288 {
+      -31.9765090942 -56.05128479 19.375295639
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.849941 0.418114 0.320593 }
+        <Binormal> { -0.344430 0.031821 0.871636 }
+      }
+      <Normal> { -0.059084 0.996460 -0.059725 }
+    }
+    <Vertex> 5289 {
+      -31.8457717896 -57.3494720459 19.0269432068
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.619076 -0.665990 -0.416176 }
+        <Binormal> { 0.740434 -0.486535 -0.322838 }
+      }
+      <Normal> { 0.193518 0.729667 -0.655812 }
+    }
+    <Vertex> 5290 {
+      -34.9179916382 -58.4592971802 17.6732330322
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.798520 0.488895 0.351208 }
+        <Binormal> { -0.494455 0.218137 0.820557 }
+      }
+      <Normal> { -0.473006 0.737999 -0.481216 }
+    }
+    <Vertex> 5291 {
+      -35.2779922485 -57.4655342102 18.3315544128
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.849942 0.418114 0.320593 }
+        <Binormal> { -0.210932 -0.249073 0.884052 }
+      }
+      <Normal> { -0.733787 0.679159 0.016266 }
+    }
+    <Vertex> 5292 {
+      -31.9765090942 -56.05128479 19.375295639
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.849941 0.418114 0.320593 }
+        <Binormal> { -0.344430 0.031821 0.871636 }
+      }
+      <Normal> { -0.059084 0.996460 -0.059725 }
+    }
+    <Vertex> 5293 {
+      -35.2779922485 -57.4655342102 18.3315544128
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.849942 0.418114 0.320593 }
+        <Binormal> { -0.210932 -0.249073 0.884052 }
+      }
+      <Normal> { -0.733787 0.679159 0.016266 }
+    }
+    <Vertex> 5294 {
+      -34.4991531372 -57.4138221741 18.6374549866
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.891805 0.347962 0.289148 }
+        <Binormal> { 0.278250 -0.924340 0.254161 }
+      }
+      <Normal> { -0.408643 0.125553 0.903989 }
+    }
+    <Vertex> 5295 {
+      -31.8789730072 -55.9559631348 19.4854335785
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.020364 -0.997580 -0.066485 }
+        <Binormal> { -0.921504 0.038682 -0.298146 }
+      }
+      <Normal> { -0.294992 0.189947 0.936399 }
+    }
+    <Vertex> 5296 {
+      -31.9765090942 -56.05128479 19.375295639
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.849941 0.418114 0.320593 }
+        <Binormal> { -0.344430 0.031821 0.871636 }
+      }
+      <Normal> { -0.059084 0.996460 -0.059725 }
+    }
+    <Vertex> 5297 {
+      -31.8789730072 -55.9559631348 19.4854335785
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.020364 -0.997580 -0.066485 }
+        <Binormal> { -0.921504 0.038682 -0.298146 }
+      }
+      <Normal> { -0.294992 0.189947 0.936399 }
+    }
+    <Vertex> 5298 {
+      -29.3093624115 -56.9753570557 20.1683120728
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.947740 0.140566 -0.286409 }
+        <Binormal> { 0.172315 0.979973 -0.089241 }
+      }
+      <Normal> { -0.226051 0.127689 0.965697 }
+    }
+    <Vertex> 5299 {
+      -28.6750202179 -56.7903060913 20.3149032593
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.936082 0.245719 -0.251739 }
+        <Binormal> { 0.247077 0.009840 -0.909140 }
+      }
+      <Normal> { 0.534562 0.830897 0.154271 }
+    }
+    <Vertex> 5300 {
+      -36.378490448 -60.6279067993 17.7059440613
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.023390 0.989134 0.145144 }
+        <Binormal> { 0.148121 -0.145487 0.967608 }
+      }
+      <Normal> { -0.974853 0.143132 0.170751 }
+    }
+    <Vertex> 5301 {
+      -35.2779922485 -57.4655342102 18.3315544128
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.322776 -0.933608 -0.155540 }
+        <Binormal> { 0.090450 0.119384 -0.904285 }
+      }
+      <Normal> { -0.733787 0.679159 0.016266 }
+    }
+    <Vertex> 5302 {
+      -34.9179916382 -58.4592971802 17.6732330322
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.235356 -0.936523 -0.259870 }
+        <Binormal> { 0.642454 0.009663 -0.616674 }
+      }
+      <Normal> { -0.473006 0.737999 -0.481216 }
+    }
+    <Vertex> 5303 {
+      -35.9719848633 -61.4401893616 17.0373668671
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.054947 -0.937280 -0.344218 }
+        <Binormal> { 0.426356 0.332319 -0.836822 }
+      }
+      <Normal> { -0.903470 0.181677 -0.388165 }
+    }
+    <Vertex> 5304 {
+      -36.378490448 -60.6279067993 17.7059440613
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.023390 0.989134 0.145144 }
+        <Binormal> { 0.148121 -0.145487 0.967608 }
+      }
+      <Normal> { -0.974853 0.143132 0.170751 }
+    }
+    <Vertex> 5305 {
+      -35.9719848633 -61.4401893616 17.0373668671
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.054947 -0.937280 -0.344218 }
+        <Binormal> { 0.426356 0.332319 -0.836822 }
+      }
+      <Normal> { -0.903470 0.181677 -0.388165 }
+    }
+    <Vertex> 5306 {
+      -35.9719848633 -64.9678497314 16.7640094757
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.048235 0.987685 0.148838 }
+        <Binormal> { -0.331227 -0.156383 0.930410 }
+      }
+      <Normal> { -0.942839 0.016938 -0.332804 }
+    }
+    <Vertex> 5307 {
+      -36.378490448 -64.6117324829 17.3935375214
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.023390 0.989134 0.145144 }
+        <Binormal> { 0.181278 -0.146970 0.972370 }
+      }
+      <Normal> { -0.983062 -0.000458 0.183203 }
+    }
+    <Vertex> 5308 {
+      -36.378490448 -60.6279067993 17.7059440613
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.023390 0.989134 0.145144 }
+        <Binormal> { 0.148121 -0.145487 0.967608 }
+      }
+      <Normal> { -0.974853 0.143132 0.170751 }
+    }
+    <Vertex> 5309 {
+      -36.378490448 -64.6117324829 17.3935375214
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.023390 0.989134 0.145144 }
+        <Binormal> { 0.181278 -0.146970 0.972370 }
+      }
+      <Normal> { -0.983062 -0.000458 0.183203 }
+    }
+    <Vertex> 5310 {
+      -35.5778579712 -64.2361602783 17.9600639343
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.811248 0.487327 0.323094 }
+        <Binormal> { 0.437255 -0.868401 0.211930 }
+      }
+      <Normal> { -0.463942 -0.017457 0.885678 }
+    }
+    <Vertex> 5311 {
+      -35.5164909363 -59.7377891541 18.2334213257
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.853283 0.043799 0.519605 }
+        <Binormal> { 0.054989 -0.989308 -0.006909 }
+      }
+      <Normal> { -0.398755 -0.028565 0.916593 }
+    }
+    <Vertex> 5312 {
+      -36.378490448 -60.6279067993 17.7059440613
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.023390 0.989134 0.145144 }
+        <Binormal> { 0.148121 -0.145487 0.967608 }
+      }
+      <Normal> { -0.974853 0.143132 0.170751 }
+    }
+    <Vertex> 5313 {
+      -35.5164909363 -59.7377891541 18.2334213257
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.853283 0.043799 0.519605 }
+        <Binormal> { 0.054989 -0.989308 -0.006909 }
+      }
+      <Normal> { -0.398755 -0.028565 0.916593 }
+    }
+    <Vertex> 5314 {
+      -34.4991531372 -57.4138221741 18.6374549866
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.167040 -0.981984 -0.088352 }
+        <Binormal> { -0.876609 0.187106 -0.422253 }
+      }
+      <Normal> { -0.408643 0.125553 0.903989 }
+    }
+    <Vertex> 5315 {
+      -35.2779922485 -57.4655342102 18.3315544128
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.322776 -0.933608 -0.155540 }
+        <Binormal> { 0.090450 0.119384 -0.904285 }
+      }
+      <Normal> { -0.733787 0.679159 0.016266 }
+    }
+    <Vertex> 5316 {
+      -27.5745201111 -60.0877227783 20.6281032562
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.328937 -0.935947 0.125715 }
+        <Binormal> { -0.456525 -0.047071 0.844073 }
+      }
+      <Normal> { 0.875271 0.075594 0.477615 }
+    }
+    <Vertex> 5317 {
+      -28.0004329681 -64.4766845703 20.6281032562
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.092777 0.995656 0.007856 }
+        <Binormal> { 0.546058 -0.044333 -0.830081 }
+      }
+      <Normal> { 0.816492 -0.184698 0.546983 }
+    }
+    <Vertex> 5318 {
+      -28.5866718292 -64.8482666016 20.1032333374
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.014516 0.996905 -0.077266 }
+        <Binormal> { -0.496421 -0.059160 -0.856560 }
+      }
+      <Normal> { 0.856624 -0.178259 -0.484146 }
+    }
+    <Vertex> 5319 {
+      -28.2396678925 -60.9618644714 20.0788478851
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.615023 0.629043 -0.475449 }
+        <Binormal> { -0.325718 -0.737023 -0.553783 }
+      }
+      <Normal> { 0.827723 0.053835 -0.558489 }
+    }
+    <Vertex> 5320 {
+      -27.5745201111 -60.0877227783 20.6281032562
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.328937 -0.935947 0.125715 }
+        <Binormal> { -0.456525 -0.047071 0.844073 }
+      }
+      <Normal> { 0.875271 0.075594 0.477615 }
+    }
+    <Vertex> 5321 {
+      -28.2396678925 -60.9618644714 20.0788478851
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.615023 0.629043 -0.475449 }
+        <Binormal> { -0.325718 -0.737023 -0.553783 }
+      }
+      <Normal> { 0.827723 0.053835 -0.558489 }
+    }
+    <Vertex> 5322 {
+      -29.1713294983 -58.0324745178 19.7914867401
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.441953 -0.877031 0.188397 }
+        <Binormal> { 0.499041 0.408054 0.728903 }
+      }
+      <Normal> { 0.614307 0.430219 -0.661428 }
+    }
+    <Vertex> 5323 {
+      -28.6750202179 -56.7903060913 20.3149032593
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.328937 -0.935947 0.125715 }
+        <Binormal> { -0.248846 0.016457 0.773635 }
+      }
+      <Normal> { 0.534562 0.830897 0.154271 }
+    }
+    <Vertex> 5324 {
+      -27.5745201111 -60.0877227783 20.6281032562
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.328937 -0.935947 0.125715 }
+        <Binormal> { -0.456525 -0.047071 0.844073 }
+      }
+      <Normal> { 0.875271 0.075594 0.477615 }
+    }
+    <Vertex> 5325 {
+      -28.6750202179 -56.7903060913 20.3149032593
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.328937 -0.935947 0.125715 }
+        <Binormal> { -0.248846 0.016457 0.773635 }
+      }
+      <Normal> { 0.534562 0.830897 0.154271 }
+    }
+    <Vertex> 5326 {
+      -29.3093624115 -56.9753570557 20.1683120728
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.224608 -0.972018 0.068789 }
+        <Binormal> { -0.947459 -0.232454 -0.191045 }
+      }
+      <Normal> { -0.226051 0.127689 0.965697 }
+    }
+    <Vertex> 5327 {
+      -28.2414512634 -59.2914199829 20.4250411987
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.401976 0.907266 -0.123623 }
+        <Binormal> { 0.869887 0.420519 0.257627 }
+      }
+      <Normal> { -0.283364 -0.001343 0.958983 }
+    }
+    <Vertex> 5328 {
+      -27.5745201111 -60.0877227783 20.6281032562
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.328937 -0.935947 0.125715 }
+        <Binormal> { -0.456525 -0.047071 0.844073 }
+      }
+      <Normal> { 0.875271 0.075594 0.477615 }
+    }
+    <Vertex> 5329 {
+      -28.2414512634 -59.2914199829 20.4250411987
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.401976 0.907266 -0.123623 }
+        <Binormal> { 0.869887 0.420519 0.257627 }
+      }
+      <Normal> { -0.283364 -0.001343 0.958983 }
+    }
+    <Vertex> 5330 {
+      -28.6547641754 -64.1245651245 20.3859901428
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.906836 0.289835 -0.306013 }
+        <Binormal> { 0.288853 0.955919 0.049398 }
+      }
+      <Normal> { -0.322642 0.048647 0.945250 }
+    }
+    <Vertex> 5331 {
+      -28.0004329681 -64.4766845703 20.6281032562
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.092777 0.995656 0.007856 }
+        <Binormal> { 0.546058 -0.044333 -0.830081 }
+      }
+      <Normal> { 0.816492 -0.184698 0.546983 }
+    }
+    <Vertex> 5332 {
+      -36.378490448 -68.4903411865 17.2894020081
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.007715 0.999260 -0.037692 }
+        <Binormal> { 0.109941 0.038310 0.993153 }
+      }
+      <Normal> { -0.993927 0.004944 0.109836 }
+    }
+    <Vertex> 5333 {
+      -36.378490448 -64.6117324829 17.3935375214
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.013007 -0.999844 0.011978 }
+        <Binormal> { -0.183168 -0.014158 -0.982914 }
+      }
+      <Normal> { -0.983062 -0.000458 0.183203 }
+    }
+    <Vertex> 5334 {
+      -35.9719848633 -64.9678497314 16.7640094757
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.055824 -0.992198 -0.111477 }
+        <Binormal> { 0.332096 0.123683 -0.934537 }
+      }
+      <Normal> { -0.942839 0.016938 -0.332804 }
+    }
+    <Vertex> 5335 {
+      -35.9719848633 -68.40234375 16.6728916168
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.247226 -0.920321 -0.303132 }
+        <Binormal> { 0.311834 0.370152 -0.869472 }
+      }
+      <Normal> { -0.936796 -0.029603 -0.348582 }
+    }
+    <Vertex> 5336 {
+      -36.378490448 -68.4903411865 17.2894020081
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.007715 0.999260 -0.037692 }
+        <Binormal> { 0.109941 0.038310 0.993153 }
+      }
+      <Normal> { -0.993927 0.004944 0.109836 }
+    }
+    <Vertex> 5337 {
+      -35.9719848633 -68.40234375 16.6728916168
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.247226 -0.920321 -0.303132 }
+        <Binormal> { 0.311834 0.370152 -0.869472 }
+      }
+      <Normal> { -0.936796 -0.029603 -0.348582 }
+    }
+    <Vertex> 5338 {
+      -35.841381073 -71.8590393066 17.0761871338
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.077234 0.996581 -0.029352 }
+        <Binormal> { -0.435257 -0.007524 0.889844 }
+      }
+      <Normal> { -0.876034 -0.217597 -0.430342 }
+    }
+    <Vertex> 5339 {
+      -36.378490448 -72.0522155762 17.7067394257
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.007715 0.999260 -0.037692 }
+        <Binormal> { 0.054089 0.038034 0.997268 }
+      }
+      <Normal> { -0.997711 -0.038301 0.055574 }
+    }
+    <Vertex> 5340 {
+      -36.378490448 -68.4903411865 17.2894020081
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.007715 0.999260 -0.037692 }
+        <Binormal> { 0.109941 0.038310 0.993153 }
+      }
+      <Normal> { -0.993927 0.004944 0.109836 }
+    }
+    <Vertex> 5341 {
+      -36.378490448 -72.0522155762 17.7067394257
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.007715 0.999260 -0.037692 }
+        <Binormal> { 0.054089 0.038034 0.997268 }
+      }
+      <Normal> { -0.997711 -0.038301 0.055574 }
+    }
+    <Vertex> 5342 {
+      -35.9460601807 -72.5480728149 18.2341156006
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.853955 0.362984 0.372833 }
+        <Binormal> { 0.239193 -0.910009 0.338110 }
+      }
+      <Normal> { -0.477065 0.193152 0.857356 }
+    }
+    <Vertex> 5343 {
+      -35.7619590759 -68.5783462524 17.8689460754
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.406227 -0.802473 0.437055 }
+        <Binormal> { -0.700449 -0.576457 -0.407385 }
+      }
+      <Normal> { -0.536088 0.056154 0.842280 }
+    }
+    <Vertex> 5344 {
+      -36.378490448 -68.4903411865 17.2894020081
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.007715 0.999260 -0.037692 }
+        <Binormal> { 0.109941 0.038310 0.993153 }
+      }
+      <Normal> { -0.993927 0.004944 0.109836 }
+    }
+    <Vertex> 5345 {
+      -35.7619590759 -68.5783462524 17.8689460754
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.406227 -0.802473 0.437055 }
+        <Binormal> { -0.700449 -0.576457 -0.407385 }
+      }
+      <Normal> { -0.536088 0.056154 0.842280 }
+    }
+    <Vertex> 5346 {
+      -35.5778579712 -64.2361602783 17.9600639343
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.125596 -0.988133 0.088420 }
+        <Binormal> { -0.873624 -0.152259 -0.460629 }
+      }
+      <Normal> { -0.463942 -0.017457 0.885678 }
+    }
+    <Vertex> 5347 {
+      -36.378490448 -64.6117324829 17.3935375214
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.013007 -0.999844 0.011978 }
+        <Binormal> { -0.183168 -0.014158 -0.982914 }
+      }
+      <Normal> { -0.983062 -0.000458 0.183203 }
+    }
+    <Vertex> 5348 {
+      -29.2781658173 -68.4903411865 20.6281032562
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.319998 -0.947257 0.017471 }
+        <Binormal> { -0.551457 0.201211 0.809005 }
+      }
+      <Normal> { 0.760521 -0.276864 0.587268 }
+    }
+    <Vertex> 5349 {
+      -30.5558986664 -72.0522155762 20.6281032562
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.342274 0.939526 0.011860 }
+        <Binormal> { 0.533936 -0.184196 -0.817466 }
+      }
+      <Normal> { 0.804376 -0.180364 0.566027 }
+    }
+    <Vertex> 5350 {
+      -30.9145450592 -71.507484436 20.0785865784
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.279642 0.956949 -0.077773 }
+        <Binormal> { -0.515089 0.081296 -0.851763 }
+      }
+      <Normal> { 0.822901 -0.229896 -0.519578 }
+    }
+    <Vertex> 5351 {
+      -29.7482376099 -68.40234375 20.0788478851
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.060866 0.953429 -0.295413 }
+        <Binormal> { -0.541580 -0.215594 -0.807404 }
+      }
+      <Normal> { 0.827967 -0.295663 -0.476424 }
+    }
+    <Vertex> 5352 {
+      -29.2781658173 -68.4903411865 20.6281032562
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.319998 -0.947257 0.017471 }
+        <Binormal> { -0.551457 0.201211 0.809005 }
+      }
+      <Normal> { 0.760521 -0.276864 0.587268 }
+    }
+    <Vertex> 5353 {
+      -29.7482376099 -68.40234375 20.0788478851
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.060866 0.953429 -0.295413 }
+        <Binormal> { -0.541580 -0.215594 -0.807404 }
+      }
+      <Normal> { 0.827967 -0.295663 -0.476424 }
+    }
+    <Vertex> 5354 {
+      -28.5866718292 -64.8482666016 20.1032333374
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.248566 -0.966347 0.066252 }
+        <Binormal> { 0.479662 -0.063589 0.872105 }
+      }
+      <Normal> { 0.856624 -0.178259 -0.484146 }
+    }
+    <Vertex> 5355 {
+      -28.0004329681 -64.4766845703 20.6281032562
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.319998 -0.947257 0.017471 }
+        <Binormal> { -0.514907 0.189298 0.832531 }
+      }
+      <Normal> { 0.816492 -0.184698 0.546983 }
+    }
+    <Vertex> 5356 {
+      -29.2781658173 -68.4903411865 20.6281032562
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.319998 -0.947257 0.017471 }
+        <Binormal> { -0.551457 0.201211 0.809005 }
+      }
+      <Normal> { 0.760521 -0.276864 0.587268 }
+    }
+    <Vertex> 5357 {
+      -28.0004329681 -64.4766845703 20.6281032562
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.319998 -0.947257 0.017471 }
+        <Binormal> { -0.514907 0.189298 0.832531 }
+      }
+      <Normal> { 0.816492 -0.184698 0.546983 }
+    }
+    <Vertex> 5358 {
+      -28.6547641754 -64.1245651245 20.3859901428
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.385660 -0.922182 -0.029090 }
+        <Binormal> { -0.870277 0.373931 -0.316295 }
+      }
+      <Normal> { -0.322642 0.048647 0.945250 }
+    }
+    <Vertex> 5359 {
+      -29.8947029114 -68.5783462524 20.3729724884
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.293263 0.923103 -0.248752 }
+        <Binormal> { 0.877721 0.362985 0.312236 }
+      }
+      <Normal> { -0.373150 0.109867 0.921232 }
+    }
+    <Vertex> 5360 {
+      -29.2781658173 -68.4903411865 20.6281032562
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.319998 -0.947257 0.017471 }
+        <Binormal> { -0.551457 0.201211 0.809005 }
+      }
+      <Normal> { 0.760521 -0.276864 0.587268 }
+    }
+    <Vertex> 5361 {
+      -29.8947029114 -68.5783462524 20.3729724884
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.293263 0.923103 -0.248752 }
+        <Binormal> { 0.877721 0.362985 0.312236 }
+      }
+      <Normal> { -0.373150 0.109867 0.921232 }
+    }
+    <Vertex> 5362 {
+      -31.13463974 -72.5480728149 20.4251403809
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.909129 0.072040 -0.410237 }
+        <Binormal> { 0.114827 0.988789 -0.080831 }
+      }
+      <Normal> { -0.354198 0.116977 0.927793 }
+    }
+    <Vertex> 5363 {
+      -30.5558986664 -72.0522155762 20.6281032562
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.342274 0.939526 0.011860 }
+        <Binormal> { 0.533936 -0.184196 -0.817466 }
+      }
+      <Normal> { 0.804376 -0.180364 0.566027 }
+    }
+    <Vertex> 5364 {
+      -36.378490448 -75.0858459473 18.9587535858
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.313309 0.797243 -0.515985 }
+        <Binormal> { -0.710716 0.009554 0.446312 }
+      }
+      <Normal> { -0.531083 -0.073122 -0.844142 }
+    }
+    <Vertex> 5365 {
+      -36.378490448 -72.0522155762 17.7067394257
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.003828 -0.912694 0.408625 }
+        <Binormal> { -0.035072 -0.407477 -0.910459 }
+      }
+      <Normal> { -0.997711 -0.038301 0.055574 }
+    }
+    <Vertex> 5366 {
+      -35.841381073 -71.8590393066 17.0761871338
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.086056 -0.889330 0.449095 }
+        <Binormal> { 0.480437 -0.356389 -0.797809 }
+      }
+      <Normal> { -0.876034 -0.217597 -0.430342 }
+    }
+    <Vertex> 5367 {
+      -35.8697090149 -74.4381942749 18.6451129913
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.772339 -0.494843 0.398274 }
+        <Binormal> { 0.529261 0.311220 -0.639670 }
+      }
+      <Normal> { -0.549699 -0.476028 -0.686422 }
+    }
+    <Vertex> 5368 {
+      -36.378490448 -75.0858459473 18.9587535858
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.313309 0.797243 -0.515985 }
+        <Binormal> { -0.710716 0.009554 0.446312 }
+      }
+      <Normal> { -0.531083 -0.073122 -0.844142 }
+    }
+    <Vertex> 5369 {
+      -35.8697090149 -74.4381942749 18.6451129913
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.772339 -0.494843 0.398274 }
+        <Binormal> { 0.529261 0.311220 -0.639670 }
+      }
+      <Normal> { -0.549699 -0.476028 -0.686422 }
+    }
+    <Vertex> 5370 {
+      -35.2525749207 -76.1308135986 19.6838378906
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.437998 0.759498 -0.480958 }
+        <Binormal> { -0.851718 -0.185139 0.483281 }
+      }
+      <Normal> { -0.242256 -0.683309 -0.688711 }
+    }
+    <Vertex> 5371 {
+      -35.7039070129 -77.162979126 20.2107658386
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.313309 0.797243 -0.515985 }
+        <Binormal> { -0.688396 -0.524193 -0.391927 }
+      }
+      <Normal> { 0.485031 0.016724 -0.874294 }
+    }
+    <Vertex> 5372 {
+      -36.378490448 -75.0858459473 18.9587535858
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.313309 0.797243 -0.515985 }
+        <Binormal> { -0.710716 0.009554 0.446312 }
+      }
+      <Normal> { -0.531083 -0.073122 -0.844142 }
+    }
+    <Vertex> 5373 {
+      -35.7039070129 -77.162979126 20.2107658386
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.313309 0.797243 -0.515985 }
+        <Binormal> { -0.688396 -0.524193 -0.391927 }
+      }
+      <Normal> { 0.485031 0.016724 -0.874294 }
+    }
+    <Vertex> 5374 {
+      -35.3430252075 -77.3430252075 20.0990638733
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.892570 0.438128 -0.106598 }
+        <Binormal> { 0.265693 -0.421169 0.493661 }
+      }
+      <Normal> { 0.464949 0.781304 0.416333 }
+    }
+    <Vertex> 5375 {
+      -36.0074272156 -75.9290618896 19.3296279907
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.274498 -0.886982 0.371369 }
+        <Binormal> { -0.956248 -0.288104 0.018701 }
+      }
+      <Normal> { -0.103275 0.401837 0.909848 }
+    }
+    <Vertex> 5376 {
+      -36.378490448 -75.0858459473 18.9587535858
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.313309 0.797243 -0.515985 }
+        <Binormal> { -0.710716 0.009554 0.446312 }
+      }
+      <Normal> { -0.531083 -0.073122 -0.844142 }
+    }
+    <Vertex> 5377 {
+      -36.0074272156 -75.9290618896 19.3296279907
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.274498 -0.886982 0.371369 }
+        <Binormal> { -0.956248 -0.288104 0.018701 }
+      }
+      <Normal> { -0.103275 0.401837 0.909848 }
+    }
+    <Vertex> 5378 {
+      -35.9460601807 -72.5480728149 18.2341156006
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.074022 -0.918321 0.388854 }
+        <Binormal> { -0.862436 -0.248972 -0.423802 }
+      }
+      <Normal> { -0.477065 0.193152 0.857356 }
+    }
+    <Vertex> 5379 {
+      -36.378490448 -72.0522155762 17.7067394257
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.003828 -0.912694 0.408625 }
+        <Binormal> { -0.035072 -0.407477 -0.910459 }
+      }
+      <Normal> { -0.997711 -0.038301 0.055574 }
+    }
+    <Vertex> 5380 {
+      -33.6801490784 -77.8553619385 20.6281032562
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.365897 -0.803864 0.468958 }
+        <Binormal> { 0.847302 0.433792 0.082489 }
+      }
+      <Normal> { 0.161779 -0.129978 -0.978210 }
+    }
+    <Vertex> 5381 {
+      -35.7039070129 -77.162979126 20.2107658386
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.901590 -0.378076 0.210223 }
+        <Binormal> { 0.327034 0.890220 0.198457 }
+      }
+      <Normal> { 0.485031 0.016724 -0.874294 }
+    }
+    <Vertex> 5382 {
+      -35.2525749207 -76.1308135986 19.6838378906
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.998827 -0.024342 0.041867 }
+        <Binormal> { 0.045373 0.677761 -0.688405 }
+      }
+      <Normal> { -0.242256 -0.683309 -0.688711 }
+    }
+    <Vertex> 5383 {
+      -33.5034637451 -76.695022583 20.0300769806
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.628582 0.713704 -0.309048 }
+        <Binormal> { -0.678136 0.356259 -0.556548 }
+      }
+      <Normal> { 0.084964 -0.788934 -0.608539 }
+    }
+    <Vertex> 5384 {
+      -33.6801490784 -77.8553619385 20.6281032562
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.365897 -0.803864 0.468958 }
+        <Binormal> { 0.847302 0.433792 0.082489 }
+      }
+      <Normal> { 0.161779 -0.129978 -0.978210 }
+    }
+    <Vertex> 5385 {
+      -33.5034637451 -76.695022583 20.0300769806
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.628582 0.713704 -0.309048 }
+        <Binormal> { -0.678136 0.356259 -0.556548 }
+      }
+      <Normal> { 0.084964 -0.788934 -0.608539 }
+    }
+    <Vertex> 5386 {
+      -31.6522140503 -75.8817977905 19.9583129883
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.827529 -0.544501 0.136800 }
+        <Binormal> { 0.298958 -0.258142 0.780980 }
+      }
+      <Normal> { 0.790246 -0.423780 -0.442579 }
+    }
+    <Vertex> 5387 {
+      -31.6563949585 -77.162979126 20.6281032562
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.365891 -0.803866 0.468959 }
+        <Binormal> { 0.795398 0.529671 0.287350 }
+      }
+      <Normal> { 0.503037 -0.319834 -0.802881 }
+    }
+    <Vertex> 5388 {
+      -33.6801490784 -77.8553619385 20.6281032562
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.365897 -0.803864 0.468958 }
+        <Binormal> { 0.847302 0.433792 0.082489 }
+      }
+      <Normal> { 0.161779 -0.129978 -0.978210 }
+    }
+    <Vertex> 5389 {
+      -31.6563949585 -77.162979126 20.6281032562
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.365891 -0.803866 0.468959 }
+        <Binormal> { 0.795398 0.529671 0.287350 }
+      }
+      <Normal> { 0.503037 -0.319834 -0.802881 }
+    }
+    <Vertex> 5390 {
+      -32.1617736816 -77.3430252075 20.6555137634
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.945687 0.325029 -0.005693 }
+        <Binormal> { 0.301826 -0.872086 0.347751 }
+      }
+      <Normal> { -0.264626 0.276772 0.923765 }
+    }
+    <Vertex> 5391 {
+      -33.7776870728 -78.2176055908 20.5816421509
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.026780 -0.975935 0.216412 }
+        <Binormal> { -0.277301 -0.000166 -0.035066 }
+      }
+      <Normal> { -0.008545 0.997986 0.062838 }
+    }
+    <Vertex> 5392 {
+      -33.6801490784 -77.8553619385 20.6281032562
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.365897 -0.803864 0.468958 }
+        <Binormal> { 0.847302 0.433792 0.082489 }
+      }
+      <Normal> { 0.161779 -0.129978 -0.978210 }
+    }
+    <Vertex> 5393 {
+      -33.7776870728 -78.2176055908 20.5816421509
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.026780 -0.975935 0.216412 }
+        <Binormal> { -0.277301 -0.000166 -0.035066 }
+      }
+      <Normal> { -0.008545 0.997986 0.062838 }
+    }
+    <Vertex> 5394 {
+      -35.3430252075 -77.3430252075 20.0990638733
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.886252 -0.431513 0.168387 }
+        <Binormal> { -0.311215 -0.290685 0.893064 }
+      }
+      <Normal> { 0.464949 0.781304 0.416333 }
+    }
+    <Vertex> 5395 {
+      -35.7039070129 -77.162979126 20.2107658386
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.901590 -0.378076 0.210223 }
+        <Binormal> { 0.327034 0.890220 0.198457 }
+      }
+      <Normal> { 0.485031 0.016724 -0.874294 }
+    }
+    <Vertex> 5396 {
+      -30.9818115234 -75.0858459473 20.6281032562
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.144433 -0.989172 0.026019 }
+        <Binormal> { -0.497641 0.095327 0.861668 }
+      }
+      <Normal> { 0.850887 -0.138432 0.506729 }
+    }
+    <Vertex> 5397 {
+      -31.6563949585 -77.162979126 20.6281032562
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.306603 0.950832 0.043740 }
+        <Binormal> { -0.749415 0.268168 -0.576365 }
+      }
+      <Normal> { 0.503037 -0.319834 -0.802881 }
+    }
+    <Vertex> 5398 {
+      -31.6522140503 -75.8817977905 19.9583129883
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.150988 0.987417 -0.047014 }
+        <Binormal> { -0.456934 0.029672 -0.844288 }
+      }
+      <Normal> { 0.790246 -0.423780 -0.442579 }
+    }
+    <Vertex> 5399 {
+      -31.275800705 -74.0470809937 20.1753520966
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.050341 0.979671 -0.194195 }
+        <Binormal> { -0.499565 -0.192167 -0.839942 }
+      }
+      <Normal> { 0.864681 -0.142247 -0.481735 }
+    }
+    <Vertex> 5400 {
+      -30.9818115234 -75.0858459473 20.6281032562
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.144433 -0.989172 0.026019 }
+        <Binormal> { -0.497641 0.095327 0.861668 }
+      }
+      <Normal> { 0.850887 -0.138432 0.506729 }
+    }
+    <Vertex> 5401 {
+      -31.275800705 -74.0470809937 20.1753520966
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.050341 0.979671 -0.194195 }
+        <Binormal> { -0.499565 -0.192167 -0.839942 }
+      }
+      <Normal> { 0.864681 -0.142247 -0.481735 }
+    }
+    <Vertex> 5402 {
+      -30.9145450592 -71.507484436 20.0785865784
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.074128 -0.993822 0.082596 }
+        <Binormal> { 0.535356 0.029453 0.834859 }
+      }
+      <Normal> { 0.822901 -0.229896 -0.519578 }
+    }
+    <Vertex> 5403 {
+      -30.5558986664 -72.0522155762 20.6281032562
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.144433 -0.989173 0.026019 }
+        <Binormal> { -0.555205 0.102682 0.821718 }
+      }
+      <Normal> { 0.804376 -0.180364 0.566027 }
+    }
+    <Vertex> 5404 {
+      -30.9818115234 -75.0858459473 20.6281032562
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.144433 -0.989172 0.026019 }
+        <Binormal> { -0.497641 0.095327 0.861668 }
+      }
+      <Normal> { 0.850887 -0.138432 0.506729 }
+    }
+    <Vertex> 5405 {
+      -30.5558986664 -72.0522155762 20.6281032562
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.144433 -0.989173 0.026019 }
+        <Binormal> { -0.555205 0.102682 0.821718 }
+      }
+      <Normal> { 0.804376 -0.180364 0.566027 }
+    }
+    <Vertex> 5406 {
+      -31.13463974 -72.5480728149 20.4251403809
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.212873 -0.976613 -0.030202 }
+        <Binormal> { -0.902562 0.208199 -0.370816 }
+      }
+      <Normal> { -0.354198 0.116977 0.927793 }
+    }
+    <Vertex> 5407 {
+      -31.547952652 -75.9290618896 20.5816421509
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.863914 -0.481241 -0.148524 }
+        <Binormal> { -0.448417 0.869221 -0.208120 }
+      }
+      <Normal> { -0.225318 0.115390 0.967406 }
+    }
+    <Vertex> 5408 {
+      -30.9818115234 -75.0858459473 20.6281032562
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.144433 -0.989172 0.026019 }
+        <Binormal> { -0.497641 0.095327 0.861668 }
+      }
+      <Normal> { 0.850887 -0.138432 0.506729 }
+    }
+    <Vertex> 5409 {
+      -31.547952652 -75.9290618896 20.5816421509
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.863914 -0.481241 -0.148524 }
+        <Binormal> { -0.448417 0.869221 -0.208120 }
+      }
+      <Normal> { -0.225318 0.115390 0.967406 }
+    }
+    <Vertex> 5410 {
+      -32.1617736816 -77.3430252075 20.6555137634
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.981336 -0.169564 -0.090703 }
+        <Binormal> { -0.131533 0.930526 -0.316478 }
+      }
+      <Normal> { -0.264626 0.276772 0.923765 }
+    }
+    <Vertex> 5411 {
+      -31.6563949585 -77.162979126 20.6281032562
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.306603 0.950832 0.043740 }
+        <Binormal> { -0.749415 0.268168 -0.576365 }
+      }
+      <Normal> { 0.503037 -0.319834 -0.802881 }
+    }
+    <Vertex> 5412 {
+      -31.8464584351 -59.2335319519 19.3832988739
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.909855 -0.321448 0.262367 }
+        <Binormal> { -0.300826 -0.946473 -0.116379 }
+      }
+      <Normal> { -0.295358 -0.023560 0.955077 }
+    }
+    <Vertex> 5413 {
+      -28.2414512634 -59.2914199829 20.4250411987
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.936917 -0.222254 -0.269794 }
+        <Binormal> { -0.213500 0.974938 -0.061721 }
+      }
+      <Normal> { -0.283364 -0.001343 0.958983 }
+    }
+    <Vertex> 5414 {
+      -29.3093624115 -56.9753570557 20.1683120728
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.800499 0.561621 -0.209243 }
+        <Binormal> { 0.569074 0.820340 0.024739 }
+      }
+      <Normal> { -0.226051 0.127689 0.965697 }
+    }
+    <Vertex> 5415 {
+      -31.8789730072 -55.9559631348 19.4854335785
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.385805 0.918983 -0.081393 }
+        <Binormal> { 0.875995 0.385278 0.197810 }
+      }
+      <Normal> { -0.294992 0.189947 0.936399 }
+    }
+    <Vertex> 5416 {
+      -31.8464584351 -59.2335319519 19.3832988739
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.909855 -0.321448 0.262367 }
+        <Binormal> { -0.300826 -0.946473 -0.116379 }
+      }
+      <Normal> { -0.295358 -0.023560 0.955077 }
+    }
+    <Vertex> 5417 {
+      -31.8789730072 -55.9559631348 19.4854335785
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.385805 0.918983 -0.081393 }
+        <Binormal> { 0.875995 0.385278 0.197810 }
+      }
+      <Normal> { -0.294992 0.189947 0.936399 }
+    }
+    <Vertex> 5418 {
+      -34.4991531372 -57.4138221741 18.6374549866
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.939399 -0.195443 0.281657 }
+        <Binormal> { -0.212041 -0.964304 0.038078 }
+      }
+      <Normal> { -0.408643 0.125553 0.903989 }
+    }
+    <Vertex> 5419 {
+      -35.5164909363 -59.7377891541 18.2334213257
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.909855 -0.321447 0.262367 }
+        <Binormal> { -0.287142 -0.938586 -0.154169 }
+      }
+      <Normal> { -0.398755 -0.028565 0.916593 }
+    }
+    <Vertex> 5420 {
+      -31.8464584351 -59.2335319519 19.3832988739
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.909855 -0.321448 0.262367 }
+        <Binormal> { -0.300826 -0.946473 -0.116379 }
+      }
+      <Normal> { -0.295358 -0.023560 0.955077 }
+    }
+    <Vertex> 5421 {
+      -35.5164909363 -59.7377891541 18.2334213257
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.909855 -0.321447 0.262367 }
+        <Binormal> { -0.287142 -0.938586 -0.154169 }
+      }
+      <Normal> { -0.398755 -0.028565 0.916593 }
+    }
+    <Vertex> 5422 {
+      -35.5778579712 -64.2361602783 17.9600639343
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.811248 0.487327 0.323094 }
+        <Binormal> { 0.437255 -0.868401 0.211930 }
+      }
+      <Normal> { -0.463942 -0.017457 0.885678 }
+    }
+    <Vertex> 5423 {
+      -32.0919265747 -64.0590820313 19.2270965576
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.222770 -0.970507 -0.092136 }
+        <Binormal> { -0.913341 0.240715 -0.327250 }
+      }
+      <Normal> { -0.333720 0.015137 0.942534 }
+    }
+    <Vertex> 5424 {
+      -31.8464584351 -59.2335319519 19.3832988739
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.909855 -0.321448 0.262367 }
+        <Binormal> { -0.300826 -0.946473 -0.116379 }
+      }
+      <Normal> { -0.295358 -0.023560 0.955077 }
+    }
+    <Vertex> 5425 {
+      -32.0919265747 -64.0590820313 19.2270965576
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.222770 -0.970507 -0.092136 }
+        <Binormal> { -0.913341 0.240715 -0.327250 }
+      }
+      <Normal> { -0.333720 0.015137 0.942534 }
+    }
+    <Vertex> 5426 {
+      -28.6547641754 -64.1245651245 20.3859901428
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.906836 0.289835 -0.306013 }
+        <Binormal> { 0.288853 0.955919 0.049398 }
+      }
+      <Normal> { -0.322642 0.048647 0.945250 }
+    }
+    <Vertex> 5427 {
+      -28.2414512634 -59.2914199829 20.4250411987
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.936917 -0.222254 -0.269794 }
+        <Binormal> { -0.213500 0.974938 -0.061721 }
+      }
+      <Normal> { -0.283364 -0.001343 0.958983 }
+    }
+    <Vertex> 5428 {
+      -32.8283309937 -68.607673645 19.1750278473
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.748696 -0.555232 0.362177 }
+        <Binormal> { -0.541309 -0.827392 -0.149426 }
+      }
+      <Normal> { -0.379864 0.082125 0.921354 }
+    }
+    <Vertex> 5429 {
+      -29.8947029114 -68.5783462524 20.3729724884
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.895640 -0.298840 -0.329430 }
+        <Binormal> { -0.239107 0.948019 -0.209913 }
+      }
+      <Normal> { -0.373150 0.109867 0.921232 }
+    }
+    <Vertex> 5430 {
+      -28.6547641754 -64.1245651245 20.3859901428
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.739333 0.601601 -0.302427 }
+        <Binormal> { 0.583376 0.796430 0.158136 }
+      }
+      <Normal> { -0.322642 0.048647 0.945250 }
+    }
+    <Vertex> 5431 {
+      -32.0919265747 -64.0590820313 19.2270965576
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.213300 0.969722 -0.118926 }
+        <Binormal> { 0.915795 0.240730 0.320387 }
+      }
+      <Normal> { -0.333720 0.015137 0.942534 }
+    }
+    <Vertex> 5432 {
+      -32.8283309937 -68.607673645 19.1750278473
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.748696 -0.555232 0.362177 }
+        <Binormal> { -0.541309 -0.827392 -0.149426 }
+      }
+      <Normal> { -0.379864 0.082125 0.921354 }
+    }
+    <Vertex> 5433 {
+      -32.0919265747 -64.0590820313 19.2270965576
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.213300 0.969722 -0.118926 }
+        <Binormal> { 0.915795 0.240730 0.320387 }
+      }
+      <Normal> { -0.333720 0.015137 0.942534 }
+    }
+    <Vertex> 5434 {
+      -35.5778579712 -64.2361602783 17.9600639343
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.746098 -0.577752 0.330969 }
+        <Binormal> { -0.505925 -0.814353 -0.281068 }
+      }
+      <Normal> { -0.463942 -0.017457 0.885678 }
+    }
+    <Vertex> 5435 {
+      -35.7619590759 -68.5783462524 17.8689460754
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.748696 -0.555231 0.362177 }
+        <Binormal> { -0.487998 -0.824771 -0.255611 }
+      }
+      <Normal> { -0.536088 0.056154 0.842280 }
+    }
+    <Vertex> 5436 {
+      -32.8283309937 -68.607673645 19.1750278473
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.748696 -0.555232 0.362177 }
+        <Binormal> { -0.541309 -0.827392 -0.149426 }
+      }
+      <Normal> { -0.379864 0.082125 0.921354 }
+    }
+    <Vertex> 5437 {
+      -35.7619590759 -68.5783462524 17.8689460754
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.748696 -0.555231 0.362177 }
+        <Binormal> { -0.487998 -0.824771 -0.255611 }
+      }
+      <Normal> { -0.536088 0.056154 0.842280 }
+    }
+    <Vertex> 5438 {
+      -35.9460601807 -72.5480728149 18.2341156006
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.853955 0.362984 0.372833 }
+        <Binormal> { 0.239193 -0.910009 0.338110 }
+      }
+      <Normal> { -0.477065 0.193152 0.857356 }
+    }
+    <Vertex> 5439 {
+      -33.5647315979 -72.7133560181 19.3836975098
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.309780 -0.950688 -0.015099 }
+        <Binormal> { -0.869006 0.289493 -0.398516 }
+      }
+      <Normal> { -0.368908 0.154302 0.916532 }
+    }
+    <Vertex> 5440 {
+      -32.8283309937 -68.607673645 19.1750278473
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.748696 -0.555232 0.362177 }
+        <Binormal> { -0.541309 -0.827392 -0.149426 }
+      }
+      <Normal> { -0.379864 0.082125 0.921354 }
+    }
+    <Vertex> 5441 {
+      -33.5647315979 -72.7133560181 19.3836975098
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.309780 -0.950688 -0.015099 }
+        <Binormal> { -0.869006 0.289493 -0.398516 }
+      }
+      <Normal> { -0.368908 0.154302 0.916532 }
+    }
+    <Vertex> 5442 {
+      -31.13463974 -72.5480728149 20.4251403809
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.909129 0.072040 -0.410237 }
+        <Binormal> { 0.114827 0.988789 -0.080831 }
+      }
+      <Normal> { -0.354198 0.116977 0.927793 }
+    }
+    <Vertex> 5443 {
+      -29.8947029114 -68.5783462524 20.3729724884
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.895640 -0.298840 -0.329430 }
+        <Binormal> { -0.239107 0.948019 -0.209913 }
+      }
+      <Normal> { -0.373150 0.109867 0.921232 }
+    }
+    <Vertex> 5444 {
+      -33.8101997375 -76.210144043 20.0097026825
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.781926 -0.492810 0.381745 }
+        <Binormal> { -0.548780 -0.834067 0.047332 }
+      }
+      <Normal> { -0.271920 0.231910 0.933927 }
+    }
+    <Vertex> 5445 {
+      -31.547952652 -75.9290618896 20.5816421509
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.917757 -0.338002 -0.208510 }
+        <Binormal> { -0.302925 0.934825 -0.182058 }
+      }
+      <Normal> { -0.225318 0.115390 0.967406 }
+    }
+    <Vertex> 5446 {
+      -31.13463974 -72.5480728149 20.4251403809
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.761573 0.522417 -0.383519 }
+        <Binormal> { 0.529558 0.842424 0.095952 }
+      }
+      <Normal> { -0.354198 0.116977 0.927793 }
+    }
+    <Vertex> 5447 {
+      -33.5647315979 -72.7133560181 19.3836975098
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.251233 0.917611 -0.308013 }
+        <Binormal> { 0.888547 0.343892 0.299748 }
+      }
+      <Normal> { -0.368908 0.154302 0.916532 }
+    }
+    <Vertex> 5448 {
+      -33.8101997375 -76.210144043 20.0097026825
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.781926 -0.492810 0.381745 }
+        <Binormal> { -0.548780 -0.834067 0.047332 }
+      }
+      <Normal> { -0.271920 0.231910 0.933927 }
+    }
+    <Vertex> 5449 {
+      -33.5647315979 -72.7133560181 19.3836975098
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.251233 0.917611 -0.308013 }
+        <Binormal> { 0.888547 0.343892 0.299748 }
+      }
+      <Normal> { -0.368908 0.154302 0.916532 }
+    }
+    <Vertex> 5450 {
+      -35.9460601807 -72.5480728149 18.2341156006
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.682106 -0.620723 0.386566 }
+        <Binormal> { -0.606847 -0.769225 -0.164376 }
+      }
+      <Normal> { -0.477065 0.193152 0.857356 }
+    }
+    <Vertex> 5451 {
+      -36.0074272156 -75.9290618896 19.3296279907
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.781926 -0.492810 0.381745 }
+        <Binormal> { -0.601782 -0.750859 0.263312 }
+      }
+      <Normal> { -0.103275 0.401837 0.909848 }
+    }
+    <Vertex> 5452 {
+      -33.8101997375 -76.210144043 20.0097026825
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.781926 -0.492810 0.381745 }
+        <Binormal> { -0.548780 -0.834067 0.047332 }
+      }
+      <Normal> { -0.271920 0.231910 0.933927 }
+    }
+    <Vertex> 5453 {
+      -36.0074272156 -75.9290618896 19.3296279907
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.781926 -0.492810 0.381745 }
+        <Binormal> { -0.601782 -0.750859 0.263312 }
+      }
+      <Normal> { -0.103275 0.401837 0.909848 }
+    }
+    <Vertex> 5454 {
+      -35.3430252075 -77.3430252075 20.0990638733
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.892570 0.438128 -0.106598 }
+        <Binormal> { 0.265693 -0.421169 0.493661 }
+      }
+      <Normal> { 0.464949 0.781304 0.416333 }
+    }
+    <Vertex> 5455 {
+      -33.7776870728 -78.2176055908 20.5816421509
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.026780 -0.975935 0.216412 }
+        <Binormal> { -0.277301 -0.000166 -0.035066 }
+      }
+      <Normal> { -0.008545 0.997986 0.062838 }
+    }
+    <Vertex> 5456 {
+      -33.8101997375 -76.210144043 20.0097026825
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.781926 -0.492810 0.381745 }
+        <Binormal> { -0.548780 -0.834067 0.047332 }
+      }
+      <Normal> { -0.271920 0.231910 0.933927 }
+    }
+    <Vertex> 5457 {
+      -33.7776870728 -78.2176055908 20.5816421509
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.026780 -0.975935 0.216412 }
+        <Binormal> { -0.277301 -0.000166 -0.035066 }
+      }
+      <Normal> { -0.008545 0.997986 0.062838 }
+    }
+    <Vertex> 5458 {
+      -32.1617736816 -77.3430252075 20.6555137634
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.981336 -0.169564 -0.090703 }
+        <Binormal> { -0.131533 0.930526 -0.316478 }
+      }
+      <Normal> { -0.264626 0.276772 0.923765 }
+    }
+    <Vertex> 5459 {
+      -31.547952652 -75.9290618896 20.5816421509
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.917757 -0.338002 -0.208510 }
+        <Binormal> { -0.302925 0.934825 -0.182058 }
+      }
+      <Normal> { -0.225318 0.115390 0.967406 }
+    }
+    <Vertex> 5460 {
+      -31.5939483643 -73.1793441772 14.6008872986
+      <UV>  {
+        0.833333 0.333333
+        <Tangent> { -0.493288 -0.141798 0.858231 }
+        <Binormal> { 0.081248 0.974705 0.207741 }
+      }
+      <Normal> { 0.860317 -0.173833 0.479141 }
+    }
+    <Vertex> 5461 {
+      -30.7828865051 -73.7660140991 13.7712898254
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { -0.766782 -0.168410 0.619422 }
+        <Binormal> { -0.081417 0.965000 0.161581 }
+      }
+      <Normal> { 0.479507 -0.105411 0.871151 }
+    }
+    <Vertex> 5462 {
+      -30.257068634 -71.3422012329 14.0072135925
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.641737 -0.593145 0.486161 }
+        <Binormal> { -0.349658 0.764551 0.471245 }
+      }
+      <Normal> { 0.480148 -0.290536 0.827631 }
+    }
+    <Vertex> 5463 {
+      -31.176076889 -71.1955413818 15.1830177307
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.455629 -0.166636 0.874434 }
+        <Binormal> { 0.250397 0.917399 0.305295 }
+      }
+      <Normal> { 0.830500 -0.366314 0.419599 }
+    }
+    <Vertex> 5464 {
+      -31.5939483643 -73.1793441772 14.6008872986
+      <UV>  {
+        0.833333 0.333333
+        <Tangent> { -0.493288 -0.141798 0.858231 }
+        <Binormal> { 0.081248 0.974705 0.207741 }
+      }
+      <Normal> { 0.860317 -0.173833 0.479141 }
+    }
+    <Vertex> 5465 {
+      -31.176076889 -71.1955413818 15.1830177307
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.455629 -0.166636 0.874434 }
+        <Binormal> { 0.250397 0.917399 0.305295 }
+      }
+      <Normal> { 0.830500 -0.366314 0.419599 }
+    }
+    <Vertex> 5466 {
+      -31.8001270294 -71.906539917 16.9686164856
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.008525 -0.000000 0.999964 }
+        <Binormal> { 0.179320 0.983595 0.001529 }
+      }
+      <Normal> { 0.983398 -0.179327 0.027314 }
+    }
+    <Vertex> 5467 {
+      -31.6732501984 -73.9615631104 15.1819810867
+      <UV>  {
+        0.750000 0.250000
+        <Tangent> { -0.068578 -0.065740 0.995477 }
+        <Binormal> { 0.041321 0.982880 0.067755 }
+      }
+      <Normal> { 0.971496 -0.056703 0.230079 }
+    }
+    <Vertex> 5468 {
+      -31.5939483643 -73.1793441772 14.6008872986
+      <UV>  {
+        0.833333 0.333333
+        <Tangent> { -0.493288 -0.141798 0.858231 }
+        <Binormal> { 0.081248 0.974705 0.207741 }
+      }
+      <Normal> { 0.860317 -0.173833 0.479141 }
+    }
+    <Vertex> 5469 {
+      -31.6732501984 -73.9615631104 15.1819810867
+      <UV>  {
+        0.750000 0.250000
+        <Tangent> { -0.068578 -0.065740 0.995477 }
+        <Binormal> { 0.041321 0.982880 0.067755 }
+      }
+      <Normal> { 0.971496 -0.056703 0.230079 }
+    }
+    <Vertex> 5470 {
+      -31.3029937744 -76.1607513428 13.8057003021
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.369674 -0.034799 0.928510 }
+        <Binormal> { 0.209123 0.747398 0.111271 }
+      }
+      <Normal> { 0.468398 -0.256905 0.845302 }
+    }
+    <Vertex> 5471 {
+      -30.7828865051 -73.7660140991 13.7712898254
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { -0.766782 -0.168410 0.619422 }
+        <Binormal> { -0.081417 0.965000 0.161581 }
+      }
+      <Normal> { 0.479507 -0.105411 0.871151 }
+    }
+    <Vertex> 5472 {
+      -31.5939483643 -73.1793441772 19.2496433258
+      <UV>  {
+        0.166667 0.333333
+        <Tangent> { 0.264473 0.035885 0.963725 }
+        <Binormal> { 0.114500 0.990951 -0.068321 }
+      }
+      <Normal> { 0.954039 -0.128880 -0.270425 }
+    }
+    <Vertex> 5473 {
+      -31.6732501984 -73.9615631104 18.6685466766
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { 0.016704 0.110188 0.993770 }
+        <Binormal> { 0.041727 0.988166 -0.110268 }
+      }
+      <Normal> { 0.992523 -0.054109 -0.109317 }
+    }
+    <Vertex> 5474 {
+      -31.8001270294 -71.906539917 16.9686164856
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.008525 -0.000000 0.999964 }
+        <Binormal> { 0.179320 0.983595 0.001529 }
+      }
+      <Normal> { 0.983398 -0.179327 0.027314 }
+    }
+    <Vertex> 5475 {
+      -31.2966251373 -71.1955413818 18.8625907898
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { 0.271807 0.122479 0.954526 }
+        <Binormal> { 0.231328 0.954457 -0.188343 }
+      }
+      <Normal> { 0.934507 -0.271828 -0.229743 }
+    }
+    <Vertex> 5476 {
+      -31.5939483643 -73.1793441772 19.2496433258
+      <UV>  {
+        0.166667 0.333333
+        <Tangent> { 0.264473 0.035885 0.963725 }
+        <Binormal> { 0.114500 0.990951 -0.068321 }
+      }
+      <Normal> { 0.954039 -0.128880 -0.270425 }
+    }
+    <Vertex> 5477 {
+      -31.2966251373 -71.1955413818 18.8625907898
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { 0.271807 0.122479 0.954526 }
+        <Binormal> { 0.231328 0.954457 -0.188343 }
+      }
+      <Normal> { 0.934507 -0.271828 -0.229743 }
+    }
+    <Vertex> 5478 {
+      -30.9145450592 -71.507484436 20.0785865784
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.074128 -0.993822 0.082596 }
+        <Binormal> { 0.535356 0.029453 0.834859 }
+      }
+      <Normal> { 0.822901 -0.229896 -0.519578 }
+    }
+    <Vertex> 5479 {
+      -31.275800705 -74.0470809937 20.1753520966
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { 0.418997 -0.131738 0.898380 }
+        <Binormal> { 0.191254 0.978657 0.054310 }
+      }
+      <Normal> { 0.864681 -0.142247 -0.481735 }
+    }
+    <Vertex> 5480 {
+      -31.5939483643 -73.1793441772 19.2496433258
+      <UV>  {
+        0.166667 0.333333
+        <Tangent> { 0.264473 0.035885 0.963725 }
+        <Binormal> { 0.114500 0.990951 -0.068321 }
+      }
+      <Normal> { 0.954039 -0.128880 -0.270425 }
+    }
+    <Vertex> 5481 {
+      -31.275800705 -74.0470809937 20.1753520966
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { 0.418997 -0.131738 0.898380 }
+        <Binormal> { 0.191254 0.978657 0.054310 }
+      }
+      <Normal> { 0.864681 -0.142247 -0.481735 }
+    }
+    <Vertex> 5482 {
+      -31.6522140503 -75.8817977905 19.9583129883
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.139500 0.012867 0.990138 }
+        <Binormal> { 0.413906 0.844193 -0.069285 }
+      }
+      <Normal> { 0.790246 -0.423780 -0.442579 }
+    }
+    <Vertex> 5483 {
+      -31.6732501984 -73.9615631104 18.6685466766
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { 0.016704 0.110188 0.993770 }
+        <Binormal> { 0.041727 0.988166 -0.110268 }
+      }
+      <Normal> { 0.992523 -0.054109 -0.109317 }
+    }
+    <Vertex> 5484 {
+      -29.5922393799 -68.373008728 15.7672195435
+      <UV>  {
+        0.750000 0.250000
+        <Tangent> { -0.478367 -0.044721 0.877021 }
+        <Binormal> { 0.360366 0.900688 0.242488 }
+      }
+      <Normal> { 0.797784 -0.432325 0.420209 }
+    }
+    <Vertex> 5485 {
+      -28.5970687866 -68.373008728 14.5085248947
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { -0.620206 0.000000 0.784439 }
+        <Binormal> { 0.275979 0.903541 0.218199 }
+      }
+      <Normal> { 0.557146 -0.351817 0.752159 }
+    }
+    <Vertex> 5486 {
+      -27.1226387024 -64.9619445801 14.8186845779
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.639256 -0.642426 0.422658 }
+        <Binormal> { -0.437744 0.755872 0.486826 }
+      }
+      <Normal> { 0.632344 -0.126072 0.764336 }
+    }
+    <Vertex> 5487 {
+      -28.1479415894 -64.9721298218 16.0598373413
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.519045 -0.003234 0.854741 }
+        <Binormal> { 0.147904 0.984059 0.093538 }
+      }
+      <Normal> { 0.857295 -0.174871 0.484146 }
+    }
+    <Vertex> 5488 {
+      -29.5922393799 -68.373008728 15.7672195435
+      <UV>  {
+        0.750000 0.250000
+        <Tangent> { -0.478367 -0.044721 0.877021 }
+        <Binormal> { 0.360366 0.900688 0.242488 }
+      }
+      <Normal> { 0.797784 -0.432325 0.420209 }
+    }
+    <Vertex> 5489 {
+      -28.1479415894 -64.9721298218 16.0598373413
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.519045 -0.003234 0.854741 }
+        <Binormal> { 0.147904 0.984059 0.093538 }
+      }
+      <Normal> { 0.857295 -0.174871 0.484146 }
+    }
+    <Vertex> 5490 {
+      -28.7572536469 -64.9721298218 17.5104999542
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.197046 -0.000000 0.980394 }
+        <Binormal> { 0.192895 0.980403 0.038770 }
+      }
+      <Normal> { 0.962218 -0.196753 0.188025 }
+    }
+    <Vertex> 5491 {
+      -30.0810031891 -68.373008728 17.3154220581
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.153870 -0.000000 0.988091 }
+        <Binormal> { 0.404319 0.912284 0.062963 }
+      }
+      <Normal> { 0.903989 -0.409192 0.123875 }
+    }
+    <Vertex> 5492 {
+      -29.5922393799 -68.373008728 15.7672195435
+      <UV>  {
+        0.750000 0.250000
+        <Tangent> { -0.478367 -0.044721 0.877021 }
+        <Binormal> { 0.360366 0.900688 0.242488 }
+      }
+      <Normal> { 0.797784 -0.432325 0.420209 }
+    }
+    <Vertex> 5493 {
+      -30.0810031891 -68.373008728 17.3154220581
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.153870 -0.000000 0.988091 }
+        <Binormal> { 0.404319 0.912284 0.062963 }
+      }
+      <Normal> { 0.903989 -0.409192 0.123875 }
+    }
+    <Vertex> 5494 {
+      -31.8001270294 -71.906539917 16.9686164856
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.088602 -0.000000 0.996067 }
+        <Binormal> { 0.178621 0.981950 0.015889 }
+      }
+      <Normal> { 0.983398 -0.179327 0.027314 }
+    }
+    <Vertex> 5495 {
+      -31.176076889 -71.1955413818 15.1830177307
+      <UV>  {
+        0.750000 0.000000
+        <Tangent> { -0.455629 -0.166636 0.874434 }
+        <Binormal> { 0.250397 0.917399 0.305295 }
+      }
+      <Normal> { 0.830500 -0.366314 0.419599 }
+    }
+    <Vertex> 5496 {
+      -29.5922393799 -68.373008728 15.7672195435
+      <UV>  {
+        0.750000 0.250000
+        <Tangent> { -0.478367 -0.044721 0.877021 }
+        <Binormal> { 0.360366 0.900688 0.242488 }
+      }
+      <Normal> { 0.797784 -0.432325 0.420209 }
+    }
+    <Vertex> 5497 {
+      -31.176076889 -71.1955413818 15.1830177307
+      <UV>  {
+        0.750000 0.000000
+        <Tangent> { -0.455629 -0.166636 0.874434 }
+        <Binormal> { 0.250397 0.917399 0.305295 }
+      }
+      <Normal> { 0.830500 -0.366314 0.419599 }
+    }
+    <Vertex> 5498 {
+      -30.257068634 -71.3422012329 14.0072135925
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.617401 0.047304 0.785225 }
+        <Binormal> { 0.267286 0.888004 0.156664 }
+      }
+      <Normal> { 0.480148 -0.290536 0.827631 }
+    }
+    <Vertex> 5499 {
+      -28.5970687866 -68.373008728 14.5085248947
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { -0.620206 0.000000 0.784439 }
+        <Binormal> { 0.275979 0.903541 0.218199 }
+      }
+      <Normal> { 0.557146 -0.351817 0.752159 }
+    }
+    <Vertex> 5500 {
+      -30.074426651 -68.373008728 18.8636245728
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { 0.151421 0.040830 0.987626 }
+        <Binormal> { 0.351603 0.931475 -0.092415 }
+      }
+      <Normal> { 0.921903 -0.361736 -0.138554 }
+    }
+    <Vertex> 5501 {
+      -30.0810031891 -68.373008728 17.3154220581
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.153870 -0.000000 0.988091 }
+        <Binormal> { 0.404319 0.912284 0.062963 }
+      }
+      <Normal> { 0.903989 -0.409192 0.123875 }
+    }
+    <Vertex> 5502 {
+      -28.7572536469 -64.9721298218 17.5104999542
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.197046 -0.000000 0.980394 }
+        <Binormal> { 0.192895 0.980403 0.038770 }
+      }
+      <Normal> { 0.962218 -0.196753 0.188025 }
+    }
+    <Vertex> 5503 {
+      -28.871219635 -64.9721298218 18.9611644745
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { 0.065576 0.047615 0.996711 }
+        <Binormal> { 0.194299 0.977716 -0.059491 }
+      }
+      <Normal> { 0.973907 -0.200049 -0.106937 }
+    }
+    <Vertex> 5504 {
+      -30.074426651 -68.373008728 18.8636245728
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { 0.151421 0.040830 0.987626 }
+        <Binormal> { 0.351603 0.931475 -0.092415 }
+      }
+      <Normal> { 0.921903 -0.361736 -0.138554 }
+    }
+    <Vertex> 5505 {
+      -28.871219635 -64.9721298218 18.9611644745
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { 0.065576 0.047615 0.996711 }
+        <Binormal> { 0.194299 0.977716 -0.059491 }
+      }
+      <Normal> { 0.973907 -0.200049 -0.106937 }
+    }
+    <Vertex> 5506 {
+      -28.5866718292 -64.8482666016 20.1032333374
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.248566 -0.966347 0.066252 }
+        <Binormal> { 0.479662 -0.063589 0.872105 }
+      }
+      <Normal> { 0.856624 -0.178259 -0.484146 }
+    }
+    <Vertex> 5507 {
+      -29.7482376099 -68.40234375 20.0788478851
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { 0.259172 -0.023308 0.965550 }
+        <Binormal> { 0.296582 0.922919 -0.057329 }
+      }
+      <Normal> { 0.827967 -0.295663 -0.476424 }
+    }
+    <Vertex> 5508 {
+      -30.074426651 -68.373008728 18.8636245728
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { 0.151421 0.040830 0.987626 }
+        <Binormal> { 0.351603 0.931475 -0.092415 }
+      }
+      <Normal> { 0.921903 -0.361736 -0.138554 }
+    }
+    <Vertex> 5509 {
+      -29.7482376099 -68.40234375 20.0788478851
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { 0.259172 -0.023308 0.965550 }
+        <Binormal> { 0.296582 0.922919 -0.057329 }
+      }
+      <Normal> { 0.827967 -0.295663 -0.476424 }
+    }
+    <Vertex> 5510 {
+      -30.9145450592 -71.507484436 20.0785865784
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.277190 -0.133563 0.951487 }
+        <Binormal> { 0.288139 0.927001 0.046185 }
+      }
+      <Normal> { 0.822901 -0.229896 -0.519578 }
+    }
+    <Vertex> 5511 {
+      -31.2966251373 -71.1955413818 18.8625907898
+      <UV>  {
+        0.250000 0.000000
+        <Tangent> { 0.271807 0.122480 0.954526 }
+        <Binormal> { 0.231328 0.954457 -0.188343 }
+      }
+      <Normal> { 0.934507 -0.271828 -0.229743 }
+    }
+    <Vertex> 5512 {
+      -30.074426651 -68.373008728 18.8636245728
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { 0.151421 0.040830 0.987626 }
+        <Binormal> { 0.351603 0.931475 -0.092415 }
+      }
+      <Normal> { 0.921903 -0.361736 -0.138554 }
+    }
+    <Vertex> 5513 {
+      -31.2966251373 -71.1955413818 18.8625907898
+      <UV>  {
+        0.250000 0.000000
+        <Tangent> { 0.271807 0.122480 0.954526 }
+        <Binormal> { 0.231328 0.954457 -0.188343 }
+      }
+      <Normal> { 0.934507 -0.271828 -0.229743 }
+    }
+    <Vertex> 5514 {
+      -31.8001270294 -71.906539917 16.9686164856
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.088602 -0.000000 0.996067 }
+        <Binormal> { 0.178621 0.981950 0.015889 }
+      }
+      <Normal> { 0.983398 -0.179327 0.027314 }
+    }
+    <Vertex> 5515 {
+      -30.0810031891 -68.373008728 17.3154220581
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.153870 -0.000000 0.988091 }
+        <Binormal> { 0.404319 0.912284 0.062963 }
+      }
+      <Normal> { 0.903989 -0.409192 0.123875 }
+    }
+    <Vertex> 5516 {
+      -28.1486968994 -61.253238678 15.7672176361
+      <UV>  {
+        0.750000 0.250000
+        <Tangent> { -0.470459 -0.062929 0.880175 }
+        <Binormal> { -0.224895 0.972984 -0.050643 }
+      }
+      <Normal> { 0.847774 0.221046 0.482070 }
+    }
+    <Vertex> 5517 {
+      -27.1535263062 -61.21251297 14.4811506271
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { -0.611791 -0.025037 0.790623 }
+        <Binormal> { -0.161127 0.943814 -0.094794 }
+      }
+      <Normal> { 0.577136 0.178564 0.796869 }
+    }
+    <Vertex> 5518 {
+      -28.5103988647 -57.3936233521 13.7695398331
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.149438 -0.829646 0.537919 }
+        <Binormal> { -0.930401 0.271956 0.160973 }
+      }
+      <Normal> { 0.252113 0.322489 0.912351 }
+    }
+    <Vertex> 5519 {
+      -29.2715320587 -58.4211006165 15.1830158234
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.430811 -0.208421 0.878045 }
+        <Binormal> { -0.724715 0.658954 -0.199164 }
+      }
+      <Normal> { 0.524644 0.716117 0.460280 }
+    }
+    <Vertex> 5520 {
+      -28.1486968994 -61.253238678 15.7672176361
+      <UV>  {
+        0.750000 0.250000
+        <Tangent> { -0.470459 -0.062929 0.880175 }
+        <Binormal> { -0.224895 0.972984 -0.050643 }
+      }
+      <Normal> { 0.847774 0.221046 0.482070 }
+    }
+    <Vertex> 5521 {
+      -29.2715320587 -58.4211006165 15.1830158234
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.430811 -0.208421 0.878045 }
+        <Binormal> { -0.724715 0.658954 -0.199164 }
+      }
+      <Normal> { 0.524644 0.716117 0.460280 }
+    }
+    <Vertex> 5522 {
+      -30.0074195862 -58.1178627014 16.8206501007
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.091395 -0.000000 0.995815 }
+        <Binormal> { -0.850091 0.520621 -0.078021 }
+      }
+      <Normal> { 0.519700 0.853664 0.033876 }
+    }
+    <Vertex> 5523 {
+      -28.6374607086 -61.253238678 17.3154220581
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.153870 -0.000000 0.988091 }
+        <Binormal> { -0.178036 0.983508 -0.027724 }
+      }
+      <Normal> { 0.973937 0.180181 0.137577 }
+    }
+    <Vertex> 5524 {
+      -28.1486968994 -61.253238678 15.7672176361
+      <UV>  {
+        0.750000 0.250000
+        <Tangent> { -0.470459 -0.062929 0.880175 }
+        <Binormal> { -0.224895 0.972984 -0.050643 }
+      }
+      <Normal> { 0.847774 0.221046 0.482070 }
+    }
+    <Vertex> 5525 {
+      -28.6374607086 -61.253238678 17.3154220581
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.153870 -0.000000 0.988091 }
+        <Binormal> { -0.178036 0.983508 -0.027724 }
+      }
+      <Normal> { 0.973937 0.180181 0.137577 }
+    }
+    <Vertex> 5526 {
+      -28.7572536469 -64.9721298218 17.5104999542
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.197046 -0.000000 0.980394 }
+        <Binormal> { 0.192895 0.980403 0.038769 }
+      }
+      <Normal> { 0.962218 -0.196753 0.188025 }
+    }
+    <Vertex> 5527 {
+      -28.1479415894 -64.9721298218 16.0598373413
+      <UV>  {
+        0.750000 0.000000
+        <Tangent> { -0.519045 -0.003234 0.854741 }
+        <Binormal> { 0.147904 0.984059 0.093539 }
+      }
+      <Normal> { 0.857295 -0.174871 0.484146 }
+    }
+    <Vertex> 5528 {
+      -28.1486968994 -61.253238678 15.7672176361
+      <UV>  {
+        0.750000 0.250000
+        <Tangent> { -0.470459 -0.062929 0.880175 }
+        <Binormal> { -0.224895 0.972984 -0.050643 }
+      }
+      <Normal> { 0.847774 0.221046 0.482070 }
+    }
+    <Vertex> 5529 {
+      -28.1479415894 -64.9721298218 16.0598373413
+      <UV>  {
+        0.750000 0.000000
+        <Tangent> { -0.519045 -0.003234 0.854741 }
+        <Binormal> { 0.147904 0.984059 0.093539 }
+      }
+      <Normal> { 0.857295 -0.174871 0.484146 }
+    }
+    <Vertex> 5530 {
+      -27.1226387024 -64.9619445801 14.8186845779
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.624372 -0.015733 0.780968 }
+        <Binormal> { 0.086433 0.971071 0.088664 }
+      }
+      <Normal> { 0.632344 -0.126072 0.764336 }
+    }
+    <Vertex> 5531 {
+      -27.1535263062 -61.21251297 14.4811506271
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { -0.611791 -0.025037 0.790623 }
+        <Binormal> { -0.161127 0.943814 -0.094794 }
+      }
+      <Normal> { 0.577136 0.178564 0.796869 }
+    }
+    <Vertex> 5532 {
+      -28.6308841705 -61.253238678 18.8636283875
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { 0.160005 0.070314 0.984609 }
+        <Binormal> { -0.122195 0.991142 -0.050923 }
+      }
+      <Normal> { 0.978332 0.111667 -0.174169 }
+    }
+    <Vertex> 5533 {
+      -28.6374607086 -61.253238678 17.3154220581
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.153870 -0.000000 0.988091 }
+        <Binormal> { -0.178036 0.983508 -0.027724 }
+      }
+      <Normal> { 0.973937 0.180181 0.137577 }
+    }
+    <Vertex> 5534 {
+      -30.0074195862 -58.1178627014 16.8206501007
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.091395 -0.000000 0.995815 }
+        <Binormal> { -0.850091 0.520621 -0.078021 }
+      }
+      <Normal> { 0.519700 0.853664 0.033876 }
+    }
+    <Vertex> 5535 {
+      -29.3920764923 -58.4211006165 18.6537895203
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { 0.270805 0.027656 0.962237 }
+        <Binormal> { -0.667182 0.725572 0.166913 }
+      }
+      <Normal> { 0.687551 0.686575 -0.236274 }
+    }
+    <Vertex> 5536 {
+      -28.6308841705 -61.253238678 18.8636283875
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { 0.160005 0.070314 0.984609 }
+        <Binormal> { -0.122195 0.991142 -0.050923 }
+      }
+      <Normal> { 0.978332 0.111667 -0.174169 }
+    }
+    <Vertex> 5537 {
+      -29.3920764923 -58.4211006165 18.6537895203
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { 0.270805 0.027656 0.962237 }
+        <Binormal> { -0.667182 0.725572 0.166913 }
+      }
+      <Normal> { 0.687551 0.686575 -0.236274 }
+    }
+    <Vertex> 5538 {
+      -29.1713294983 -58.0324745178 19.7914867401
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.441953 -0.877031 0.188397 }
+        <Binormal> { 0.499041 0.408054 0.728903 }
+      }
+      <Normal> { 0.614307 0.430219 -0.661428 }
+    }
+    <Vertex> 5539 {
+      -28.2396678925 -60.9618644714 20.0788478851
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { 0.298760 0.222513 0.928025 }
+        <Binormal> { -0.174231 0.935002 -0.168096 }
+      }
+      <Normal> { 0.827723 0.053835 -0.558489 }
+    }
+    <Vertex> 5540 {
+      -28.6308841705 -61.253238678 18.8636283875
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { 0.160005 0.070314 0.984609 }
+        <Binormal> { -0.122195 0.991142 -0.050923 }
+      }
+      <Normal> { 0.978332 0.111667 -0.174169 }
+    }
+    <Vertex> 5541 {
+      -28.2396678925 -60.9618644714 20.0788478851
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { 0.298760 0.222513 0.928025 }
+        <Binormal> { -0.174231 0.935002 -0.168096 }
+      }
+      <Normal> { 0.827723 0.053835 -0.558489 }
+    }
+    <Vertex> 5542 {
+      -28.5866718292 -64.8482666016 20.1032333374
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.271703 0.166953 0.947789 }
+        <Binormal> { 0.088122 0.943443 -0.191450 }
+      }
+      <Normal> { 0.856624 -0.178259 -0.484146 }
+    }
+    <Vertex> 5543 {
+      -28.871219635 -64.9721298218 18.9611644745
+      <UV>  {
+        0.250000 0.000000
+        <Tangent> { 0.065576 0.047616 0.996711 }
+        <Binormal> { 0.194299 0.977716 -0.059492 }
+      }
+      <Normal> { 0.973907 -0.200049 -0.106937 }
+    }
+    <Vertex> 5544 {
+      -28.6308841705 -61.253238678 18.8636283875
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { 0.160005 0.070314 0.984609 }
+        <Binormal> { -0.122195 0.991142 -0.050923 }
+      }
+      <Normal> { 0.978332 0.111667 -0.174169 }
+    }
+    <Vertex> 5545 {
+      -28.871219635 -64.9721298218 18.9611644745
+      <UV>  {
+        0.250000 0.000000
+        <Tangent> { 0.065576 0.047616 0.996711 }
+        <Binormal> { 0.194299 0.977716 -0.059492 }
+      }
+      <Normal> { 0.973907 -0.200049 -0.106937 }
+    }
+    <Vertex> 5546 {
+      -28.7572536469 -64.9721298218 17.5104999542
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.197046 -0.000000 0.980394 }
+        <Binormal> { 0.192895 0.980403 0.038769 }
+      }
+      <Normal> { 0.962218 -0.196753 0.188025 }
+    }
+    <Vertex> 5547 {
+      -28.6374607086 -61.253238678 17.3154220581
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.153870 -0.000000 0.988091 }
+        <Binormal> { -0.178036 0.983508 -0.027724 }
+      }
+      <Normal> { 0.973937 0.180181 0.137577 }
+    }
+    <Vertex> 5548 {
+      -33.6800918579 -57.9856262207 16.090057373
+      <UV>  {
+        0.333333 0.666667
+        <Tangent> { 0.763744 0.451499 0.461349 }
+        <Binormal> { -0.414876 -0.166234 0.849494 }
+      }
+      <Normal> { -0.246193 0.966735 0.068941 }
+    }
+    <Vertex> 5549 {
+      -32.5193405151 -57.8330535889 17.3339939117
+      <UV>  {
+        0.416667 0.666667
+        <Tangent> { 0.520560 0.087847 0.849294 }
+        <Binormal> { -0.851313 -0.017719 0.523631 }
+      }
+      <Normal> { -0.074923 0.993255 -0.088198 }
+    }
+    <Vertex> 5550 {
+      -30.0074195862 -58.1178627014 16.8206501007
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.000000 0.000000 -0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.519700 0.853664 0.033876 }
+    }
+    <Vertex> 5551 {
+      -32.5193405151 -57.8330535889 15.2637271881
+      <UV>  {
+        0.083333 0.583333
+        <Tangent> { 0.700973 0.481919 0.525730 }
+        <Binormal> { -0.410577 -0.195962 0.727068 }
+      }
+      <Normal> { -0.092990 0.973296 0.209815 }
+    }
+    <Vertex> 5552 {
+      -33.6800918579 -57.9856262207 16.090057373
+      <UV>  {
+        0.333333 0.666667
+        <Tangent> { 0.763744 0.451499 0.461349 }
+        <Binormal> { -0.414876 -0.166234 0.849494 }
+      }
+      <Normal> { -0.246193 0.966735 0.068941 }
+    }
+    <Vertex> 5553 {
+      -32.5193405151 -57.8330535889 15.2637271881
+      <UV>  {
+        0.083333 0.583333
+        <Tangent> { 0.700973 0.481919 0.525730 }
+        <Binormal> { -0.410577 -0.195962 0.727068 }
+      }
+      <Normal> { -0.092990 0.973296 0.209815 }
+    }
+    <Vertex> 5554 {
+      -35.836479187 -58.1712722778 13.4386987686
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.000000 0.000000 -0.000000 }
+        <Binormal> { 0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { -0.520829 0.608783 0.598376 }
+    }
+    <Vertex> 5555 {
+      -35.2973861694 -59.0695304871 15.7247886658
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.763744 0.451500 0.461349 }
+        <Binormal> { -0.243834 -0.432137 0.826568 }
+      }
+      <Normal> { -0.775414 0.623859 0.097415 }
+    }
+    <Vertex> 5556 {
+      -33.6800918579 -57.9856262207 16.090057373
+      <UV>  {
+        0.333333 0.666667
+        <Tangent> { 0.763744 0.451499 0.461349 }
+        <Binormal> { -0.414876 -0.166234 0.849494 }
+      }
+      <Normal> { -0.246193 0.966735 0.068941 }
+    }
+    <Vertex> 5557 {
+      -35.2973861694 -59.0695304871 15.7247886658
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.763744 0.451500 0.461349 }
+        <Binormal> { -0.243834 -0.432137 0.826568 }
+      }
+      <Normal> { -0.775414 0.623859 0.097415 }
+    }
+    <Vertex> 5558 {
+      -34.9179916382 -58.4592971802 17.6732330322
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.728619 0.537896 0.424008 }
+        <Binormal> { -0.571761 0.150064 0.792148 }
+      }
+      <Normal> { -0.473006 0.737999 -0.481216 }
+    }
+    <Vertex> 5559 {
+      -32.5193405151 -57.8330535889 17.3339939117
+      <UV>  {
+        0.416667 0.666667
+        <Tangent> { 0.520560 0.087847 0.849294 }
+        <Binormal> { -0.851313 -0.017719 0.523631 }
+      }
+      <Normal> { -0.074923 0.993255 -0.088198 }
+    }
+    <Vertex> 5560 {
+      -31.1934776306 -57.6804847717 18.414434433
+      <UV>  {
+        0.333333 0.500000
+        <Tangent> { -0.574025 0.277212 0.770486 }
+        <Binormal> { -0.802838 -0.007808 -0.595318 }
+      }
+      <Normal> { 0.141270 0.968871 -0.203223 }
+    }
+    <Vertex> 5561 {
+      -31.8457717896 -57.3494720459 19.0269432068
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.683706 0.346953 0.642005 }
+        <Binormal> { -0.695986 -0.324143 -0.566019 }
+      }
+      <Normal> { 0.193518 0.729667 -0.655812 }
+    }
+    <Vertex> 5562 {
+      -29.1713294983 -58.0324745178 19.7914867401
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.720368 0.447231 0.530146 }
+        <Binormal> { -0.523890 -0.150799 -0.584653 }
+      }
+      <Normal> { 0.614307 0.430219 -0.661428 }
+    }
+    <Vertex> 5563 {
+      -29.3920764923 -58.4211006165 18.6537895203
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.684870 0.387800 0.616899 }
+        <Binormal> { -0.515175 0.262333 -0.736847 }
+      }
+      <Normal> { 0.687551 0.686575 -0.236274 }
+    }
+    <Vertex> 5564 {
+      -31.1934776306 -57.6804847717 18.414434433
+      <UV>  {
+        0.333333 0.500000
+        <Tangent> { -0.574025 0.277212 0.770486 }
+        <Binormal> { -0.802838 -0.007808 -0.595318 }
+      }
+      <Normal> { 0.141270 0.968871 -0.203223 }
+    }
+    <Vertex> 5565 {
+      -29.3920764923 -58.4211006165 18.6537895203
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.684870 0.387800 0.616899 }
+        <Binormal> { -0.515175 0.262333 -0.736847 }
+      }
+      <Normal> { 0.687551 0.686575 -0.236274 }
+    }
+    <Vertex> 5566 {
+      -30.0074195862 -58.1178627014 16.8206501007
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.000000 0.000000 -0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.519700 0.853664 0.033876 }
+    }
+    <Vertex> 5567 {
+      -32.5193405151 -57.8330535889 17.3339939117
+      <UV>  {
+        0.416667 0.666667
+        <Tangent> { 0.520560 0.087847 0.849294 }
+        <Binormal> { -0.851313 -0.017719 0.523631 }
+      }
+      <Normal> { -0.074923 0.993255 -0.088198 }
+    }
+    <Vertex> 5568 {
+      -31.1934776306 -57.6804847717 18.414434433
+      <UV>  {
+        0.333333 0.500000
+        <Tangent> { -0.574025 0.277212 0.770486 }
+        <Binormal> { -0.802838 -0.007808 -0.595318 }
+      }
+      <Normal> { 0.141270 0.968871 -0.203223 }
+    }
+    <Vertex> 5569 {
+      -32.5193405151 -57.8330535889 17.3339939117
+      <UV>  {
+        0.416667 0.666667
+        <Tangent> { 0.520560 0.087847 0.849294 }
+        <Binormal> { -0.851313 -0.017719 0.523631 }
+      }
+      <Normal> { -0.074923 0.993255 -0.088198 }
+    }
+    <Vertex> 5570 {
+      -34.9179916382 -58.4592971802 17.6732330322
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.728619 0.537896 0.424008 }
+        <Binormal> { -0.571761 0.150064 0.792148 }
+      }
+      <Normal> { -0.473006 0.737999 -0.481216 }
+    }
+    <Vertex> 5571 {
+      -31.8457717896 -57.3494720459 19.0269432068
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.683706 0.346953 0.642005 }
+        <Binormal> { -0.695986 -0.324143 -0.566019 }
+      }
+      <Normal> { 0.193518 0.729667 -0.655812 }
+    }
+    <Vertex> 5572 {
+      -31.1934776306 -57.6804847717 14.6008872986
+      <UV>  {
+        0.000000 0.666667
+        <Tangent> { -0.000000 0.000000 -0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.029725 0.906308 0.421552 }
+    }
+    <Vertex> 5573 {
+      -32.5193405151 -57.8330535889 15.2637271881
+      <UV>  {
+        0.083333 0.583333
+        <Tangent> { 0.700973 0.481919 0.525730 }
+        <Binormal> { -0.410577 -0.195962 0.727068 }
+      }
+      <Normal> { -0.092990 0.973296 0.209815 }
+    }
+    <Vertex> 5574 {
+      -30.0074195862 -58.1178627014 16.8206501007
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.000000 0.000000 -0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.519700 0.853664 0.033876 }
+    }
+    <Vertex> 5575 {
+      -29.2715320587 -58.4211006165 15.1830158234
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.000000 0.000000 -0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.524644 0.716117 0.460280 }
+    }
+    <Vertex> 5576 {
+      -31.1934776306 -57.6804847717 14.6008872986
+      <UV>  {
+        0.000000 0.666667
+        <Tangent> { -0.000000 0.000000 -0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.029725 0.906308 0.421552 }
+    }
+    <Vertex> 5577 {
+      -29.2715320587 -58.4211006165 15.1830158234
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.000000 0.000000 -0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.524644 0.716117 0.460280 }
+    }
+    <Vertex> 5578 {
+      -28.5103988647 -57.3936233521 13.7695398331
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.000000 0.000000 -0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.252113 0.322489 0.912351 }
+    }
+    <Vertex> 5579 {
+      -31.8782863617 -56.8203735352 13.7292461395
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.000000 0.000000 -0.000000 }
+        <Binormal> { 0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { -0.039705 0.491775 0.869778 }
+    }
+    <Vertex> 5580 {
+      -31.1934776306 -57.6804847717 14.6008872986
+      <UV>  {
+        0.000000 0.666667
+        <Tangent> { -0.000000 0.000000 -0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.029725 0.906308 0.421552 }
+    }
+    <Vertex> 5581 {
+      -31.8782863617 -56.8203735352 13.7292461395
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.000000 0.000000 -0.000000 }
+        <Binormal> { 0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { -0.039705 0.491775 0.869778 }
+    }
+    <Vertex> 5582 {
+      -35.836479187 -58.1712722778 13.4386987686
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.000000 0.000000 -0.000000 }
+        <Binormal> { 0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { -0.520829 0.608783 0.598376 }
+    }
+    <Vertex> 5583 {
+      -32.5193405151 -57.8330535889 15.2637271881
+      <UV>  {
+        0.083333 0.583333
+        <Tangent> { 0.700973 0.481919 0.525730 }
+        <Binormal> { -0.410577 -0.195962 0.727068 }
+      }
+      <Normal> { -0.092990 0.973296 0.209815 }
+    }
+    <Vertex> 5584 {
+      -33.2335014343 -76.3082427979 15.1819810867
+      <UV>  {
+        0.125000 0.687500
+        <Tangent> { 0.650687 -0.599862 -0.465589 }
+        <Binormal> { -0.596082 -0.158351 -0.629040 }
+      }
+      <Normal> { 0.004273 -0.970672 0.240303 }
+    }
+    <Vertex> 5585 {
+      -33.4709510803 -77.003036499 13.8745203018
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.170495 0.299332 -0.938793 }
+        <Binormal> { -0.299899 0.151927 0.102907 }
+      }
+      <Normal> { -0.013825 -0.579302 0.814966 }
+    }
+    <Vertex> 5586 {
+      -31.3029937744 -76.1607513428 13.8057003021
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.150384 -0.736657 -0.659334 }
+        <Binormal> { -0.792083 -0.181711 0.383683 }
+      }
+      <Normal> { 0.468398 -0.256905 0.845302 }
+    }
+    <Vertex> 5587 {
+      -31.8257064819 -75.9171295166 15.327255249
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.776710 -0.288381 -0.559962 }
+        <Binormal> { -0.393214 -0.299344 0.699580 }
+      }
+      <Normal> { 0.770196 -0.614734 0.169866 }
+    }
+    <Vertex> 5588 {
+      -33.2335014343 -76.3082427979 15.1819810867
+      <UV>  {
+        0.125000 0.687500
+        <Tangent> { 0.650687 -0.599862 -0.465589 }
+        <Binormal> { -0.596082 -0.158351 -0.629040 }
+      }
+      <Normal> { 0.004273 -0.970672 0.240303 }
+    }
+    <Vertex> 5589 {
+      -31.8257064819 -75.9171295166 15.327255249
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.776710 -0.288381 -0.559962 }
+        <Binormal> { -0.393214 -0.299344 0.699580 }
+      }
+      <Normal> { 0.770196 -0.614734 0.169866 }
+    }
+    <Vertex> 5590 {
+      -31.8010749817 -75.8193588257 16.9252643585
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.234109 -0.085022 0.968486 }
+        <Binormal> { 0.626691 0.738357 0.216307 }
+      }
+      <Normal> { 0.762383 -0.647084 0.000000 }
+    }
+    <Vertex> 5591 {
+      -33.0752067566 -76.3082427979 16.9252643585
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.368983 -0.017680 0.929268 }
+        <Binormal> { 0.929215 0.000798 -0.368947 }
+      }
+      <Normal> { 0.001404 -0.999969 0.001373 }
+    }
+    <Vertex> 5592 {
+      -33.2335014343 -76.3082427979 15.1819810867
+      <UV>  {
+        0.125000 0.687500
+        <Tangent> { 0.650687 -0.599862 -0.465589 }
+        <Binormal> { -0.596082 -0.158351 -0.629040 }
+      }
+      <Normal> { 0.004273 -0.970672 0.240303 }
+    }
+    <Vertex> 5593 {
+      -33.0752067566 -76.3082427979 16.9252643585
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.368983 -0.017680 0.929268 }
+        <Binormal> { 0.929215 0.000798 -0.368947 }
+      }
+      <Normal> { 0.001404 -0.999969 0.001373 }
+    }
+    <Vertex> 5594 {
+      -34.6582717896 -75.6824569702 16.7026863098
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.730651 -0.261341 0.630753 }
+        <Binormal> { 0.407000 -0.483705 -0.671876 }
+      }
+      <Normal> { -0.762627 -0.646779 0.003662 }
+    }
+    <Vertex> 5595 {
+      -34.7766265869 -75.9171295166 15.0367078781
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.930449 -0.321861 -0.175128 }
+        <Binormal> { -0.223860 -0.209533 -0.804266 }
+      }
+      <Normal> { -0.695761 -0.623707 0.356151 }
+    }
+    <Vertex> 5596 {
+      -33.2335014343 -76.3082427979 15.1819810867
+      <UV>  {
+        0.125000 0.687500
+        <Tangent> { 0.650687 -0.599862 -0.465589 }
+        <Binormal> { -0.596082 -0.158351 -0.629040 }
+      }
+      <Normal> { 0.004273 -0.970672 0.240303 }
+    }
+    <Vertex> 5597 {
+      -34.7766265869 -75.9171295166 15.0367078781
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.930449 -0.321861 -0.175128 }
+        <Binormal> { -0.223860 -0.209533 -0.804266 }
+      }
+      <Normal> { -0.695761 -0.623707 0.356151 }
+    }
+    <Vertex> 5598 {
+      -35.836479187 -76.4163665771 13.4386987686
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.634492 -0.527695 -0.564764 }
+        <Binormal> { -0.632893 -0.199496 -0.524631 }
+      }
+      <Normal> { -0.502518 -0.408918 0.761711 }
+    }
+    <Vertex> 5599 {
+      -33.4709510803 -77.003036499 13.8745203018
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.170495 0.299332 -0.938793 }
+        <Binormal> { -0.299899 0.151927 0.102907 }
+      }
+      <Normal> { -0.013825 -0.579302 0.814966 }
+    }
+    <Vertex> 5600 {
+      -33.233505249 -76.3082427979 18.6685466766
+      <UV>  {
+        0.375000 0.562500
+        <Tangent> { 0.006150 -0.160276 0.987053 }
+        <Binormal> { 0.998956 0.032667 -0.000920 }
+      }
+      <Normal> { 0.032289 -0.991028 -0.129521 }
+    }
+    <Vertex> 5601 {
+      -33.0752067566 -76.3082427979 16.9252643585
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.368983 -0.017680 0.929268 }
+        <Binormal> { 0.929215 0.000798 -0.368947 }
+      }
+      <Normal> { 0.001404 -0.999969 0.001373 }
+    }
+    <Vertex> 5602 {
+      -31.8010749817 -75.8193588257 16.9252643585
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.234109 -0.085022 0.968486 }
+        <Binormal> { 0.626691 0.738357 0.216307 }
+      }
+      <Normal> { 0.762383 -0.647084 0.000000 }
+    }
+    <Vertex> 5603 {
+      -31.8257064819 -75.9171295166 18.523273468
+      <UV>  {
+        0.750000 0.875000
+        <Tangent> { -0.294503 -0.113094 0.948935 }
+        <Binormal> { 0.598965 0.724097 0.272187 }
+      }
+      <Normal> { 0.778832 -0.625141 -0.050813 }
+    }
+    <Vertex> 5604 {
+      -33.233505249 -76.3082427979 18.6685466766
+      <UV>  {
+        0.375000 0.562500
+        <Tangent> { 0.006150 -0.160276 0.987053 }
+        <Binormal> { 0.998956 0.032667 -0.000920 }
+      }
+      <Normal> { 0.032289 -0.991028 -0.129521 }
+    }
+    <Vertex> 5605 {
+      -31.8257064819 -75.9171295166 18.523273468
+      <UV>  {
+        0.750000 0.875000
+        <Tangent> { -0.294503 -0.113094 0.948935 }
+        <Binormal> { 0.598965 0.724097 0.272187 }
+      }
+      <Normal> { 0.778832 -0.625141 -0.050813 }
+    }
+    <Vertex> 5606 {
+      -31.6522140503 -75.8817977905 19.9583129883
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.180804 -0.120414 0.976120 }
+        <Binormal> { 0.466953 0.691355 0.171778 }
+      }
+      <Normal> { 0.790246 -0.423780 -0.442579 }
+    }
+    <Vertex> 5607 {
+      -33.5034637451 -76.695022583 20.0300769806
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.031457 -0.259866 0.965132 }
+        <Binormal> { 0.919564 0.062858 0.046896 }
+      }
+      <Normal> { 0.084964 -0.788934 -0.608539 }
+    }
+    <Vertex> 5608 {
+      -33.233505249 -76.3082427979 18.6685466766
+      <UV>  {
+        0.375000 0.562500
+        <Tangent> { 0.006150 -0.160276 0.987053 }
+        <Binormal> { 0.998956 0.032667 -0.000920 }
+      }
+      <Normal> { 0.032289 -0.991028 -0.129521 }
+    }
+    <Vertex> 5609 {
+      -33.5034637451 -76.695022583 20.0300769806
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.031457 -0.259866 0.965132 }
+        <Binormal> { 0.919564 0.062858 0.046896 }
+      }
+      <Normal> { 0.084964 -0.788934 -0.608539 }
+    }
+    <Vertex> 5610 {
+      -35.2525749207 -76.1308135986 19.6838378906
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.178836 -0.332659 0.925935 }
+        <Binormal> { 0.861806 -0.101147 -0.202789 }
+      }
+      <Normal> { -0.242256 -0.683309 -0.688711 }
+    }
+    <Vertex> 5611 {
+      -34.7766265869 -75.9171295166 18.5355968475
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { 0.486170 -0.278560 0.828277 }
+        <Binormal> { 0.706784 -0.359126 -0.535636 }
+      }
+      <Normal> { -0.588031 -0.764824 -0.263131 }
+    }
+    <Vertex> 5612 {
+      -33.233505249 -76.3082427979 18.6685466766
+      <UV>  {
+        0.375000 0.562500
+        <Tangent> { 0.006150 -0.160276 0.987053 }
+        <Binormal> { 0.998956 0.032667 -0.000920 }
+      }
+      <Normal> { 0.032289 -0.991028 -0.129521 }
+    }
+    <Vertex> 5613 {
+      -34.7766265869 -75.9171295166 18.5355968475
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { 0.486170 -0.278560 0.828277 }
+        <Binormal> { 0.706784 -0.359126 -0.535636 }
+      }
+      <Normal> { -0.588031 -0.764824 -0.263131 }
+    }
+    <Vertex> 5614 {
+      -34.6582717896 -75.6824569702 16.7026863098
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.730651 -0.261341 0.630753 }
+        <Binormal> { 0.407000 -0.483705 -0.671876 }
+      }
+      <Normal> { -0.762627 -0.646779 0.003662 }
+    }
+    <Vertex> 5615 {
+      -33.0752067566 -76.3082427979 16.9252643585
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.368983 -0.017680 0.929268 }
+        <Binormal> { 0.929215 0.000798 -0.368947 }
+      }
+      <Normal> { 0.001404 -0.999969 0.001373 }
+    }
+    <Vertex> 5616 {
+      -35.4273681641 -73.1793365479 15.8123617172
+      <UV>  {
+        0.166667 0.583333
+        <Tangent> { 0.173093 -0.881607 0.439100 }
+        <Binormal> { 0.109485 -0.425778 -0.898018 }
+      }
+      <Normal> { -0.976012 -0.216987 -0.016114 }
+    }
+    <Vertex> 5617 {
+      -35.3250923157 -73.9615631104 15.1943025589
+      <UV>  {
+        0.208333 0.770833
+        <Tangent> { -0.000662 -0.932901 -0.360132 }
+        <Binormal> { -0.198686 0.350146 -0.906669 }
+      }
+      <Normal> { -0.972015 -0.188360 0.140263 }
+    }
+    <Vertex> 5618 {
+      -34.6582717896 -75.6824569702 16.7026863098
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.294084 -0.313911 0.902759 }
+        <Binormal> { 0.582736 -0.687392 -0.049190 }
+      }
+      <Normal> { -0.762627 -0.646779 0.003662 }
+    }
+    <Vertex> 5619 {
+      -35.3250923157 -73.9615631104 16.9868736267
+      <UV>  {
+        0.291667 0.479167
+        <Tangent> { -0.041238 -0.498101 0.866138 }
+        <Binormal> { 0.343252 -0.820504 -0.455515 }
+      }
+      <Normal> { -0.939116 -0.297281 -0.172185 }
+    }
+    <Vertex> 5620 {
+      -35.4273681641 -73.1793365479 15.8123617172
+      <UV>  {
+        0.166667 0.583333
+        <Tangent> { 0.173093 -0.881607 0.439100 }
+        <Binormal> { 0.109485 -0.425778 -0.898018 }
+      }
+      <Normal> { -0.976012 -0.216987 -0.016114 }
+    }
+    <Vertex> 5621 {
+      -35.3250923157 -73.9615631104 16.9868736267
+      <UV>  {
+        0.291667 0.479167
+        <Tangent> { -0.041238 -0.498101 0.866138 }
+        <Binormal> { 0.343252 -0.820504 -0.455515 }
+      }
+      <Normal> { -0.939116 -0.297281 -0.172185 }
+    }
+    <Vertex> 5622 {
+      -35.841381073 -71.8590393066 17.0761871338
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.110083 -0.634004 0.765455 }
+        <Binormal> { 0.439399 -0.717937 -0.531455 }
+      }
+      <Normal> { -0.876034 -0.217597 -0.430342 }
+    }
+    <Vertex> 5623 {
+      -35.7342033386 -71.1955337524 15.3950242996
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.141274 -0.932584 0.332159 }
+        <Binormal> { 0.060060 -0.326375 -0.941890 }
+      }
+      <Normal> { -0.994140 -0.104556 -0.027161 }
+    }
+    <Vertex> 5624 {
+      -35.4273681641 -73.1793365479 15.8123617172
+      <UV>  {
+        0.166667 0.583333
+        <Tangent> { 0.173093 -0.881607 0.439100 }
+        <Binormal> { 0.109485 -0.425778 -0.898018 }
+      }
+      <Normal> { -0.976012 -0.216987 -0.016114 }
+    }
+    <Vertex> 5625 {
+      -35.7342033386 -71.1955337524 15.3950242996
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.141274 -0.932584 0.332159 }
+        <Binormal> { 0.060060 -0.326375 -0.941890 }
+      }
+      <Normal> { -0.994140 -0.104556 -0.027161 }
+    }
+    <Vertex> 5626 {
+      -35.836479187 -71.3910903931 13.4386987686
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.016145 -0.936680 -0.349815 }
+        <Binormal> { -0.136776 0.348452 -0.926717 }
+      }
+      <Normal> { -0.990448 -0.062899 0.122532 }
+    }
+    <Vertex> 5627 {
+      -35.3250923157 -73.9615631104 15.1943025589
+      <UV>  {
+        0.208333 0.770833
+        <Tangent> { -0.000662 -0.932901 -0.360132 }
+        <Binormal> { -0.198686 0.350146 -0.906669 }
+      }
+      <Normal> { -0.972015 -0.188360 0.140263 }
+    }
+    <Vertex> 5628 {
+      -35.4273681641 -74.7437896729 14.6008872986
+      <UV>  {
+        0.166667 0.750000
+        <Tangent> { -0.350058 0.163466 -0.922355 }
+        <Binormal> { -0.072702 0.976888 0.200723 }
+      }
+      <Normal> { -0.936766 -0.135960 0.322398 }
+    }
+    <Vertex> 5629 {
+      -35.836479187 -73.9615631104 13.4386987686
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.280323 0.535981 -0.796331 }
+        <Binormal> { 0.149686 0.841827 0.513911 }
+      }
+      <Normal> { -0.926389 -0.062014 0.371410 }
+    }
+    <Vertex> 5630 {
+      -35.836479187 -76.4163665771 13.4386987686
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.863481 -0.504381 -0.000001 }
+        <Binormal> { -0.384193 -0.657723 -0.606553 }
+      }
+      <Normal> { -0.502518 -0.408918 0.761711 }
+    }
+    <Vertex> 5631 {
+      -34.7766265869 -75.9171295166 15.0367078781
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.487685 0.317186 -0.813361 }
+        <Binormal> { -0.394333 0.739594 0.524858 }
+      }
+      <Normal> { -0.695761 -0.623707 0.356151 }
+    }
+    <Vertex> 5632 {
+      -35.4273681641 -74.7437896729 14.6008872986
+      <UV>  {
+        0.166667 0.750000
+        <Tangent> { -0.350058 0.163466 -0.922355 }
+        <Binormal> { -0.072702 0.976888 0.200723 }
+      }
+      <Normal> { -0.936766 -0.135960 0.322398 }
+    }
+    <Vertex> 5633 {
+      -34.7766265869 -75.9171295166 15.0367078781
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.487685 0.317186 -0.813361 }
+        <Binormal> { -0.394333 0.739594 0.524858 }
+      }
+      <Normal> { -0.695761 -0.623707 0.356151 }
+    }
+    <Vertex> 5634 {
+      -34.6582717896 -75.6824569702 16.7026863098
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.294084 -0.313911 0.902759 }
+        <Binormal> { 0.582736 -0.687392 -0.049190 }
+      }
+      <Normal> { -0.762627 -0.646779 0.003662 }
+    }
+    <Vertex> 5635 {
+      -35.3250923157 -73.9615631104 15.1943025589
+      <UV>  {
+        0.208333 0.770833
+        <Tangent> { -0.000662 -0.932901 -0.360132 }
+        <Binormal> { -0.198686 0.350146 -0.906669 }
+      }
+      <Normal> { -0.972015 -0.188360 0.140263 }
+    }
+    <Vertex> 5636 {
+      -35.4273681641 -74.7437896729 14.6008872986
+      <UV>  {
+        0.166667 0.750000
+        <Tangent> { -0.350058 0.163466 -0.922355 }
+        <Binormal> { -0.072702 0.976888 0.200723 }
+      }
+      <Normal> { -0.936766 -0.135960 0.322398 }
+    }
+    <Vertex> 5637 {
+      -35.3250923157 -73.9615631104 15.1943025589
+      <UV>  {
+        0.208333 0.770833
+        <Tangent> { -0.000662 -0.932901 -0.360132 }
+        <Binormal> { -0.198686 0.350146 -0.906669 }
+      }
+      <Normal> { -0.972015 -0.188360 0.140263 }
+    }
+    <Vertex> 5638 {
+      -35.836479187 -71.3910903931 13.4386987686
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.016145 -0.936680 -0.349815 }
+        <Binormal> { -0.136776 0.348452 -0.926717 }
+      }
+      <Normal> { -0.990448 -0.062899 0.122532 }
+    }
+    <Vertex> 5639 {
+      -35.836479187 -73.9615631104 13.4386987686
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.280323 0.535981 -0.796331 }
+        <Binormal> { 0.149686 0.841827 0.513911 }
+      }
+      <Normal> { -0.926389 -0.062014 0.371410 }
+    }
+    <Vertex> 5640 {
+      -35.4273681641 -74.7437896729 18.1367416382
+      <UV>  {
+        0.500000 0.583333
+        <Tangent> { -0.375373 -0.008444 0.926835 }
+        <Binormal> { 0.379083 -0.913566 0.145207 }
+      }
+      <Normal> { -0.854122 -0.406049 -0.324839 }
+    }
+    <Vertex> 5641 {
+      -35.3250923157 -73.9615631104 16.9868736267
+      <UV>  {
+        0.291667 0.479167
+        <Tangent> { -0.041238 -0.498101 0.866138 }
+        <Binormal> { 0.343252 -0.820504 -0.455515 }
+      }
+      <Normal> { -0.939116 -0.297281 -0.172185 }
+    }
+    <Vertex> 5642 {
+      -34.6582717896 -75.6824569702 16.7026863098
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.294084 -0.313911 0.902759 }
+        <Binormal> { 0.582736 -0.687392 -0.049190 }
+      }
+      <Normal> { -0.762627 -0.646779 0.003662 }
+    }
+    <Vertex> 5643 {
+      -34.7766265869 -75.9171295166 18.5355968475
+      <UV>  {
+        0.750000 0.875000
+        <Tangent> { -0.392772 0.190018 0.899791 }
+        <Binormal> { 0.638182 -0.632455 0.412138 }
+      }
+      <Normal> { -0.588031 -0.764824 -0.263131 }
+    }
+    <Vertex> 5644 {
+      -35.4273681641 -74.7437896729 18.1367416382
+      <UV>  {
+        0.500000 0.583333
+        <Tangent> { -0.375373 -0.008444 0.926835 }
+        <Binormal> { 0.379083 -0.913566 0.145207 }
+      }
+      <Normal> { -0.854122 -0.406049 -0.324839 }
+    }
+    <Vertex> 5645 {
+      -34.7766265869 -75.9171295166 18.5355968475
+      <UV>  {
+        0.750000 0.875000
+        <Tangent> { -0.392772 0.190018 0.899791 }
+        <Binormal> { 0.638182 -0.632455 0.412138 }
+      }
+      <Normal> { -0.588031 -0.764824 -0.263131 }
+    }
+    <Vertex> 5646 {
+      -35.2525749207 -76.1308135986 19.6838378906
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.524377 0.129229 0.841622 }
+        <Binormal> { 0.486087 -0.565033 0.389619 }
+      }
+      <Normal> { -0.242256 -0.683309 -0.688711 }
+    }
+    <Vertex> 5647 {
+      -35.8697090149 -74.4381942749 18.6451129913
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.475585 -0.060931 0.877557 }
+        <Binormal> { 0.459566 -0.808845 0.192898 }
+      }
+      <Normal> { -0.549699 -0.476028 -0.686422 }
+    }
+    <Vertex> 5648 {
+      -35.4273681641 -74.7437896729 18.1367416382
+      <UV>  {
+        0.500000 0.583333
+        <Tangent> { -0.375373 -0.008444 0.926835 }
+        <Binormal> { 0.379083 -0.913566 0.145207 }
+      }
+      <Normal> { -0.854122 -0.406049 -0.324839 }
+    }
+    <Vertex> 5649 {
+      -35.8697090149 -74.4381942749 18.6451129913
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.475585 -0.060931 0.877557 }
+        <Binormal> { 0.459566 -0.808845 0.192898 }
+      }
+      <Normal> { -0.549699 -0.476028 -0.686422 }
+    }
+    <Vertex> 5650 {
+      -35.841381073 -71.8590393066 17.0761871338
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.110083 -0.634004 0.765455 }
+        <Binormal> { 0.439399 -0.717937 -0.531455 }
+      }
+      <Normal> { -0.876034 -0.217597 -0.430342 }
+    }
+    <Vertex> 5651 {
+      -35.3250923157 -73.9615631104 16.9868736267
+      <UV>  {
+        0.291667 0.479167
+        <Tangent> { -0.041238 -0.498101 0.866138 }
+        <Binormal> { 0.343252 -0.820504 -0.455515 }
+      }
+      <Normal> { -0.939116 -0.297281 -0.172185 }
+    }
+    <Vertex> 5652 {
+      -31.5809307098 -74.7437896729 18.0874519348
+      <UV>  {
+        0.333333 0.166667
+        <Tangent> { 0.020067 0.008951 0.999759 }
+        <Binormal> { 0.051829 0.998574 -0.009981 }
+      }
+      <Normal> { 0.998383 -0.052034 -0.021546 }
+    }
+    <Vertex> 5653 {
+      -31.6732501984 -73.9615631104 18.6685466766
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { 0.016704 0.110188 0.993770 }
+        <Binormal> { 0.041727 0.988166 -0.110268 }
+      }
+      <Normal> { 0.992523 -0.054109 -0.109317 }
+    }
+    <Vertex> 5654 {
+      -31.6522140503 -75.8817977905 19.9583129883
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.139500 0.012867 0.990138 }
+        <Binormal> { 0.413906 0.844193 -0.069285 }
+      }
+      <Normal> { 0.790246 -0.423780 -0.442579 }
+    }
+    <Vertex> 5655 {
+      -31.8257064819 -75.9171295166 18.523273468
+      <UV>  {
+        0.250000 0.000000
+        <Tangent> { 0.049010 -0.020557 0.998587 }
+        <Binormal> { 0.625302 0.780222 -0.014628 }
+      }
+      <Normal> { 0.778832 -0.625141 -0.050813 }
+    }
+    <Vertex> 5656 {
+      -31.5809307098 -74.7437896729 18.0874519348
+      <UV>  {
+        0.333333 0.166667
+        <Tangent> { 0.020067 0.008951 0.999759 }
+        <Binormal> { 0.051829 0.998574 -0.009981 }
+      }
+      <Normal> { 0.998383 -0.052034 -0.021546 }
+    }
+    <Vertex> 5657 {
+      -31.8257064819 -75.9171295166 18.523273468
+      <UV>  {
+        0.250000 0.000000
+        <Tangent> { 0.049010 -0.020557 0.998587 }
+        <Binormal> { 0.625302 0.780222 -0.014628 }
+      }
+      <Normal> { 0.778832 -0.625141 -0.050813 }
+    }
+    <Vertex> 5658 {
+      -31.8010749817 -75.8193588257 16.9252643585
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.000000 0.000000 1.000000 }
+        <Binormal> { 0.647084 0.762383 -0.000000 }
+      }
+      <Normal> { 0.762383 -0.647084 0.000000 }
+    }
+    <Vertex> 5659 {
+      -31.6602325439 -74.3526763916 16.9252643585
+      <UV>  {
+        0.500000 0.208333
+        <Tangent> { -0.000000 0.000000 1.000000 }
+        <Binormal> { 0.039521 0.999207 -0.000000 }
+      }
+      <Normal> { 0.999207 -0.039521 0.000000 }
+    }
+    <Vertex> 5660 {
+      -31.5809307098 -74.7437896729 18.0874519348
+      <UV>  {
+        0.333333 0.166667
+        <Tangent> { 0.020067 0.008951 0.999759 }
+        <Binormal> { 0.051829 0.998574 -0.009981 }
+      }
+      <Normal> { 0.998383 -0.052034 -0.021546 }
+    }
+    <Vertex> 5661 {
+      -31.6602325439 -74.3526763916 16.9252643585
+      <UV>  {
+        0.500000 0.208333
+        <Tangent> { -0.000000 0.000000 1.000000 }
+        <Binormal> { 0.039521 0.999207 -0.000000 }
+      }
+      <Normal> { 0.999207 -0.039521 0.000000 }
+    }
+    <Vertex> 5662 {
+      -31.8001270294 -71.906539917 16.9686164856
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.008525 -0.000000 0.999964 }
+        <Binormal> { 0.179320 0.983595 0.001529 }
+      }
+      <Normal> { 0.983398 -0.179327 0.027314 }
+    }
+    <Vertex> 5663 {
+      -31.6732501984 -73.9615631104 18.6685466766
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { 0.016704 0.110188 0.993770 }
+        <Binormal> { 0.041727 0.988166 -0.110268 }
+      }
+      <Normal> { 0.992523 -0.054109 -0.109317 }
+    }
+    <Vertex> 5664 {
+      -31.5809307098 -74.7437896729 15.7630748749
+      <UV>  {
+        0.666667 0.166667
+        <Tangent> { -0.072326 0.033254 0.996827 }
+        <Binormal> { 0.049986 0.998275 -0.029675 }
+      }
+      <Normal> { 0.995605 -0.047456 0.080599 }
+    }
+    <Vertex> 5665 {
+      -31.6602325439 -74.3526763916 16.9252643585
+      <UV>  {
+        0.500000 0.208333
+        <Tangent> { -0.000000 0.000000 1.000000 }
+        <Binormal> { 0.039521 0.999207 -0.000000 }
+      }
+      <Normal> { 0.999207 -0.039521 0.000000 }
+    }
+    <Vertex> 5666 {
+      -31.8010749817 -75.8193588257 16.9252643585
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.000000 0.000000 1.000000 }
+        <Binormal> { 0.647084 0.762383 -0.000000 }
+      }
+      <Normal> { 0.762383 -0.647084 0.000000 }
+    }
+    <Vertex> 5667 {
+      -31.8257064819 -75.9171295166 15.327255249
+      <UV>  {
+        0.750000 0.000000
+        <Tangent> { -0.156754 0.107442 0.981776 }
+        <Binormal> { 0.621782 0.782787 0.013611 }
+      }
+      <Normal> { 0.770196 -0.614734 0.169866 }
+    }
+    <Vertex> 5668 {
+      -31.5809307098 -74.7437896729 15.7630748749
+      <UV>  {
+        0.666667 0.166667
+        <Tangent> { -0.072326 0.033254 0.996827 }
+        <Binormal> { 0.049986 0.998275 -0.029675 }
+      }
+      <Normal> { 0.995605 -0.047456 0.080599 }
+    }
+    <Vertex> 5669 {
+      -31.8257064819 -75.9171295166 15.327255249
+      <UV>  {
+        0.750000 0.000000
+        <Tangent> { -0.156754 0.107442 0.981776 }
+        <Binormal> { 0.621782 0.782787 0.013611 }
+      }
+      <Normal> { 0.770196 -0.614734 0.169866 }
+    }
+    <Vertex> 5670 {
+      -31.3029937744 -76.1607513428 13.8057003021
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.369674 -0.034799 0.928510 }
+        <Binormal> { 0.209123 0.747398 0.111271 }
+      }
+      <Normal> { 0.468398 -0.256905 0.845302 }
+    }
+    <Vertex> 5671 {
+      -31.6732501984 -73.9615631104 15.1819810867
+      <UV>  {
+        0.750000 0.250000
+        <Tangent> { -0.068578 -0.065740 0.995477 }
+        <Binormal> { 0.041321 0.982880 0.067755 }
+      }
+      <Normal> { 0.971496 -0.056703 0.230079 }
+    }
+    <Vertex> 5672 {
+      -31.5809307098 -74.7437896729 15.7630748749
+      <UV>  {
+        0.666667 0.166667
+        <Tangent> { -0.072326 0.033254 0.996827 }
+        <Binormal> { 0.049986 0.998275 -0.029675 }
+      }
+      <Normal> { 0.995605 -0.047456 0.080599 }
+    }
+    <Vertex> 5673 {
+      -31.6732501984 -73.9615631104 15.1819810867
+      <UV>  {
+        0.750000 0.250000
+        <Tangent> { -0.068578 -0.065740 0.995477 }
+        <Binormal> { 0.041321 0.982880 0.067755 }
+      }
+      <Normal> { 0.971496 -0.056703 0.230079 }
+    }
+    <Vertex> 5674 {
+      -31.8001270294 -71.906539917 16.9686164856
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.008525 -0.000000 0.999964 }
+        <Binormal> { 0.179320 0.983595 0.001529 }
+      }
+      <Normal> { 0.983398 -0.179327 0.027314 }
+    }
+    <Vertex> 5675 {
+      -31.6602325439 -74.3526763916 16.9252643585
+      <UV>  {
+        0.500000 0.208333
+        <Tangent> { -0.000000 0.000000 1.000000 }
+        <Binormal> { 0.039521 0.999207 -0.000000 }
+      }
+      <Normal> { 0.999207 -0.039521 0.000000 }
+    }
+    <Vertex> 5676 {
+      7.83730220795 -52.1677131653 31.0358257294
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.800653 -0.598501 -0.027419 }
+        <Binormal> { -0.105625 -0.186050 0.976780 }
+      }
+      <Normal> { 0.582965 0.784204 0.212409 }
+    }
+    <Vertex> 5677 {
+      10.41036129 -53.9971542358 30.6561012268
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.809167 -0.575316 -0.119414 }
+        <Binormal> { 0.037684 -0.151991 0.987616 }
+      }
+      <Normal> { 0.580035 0.808130 0.102237 }
+    }
+    <Vertex> 5678 {
+      10.3430070877 -54.0351829529 29.7247276306
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.814884 -0.565897 -0.125399 }
+        <Binormal> { -0.100479 -0.350818 0.930216 }
+      }
+      <Normal> { 0.601825 0.723594 0.337901 }
+    }
+    <Vertex> 5679 {
+      8.05424594879 -52.4883308411 30.0931663513
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.800700 -0.596632 -0.053937 }
+        <Binormal> { -0.141929 -0.276395 0.950444 }
+      }
+      <Normal> { 0.587115 0.749535 0.305643 }
+    }
+    <Vertex> 5680 {
+      7.83730220795 -52.1677131653 31.0358257294
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.800653 -0.598501 -0.027419 }
+        <Binormal> { -0.105625 -0.186050 0.976780 }
+      }
+      <Normal> { 0.582965 0.784204 0.212409 }
+    }
+    <Vertex> 5681 {
+      8.05424594879 -52.4883308411 30.0931663513
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.800700 -0.596632 -0.053937 }
+        <Binormal> { -0.141929 -0.276395 0.950444 }
+      }
+      <Normal> { 0.587115 0.749535 0.305643 }
+    }
+    <Vertex> 5682 {
+      6.24800300598 -50.9838409424 30.0005741119
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.757639 -0.650581 0.052221 }
+        <Binormal> { -0.269031 -0.239032 0.925268 }
+      }
+      <Normal> { 0.680166 0.637196 0.362377 }
+    }
+    <Vertex> 5683 {
+      5.82298278809 -50.3915023804 30.8650798798
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.748535 -0.660052 0.063450 }
+        <Binormal> { -0.299621 -0.251587 0.917514 }
+      }
+      <Normal> { 0.642598 0.659108 0.390576 }
+    }
+    <Vertex> 5684 {
+      7.83730220795 -52.1677131653 31.0358257294
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.800653 -0.598501 -0.027419 }
+        <Binormal> { -0.105625 -0.186050 0.976780 }
+      }
+      <Normal> { 0.582965 0.784204 0.212409 }
+    }
+    <Vertex> 5685 {
+      5.82298278809 -50.3915023804 30.8650798798
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.748535 -0.660052 0.063450 }
+        <Binormal> { -0.299621 -0.251587 0.917514 }
+      }
+      <Normal> { 0.642598 0.659108 0.390576 }
+    }
+    <Vertex> 5686 {
+      5.24601078033 -50.850528717 31.4785003662
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.159039 0.977787 -0.136529 }
+        <Binormal> { 0.977753 0.166541 0.053766 }
+      }
+      <Normal> { -0.093661 0.237770 0.966765 }
+    }
+    <Vertex> 5687 {
+      7.93869447708 -52.8322219849 31.8540382385
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.265236 0.455428 0.849818 }
+    }
+    <Vertex> 5688 {
+      7.83730220795 -52.1677131653 31.0358257294
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.800653 -0.598501 -0.027419 }
+        <Binormal> { -0.105625 -0.186050 0.976780 }
+      }
+      <Normal> { 0.582965 0.784204 0.212409 }
+    }
+    <Vertex> 5689 {
+      7.93869447708 -52.8322219849 31.8540382385
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.265236 0.455428 0.849818 }
+    }
+    <Vertex> 5690 {
+      10.5450992584 -54.4684066772 31.5363960266
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.825957 -0.552655 -0.111207 }
+        <Binormal> { -0.309222 -0.608932 0.729493 }
+      }
+      <Normal> { 0.501450 0.547685 0.669729 }
+    }
+    <Vertex> 5691 {
+      10.41036129 -53.9971542358 30.6561012268
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.809167 -0.575316 -0.119414 }
+        <Binormal> { 0.037684 -0.151991 0.987616 }
+      }
+      <Normal> { 0.580035 0.808130 0.102237 }
+    }
+    <Vertex> 5692 {
+      13.1886310577 -55.9973144531 29.4318370819
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.652028 0.756493 0.050661 }
+    }
+    <Vertex> 5693 {
+      15.4947366714 -58.0524024963 27.8560237885
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.665031 -0.592643 -0.454431 }
+        <Binormal> { 0.230127 -0.407837 0.868656 }
+      }
+      <Normal> { 0.807520 0.586566 0.061464 }
+    }
+    <Vertex> 5694 {
+      14.753610611 -57.5889358521 27.4361286163
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.519338 0.314104 0.794721 }
+        <Binormal> { -0.317840 0.792276 -0.520842 }
+      }
+      <Normal> { 0.793237 0.523087 0.311624 }
+    }
+    <Vertex> 5695 {
+      12.7377071381 -55.8041267395 28.7273979187
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.658428 0.333354 0.674744 }
+        <Binormal> { -0.324978 0.682732 -0.654421 }
+      }
+      <Normal> { 0.678823 0.650166 0.341197 }
+    }
+    <Vertex> 5696 {
+      13.1886310577 -55.9973144531 29.4318370819
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.652028 0.756493 0.050661 }
+    }
+    <Vertex> 5697 {
+      12.7377071381 -55.8041267395 28.7273979187
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.658428 0.333354 0.674744 }
+        <Binormal> { -0.324978 0.682732 -0.654421 }
+      }
+      <Normal> { 0.678823 0.650166 0.341197 }
+    }
+    <Vertex> 5698 {
+      10.3430070877 -54.0351829529 29.7247276306
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.731103 0.328965 0.597686 }
+        <Binormal> { -0.321338 0.606768 -0.727031 }
+      }
+      <Normal> { 0.601825 0.723594 0.337901 }
+    }
+    <Vertex> 5699 {
+      10.41036129 -53.9971542358 30.6561012268
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.764166 0.550146 0.336735 }
+        <Binormal> { -0.215880 0.273444 -0.936649 }
+      }
+      <Normal> { 0.580035 0.808130 0.102237 }
+    }
+    <Vertex> 5700 {
+      13.1886310577 -55.9973144531 29.4318370819
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.652028 0.756493 0.050661 }
+    }
+    <Vertex> 5701 {
+      10.41036129 -53.9971542358 30.6561012268
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.764166 0.550146 0.336735 }
+        <Binormal> { -0.215880 0.273444 -0.936649 }
+      }
+      <Normal> { 0.580035 0.808130 0.102237 }
+    }
+    <Vertex> 5702 {
+      10.5450992584 -54.4684066772 31.5363960266
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.843487 0.481658 0.237662 }
+        <Binormal> { 0.192427 0.684119 -0.703529 }
+      }
+      <Normal> { 0.501450 0.547685 0.669729 }
+    }
+    <Vertex> 5703 {
+      13.3697414398 -56.219078064 30.2896232605
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.711324 0.448301 0.541289 }
+        <Binormal> { 0.022270 0.784148 -0.620174 }
+      }
+      <Normal> { 0.702475 0.429090 0.567766 }
+    }
+    <Vertex> 5704 {
+      13.1886310577 -55.9973144531 29.4318370819
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.652028 0.756493 0.050661 }
+    }
+    <Vertex> 5705 {
+      13.3697414398 -56.219078064 30.2896232605
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.711324 0.448301 0.541289 }
+        <Binormal> { 0.022270 0.784148 -0.620174 }
+      }
+      <Normal> { 0.702475 0.429090 0.567766 }
+    }
+    <Vertex> 5706 {
+      15.4619607925 -58.7914543152 28.5970973969
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.331105 0.795859 0.506867 }
+        <Binormal> { 0.558842 0.598245 -0.574280 }
+      }
+      <Normal> { 0.760277 -0.093112 0.642842 }
+    }
+    <Vertex> 5707 {
+      15.4947366714 -58.0524024963 27.8560237885
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.665031 -0.592643 -0.454431 }
+        <Binormal> { 0.230127 -0.407837 0.868656 }
+      }
+      <Normal> { 0.807520 0.586566 0.061464 }
+    }
+    <Vertex> 5708 {
+      4.72093200684 -48.5510520935 30.4379310608
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { -0.503069 -0.026040 0.863854 }
+        <Binormal> { -0.678461 0.630815 -0.376089 }
+      }
+      <Normal> { 0.526933 0.774865 0.349101 }
+    }
+    <Vertex> 5709 {
+      5.82298278809 -50.3915023804 30.8650798798
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { -0.260102 -0.380961 0.887252 }
+        <Binormal> { -0.733589 0.671735 0.073370 }
+      }
+      <Normal> { 0.642598 0.659108 0.390576 }
+    }
+    <Vertex> 5710 {
+      6.24800300598 -50.9838409424 30.0005741119
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { -0.260782 0.283539 0.922821 }
+        <Binormal> { -0.485270 0.722173 -0.359023 }
+      }
+      <Normal> { 0.680166 0.637196 0.362377 }
+    }
+    <Vertex> 5711 {
+      5.30085802078 -49.3419837952 29.614818573
+      <UV>  {
+        0.053131 0.854502
+        <Tangent> { 0.407141 0.889569 0.207132 }
+        <Binormal> { 0.239865 -0.046707 -0.270889 }
+      }
+      <Normal> { 0.610370 0.668264 0.425245 }
+    }
+    <Vertex> 5712 {
+      4.72093200684 -48.5510520935 30.4379310608
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { -0.503069 -0.026040 0.863854 }
+        <Binormal> { -0.678461 0.630815 -0.376089 }
+      }
+      <Normal> { 0.526933 0.774865 0.349101 }
+    }
+    <Vertex> 5713 {
+      5.30085802078 -49.3419837952 29.614818573
+      <UV>  {
+        0.053131 0.854502
+        <Tangent> { 0.407141 0.889569 0.207132 }
+        <Binormal> { 0.239865 -0.046707 -0.270889 }
+      }
+      <Normal> { 0.610370 0.668264 0.425245 }
+    }
+    <Vertex> 5714 {
+      4.35131406784 -48.3970603943 28.6231327057
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { -0.356388 0.355450 0.864085 }
+        <Binormal> { -0.750082 -0.039970 -0.292926 }
+      }
+      <Normal> { -0.141240 0.962798 0.230293 }
+    }
+    <Vertex> 5715 {
+      3.55173397064 -47.9415893555 29.5095386505
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { -0.543129 -0.091059 0.834697 }
+        <Binormal> { -0.797015 -0.100904 -0.529618 }
+      }
+      <Normal> { 0.015320 0.977691 -0.209326 }
+    }
+    <Vertex> 5716 {
+      4.72093200684 -48.5510520935 30.4379310608
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { -0.503069 -0.026040 0.863854 }
+        <Binormal> { -0.678461 0.630815 -0.376089 }
+      }
+      <Normal> { 0.526933 0.774865 0.349101 }
+    }
+    <Vertex> 5717 {
+      3.55173397064 -47.9415893555 29.5095386505
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { -0.543129 -0.091059 0.834697 }
+        <Binormal> { -0.797015 -0.100904 -0.529618 }
+      }
+      <Normal> { 0.015320 0.977691 -0.209326 }
+    }
+    <Vertex> 5718 {
+      2.84836363792 -48.2757644653 29.6699867249
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { -0.789456 -0.238422 0.565609 }
+        <Binormal> { -0.553540 -0.026105 -0.783615 }
+      }
+      <Normal> { -0.423261 0.864772 0.270180 }
+    }
+    <Vertex> 5719 {
+      3.79164528847 -48.3936042786 30.6535129547
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { -0.824092 -0.178156 0.537710 }
+        <Binormal> { -0.415348 0.555033 -0.452665 }
+      }
+      <Normal> { -0.244301 0.496475 0.832911 }
+    }
+    <Vertex> 5720 {
+      4.72093200684 -48.5510520935 30.4379310608
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { -0.503069 -0.026040 0.863854 }
+        <Binormal> { -0.678461 0.630815 -0.376089 }
+      }
+      <Normal> { 0.526933 0.774865 0.349101 }
+    }
+    <Vertex> 5721 {
+      3.79164528847 -48.3936042786 30.6535129547
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { -0.824092 -0.178156 0.537710 }
+        <Binormal> { -0.415348 0.555033 -0.452665 }
+      }
+      <Normal> { -0.244301 0.496475 0.832911 }
+    }
+    <Vertex> 5722 {
+      5.24601078033 -50.850528717 31.4785003662
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { -0.470649 -0.668084 0.576327 }
+        <Binormal> { -0.782914 0.401028 -0.174480 }
+      }
+      <Normal> { -0.093661 0.237770 0.966765 }
+    }
+    <Vertex> 5723 {
+      5.82298278809 -50.3915023804 30.8650798798
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { -0.260102 -0.380961 0.887252 }
+        <Binormal> { -0.733589 0.671735 0.073370 }
+      }
+      <Normal> { 0.642598 0.659108 0.390576 }
+    }
+    <Vertex> 5724 {
+      16.6513004303 -60.0466384888 26.4216499329
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.271257 -0.849768 0.452011 }
+        <Binormal> { -0.052484 0.455585 0.887982 }
+      }
+      <Normal> { 0.969665 0.235908 -0.063723 }
+    }
+    <Vertex> 5725 {
+      16.3459072113 -62.0015106201 25.3664398193
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.024710 -0.741703 0.670273 }
+        <Binormal> { 0.482741 0.575672 0.654818 }
+      }
+      <Normal> { 0.873562 -0.279000 -0.398724 }
+    }
+    <Vertex> 5726 {
+      16.1790218353 -61.0635375977 24.562297821
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.401653 -0.793107 0.457882 }
+        <Binormal> { 0.101618 0.370850 0.553218 }
+      }
+      <Normal> { 0.905362 -0.410382 0.108798 }
+    }
+    <Vertex> 5727 {
+      15.9059810638 -59.1833648682 26.1858844757
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.639971 -0.741252 0.202441 }
+        <Binormal> { -0.204932 0.053877 0.845119 }
+      }
+      <Normal> { 0.951415 0.218574 0.216773 }
+    }
+    <Vertex> 5728 {
+      16.6513004303 -60.0466384888 26.4216499329
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.271257 -0.849768 0.452011 }
+        <Binormal> { -0.052484 0.455585 0.887982 }
+      }
+      <Normal> { 0.969665 0.235908 -0.063723 }
+    }
+    <Vertex> 5729 {
+      15.9059810638 -59.1833648682 26.1858844757
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.639971 -0.741252 0.202441 }
+        <Binormal> { -0.204932 0.053877 0.845119 }
+      }
+      <Normal> { 0.951415 0.218574 0.216773 }
+    }
+    <Vertex> 5730 {
+      14.753610611 -57.5889358521 27.4361286163
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.708663 -0.632524 0.312586 }
+        <Binormal> { -0.360620 0.027118 0.872434 }
+      }
+      <Normal> { 0.793237 0.523087 0.311624 }
+    }
+    <Vertex> 5731 {
+      15.4947366714 -58.0524024963 27.8560237885
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.390191 -0.662400 0.639513 }
+        <Binormal> { -0.415830 0.492437 0.763774 }
+      }
+      <Normal> { 0.807520 0.586566 0.061464 }
+    }
+    <Vertex> 5732 {
+      16.6513004303 -60.0466384888 26.4216499329
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.271257 -0.849768 0.452011 }
+        <Binormal> { -0.052484 0.455585 0.887982 }
+      }
+      <Normal> { 0.969665 0.235908 -0.063723 }
+    }
+    <Vertex> 5733 {
+      15.4947366714 -58.0524024963 27.8560237885
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.390191 -0.662400 0.639513 }
+        <Binormal> { -0.415830 0.492437 0.763774 }
+      }
+      <Normal> { 0.807520 0.586566 0.061464 }
+    }
+    <Vertex> 5734 {
+      15.4619607925 -58.7914543152 28.5970973969
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.665862 -0.208919 0.716227 }
+        <Binormal> { -0.067613 0.972575 0.220836 }
+      }
+      <Normal> { 0.760277 -0.093112 0.642842 }
+    }
+    <Vertex> 5735 {
+      16.5601425171 -61.0067749023 26.6479949951
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.092018 -0.969190 0.228479 }
+        <Binormal> { -0.442995 0.228759 0.791964 }
+      }
+      <Normal> { 0.787408 -0.313150 0.530900 }
+    }
+    <Vertex> 5736 {
+      16.6513004303 -60.0466384888 26.4216499329
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.271257 -0.849768 0.452011 }
+        <Binormal> { -0.052484 0.455585 0.887982 }
+      }
+      <Normal> { 0.969665 0.235908 -0.063723 }
+    }
+    <Vertex> 5737 {
+      16.5601425171 -61.0067749023 26.6479949951
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.092018 -0.969190 0.228479 }
+        <Binormal> { -0.442995 0.228759 0.791964 }
+      }
+      <Normal> { 0.787408 -0.313150 0.530900 }
+    }
+    <Vertex> 5738 {
+      16.134727478 -62.3930854797 25.7638015747
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.199030 -0.889834 0.410588 }
+        <Binormal> { 0.142464 0.363824 0.857545 }
+      }
+      <Normal> { 0.845882 -0.526811 0.082980 }
+    }
+    <Vertex> 5739 {
+      16.3459072113 -62.0015106201 25.3664398193
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.024710 -0.741703 0.670273 }
+        <Binormal> { 0.482741 0.575672 0.654818 }
+      }
+      <Normal> { 0.873562 -0.279000 -0.398724 }
+    }
+    <Vertex> 5740 {
+      4.50660800934 -65.8321990967 21.506155014
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.380497 0.307496 -0.872163 }
+        <Binormal> { -0.866298 -0.448479 0.219819 }
+      }
+      <Normal> { 0.325938 -0.841121 -0.431562 }
+    }
+    <Vertex> 5741 {
+      3.30636048317 -64.2518005371 18.6485347748
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.344986 0.454253 -0.821364 }
+        <Binormal> { -0.847666 -0.390850 0.139875 }
+      }
+      <Normal> { 0.143529 -0.594440 -0.791223 }
+    }
+    <Vertex> 5742 {
+      4.44768333435 -64.0054702759 18.4704265594
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.666681 0.374301 -0.644543 }
+        <Binormal> { -0.709899 -0.074710 0.690896 }
+      }
+      <Normal> { -0.286691 -0.875362 -0.389233 }
+    }
+    <Vertex> 5743 {
+      5.43875074387 -65.0797805786 21.6685352325
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.330603 0.282051 -0.900638 }
+        <Binormal> { -0.918215 -0.314784 0.238475 }
+      }
+      <Normal> { 0.226081 -0.914212 -0.336253 }
+    }
+    <Vertex> 5744 {
+      4.50660800934 -65.8321990967 21.506155014
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.380497 0.307496 -0.872163 }
+        <Binormal> { -0.866298 -0.448479 0.219819 }
+      }
+      <Normal> { 0.325938 -0.841121 -0.431562 }
+    }
+    <Vertex> 5745 {
+      5.43875074387 -65.0797805786 21.6685352325
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.330603 0.282051 -0.900638 }
+        <Binormal> { -0.918215 -0.314784 0.238475 }
+      }
+      <Normal> { 0.226081 -0.914212 -0.336253 }
+    }
+    <Vertex> 5746 {
+      6.32541418076 -65.6074371338 23.5857906342
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.410788 0.207375 -0.887834 }
+        <Binormal> { -0.826472 -0.482290 0.269747 }
+      }
+      <Normal> { 0.328166 -0.822321 -0.464797 }
+    }
+    <Vertex> 5747 {
+      5.81721782684 -66.413772583 24.3378505707
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.412917 0.183229 -0.892147 }
+        <Binormal> { -0.836222 -0.445587 0.295519 }
+      }
+      <Normal> { 0.293130 -0.845759 -0.445784 }
+    }
+    <Vertex> 5748 {
+      4.50660800934 -65.8321990967 21.506155014
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.380497 0.307496 -0.872163 }
+        <Binormal> { -0.866298 -0.448479 0.219819 }
+      }
+      <Normal> { 0.325938 -0.841121 -0.431562 }
+    }
+    <Vertex> 5749 {
+      5.81721782684 -66.413772583 24.3378505707
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.412917 0.183229 -0.892147 }
+        <Binormal> { -0.836222 -0.445587 0.295519 }
+      }
+      <Normal> { 0.293130 -0.845759 -0.445784 }
+    }
+    <Vertex> 5750 {
+      5.78391265869 -66.6214065552 25.1025238037
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.427606 0.172496 -0.887354 }
+        <Binormal> { -0.832828 0.270450 0.453905 }
+      }
+      <Normal> { -0.247780 -0.961547 0.118290 }
+    }
+    <Vertex> 5751 {
+      4.20942115784 -66.0391311646 21.9471530914
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.416082 0.289054 -0.862162 }
+        <Binormal> { -0.784503 0.364123 0.500681 }
+      }
+      <Normal> { -0.444105 -0.894803 -0.045106 }
+    }
+    <Vertex> 5752 {
+      4.50660800934 -65.8321990967 21.506155014
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.380497 0.307496 -0.872163 }
+        <Binormal> { -0.866298 -0.448479 0.219819 }
+      }
+      <Normal> { 0.325938 -0.841121 -0.431562 }
+    }
+    <Vertex> 5753 {
+      4.20942115784 -66.0391311646 21.9471530914
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.416082 0.289054 -0.862162 }
+        <Binormal> { -0.784503 0.364123 0.500681 }
+      }
+      <Normal> { -0.444105 -0.894803 -0.045106 }
+    }
+    <Vertex> 5754 {
+      2.69709229469 -64.4769821167 18.7063312531
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.367692 0.425975 -0.826649 }
+        <Binormal> { -0.814903 0.245954 0.489208 }
+      }
+      <Normal> { -0.481521 -0.772637 -0.413648 }
+    }
+    <Vertex> 5755 {
+      3.30636048317 -64.2518005371 18.6485347748
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.344986 0.454253 -0.821364 }
+        <Binormal> { -0.847666 -0.390850 0.139875 }
+      }
+      <Normal> { 0.143529 -0.594440 -0.791223 }
+    }
+    <Vertex> 5756 {
+      8.27212715149 -66.3112182617 25.088344574
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.064327 -0.593889 0.801971 }
+        <Binormal> { 0.983169 0.172338 0.048761 }
+      }
+      <Normal> { 0.169469 -0.806574 -0.566301 }
+    }
+    <Vertex> 5757 {
+      5.81721782684 -66.413772583 24.3378505707
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.284535 -0.532795 0.796975 }
+        <Binormal> { 0.911561 0.106777 0.396826 }
+      }
+      <Normal> { 0.293130 -0.845759 -0.445784 }
+    }
+    <Vertex> 5758 {
+      6.32541418076 -65.6074371338 23.5857906342
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.103197 -0.701172 0.705484 }
+        <Binormal> { 0.906037 0.183550 0.314962 }
+      }
+      <Normal> { 0.328166 -0.822321 -0.464797 }
+    }
+    <Vertex> 5759 {
+      8.01560020447 -65.4075927734 24.11992836
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.190141 -0.669780 0.717803 }
+        <Binormal> { 0.927887 0.202772 -0.056585 }
+      }
+      <Normal> { 0.166143 -0.882839 -0.439222 }
+    }
+    <Vertex> 5760 {
+      8.27212715149 -66.3112182617 25.088344574
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.064327 -0.593889 0.801971 }
+        <Binormal> { 0.983169 0.172338 0.048761 }
+      }
+      <Normal> { 0.169469 -0.806574 -0.566301 }
+    }
+    <Vertex> 5761 {
+      8.01560020447 -65.4075927734 24.11992836
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.190141 -0.669780 0.717803 }
+        <Binormal> { 0.927887 0.202772 -0.056585 }
+      }
+      <Normal> { 0.166143 -0.882839 -0.439222 }
+    }
+    <Vertex> 5762 {
+      10.808093071 -64.8020248413 23.9588832855
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.807090 -0.522825 0.274336 }
+        <Binormal> { 0.432611 -0.217444 0.858331 }
+      }
+      <Normal> { 0.252205 -0.900113 -0.355144 }
+    }
+    <Vertex> 5763 {
+      11.2841596603 -65.4957351685 24.9032363892
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.271999 -0.590213 0.760042 }
+        <Binormal> { 0.929753 0.361334 -0.052139 }
+      }
+      <Normal> { 0.256661 -0.748619 -0.611255 }
+    }
+    <Vertex> 5764 {
+      8.27212715149 -66.3112182617 25.088344574
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.064327 -0.593889 0.801971 }
+        <Binormal> { 0.983169 0.172338 0.048761 }
+      }
+      <Normal> { 0.169469 -0.806574 -0.566301 }
+    }
+    <Vertex> 5765 {
+      11.2841596603 -65.4957351685 24.9032363892
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.271999 -0.590213 0.760042 }
+        <Binormal> { 0.929753 0.361334 -0.052139 }
+      }
+      <Normal> { 0.256661 -0.748619 -0.611255 }
+    }
+    <Vertex> 5766 {
+      11.3368883133 -65.9494628906 25.4364871979
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.038373 -0.550598 0.833888 }
+        <Binormal> { 0.756683 0.307973 0.168527 }
+      }
+      <Normal> { 0.370769 -0.928190 0.031465 }
+    }
+    <Vertex> 5767 {
+      8.27652549744 -66.6771774292 25.7965221405
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.005518 -0.459080 0.888378 }
+        <Binormal> { 0.842623 0.078807 0.035491 }
+      }
+      <Normal> { 0.089236 -0.992370 0.084902 }
+    }
+    <Vertex> 5768 {
+      8.27212715149 -66.3112182617 25.088344574
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.064327 -0.593889 0.801971 }
+        <Binormal> { 0.983169 0.172338 0.048761 }
+      }
+      <Normal> { 0.169469 -0.806574 -0.566301 }
+    }
+    <Vertex> 5769 {
+      8.27652549744 -66.6771774292 25.7965221405
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.005518 -0.459080 0.888378 }
+        <Binormal> { 0.842623 0.078807 0.035491 }
+      }
+      <Normal> { 0.089236 -0.992370 0.084902 }
+    }
+    <Vertex> 5770 {
+      5.78391265869 -66.6214065552 25.1025238037
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.769603 0.130363 -0.625074 }
+        <Binormal> { -0.585617 0.245917 0.772310 }
+      }
+      <Normal> { -0.247780 -0.961547 0.118290 }
+    }
+    <Vertex> 5771 {
+      5.81721782684 -66.413772583 24.3378505707
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.284535 -0.532795 0.796975 }
+        <Binormal> { 0.911561 0.106777 0.396826 }
+      }
+      <Normal> { 0.293130 -0.845759 -0.445784 }
+    }
+    <Vertex> 5772 {
+      14.2661409378 -63.9385223389 24.9281177521
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.288486 -0.542775 0.788778 }
+        <Binormal> { 0.811973 0.574689 0.098487 }
+      }
+      <Normal> { 0.514298 -0.626240 -0.585894 }
+    }
+    <Vertex> 5773 {
+      11.2841596603 -65.4957351685 24.9032363892
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.271999 -0.590213 0.760042 }
+        <Binormal> { 0.929753 0.361334 -0.052139 }
+      }
+      <Normal> { 0.256661 -0.748619 -0.611255 }
+    }
+    <Vertex> 5774 {
+      10.808093071 -64.8020248413 23.9588832855
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.377809 -0.476442 0.793891 }
+        <Binormal> { 0.883797 0.334400 -0.219909 }
+      }
+      <Normal> { 0.252205 -0.900113 -0.355144 }
+    }
+    <Vertex> 5775 {
+      13.820561409 -63.4699745178 23.9358100891
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.376214 -0.395606 0.837830 }
+        <Binormal> { 0.779969 0.531475 -0.099280 }
+      }
+      <Normal> { 0.524552 -0.815485 -0.244514 }
+    }
+    <Vertex> 5776 {
+      14.2661409378 -63.9385223389 24.9281177521
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.288486 -0.542775 0.788778 }
+        <Binormal> { 0.811973 0.574689 0.098487 }
+      }
+      <Normal> { 0.514298 -0.626240 -0.585894 }
+    }
+    <Vertex> 5777 {
+      13.820561409 -63.4699745178 23.9358100891
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.376214 -0.395606 0.837830 }
+        <Binormal> { 0.779969 0.531475 -0.099280 }
+      }
+      <Normal> { 0.524552 -0.815485 -0.244514 }
+    }
+    <Vertex> 5778 {
+      16.1790218353 -61.0635375977 24.562297821
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.275516 -0.958281 0.076084 }
+        <Binormal> { -0.073036 0.098859 0.980658 }
+      }
+      <Normal> { 0.905362 -0.410382 0.108798 }
+    }
+    <Vertex> 5779 {
+      16.3459072113 -62.0015106201 25.3664398193
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.024710 -0.741703 0.670273 }
+        <Binormal> { 0.482741 0.575672 0.654818 }
+      }
+      <Normal> { 0.873562 -0.279000 -0.398724 }
+    }
+    <Vertex> 5780 {
+      14.2661409378 -63.9385223389 24.9281177521
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.288486 -0.542775 0.788778 }
+        <Binormal> { 0.811973 0.574689 0.098487 }
+      }
+      <Normal> { 0.514298 -0.626240 -0.585894 }
+    }
+    <Vertex> 5781 {
+      16.3459072113 -62.0015106201 25.3664398193
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.024710 -0.741703 0.670273 }
+        <Binormal> { 0.482741 0.575672 0.654818 }
+      }
+      <Normal> { 0.873562 -0.279000 -0.398724 }
+    }
+    <Vertex> 5782 {
+      16.134727478 -62.3930854797 25.7638015747
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.123839 -0.572087 0.810790 }
+        <Binormal> { 0.379661 0.675556 0.418678 }
+      }
+      <Normal> { 0.845882 -0.526811 0.082980 }
+    }
+    <Vertex> 5783 {
+      14.6146345139 -64.1812820435 25.4297657013
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.530197 -0.369334 0.763206 }
+        <Binormal> { 0.569650 0.419215 -0.192866 }
+      }
+      <Normal> { 0.609302 -0.788202 0.086398 }
+    }
+    <Vertex> 5784 {
+      14.2661409378 -63.9385223389 24.9281177521
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.288486 -0.542775 0.788778 }
+        <Binormal> { 0.811973 0.574689 0.098487 }
+      }
+      <Normal> { 0.514298 -0.626240 -0.585894 }
+    }
+    <Vertex> 5785 {
+      14.6146345139 -64.1812820435 25.4297657013
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.530197 -0.369334 0.763206 }
+        <Binormal> { 0.569650 0.419215 -0.192866 }
+      }
+      <Normal> { 0.609302 -0.788202 0.086398 }
+    }
+    <Vertex> 5786 {
+      11.3368883133 -65.9494628906 25.4364871979
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.805595 -0.573685 0.147996 }
+        <Binormal> { 0.119318 0.080220 0.960450 }
+      }
+      <Normal> { 0.370769 -0.928190 0.031465 }
+    }
+    <Vertex> 5787 {
+      11.2841596603 -65.4957351685 24.9032363892
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.271999 -0.590213 0.760042 }
+        <Binormal> { 0.929753 0.361334 -0.052139 }
+      }
+      <Normal> { 0.256661 -0.748619 -0.611255 }
+    }
+    <Vertex> 5788 {
+      1.18253922462 -61.3578720093 17.8202610016
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.552686 0.832675 0.034492 }
+        <Binormal> { -0.830935 -0.553696 0.052250 }
+      }
+      <Normal> { -0.054201 -0.012879 -0.998444 }
+    }
+    <Vertex> 5789 {
+      -0.756666958332 -58.0987281799 18.9326705933
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.490663 0.824638 0.281465 }
+        <Binormal> { -0.839685 -0.464483 -0.102935 }
+      }
+      <Normal> { -0.174322 0.502762 -0.846644 }
+    }
+    <Vertex> 5790 {
+      0.142042249441 -57.5461273193 18.6940250397
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.472037 0.845077 0.251050 }
+        <Binormal> { -0.498995 -0.468494 0.638792 }
+      }
+      <Normal> { -0.823267 0.120609 -0.554643 }
+    }
+    <Vertex> 5791 {
+      2.04483437538 -61.165222168 17.7630882263
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.554418 0.831740 0.028792 }
+        <Binormal> { -0.592750 -0.418922 0.687805 }
+      }
+      <Normal> { -0.585315 -0.362499 -0.725211 }
+    }
+    <Vertex> 5792 {
+      1.18253922462 -61.3578720093 17.8202610016
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.552686 0.832675 0.034492 }
+        <Binormal> { -0.830935 -0.553696 0.052250 }
+      }
+      <Normal> { -0.054201 -0.012879 -0.998444 }
+    }
+    <Vertex> 5793 {
+      2.04483437538 -61.165222168 17.7630882263
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.554418 0.831740 0.028792 }
+        <Binormal> { -0.592750 -0.418922 0.687805 }
+      }
+      <Normal> { -0.585315 -0.362499 -0.725211 }
+    }
+    <Vertex> 5794 {
+      4.44768333435 -64.0054702759 18.4704265594
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.606367 0.768118 -0.205702 }
+        <Binormal> { -0.479041 -0.177045 0.751004 }
+      }
+      <Normal> { -0.286691 -0.875362 -0.389233 }
+    }
+    <Vertex> 5795 {
+      3.30636048317 -64.2518005371 18.6485347748
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.576507 0.785551 -0.224833 }
+        <Binormal> { -0.755195 -0.488415 0.229949 }
+      }
+      <Normal> { 0.143529 -0.594440 -0.791223 }
+    }
+    <Vertex> 5796 {
+      1.18253922462 -61.3578720093 17.8202610016
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.552686 0.832675 0.034492 }
+        <Binormal> { -0.830935 -0.553696 0.052250 }
+      }
+      <Normal> { -0.054201 -0.012879 -0.998444 }
+    }
+    <Vertex> 5797 {
+      3.30636048317 -64.2518005371 18.6485347748
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.576507 0.785551 -0.224833 }
+        <Binormal> { -0.755195 -0.488415 0.229949 }
+      }
+      <Normal> { 0.143529 -0.594440 -0.791223 }
+    }
+    <Vertex> 5798 {
+      2.69709229469 -64.4769821167 18.7063312531
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.584349 0.776847 -0.234618 }
+        <Binormal> { -0.502616 -0.128741 0.825558 }
+      }
+      <Normal> { -0.481521 -0.772637 -0.413648 }
+    }
+    <Vertex> 5799 {
+      0.390968948603 -61.4816398621 17.7559661865
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.554871 0.831300 0.032547 }
+        <Binormal> { -0.602251 -0.428359 0.673616 }
+      }
+      <Normal> { -0.575488 -0.351817 -0.738243 }
+    }
+    <Vertex> 5800 {
+      1.18253922462 -61.3578720093 17.8202610016
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.552686 0.832675 0.034492 }
+        <Binormal> { -0.830935 -0.553696 0.052250 }
+      }
+      <Normal> { -0.054201 -0.012879 -0.998444 }
+    }
+    <Vertex> 5801 {
+      0.390968948603 -61.4816398621 17.7559661865
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.554871 0.831300 0.032547 }
+        <Binormal> { -0.602251 -0.428359 0.673616 }
+      }
+      <Normal> { -0.575488 -0.351817 -0.738243 }
+    }
+    <Vertex> 5802 {
+      -1.57638907433 -58.074508667 18.9569988251
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.484354 0.826516 0.286831 }
+        <Binormal> { -0.590925 -0.526424 0.519053 }
+      }
+      <Normal> { -0.736381 0.184942 -0.650777 }
+    }
+    <Vertex> 5803 {
+      -0.756666958332 -58.0987281799 18.9326705933
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.490663 0.824638 0.281465 }
+        <Binormal> { -0.839685 -0.464483 -0.102935 }
+      }
+      <Normal> { -0.174322 0.502762 -0.846644 }
+    }
+    <Vertex> 5804 {
+      1.33597314358 -49.8583564758 27.8350524902
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.558355 0.625095 0.545432 }
+        <Binormal> { -0.765307 0.134451 0.629352 }
+      }
+      <Normal> { -0.314158 0.775445 -0.547685 }
+    }
+    <Vertex> 5805 {
+      3.55173397064 -47.9415893555 29.5095386505
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.656612 0.568009 0.496212 }
+        <Binormal> { -0.604042 0.145048 0.633261 }
+      }
+      <Normal> { 0.015320 0.977691 -0.209326 }
+    }
+    <Vertex> 5806 {
+      4.35131406784 -48.3970603943 28.6231327057
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.660681 0.559112 0.500893 }
+        <Binormal> { -0.353499 -0.222896 0.715072 }
+      }
+      <Normal> { -0.141240 0.962798 0.230293 }
+    }
+    <Vertex> 5807 {
+      1.96249687672 -50.376991272 26.806678772
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.555204 0.617695 0.556957 }
+        <Binormal> { -0.575456 -0.197832 0.793051 }
+      }
+      <Normal> { -0.615009 0.744163 -0.260628 }
+    }
+    <Vertex> 5808 {
+      1.33597314358 -49.8583564758 27.8350524902
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.558355 0.625095 0.545432 }
+        <Binormal> { -0.765307 0.134451 0.629352 }
+      }
+      <Normal> { -0.314158 0.775445 -0.547685 }
+    }
+    <Vertex> 5809 {
+      1.96249687672 -50.376991272 26.806678772
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.555204 0.617695 0.556957 }
+        <Binormal> { -0.575456 -0.197832 0.793051 }
+      }
+      <Normal> { -0.615009 0.744163 -0.260628 }
+    }
+    <Vertex> 5810 {
+      0.20112003386 -53.0143852234 24.4598331451
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.457046 0.672984 0.581551 }
+        <Binormal> { -0.614985 -0.232041 0.751845 }
+      }
+      <Normal> { -0.664418 0.666677 -0.337718 }
+    }
+    <Vertex> 5811 {
+      -0.71830868721 -52.8393859863 25.3268032074
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.466426 0.676844 0.569499 }
+        <Binormal> { -0.827480 0.110190 0.546755 }
+      }
+      <Normal> { -0.277444 0.769616 -0.574999 }
+    }
+    <Vertex> 5812 {
+      1.33597314358 -49.8583564758 27.8350524902
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.558355 0.625095 0.545432 }
+        <Binormal> { -0.765307 0.134451 0.629352 }
+      }
+      <Normal> { -0.314158 0.775445 -0.547685 }
+    }
+    <Vertex> 5813 {
+      -0.71830868721 -52.8393859863 25.3268032074
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.466426 0.676844 0.569499 }
+        <Binormal> { -0.827480 0.110190 0.546755 }
+      }
+      <Normal> { -0.277444 0.769616 -0.574999 }
+    }
+    <Vertex> 5814 {
+      -1.17684531212 -52.576335907 25.8701553345
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.470475 0.673124 0.570576 }
+        <Binormal> { -0.342647 -0.455293 0.819654 }
+      }
+      <Normal> { -0.839045 0.541734 -0.049837 }
+    }
+    <Vertex> 5815 {
+      1.03062832355 -49.4599380493 28.530418396
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.574234 0.613517 0.542082 }
+        <Binormal> { -0.294722 -0.462324 0.835451 }
+      }
+      <Normal> { -0.741722 0.662435 0.104923 }
+    }
+    <Vertex> 5816 {
+      1.33597314358 -49.8583564758 27.8350524902
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.558355 0.625095 0.545432 }
+        <Binormal> { -0.765307 0.134451 0.629352 }
+      }
+      <Normal> { -0.314158 0.775445 -0.547685 }
+    }
+    <Vertex> 5817 {
+      1.03062832355 -49.4599380493 28.530418396
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.574234 0.613517 0.542082 }
+        <Binormal> { -0.294722 -0.462324 0.835451 }
+      }
+      <Normal> { -0.741722 0.662435 0.104923 }
+    }
+    <Vertex> 5818 {
+      2.84836363792 -48.2757644653 29.6699867249
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.487951 0.852512 0.187423 }
+        <Binormal> { 0.068254 -0.211164 0.782802 }
+      }
+      <Normal> { -0.423261 0.864772 0.270180 }
+    }
+    <Vertex> 5819 {
+      3.55173397064 -47.9415893555 29.5095386505
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.656612 0.568009 0.496212 }
+        <Binormal> { -0.604042 0.145048 0.633261 }
+      }
+      <Normal> { 0.015320 0.977691 -0.209326 }
+    }
+    <Vertex> 5820 {
+      -1.40306890011 -55.422706604 21.8970947266
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.213782 0.760277 -0.613361 }
+    }
+    <Vertex> 5821 {
+      -0.71830868721 -52.8393859863 25.3268032074
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.157488 0.594136 0.788796 }
+        <Binormal> { -0.948698 -0.128291 0.286044 }
+      }
+      <Normal> { -0.277444 0.769616 -0.574999 }
+    }
+    <Vertex> 5822 {
+      0.20112003386 -53.0143852234 24.4598331451
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.415722 -0.705226 -0.574278 }
+        <Binormal> { 0.621048 0.241173 -0.745745 }
+      }
+      <Normal> { -0.664418 0.666677 -0.337718 }
+    }
+    <Vertex> 5823 {
+      -0.414448976517 -55.2739105225 21.7288970947
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.240018 -0.768187 -0.593489 }
+        <Binormal> { 0.649610 0.327216 -0.686248 }
+      }
+      <Normal> { -0.721366 0.550249 -0.420484 }
+    }
+    <Vertex> 5824 {
+      -1.40306890011 -55.422706604 21.8970947266
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.213782 0.760277 -0.613361 }
+    }
+    <Vertex> 5825 {
+      -0.414448976517 -55.2739105225 21.7288970947
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.240018 -0.768187 -0.593489 }
+        <Binormal> { 0.649610 0.327216 -0.686248 }
+      }
+      <Normal> { -0.721366 0.550249 -0.420484 }
+    }
+    <Vertex> 5826 {
+      0.142042249441 -57.5461273193 18.6940250397
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.323305 -0.703492 -0.632865 }
+        <Binormal> { 0.466542 0.700375 -0.540198 }
+      }
+      <Normal> { -0.823267 0.120609 -0.554643 }
+    }
+    <Vertex> 5827 {
+      -0.756666958332 -58.0987281799 18.9326705933
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.159780 -0.661468 -0.732756 }
+        <Binormal> { 0.928430 0.263012 -0.034977 }
+      }
+      <Normal> { -0.174322 0.502762 -0.846644 }
+    }
+    <Vertex> 5828 {
+      -1.40306890011 -55.422706604 21.8970947266
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.213782 0.760277 -0.613361 }
+    }
+    <Vertex> 5829 {
+      -0.756666958332 -58.0987281799 18.9326705933
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.159780 -0.661468 -0.732756 }
+        <Binormal> { 0.928430 0.263012 -0.034977 }
+      }
+      <Normal> { -0.174322 0.502762 -0.846644 }
+    }
+    <Vertex> 5830 {
+      -1.57638907433 -58.074508667 18.9569988251
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.206726 -0.854383 -0.476723 }
+        <Binormal> { 0.644197 0.485597 -0.590936 }
+      }
+      <Normal> { -0.736381 0.184942 -0.650777 }
+    }
+    <Vertex> 5831 {
+      -2.07242298126 -55.276966095 22.1703720093
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.824549 0.478133 -0.302438 }
+    }
+    <Vertex> 5832 {
+      -1.40306890011 -55.422706604 21.8970947266
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.213782 0.760277 -0.613361 }
+    }
+    <Vertex> 5833 {
+      -2.07242298126 -55.276966095 22.1703720093
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.824549 0.478133 -0.302438 }
+    }
+    <Vertex> 5834 {
+      -1.17684531212 -52.576335907 25.8701553345
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.167504 -0.344411 -0.923732 }
+        <Binormal> { 0.517604 0.766738 -0.379735 }
+      }
+      <Normal> { -0.839045 0.541734 -0.049837 }
+    }
+    <Vertex> 5835 {
+      -0.71830868721 -52.8393859863 25.3268032074
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.157488 0.594136 0.788796 }
+        <Binormal> { -0.948698 -0.128291 0.286044 }
+      }
+      <Normal> { -0.277444 0.769616 -0.574999 }
+    }
+    <Vertex> 5836 {
+      4.17422914505 -64.4882965088 23.7871646881
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.495814 0.133005 -0.858183 }
+        <Binormal> { -0.334141 0.882687 0.329852 }
+      }
+      <Normal> { -0.810816 -0.447768 0.376873 }
+    }
+    <Vertex> 5837 {
+      2.04094743729 -63.3960609436 20.147397995
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.489514 0.250630 -0.835201 }
+        <Binormal> { -0.412030 0.776222 0.474424 }
+      }
+      <Normal> { -0.792047 -0.563646 0.234321 }
+    }
+    <Vertex> 5838 {
+      2.69709229469 -64.4769821167 18.7063312531
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.443143 0.322655 -0.836372 }
+        <Binormal> { -0.779677 0.219425 0.497754 }
+      }
+      <Normal> { -0.481521 -0.772637 -0.413648 }
+    }
+    <Vertex> 5839 {
+      4.20942115784 -66.0391311646 21.9471530914
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.416082 0.289054 -0.862162 }
+        <Binormal> { -0.784503 0.364123 0.500681 }
+      }
+      <Normal> { -0.444105 -0.894803 -0.045106 }
+    }
+    <Vertex> 5840 {
+      4.17422914505 -64.4882965088 23.7871646881
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.495814 0.133005 -0.858183 }
+        <Binormal> { -0.334141 0.882687 0.329852 }
+      }
+      <Normal> { -0.810816 -0.447768 0.376873 }
+    }
+    <Vertex> 5841 {
+      4.20942115784 -66.0391311646 21.9471530914
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.416082 0.289054 -0.862162 }
+        <Binormal> { -0.784503 0.364123 0.500681 }
+      }
+      <Normal> { -0.444105 -0.894803 -0.045106 }
+    }
+    <Vertex> 5842 {
+      5.78391265869 -66.6214065552 25.1025238037
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.769603 0.130363 -0.625074 }
+        <Binormal> { -0.585617 0.245917 0.772310 }
+      }
+      <Normal> { -0.247780 -0.961547 0.118290 }
+    }
+    <Vertex> 5843 {
+      6.19608354568 -64.919960022 27.1696968079
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.719927 0.178832 -0.670614 }
+        <Binormal> { -0.279024 0.805058 0.514225 }
+      }
+      <Normal> { -0.561541 -0.574786 0.595172 }
+    }
+    <Vertex> 5844 {
+      4.17422914505 -64.4882965088 23.7871646881
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.495814 0.133005 -0.858183 }
+        <Binormal> { -0.334141 0.882687 0.329852 }
+      }
+      <Normal> { -0.810816 -0.447768 0.376873 }
+    }
+    <Vertex> 5845 {
+      6.19608354568 -64.919960022 27.1696968079
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.719927 0.178832 -0.670614 }
+        <Binormal> { -0.279024 0.805058 0.514225 }
+      }
+      <Normal> { -0.561541 -0.574786 0.595172 }
+    }
+    <Vertex> 5846 {
+      6.95615911484 -61.3759651184 30.5615463257
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.758054 0.338760 -0.557311 }
+        <Binormal> { -0.001578 0.833070 0.508526 }
+      }
+      <Normal> { -0.471633 -0.460067 0.752220 }
+    }
+    <Vertex> 5847 {
+      3.72451853752 -62.1558456421 25.5012397766
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.520744 -0.057968 -0.851743 }
+        <Binormal> { -0.442641 0.870592 0.211374 }
+      }
+      <Normal> { -0.748894 -0.489273 0.446913 }
+    }
+    <Vertex> 5848 {
+      4.17422914505 -64.4882965088 23.7871646881
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.495814 0.133005 -0.858183 }
+        <Binormal> { -0.334141 0.882687 0.329852 }
+      }
+      <Normal> { -0.810816 -0.447768 0.376873 }
+    }
+    <Vertex> 5849 {
+      3.72451853752 -62.1558456421 25.5012397766
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.520744 -0.057968 -0.851743 }
+        <Binormal> { -0.442641 0.870592 0.211374 }
+      }
+      <Normal> { -0.748894 -0.489273 0.446913 }
+    }
+    <Vertex> 5850 {
+      1.91504585743 -61.9371261597 22.3161640167
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.493452 0.164072 -0.854158 }
+        <Binormal> { -0.412977 0.819857 0.396062 }
+      }
+      <Normal> { -0.755943 -0.551286 0.352947 }
+    }
+    <Vertex> 5851 {
+      2.04094743729 -63.3960609436 20.147397995
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.489514 0.250630 -0.835201 }
+        <Binormal> { -0.412030 0.776222 0.474424 }
+      }
+      <Normal> { -0.792047 -0.563646 0.234321 }
+    }
+    <Vertex> 5852 {
+      8.15692710876 -65.4776077271 27.4970588684
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.982037 0.149335 0.115334 }
+        <Binormal> { 0.186098 0.672602 0.713684 }
+      }
+      <Normal> { 0.029695 -0.731254 0.681417 }
+    }
+    <Vertex> 5853 {
+      8.27652549744 -66.6771774292 25.7965221405
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.990993 -0.119916 -0.059600 }
+        <Binormal> { -0.069326 0.078819 0.994133 }
+      }
+      <Normal> { 0.089236 -0.992370 0.084902 }
+    }
+    <Vertex> 5854 {
+      11.3368883133 -65.9494628906 25.4364871979
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.962404 -0.171920 0.210291 }
+        <Binormal> { 0.189781 0.108251 0.957036 }
+      }
+      <Normal> { 0.370769 -0.928190 0.031465 }
+    }
+    <Vertex> 5855 {
+      10.5710554123 -65.2273788452 26.6608848572
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.940424 -0.097477 0.325732 }
+        <Binormal> { 0.149337 0.741374 0.653012 }
+      }
+      <Normal> { 0.342357 -0.658895 0.669759 }
+    }
+    <Vertex> 5856 {
+      8.15692710876 -65.4776077271 27.4970588684
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.982037 0.149335 0.115334 }
+        <Binormal> { 0.186098 0.672602 0.713684 }
+      }
+      <Normal> { 0.029695 -0.731254 0.681417 }
+    }
+    <Vertex> 5857 {
+      10.5710554123 -65.2273788452 26.6608848572
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.940424 -0.097477 0.325732 }
+        <Binormal> { 0.149337 0.741374 0.653012 }
+      }
+      <Normal> { 0.342357 -0.658895 0.669759 }
+    }
+    <Vertex> 5858 {
+      10.5000171661 -63.6280326843 28.0339202881
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.894995 -0.016929 0.445755 }
+        <Binormal> { 0.268194 0.777407 0.568010 }
+      }
+      <Normal> { 0.384991 -0.627369 0.676870 }
+    }
+    <Vertex> 5859 {
+      8.70036315918 -63.4575080872 29.2964324951
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.723091 0.459513 0.515739 }
+        <Binormal> { 0.678545 0.610345 0.407548 }
+      }
+      <Normal> { 0.149541 -0.658650 0.737419 }
+    }
+    <Vertex> 5860 {
+      8.15692710876 -65.4776077271 27.4970588684
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.982037 0.149335 0.115334 }
+        <Binormal> { 0.186098 0.672602 0.713684 }
+      }
+      <Normal> { 0.029695 -0.731254 0.681417 }
+    }
+    <Vertex> 5861 {
+      8.70036315918 -63.4575080872 29.2964324951
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.723091 0.459513 0.515739 }
+        <Binormal> { 0.678545 0.610345 0.407548 }
+      }
+      <Normal> { 0.149541 -0.658650 0.737419 }
+    }
+    <Vertex> 5862 {
+      6.95615911484 -61.3759651184 30.5615463257
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.758054 0.338760 -0.557311 }
+        <Binormal> { -0.001578 0.833070 0.508526 }
+      }
+      <Normal> { -0.471633 -0.460067 0.752220 }
+    }
+    <Vertex> 5863 {
+      6.19608354568 -64.919960022 27.1696968079
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.719927 0.178832 -0.670614 }
+        <Binormal> { -0.279024 0.805058 0.514225 }
+      }
+      <Normal> { -0.561541 -0.574786 0.595172 }
+    }
+    <Vertex> 5864 {
+      8.15692710876 -65.4776077271 27.4970588684
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.982037 0.149335 0.115334 }
+        <Binormal> { 0.186098 0.672602 0.713684 }
+      }
+      <Normal> { 0.029695 -0.731254 0.681417 }
+    }
+    <Vertex> 5865 {
+      6.19608354568 -64.919960022 27.1696968079
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.719927 0.178832 -0.670614 }
+        <Binormal> { -0.279024 0.805058 0.514225 }
+      }
+      <Normal> { -0.561541 -0.574786 0.595172 }
+    }
+    <Vertex> 5866 {
+      5.78391265869 -66.6214065552 25.1025238037
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.769603 0.130363 -0.625074 }
+        <Binormal> { -0.585617 0.245917 0.772310 }
+      }
+      <Normal> { -0.247780 -0.961547 0.118290 }
+    }
+    <Vertex> 5867 {
+      8.27652549744 -66.6771774292 25.7965221405
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.990993 -0.119916 -0.059600 }
+        <Binormal> { -0.069326 0.078819 0.994133 }
+      }
+      <Normal> { 0.089236 -0.992370 0.084902 }
+    }
+    <Vertex> 5868 {
+      13.9527606964 -63.2353973389 26.5528011322
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.790249 -0.611979 -0.031435 }
+        <Binormal> { -0.456198 0.553291 0.696907 }
+      }
+      <Normal> { 0.408338 -0.565661 0.716392 }
+    }
+    <Vertex> 5869 {
+      14.6146345139 -64.1812820435 25.4297657013
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.802159 -0.594597 -0.054724 }
+        <Binormal> { -0.094506 0.035961 0.994552 }
+      }
+      <Normal> { 0.609302 -0.788202 0.086398 }
+    }
+    <Vertex> 5870 {
+      16.134727478 -62.3930854797 25.7638015747
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.714666 -0.695506 -0.074320 }
+        <Binormal> { -0.096866 -0.003563 0.964809 }
+      }
+      <Normal> { 0.845882 -0.526811 0.082980 }
+    }
+    <Vertex> 5871 {
+      16.5601425171 -61.0067749023 26.6479949951
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.759867 -0.649486 -0.027742 }
+        <Binormal> { -0.353500 0.381569 0.749363 }
+      }
+      <Normal> { 0.787408 -0.313150 0.530900 }
+    }
+    <Vertex> 5872 {
+      13.9527606964 -63.2353973389 26.5528011322
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.790249 -0.611979 -0.031435 }
+        <Binormal> { -0.456198 0.553291 0.696907 }
+      }
+      <Normal> { 0.408338 -0.565661 0.716392 }
+    }
+    <Vertex> 5873 {
+      16.5601425171 -61.0067749023 26.6479949951
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.759867 -0.649486 -0.027742 }
+        <Binormal> { -0.353500 0.381569 0.749363 }
+      }
+      <Normal> { 0.787408 -0.313150 0.530900 }
+    }
+    <Vertex> 5874 {
+      15.4619607925 -58.7914543152 28.5970973969
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.331105 0.795859 0.506867 }
+        <Binormal> { 0.558842 0.598245 -0.574280 }
+      }
+      <Normal> { 0.760277 -0.093112 0.642842 }
+    }
+    <Vertex> 5875 {
+      12.5545082092 -61.9969100952 28.2067451477
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.713742 -0.695709 -0.081009 }
+        <Binormal> { -0.522711 0.452210 0.721823 }
+      }
+      <Normal> { 0.440870 -0.581591 0.683615 }
+    }
+    <Vertex> 5876 {
+      13.9527606964 -63.2353973389 26.5528011322
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.790249 -0.611979 -0.031435 }
+        <Binormal> { -0.456198 0.553291 0.696907 }
+      }
+      <Normal> { 0.408338 -0.565661 0.716392 }
+    }
+    <Vertex> 5877 {
+      12.5545082092 -61.9969100952 28.2067451477
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.713742 -0.695709 -0.081009 }
+        <Binormal> { -0.522711 0.452210 0.721823 }
+      }
+      <Normal> { 0.440870 -0.581591 0.683615 }
+    }
+    <Vertex> 5878 {
+      10.5000171661 -63.6280326843 28.0339202881
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.832082 -0.554564 -0.009909 }
+        <Binormal> { -0.381585 0.559396 0.735525 }
+      }
+      <Normal> { 0.384991 -0.627369 0.676870 }
+    }
+    <Vertex> 5879 {
+      10.5710554123 -65.2273788452 26.6608848572
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.861302 -0.507347 0.027528 }
+        <Binormal> { -0.321662 0.586290 0.741201 }
+      }
+      <Normal> { 0.342357 -0.658895 0.669759 }
+    }
+    <Vertex> 5880 {
+      13.9527606964 -63.2353973389 26.5528011322
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.790249 -0.611979 -0.031435 }
+        <Binormal> { -0.456198 0.553291 0.696907 }
+      }
+      <Normal> { 0.408338 -0.565661 0.716392 }
+    }
+    <Vertex> 5881 {
+      10.5710554123 -65.2273788452 26.6608848572
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.861302 -0.507347 0.027528 }
+        <Binormal> { -0.321662 0.586290 0.741201 }
+      }
+      <Normal> { 0.342357 -0.658895 0.669759 }
+    }
+    <Vertex> 5882 {
+      11.3368883133 -65.9494628906 25.4364871979
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.805595 -0.573685 0.147996 }
+        <Binormal> { 0.119318 0.080220 0.960450 }
+      }
+      <Normal> { 0.370769 -0.928190 0.031465 }
+    }
+    <Vertex> 5883 {
+      14.6146345139 -64.1812820435 25.4297657013
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.802159 -0.594597 -0.054724 }
+        <Binormal> { -0.094506 0.035961 0.994552 }
+      }
+      <Normal> { 0.609302 -0.788202 0.086398 }
+    }
+    <Vertex> 5884 {
+      -0.254177510738 -60.8567047119 19.0483417511
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.569642 0.821643 0.020286 }
+        <Binormal> { 0.098895 0.044024 0.993955 }
+      }
+      <Normal> { -0.825861 -0.553667 0.106693 }
+    }
+    <Vertex> 5885 {
+      -1.79658377171 -57.8617210388 20.2230319977
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.432319 0.839460 0.329252 }
+        <Binormal> { 0.234524 -0.244708 0.931844 }
+      }
+      <Normal> { -0.918699 -0.371563 0.133641 }
+    }
+    <Vertex> 5886 {
+      -1.57638907433 -58.074508667 18.9569988251
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.457128 0.833841 0.309425 }
+        <Binormal> { -0.599870 -0.525343 0.529482 }
+      }
+      <Normal> { -0.736381 0.184942 -0.650777 }
+    }
+    <Vertex> 5887 {
+      0.390968948603 -61.4816398621 17.7559661865
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.554871 0.831300 0.032547 }
+        <Binormal> { -0.602251 -0.428359 0.673616 }
+      }
+      <Normal> { -0.575488 -0.351817 -0.738243 }
+    }
+    <Vertex> 5888 {
+      -0.254177510738 -60.8567047119 19.0483417511
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.569642 0.821643 0.020286 }
+        <Binormal> { 0.098895 0.044024 0.993955 }
+      }
+      <Normal> { -0.825861 -0.553667 0.106693 }
+    }
+    <Vertex> 5889 {
+      0.390968948603 -61.4816398621 17.7559661865
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.554871 0.831300 0.032547 }
+        <Binormal> { -0.602251 -0.428359 0.673616 }
+      }
+      <Normal> { -0.575488 -0.351817 -0.738243 }
+    }
+    <Vertex> 5890 {
+      2.69709229469 -64.4769821167 18.7063312531
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.614843 0.739576 -0.273854 }
+        <Binormal> { -0.517514 -0.122462 0.831172 }
+      }
+      <Normal> { -0.481521 -0.772637 -0.413648 }
+    }
+    <Vertex> 5891 {
+      2.04094743729 -63.3960609436 20.147397995
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.638426 0.706362 -0.305720 }
+        <Binormal> { -0.006802 0.391741 0.919318 }
+      }
+      <Normal> { -0.792047 -0.563646 0.234321 }
+    }
+    <Vertex> 5892 {
+      -0.254177510738 -60.8567047119 19.0483417511
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.569642 0.821643 0.020286 }
+        <Binormal> { 0.098895 0.044024 0.993955 }
+      }
+      <Normal> { -0.825861 -0.553667 0.106693 }
+    }
+    <Vertex> 5893 {
+      2.04094743729 -63.3960609436 20.147397995
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.638426 0.706362 -0.305720 }
+        <Binormal> { -0.006802 0.391741 0.919318 }
+      }
+      <Normal> { -0.792047 -0.563646 0.234321 }
+    }
+    <Vertex> 5894 {
+      1.91504585743 -61.9371261597 22.3161640167
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.663412 0.693579 -0.280772 }
+        <Binormal> { 0.090010 0.446397 0.890036 }
+      }
+      <Normal> { -0.755943 -0.551286 0.352947 }
+    }
+    <Vertex> 5895 {
+      0.0693439394236 -60.1473617554 21.6627197266
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.590887 0.806348 0.025615 }
+        <Binormal> { 0.288942 0.181882 0.939765 }
+      }
+      <Normal> { -0.761681 -0.551012 0.340831 }
+    }
+    <Vertex> 5896 {
+      -0.254177510738 -60.8567047119 19.0483417511
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.569642 0.821643 0.020286 }
+        <Binormal> { 0.098895 0.044024 0.993955 }
+      }
+      <Normal> { -0.825861 -0.553667 0.106693 }
+    }
+    <Vertex> 5897 {
+      0.0693439394236 -60.1473617554 21.6627197266
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.590887 0.806348 0.025615 }
+        <Binormal> { 0.288942 0.181882 0.939765 }
+      }
+      <Normal> { -0.761681 -0.551012 0.340831 }
+    }
+    <Vertex> 5898 {
+      -1.13030791283 -57.7813148499 22.448179245
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.433007 0.846578 0.309534 }
+        <Binormal> { 0.452033 -0.091594 0.882862 }
+      }
+      <Normal> { -0.813898 -0.447645 0.370281 }
+    }
+    <Vertex> 5899 {
+      -1.79658377171 -57.8617210388 20.2230319977
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.432319 0.839460 0.329252 }
+        <Binormal> { 0.234524 -0.244708 0.931844 }
+      }
+      <Normal> { -0.918699 -0.371563 0.133641 }
+    }
+    <Vertex> 5900 {
+      1.80385303497 -50.289226532 29.4709873199
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.548766 0.711720 -0.438532 }
+        <Binormal> { 0.550798 0.700809 0.448134 }
+      }
+      <Normal> { -0.663533 0.043947 0.746818 }
+    }
+    <Vertex> 5901 {
+      1.03062832355 -49.4599380493 28.530418396
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.524867 0.562923 -0.638461 }
+        <Binormal> { 0.482002 0.528631 0.069842 }
+      }
+      <Normal> { -0.741722 0.662435 0.104923 }
+    }
+    <Vertex> 5902 {
+      -1.17684531212 -52.576335907 25.8701553345
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.167504 -0.344411 -0.923732 }
+        <Binormal> { 0.517604 0.766738 -0.379735 }
+      }
+      <Normal> { -0.839045 0.541734 -0.049837 }
+    }
+    <Vertex> 5903 {
+      -0.323559612036 -53.0286445618 27.0135822296
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.622999 0.467943 -0.626819 }
+        <Binormal> { 0.180215 0.864179 0.466024 }
+      }
+      <Normal> { -0.796442 -0.149815 0.585803 }
+    }
+    <Vertex> 5904 {
+      1.80385303497 -50.289226532 29.4709873199
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.548766 0.711720 -0.438532 }
+        <Binormal> { 0.550798 0.700809 0.448134 }
+      }
+      <Normal> { -0.663533 0.043947 0.746818 }
+    }
+    <Vertex> 5905 {
+      -0.323559612036 -53.0286445618 27.0135822296
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.622999 0.467943 -0.626819 }
+        <Binormal> { 0.180215 0.864179 0.466024 }
+      }
+      <Normal> { -0.796442 -0.149815 0.585803 }
+    }
+    <Vertex> 5906 {
+      1.05210494995 -54.2505302429 28.1127758026
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.188815 0.966731 0.172571 }
+        <Binormal> { 0.669526 -0.001628 0.741667 }
+      }
+      <Normal> { -0.724906 -0.216498 0.653920 }
+    }
+    <Vertex> 5907 {
+      3.0478978157 -52.4273338318 30.2153244019
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.379627 0.914879 -0.137406 }
+        <Binormal> { 0.727590 0.386952 0.566220 }
+      }
+      <Normal> { -0.576922 -0.101169 0.810480 }
+    }
+    <Vertex> 5908 {
+      1.80385303497 -50.289226532 29.4709873199
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.548766 0.711720 -0.438532 }
+        <Binormal> { 0.550798 0.700809 0.448134 }
+      }
+      <Normal> { -0.663533 0.043947 0.746818 }
+    }
+    <Vertex> 5909 {
+      3.0478978157 -52.4273338318 30.2153244019
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.379627 0.914879 -0.137406 }
+        <Binormal> { 0.727590 0.386952 0.566220 }
+      }
+      <Normal> { -0.576922 -0.101169 0.810480 }
+    }
+    <Vertex> 5910 {
+      5.24601078033 -50.850528717 31.4785003662
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.159039 0.977787 -0.136529 }
+        <Binormal> { 0.977753 0.166541 0.053766 }
+      }
+      <Normal> { -0.093661 0.237770 0.966765 }
+    }
+    <Vertex> 5911 {
+      3.79164528847 -48.3936042786 30.6535129547
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.606100 0.650873 -0.457173 }
+        <Binormal> { 0.769095 0.616515 -0.141905 }
+      }
+      <Normal> { -0.244301 0.496475 0.832911 }
+    }
+    <Vertex> 5912 {
+      1.80385303497 -50.289226532 29.4709873199
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.548766 0.711720 -0.438532 }
+        <Binormal> { 0.550798 0.700809 0.448134 }
+      }
+      <Normal> { -0.663533 0.043947 0.746818 }
+    }
+    <Vertex> 5913 {
+      3.79164528847 -48.3936042786 30.6535129547
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.606100 0.650873 -0.457173 }
+        <Binormal> { 0.769095 0.616515 -0.141905 }
+      }
+      <Normal> { -0.244301 0.496475 0.832911 }
+    }
+    <Vertex> 5914 {
+      2.84836363792 -48.2757644653 29.6699867249
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.487951 0.852512 0.187423 }
+        <Binormal> { 0.068254 -0.211164 0.782802 }
+      }
+      <Normal> { -0.423261 0.864772 0.270180 }
+    }
+    <Vertex> 5915 {
+      1.03062832355 -49.4599380493 28.530418396
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.524867 0.562923 -0.638461 }
+        <Binormal> { 0.482002 0.528631 0.069842 }
+      }
+      <Normal> { -0.741722 0.662435 0.104923 }
+    }
+    <Vertex> 5916 {
+      -1.6717082262 -55.4025840759 23.4045219421
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.901364 -0.254341 0.350475 }
+    }
+    <Vertex> 5917 {
+      -0.323559612036 -53.0286445618 27.0135822296
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.297913 0.524592 0.797528 }
+        <Binormal> { 0.426789 -0.809703 0.373175 }
+      }
+      <Normal> { -0.796442 -0.149815 0.585803 }
+    }
+    <Vertex> 5918 {
+      -1.17684531212 -52.576335907 25.8701553345
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.167504 -0.344411 -0.923732 }
+        <Binormal> { 0.517604 0.766738 -0.379735 }
+      }
+      <Normal> { -0.839045 0.541734 -0.049837 }
+    }
+    <Vertex> 5919 {
+      -2.07242298126 -55.276966095 22.1703720093
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.824549 0.478133 -0.302438 }
+    }
+    <Vertex> 5920 {
+      -1.6717082262 -55.4025840759 23.4045219421
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.901364 -0.254341 0.350475 }
+    }
+    <Vertex> 5921 {
+      -2.07242298126 -55.276966095 22.1703720093
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.824549 0.478133 -0.302438 }
+    }
+    <Vertex> 5922 {
+      -1.57638907433 -58.074508667 18.9569988251
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.206726 -0.854383 -0.476723 }
+        <Binormal> { 0.644197 0.485597 -0.590936 }
+      }
+      <Normal> { -0.736381 0.184942 -0.650777 }
+    }
+    <Vertex> 5923 {
+      -1.79658377171 -57.8617210388 20.2230319977
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.031040 -0.611264 -0.790818 }
+        <Binormal> { -0.375528 0.730672 -0.550034 }
+      }
+      <Normal> { -0.918699 -0.371563 0.133641 }
+    }
+    <Vertex> 5924 {
+      -1.6717082262 -55.4025840759 23.4045219421
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.901364 -0.254341 0.350475 }
+    }
+    <Vertex> 5925 {
+      -1.79658377171 -57.8617210388 20.2230319977
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.031040 -0.611264 -0.790818 }
+        <Binormal> { -0.375528 0.730672 -0.550034 }
+      }
+      <Normal> { -0.918699 -0.371563 0.133641 }
+    }
+    <Vertex> 5926 {
+      -1.13030791283 -57.7813148499 22.448179245
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.412490 -0.003507 -0.910914 }
+        <Binormal> { -0.409096 0.894196 0.181809 }
+      }
+      <Normal> { -0.813898 -0.447645 0.370281 }
+    }
+    <Vertex> 5927 {
+      -0.671230614185 -55.8437271118 24.9683361053
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.578848 0.374223 -0.724449 }
+        <Binormal> { -0.055097 0.868483 0.492649 }
+      }
+      <Normal> { -0.813532 -0.325083 0.482101 }
+    }
+    <Vertex> 5928 {
+      -1.6717082262 -55.4025840759 23.4045219421
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.901364 -0.254341 0.350475 }
+    }
+    <Vertex> 5929 {
+      -0.671230614185 -55.8437271118 24.9683361053
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.578848 0.374223 -0.724449 }
+        <Binormal> { -0.055097 0.868483 0.492649 }
+      }
+      <Normal> { -0.813532 -0.325083 0.482101 }
+    }
+    <Vertex> 5930 {
+      1.05210494995 -54.2505302429 28.1127758026
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.541063 0.766474 -0.346035 }
+        <Binormal> { 0.426309 0.604672 0.672780 }
+      }
+      <Normal> { -0.724906 -0.216498 0.653920 }
+    }
+    <Vertex> 5931 {
+      -0.323559612036 -53.0286445618 27.0135822296
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.297913 0.524592 0.797528 }
+        <Binormal> { 0.426789 -0.809703 0.373175 }
+      }
+      <Normal> { -0.796442 -0.149815 0.585803 }
+    }
+    <Vertex> 5932 {
+      0.458703994751 -56.6445350647 26.2306137085
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.340784 0.485658 0.804986 }
+        <Binormal> { 0.549543 -0.797588 0.248551 }
+      }
+      <Normal> { -0.763939 -0.359355 0.535905 }
+    }
+    <Vertex> 5933 {
+      -0.671230614185 -55.8437271118 24.9683361053
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.310770 0.502774 0.806623 }
+        <Binormal> { 0.504607 -0.806036 0.307997 }
+      }
+      <Normal> { -0.813532 -0.325083 0.482101 }
+    }
+    <Vertex> 5934 {
+      -1.13030791283 -57.7813148499 22.448179245
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.162967 0.804078 0.571751 }
+        <Binormal> { 0.553677 -0.405004 0.727389 }
+      }
+      <Normal> { -0.813898 -0.447645 0.370281 }
+    }
+    <Vertex> 5935 {
+      0.709379971027 -58.1542396545 25.349855423
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.143746 0.637604 0.756835 }
+        <Binormal> { 0.660619 -0.630913 0.406047 }
+      }
+      <Normal> { -0.739921 -0.457259 0.493332 }
+    }
+    <Vertex> 5936 {
+      0.458703994751 -56.6445350647 26.2306137085
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.340784 0.485658 0.804986 }
+        <Binormal> { 0.549543 -0.797588 0.248551 }
+      }
+      <Normal> { -0.763939 -0.359355 0.535905 }
+    }
+    <Vertex> 5937 {
+      0.709379971027 -58.1542396545 25.349855423
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.143746 0.637604 0.756835 }
+        <Binormal> { 0.660619 -0.630913 0.406047 }
+      }
+      <Normal> { -0.739921 -0.457259 0.493332 }
+    }
+    <Vertex> 5938 {
+      2.37877416611 -57.9460144043 27.7202358246
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.367100 0.469970 0.802724 }
+        <Binormal> { 0.613311 -0.770354 0.170540 }
+      }
+      <Normal> { -0.685385 -0.412885 0.599780 }
+    }
+    <Vertex> 5939 {
+      2.16070532799 -56.2962188721 28.5234203339
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.502530 0.327205 0.800250 }
+        <Binormal> { 0.454182 -0.884439 0.076417 }
+      }
+      <Normal> { -0.695273 -0.300638 0.652791 }
+    }
+    <Vertex> 5940 {
+      0.458703994751 -56.6445350647 26.2306137085
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.340784 0.485658 0.804986 }
+        <Binormal> { 0.549543 -0.797588 0.248551 }
+      }
+      <Normal> { -0.763939 -0.359355 0.535905 }
+    }
+    <Vertex> 5941 {
+      2.16070532799 -56.2962188721 28.5234203339
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.502530 0.327205 0.800250 }
+        <Binormal> { 0.454182 -0.884439 0.076417 }
+      }
+      <Normal> { -0.695273 -0.300638 0.652791 }
+    }
+    <Vertex> 5942 {
+      1.05210494995 -54.2505302429 28.1127758026
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.188815 0.966731 0.172571 }
+        <Binormal> { 0.669526 -0.001628 0.741667 }
+      }
+      <Normal> { -0.724906 -0.216498 0.653920 }
+    }
+    <Vertex> 5943 {
+      -0.671230614185 -55.8437271118 24.9683361053
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.310770 0.502774 0.806623 }
+        <Binormal> { 0.504607 -0.806036 0.307997 }
+      }
+      <Normal> { -0.813532 -0.325083 0.482101 }
+    }
+    <Vertex> 5944 {
+      2.18377685547 -60.0179138184 25.5644359589
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.651999 0.744451 -0.143841 }
+        <Binormal> { 0.272669 0.407210 0.871572 }
+      }
+      <Normal> { -0.714743 -0.520676 0.466872 }
+    }
+    <Vertex> 5945 {
+      0.709379971027 -58.1542396545 25.349855423
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.617927 0.781075 -0.089932 }
+        <Binormal> { 0.344207 0.371385 0.860487 }
+      }
+      <Normal> { -0.739921 -0.457259 0.493332 }
+    }
+    <Vertex> 5946 {
+      -1.13030791283 -57.7813148499 22.448179245
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.162967 0.804078 0.571751 }
+        <Binormal> { 0.553677 -0.405004 0.727389 }
+      }
+      <Normal> { -0.813898 -0.447645 0.370281 }
+    }
+    <Vertex> 5947 {
+      0.0693439394236 -60.1473617554 21.6627197266
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.590887 0.806348 0.025615 }
+        <Binormal> { 0.288942 0.181882 0.939765 }
+      }
+      <Normal> { -0.761681 -0.551012 0.340831 }
+    }
+    <Vertex> 5948 {
+      2.18377685547 -60.0179138184 25.5644359589
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.651999 0.744451 -0.143841 }
+        <Binormal> { 0.272669 0.407210 0.871572 }
+      }
+      <Normal> { -0.714743 -0.520676 0.466872 }
+    }
+    <Vertex> 5949 {
+      0.0693439394236 -60.1473617554 21.6627197266
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.590887 0.806348 0.025615 }
+        <Binormal> { 0.288942 0.181882 0.939765 }
+      }
+      <Normal> { -0.761681 -0.551012 0.340831 }
+    }
+    <Vertex> 5950 {
+      1.91504585743 -61.9371261597 22.3161640167
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.648806 0.752504 -0.113085 }
+        <Binormal> { 0.203251 0.314480 0.926529 }
+      }
+      <Normal> { -0.755943 -0.551286 0.352947 }
+    }
+    <Vertex> 5951 {
+      3.72451853752 -62.1558456421 25.5012397766
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.584494 0.811044 0.023974 }
+        <Binormal> { 0.374196 0.243264 0.893363 }
+      }
+      <Normal> { -0.748894 -0.489273 0.446913 }
+    }
+    <Vertex> 5952 {
+      2.18377685547 -60.0179138184 25.5644359589
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.651999 0.744451 -0.143841 }
+        <Binormal> { 0.272669 0.407210 0.871572 }
+      }
+      <Normal> { -0.714743 -0.520676 0.466872 }
+    }
+    <Vertex> 5953 {
+      3.72451853752 -62.1558456421 25.5012397766
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.584494 0.811044 0.023974 }
+        <Binormal> { 0.374196 0.243264 0.893363 }
+      }
+      <Normal> { -0.748894 -0.489273 0.446913 }
+    }
+    <Vertex> 5954 {
+      6.95615911484 -61.3759651184 30.5615463257
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.758054 0.338760 -0.557311 }
+        <Binormal> { -0.001578 0.833070 0.508526 }
+      }
+      <Normal> { -0.471633 -0.460067 0.752220 }
+    }
+    <Vertex> 5955 {
+      4.18153047562 -59.08253479 29.0265140533
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.716705 0.537045 -0.444879 }
+        <Binormal> { 0.165627 0.750441 0.639084 }
+      }
+      <Normal> { -0.655446 -0.400555 0.640217 }
+    }
+    <Vertex> 5956 {
+      2.18377685547 -60.0179138184 25.5644359589
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.651999 0.744451 -0.143841 }
+        <Binormal> { 0.272669 0.407210 0.871572 }
+      }
+      <Normal> { -0.714743 -0.520676 0.466872 }
+    }
+    <Vertex> 5957 {
+      4.18153047562 -59.08253479 29.0265140533
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.716705 0.537045 -0.444879 }
+        <Binormal> { 0.165627 0.750441 0.639084 }
+      }
+      <Normal> { -0.655446 -0.400555 0.640217 }
+    }
+    <Vertex> 5958 {
+      2.37877416611 -57.9460144043 27.7202358246
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.697837 0.638861 -0.323852 }
+        <Binormal> { 0.249463 0.640512 0.725992 }
+      }
+      <Normal> { -0.685385 -0.412885 0.599780 }
+    }
+    <Vertex> 5959 {
+      0.709379971027 -58.1542396545 25.349855423
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.617927 0.781075 -0.089932 }
+        <Binormal> { 0.344207 0.371385 0.860487 }
+      }
+      <Normal> { -0.739921 -0.457259 0.493332 }
+    }
+    <Vertex> 5960 {
+      10.693860054 -61.3618621826 30.3011131287
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.722634 0.300534 0.622478 }
+        <Binormal> { 0.587616 0.740876 0.324465 }
+      }
+      <Normal> { 0.348308 -0.593860 0.725211 }
+    }
+    <Vertex> 5961 {
+      9.03054904938 -59.9156417847 31.9637088776
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.602460 0.523829 0.602201 }
+        <Binormal> { 0.711675 0.566971 0.218798 }
+      }
+      <Normal> { 0.014527 -0.375805 0.926572 }
+    }
+    <Vertex> 5962 {
+      6.95615911484 -61.3759651184 30.5615463257
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.945138 0.310525 0.101433 }
+        <Binormal> { 0.280249 0.663113 0.581280 }
+      }
+      <Normal> { -0.471633 -0.460067 0.752220 }
+    }
+    <Vertex> 5963 {
+      8.70036315918 -63.4575080872 29.2964324951
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.723091 0.459513 0.515739 }
+        <Binormal> { 0.678545 0.610345 0.407548 }
+      }
+      <Normal> { 0.149541 -0.658650 0.737419 }
+    }
+    <Vertex> 5964 {
+      10.693860054 -61.3618621826 30.3011131287
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.722634 0.300534 0.622478 }
+        <Binormal> { 0.587616 0.740876 0.324465 }
+      }
+      <Normal> { 0.348308 -0.593860 0.725211 }
+    }
+    <Vertex> 5965 {
+      8.70036315918 -63.4575080872 29.2964324951
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.723091 0.459513 0.515739 }
+        <Binormal> { 0.678545 0.610345 0.407548 }
+      }
+      <Normal> { 0.149541 -0.658650 0.737419 }
+    }
+    <Vertex> 5966 {
+      10.5000171661 -63.6280326843 28.0339202881
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.727486 0.160108 0.667181 }
+        <Binormal> { 0.526941 0.749272 0.394762 }
+      }
+      <Normal> { 0.384991 -0.627369 0.676870 }
+    }
+    <Vertex> 5967 {
+      12.5545082092 -61.9969100952 28.2067451477
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.647729 0.221073 0.729091 }
+        <Binormal> { 0.575162 0.764232 0.279249 }
+      }
+      <Normal> { 0.440870 -0.581591 0.683615 }
+    }
+    <Vertex> 5968 {
+      10.693860054 -61.3618621826 30.3011131287
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.722634 0.300534 0.622478 }
+        <Binormal> { 0.587616 0.740876 0.324465 }
+      }
+      <Normal> { 0.348308 -0.593860 0.725211 }
+    }
+    <Vertex> 5969 {
+      12.5545082092 -61.9969100952 28.2067451477
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.647729 0.221073 0.729091 }
+        <Binormal> { 0.575162 0.764232 0.279249 }
+      }
+      <Normal> { 0.440870 -0.581591 0.683615 }
+    }
+    <Vertex> 5970 {
+      15.4619607925 -58.7914543152 28.5970973969
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.665862 -0.208919 0.716227 }
+        <Binormal> { -0.067613 0.972575 0.220836 }
+      }
+      <Normal> { 0.760277 -0.093112 0.642842 }
+    }
+    <Vertex> 5971 {
+      12.5018510818 -59.2787475586 30.8540077209
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.830328 -0.000585 0.557274 }
+        <Binormal> { 0.184027 0.943155 0.275186 }
+      }
+      <Normal> { 0.502396 -0.331065 0.798700 }
+    }
+    <Vertex> 5972 {
+      10.693860054 -61.3618621826 30.3011131287
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.722634 0.300534 0.622478 }
+        <Binormal> { 0.587616 0.740876 0.324465 }
+      }
+      <Normal> { 0.348308 -0.593860 0.725211 }
+    }
+    <Vertex> 5973 {
+      12.5018510818 -59.2787475586 30.8540077209
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.830328 -0.000585 0.557274 }
+        <Binormal> { 0.184027 0.943155 0.275186 }
+      }
+      <Normal> { 0.502396 -0.331065 0.798700 }
+    }
+    <Vertex> 5974 {
+      10.6379995346 -58.7948532104 31.8346939087
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.733028 0.401123 0.549336 }
+        <Binormal> { 0.515700 0.828918 0.082871 }
+      }
+      <Normal> { 0.275430 -0.263771 0.924406 }
+    }
+    <Vertex> 5975 {
+      9.03054904938 -59.9156417847 31.9637088776
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.602460 0.523829 0.602201 }
+        <Binormal> { 0.711675 0.566971 0.218798 }
+      }
+      <Normal> { 0.014527 -0.375805 0.926572 }
+    }
+    <Vertex> 5976 {
+      12.4887657166 -57.2962608337 31.2980098724
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { -0.865575 -0.047063 0.498563 }
+        <Binormal> { -0.048400 0.998230 0.010201 }
+      }
+      <Normal> { 0.526017 0.016816 0.850276 }
+    }
+    <Vertex> 5977 {
+      12.5018510818 -59.2787475586 30.8540077209
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.830328 -0.000585 0.557274 }
+        <Binormal> { 0.184027 0.943155 0.275186 }
+      }
+      <Normal> { 0.502396 -0.331065 0.798700 }
+    }
+    <Vertex> 5978 {
+      15.4619607925 -58.7914543152 28.5970973969
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.750775 -0.115114 0.650450 }
+        <Binormal> { -0.013436 0.977152 0.157425 }
+      }
+      <Normal> { 0.760277 -0.093112 0.642842 }
+    }
+    <Vertex> 5979 {
+      13.3697414398 -56.219078064 30.2896232605
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.711324 0.448301 0.541289 }
+        <Binormal> { 0.022270 0.784148 -0.620174 }
+      }
+      <Normal> { 0.702475 0.429090 0.567766 }
+    }
+    <Vertex> 5980 {
+      12.4887657166 -57.2962608337 31.2980098724
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { -0.865575 -0.047063 0.498563 }
+        <Binormal> { -0.048400 0.998230 0.010201 }
+      }
+      <Normal> { 0.526017 0.016816 0.850276 }
+    }
+    <Vertex> 5981 {
+      13.3697414398 -56.219078064 30.2896232605
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.711324 0.448301 0.541289 }
+        <Binormal> { 0.022270 0.784148 -0.620174 }
+      }
+      <Normal> { 0.702475 0.429090 0.567766 }
+    }
+    <Vertex> 5982 {
+      10.5450992584 -54.4684066772 31.5363960266
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.917511 0.043101 0.395367 }
+        <Binormal> { -0.187671 0.812740 -0.524120 }
+      }
+      <Normal> { 0.501450 0.547685 0.669729 }
+    }
+    <Vertex> 5983 {
+      10.2548303604 -56.8194694519 32.2907142639
+      <UV>  {
+        0.791667 0.458333
+        <Tangent> { -0.939603 0.026035 0.341274 }
+        <Binormal> { 0.009671 0.997136 -0.049440 }
+      }
+      <Normal> { 0.288736 0.044618 0.956359 }
+    }
+    <Vertex> 5984 {
+      12.4887657166 -57.2962608337 31.2980098724
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { -0.865575 -0.047063 0.498563 }
+        <Binormal> { -0.048400 0.998230 0.010201 }
+      }
+      <Normal> { 0.526017 0.016816 0.850276 }
+    }
+    <Vertex> 5985 {
+      10.2548303604 -56.8194694519 32.2907142639
+      <UV>  {
+        0.791667 0.458333
+        <Tangent> { -0.939603 0.026035 0.341274 }
+        <Binormal> { 0.009671 0.997136 -0.049440 }
+      }
+      <Normal> { 0.288736 0.044618 0.956359 }
+    }
+    <Vertex> 5986 {
+      10.6379995346 -58.7948532104 31.8346939087
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.965908 -0.006011 0.258815 }
+        <Binormal> { 0.062712 0.964176 0.256435 }
+      }
+      <Normal> { 0.275430 -0.263771 0.924406 }
+    }
+    <Vertex> 5987 {
+      12.5018510818 -59.2787475586 30.8540077209
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.830328 -0.000585 0.557274 }
+        <Binormal> { 0.184027 0.943155 0.275186 }
+      }
+      <Normal> { 0.502396 -0.331065 0.798700 }
+    }
+    <Vertex> 5988 {
+      4.15501403809 -55.9553909302 30.3219890594
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.211395 0.972508 0.097674 }
+        <Binormal> { 0.780664 0.107888 0.615387 }
+      }
+      <Normal> { -0.584887 -0.220344 0.780602 }
+    }
+    <Vertex> 5989 {
+      2.16070532799 -56.2962188721 28.5234203339
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.336208 0.936519 0.099479 }
+        <Binormal> { 0.641258 0.150309 0.752213 }
+      }
+      <Normal> { -0.695273 -0.300638 0.652791 }
+    }
+    <Vertex> 5990 {
+      2.37877416611 -57.9460144043 27.7202358246
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.046825 0.914536 0.401784 }
+        <Binormal> { 0.714412 -0.247292 0.646143 }
+      }
+      <Normal> { -0.685385 -0.412885 0.599780 }
+    }
+    <Vertex> 5991 {
+      4.18153047562 -59.08253479 29.0265140533
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.007834 0.923833 0.382714 }
+        <Binormal> { 0.744753 -0.245833 0.608661 }
+      }
+      <Normal> { -0.655446 -0.400555 0.640217 }
+    }
+    <Vertex> 5992 {
+      4.15501403809 -55.9553909302 30.3219890594
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.211395 0.972508 0.097674 }
+        <Binormal> { 0.780664 0.107888 0.615387 }
+      }
+      <Normal> { -0.584887 -0.220344 0.780602 }
+    }
+    <Vertex> 5993 {
+      4.18153047562 -59.08253479 29.0265140533
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.007834 0.923833 0.382714 }
+        <Binormal> { 0.744753 -0.245833 0.608661 }
+      }
+      <Normal> { -0.655446 -0.400555 0.640217 }
+    }
+    <Vertex> 5994 {
+      6.95615911484 -61.3759651184 30.5615463257
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.082383 0.962209 0.259551 }
+        <Binormal> { 0.843204 -0.060442 0.491712 }
+      }
+      <Normal> { -0.471633 -0.460067 0.752220 }
+    }
+    <Vertex> 5995 {
+      6.24256706238 -55.8589019775 31.5977973938
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.159785 0.983427 0.085674 }
+        <Binormal> { 0.891729 0.106594 0.439545 }
+      }
+      <Normal> { -0.425398 -0.132664 0.895199 }
+    }
+    <Vertex> 5996 {
+      4.15501403809 -55.9553909302 30.3219890594
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.211395 0.972508 0.097674 }
+        <Binormal> { 0.780664 0.107888 0.615387 }
+      }
+      <Normal> { -0.584887 -0.220344 0.780602 }
+    }
+    <Vertex> 5997 {
+      6.24256706238 -55.8589019775 31.5977973938
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.159785 0.983427 0.085674 }
+        <Binormal> { 0.891729 0.106594 0.439545 }
+      }
+      <Normal> { -0.425398 -0.132664 0.895199 }
+    }
+    <Vertex> 5998 {
+      5.24601078033 -50.850528717 31.4785003662
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.159039 0.977787 -0.136529 }
+        <Binormal> { 0.977753 0.166541 0.053766 }
+      }
+      <Normal> { -0.093661 0.237770 0.966765 }
+    }
+    <Vertex> 5999 {
+      3.0478978157 -52.4273338318 30.2153244019
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.379627 0.914879 -0.137406 }
+        <Binormal> { 0.727590 0.386952 0.566220 }
+      }
+      <Normal> { -0.576922 -0.101169 0.810480 }
+    }
+    <Vertex> 6000 {
+      4.15501403809 -55.9553909302 30.3219890594
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.211395 0.972508 0.097674 }
+        <Binormal> { 0.780664 0.107888 0.615387 }
+      }
+      <Normal> { -0.584887 -0.220344 0.780602 }
+    }
+    <Vertex> 6001 {
+      3.0478978157 -52.4273338318 30.2153244019
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.379627 0.914879 -0.137406 }
+        <Binormal> { 0.727590 0.386952 0.566220 }
+      }
+      <Normal> { -0.576922 -0.101169 0.810480 }
+    }
+    <Vertex> 6002 {
+      1.05210494995 -54.2505302429 28.1127758026
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.188815 0.966731 0.172571 }
+        <Binormal> { 0.669526 -0.001628 0.741667 }
+      }
+      <Normal> { -0.724906 -0.216498 0.653920 }
+    }
+    <Vertex> 6003 {
+      2.16070532799 -56.2962188721 28.5234203339
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.336208 0.936519 0.099479 }
+        <Binormal> { 0.641258 0.150309 0.752213 }
+      }
+      <Normal> { -0.695273 -0.300638 0.652791 }
+    }
+    <Vertex> 6004 {
+      8.22430229187 -56.2436447144 32.3223419189
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.979148 0.155892 -0.130255 }
+        <Binormal> { 0.151911 0.987011 0.039335 }
+      }
+      <Normal> { -0.101657 -0.023988 0.994507 }
+    }
+    <Vertex> 6005 {
+      6.24256706238 -55.8589019775 31.5977973938
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.923962 0.179382 -0.337811 }
+        <Binormal> { 0.115767 0.970834 0.198885 }
+      }
+      <Normal> { -0.425398 -0.132664 0.895199 }
+    }
+    <Vertex> 6006 {
+      6.95615911484 -61.3759651184 30.5615463257
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.945138 0.310525 0.101433 }
+        <Binormal> { 0.280249 0.663113 0.581280 }
+      }
+      <Normal> { -0.471633 -0.460067 0.752220 }
+    }
+    <Vertex> 6007 {
+      9.03054904938 -59.9156417847 31.9637088776
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.787859 -0.552320 -0.272435 }
+        <Binormal> { -0.614147 0.726051 0.304105 }
+      }
+      <Normal> { 0.014527 -0.375805 0.926572 }
+    }
+    <Vertex> 6008 {
+      8.22430229187 -56.2436447144 32.3223419189
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.979148 0.155892 -0.130255 }
+        <Binormal> { 0.151911 0.987011 0.039335 }
+      }
+      <Normal> { -0.101657 -0.023988 0.994507 }
+    }
+    <Vertex> 6009 {
+      9.03054904938 -59.9156417847 31.9637088776
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.787859 -0.552320 -0.272435 }
+        <Binormal> { -0.614147 0.726051 0.304105 }
+      }
+      <Normal> { 0.014527 -0.375805 0.926572 }
+    }
+    <Vertex> 6010 {
+      10.6379995346 -58.7948532104 31.8346939087
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.965908 -0.006011 0.258815 }
+        <Binormal> { 0.062712 0.964176 0.256435 }
+      }
+      <Normal> { 0.275430 -0.263771 0.924406 }
+    }
+    <Vertex> 6011 {
+      10.2548303604 -56.8194694519 32.2907142639
+      <UV>  {
+        0.791667 0.458333
+        <Tangent> { -0.939603 0.026035 0.341274 }
+        <Binormal> { 0.009671 0.997136 -0.049440 }
+      }
+      <Normal> { 0.288736 0.044618 0.956359 }
+    }
+    <Vertex> 6012 {
+      8.22430229187 -56.2436447144 32.3223419189
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.979148 0.155892 -0.130255 }
+        <Binormal> { 0.151911 0.987011 0.039335 }
+      }
+      <Normal> { -0.101657 -0.023988 0.994507 }
+    }
+    <Vertex> 6013 {
+      10.2548303604 -56.8194694519 32.2907142639
+      <UV>  {
+        0.791667 0.458333
+        <Tangent> { -0.939603 0.026035 0.341274 }
+        <Binormal> { 0.009671 0.997136 -0.049440 }
+      }
+      <Normal> { 0.288736 0.044618 0.956359 }
+    }
+    <Vertex> 6014 {
+      10.5450992584 -54.4684066772 31.5363960266
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.917511 0.043101 0.395367 }
+        <Binormal> { -0.187671 0.812740 -0.524120 }
+      }
+      <Normal> { 0.501450 0.547685 0.669729 }
+    }
+    <Vertex> 6015 {
+      7.93869447708 -52.8322219849 31.8540382385
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.265236 0.455428 0.849818 }
+    }
+    <Vertex> 6016 {
+      8.22430229187 -56.2436447144 32.3223419189
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.979148 0.155892 -0.130255 }
+        <Binormal> { 0.151911 0.987011 0.039335 }
+      }
+      <Normal> { -0.101657 -0.023988 0.994507 }
+    }
+    <Vertex> 6017 {
+      7.93869447708 -52.8322219849 31.8540382385
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.265236 0.455428 0.849818 }
+    }
+    <Vertex> 6018 {
+      5.24601078033 -50.850528717 31.4785003662
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.873145 0.442032 -0.205487 }
+        <Binormal> { 0.476200 0.863373 -0.166206 }
+      }
+      <Normal> { -0.093661 0.237770 0.966765 }
+    }
+    <Vertex> 6019 {
+      6.24256706238 -55.8589019775 31.5977973938
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.923962 0.179382 -0.337811 }
+        <Binormal> { 0.115767 0.970834 0.198885 }
+      }
+      <Normal> { -0.425398 -0.132664 0.895199 }
+    }
+    <Vertex> 6020 {
+      2.328799963 -73.8609008789 14.2929763794
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.995037 -0.080612 -0.058328 }
+        <Binormal> { -0.080604 -0.996618 0.002325 }
+      }
+      <Normal> { 0.044282 -0.001251 0.998993 }
+    }
+    <Vertex> 6021 {
+      4.953083992 -74.1303405762 14.0338163376
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.990005 -0.101645 -0.097768 }
+        <Binormal> { -0.100485 -0.993802 0.015701 }
+      }
+      <Normal> { 0.054598 0.010254 0.998444 }
+    }
+    <Vertex> 6022 {
+      4.19780635834 -71.6193466187 13.99081707
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.963402 0.259921 -0.065560 }
+        <Binormal> { 0.263033 -0.963752 0.044348 }
+      }
+      <Normal> { 0.051088 0.059816 0.996887 }
+    }
+    <Vertex> 6023 {
+      1.38754177094 -72.282951355 14.268406868
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.975195 0.212960 -0.060351 }
+        <Binormal> { 0.215232 -0.975483 0.035709 }
+      }
+      <Normal> { 0.023499 0.041749 0.998840 }
+    }
+    <Vertex> 6024 {
+      2.328799963 -73.8609008789 14.2929763794
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.995037 -0.080612 -0.058328 }
+        <Binormal> { -0.080604 -0.996618 0.002325 }
+      }
+      <Normal> { 0.044282 -0.001251 0.998993 }
+    }
+    <Vertex> 6025 {
+      1.38754177094 -72.282951355 14.268406868
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.975195 0.212960 -0.060351 }
+        <Binormal> { 0.215232 -0.975483 0.035709 }
+      }
+      <Normal> { 0.023499 0.041749 0.998840 }
+    }
+    <Vertex> 6026 {
+      -0.191067636013 -72.5777740479 14.2624254227
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.998886 0.043522 -0.018257 }
+        <Binormal> { 0.043696 -0.995870 0.016695 }
+      }
+      <Normal> { -0.059999 0.014100 0.998077 }
+    }
+    <Vertex> 6027 {
+      0.0906433984637 -73.7323760986 14.368719101
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.997786 -0.057297 -0.033767 }
+        <Binormal> { -0.058000 -0.992609 -0.029548 }
+      }
+      <Normal> { -0.070345 -0.025575 0.997192 }
+    }
+    <Vertex> 6028 {
+      2.328799963 -73.8609008789 14.2929763794
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.995037 -0.080612 -0.058328 }
+        <Binormal> { -0.080604 -0.996618 0.002325 }
+      }
+      <Normal> { 0.044282 -0.001251 0.998993 }
+    }
+    <Vertex> 6029 {
+      0.0906433984637 -73.7323760986 14.368719101
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.997786 -0.057297 -0.033767 }
+        <Binormal> { -0.058000 -0.992609 -0.029548 }
+      }
+      <Normal> { -0.070345 -0.025575 0.997192 }
+    }
+    <Vertex> 6030 {
+      -0.185277283192 -74.8715438843 14.190325737
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.986054 -0.166402 -0.002955 }
+        <Binormal> { -0.165800 -0.981591 -0.050309 }
+      }
+      <Normal> { -0.084597 -0.036744 0.995727 }
+    }
+    <Vertex> 6031 {
+      1.44357275963 -75.3955993652 14.2544813156
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.931950 -0.361371 -0.029655 }
+        <Binormal> { -0.361661 -0.931808 -0.010849 }
+      }
+      <Normal> { -0.002869 -0.010529 0.999939 }
+    }
+    <Vertex> 6032 {
+      2.328799963 -73.8609008789 14.2929763794
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.995037 -0.080612 -0.058328 }
+        <Binormal> { -0.080604 -0.996618 0.002325 }
+      }
+      <Normal> { 0.044282 -0.001251 0.998993 }
+    }
+    <Vertex> 6033 {
+      1.44357275963 -75.3955993652 14.2544813156
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.931950 -0.361371 -0.029655 }
+        <Binormal> { -0.361661 -0.931808 -0.010849 }
+      }
+      <Normal> { -0.002869 -0.010529 0.999939 }
+    }
+    <Vertex> 6034 {
+      4.07204818726 -76.522354126 14.0548553467
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.997954 0.037472 -0.051801 }
+        <Binormal> { 0.037283 -0.999211 -0.004549 }
+      }
+      <Normal> { 0.040132 -0.003052 0.999176 }
+    }
+    <Vertex> 6035 {
+      4.953083992 -74.1303405762 14.0338163376
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.990005 -0.101645 -0.097768 }
+        <Binormal> { -0.100485 -0.993802 0.015701 }
+      }
+      <Normal> { 0.054598 0.010254 0.998444 }
+    }
+    <Vertex> 6036 {
+      8.89688682556 -74.7373199463 13.9474306107
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.021067 0.999717 -0.011081 }
+        <Binormal> { 0.999681 -0.021192 -0.011341 }
+      }
+      <Normal> { 0.011567 0.010559 0.999847 }
+    }
+    <Vertex> 6037 {
+      9.04659843445 -72.1648635864 13.8828315735
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.058081 0.997997 -0.025062 }
+        <Binormal> { 0.998125 -0.058193 -0.004134 }
+      }
+      <Normal> { 0.006561 0.041566 0.999084 }
+    }
+    <Vertex> 6038 {
+      4.19780635834 -71.6193466187 13.99081707
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.963402 0.259921 -0.065560 }
+        <Binormal> { 0.263033 -0.963752 0.044348 }
+      }
+      <Normal> { 0.051088 0.059816 0.996887 }
+    }
+    <Vertex> 6039 {
+      4.953083992 -74.1303405762 14.0338163376
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.025639 0.999586 -0.013056 }
+        <Binormal> { 0.998164 -0.026311 -0.054312 }
+      }
+      <Normal> { 0.054598 0.010254 0.998444 }
+    }
+    <Vertex> 6040 {
+      8.89688682556 -74.7373199463 13.9474306107
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.021067 0.999717 -0.011081 }
+        <Binormal> { 0.999681 -0.021192 -0.011341 }
+      }
+      <Normal> { 0.011567 0.010559 0.999847 }
+    }
+    <Vertex> 6041 {
+      4.953083992 -74.1303405762 14.0338163376
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.025639 0.999586 -0.013056 }
+        <Binormal> { 0.998164 -0.026311 -0.054312 }
+      }
+      <Normal> { 0.054598 0.010254 0.998444 }
+    }
+    <Vertex> 6042 {
+      4.07204818726 -76.522354126 14.0548553467
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.940054 0.340469 -0.019495 }
+        <Binormal> { 0.340129 -0.940061 -0.016533 }
+      }
+      <Normal> { 0.040132 -0.003052 0.999176 }
+    }
+    <Vertex> 6043 {
+      8.89688682556 -77.1921234131 13.9474306107
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { 0.999939 -0.000000 -0.010529 }
+      }
+      <Normal> { 0.010529 -0.000702 0.999939 }
+    }
+    <Vertex> 6044 {
+      8.89688682556 -74.7373199463 13.9474306107
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.021067 0.999717 -0.011081 }
+        <Binormal> { 0.999681 -0.021192 -0.011341 }
+      }
+      <Normal> { 0.011567 0.010559 0.999847 }
+    }
+    <Vertex> 6045 {
+      8.89688682556 -77.1921234131 13.9474306107
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { 0.999939 -0.000000 -0.010529 }
+      }
+      <Normal> { 0.010529 -0.000702 0.999939 }
+    }
+    <Vertex> 6046 {
+      13.5004501343 -77.9678878784 13.9474306107
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { 1.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 6047 {
+      13.5004501343 -75.513092041 13.9474306107
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 0.999983 -0.005824 }
+        <Binormal> { 0.999974 0.000003 0.000549 }
+      }
+      <Normal> { -0.000549 0.008911 0.999939 }
+    }
+    <Vertex> 6048 {
+      8.89688682556 -74.7373199463 13.9474306107
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.021067 0.999717 -0.011081 }
+        <Binormal> { 0.999681 -0.021192 -0.011341 }
+      }
+      <Normal> { 0.011567 0.010559 0.999847 }
+    }
+    <Vertex> 6049 {
+      13.5004501343 -75.513092041 13.9474306107
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 0.999983 -0.005824 }
+        <Binormal> { 0.999974 0.000003 0.000549 }
+      }
+      <Normal> { -0.000549 0.008911 0.999939 }
+    }
+    <Vertex> 6050 {
+      13.5004501343 -72.7486724854 13.9170331955
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.028037 0.999449 -0.017790 }
+        <Binormal> { 0.999451 -0.027860 0.009958 }
+      }
+      <Normal> { -0.009095 0.030976 0.999451 }
+    }
+    <Vertex> 6051 {
+      9.04659843445 -72.1648635864 13.8828315735
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.058081 0.997997 -0.025062 }
+        <Binormal> { 0.998125 -0.058193 -0.004134 }
+      }
+      <Normal> { 0.006561 0.041566 0.999084 }
+    }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 0 1 2 3 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4 5 6 7 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 8 9 10 11 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 12 13 14 15 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 16 17 18 19 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 20 21 22 23 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 24 25 26 27 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 28 29 30 31 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 32 33 34 35 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 36 37 38 39 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 40 41 42 43 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 44 45 46 47 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 48 49 50 51 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 52 53 54 55 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 56 57 58 59 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 60 61 62 63 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 64 65 66 67 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 68 69 70 71 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 72 73 74 75 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 76 77 78 79 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 80 81 82 83 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 84 85 86 87 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 88 89 90 91 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 92 93 94 95 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 96 97 98 99 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 100 101 102 103 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 104 105 106 107 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 108 109 110 111 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 112 113 114 115 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 116 117 118 119 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 120 121 122 123 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 124 125 126 127 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 128 129 130 131 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 132 133 134 135 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 136 137 138 139 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 140 141 142 143 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 144 145 146 147 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 148 149 150 151 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 152 153 154 155 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 156 157 158 159 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 160 161 162 163 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 164 165 166 167 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 168 169 170 171 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 172 173 174 175 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 176 177 178 179 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 180 181 182 183 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 184 185 186 187 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 188 189 190 191 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 192 193 194 195 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 196 197 198 199 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 200 201 202 203 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 204 205 206 207 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 208 209 210 211 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 212 213 214 215 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 216 217 218 219 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 220 221 222 223 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 224 225 226 227 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 228 229 230 231 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 232 233 234 235 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 236 237 238 239 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 240 241 242 243 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 244 245 246 247 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 248 249 250 251 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 252 253 254 255 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 256 257 258 259 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 260 261 262 263 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 264 265 266 267 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 268 269 270 271 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 272 273 274 275 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 276 277 278 279 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 280 281 282 283 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 284 285 286 287 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 288 289 290 291 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 292 293 294 295 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 296 297 298 299 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 300 301 302 303 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 304 305 306 307 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 308 309 310 311 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 312 313 314 315 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 316 317 318 319 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 320 321 322 323 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 324 325 326 327 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 328 329 330 331 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 332 333 334 335 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 336 337 338 339 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 340 341 342 343 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 344 345 346 347 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 348 349 350 351 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 352 353 354 355 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 356 357 358 359 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 360 361 362 363 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 364 365 366 367 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 368 369 370 371 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 372 373 374 375 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 376 377 378 379 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 380 381 382 383 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 384 385 386 387 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 388 389 390 391 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 392 393 394 395 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 396 397 398 399 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 400 401 402 403 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 404 405 406 407 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 408 409 410 411 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 412 413 414 415 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 416 417 418 419 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 420 421 422 423 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 424 425 426 427 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 428 429 430 431 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 432 433 434 435 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 436 437 438 439 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 440 441 442 443 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 444 445 446 447 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 448 449 450 451 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 452 453 454 455 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 456 457 458 459 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 460 461 462 463 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 464 465 466 467 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 468 469 470 471 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 472 473 474 475 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 476 477 478 479 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 480 481 482 483 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 484 485 486 487 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 488 489 490 491 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 492 493 494 495 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 496 497 498 499 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 500 501 502 503 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 504 505 506 507 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 508 509 510 511 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 512 513 514 515 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 516 517 518 519 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 520 521 522 523 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 524 525 526 527 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 528 529 530 531 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 532 533 534 535 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 536 537 538 539 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 540 541 542 543 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 544 545 546 547 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 548 549 550 551 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 552 553 554 555 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 556 557 558 559 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 560 561 562 563 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 564 565 566 567 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 568 569 570 571 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 572 573 574 575 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 576 577 578 579 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 580 581 582 583 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 584 585 586 587 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 588 589 590 591 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 592 593 594 595 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 596 597 598 599 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 600 601 602 603 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 604 605 606 607 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 608 609 610 611 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 612 613 614 615 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 616 617 618 619 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 620 621 622 623 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 624 625 626 627 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 628 629 630 631 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 632 633 634 635 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 636 637 638 639 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 640 641 642 643 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 644 645 646 647 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 648 649 650 651 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 652 653 654 655 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 656 657 658 659 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 660 661 662 663 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 664 665 666 667 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 668 669 670 671 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 672 673 674 675 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 676 677 678 679 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 680 681 682 683 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 684 685 686 687 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 688 689 690 691 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 692 693 694 695 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 696 697 698 699 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 700 701 702 703 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 704 705 706 707 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 708 709 710 711 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 712 713 714 715 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 716 717 718 719 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 720 721 722 723 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 724 725 726 727 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 728 729 730 731 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 732 733 734 735 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 736 737 738 739 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 740 741 742 743 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 744 745 746 747 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 748 749 750 751 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 752 753 754 755 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 756 757 758 759 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 760 761 762 763 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 764 765 766 767 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 768 769 770 771 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 772 773 774 775 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 776 777 778 779 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 780 781 782 783 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 784 785 786 787 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 788 789 790 791 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 792 793 794 795 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 796 797 798 799 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 800 801 802 803 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 804 805 806 807 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 808 809 810 811 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 812 813 814 815 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 816 817 818 819 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 820 821 822 823 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 824 825 826 827 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 828 829 830 831 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 832 833 834 835 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 836 837 838 839 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 840 841 842 843 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 844 845 846 847 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 848 849 850 851 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 852 853 854 855 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 856 857 858 859 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 860 861 862 863 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 864 865 866 867 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 868 869 870 871 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 872 873 874 875 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 876 877 878 879 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 880 881 882 883 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 884 885 886 887 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 888 889 890 891 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 892 893 894 895 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 896 897 898 899 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 900 901 902 903 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 904 905 906 907 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 908 909 910 911 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 912 913 914 915 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 916 917 918 919 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 920 921 922 923 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 924 925 926 927 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 928 929 930 931 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 932 933 934 935 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 936 937 938 939 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 940 941 942 943 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 944 945 946 947 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 948 949 950 951 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 952 953 954 955 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 956 957 958 959 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 960 961 962 963 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 964 965 966 967 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 968 969 970 971 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 972 973 974 975 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 976 977 978 979 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 980 981 982 983 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 984 985 986 987 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 988 989 990 991 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 992 993 994 995 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 996 997 998 999 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1000 1001 1002 1003 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1004 1005 1006 1007 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1008 1009 1010 1011 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1012 1013 1014 1015 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1016 1017 1018 1019 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1020 1021 1022 1023 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1024 1025 1026 1027 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1028 1029 1030 1031 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1032 1033 1034 1035 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1036 1037 1038 1039 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1040 1041 1042 1043 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1044 1045 1046 1047 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1048 1049 1050 1051 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1052 1053 1054 1055 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1056 1057 1058 1059 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1060 1061 1062 1063 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1064 1065 1066 1067 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1068 1069 1070 1071 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1072 1073 1074 1075 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1076 1077 1078 1079 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1080 1081 1082 1083 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1084 1085 1086 1087 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1088 1089 1090 1091 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1092 1093 1094 1095 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1096 1097 1098 1099 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1100 1101 1102 1103 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1104 1105 1106 1107 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1108 1109 1110 1111 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1112 1113 1114 1115 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1116 1117 1118 1119 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1120 1121 1122 1123 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1124 1125 1126 1127 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1128 1129 1130 1131 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1132 1133 1134 1135 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1136 1137 1138 1139 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1140 1141 1142 1143 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1144 1145 1146 1147 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1148 1149 1150 1151 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1152 1153 1154 1155 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1156 1157 1158 1159 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1160 1161 1162 1163 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1164 1165 1166 1167 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1168 1169 1170 1171 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1172 1173 1174 1175 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1176 1177 1178 1179 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1180 1181 1182 1183 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1184 1185 1186 1187 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1188 1189 1190 1191 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1192 1193 1194 1195 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1196 1197 1198 1199 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1200 1201 1202 1203 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1204 1205 1206 1207 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1208 1209 1210 1211 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1212 1213 1214 1215 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1216 1217 1218 1219 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1220 1221 1222 1223 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1224 1225 1226 1227 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1228 1229 1230 1231 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1232 1233 1234 1235 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1236 1237 1238 1239 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1240 1241 1242 1243 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1244 1245 1246 1247 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1248 1249 1250 1251 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1252 1253 1254 1255 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1256 1257 1258 1259 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1260 1261 1262 1263 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1264 1265 1266 1267 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1268 1269 1270 1271 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1272 1273 1274 1275 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1276 1277 1278 1279 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1280 1281 1282 1283 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1284 1285 1286 1287 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1288 1289 1290 1291 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1292 1293 1294 1295 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1296 1297 1298 1299 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1300 1301 1302 1303 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1304 1305 1306 1307 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1308 1309 1310 1311 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1312 1313 1314 1315 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1316 1317 1318 1319 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1320 1321 1322 1323 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1324 1325 1326 1327 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1328 1329 1330 1331 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1332 1333 1334 1335 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1336 1337 1338 1339 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1340 1341 1342 1343 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1344 1345 1346 1347 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1348 1349 1350 1351 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1352 1353 1354 1355 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1356 1357 1358 1359 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1360 1361 1362 1363 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1364 1365 1366 1367 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1368 1369 1370 1371 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1372 1373 1374 1375 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1376 1377 1378 1379 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1380 1381 1382 1383 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1384 1385 1386 1387 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1388 1389 1390 1391 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1392 1393 1394 1395 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1396 1397 1398 1399 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1400 1401 1402 1403 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1404 1405 1406 1407 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1408 1409 1410 1411 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1412 1413 1414 1415 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1416 1417 1418 1419 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1420 1421 1422 1423 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1424 1425 1426 1427 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1428 1429 1430 1431 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1432 1433 1434 1435 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1436 1437 1438 1439 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1440 1441 1442 1443 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1444 1445 1446 1447 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1448 1449 1450 1451 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1452 1453 1454 1455 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1456 1457 1458 1459 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1460 1461 1462 1463 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1464 1465 1466 1467 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1468 1469 1470 1471 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1472 1473 1474 1475 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1476 1477 1478 1479 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1480 1481 1482 1483 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1484 1485 1486 1487 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1488 1489 1490 1491 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1492 1493 1494 1495 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1496 1497 1498 1499 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1500 1501 1502 1503 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1504 1505 1506 1507 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1508 1509 1510 1511 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1512 1513 1514 1515 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1516 1517 1518 1519 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1520 1521 1522 1523 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1524 1525 1526 1527 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1528 1529 1530 1531 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1532 1533 1534 1535 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1536 1537 1538 1539 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1540 1541 1542 1543 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1544 1545 1546 1547 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1548 1549 1550 1551 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1552 1553 1554 1555 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1556 1557 1558 1559 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1560 1561 1562 1563 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1564 1565 1566 1567 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1568 1569 1570 1571 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1572 1573 1574 1575 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1576 1577 1578 1579 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1580 1581 1582 1583 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1584 1585 1586 1587 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1588 1589 1590 1591 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1592 1593 1594 1595 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1596 1597 1598 1599 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1600 1601 1602 1603 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1604 1605 1606 1607 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1608 1609 1610 1611 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1612 1613 1614 1615 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1616 1617 1618 1619 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1620 1621 1622 1623 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1624 1625 1626 1627 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1628 1629 1630 1631 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1632 1633 1634 1635 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1636 1637 1638 1639 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1640 1641 1642 1643 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1644 1645 1646 1647 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1648 1649 1650 1651 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1652 1653 1654 1655 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1656 1657 1658 1659 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1660 1661 1662 1663 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1664 1665 1666 1667 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1668 1669 1670 1671 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1672 1673 1674 1675 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1676 1677 1678 1679 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1680 1681 1682 1683 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1684 1685 1686 1687 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1688 1689 1690 1691 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1692 1693 1694 1695 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1696 1697 1698 1699 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1700 1701 1702 1703 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1704 1705 1706 1707 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1708 1709 1710 1711 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1712 1713 1714 1715 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1716 1717 1718 1719 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1720 1721 1722 1723 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1724 1725 1726 1727 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1728 1729 1730 1731 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1732 1733 1734 1735 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1736 1737 1738 1739 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1740 1741 1742 1743 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1744 1745 1746 1747 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1748 1749 1750 1751 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1752 1753 1754 1755 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1756 1757 1758 1759 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1760 1761 1762 1763 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1764 1765 1766 1767 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1768 1769 1770 1771 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1772 1773 1774 1775 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1776 1777 1778 1779 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1780 1781 1782 1783 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1784 1785 1786 1787 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1788 1789 1790 1791 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1792 1793 1794 1795 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1796 1797 1798 1799 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1800 1801 1802 1803 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1804 1805 1806 1807 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1808 1809 1810 1811 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1812 1813 1814 1815 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1816 1817 1818 1819 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1820 1821 1822 1823 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1824 1825 1826 1827 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1828 1829 1830 1831 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1832 1833 1834 1835 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1836 1837 1838 1839 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1840 1841 1842 1843 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1844 1845 1846 1847 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1848 1849 1850 1851 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1852 1853 1854 1855 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1856 1857 1858 1859 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1860 1861 1862 1863 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1864 1865 1866 1867 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1868 1869 1870 1871 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1872 1873 1874 1875 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1876 1877 1878 1879 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1880 1881 1882 1883 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1884 1885 1886 1887 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1888 1889 1890 1891 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1892 1893 1894 1895 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1896 1897 1898 1899 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1900 1901 1902 1903 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1904 1905 1906 1907 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1908 1909 1910 1911 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1912 1913 1914 1915 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1916 1917 1918 1919 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1920 1921 1922 1923 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1924 1925 1926 1927 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1928 1929 1930 1931 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1932 1933 1934 1935 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1936 1937 1938 1939 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1940 1941 1942 1943 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1944 1945 1946 1947 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1948 1949 1950 1951 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1952 1953 1954 1955 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1956 1957 1958 1959 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1960 1961 1962 1963 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1964 1965 1966 1967 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1968 1969 1970 1971 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1972 1973 1974 1975 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1976 1977 1978 1979 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1980 1981 1982 1983 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1984 1985 1986 1987 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1988 1989 1990 1991 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1992 1993 1994 1995 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 1996 1997 1998 1999 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2000 2001 2002 2003 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2004 2005 2006 2007 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2008 2009 2010 2011 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2012 2013 2014 2015 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2016 2017 2018 2019 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2020 2021 2022 2023 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2024 2025 2026 2027 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2028 2029 2030 2031 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2032 2033 2034 2035 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2036 2037 2038 2039 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2040 2041 2042 2043 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2044 2045 2046 2047 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2048 2049 2050 2051 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2052 2053 2054 2055 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2056 2057 2058 2059 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2060 2061 2062 2063 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2064 2065 2066 2067 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2068 2069 2070 2071 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2072 2073 2074 2075 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2076 2077 2078 2079 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2080 2081 2082 2083 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2084 2085 2086 2087 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2088 2089 2090 2091 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2092 2093 2094 2095 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2096 2097 2098 2099 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2100 2101 2102 2103 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2104 2105 2106 2107 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2108 2109 2110 2111 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2112 2113 2114 2115 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2116 2117 2118 2119 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2120 2121 2122 2123 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2124 2125 2126 2127 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2128 2129 2130 2131 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2132 2133 2134 2135 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2136 2137 2138 2139 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2140 2141 2142 2143 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2144 2145 2146 2147 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2148 2149 2150 2151 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2152 2153 2154 2155 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2156 2157 2158 2159 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2160 2161 2162 2163 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2164 2165 2166 2167 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2168 2169 2170 2171 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2172 2173 2174 2175 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2176 2177 2178 2179 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2180 2181 2182 2183 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2184 2185 2186 2187 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2188 2189 2190 2191 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2192 2193 2194 2195 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2196 2197 2198 2199 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2200 2201 2202 2203 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2204 2205 2206 2207 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2208 2209 2210 2211 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2212 2213 2214 2215 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2216 2217 2218 2219 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2220 2221 2222 2223 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2224 2225 2226 2227 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2228 2229 2230 2231 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2232 2233 2234 2235 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2236 2237 2238 2239 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2240 2241 2242 2243 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2244 2245 2246 2247 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2248 2249 2250 2251 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2252 2253 2254 2255 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2256 2257 2258 2259 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2260 2261 2262 2263 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2264 2265 2266 2267 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2268 2269 2270 2271 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2272 2273 2274 2275 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2276 2277 2278 2279 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2280 2281 2282 2283 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2284 2285 2286 2287 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2288 2289 2290 2291 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2292 2293 2294 2295 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2296 2297 2298 2299 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2300 2301 2302 2303 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2304 2305 2306 2307 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2308 2309 2310 2311 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2312 2313 2314 2315 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2316 2317 2318 2319 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2320 2321 2322 2323 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2324 2325 2326 2327 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2328 2329 2330 2331 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2332 2333 2334 2335 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2336 2337 2338 2339 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2340 2341 2342 2343 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2344 2345 2346 2347 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2348 2349 2350 2351 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2352 2353 2354 2355 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2356 2357 2358 2359 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2360 2361 2362 2363 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2364 2365 2366 2367 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2368 2369 2370 2371 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2372 2373 2374 2375 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2376 2377 2378 2379 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2380 2381 2382 2383 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2384 2385 2386 2387 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2388 2389 2390 2391 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2392 2393 2394 2395 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2396 2397 2398 2399 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2400 2401 2402 2403 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2404 2405 2406 2407 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2408 2409 2410 2411 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2412 2413 2414 2415 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2416 2417 2418 2419 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2420 2421 2422 2423 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2424 2425 2426 2427 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2428 2429 2430 2431 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2432 2433 2434 2435 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2436 2437 2438 2439 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2440 2441 2442 2443 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2444 2445 2446 2447 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2448 2449 2450 2451 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2452 2453 2454 2455 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2456 2457 2458 2459 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2460 2461 2462 2463 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2464 2465 2466 2467 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2468 2469 2470 2471 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2472 2473 2474 2475 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2476 2477 2478 2479 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2480 2481 2482 2483 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2484 2485 2486 2487 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2488 2489 2490 2491 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2492 2493 2494 2495 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2496 2497 2498 2499 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2500 2501 2502 2503 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2504 2505 2506 2507 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2508 2509 2510 2511 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2512 2513 2514 2515 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2516 2517 2518 2519 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2520 2521 2522 2523 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2524 2525 2526 2527 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2528 2529 2530 2531 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2532 2533 2534 2535 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2536 2537 2538 2539 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2540 2541 2542 2543 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2544 2545 2546 2547 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2548 2549 2550 2551 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2552 2553 2554 2555 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2556 2557 2558 2559 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2560 2561 2562 2563 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2564 2565 2566 2567 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2568 2569 2570 2571 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2572 2573 2574 2575 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2576 2577 2578 2579 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2580 2581 2582 2583 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2584 2585 2586 2587 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2588 2589 2590 2591 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2592 2593 2594 2595 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2596 2597 2598 2599 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2600 2601 2602 2603 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2604 2605 2606 2607 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2608 2609 2610 2611 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2612 2613 2614 2615 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2616 2617 2618 2619 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2620 2621 2622 2623 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2624 2625 2626 2627 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2628 2629 2630 2631 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2632 2633 2634 2635 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2636 2637 2638 2639 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2640 2641 2642 2643 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2644 2645 2646 2647 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2648 2649 2650 2651 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2652 2653 2654 2655 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2656 2657 2658 2659 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2660 2661 2662 2663 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2664 2665 2666 2667 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2668 2669 2670 2671 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2672 2673 2674 2675 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2676 2677 2678 2679 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2680 2681 2682 2683 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2684 2685 2686 2687 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2688 2689 2690 2691 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2692 2693 2694 2695 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2696 2697 2698 2699 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2700 2701 2702 2703 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2704 2705 2706 2707 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2708 2709 2710 2711 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2712 2713 2714 2715 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2716 2717 2718 2719 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2720 2721 2722 2723 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2724 2725 2726 2727 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2728 2729 2730 2731 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2732 2733 2734 2735 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2736 2737 2738 2739 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2740 2741 2742 2743 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2744 2745 2746 2747 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2748 2749 2750 2751 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2752 2753 2754 2755 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2756 2757 2758 2759 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2760 2761 2762 2763 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2764 2765 2766 2767 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2768 2769 2770 2771 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2772 2773 2774 2775 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2776 2777 2778 2779 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2780 2781 2782 2783 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2784 2785 2786 2787 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2788 2789 2790 2791 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2792 2793 2794 2795 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2796 2797 2798 2799 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2800 2801 2802 2803 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2804 2805 2806 2807 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2808 2809 2810 2811 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2812 2813 2814 2815 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2816 2817 2818 2819 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2820 2821 2822 2823 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2824 2825 2826 2827 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2828 2829 2830 2831 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2832 2833 2834 2835 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2836 2837 2838 2839 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2840 2841 2842 2843 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2844 2845 2846 2847 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2848 2849 2850 2851 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2852 2853 2854 2855 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2856 2857 2858 2859 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2860 2861 2862 2863 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2864 2865 2866 2867 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2868 2869 2870 2871 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2872 2873 2874 2875 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2876 2877 2878 2879 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2880 2881 2882 2883 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2884 2885 2886 2887 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2888 2889 2890 2891 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2892 2893 2894 2895 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2896 2897 2898 2899 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2900 2901 2902 2903 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2904 2905 2906 2907 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2908 2909 2910 2911 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2912 2913 2914 2915 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2916 2917 2918 2919 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2920 2921 2922 2923 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2924 2925 2926 2927 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2928 2929 2930 2931 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2932 2933 2934 2935 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2936 2937 2938 2939 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2940 2941 2942 2943 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2944 2945 2946 2947 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2948 2949 2950 2951 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2952 2953 2954 2955 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2956 2957 2958 2959 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2960 2961 2962 2963 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2964 2965 2966 2967 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2968 2969 2970 2971 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2972 2973 2974 2975 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2976 2977 2978 2979 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2980 2981 2982 2983 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2984 2985 2986 2987 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2988 2989 2990 2991 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2992 2993 2994 2995 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 2996 2997 2998 2999 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3000 3001 3002 3003 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3004 3005 3006 3007 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3008 3009 3010 3011 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3012 3013 3014 3015 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3016 3017 3018 3019 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3020 3021 3022 3023 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3024 3025 3026 3027 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3028 3029 3030 3031 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3032 3033 3034 3035 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3036 3037 3038 3039 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3040 3041 3042 3043 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3044 3045 3046 3047 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3048 3049 3050 3051 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3052 3053 3054 3055 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3056 3057 3058 3059 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3060 3061 3062 3063 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3064 3065 3066 3067 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3068 3069 3070 3071 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3072 3073 3074 3075 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3076 3077 3078 3079 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3080 3081 3082 3083 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3084 3085 3086 3087 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3088 3089 3090 3091 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3092 3093 3094 3095 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3096 3097 3098 3099 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3100 3101 3102 3103 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3104 3105 3106 3107 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3108 3109 3110 3111 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3112 3113 3114 3115 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3116 3117 3118 3119 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3120 3121 3122 3123 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3124 3125 3126 3127 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3128 3129 3130 3131 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3132 3133 3134 3135 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3136 3137 3138 3139 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3140 3141 3142 3143 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3144 3145 3146 3147 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3148 3149 3150 3151 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3152 3153 3154 3155 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3156 3157 3158 3159 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3160 3161 3162 3163 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3164 3165 3166 3167 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3168 3169 3170 3171 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3172 3173 3174 3175 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3176 3177 3178 3179 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3180 3181 3182 3183 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3184 3185 3186 3187 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3188 3189 3190 3191 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3192 3193 3194 3195 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3196 3197 3198 3199 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3200 3201 3202 3203 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3204 3205 3206 3207 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3208 3209 3210 3211 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3212 3213 3214 3215 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3216 3217 3218 3219 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3220 3221 3222 3223 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3224 3225 3226 3227 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3228 3229 3230 3231 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3232 3233 3234 3235 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3236 3237 3238 3239 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3240 3241 3242 3243 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3244 3245 3246 3247 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3248 3249 3250 3251 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3252 3253 3254 3255 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3256 3257 3258 3259 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3260 3261 3262 3263 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3264 3265 3266 3267 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3268 3269 3270 3271 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3272 3273 3274 3275 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3276 3277 3278 3279 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3280 3281 3282 3283 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3284 3285 3286 3287 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3288 3289 3290 3291 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3292 3293 3294 3295 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3296 3297 3298 3299 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3300 3301 3302 3303 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3304 3305 3306 3307 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3308 3309 3310 3311 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3312 3313 3314 3315 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3316 3317 3318 3319 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3320 3321 3322 3323 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3324 3325 3326 3327 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3328 3329 3330 3331 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3332 3333 3334 3335 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3336 3337 3338 3339 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3340 3341 3342 3343 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3344 3345 3346 3347 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3348 3349 3350 3351 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3352 3353 3354 3355 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3356 3357 3358 3359 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3360 3361 3362 3363 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3364 3365 3366 3367 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3368 3369 3370 3371 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3372 3373 3374 3375 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3376 3377 3378 3379 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3380 3381 3382 3383 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3384 3385 3386 3387 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3388 3389 3390 3391 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3392 3393 3394 3395 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3396 3397 3398 3399 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3400 3401 3402 3403 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3404 3405 3406 3407 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3408 3409 3410 3411 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3412 3413 3414 3415 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3416 3417 3418 3419 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3420 3421 3422 3423 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3424 3425 3426 3427 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3428 3429 3430 3431 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3432 3433 3434 3435 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3436 3437 3438 3439 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3440 3441 3442 3443 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3444 3445 3446 3447 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3448 3449 3450 3451 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3452 3453 3454 3455 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3456 3457 3458 3459 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3460 3461 3462 3463 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3464 3465 3466 3467 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3468 3469 3470 3471 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3472 3473 3474 3475 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3476 3477 3478 3479 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3480 3481 3482 3483 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3484 3485 3486 3487 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3488 3489 3490 3491 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3492 3493 3494 3495 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3496 3497 3498 3499 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3500 3501 3502 3503 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3504 3505 3506 3507 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3508 3509 3510 3511 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3512 3513 3514 3515 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3516 3517 3518 3519 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3520 3521 3522 3523 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3524 3525 3526 3527 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3528 3529 3530 3531 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3532 3533 3534 3535 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3536 3537 3538 3539 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3540 3541 3542 3543 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3544 3545 3546 3547 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3548 3549 3550 3551 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3552 3553 3554 3555 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3556 3557 3558 3559 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3560 3561 3562 3563 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3564 3565 3566 3567 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3568 3569 3570 3571 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3572 3573 3574 3575 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3576 3577 3578 3579 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3580 3581 3582 3583 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3584 3585 3586 3587 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3588 3589 3590 3591 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3592 3593 3594 3595 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3596 3597 3598 3599 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3600 3601 3602 3603 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3604 3605 3606 3607 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3608 3609 3610 3611 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3612 3613 3614 3615 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3616 3617 3618 3619 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3620 3621 3622 3623 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3624 3625 3626 3627 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3628 3629 3630 3631 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3632 3633 3634 3635 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3636 3637 3638 3639 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3640 3641 3642 3643 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3644 3645 3646 3647 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3648 3649 3650 3651 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3652 3653 3654 3655 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3656 3657 3658 3659 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3660 3661 3662 3663 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3664 3665 3666 3667 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3668 3669 3670 3671 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3672 3673 3674 3675 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3676 3677 3678 3679 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3680 3681 3682 3683 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3684 3685 3686 3687 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3688 3689 3690 3691 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3692 3693 3694 3695 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3696 3697 3698 3699 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3700 3701 3702 3703 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3704 3705 3706 3707 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3708 3709 3710 3711 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3712 3713 3714 3715 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3716 3717 3718 3719 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3720 3721 3722 3723 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3724 3725 3726 3727 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3728 3729 3730 3731 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3732 3733 3734 3735 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3736 3737 3738 3739 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3740 3741 3742 3743 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3744 3745 3746 3747 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3748 3749 3750 3751 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3752 3753 3754 3755 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3756 3757 3758 3759 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3760 3761 3762 3763 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3764 3765 3766 3767 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3768 3769 3770 3771 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3772 3773 3774 3775 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3776 3777 3778 3779 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3780 3781 3782 3783 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3784 3785 3786 3787 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3788 3789 3790 3791 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3792 3793 3794 3795 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3796 3797 3798 3799 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3800 3801 3802 3803 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3804 3805 3806 3807 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3808 3809 3810 3811 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3812 3813 3814 3815 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3816 3817 3818 3819 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3820 3821 3822 3823 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3824 3825 3826 3827 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3828 3829 3830 3831 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3832 3833 3834 3835 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3836 3837 3838 3839 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3840 3841 3842 3843 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3844 3845 3846 3847 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3848 3849 3850 3851 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3852 3853 3854 3855 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3856 3857 3858 3859 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3860 3861 3862 3863 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3864 3865 3866 3867 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3868 3869 3870 3871 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3872 3873 3874 3875 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3876 3877 3878 3879 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3880 3881 3882 3883 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3884 3885 3886 3887 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3888 3889 3890 3891 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3892 3893 3894 3895 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3896 3897 3898 3899 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3900 3901 3902 3903 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3904 3905 3906 3907 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3908 3909 3910 3911 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3912 3913 3914 3915 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3916 3917 3918 3919 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3920 3921 3922 3923 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3924 3925 3926 3927 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3928 3929 3930 3931 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3932 3933 3934 3935 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3936 3937 3938 3939 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3940 3941 3942 3943 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3944 3945 3946 3947 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3948 3949 3950 3951 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3952 3953 3954 3955 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3956 3957 3958 3959 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3960 3961 3962 3963 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3964 3965 3966 3967 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3968 3969 3970 3971 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3972 3973 3974 3975 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 3976 3977 3978 3979 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3980 3981 3982 3983 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3984 3985 3986 3987 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3988 3989 3990 3991 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3992 3993 3994 3995 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3996 3997 3998 3999 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4000 4001 4002 4003 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4004 4005 4006 4007 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4008 4009 4010 4011 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4012 4013 4014 4015 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4016 4017 4018 4019 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4020 4021 4022 4023 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4024 4025 4026 4027 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4028 4029 4030 4031 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4032 4033 4034 4035 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4036 4037 4038 4039 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4040 4041 4042 4043 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4044 4045 4046 4047 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4048 4049 4050 4051 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4052 4053 4054 4055 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4056 4057 4058 4059 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4060 4061 4062 4063 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4064 4065 4066 4067 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4068 4069 4070 4071 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4072 4073 4074 4075 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4076 4077 4078 4079 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4080 4081 4082 4083 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4084 4085 4086 4087 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4088 4089 4090 4091 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4092 4093 4094 4095 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4096 4097 4098 4099 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4100 4101 4102 4103 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4104 4105 4106 4107 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4108 4109 4110 4111 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4112 4113 4114 4115 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4116 4117 4118 4119 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4120 4121 4122 4123 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4124 4125 4126 4127 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4128 4129 4130 4131 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4132 4133 4134 4135 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4136 4137 4138 4139 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4140 4141 4142 4143 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4144 4145 4146 4147 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4148 4149 4150 4151 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4152 4153 4154 4155 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4156 4157 4158 4159 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4160 4161 4162 4163 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4164 4165 4166 4167 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4168 4169 4170 4171 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4172 4173 4174 4175 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4176 4177 4178 4179 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4180 4181 4182 4183 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4184 4185 4186 4187 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4188 4189 4190 4191 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4192 4193 4194 4195 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4196 4197 4198 4199 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4200 4201 4202 4203 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4204 4205 4206 4207 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4208 4209 4210 4211 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4212 4213 4214 4215 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4216 4217 4218 4219 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4220 4221 4222 4223 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4224 4225 4226 4227 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4228 4229 4230 4231 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4232 4233 4234 4235 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4236 4237 4238 4239 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4240 4241 4242 4243 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4244 4245 4246 4247 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4248 4249 4250 4251 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4252 4253 4254 4255 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4256 4257 4258 4259 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4260 4261 4262 4263 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4264 4265 4266 4267 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4268 4269 4270 4271 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4272 4273 4274 4275 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4276 4277 4278 4279 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4280 4281 4282 4283 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4284 4285 4286 4287 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4288 4289 4290 4291 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4292 4293 4294 4295 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4296 4297 4298 4299 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4300 4301 4302 4303 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4304 4305 4306 4307 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4308 4309 4310 4311 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4312 4313 4314 4315 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4316 4317 4318 4319 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4320 4321 4322 4323 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4324 4325 4326 4327 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4328 4329 4330 4331 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4332 4333 4334 4335 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4336 4337 4338 4339 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4340 4341 4342 4343 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4344 4345 4346 4347 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4348 4349 4350 4351 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4352 4353 4354 4355 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4356 4357 4358 4359 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4360 4361 4362 4363 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4364 4365 4366 4367 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4368 4369 4370 4371 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4372 4373 4374 4375 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4376 4377 4378 4379 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4380 4381 4382 4383 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4384 4385 4386 4387 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4388 4389 4390 4391 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4392 4393 4394 4395 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4396 4397 4398 4399 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4400 4401 4402 4403 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4404 4405 4406 4407 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4408 4409 4410 4411 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4412 4413 4414 4415 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4416 4417 4418 4419 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4420 4421 4422 4423 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4424 4425 4426 4427 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4428 4429 4430 4431 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4432 4433 4434 4435 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4436 4437 4438 4439 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4440 4441 4442 4443 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4444 4445 4446 4447 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4448 4449 4450 4451 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4452 4453 4454 4455 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4456 4457 4458 4459 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4460 4461 4462 4463 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4464 4465 4466 4467 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4468 4469 4470 4471 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4472 4473 4474 4475 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4476 4477 4478 4479 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4480 4481 4482 4483 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4484 4485 4486 4487 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4488 4489 4490 4491 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4492 4493 4494 4495 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4496 4497 4498 4499 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4500 4501 4502 4503 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4504 4505 4506 4507 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4508 4509 4510 4511 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4512 4513 4514 4515 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4516 4517 4518 4519 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4520 4521 4522 4523 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4524 4525 4526 4527 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4528 4529 4530 4531 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4532 4533 4534 4535 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4536 4537 4538 4539 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4540 4541 4542 4543 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4544 4545 4546 4547 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4548 4549 4550 4551 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4552 4553 4554 4555 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4556 4557 4558 4559 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4560 4561 4562 4563 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4564 4565 4566 4567 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4568 4569 4570 4571 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4572 4573 4574 4575 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4576 4577 4578 4579 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4580 4581 4582 4583 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4584 4585 4586 4587 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4588 4589 4590 4591 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4592 4593 4594 4595 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4596 4597 4598 4599 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4600 4601 4602 4603 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4604 4605 4606 4607 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4608 4609 4610 4611 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4612 4613 4614 4615 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4616 4617 4618 4619 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4620 4621 4622 4623 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4624 4625 4626 4627 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4628 4629 4630 4631 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4632 4633 4634 4635 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4636 4637 4638 4639 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4640 4641 4642 4643 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4644 4645 4646 4647 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4648 4649 4650 4651 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4652 4653 4654 4655 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4656 4657 4658 4659 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4660 4661 4662 4663 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4664 4665 4666 4667 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4668 4669 4670 4671 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4672 4673 4674 4675 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4676 4677 4678 4679 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4680 4681 4682 4683 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4684 4685 4686 4687 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4688 4689 4690 4691 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4692 4693 4694 4695 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4696 4697 4698 4699 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4700 4701 4702 4703 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4704 4705 4706 4707 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4708 4709 4710 4711 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4712 4713 4714 4715 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4716 4717 4718 4719 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4720 4721 4722 4723 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4724 4725 4726 4727 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4728 4729 4730 4731 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4732 4733 4734 4735 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4736 4737 4738 4739 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4740 4741 4742 4743 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4744 4745 4746 4747 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4748 4749 4750 4751 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4752 4753 4754 4755 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4756 4757 4758 4759 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4760 4761 4762 4763 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4764 4765 4766 4767 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4768 4769 4770 4771 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4772 4773 4774 4775 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4776 4777 4778 4779 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4780 4781 4782 4783 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4784 4785 4786 4787 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4788 4789 4790 4791 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4792 4793 4794 4795 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4796 4797 4798 4799 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4800 4801 4802 4803 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4804 4805 4806 4807 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4808 4809 4810 4811 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4812 4813 4814 4815 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4816 4817 4818 4819 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4820 4821 4822 4823 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4824 4825 4826 4827 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4828 4829 4830 4831 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4832 4833 4834 4835 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4836 4837 4838 4839 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4840 4841 4842 4843 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4844 4845 4846 4847 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4848 4849 4850 4851 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4852 4853 4854 4855 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4856 4857 4858 4859 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4860 4861 4862 4863 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4864 4865 4866 4867 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4868 4869 4870 4871 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4872 4873 4874 4875 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4876 4877 4878 4879 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4880 4881 4882 4883 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4884 4885 4886 4887 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4888 4889 4890 4891 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4892 4893 4894 4895 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4896 4897 4898 4899 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4900 4901 4902 4903 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4904 4905 4906 4907 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4908 4909 4910 4911 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4912 4913 4914 4915 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4916 4917 4918 4919 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4920 4921 4922 4923 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4924 4925 4926 4927 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4928 4929 4930 4931 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4932 4933 4934 4935 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4936 4937 4938 4939 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4940 4941 4942 4943 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4944 4945 4946 4947 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4948 4949 4950 4951 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4952 4953 4954 4955 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4956 4957 4958 4959 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4960 4961 4962 4963 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4964 4965 4966 4967 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4968 4969 4970 4971 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4972 4973 4974 4975 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4976 4977 4978 4979 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4980 4981 4982 4983 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4984 4985 4986 4987 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4988 4989 4990 4991 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4992 4993 4994 4995 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 4996 4997 4998 4999 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5000 5001 5002 5003 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5004 5005 5006 5007 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5008 5009 5010 5011 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5012 5013 5014 5015 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5016 5017 5018 5019 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5020 5021 5022 5023 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5024 5025 5026 5027 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5028 5029 5030 5031 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5032 5033 5034 5035 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5036 5037 5038 5039 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5040 5041 5042 5043 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5044 5045 5046 5047 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5048 5049 5050 5051 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5052 5053 5054 5055 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5056 5057 5058 5059 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5060 5061 5062 5063 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5064 5065 5066 5067 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5068 5069 5070 5071 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5072 5073 5074 5075 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5076 5077 5078 5079 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5080 5081 5082 5083 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5084 5085 5086 5087 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5088 5089 5090 5091 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5092 5093 5094 5095 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5096 5097 5098 5099 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5100 5101 5102 5103 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5104 5105 5106 5107 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5108 5109 5110 5111 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5112 5113 5114 5115 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5116 5117 5118 5119 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5120 5121 5122 5123 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5124 5125 5126 5127 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5128 5129 5130 5131 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5132 5133 5134 5135 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5136 5137 5138 5139 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5140 5141 5142 5143 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5144 5145 5146 5147 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5148 5149 5150 5151 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5152 5153 5154 5155 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5156 5157 5158 5159 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5160 5161 5162 5163 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5164 5165 5166 5167 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5168 5169 5170 5171 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5172 5173 5174 5175 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5176 5177 5178 5179 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5180 5181 5182 5183 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5184 5185 5186 5187 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5188 5189 5190 5191 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5192 5193 5194 5195 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5196 5197 5198 5199 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5200 5201 5202 5203 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5204 5205 5206 5207 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5208 5209 5210 5211 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5212 5213 5214 5215 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5216 5217 5218 5219 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5220 5221 5222 5223 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5224 5225 5226 5227 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5228 5229 5230 5231 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5232 5233 5234 5235 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5236 5237 5238 5239 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5240 5241 5242 5243 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5244 5245 5246 5247 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5248 5249 5250 5251 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5252 5253 5254 5255 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5256 5257 5258 5259 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5260 5261 5262 5263 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5264 5265 5266 5267 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5268 5269 5270 5271 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5272 5273 5274 5275 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5276 5277 5278 5279 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5280 5281 5282 5283 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5284 5285 5286 5287 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5288 5289 5290 5291 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5292 5293 5294 5295 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5296 5297 5298 5299 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5300 5301 5302 5303 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5304 5305 5306 5307 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5308 5309 5310 5311 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5312 5313 5314 5315 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5316 5317 5318 5319 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5320 5321 5322 5323 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5324 5325 5326 5327 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5328 5329 5330 5331 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5332 5333 5334 5335 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5336 5337 5338 5339 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5340 5341 5342 5343 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5344 5345 5346 5347 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5348 5349 5350 5351 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5352 5353 5354 5355 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5356 5357 5358 5359 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5360 5361 5362 5363 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5364 5365 5366 5367 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5368 5369 5370 5371 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5372 5373 5374 5375 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5376 5377 5378 5379 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5380 5381 5382 5383 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5384 5385 5386 5387 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5388 5389 5390 5391 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5392 5393 5394 5395 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5396 5397 5398 5399 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5400 5401 5402 5403 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5404 5405 5406 5407 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5408 5409 5410 5411 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5412 5413 5414 5415 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5416 5417 5418 5419 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5420 5421 5422 5423 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5424 5425 5426 5427 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5428 5429 5430 5431 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5432 5433 5434 5435 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5436 5437 5438 5439 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5440 5441 5442 5443 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5444 5445 5446 5447 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5448 5449 5450 5451 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5452 5453 5454 5455 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5456 5457 5458 5459 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5460 5461 5462 5463 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5464 5465 5466 5467 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5468 5469 5470 5471 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5472 5473 5474 5475 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5476 5477 5478 5479 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5480 5481 5482 5483 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5484 5485 5486 5487 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5488 5489 5490 5491 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5492 5493 5494 5495 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5496 5497 5498 5499 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5500 5501 5502 5503 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5504 5505 5506 5507 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5508 5509 5510 5511 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5512 5513 5514 5515 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5516 5517 5518 5519 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5520 5521 5522 5523 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5524 5525 5526 5527 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5528 5529 5530 5531 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5532 5533 5534 5535 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5536 5537 5538 5539 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5540 5541 5542 5543 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5544 5545 5546 5547 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5548 5549 5550 5551 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5552 5553 5554 5555 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5556 5557 5558 5559 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5560 5561 5562 5563 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5564 5565 5566 5567 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5568 5569 5570 5571 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5572 5573 5574 5575 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5576 5577 5578 5579 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5580 5581 5582 5583 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5584 5585 5586 5587 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5588 5589 5590 5591 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5592 5593 5594 5595 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5596 5597 5598 5599 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5600 5601 5602 5603 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5604 5605 5606 5607 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5608 5609 5610 5611 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5612 5613 5614 5615 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5616 5617 5618 5619 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5620 5621 5622 5623 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5624 5625 5626 5627 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5628 5629 5630 5631 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5632 5633 5634 5635 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5636 5637 5638 5639 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5640 5641 5642 5643 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5644 5645 5646 5647 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5648 5649 5650 5651 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5652 5653 5654 5655 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5656 5657 5658 5659 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5660 5661 5662 5663 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5664 5665 5666 5667 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5668 5669 5670 5671 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5672 5673 5674 5675 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5676 5677 5678 5679 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5680 5681 5682 5683 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5684 5685 5686 5687 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5688 5689 5690 5691 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5692 5693 5694 5695 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5696 5697 5698 5699 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5700 5701 5702 5703 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5704 5705 5706 5707 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5708 5709 5710 5711 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5712 5713 5714 5715 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5716 5717 5718 5719 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5720 5721 5722 5723 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5724 5725 5726 5727 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5728 5729 5730 5731 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5732 5733 5734 5735 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5736 5737 5738 5739 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5740 5741 5742 5743 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5744 5745 5746 5747 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5748 5749 5750 5751 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5752 5753 5754 5755 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5756 5757 5758 5759 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5760 5761 5762 5763 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5764 5765 5766 5767 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5768 5769 5770 5771 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5772 5773 5774 5775 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5776 5777 5778 5779 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5780 5781 5782 5783 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5784 5785 5786 5787 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5788 5789 5790 5791 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5792 5793 5794 5795 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5796 5797 5798 5799 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5800 5801 5802 5803 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5804 5805 5806 5807 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5808 5809 5810 5811 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5812 5813 5814 5815 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5816 5817 5818 5819 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5820 5821 5822 5823 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5824 5825 5826 5827 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5828 5829 5830 5831 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5832 5833 5834 5835 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5836 5837 5838 5839 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5840 5841 5842 5843 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5844 5845 5846 5847 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5848 5849 5850 5851 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5852 5853 5854 5855 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5856 5857 5858 5859 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5860 5861 5862 5863 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5864 5865 5866 5867 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5868 5869 5870 5871 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5872 5873 5874 5875 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5876 5877 5878 5879 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5880 5881 5882 5883 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5884 5885 5886 5887 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5888 5889 5890 5891 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5892 5893 5894 5895 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5896 5897 5898 5899 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5900 5901 5902 5903 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5904 5905 5906 5907 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5908 5909 5910 5911 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5912 5913 5914 5915 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5916 5917 5918 5919 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5920 5921 5922 5923 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5924 5925 5926 5927 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5928 5929 5930 5931 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5932 5933 5934 5935 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5936 5937 5938 5939 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5940 5941 5942 5943 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5944 5945 5946 5947 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5948 5949 5950 5951 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5952 5953 5954 5955 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5956 5957 5958 5959 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5960 5961 5962 5963 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5964 5965 5966 5967 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5968 5969 5970 5971 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5972 5973 5974 5975 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5976 5977 5978 5979 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5980 5981 5982 5983 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5984 5985 5986 5987 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5988 5989 5990 5991 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5992 5993 5994 5995 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 5996 5997 5998 5999 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 6000 6001 6002 6003 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 6004 6005 6006 6007 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 6008 6009 6010 6011 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 6012 6013 6014 6015 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 6016 6017 6018 6019 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 6020 6021 6022 6023 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 6024 6025 6026 6027 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 6028 6029 6030 6031 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 6032 6033 6034 6035 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 6036 6037 6038 6039 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 6040 6041 6042 6043 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 6044 6045 6046 6047 <Ref> { Mesh.002 } }
+  }
+  <Polygon> {
+    <VertexRef> { 6048 6049 6050 6051 <Ref> { Mesh.002 } }
+  }
+}
+<Group> terrain {
+  <Transform> {
+    <Matrix4> {
+      3.140838 0.000000 0.000000 0.000000
+      0.000000 3.140838 0.000000 0.000000
+      0.000000 0.000000 3.140838 0.000000
+      3.966111 0.861909 -3.254418 1.000000
+    }
+  }
+  <Collide> { polyset descend }
+  <VertexPool> terrain {
+    <Vertex> 0 {
+      3.96611022949 0.861908137798 -0.113579511642
+      <UV>  {
+        0.837998 0.403888
+        <Tangent> { -0.988524 0.111646 -0.101758 }
+        <Binormal> { 0.099516 0.988024 0.117281 }
+      }
+      <Normal> { -0.122562 -0.104801 0.986877 }
+    }
+    <Vertex> 1 {
+      6.40673065186 1.01765370369 0.377827942371
+      <UV>  {
+        0.803240 0.402021
+        <Tangent> { -0.859743 -0.162305 -0.484250 }
+        <Binormal> { -0.244368 0.963096 0.111056 }
+      }
+      <Normal> { -0.464187 -0.216803 0.858760 }
+    }
+    <Vertex> 2 {
+      5.8857550621 2.81278657913 0.760033249855
+      <UV>  {
+        0.785443 0.494519
+        <Tangent> { -0.959577 0.198762 -0.199262 }
+        <Binormal> { 0.075893 0.854861 0.487242 }
+      }
+      <Normal> { -0.421827 -0.420392 0.803278 }
+    }
+    <Vertex> 3 {
+      4.1042881012 3.32009768486 0.377827942371
+      <UV>  {
+        0.796167 0.503369
+        <Tangent> { -0.898366 0.434930 -0.061442 }
+        <Binormal> { 0.347024 0.788397 0.506860 }
+      }
+      <Normal> { -0.240059 -0.447981 0.861171 }
+    }
+    <Vertex> 4 {
+      3.96611022949 0.861908137798 -0.113579511642
+      <UV>  {
+        0.837998 0.403888
+        <Tangent> { -0.988524 0.111646 -0.101758 }
+        <Binormal> { 0.099516 0.988024 0.117281 }
+      }
+      <Normal> { -0.122562 -0.104801 0.986877 }
+    }
+    <Vertex> 5 {
+      4.1042881012 3.32009768486 0.377827942371
+      <UV>  {
+        0.796167 0.503369
+        <Tangent> { -0.898366 0.434930 -0.061442 }
+        <Binormal> { 0.347024 0.788397 0.506860 }
+      }
+      <Normal> { -0.240059 -0.447981 0.861171 }
+    }
+    <Vertex> 6 {
+      0.749846220016 4.60740232468 0.173797205091
+      <UV>  {
+        0.797616 0.458751
+        <Tangent> { -0.782593 0.590655 0.196662 }
+        <Binormal> { 0.594594 0.664282 0.371009 }
+      }
+      <Normal> { -0.291787 -0.253853 0.922147 }
+    }
+    <Vertex> 7 {
+      0.994594097137 0.861908972263 -0.256497681141
+      <UV>  {
+        0.872153 0.406548
+        <Tangent> { -0.996923 -0.058620 -0.052033 }
+        <Binormal> { -0.062079 0.992876 0.070831 }
+      }
+      <Normal> { -0.119846 -0.078097 0.989685 }
+    }
+    <Vertex> 8 {
+      3.96611022949 0.861908137798 -0.113579511642
+      <UV>  {
+        0.837998 0.403888
+        <Tangent> { -0.988524 0.111646 -0.101758 }
+        <Binormal> { 0.099516 0.988024 0.117281 }
+      }
+      <Normal> { -0.122562 -0.104801 0.986877 }
+    }
+    <Vertex> 9 {
+      0.994594097137 0.861908972263 -0.256497681141
+      <UV>  {
+        0.872153 0.406548
+        <Tangent> { -0.996923 -0.058620 -0.052033 }
+        <Binormal> { -0.062079 0.992876 0.070831 }
+      }
+      <Normal> { -0.119846 -0.078097 0.989685 }
+    }
+    <Vertex> 10 {
+      1.04611384869 -2.23280405998 -0.288610696793
+      <UV>  {
+        0.946690 0.354345
+        <Tangent> { -0.875632 -0.475628 -0.083944 }
+        <Binormal> { -0.470145 0.878963 -0.076077 }
+      }
+      <Normal> { -0.089663 0.038179 0.995209 }
+    }
+    <Vertex> 11 {
+      3.96610951424 -2.23280525208 -0.113579511642
+      <UV>  {
+        0.911213 0.306288
+        <Tangent> { -0.674688 -0.736385 -0.050332 }
+        <Binormal> { -0.735591 0.676419 -0.035977 }
+      }
+      <Normal> { -0.065493 -0.018159 0.997681 }
+    }
+    <Vertex> 12 {
+      3.96611022949 0.861908137798 -0.113579511642
+      <UV>  {
+        0.837998 0.403888
+        <Tangent> { -0.988524 0.111646 -0.101758 }
+        <Binormal> { 0.099516 0.988024 0.117281 }
+      }
+      <Normal> { -0.122562 -0.104801 0.986877 }
+    }
+    <Vertex> 13 {
+      3.96610951424 -2.23280525208 -0.113579511642
+      <UV>  {
+        0.911213 0.306288
+        <Tangent> { -0.674688 -0.736385 -0.050332 }
+        <Binormal> { -0.735591 0.676419 -0.035977 }
+      }
+      <Normal> { -0.065493 -0.018159 0.997681 }
+    }
+    <Vertex> 14 {
+      7.33035802841 -2.14091944695 0.196663975716
+      <UV>  {
+        0.902983 0.195288
+        <Tangent> { -0.546592 -0.726925 -0.415712 }
+        <Binormal> { -0.789561 0.610224 -0.028911 }
+      }
+      <Normal> { -0.243110 -0.270425 0.931516 }
+    }
+    <Vertex> 15 {
+      6.40673065186 1.01765370369 0.377827942371
+      <UV>  {
+        0.803240 0.402021
+        <Tangent> { -0.859743 -0.162305 -0.484250 }
+        <Binormal> { -0.244368 0.963096 0.111056 }
+      }
+      <Normal> { -0.464187 -0.216803 0.858760 }
+    }
+    <Vertex> 16 {
+      3.9661090374 -5.23526906967 -0.113579511642
+      <UV>  {
+        1.045771 0.279931
+        <Tangent> { 0.042043 -0.999019 -0.013936 }
+        <Binormal> { -0.998892 -0.041932 -0.007516 }
+      }
+      <Normal> { -0.007721 0.004700 0.999939 }
+    }
+    <Vertex> 17 {
+      7.24817657471 -5.23527002335 -0.113579511642
+      <UV>  {
+        1.003782 0.219214
+        <Tangent> { 0.400101 -0.914390 -0.061726 }
+        <Binormal> { -0.916091 -0.398342 -0.037082 }
+      }
+      <Normal> { -0.019990 -0.046999 0.998688 }
+    }
+    <Vertex> 18 {
+      7.33035802841 -2.14091944695 0.196663975716
+      <UV>  {
+        0.902983 0.195288
+        <Tangent> { -0.546592 -0.726925 -0.415712 }
+        <Binormal> { -0.789561 0.610224 -0.028911 }
+      }
+      <Normal> { -0.243110 -0.270425 0.931516 }
+    }
+    <Vertex> 19 {
+      3.96610951424 -2.23280525208 -0.113579511642
+      <UV>  {
+        0.911213 0.306288
+        <Tangent> { -0.674688 -0.736385 -0.050332 }
+        <Binormal> { -0.735591 0.676419 -0.035977 }
+      }
+      <Normal> { -0.065493 -0.018159 0.997681 }
+    }
+    <Vertex> 20 {
+      3.9661090374 -5.23526906967 -0.113579511642
+      <UV>  {
+        1.045771 0.279931
+        <Tangent> { 0.042043 -0.999019 -0.013936 }
+        <Binormal> { -0.998892 -0.041932 -0.007516 }
+      }
+      <Normal> { -0.007721 0.004700 0.999939 }
+    }
+    <Vertex> 21 {
+      3.96610951424 -2.23280525208 -0.113579511642
+      <UV>  {
+        0.911213 0.306288
+        <Tangent> { -0.674688 -0.736385 -0.050332 }
+        <Binormal> { -0.735591 0.676419 -0.035977 }
+      }
+      <Normal> { -0.065493 -0.018159 0.997681 }
+    }
+    <Vertex> 22 {
+      1.04611384869 -2.23280405998 -0.288610696793
+      <UV>  {
+        0.946690 0.354345
+        <Tangent> { -0.875632 -0.475628 -0.083944 }
+        <Binormal> { -0.470145 0.878963 -0.076077 }
+      }
+      <Normal> { -0.089663 0.038179 0.995209 }
+    }
+    <Vertex> 23 {
+      0.994593322277 -5.23526763916 -0.0991131588817
+      <UV>  {
+        1.087759 0.340649
+        <Tangent> { -0.238046 -0.968853 0.068244 }
+        <Binormal> { -0.970663 0.237776 -0.010140 }
+      }
+      <Normal> { 0.014466 0.101474 0.994720 }
+    }
+    <Vertex> 24 {
+      3.9661090374 -5.23526906967 -0.113579511642
+      <UV>  {
+        1.045771 0.279931
+        <Tangent> { 0.042043 -0.999019 -0.013936 }
+        <Binormal> { -0.998892 -0.041932 -0.007516 }
+      }
+      <Normal> { -0.007721 0.004700 0.999939 }
+    }
+    <Vertex> 25 {
+      0.994593322277 -5.23526763916 -0.0991131588817
+      <UV>  {
+        1.087759 0.340649
+        <Tangent> { -0.238046 -0.968853 0.068244 }
+        <Binormal> { -0.970663 0.237776 -0.010140 }
+      }
+      <Normal> { 0.014466 0.101474 0.994720 }
+    }
+    <Vertex> 26 {
+      0.917312920094 -8.21325302124 0.126114070415
+      <UV>  {
+        1.228829 0.326953
+        <Tangent> { -0.008216 -0.999514 0.030071 }
+        <Binormal> { -0.989785 0.012221 0.135776 }
+      }
+      <Normal> { 0.136418 0.070040 0.988159 }
+    }
+    <Vertex> 27 {
+      3.9661090374 -8.21325397491 -0.113579511642
+      <UV>  {
+        1.211000 0.289196
+        <Tangent> { 0.246561 -0.969080 -0.009570 }
+        <Binormal> { -0.968341 -0.246720 0.035092 }
+      }
+      <Normal> { 0.033082 0.012299 0.999359 }
+    }
+    <Vertex> 28 {
+      3.9661090374 -5.23526906967 -0.113579511642
+      <UV>  {
+        1.045771 0.279931
+        <Tangent> { 0.042043 -0.999019 -0.013936 }
+        <Binormal> { -0.998892 -0.041932 -0.007516 }
+      }
+      <Normal> { -0.007721 0.004700 0.999939 }
+    }
+    <Vertex> 29 {
+      3.9661090374 -8.21325397491 -0.113579511642
+      <UV>  {
+        1.211000 0.289196
+        <Tangent> { 0.246561 -0.969080 -0.009570 }
+        <Binormal> { -0.968341 -0.246720 0.035092 }
+      }
+      <Normal> { 0.033082 0.012299 0.999359 }
+    }
+    <Vertex> 30 {
+      7.09254312515 -8.21325492859 -0.113579511642
+      <UV>  {
+        1.193172 0.251440
+        <Tangent> { 0.365398 -0.930852 0.000000 }
+        <Binormal> { -0.930852 -0.365398 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 31 {
+      7.24817657471 -5.23527002335 -0.113579511642
+      <UV>  {
+        1.003782 0.219214
+        <Tangent> { 0.400101 -0.914390 -0.061726 }
+        <Binormal> { -0.916091 -0.398342 -0.037082 }
+      }
+      <Normal> { -0.019990 -0.046999 0.998688 }
+    }
+    <Vertex> 32 {
+      -1.63827764988 0.861909210682 -0.685252249241
+      <UV>  {
+        0.979831 0.420408
+        <Tangent> { -0.739449 -0.613596 -0.276975 }
+        <Binormal> { -0.615905 0.782658 -0.089560 }
+      }
+      <Normal> { -0.267953 -0.101230 0.958068 }
+    }
+    <Vertex> 33 {
+      -1.43219733238 -2.23280382156 -0.813704252243
+      <UV>  {
+        0.998927 0.378938
+        <Tangent> { -0.716232 -0.645674 -0.264797 }
+        <Binormal> { -0.597634 0.755685 -0.226141 }
+      }
+      <Normal> { -0.243263 0.096438 0.965148 }
+    }
+    <Vertex> 34 {
+      1.04611384869 -2.23280405998 -0.288610696793
+      <UV>  {
+        0.946690 0.354345
+        <Tangent> { -0.875632 -0.475628 -0.083944 }
+        <Binormal> { -0.470145 0.878963 -0.076077 }
+      }
+      <Normal> { -0.089663 0.038179 0.995209 }
+    }
+    <Vertex> 35 {
+      0.994594097137 0.861908972263 -0.256497681141
+      <UV>  {
+        0.871177 0.400688
+        <Tangent> { -0.856620 -0.485105 -0.175713 }
+        <Binormal> { -0.493823 0.868843 0.008761 }
+      }
+      <Normal> { -0.119846 -0.078097 0.989685 }
+    }
+    <Vertex> 36 {
+      -1.63827764988 0.861909210682 -0.685252249241
+      <UV>  {
+        0.979831 0.420408
+        <Tangent> { -0.739449 -0.613596 -0.276975 }
+        <Binormal> { -0.615905 0.782658 -0.089560 }
+      }
+      <Normal> { -0.267953 -0.101230 0.958068 }
+    }
+    <Vertex> 37 {
+      0.994594097137 0.861908972263 -0.256497681141
+      <UV>  {
+        0.871177 0.400688
+        <Tangent> { -0.856620 -0.485105 -0.175713 }
+        <Binormal> { -0.493823 0.868843 0.008761 }
+      }
+      <Normal> { -0.119846 -0.078097 0.989685 }
+    }
+    <Vertex> 38 {
+      0.749846220016 4.60740232468 0.173797205091
+      <UV>  {
+        0.795663 0.447032
+        <Tangent> { 0.643032 0.047219 0.764382 }
+        <Binormal> { 0.237583 -0.816008 -0.149458 }
+      }
+      <Normal> { -0.291787 -0.253853 0.922147 }
+    }
+    <Vertex> 39 {
+      -2.21819424629 4.88817644119 -0.256497681141
+      <UV>  {
+        0.960734 0.461878
+        <Tangent> { -0.832722 -0.494531 -0.249024 }
+        <Binormal> { -0.502826 0.863452 -0.033287 }
+      }
+      <Normal> { -0.249947 -0.108463 0.962157 }
+    }
+    <Vertex> 40 {
+      -1.63827764988 0.861909210682 -0.685252249241
+      <UV>  {
+        0.979831 0.420408
+        <Tangent> { -0.739449 -0.613596 -0.276975 }
+        <Binormal> { -0.615905 0.782658 -0.089560 }
+      }
+      <Normal> { -0.267953 -0.101230 0.958068 }
+    }
+    <Vertex> 41 {
+      -2.21819424629 4.88817644119 -0.256497681141
+      <UV>  {
+        0.960734 0.461878
+        <Tangent> { -0.832722 -0.494531 -0.249024 }
+        <Binormal> { -0.502826 0.863452 -0.033287 }
+      }
+      <Normal> { -0.249947 -0.108463 0.962157 }
+    }
+    <Vertex> 42 {
+      -4.15847110748 4.82189369202 -0.862862765789
+      <UV>  {
+        1.125806 0.476725
+        <Tangent> { -0.611201 -0.701180 -0.367125 }
+        <Binormal> { -0.575782 0.698848 -0.376167 }
+      }
+      <Normal> { -0.640278 -0.119083 0.758812 }
+    }
+    <Vertex> 43 {
+      -3.62708950043 0.81865388155 -1.50599467754
+      <UV>  {
+        1.088485 0.440128
+        <Tangent> { -0.623004 -0.691314 -0.365993 }
+        <Binormal> { -0.595011 0.712550 -0.333069 }
+      }
+      <Normal> { -0.593921 -0.124424 0.794824 }
+    }
+    <Vertex> 44 {
+      -1.63827764988 0.861909210682 -0.685252249241
+      <UV>  {
+        0.979831 0.420408
+        <Tangent> { -0.739449 -0.613596 -0.276975 }
+        <Binormal> { -0.615905 0.782658 -0.089560 }
+      }
+      <Normal> { -0.267953 -0.101230 0.958068 }
+    }
+    <Vertex> 45 {
+      -3.62708950043 0.81865388155 -1.50599467754
+      <UV>  {
+        1.088485 0.440128
+        <Tangent> { -0.623004 -0.691314 -0.365993 }
+        <Binormal> { -0.595011 0.712550 -0.333069 }
+      }
+      <Normal> { -0.593921 -0.124424 0.794824 }
+    }
+    <Vertex> 46 {
+      -3.31796836853 -2.2760591507 -1.65932631493
+      <UV>  {
+        1.051165 0.403532
+        <Tangent> { -0.661649 -0.669186 -0.338245 }
+        <Binormal> { -0.503866 0.730861 -0.460316 }
+      }
+      <Normal> { -0.558153 0.131199 0.819269 }
+    }
+    <Vertex> 47 {
+      -1.43219733238 -2.23280382156 -0.813704252243
+      <UV>  {
+        0.998927 0.378938
+        <Tangent> { -0.716232 -0.645674 -0.264797 }
+        <Binormal> { -0.597634 0.755685 -0.226141 }
+      }
+      <Normal> { -0.243263 0.096438 0.965148 }
+    }
+    <Vertex> 48 {
+      -3.13362050056 10.6853027344 -0.113579511642
+      <UV>  {
+        1.028410 0.238402
+        <Tangent> { 0.965651 -0.033098 0.257725 }
+        <Binormal> { -0.021159 -0.998340 -0.048932 }
+      }
+      <Normal> { -0.279031 -0.041108 0.959380 }
+    }
+    <Vertex> 49 {
+      -2.21819424629 4.88817644119 -0.256497681141
+      <UV>  {
+        1.087687 0.474574
+        <Tangent> { 0.939920 -0.287487 0.184123 }
+        <Binormal> { -0.256637 -0.950372 -0.173803 }
+      }
+      <Normal> { -0.249947 -0.108463 0.962157 }
+    }
+    <Vertex> 50 {
+      0.749846220016 4.60740232468 0.173797205091
+      <UV>  {
+        0.795663 0.447032
+        <Tangent> { 0.643032 0.047219 0.764382 }
+        <Binormal> { 0.237583 -0.816008 -0.149458 }
+      }
+      <Normal> { -0.291787 -0.253853 0.922147 }
+    }
+    <Vertex> 51 {
+      -1.2541372776 10.6149988174 0.351220369339
+      <UV>  {
+        0.847657 0.230990
+        <Tangent> { 0.865105 -0.187209 0.465345 }
+        <Binormal> { -0.139522 -0.975418 -0.133033 }
+      }
+      <Normal> { -0.386670 -0.070101 0.919523 }
+    }
+    <Vertex> 52 {
+      -3.13362050056 10.6853027344 -0.113579511642
+      <UV>  {
+        1.028410 0.238402
+        <Tangent> { 0.965651 -0.033098 0.257725 }
+        <Binormal> { -0.021159 -0.998340 -0.048932 }
+      }
+      <Normal> { -0.279031 -0.041108 0.959380 }
+    }
+    <Vertex> 53 {
+      -1.2541372776 10.6149988174 0.351220369339
+      <UV>  {
+        0.847657 0.230990
+        <Tangent> { 0.865105 -0.187209 0.465345 }
+        <Binormal> { -0.139522 -0.975418 -0.133033 }
+      }
+      <Normal> { -0.386670 -0.070101 0.919523 }
+    }
+    <Vertex> 54 {
+      -1.77140462399 17.0585784912 0.171120867133
+      <UV>  {
+        0.809003 0.009555
+        <Tangent> { 0.831943 -0.379528 0.404757 }
+        <Binormal> { -0.410178 -0.897710 0.001331 }
+      }
+      <Normal> { -0.229163 0.106143 0.967559 }
+    }
+    <Vertex> 55 {
+      -3.67521095276 16.53840065 -0.113579511642
+      <UV>  {
+        0.969133 0.002231
+        <Tangent> { 0.896390 0.360375 0.258099 }
+        <Binormal> { 0.342306 -0.932700 0.113452 }
+      }
+      <Normal> { -0.279214 0.014313 0.960112 }
+    }
+    <Vertex> 56 {
+      -3.13362050056 10.6853027344 -0.113579511642
+      <UV>  {
+        1.028410 0.238402
+        <Tangent> { 0.965651 -0.033098 0.257725 }
+        <Binormal> { -0.021159 -0.998340 -0.048932 }
+      }
+      <Normal> { -0.279031 -0.041108 0.959380 }
+    }
+    <Vertex> 57 {
+      -3.67521095276 16.53840065 -0.113579511642
+      <UV>  {
+        0.969133 0.002231
+        <Tangent> { 0.896390 0.360375 0.258099 }
+        <Binormal> { 0.342306 -0.932700 0.113452 }
+      }
+      <Normal> { -0.279214 0.014313 0.960112 }
+    }
+    <Vertex> 58 {
+      -4.65152549744 16.2772274017 -0.64848524332
+      <UV>  {
+        1.129264 -0.005093
+        <Tangent> { 0.892345 0.169146 0.418462 }
+        <Binormal> { 0.109739 -0.903039 0.131004 }
+      }
+      <Normal> { -0.751640 0.004334 0.659505 }
+    }
+    <Vertex> 59 {
+      -4.51612854004 10.5499382019 -0.648485422134
+      <UV>  {
+        1.254488 0.248511
+        <Tangent> { 0.932626 -0.062254 0.355434 }
+        <Binormal> { -0.029099 -0.906861 -0.082485 }
+      }
+      <Normal> { -0.711875 -0.040925 0.701071 }
+    }
+    <Vertex> 60 {
+      -3.13362050056 10.6853027344 -0.113579511642
+      <UV>  {
+        1.028410 0.238402
+        <Tangent> { 0.965651 -0.033098 0.257725 }
+        <Binormal> { -0.021159 -0.998340 -0.048932 }
+      }
+      <Normal> { -0.279031 -0.041108 0.959380 }
+    }
+    <Vertex> 61 {
+      -4.51612854004 10.5499382019 -0.648485422134
+      <UV>  {
+        1.254488 0.248511
+        <Tangent> { 0.932626 -0.062254 0.355434 }
+        <Binormal> { -0.029099 -0.906861 -0.082485 }
+      }
+      <Normal> { -0.711875 -0.040925 0.701071 }
+    }
+    <Vertex> 62 {
+      -4.15847110748 4.82189369202 -0.862862765789
+      <UV>  {
+        1.379712 0.502115
+        <Tangent> { 0.934702 -0.177220 0.308100 }
+        <Binormal> { -0.097787 -0.906533 -0.224777 }
+      }
+      <Normal> { -0.640278 -0.119083 0.758812 }
+    }
+    <Vertex> 63 {
+      -2.21819424629 4.88817644119 -0.256497681141
+      <UV>  {
+        1.087687 0.474574
+        <Tangent> { 0.939920 -0.287487 0.184123 }
+        <Binormal> { -0.256637 -0.950372 -0.173803 }
+      }
+      <Normal> { -0.249947 -0.108463 0.962157 }
+    }
+    <Vertex> 64 {
+      -1.63827872276 -5.23526763916 -0.0557141005993
+      <UV>  {
+        0.365636 0.783430
+        <Tangent> { 0.936356 -0.302703 0.177787 }
+        <Binormal> { -0.337995 -0.913587 0.224640 }
+      }
+      <Normal> { -0.071078 0.262886 0.962188 }
+    }
+    <Vertex> 65 {
+      -1.94740009308 -8.21325111389 0.845194041729
+      <UV>  {
+        0.362298 0.849152
+        <Tangent> { 0.815142 -0.577978 -0.038521 }
+        <Binormal> { -0.556363 -0.799513 0.222889 }
+      }
+      <Normal> { 0.127689 0.182897 0.974792 }
+    }
+    <Vertex> 66 {
+      0.917312920094 -8.21325302124 0.126114070415
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.966551 -0.229329 -0.114838 }
+        <Binormal> { -0.218570 -0.970772 0.098982 }
+      }
+      <Normal> { 0.136418 0.070040 0.988159 }
+    }
+    <Vertex> 67 {
+      0.994593322277 -5.23526763916 -0.0991131588817
+      <UV>  {
+        0.292059 0.764826
+        <Tangent> { 0.888169 -0.459201 0.017041 }
+        <Binormal> { -0.458506 -0.883233 0.096769 }
+      }
+      <Normal> { 0.014466 0.101474 0.994720 }
+    }
+    <Vertex> 68 {
+      -1.63827872276 -5.23526763916 -0.0557141005993
+      <UV>  {
+        0.365636 0.783430
+        <Tangent> { 0.936356 -0.302703 0.177787 }
+        <Binormal> { -0.337995 -0.913587 0.224640 }
+      }
+      <Normal> { -0.071078 0.262886 0.962188 }
+    }
+    <Vertex> 69 {
+      0.994593322277 -5.23526763916 -0.0991131588817
+      <UV>  {
+        0.292059 0.764826
+        <Tangent> { 0.888169 -0.459201 0.017041 }
+        <Binormal> { -0.458506 -0.883233 0.096769 }
+      }
+      <Normal> { 0.014466 0.101474 0.994720 }
+    }
+    <Vertex> 70 {
+      1.04611384869 -2.23280405998 -0.288610696793
+      <UV>  {
+        0.318442 0.723502
+        <Tangent> { 0.977632 -0.168320 0.126109 }
+        <Binormal> { -0.172329 -0.984255 0.022233 }
+      }
+      <Normal> { -0.089663 0.038179 0.995209 }
+    }
+    <Vertex> 71 {
+      -1.43219733238 -2.23280382156 -0.813704252243
+      <UV>  {
+        0.369694 0.721187
+        <Tangent> { 0.956172 0.058193 0.286966 }
+        <Binormal> { 0.028490 -0.992655 0.106368 }
+      }
+      <Normal> { -0.243263 0.096438 0.965148 }
+    }
+    <Vertex> 72 {
+      -1.63827872276 -5.23526763916 -0.0557141005993
+      <UV>  {
+        0.365636 0.783430
+        <Tangent> { 0.936356 -0.302703 0.177787 }
+        <Binormal> { -0.337995 -0.913587 0.224640 }
+      }
+      <Normal> { -0.071078 0.262886 0.962188 }
+    }
+    <Vertex> 73 {
+      -1.43219733238 -2.23280382156 -0.813704252243
+      <UV>  {
+        0.369694 0.721187
+        <Tangent> { 0.956172 0.058193 0.286966 }
+        <Binormal> { 0.028490 -0.992655 0.106368 }
+      }
+      <Normal> { -0.243263 0.096438 0.965148 }
+    }
+    <Vertex> 74 {
+      -3.31796836853 -2.2760591507 -1.65932631493
+      <UV>  {
+        0.420946 0.718873
+        <Tangent> { 0.929002 -0.086361 0.359856 }
+        <Binormal> { -0.117966 -0.961958 0.073681 }
+      }
+      <Normal> { -0.558153 0.131199 0.819269 }
+    }
+    <Vertex> 75 {
+      -3.62709021568 -5.27852344513 -0.40430277586
+      <UV>  {
+        0.439214 0.802035
+        <Tangent> { 0.903026 -0.297141 0.310245 }
+        <Binormal> { -0.353578 -0.869467 0.196411 }
+      }
+      <Normal> { -0.467360 0.371288 0.802271 }
+    }
+    <Vertex> 76 {
+      -1.63827872276 -5.23526763916 -0.0557141005993
+      <UV>  {
+        0.365636 0.783430
+        <Tangent> { 0.936356 -0.302703 0.177787 }
+        <Binormal> { -0.337995 -0.913587 0.224640 }
+      }
+      <Normal> { -0.071078 0.262886 0.962188 }
+    }
+    <Vertex> 77 {
+      -3.62709021568 -5.27852344513 -0.40430277586
+      <UV>  {
+        0.439214 0.802035
+        <Tangent> { 0.903026 -0.297141 0.310245 }
+        <Binormal> { -0.353578 -0.869467 0.196411 }
+      }
+      <Normal> { -0.467360 0.371288 0.802271 }
+    }
+    <Vertex> 78 {
+      -4.1140127182 -8.25123500824 1.05926406384
+      <UV>  {
+        0.457482 0.885197
+        <Tangent> { 0.860454 -0.501535 0.089893 }
+        <Binormal> { -0.461600 -0.782938 0.050221 }
+      }
+      <Normal> { -0.401410 0.292337 0.867977 }
+    }
+    <Vertex> 79 {
+      -1.94740009308 -8.21325111389 0.845194041729
+      <UV>  {
+        0.362298 0.849152
+        <Tangent> { 0.815142 -0.577978 -0.038521 }
+        <Binormal> { -0.556363 -0.799513 0.222889 }
+      }
+      <Normal> { 0.127689 0.182897 0.974792 }
+    }
+    <Vertex> 80 {
+      10.8127031326 -5.23527050018 -0.113579511642
+      <UV>  {
+        0.948945 0.097157
+        <Tangent> { -0.205325 -0.975732 -0.076077 }
+        <Binormal> { -0.978665 0.204722 0.015652 }
+      }
+      <Normal> { 0.000763 -0.072604 0.997345 }
+    }
+    <Vertex> 81 {
+      11.3891267776 -2.91355037689 0.351220369339
+      <UV>  {
+        0.818862 0.096425
+        <Tangent> { -0.111593 -0.783677 -0.611062 }
+        <Binormal> { -0.983175 0.103988 0.046186 }
+      }
+      <Normal> { -0.011414 -0.494034 0.869350 }
+    }
+    <Vertex> 82 {
+      7.33035802841 -2.14091944695 0.196663975716
+      <UV>  {
+        0.902983 0.195288
+        <Tangent> { -0.546592 -0.726925 -0.415712 }
+        <Binormal> { -0.789561 0.610224 -0.028911 }
+      }
+      <Normal> { -0.243110 -0.270425 0.931516 }
+    }
+    <Vertex> 83 {
+      7.24817657471 -5.23527002335 -0.113579511642
+      <UV>  {
+        0.979368 0.187964
+        <Tangent> { -0.093576 -0.993275 -0.068172 }
+        <Binormal> { -0.995176 0.094816 -0.015457 }
+      }
+      <Normal> { -0.019990 -0.046999 0.998688 }
+    }
+    <Vertex> 84 {
+      10.8127031326 -5.23527050018 -0.113579511642
+      <UV>  {
+        0.948945 0.097157
+        <Tangent> { -0.205325 -0.975732 -0.076077 }
+        <Binormal> { -0.978665 0.204722 0.015652 }
+      }
+      <Normal> { 0.000763 -0.072604 0.997345 }
+    }
+    <Vertex> 85 {
+      7.24817657471 -5.23527002335 -0.113579511642
+      <UV>  {
+        0.979368 0.187964
+        <Tangent> { -0.093576 -0.993275 -0.068172 }
+        <Binormal> { -0.995176 0.094816 -0.015457 }
+      }
+      <Normal> { -0.019990 -0.046999 0.998688 }
+    }
+    <Vertex> 86 {
+      7.09254312515 -8.21325492859 -0.113579511642
+      <UV>  {
+        1.144344 0.188940
+        <Tangent> { -0.117221 -0.993106 0.000000 }
+        <Binormal> { -0.993106 0.117221 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 87 {
+      10.1901702881 -8.21325492859 -0.113579511642
+      <UV>  {
+        1.116362 0.098134
+        <Tangent> { -0.194319 -0.980938 0.000000 }
+        <Binormal> { -0.980938 0.194319 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 88 {
+      10.8127031326 -5.23527050018 -0.113579511642
+      <UV>  {
+        0.948945 0.097157
+        <Tangent> { -0.205325 -0.975732 -0.076077 }
+        <Binormal> { -0.978665 0.204722 0.015652 }
+      }
+      <Normal> { 0.000763 -0.072604 0.997345 }
+    }
+    <Vertex> 89 {
+      10.1901702881 -8.21325492859 -0.113579511642
+      <UV>  {
+        1.116362 0.098134
+        <Tangent> { -0.194319 -0.980938 0.000000 }
+        <Binormal> { -0.980938 0.194319 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 90 {
+      13.157037735 -8.21325492859 -0.113579511642
+      <UV>  {
+        1.088380 0.007328
+        <Tangent> { -0.265446 -0.964126 0.000000 }
+        <Binormal> { -0.964126 0.265446 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 91 {
+      14.2464704514 -5.23527050018 -0.113579511642
+      <UV>  {
+        0.918523 0.006351
+        <Tangent> { -0.360757 -0.931605 -0.044348 }
+        <Binormal> { -0.932404 0.359156 0.040131 }
+      }
+      <Normal> { 0.021699 -0.055208 0.998230 }
+    }
+    <Vertex> 92 {
+      10.8127031326 -5.23527050018 -0.113579511642
+      <UV>  {
+        0.948945 0.097157
+        <Tangent> { -0.205325 -0.975732 -0.076077 }
+        <Binormal> { -0.978665 0.204722 0.015652 }
+      }
+      <Normal> { 0.000763 -0.072604 0.997345 }
+    }
+    <Vertex> 93 {
+      14.2464704514 -5.23527050018 -0.113579511642
+      <UV>  {
+        0.918523 0.006351
+        <Tangent> { -0.360757 -0.931605 -0.044348 }
+        <Binormal> { -0.932404 0.359156 0.040131 }
+      }
+      <Normal> { 0.021699 -0.055208 0.998230 }
+    }
+    <Vertex> 94 {
+      15.5468168259 -2.23269701004 0.171120867133
+      <UV>  {
+        0.748665 0.005374
+        <Tangent> { 0.505968 -0.446094 -0.738239 }
+        <Binormal> { -0.634717 -0.642327 -0.046879 }
+      }
+      <Normal> { 0.237251 -0.301828 0.923338 }
+    }
+    <Vertex> 95 {
+      11.3891267776 -2.91355037689 0.351220369339
+      <UV>  {
+        0.818862 0.096425
+        <Tangent> { -0.111593 -0.783677 -0.611062 }
+        <Binormal> { -0.983175 0.103988 0.046186 }
+      }
+      <Normal> { -0.011414 -0.494034 0.869350 }
+    }
+    <Vertex> 96 {
+      2.8829305172 22.0778141022 -0.113579511642
+      <UV>  {
+        0.437479 0.084660
+        <Tangent> { 0.989673 0.143146 0.007586 }
+        <Binormal> { 0.142092 -0.986604 0.079527 }
+      }
+      <Normal> { -0.025544 0.076662 0.996704 }
+    }
+    <Vertex> 97 {
+      -0.73321723938 21.3429775238 -0.113579511642
+      <UV>  {
+        0.468652 0.089817
+        <Tangent> { 0.987920 0.154938 0.002732 }
+        <Binormal> { 0.154583 -0.986482 0.046796 }
+      }
+      <Normal> { -0.036409 0.041658 0.998444 }
+    }
+    <Vertex> 98 {
+      -1.77140462399 17.0585784912 0.171120867133
+      <UV>  {
+        0.551463 0.169949
+        <Tangent> { 0.968990 0.241594 0.051874 }
+        <Binormal> { 0.228250 -0.949442 0.158216 }
+      }
+      <Normal> { -0.229163 0.106143 0.967559 }
+    }
+    <Vertex> 99 {
+      2.50994849205 19.507982254 0.324613153934
+      <UV>  {
+        0.457135 0.147978
+        <Tangent> { 0.969698 0.235553 0.064808 }
+        <Binormal> { 0.202780 -0.923982 0.324209 }
+      }
+      <Normal> { -0.134342 0.301706 0.943876 }
+    }
+    <Vertex> 100 {
+      2.8829305172 22.0778141022 -0.113579511642
+      <UV>  {
+        0.437479 0.084660
+        <Tangent> { 0.989673 0.143146 0.007586 }
+        <Binormal> { 0.142092 -0.986604 0.079527 }
+      }
+      <Normal> { -0.025544 0.076662 0.996704 }
+    }
+    <Vertex> 101 {
+      2.50994849205 19.507982254 0.324613153934
+      <UV>  {
+        0.457135 0.147978
+        <Tangent> { 0.969698 0.235553 0.064808 }
+        <Binormal> { 0.202780 -0.923982 0.324209 }
+      }
+      <Normal> { -0.134342 0.301706 0.943876 }
+    }
+    <Vertex> 102 {
+      7.06949853897 20.5617847443 0.324613153934
+      <UV>  {
+        0.376328 0.136154
+        <Tangent> { 0.993252 0.113493 0.023883 }
+        <Binormal> { 0.094905 -0.913710 0.395077 }
+      }
+      <Normal> { -0.063417 0.390515 0.918393 }
+    }
+    <Vertex> 103 {
+      7.1848950386 22.6756076813 -0.113579511642
+      <UV>  {
+        0.368779 0.081997
+        <Tangent> { 0.995183 0.098032 0.000070 }
+        <Binormal> { 0.097526 -0.990112 0.100737 }
+      }
+      <Normal> { -0.012024 0.100040 0.994903 }
+    }
+    <Vertex> 104 {
+      2.8829305172 22.0778141022 -0.113579511642
+      <UV>  {
+        0.437479 0.084660
+        <Tangent> { 0.989673 0.143146 0.007586 }
+        <Binormal> { 0.142092 -0.986604 0.079527 }
+      }
+      <Normal> { -0.025544 0.076662 0.996704 }
+    }
+    <Vertex> 105 {
+      7.1848950386 22.6756076813 -0.113579511642
+      <UV>  {
+        0.368779 0.081997
+        <Tangent> { 0.995183 0.098032 0.000070 }
+        <Binormal> { 0.097526 -0.990112 0.100737 }
+      }
+      <Normal> { -0.012024 0.100040 0.994903 }
+    }
+    <Vertex> 106 {
+      7.45569086075 24.9480304718 -0.113579511642
+      <UV>  {
+        0.358657 0.028822
+        <Tangent> { 0.995482 0.094947 0.000000 }
+        <Binormal> { 0.094947 -0.995482 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 107 {
+      3.96611166 24.9480304718 -0.113579511642
+      <UV>  {
+        0.405921 0.020212
+        <Tangent> { 0.991842 0.127471 0.000000 }
+        <Binormal> { 0.127471 -0.991842 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 108 {
+      2.8829305172 22.0778141022 -0.113579511642
+      <UV>  {
+        0.437479 0.084660
+        <Tangent> { 0.989673 0.143146 0.007586 }
+        <Binormal> { 0.142092 -0.986604 0.079527 }
+      }
+      <Normal> { -0.025544 0.076662 0.996704 }
+    }
+    <Vertex> 109 {
+      3.96611166 24.9480304718 -0.113579511642
+      <UV>  {
+        0.405921 0.020212
+        <Tangent> { 0.991842 0.127471 0.000000 }
+        <Binormal> { 0.127471 -0.991842 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 110 {
+      0.891554474831 24.7353534698 -0.113579511642
+      <UV>  {
+        0.422818 0.015164
+        <Tangent> { 0.987034 0.160513 0.000000 }
+        <Binormal> { 0.160513 -0.987034 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 111 {
+      -0.73321723938 21.3429775238 -0.113579511642
+      <UV>  {
+        0.468652 0.089817
+        <Tangent> { 0.987920 0.154938 0.002732 }
+        <Binormal> { 0.154583 -0.986482 0.046796 }
+      }
+      <Normal> { -0.036409 0.041658 0.998444 }
+    }
+    <Vertex> 112 {
+      -3.13362050056 20.732585907 -0.113579511642
+      <UV>  {
+        0.452598 0.093703
+        <Tangent> { 0.982071 0.176258 0.066856 }
+        <Binormal> { 0.169936 -0.974325 0.072442 }
+      }
+      <Normal> { -0.204230 0.037111 0.978210 }
+    }
+    <Vertex> 113 {
+      -4.51612854004 20.2782020569 -0.648485422134
+      <UV>  {
+        0.412930 0.096953
+        <Tangent> { 0.914190 0.193502 0.356109 }
+        <Binormal> { 0.119970 -0.892756 0.177123 }
+      }
+      <Normal> { -0.714652 0.042482 0.698172 }
+    }
+    <Vertex> 114 {
+      -4.65152549744 16.2772274017 -0.64848524332
+      <UV>  {
+        0.420504 0.167807
+        <Tangent> { 0.895878 0.211726 0.390608 }
+        <Binormal> { 0.137942 -0.884433 0.163024 }
+      }
+      <Normal> { -0.751640 0.004334 0.659505 }
+    }
+    <Vertex> 115 {
+      -3.67521095276 16.53840065 -0.113579511642
+      <UV>  {
+        0.485983 0.168878
+        <Tangent> { 0.921778 0.286788 0.260915 }
+        <Binormal> { 0.271615 -0.957862 0.093269 }
+      }
+      <Normal> { -0.279214 0.014313 0.960112 }
+    }
+    <Vertex> 116 {
+      -3.13362050056 20.732585907 -0.113579511642
+      <UV>  {
+        0.452598 0.093703
+        <Tangent> { 0.982071 0.176258 0.066856 }
+        <Binormal> { 0.169936 -0.974325 0.072442 }
+      }
+      <Normal> { -0.204230 0.037111 0.978210 }
+    }
+    <Vertex> 117 {
+      -3.67521095276 16.53840065 -0.113579511642
+      <UV>  {
+        0.485983 0.168878
+        <Tangent> { 0.921778 0.286788 0.260915 }
+        <Binormal> { 0.271615 -0.957862 0.093269 }
+      }
+      <Normal> { -0.279214 0.014313 0.960112 }
+    }
+    <Vertex> 118 {
+      -1.77140462399 17.0585784912 0.171120867133
+      <UV>  {
+        0.551463 0.169949
+        <Tangent> { 0.968990 0.241594 0.051874 }
+        <Binormal> { 0.228250 -0.949442 0.158216 }
+      }
+      <Normal> { -0.229163 0.106143 0.967559 }
+    }
+    <Vertex> 119 {
+      -0.73321723938 21.3429775238 -0.113579511642
+      <UV>  {
+        0.468652 0.089817
+        <Tangent> { 0.987920 0.154938 0.002732 }
+        <Binormal> { 0.154583 -0.986482 0.046796 }
+      }
+      <Normal> { -0.036409 0.041658 0.998444 }
+    }
+    <Vertex> 120 {
+      -3.13362050056 20.732585907 -0.113579511642
+      <UV>  {
+        0.452598 0.093703
+        <Tangent> { 0.982071 0.176258 0.066856 }
+        <Binormal> { 0.169936 -0.974325 0.072442 }
+      }
+      <Normal> { -0.204230 0.037111 0.978210 }
+    }
+    <Vertex> 121 {
+      -0.73321723938 21.3429775238 -0.113579511642
+      <UV>  {
+        0.468652 0.089817
+        <Tangent> { 0.987920 0.154938 0.002732 }
+        <Binormal> { 0.154583 -0.986482 0.046796 }
+      }
+      <Normal> { -0.036409 0.041658 0.998444 }
+    }
+    <Vertex> 122 {
+      0.891554474831 24.7353534698 -0.113579511642
+      <UV>  {
+        0.422818 0.015164
+        <Tangent> { 0.987034 0.160513 0.000000 }
+        <Binormal> { 0.160513 -0.987034 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 123 {
+      -2.05043983459 24.0973129272 -0.113579511642
+      <UV>  {
+        0.419213 0.018529
+        <Tangent> { 0.985253 0.165230 0.044454 }
+        <Binormal> { 0.161742 -0.979804 0.057062 }
+      }
+      <Normal> { -0.154088 0.032075 0.987518 }
+    }
+    <Vertex> 124 {
+      -3.13362050056 20.732585907 -0.113579511642
+      <UV>  {
+        0.452598 0.093703
+        <Tangent> { 0.982071 0.176258 0.066856 }
+        <Binormal> { 0.169936 -0.974325 0.072442 }
+      }
+      <Normal> { -0.204230 0.037111 0.978210 }
+    }
+    <Vertex> 125 {
+      -2.05043983459 24.0973129272 -0.113579511642
+      <UV>  {
+        0.419213 0.018529
+        <Tangent> { 0.985253 0.165230 0.044454 }
+        <Binormal> { 0.161742 -0.979804 0.057062 }
+      }
+      <Normal> { -0.154088 0.032075 0.987518 }
+    }
+    <Vertex> 126 {
+      -4.2453327179 23.4160194397 -0.648485422134
+      <UV>  {
+        0.405356 0.026100
+        <Tangent> { 0.947692 0.168615 0.271015 }
+        <Binormal> { 0.109005 -0.881551 0.167295 }
+      }
+      <Normal> { -0.672445 0.056887 0.737907 }
+    }
+    <Vertex> 127 {
+      -4.51612854004 20.2782020569 -0.648485422134
+      <UV>  {
+        0.412930 0.096953
+        <Tangent> { 0.914190 0.193502 0.356109 }
+        <Binormal> { 0.119970 -0.892756 0.177123 }
+      }
+      <Normal> { -0.714652 0.042482 0.698172 }
+    }
+    <Vertex> 128 {
+      11.6427497864 22.8748703003 -0.113579511642
+      <UV>  {
+        0.272253 0.085595
+        <Tangent> { 0.998580 0.051847 -0.012279 }
+        <Binormal> { 0.052715 -0.994856 0.086279 }
+      }
+      <Normal> { 0.006989 0.086764 0.996185 }
+    }
+    <Vertex> 129 {
+      7.1848950386 22.6756076813 -0.113579511642
+      <UV>  {
+        0.368779 0.081997
+        <Tangent> { 0.995183 0.098032 0.000070 }
+        <Binormal> { 0.097526 -0.990112 0.100737 }
+      }
+      <Normal> { -0.012024 0.100040 0.994903 }
+    }
+    <Vertex> 130 {
+      7.06949853897 20.5617847443 0.324613153934
+      <UV>  {
+        0.376328 0.136154
+        <Tangent> { 0.993252 0.113493 0.023883 }
+        <Binormal> { 0.094905 -0.913710 0.395077 }
+      }
+      <Normal> { -0.063417 0.390515 0.918393 }
+    }
+    <Vertex> 131 {
+      11.554145813 20.9130516052 0.324613153934
+      <UV>  {
+        0.276622 0.136535
+        <Tangent> { 0.997085 0.023380 -0.072629 }
+        <Binormal> { 0.048430 -0.929468 0.365667 }
+      }
+      <Normal> { 0.053591 0.367992 0.928281 }
+    }
+    <Vertex> 132 {
+      11.6427497864 22.8748703003 -0.113579511642
+      <UV>  {
+        0.272253 0.085595
+        <Tangent> { 0.998580 0.051847 -0.012279 }
+        <Binormal> { 0.052715 -0.994856 0.086279 }
+      }
+      <Normal> { 0.006989 0.086764 0.996185 }
+    }
+    <Vertex> 133 {
+      11.554145813 20.9130516052 0.324613153934
+      <UV>  {
+        0.276622 0.136535
+        <Tangent> { 0.997085 0.023380 -0.072629 }
+        <Binormal> { 0.048430 -0.929468 0.365667 }
+      }
+      <Normal> { 0.053591 0.367992 0.928281 }
+    }
+    <Vertex> 134 {
+      15.7724323273 19.5616073608 0.166863754392
+      <UV>  {
+        0.164916 0.168991
+        <Tangent> { 0.967200 -0.129109 -0.218756 }
+        <Binormal> { -0.087036 -0.977485 0.192090 }
+      }
+      <Normal> { 0.239296 0.166662 0.956511 }
+    }
+    <Vertex> 135 {
+      15.699048996 22.8748703003 -0.113579511642
+      <UV>  {
+        0.174351 0.089075
+        <Tangent> { 0.999996 -0.002838 0.000116 }
+        <Binormal> { -0.002840 -0.998773 0.043979 }
+      }
+      <Normal> { 0.022248 0.043916 0.998779 }
+    }
+    <Vertex> 136 {
+      11.6427497864 22.8748703003 -0.113579511642
+      <UV>  {
+        0.272253 0.085595
+        <Tangent> { 0.998580 0.051847 -0.012279 }
+        <Binormal> { 0.052715 -0.994856 0.086279 }
+      }
+      <Normal> { 0.006989 0.086764 0.996185 }
+    }
+    <Vertex> 137 {
+      15.699048996 22.8748703003 -0.113579511642
+      <UV>  {
+        0.174351 0.089075
+        <Tangent> { 0.999996 -0.002838 0.000116 }
+        <Binormal> { -0.002840 -0.998773 0.043979 }
+      }
+      <Normal> { 0.022248 0.043916 0.998779 }
+    }
+    <Vertex> 138 {
+      15.6990499496 24.9480285645 -0.113579511642
+      <UV>  {
+        0.175651 0.039911
+        <Tangent> { 0.999999 0.001019 0.000000 }
+        <Binormal> { 0.001019 -0.999999 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 139 {
+      11.6427497864 24.9480285645 -0.113579511642
+      <UV>  {
+        0.271160 0.036143
+        <Tangent> { 0.998372 0.057042 0.000000 }
+        <Binormal> { 0.057042 -0.998372 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 140 {
+      11.6427497864 22.8748703003 -0.113579511642
+      <UV>  {
+        0.272253 0.085595
+        <Tangent> { 0.998580 0.051847 -0.012279 }
+        <Binormal> { 0.052715 -0.994856 0.086279 }
+      }
+      <Normal> { 0.006989 0.086764 0.996185 }
+    }
+    <Vertex> 141 {
+      11.6427497864 24.9480285645 -0.113579511642
+      <UV>  {
+        0.271160 0.036143
+        <Tangent> { 0.998372 0.057042 0.000000 }
+        <Binormal> { 0.057042 -0.998372 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 142 {
+      7.45569086075 24.9480304718 -0.113579511642
+      <UV>  {
+        0.358657 0.028822
+        <Tangent> { 0.995482 0.094947 0.000000 }
+        <Binormal> { 0.094947 -0.995482 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 143 {
+      7.1848950386 22.6756076813 -0.113579511642
+      <UV>  {
+        0.368779 0.081997
+        <Tangent> { 0.995183 0.098032 0.000070 }
+        <Binormal> { 0.097526 -0.990112 0.100737 }
+      }
+      <Normal> { -0.012024 0.100040 0.994903 }
+    }
+    <Vertex> 144 {
+      18.7963485718 0.861906945705 -0.113579511642
+      <UV>  {
+        -0.010210 0.566253
+        <Tangent> { 0.968557 -0.233976 -0.084575 }
+        <Binormal> { -0.234339 -0.972107 0.005665 }
+      }
+      <Normal> { 0.086367 -0.015015 0.996124 }
+    }
+    <Vertex> 145 {
+      18.7963485718 5.31740617752 -0.113579511642
+      <UV>  {
+        0.013440 0.470159
+        <Tangent> { 0.968881 -0.229543 -0.092631 }
+        <Binormal> { -0.228373 -0.973277 0.023132 }
+      }
+      <Normal> { 0.100772 0.000000 0.994903 }
+    }
+    <Vertex> 146 {
+      16.655790329 5.26653766632 0.324613153934
+      <UV>  {
+        0.064889 0.483213
+        <Tangent> { 0.837871 -0.278601 -0.469419 }
+        <Binormal> { -0.241862 -0.960349 0.138267 }
+      }
+      <Normal> { 0.496292 0.000000 0.868129 }
+    }
+    <Vertex> 147 {
+      16.6557884216 0.861906886101 0.324613153934
+      <UV>  {
+        0.041302 0.578635
+        <Tangent> { 0.823103 -0.279579 -0.494304 }
+        <Binormal> { -0.290850 -0.955012 0.055839 }
+      }
+      <Normal> { 0.475112 -0.093539 0.874935 }
+    }
+    <Vertex> 148 {
+      18.7963485718 0.861906945705 -0.113579511642
+      <UV>  {
+        -0.010210 0.566253
+        <Tangent> { 0.968557 -0.233976 -0.084575 }
+        <Binormal> { -0.234339 -0.972107 0.005665 }
+      }
+      <Normal> { 0.086367 -0.015015 0.996124 }
+    }
+    <Vertex> 149 {
+      16.6557884216 0.861906886101 0.324613153934
+      <UV>  {
+        0.041302 0.578635
+        <Tangent> { 0.823103 -0.279579 -0.494304 }
+        <Binormal> { -0.290850 -0.955012 0.055839 }
+      }
+      <Normal> { 0.475112 -0.093539 0.874935 }
+    }
+    <Vertex> 150 {
+      15.5468168259 -2.23269701004 0.171120867133
+      <UV>  {
+        0.029272 0.647219
+        <Tangent> { 0.900744 -0.302432 -0.311762 }
+        <Binormal> { -0.373345 -0.905656 -0.200117 }
+      }
+      <Normal> { 0.237251 -0.301828 0.923338 }
+    }
+    <Vertex> 151 {
+      18.3813247681 -2.23280644417 -0.113579511642
+      <UV>  {
+        -0.017294 0.634605
+        <Tangent> { 0.974540 -0.216447 -0.058504 }
+        <Binormal> { -0.217954 -0.975704 -0.020788 }
+      }
+      <Normal> { 0.048372 -0.032075 0.998291 }
+    }
+    <Vertex> 152 {
+      18.7963485718 0.861906945705 -0.113579511642
+      <UV>  {
+        -0.010210 0.566253
+        <Tangent> { 0.968557 -0.233976 -0.084575 }
+        <Binormal> { -0.234339 -0.972107 0.005665 }
+      }
+      <Normal> { 0.086367 -0.015015 0.996124 }
+    }
+    <Vertex> 153 {
+      18.3813247681 -2.23280644417 -0.113579511642
+      <UV>  {
+        -0.017294 0.634605
+        <Tangent> { 0.974540 -0.216447 -0.058504 }
+        <Binormal> { -0.217954 -0.975704 -0.020788 }
+      }
+      <Normal> { 0.048372 -0.032075 0.998291 }
+    }
+    <Vertex> 154 {
+      20.9991264343 -2.23280668259 -0.113579511642
+      <UV>  {
+        -0.072714 0.621073
+        <Tangent> { 0.971999 -0.234985 0.000000 }
+        <Binormal> { -0.234985 -0.971999 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 155 {
+      21.4141483307 0.861906886101 -0.113579511642
+      <UV>  {
+        -0.065267 0.552977
+        <Tangent> { 0.972910 -0.231183 0.000000 }
+        <Binormal> { -0.231183 -0.972910 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 156 {
+      18.7963485718 0.861906945705 -0.113579511642
+      <UV>  {
+        -0.010210 0.566253
+        <Tangent> { 0.968557 -0.233976 -0.084575 }
+        <Binormal> { -0.234339 -0.972107 0.005665 }
+      }
+      <Normal> { 0.086367 -0.015015 0.996124 }
+    }
+    <Vertex> 157 {
+      21.4141483307 0.861906886101 -0.113579511642
+      <UV>  {
+        -0.065267 0.552977
+        <Tangent> { 0.972910 -0.231183 0.000000 }
+        <Binormal> { -0.231183 -0.972910 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 158 {
+      21.414150238 5.31740617752 -0.113579511642
+      <UV>  {
+        -0.042106 0.457809
+        <Tangent> { 0.977754 -0.209756 0.000000 }
+        <Binormal> { -0.209756 -0.977754 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 159 {
+      18.7963485718 5.31740617752 -0.113579511642
+      <UV>  {
+        0.013440 0.470159
+        <Tangent> { 0.968881 -0.229543 -0.092631 }
+        <Binormal> { -0.228373 -0.973277 0.023132 }
+      }
+      <Normal> { 0.100772 0.000000 0.994903 }
+    }
+    <Vertex> 160 {
+      18.7963485718 12.4022283554 -0.113579511642
+      <UV>  {
+        0.052271 0.316576
+        <Tangent> { 0.978118 -0.192182 -0.079697 }
+        <Binormal> { -0.191087 -0.981312 0.021146 }
+      }
+      <Normal> { 0.085025 0.004913 0.996338 }
+    }
+    <Vertex> 161 {
+      18.7963485718 19.2201309204 -0.113579511642
+      <UV>  {
+        0.087794 0.167783
+        <Tangent> { 0.990162 -0.132799 -0.044095 }
+        <Binormal> { -0.131972 -0.991009 0.021121 }
+      }
+      <Normal> { 0.046632 0.015076 0.998779 }
+    }
+    <Vertex> 162 {
+      15.7724323273 19.5616073608 0.166863754392
+      <UV>  {
+        0.164916 0.168991
+        <Tangent> { 0.967200 -0.129109 -0.218756 }
+        <Binormal> { -0.087036 -0.977485 0.192090 }
+      }
+      <Normal> { 0.239296 0.166662 0.956511 }
+    }
+    <Vertex> 163 {
+      16.655790329 12.1987533569 0.324613153934
+      <UV>  {
+        0.104325 0.332243
+        <Tangent> { 0.846208 -0.279702 -0.453540 }
+        <Binormal> { -0.232502 -0.959464 0.157910 }
+      }
+      <Normal> { 0.462447 0.033753 0.885983 }
+    }
+    <Vertex> 164 {
+      18.7963485718 12.4022283554 -0.113579511642
+      <UV>  {
+        0.052271 0.316576
+        <Tangent> { 0.978118 -0.192182 -0.079697 }
+        <Binormal> { -0.191087 -0.981312 0.021146 }
+      }
+      <Normal> { 0.085025 0.004913 0.996338 }
+    }
+    <Vertex> 165 {
+      16.655790329 12.1987533569 0.324613153934
+      <UV>  {
+        0.104325 0.332243
+        <Tangent> { 0.846208 -0.279702 -0.453540 }
+        <Binormal> { -0.232502 -0.959464 0.157910 }
+      }
+      <Normal> { 0.462447 0.033753 0.885983 }
+    }
+    <Vertex> 166 {
+      16.655790329 5.26653766632 0.324613153934
+      <UV>  {
+        0.064889 0.483213
+        <Tangent> { 0.837871 -0.278601 -0.469419 }
+        <Binormal> { -0.241862 -0.960349 0.138267 }
+      }
+      <Normal> { 0.496292 0.000000 0.868129 }
+    }
+    <Vertex> 167 {
+      18.7963485718 5.31740617752 -0.113579511642
+      <UV>  {
+        0.013440 0.470159
+        <Tangent> { 0.968881 -0.229543 -0.092631 }
+        <Binormal> { -0.228373 -0.973277 0.023132 }
+      }
+      <Normal> { 0.100772 0.000000 0.994903 }
+    }
+    <Vertex> 168 {
+      18.7963485718 12.4022283554 -0.113579511642
+      <UV>  {
+        0.052271 0.316576
+        <Tangent> { 0.978118 -0.192182 -0.079697 }
+        <Binormal> { -0.191087 -0.981312 0.021146 }
+      }
+      <Normal> { 0.085025 0.004913 0.996338 }
+    }
+    <Vertex> 169 {
+      18.7963485718 5.31740617752 -0.113579511642
+      <UV>  {
+        0.013440 0.470159
+        <Tangent> { 0.968881 -0.229543 -0.092631 }
+        <Binormal> { -0.228373 -0.973277 0.023132 }
+      }
+      <Normal> { 0.100772 0.000000 0.994903 }
+    }
+    <Vertex> 170 {
+      21.414150238 5.31740617752 -0.113579511642
+      <UV>  {
+        -0.042106 0.457809
+        <Tangent> { 0.977754 -0.209756 0.000000 }
+        <Binormal> { -0.209756 -0.977754 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 171 {
+      21.414150238 12.4022283554 -0.113579511642
+      <UV>  {
+        -0.005710 0.306319
+        <Tangent> { 0.983696 -0.179842 0.000000 }
+        <Binormal> { -0.179842 -0.983696 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 172 {
+      18.7963485718 12.4022283554 -0.113579511642
+      <UV>  {
+        0.052271 0.316576
+        <Tangent> { 0.978118 -0.192182 -0.079697 }
+        <Binormal> { -0.191087 -0.981312 0.021146 }
+      }
+      <Normal> { 0.085025 0.004913 0.996338 }
+    }
+    <Vertex> 173 {
+      21.414150238 12.4022283554 -0.113579511642
+      <UV>  {
+        -0.005710 0.306319
+        <Tangent> { 0.983696 -0.179842 0.000000 }
+        <Binormal> { -0.179842 -0.983696 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 174 {
+      21.414150238 19.2201290131 -0.113579511642
+      <UV>  {
+        0.027532 0.159861
+        <Tangent> { 0.990122 -0.140211 0.000000 }
+        <Binormal> { -0.140211 -0.990122 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 175 {
+      18.7963485718 19.2201309204 -0.113579511642
+      <UV>  {
+        0.087794 0.167783
+        <Tangent> { 0.990162 -0.132799 -0.044095 }
+        <Binormal> { -0.131972 -0.991009 0.021121 }
+      }
+      <Normal> { 0.046632 0.015076 0.998779 }
+    }
+    <Vertex> 176 {
+      17.136259079 -5.23527050018 -0.113579511642
+      <UV>  {
+        -0.006426 0.704962
+        <Tangent> { 0.973807 -0.226572 -0.019092 }
+        <Binormal> { -0.226842 -0.973806 -0.013806 }
+      }
+      <Normal> { 0.012391 -0.017060 0.999756 }
+    }
+    <Vertex> 177 {
+      18.3813247681 -2.23280644417 -0.113579511642
+      <UV>  {
+        -0.017294 0.634605
+        <Tangent> { 0.974540 -0.216447 -0.058504 }
+        <Binormal> { -0.217954 -0.975704 -0.020788 }
+      }
+      <Normal> { 0.048372 -0.032075 0.998291 }
+    }
+    <Vertex> 178 {
+      15.5468168259 -2.23269701004 0.171120867133
+      <UV>  {
+        0.029272 0.647219
+        <Tangent> { 0.900744 -0.302432 -0.311762 }
+        <Binormal> { -0.373345 -0.905656 -0.200117 }
+      }
+      <Normal> { 0.237251 -0.301828 0.923338 }
+    }
+    <Vertex> 179 {
+      14.2464704514 -5.23527050018 -0.113579511642
+      <UV>  {
+        0.049116 0.718580
+        <Tangent> { 0.977736 -0.209601 -0.009978 }
+        <Binormal> { -0.209781 -0.976222 -0.049431 }
+      }
+      <Normal> { 0.021699 -0.055208 0.998230 }
+    }
+    <Vertex> 180 {
+      17.136259079 -5.23527050018 -0.113579511642
+      <UV>  {
+        -0.006426 0.704962
+        <Tangent> { 0.973807 -0.226572 -0.019092 }
+        <Binormal> { -0.226842 -0.973806 -0.013806 }
+      }
+      <Normal> { 0.012391 -0.017060 0.999756 }
+    }
+    <Vertex> 181 {
+      14.2464704514 -5.23527050018 -0.113579511642
+      <UV>  {
+        0.049116 0.718580
+        <Tangent> { 0.977736 -0.209601 -0.009978 }
+        <Binormal> { -0.209781 -0.976222 -0.049431 }
+      }
+      <Normal> { 0.021699 -0.055208 0.998230 }
+    }
+    <Vertex> 182 {
+      13.157037735 -8.21325492859 -0.113579511642
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.971222 -0.238178 0.000000 }
+        <Binormal> { -0.238178 -0.971222 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 183 {
+      15.8911943436 -8.21325492859 -0.113579511642
+      <UV>  {
+        0.004500 0.774623
+        <Tangent> { 0.969052 -0.246856 0.000000 }
+        <Binormal> { -0.246856 -0.969052 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 184 {
+      17.136259079 -5.23527050018 -0.113579511642
+      <UV>  {
+        -0.006426 0.704962
+        <Tangent> { 0.973807 -0.226572 -0.019092 }
+        <Binormal> { -0.226842 -0.973806 -0.013806 }
+      }
+      <Normal> { 0.012391 -0.017060 0.999756 }
+    }
+    <Vertex> 185 {
+      15.8911943436 -8.21325492859 -0.113579511642
+      <UV>  {
+        0.004500 0.774623
+        <Tangent> { 0.969052 -0.246856 0.000000 }
+        <Binormal> { -0.246856 -0.969052 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 186 {
+      18.5089950562 -8.21325492859 -0.113579511642
+      <UV>  {
+        -0.051042 0.761006
+        <Tangent> { 0.971235 -0.238121 0.000000 }
+        <Binormal> { -0.238121 -0.971235 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 187 {
+      19.7540607452 -5.23527050018 -0.113579511642
+      <UV>  {
+        -0.061968 0.691345
+        <Tangent> { 0.971276 -0.237956 0.000000 }
+        <Binormal> { -0.237956 -0.971276 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 188 {
+      17.136259079 -5.23527050018 -0.113579511642
+      <UV>  {
+        -0.006426 0.704962
+        <Tangent> { 0.973807 -0.226572 -0.019092 }
+        <Binormal> { -0.226842 -0.973806 -0.013806 }
+      }
+      <Normal> { 0.012391 -0.017060 0.999756 }
+    }
+    <Vertex> 189 {
+      19.7540607452 -5.23527050018 -0.113579511642
+      <UV>  {
+        -0.061968 0.691345
+        <Tangent> { 0.971276 -0.237956 0.000000 }
+        <Binormal> { -0.237956 -0.971276 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 190 {
+      20.9991264343 -2.23280668259 -0.113579511642
+      <UV>  {
+        -0.072714 0.621073
+        <Tangent> { 0.971999 -0.234985 0.000000 }
+        <Binormal> { -0.234985 -0.971999 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 191 {
+      18.3813247681 -2.23280644417 -0.113579511642
+      <UV>  {
+        -0.017294 0.634605
+        <Tangent> { 0.974540 -0.216447 -0.058504 }
+        <Binormal> { -0.217954 -0.975704 -0.020788 }
+      }
+      <Normal> { 0.048372 -0.032075 0.998291 }
+    }
+    <Vertex> 192 {
+      18.7963485718 22.8748703003 -0.113579511642
+      <UV>  {
+        0.101521 0.086056
+        <Tangent> { 0.996411 -0.084032 -0.010226 }
+        <Binormal> { -0.083915 -0.996381 0.011134 }
+      }
+      <Normal> { 0.011994 0.010163 0.999847 }
+    }
+    <Vertex> 193 {
+      18.7963485718 24.9480285645 -0.113579511642
+      <UV>  {
+        0.104350 0.037863
+        <Tangent> { 0.998284 -0.058556 0.000000 }
+        <Binormal> { -0.058556 -0.998284 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 194 {
+      15.6990499496 24.9480285645 -0.113579511642
+      <UV>  {
+        0.175651 0.039911
+        <Tangent> { 0.999999 0.001019 0.000000 }
+        <Binormal> { 0.001019 -0.999999 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 195 {
+      15.699048996 22.8748703003 -0.113579511642
+      <UV>  {
+        0.174351 0.089075
+        <Tangent> { 0.999996 -0.002838 0.000116 }
+        <Binormal> { -0.002840 -0.998773 0.043979 }
+      }
+      <Normal> { 0.022248 0.043916 0.998779 }
+    }
+    <Vertex> 196 {
+      18.7963485718 22.8748703003 -0.113579511642
+      <UV>  {
+        0.101521 0.086056
+        <Tangent> { 0.996411 -0.084032 -0.010226 }
+        <Binormal> { -0.083915 -0.996381 0.011134 }
+      }
+      <Normal> { 0.011994 0.010163 0.999847 }
+    }
+    <Vertex> 197 {
+      15.699048996 22.8748703003 -0.113579511642
+      <UV>  {
+        0.174351 0.089075
+        <Tangent> { 0.999996 -0.002838 0.000116 }
+        <Binormal> { -0.002840 -0.998773 0.043979 }
+      }
+      <Normal> { 0.022248 0.043916 0.998779 }
+    }
+    <Vertex> 198 {
+      15.7724323273 19.5616073608 0.166863754392
+      <UV>  {
+        0.164916 0.168991
+        <Tangent> { 0.967200 -0.129109 -0.218756 }
+        <Binormal> { -0.087036 -0.977485 0.192090 }
+      }
+      <Normal> { 0.239296 0.166662 0.956511 }
+    }
+    <Vertex> 199 {
+      18.7963485718 19.2201309204 -0.113579511642
+      <UV>  {
+        0.087794 0.167783
+        <Tangent> { 0.990162 -0.132799 -0.044095 }
+        <Binormal> { -0.131972 -0.991009 0.021121 }
+      }
+      <Normal> { 0.046632 0.015076 0.998779 }
+    }
+    <Vertex> 200 {
+      18.7963485718 22.8748703003 -0.113579511642
+      <UV>  {
+        0.101521 0.086056
+        <Tangent> { 0.996411 -0.084032 -0.010226 }
+        <Binormal> { -0.083915 -0.996381 0.011134 }
+      }
+      <Normal> { 0.011994 0.010163 0.999847 }
+    }
+    <Vertex> 201 {
+      18.7963485718 19.2201309204 -0.113579511642
+      <UV>  {
+        0.087794 0.167783
+        <Tangent> { 0.990162 -0.132799 -0.044095 }
+        <Binormal> { -0.131972 -0.991009 0.021121 }
+      }
+      <Normal> { 0.046632 0.015076 0.998779 }
+    }
+    <Vertex> 202 {
+      21.414150238 19.2201290131 -0.113579511642
+      <UV>  {
+        0.027532 0.159861
+        <Tangent> { 0.990122 -0.140211 0.000000 }
+        <Binormal> { -0.140211 -0.990122 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 203 {
+      21.414150238 22.8748703003 -0.113579511642
+      <UV>  {
+        0.041229 0.079788
+        <Tangent> { 0.994315 -0.106478 0.000000 }
+        <Binormal> { -0.106478 -0.994315 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 204 {
+      18.7963485718 22.8748703003 -0.113579511642
+      <UV>  {
+        0.101521 0.086056
+        <Tangent> { 0.996411 -0.084032 -0.010226 }
+        <Binormal> { -0.083915 -0.996381 0.011134 }
+      }
+      <Normal> { 0.011994 0.010163 0.999847 }
+    }
+    <Vertex> 205 {
+      21.414150238 22.8748703003 -0.113579511642
+      <UV>  {
+        0.041229 0.079788
+        <Tangent> { 0.994315 -0.106478 0.000000 }
+        <Binormal> { -0.106478 -0.994315 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 206 {
+      20.7596988678 24.4297409058 -0.113579511642
+      <UV>  {
+        0.058971 0.045866
+        <Tangent> { 0.995356 -0.096258 0.000000 }
+        <Binormal> { -0.096258 -0.995356 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 207 {
+      18.7963485718 24.9480285645 -0.113579511642
+      <UV>  {
+        0.104350 0.037863
+        <Tangent> { 0.998284 -0.058556 0.000000 }
+        <Binormal> { -0.058556 -0.998284 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 208 {
+      3.9661090374 -11.2345275879 -0.113579511642
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.997104 -0.061362 -0.044935 }
+        <Binormal> { -0.061242 -0.998087 0.003995 }
+      }
+      <Normal> { 0.046266 0.001160 0.998901 }
+    }
+    <Vertex> 209 {
+      7.04066562653 -11.2345294952 -0.113579511642
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.988852 -0.148902 0.000000 }
+        <Binormal> { -0.148902 -0.988852 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 210 {
+      7.09254312515 -8.21325492859 -0.113579511642
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.996496 -0.083634 0.000000 }
+        <Binormal> { -0.083634 -0.996496 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 211 {
+      3.9661090374 -8.21325397491 -0.113579511642
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.995400 0.087666 -0.038637 }
+        <Binormal> { 0.088085 -0.996041 0.009342 }
+      }
+      <Normal> { 0.033082 0.012299 0.999359 }
+    }
+    <Vertex> 212 {
+      3.9661090374 -11.2345275879 -0.113579511642
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.997104 -0.061362 -0.044935 }
+        <Binormal> { -0.061242 -0.998087 0.003995 }
+      }
+      <Normal> { 0.046266 0.001160 0.998901 }
+    }
+    <Vertex> 213 {
+      3.9661090374 -8.21325397491 -0.113579511642
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.995400 0.087666 -0.038637 }
+        <Binormal> { 0.088085 -0.996041 0.009342 }
+      }
+      <Normal> { 0.033082 0.012299 0.999359 }
+    }
+    <Vertex> 214 {
+      0.917312920094 -8.21325302124 0.126114070415
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.966551 -0.229329 -0.114838 }
+        <Binormal> { -0.218570 -0.970772 0.098982 }
+      }
+      <Normal> { 0.136418 0.070040 0.988159 }
+    }
+    <Vertex> 215 {
+      0.891552627087 -11.2345266342 0.201189562678
+      <UV>  {
+        0.286459 0.899701
+        <Tangent> { 0.966135 -0.173409 -0.191083 }
+        <Binormal> { -0.169417 -0.984805 0.037127 }
+      }
+      <Normal> { 0.186895 0.004883 0.982360 }
+    }
+    <Vertex> 216 {
+      3.9661090374 -11.2345275879 -0.113579511642
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.997104 -0.061362 -0.044935 }
+        <Binormal> { -0.061242 -0.998087 0.003995 }
+      }
+      <Normal> { 0.046266 0.001160 0.998901 }
+    }
+    <Vertex> 217 {
+      0.891552627087 -11.2345266342 0.201189562678
+      <UV>  {
+        0.286459 0.899701
+        <Tangent> { 0.966135 -0.173409 -0.191083 }
+        <Binormal> { -0.169417 -0.984805 0.037127 }
+      }
+      <Normal> { 0.186895 0.004883 0.982360 }
+    }
+    <Vertex> 218 {
+      0.868828475475 -14.2169790268 0.159442424774
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.963463 -0.192677 -0.186051 }
+        <Binormal> { -0.198675 -0.979779 -0.014163 }
+      }
+      <Normal> { 0.161504 -0.046999 0.985748 }
+    }
+    <Vertex> 219 {
+      3.9661090374 -14.2169799805 -0.113579511642
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.978257 -0.202833 -0.043275 }
+        <Binormal> { -0.202983 -0.979172 0.000894 }
+      }
+      <Normal> { 0.040468 -0.007477 0.999146 }
+    }
+    <Vertex> 220 {
+      3.9661090374 -11.2345275879 -0.113579511642
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.997104 -0.061362 -0.044935 }
+        <Binormal> { -0.061242 -0.998087 0.003995 }
+      }
+      <Normal> { 0.046266 0.001160 0.998901 }
+    }
+    <Vertex> 221 {
+      3.9661090374 -14.2169799805 -0.113579511642
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.978257 -0.202833 -0.043275 }
+        <Binormal> { -0.202983 -0.979172 0.000894 }
+      }
+      <Normal> { 0.040468 -0.007477 0.999146 }
+    }
+    <Vertex> 222 {
+      7.04066562653 -14.2169818878 -0.113579511642
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.984157 -0.177298 0.000000 }
+        <Binormal> { -0.177298 -0.984157 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 223 {
+      7.04066562653 -11.2345294952 -0.113579511642
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.988852 -0.148902 0.000000 }
+        <Binormal> { -0.148902 -0.988852 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 224 {
+      -2.05044126511 -11.2345266342 1.14549672604
+      <UV>  {
+        0.360398 0.921832
+        <Tangent> { 0.911828 -0.357281 -0.202289 }
+        <Binormal> { -0.346181 -0.933845 0.088920 }
+      }
+      <Normal> { 0.210639 0.014985 0.977416 }
+    }
+    <Vertex> 225 {
+      0.891552627087 -11.2345266342 0.201189562678
+      <UV>  {
+        0.286459 0.899701
+        <Tangent> { 0.966135 -0.173409 -0.191083 }
+        <Binormal> { -0.169417 -0.984805 0.037127 }
+      }
+      <Normal> { 0.186895 0.004883 0.982360 }
+    }
+    <Vertex> 226 {
+      0.917312920094 -8.21325302124 0.126114070415
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.966551 -0.229329 -0.114838 }
+        <Binormal> { -0.218570 -0.970772 0.098982 }
+      }
+      <Normal> { 0.136418 0.070040 0.988159 }
+    }
+    <Vertex> 227 {
+      -1.94740009308 -8.21325111389 0.845194041729
+      <UV>  {
+        0.362298 0.849152
+        <Tangent> { 0.815142 -0.577978 -0.038521 }
+        <Binormal> { -0.556363 -0.799513 0.222889 }
+      }
+      <Normal> { 0.127689 0.182897 0.974792 }
+    }
+    <Vertex> 228 {
+      -2.05044126511 -11.2345266342 1.14549672604
+      <UV>  {
+        0.360398 0.921832
+        <Tangent> { 0.911828 -0.357281 -0.202289 }
+        <Binormal> { -0.346181 -0.933845 0.088920 }
+      }
+      <Normal> { 0.210639 0.014985 0.977416 }
+    }
+    <Vertex> 229 {
+      -1.94740009308 -8.21325111389 0.845194041729
+      <UV>  {
+        0.362298 0.849152
+        <Tangent> { 0.815142 -0.577978 -0.038521 }
+        <Binormal> { -0.556363 -0.799513 0.222889 }
+      }
+      <Normal> { 0.127689 0.182897 0.974792 }
+    }
+    <Vertex> 230 {
+      -4.1140127182 -8.25123500824 1.05926406384
+      <UV>  {
+        0.457482 0.885197
+        <Tangent> { 0.860454 -0.501535 0.089893 }
+        <Binormal> { -0.461600 -0.782938 0.050221 }
+      }
+      <Normal> { -0.401410 0.292337 0.867977 }
+    }
+    <Vertex> 231 {
+      -4.33829259872 -11.25669384 1.53156352043
+      <UV>  {
+        0.441652 0.949759
+        <Tangent> { 0.860542 -0.492254 -0.130972 }
+        <Binormal> { -0.449695 -0.755240 -0.116140 }
+      }
+      <Normal> { -0.356243 0.068819 0.931852 }
+    }
+    <Vertex> 232 {
+      -2.05044126511 -11.2345266342 1.14549672604
+      <UV>  {
+        0.360398 0.921832
+        <Tangent> { 0.911828 -0.357281 -0.202289 }
+        <Binormal> { -0.346181 -0.933845 0.088920 }
+      }
+      <Normal> { 0.210639 0.014985 0.977416 }
+    }
+    <Vertex> 233 {
+      -4.33829259872 -11.25669384 1.53156352043
+      <UV>  {
+        0.441652 0.949759
+        <Tangent> { 0.860542 -0.492254 -0.130972 }
+        <Binormal> { -0.449695 -0.755240 -0.116140 }
+      }
+      <Normal> { -0.356243 0.068819 0.931852 }
+    }
+    <Vertex> 234 {
+      -4.53326320648 -14.1648855209 1.29812788963
+      <UV>  {
+        0.425823 1.014322
+        <Tangent> { 0.914995 -0.368621 -0.164020 }
+        <Binormal> { -0.361483 -0.811512 -0.192750 }
+      }
+      <Normal> { -0.319193 -0.082064 0.944121 }
+    }
+    <Vertex> 235 {
+      -2.14133810997 -14.2169790268 0.978508234024
+      <UV>  {
+        0.359217 0.997991
+        <Tangent> { 0.948077 -0.235315 -0.213954 }
+        <Binormal> { -0.253886 -0.965043 -0.063635 }
+      }
+      <Normal> { 0.179235 -0.111606 0.977447 }
+    }
+    <Vertex> 236 {
+      -2.05044126511 -11.2345266342 1.14549672604
+      <UV>  {
+        0.360398 0.921832
+        <Tangent> { 0.911828 -0.357281 -0.202289 }
+        <Binormal> { -0.346181 -0.933845 0.088920 }
+      }
+      <Normal> { 0.210639 0.014985 0.977416 }
+    }
+    <Vertex> 237 {
+      -2.14133810997 -14.2169790268 0.978508234024
+      <UV>  {
+        0.359217 0.997991
+        <Tangent> { 0.948077 -0.235315 -0.213954 }
+        <Binormal> { -0.253886 -0.965043 -0.063635 }
+      }
+      <Normal> { 0.179235 -0.111606 0.977447 }
+    }
+    <Vertex> 238 {
+      0.868828475475 -14.2169790268 0.159442424774
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.963463 -0.192677 -0.186051 }
+        <Binormal> { -0.198675 -0.979779 -0.014163 }
+      }
+      <Normal> { 0.161504 -0.046999 0.985748 }
+    }
+    <Vertex> 239 {
+      0.891552627087 -11.2345266342 0.201189562678
+      <UV>  {
+        0.286459 0.899701
+        <Tangent> { 0.966135 -0.173409 -0.191083 }
+        <Binormal> { -0.169417 -0.984805 0.037127 }
+      }
+      <Normal> { 0.186895 0.004883 0.982360 }
+    }
+    <Vertex> 240 {
+      9.9826593399 -11.2345294952 -0.113579511642
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.974835 -0.222929 0.000000 }
+        <Binormal> { -0.222929 -0.974835 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 241 {
+      12.7938938141 -11.2345294952 -0.113579511642
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.971171 -0.238383 0.000000 }
+        <Binormal> { -0.238383 -0.971171 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 242 {
+      13.157037735 -8.21325492859 -0.113579511642
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.971222 -0.238178 0.000000 }
+        <Binormal> { -0.238178 -0.971222 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 243 {
+      10.1901702881 -8.21325492859 -0.113579511642
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.973570 -0.228387 0.000000 }
+        <Binormal> { -0.228387 -0.973570 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 244 {
+      9.9826593399 -11.2345294952 -0.113579511642
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.974835 -0.222929 0.000000 }
+        <Binormal> { -0.222929 -0.974835 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 245 {
+      10.1901702881 -8.21325492859 -0.113579511642
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.973570 -0.228387 0.000000 }
+        <Binormal> { -0.228387 -0.973570 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 246 {
+      7.09254312515 -8.21325492859 -0.113579511642
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.996496 -0.083634 0.000000 }
+        <Binormal> { -0.083634 -0.996496 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 247 {
+      7.04066562653 -11.2345294952 -0.113579511642
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.988852 -0.148902 0.000000 }
+        <Binormal> { -0.148902 -0.988852 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 248 {
+      9.9826593399 -11.2345294952 -0.113579511642
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.974835 -0.222929 0.000000 }
+        <Binormal> { -0.222929 -0.974835 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 249 {
+      7.04066562653 -11.2345294952 -0.113579511642
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.988852 -0.148902 0.000000 }
+        <Binormal> { -0.148902 -0.988852 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 250 {
+      7.04066562653 -14.2169818878 -0.113579511642
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.984157 -0.177298 0.000000 }
+        <Binormal> { -0.177298 -0.984157 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 251 {
+      9.9826593399 -14.2169818878 -0.113579511642
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.972336 -0.233587 0.000000 }
+        <Binormal> { -0.233587 -0.972336 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 252 {
+      9.9826593399 -11.2345294952 -0.113579511642
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.974835 -0.222929 0.000000 }
+        <Binormal> { -0.222929 -0.974835 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 253 {
+      9.9826593399 -14.2169818878 -0.113579511642
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.972336 -0.233587 0.000000 }
+        <Binormal> { -0.233587 -0.972336 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 254 {
+      12.7938938141 -14.2169818878 -0.113579511642
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.972211 -0.234106 0.000000 }
+        <Binormal> { -0.234106 -0.972211 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 255 {
+      12.7938938141 -11.2345294952 -0.113579511642
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.971171 -0.238383 0.000000 }
+        <Binormal> { -0.238383 -0.971171 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 256 {
+      15.4761724472 -11.2345294952 -0.113579511642
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.971307 -0.237829 0.000000 }
+        <Binormal> { -0.237829 -0.971307 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 257 {
+      18.0939731598 -11.2345294952 -0.113579511642
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.971780 -0.235890 0.000000 }
+        <Binormal> { -0.235890 -0.971780 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 258 {
+      18.5089950562 -8.21325492859 -0.113579511642
+      <UV>  {
+        -0.051042 0.761006
+        <Tangent> { 0.971235 -0.238121 0.000000 }
+        <Binormal> { -0.238121 -0.971235 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 259 {
+      15.8911943436 -8.21325492859 -0.113579511642
+      <UV>  {
+        0.004500 0.774623
+        <Tangent> { 0.969052 -0.246856 0.000000 }
+        <Binormal> { -0.246856 -0.969052 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 260 {
+      15.4761724472 -11.2345294952 -0.113579511642
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.971307 -0.237829 0.000000 }
+        <Binormal> { -0.237829 -0.971307 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 261 {
+      15.8911943436 -8.21325492859 -0.113579511642
+      <UV>  {
+        0.004500 0.774623
+        <Tangent> { 0.969052 -0.246856 0.000000 }
+        <Binormal> { -0.246856 -0.969052 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 262 {
+      13.157037735 -8.21325492859 -0.113579511642
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.971222 -0.238178 0.000000 }
+        <Binormal> { -0.238178 -0.971222 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 263 {
+      12.7938938141 -11.2345294952 -0.113579511642
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.971171 -0.238383 0.000000 }
+        <Binormal> { -0.238383 -0.971171 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 264 {
+      15.4761724472 -11.2345294952 -0.113579511642
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.971307 -0.237829 0.000000 }
+        <Binormal> { -0.237829 -0.971307 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 265 {
+      12.7938938141 -11.2345294952 -0.113579511642
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.971171 -0.238383 0.000000 }
+        <Binormal> { -0.238383 -0.971171 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 266 {
+      12.7938938141 -14.2169818878 -0.113579511642
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.972211 -0.234106 0.000000 }
+        <Binormal> { -0.234106 -0.972211 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 267 {
+      15.4761724472 -14.2169818878 -0.113579511642
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.972963 -0.230963 0.000000 }
+        <Binormal> { -0.230963 -0.972963 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 268 {
+      15.4761724472 -11.2345294952 -0.113579511642
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.971307 -0.237829 0.000000 }
+        <Binormal> { -0.237829 -0.971307 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 269 {
+      15.4761724472 -14.2169818878 -0.113579511642
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.972963 -0.230963 0.000000 }
+        <Binormal> { -0.230963 -0.972963 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 270 {
+      18.0939731598 -14.2169818878 -0.113579511642
+      <UV>  {
+        -0.073782 0.891829
+        <Tangent> { 0.972320 -0.233652 0.000000 }
+        <Binormal> { -0.233652 -0.972320 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 271 {
+      18.0939731598 -11.2345294952 -0.113579511642
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.971780 -0.235890 0.000000 }
+        <Binormal> { -0.235890 -0.971780 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 272 {
+      11.2883329391 19.173915863 1.63919115067
+      <UV>  {
+        0.287544 0.190447
+        <Tangent> { 0.991311 -0.002264 -0.131516 }
+        <Binormal> { 0.078179 -0.793805 0.602948 }
+      }
+      <Normal> { 0.119755 0.607959 0.784875 }
+    }
+    <Vertex> 273 {
+      14.4243688583 17.2775192261 1.63919150829
+      <UV>  {
+        0.201963 0.235338
+        <Tangent> { 0.810888 -0.225262 -0.540109 }
+        <Binormal> { 0.032163 -0.904271 0.425431 }
+      }
+      <Normal> { 0.572710 0.365551 0.733696 }
+    }
+    <Vertex> 274 {
+      15.7724323273 19.5616073608 0.166863754392
+      <UV>  {
+        0.164916 0.168991
+        <Tangent> { 0.967200 -0.129109 -0.218756 }
+        <Binormal> { -0.087036 -0.977485 0.192090 }
+      }
+      <Normal> { 0.239296 0.166662 0.956511 }
+    }
+    <Vertex> 275 {
+      11.554145813 20.9130516052 0.324613153934
+      <UV>  {
+        0.276622 0.136535
+        <Tangent> { 0.997085 0.023380 -0.072629 }
+        <Binormal> { 0.048430 -0.929468 0.365667 }
+      }
+      <Normal> { 0.053591 0.367992 0.928281 }
+    }
+    <Vertex> 276 {
+      11.2883329391 19.173915863 1.63919115067
+      <UV>  {
+        0.287544 0.190447
+        <Tangent> { 0.991311 -0.002264 -0.131516 }
+        <Binormal> { 0.078179 -0.793805 0.602948 }
+      }
+      <Normal> { 0.119755 0.607959 0.784875 }
+    }
+    <Vertex> 277 {
+      11.554145813 20.9130516052 0.324613153934
+      <UV>  {
+        0.276622 0.136535
+        <Tangent> { 0.997085 0.023380 -0.072629 }
+        <Binormal> { 0.048430 -0.929468 0.365667 }
+      }
+      <Normal> { 0.053591 0.367992 0.928281 }
+    }
+    <Vertex> 278 {
+      7.06949853897 20.5617847443 0.324613153934
+      <UV>  {
+        0.376328 0.136154
+        <Tangent> { 0.993252 0.113493 0.023883 }
+        <Binormal> { 0.094905 -0.913710 0.395077 }
+      }
+      <Normal> { -0.063417 0.390515 0.918393 }
+    }
+    <Vertex> 279 {
+      7.26489925385 18.7651672363 1.63919150829
+      <UV>  {
+        0.378731 0.192275
+        <Tangent> { 0.988012 0.138632 0.067929 }
+        <Binormal> { 0.065486 -0.774755 0.628667 }
+      }
+      <Normal> { -0.126255 0.618580 0.775475 }
+    }
+    <Vertex> 280 {
+      11.2883329391 19.173915863 1.63919115067
+      <UV>  {
+        0.287544 0.190447
+        <Tangent> { 0.991311 -0.002264 -0.131516 }
+        <Binormal> { 0.078179 -0.793805 0.602948 }
+      }
+      <Normal> { 0.119755 0.607959 0.784875 }
+    }
+    <Vertex> 281 {
+      7.26489925385 18.7651672363 1.63919150829
+      <UV>  {
+        0.378731 0.192275
+        <Tangent> { 0.988012 0.138632 0.067929 }
+        <Binormal> { 0.065486 -0.774755 0.628667 }
+      }
+      <Normal> { -0.126255 0.618580 0.775475 }
+    }
+    <Vertex> 282 {
+      7.45612001419 16.8682441711 3.46207380295
+      <UV>  {
+        0.380939 0.254091
+        <Tangent> { 0.988945 0.118915 0.088579 }
+        <Binormal> { 0.030125 -0.746016 0.665175 }
+      }
+      <Normal> { -0.141728 0.655568 0.741661 }
+    }
+    <Vertex> 283 {
+      10.9036130905 17.2322826385 3.46207380295
+      <UV>  {
+        0.302049 0.251031
+        <Tangent> { 0.989126 -0.014788 -0.146322 }
+        <Binormal> { 0.081052 -0.775203 0.626248 }
+      }
+      <Normal> { 0.138493 0.631062 0.763237 }
+    }
+    <Vertex> 284 {
+      11.2883329391 19.173915863 1.63919115067
+      <UV>  {
+        0.287544 0.190447
+        <Tangent> { 0.991311 -0.002264 -0.131516 }
+        <Binormal> { 0.078179 -0.793805 0.602948 }
+      }
+      <Normal> { 0.119755 0.607959 0.784875 }
+    }
+    <Vertex> 285 {
+      10.9036130905 17.2322826385 3.46207380295
+      <UV>  {
+        0.302049 0.251031
+        <Tangent> { 0.989126 -0.014788 -0.146322 }
+        <Binormal> { 0.081052 -0.775203 0.626248 }
+      }
+      <Normal> { 0.138493 0.631062 0.763237 }
+    }
+    <Vertex> 286 {
+      13.7511100769 15.5785903931 3.46207380295
+      <UV>  {
+        0.228256 0.288535
+        <Tangent> { 0.756292 -0.218752 -0.616580 }
+        <Binormal> { 0.102093 -0.891360 0.441466 }
+      }
+      <Normal> { 0.638020 0.399182 0.658437 }
+    }
+    <Vertex> 287 {
+      14.4243688583 17.2775192261 1.63919150829
+      <UV>  {
+        0.201963 0.235338
+        <Tangent> { 0.810888 -0.225262 -0.540109 }
+        <Binormal> { 0.032163 -0.904271 0.425431 }
+      }
+      <Normal> { 0.572710 0.365551 0.733696 }
+    }
+    <Vertex> 288 {
+      15.4697151184 11.5883302689 1.63919115067
+      <UV>  {
+        0.144528 0.358730
+        <Tangent> { 0.552674 -0.304821 -0.775651 }
+        <Binormal> { -0.120906 -0.950069 0.287216 }
+      }
+      <Normal> { 0.816858 0.069155 0.572619 }
+    }
+    <Vertex> 289 {
+      15.4697151184 5.11393165588 1.63919150829
+      <UV>  {
+        0.108146 0.497677
+        <Tangent> { 0.507043 -0.264777 -0.820244 }
+        <Binormal> { -0.142146 -0.964209 0.223380 }
+      }
+      <Normal> { 0.843654 0.000000 0.536851 }
+    }
+    <Vertex> 290 {
+      16.655790329 5.26653766632 0.324613153934
+      <UV>  {
+        0.064889 0.483213
+        <Tangent> { 0.837871 -0.278601 -0.469419 }
+        <Binormal> { -0.241862 -0.960349 0.138267 }
+      }
+      <Normal> { 0.496292 0.000000 0.868129 }
+    }
+    <Vertex> 291 {
+      16.655790329 12.1987533569 0.324613153934
+      <UV>  {
+        0.104325 0.332243
+        <Tangent> { 0.846208 -0.279702 -0.453540 }
+        <Binormal> { -0.232502 -0.959464 0.157910 }
+      }
+      <Normal> { 0.462447 0.033753 0.885983 }
+    }
+    <Vertex> 292 {
+      15.4697151184 11.5883302689 1.63919115067
+      <UV>  {
+        0.144528 0.358730
+        <Tangent> { 0.552674 -0.304821 -0.775651 }
+        <Binormal> { -0.120906 -0.950069 0.287216 }
+      }
+      <Normal> { 0.816858 0.069155 0.572619 }
+    }
+    <Vertex> 293 {
+      16.655790329 12.1987533569 0.324613153934
+      <UV>  {
+        0.104325 0.332243
+        <Tangent> { 0.846208 -0.279702 -0.453540 }
+        <Binormal> { -0.232502 -0.959464 0.157910 }
+      }
+      <Normal> { 0.462447 0.033753 0.885983 }
+    }
+    <Vertex> 294 {
+      15.7724323273 19.5616073608 0.166863754392
+      <UV>  {
+        0.164916 0.168991
+        <Tangent> { 0.967200 -0.129109 -0.218756 }
+        <Binormal> { -0.087036 -0.977485 0.192090 }
+      }
+      <Normal> { 0.239296 0.166662 0.956511 }
+    }
+    <Vertex> 295 {
+      14.4243688583 17.2775192261 1.63919150829
+      <UV>  {
+        0.201963 0.235338
+        <Tangent> { 0.810888 -0.225262 -0.540109 }
+        <Binormal> { 0.032163 -0.904271 0.425431 }
+      }
+      <Normal> { 0.572710 0.365551 0.733696 }
+    }
+    <Vertex> 296 {
+      15.4697151184 11.5883302689 1.63919115067
+      <UV>  {
+        0.144528 0.358730
+        <Tangent> { 0.552674 -0.304821 -0.775651 }
+        <Binormal> { -0.120906 -0.950069 0.287216 }
+      }
+      <Normal> { 0.816858 0.069155 0.572619 }
+    }
+    <Vertex> 297 {
+      14.4243688583 17.2775192261 1.63919150829
+      <UV>  {
+        0.201963 0.235338
+        <Tangent> { 0.810888 -0.225262 -0.540109 }
+        <Binormal> { 0.032163 -0.904271 0.425431 }
+      }
+      <Normal> { 0.572710 0.365551 0.733696 }
+    }
+    <Vertex> 298 {
+      13.7511100769 15.5785903931 3.46207380295
+      <UV>  {
+        0.228256 0.288535
+        <Tangent> { 0.756292 -0.218752 -0.616580 }
+        <Binormal> { 0.102093 -0.891360 0.441466 }
+      }
+      <Normal> { 0.638020 0.399182 0.658437 }
+    }
+    <Vertex> 299 {
+      14.7002763748 10.6175146103 3.46207380295
+      <UV>  {
+        0.179742 0.393038
+        <Tangent> { 0.442282 -0.279882 -0.852087 }
+        <Binormal> { -0.053989 -0.956578 0.286180 }
+      }
+      <Normal> { 0.890988 0.083224 0.446272 }
+    }
+    <Vertex> 300 {
+      15.4697151184 11.5883302689 1.63919115067
+      <UV>  {
+        0.144528 0.358730
+        <Tangent> { 0.552674 -0.304821 -0.775651 }
+        <Binormal> { -0.120906 -0.950069 0.287216 }
+      }
+      <Normal> { 0.816858 0.069155 0.572619 }
+    }
+    <Vertex> 301 {
+      14.7002763748 10.6175146103 3.46207380295
+      <UV>  {
+        0.179742 0.393038
+        <Tangent> { 0.442282 -0.279882 -0.852087 }
+        <Binormal> { -0.053989 -0.956578 0.286180 }
+      }
+      <Normal> { 0.890988 0.083224 0.446272 }
+    }
+    <Vertex> 302 {
+      14.7002754211 4.87122774124 3.46207380295
+      <UV>  {
+        0.149023 0.513571
+        <Tangent> { 0.388675 -0.247115 -0.887618 }
+        <Binormal> { -0.099104 -0.968973 0.226368 }
+      }
+      <Normal> { 0.916044 0.000000 0.401044 }
+    }
+    <Vertex> 303 {
+      15.4697151184 5.11393165588 1.63919150829
+      <UV>  {
+        0.108146 0.497677
+        <Tangent> { 0.507043 -0.264777 -0.820244 }
+        <Binormal> { -0.142146 -0.964209 0.223380 }
+      }
+      <Normal> { 0.843654 0.000000 0.536851 }
+    }
+    <Vertex> 304 {
+      15.4697132111 0.861906886101 1.63919115067
+      <UV>  {
+        0.085726 0.589233
+        <Tangent> { 0.458407 -0.286021 -0.841460 }
+        <Binormal> { -0.293060 -0.942347 0.160662 }
+      }
+      <Normal> { 0.831904 -0.168584 0.528642 }
+    }
+    <Vertex> 305 {
+      14.4668626785 -1.38925588131 1.6657987833
+      <UV>  {
+        0.070286 0.657092
+        <Tangent> { 0.365544 -0.393601 -0.843478 }
+        <Binormal> { -0.777795 -0.623471 -0.046142 }
+      }
+      <Normal> { 0.531175 -0.698172 0.479934 }
+    }
+    <Vertex> 306 {
+      15.5468168259 -2.23269701004 0.171120867133
+      <UV>  {
+        0.029272 0.647219
+        <Tangent> { 0.900744 -0.302432 -0.311762 }
+        <Binormal> { -0.373345 -0.905656 -0.200117 }
+      }
+      <Normal> { 0.237251 -0.301828 0.923338 }
+    }
+    <Vertex> 307 {
+      16.6557884216 0.861906886101 0.324613153934
+      <UV>  {
+        0.041302 0.578635
+        <Tangent> { 0.823103 -0.279579 -0.494304 }
+        <Binormal> { -0.290850 -0.955012 0.055839 }
+      }
+      <Normal> { 0.475112 -0.093539 0.874935 }
+    }
+    <Vertex> 308 {
+      15.4697132111 0.861906886101 1.63919115067
+      <UV>  {
+        0.085726 0.589233
+        <Tangent> { 0.458407 -0.286021 -0.841460 }
+        <Binormal> { -0.293060 -0.942347 0.160662 }
+      }
+      <Normal> { 0.831904 -0.168584 0.528642 }
+    }
+    <Vertex> 309 {
+      16.6557884216 0.861906886101 0.324613153934
+      <UV>  {
+        0.041302 0.578635
+        <Tangent> { 0.823103 -0.279579 -0.494304 }
+        <Binormal> { -0.290850 -0.955012 0.055839 }
+      }
+      <Normal> { 0.475112 -0.093539 0.874935 }
+    }
+    <Vertex> 310 {
+      16.655790329 5.26653766632 0.324613153934
+      <UV>  {
+        0.064889 0.483213
+        <Tangent> { 0.837871 -0.278601 -0.469419 }
+        <Binormal> { -0.241862 -0.960349 0.138267 }
+      }
+      <Normal> { 0.496292 0.000000 0.868129 }
+    }
+    <Vertex> 311 {
+      15.4697151184 5.11393165588 1.63919150829
+      <UV>  {
+        0.108146 0.497677
+        <Tangent> { 0.507043 -0.264777 -0.820244 }
+        <Binormal> { -0.142146 -0.964209 0.223380 }
+      }
+      <Normal> { 0.843654 0.000000 0.536851 }
+    }
+    <Vertex> 312 {
+      15.4697132111 0.861906886101 1.63919115067
+      <UV>  {
+        0.085726 0.589233
+        <Tangent> { 0.458407 -0.286021 -0.841460 }
+        <Binormal> { -0.293060 -0.942347 0.160662 }
+      }
+      <Normal> { 0.831904 -0.168584 0.528642 }
+    }
+    <Vertex> 313 {
+      15.4697151184 5.11393165588 1.63919150829
+      <UV>  {
+        0.108146 0.497677
+        <Tangent> { 0.507043 -0.264777 -0.820244 }
+        <Binormal> { -0.142146 -0.964209 0.223380 }
+      }
+      <Normal> { 0.843654 0.000000 0.536851 }
+    }
+    <Vertex> 314 {
+      14.7002754211 4.87122774124 3.46207380295
+      <UV>  {
+        0.149023 0.513571
+        <Tangent> { 0.388675 -0.247115 -0.887618 }
+        <Binormal> { -0.099104 -0.968973 0.226368 }
+      }
+      <Normal> { 0.916044 0.000000 0.401044 }
+    }
+    <Vertex> 315 {
+      14.7002744675 0.861906886101 3.46207380295
+      <UV>  {
+        0.128615 0.599169
+        <Tangent> { 0.366979 -0.194199 -0.909732 }
+        <Binormal> { -0.233200 -0.965787 0.112094 }
+      }
+      <Normal> { 0.906339 -0.174169 0.384930 }
+    }
+    <Vertex> 316 {
+      15.4697132111 0.861906886101 1.63919115067
+      <UV>  {
+        0.085726 0.589233
+        <Tangent> { 0.458407 -0.286021 -0.841460 }
+        <Binormal> { -0.293060 -0.942347 0.160662 }
+      }
+      <Normal> { 0.831904 -0.168584 0.528642 }
+    }
+    <Vertex> 317 {
+      14.7002744675 0.861906886101 3.46207380295
+      <UV>  {
+        0.128615 0.599169
+        <Tangent> { 0.366979 -0.194199 -0.909732 }
+        <Binormal> { -0.233200 -0.965787 0.112094 }
+      }
+      <Normal> { 0.906339 -0.174169 0.384930 }
+    }
+    <Vertex> 318 {
+      13.8148508072 -1.33702301979 3.50198435783
+      <UV>  {
+        0.111299 0.666965
+        <Tangent> { 0.316041 -0.168534 -0.933657 }
+        <Binormal> { -0.760693 -0.625067 -0.144663 }
+      }
+      <Normal> { 0.590289 -0.772515 0.233955 }
+    }
+    <Vertex> 319 {
+      14.4668626785 -1.38925588131 1.6657987833
+      <UV>  {
+        0.070286 0.657092
+        <Tangent> { 0.365544 -0.393601 -0.843478 }
+        <Binormal> { -0.777795 -0.623471 -0.046142 }
+      }
+      <Normal> { 0.531175 -0.698172 0.479934 }
+    }
+    <Vertex> 320 {
+      11.4583120346 -1.86106801033 1.74562036991
+      <UV>  {
+        0.763445 0.096181
+        <Tangent> { 0.404975 -0.236511 -0.883209 }
+        <Binormal> { -0.903623 -0.094140 -0.389126 }
+      }
+      <Normal> { -0.070528 -0.919675 0.386273 }
+    }
+    <Vertex> 321 {
+      8.44976234436 -0.815645933151 1.82544195652
+      <UV>  {
+        0.772619 0.217975
+        <Tangent> { -0.168491 -0.248229 -0.953936 }
+        <Binormal> { -0.733263 0.662406 -0.042854 }
+      }
+      <Normal> { -0.617725 -0.655721 0.434065 }
+    }
+    <Vertex> 322 {
+      7.33035802841 -2.14091944695 0.196663975716
+      <UV>  {
+        0.902983 0.195288
+        <Tangent> { -0.546592 -0.726925 -0.415712 }
+        <Binormal> { -0.789561 0.610224 -0.028911 }
+      }
+      <Normal> { -0.243110 -0.270425 0.931516 }
+    }
+    <Vertex> 323 {
+      11.3891267776 -2.91355037689 0.351220369339
+      <UV>  {
+        0.818862 0.096425
+        <Tangent> { -0.111593 -0.783677 -0.611062 }
+        <Binormal> { -0.983175 0.103988 0.046186 }
+      }
+      <Normal> { -0.011414 -0.494034 0.869350 }
+    }
+    <Vertex> 324 {
+      11.4583120346 -1.86106801033 1.74562036991
+      <UV>  {
+        0.763445 0.096181
+        <Tangent> { 0.404975 -0.236511 -0.883209 }
+        <Binormal> { -0.903623 -0.094140 -0.389126 }
+      }
+      <Normal> { -0.070528 -0.919675 0.386273 }
+    }
+    <Vertex> 325 {
+      11.3891267776 -2.91355037689 0.351220369339
+      <UV>  {
+        0.818862 0.096425
+        <Tangent> { -0.111593 -0.783677 -0.611062 }
+        <Binormal> { -0.983175 0.103988 0.046186 }
+      }
+      <Normal> { -0.011414 -0.494034 0.869350 }
+    }
+    <Vertex> 326 {
+      15.5468168259 -2.23269701004 0.171120867133
+      <UV>  {
+        0.748665 0.005374
+        <Tangent> { 0.505968 -0.446094 -0.738239 }
+        <Binormal> { -0.634717 -0.642327 -0.046879 }
+      }
+      <Normal> { 0.237251 -0.301828 0.923338 }
+    }
+    <Vertex> 327 {
+      14.4668626785 -1.38925588131 1.6657987833
+      <UV>  {
+        0.747013 0.005374
+        <Tangent> { 0.448741 -0.232063 -0.863005 }
+        <Binormal> { -0.713901 -0.673773 -0.190032 }
+      }
+      <Normal> { 0.531175 -0.698172 0.479934 }
+    }
+    <Vertex> 328 {
+      11.4583120346 -1.86106801033 1.74562036991
+      <UV>  {
+        0.763445 0.096181
+        <Tangent> { 0.404975 -0.236511 -0.883209 }
+        <Binormal> { -0.903623 -0.094140 -0.389126 }
+      }
+      <Normal> { -0.070528 -0.919675 0.386273 }
+    }
+    <Vertex> 329 {
+      14.4668626785 -1.38925588131 1.6657987833
+      <UV>  {
+        0.747013 0.005374
+        <Tangent> { 0.448741 -0.232063 -0.863005 }
+        <Binormal> { -0.713901 -0.673773 -0.190032 }
+      }
+      <Normal> { 0.531175 -0.698172 0.479934 }
+    }
+    <Vertex> 330 {
+      13.8148508072 -1.33702301979 3.50198435783
+      <UV>  {
+        0.745361 0.005374
+        <Tangent> { 0.322796 -0.023402 -0.946179 }
+        <Binormal> { -0.736413 -0.634039 -0.235551 }
+      }
+      <Normal> { 0.590289 -0.772515 0.233955 }
+    }
+    <Vertex> 331 {
+      11.1585836411 -1.65213620663 3.62171697617
+      <UV>  {
+        0.741389 0.096181
+        <Tangent> { 0.205707 -0.016504 -0.978474 }
+        <Binormal> { -0.971081 0.120043 -0.206177 }
+      }
+      <Normal> { -0.122074 -0.992492 -0.002899 }
+    }
+    <Vertex> 332 {
+      11.4583120346 -1.86106801033 1.74562036991
+      <UV>  {
+        0.763445 0.096181
+        <Tangent> { 0.404975 -0.236511 -0.883209 }
+        <Binormal> { -0.903623 -0.094140 -0.389126 }
+      }
+      <Normal> { -0.070528 -0.919675 0.386273 }
+    }
+    <Vertex> 333 {
+      11.1585836411 -1.65213620663 3.62171697617
+      <UV>  {
+        0.741389 0.096181
+        <Tangent> { 0.205707 -0.016504 -0.978474 }
+        <Binormal> { -0.971081 0.120043 -0.206177 }
+      }
+      <Normal> { -0.122074 -0.992492 -0.002899 }
+    }
+    <Vertex> 334 {
+      8.50231838226 -0.476608067751 3.7414495945
+      <UV>  {
+        0.740936 0.218092
+        <Tangent> { 0.088476 -0.005560 -0.996063 }
+        <Binormal> { -0.694129 0.716602 -0.065656 }
+      }
+      <Normal> { -0.715751 -0.697104 -0.041475 }
+    }
+    <Vertex> 335 {
+      8.44976234436 -0.815645933151 1.82544195652
+      <UV>  {
+        0.772619 0.217975
+        <Tangent> { -0.168491 -0.248229 -0.953936 }
+        <Binormal> { -0.733263 0.662406 -0.042854 }
+      }
+      <Normal> { -0.617725 -0.655721 0.434065 }
+    }
+    <Vertex> 336 {
+      0.799248695374 10.1584644318 1.74562072754
+      <UV>  {
+        0.757553 0.228970
+        <Tangent> { 0.621971 -0.187741 0.760201 }
+        <Binormal> { -0.072583 -0.975058 -0.181417 }
+      }
+      <Normal> { -0.710013 -0.077364 0.699881 }
+    }
+    <Vertex> 337 {
+      1.09304213524 14.8763160706 1.6657987833
+      <UV>  {
+        0.759243 0.009555
+        <Tangent> { 0.687673 -0.532038 0.494004 }
+        <Binormal> { -0.552130 -0.822528 -0.117269 }
+      }
+      <Normal> { -0.516495 0.229072 0.825068 }
+    }
+    <Vertex> 338 {
+      -1.77140462399 17.0585784912 0.171120867133
+      <UV>  {
+        0.809003 0.009555
+        <Tangent> { 0.831943 -0.379528 0.404757 }
+        <Binormal> { -0.410178 -0.897710 0.001331 }
+      }
+      <Normal> { -0.229163 0.106143 0.967559 }
+    }
+    <Vertex> 339 {
+      -1.2541372776 10.6149988174 0.351220369339
+      <UV>  {
+        0.847657 0.230990
+        <Tangent> { 0.865105 -0.187209 0.465345 }
+        <Binormal> { -0.139522 -0.975418 -0.133033 }
+      }
+      <Normal> { -0.386670 -0.070101 0.919523 }
+    }
+    <Vertex> 340 {
+      0.799248695374 10.1584644318 1.74562072754
+      <UV>  {
+        0.757553 0.228970
+        <Tangent> { 0.621971 -0.187741 0.760201 }
+        <Binormal> { -0.072583 -0.975058 -0.181417 }
+      }
+      <Normal> { -0.710013 -0.077364 0.699881 }
+    }
+    <Vertex> 341 {
+      -1.2541372776 10.6149988174 0.351220369339
+      <UV>  {
+        0.847657 0.230990
+        <Tangent> { 0.865105 -0.187209 0.465345 }
+        <Binormal> { -0.139522 -0.975418 -0.133033 }
+      }
+      <Normal> { -0.386670 -0.070101 0.919523 }
+    }
+    <Vertex> 342 {
+      0.749846220016 4.60740232468 0.173797205091
+      <UV>  {
+        0.795663 0.447032
+        <Tangent> { 0.643032 0.047219 0.764382 }
+        <Binormal> { 0.237583 -0.816008 -0.149458 }
+      }
+      <Normal> { -0.291787 -0.253853 0.922147 }
+    }
+    <Vertex> 343 {
+      2.12487697601 5.84935998917 1.82544267178
+      <UV>  {
+        0.755864 0.448385
+        <Tangent> { 0.408880 0.211254 0.887800 }
+        <Binormal> { 0.583548 -0.800143 -0.078360 }
+      }
+      <Normal> { -0.647114 -0.525986 0.551836 }
+    }
+    <Vertex> 344 {
+      0.799248695374 10.1584644318 1.74562072754
+      <UV>  {
+        0.757553 0.228970
+        <Tangent> { 0.621971 -0.187741 0.760201 }
+        <Binormal> { -0.072583 -0.975058 -0.181417 }
+      }
+      <Normal> { -0.710013 -0.077364 0.699881 }
+    }
+    <Vertex> 345 {
+      2.12487697601 5.84935998917 1.82544267178
+      <UV>  {
+        0.755864 0.448385
+        <Tangent> { 0.408880 0.211254 0.887800 }
+        <Binormal> { 0.583548 -0.800143 -0.078360 }
+      }
+      <Normal> { -0.647114 -0.525986 0.551836 }
+    }
+    <Vertex> 346 {
+      2.72056818008 5.83084440231 3.7414495945
+      <UV>  {
+        0.736208 0.450526
+        <Tangent> { 0.184557 -0.135990 0.973368 }
+        <Binormal> { 0.568345 -0.792956 -0.218546 }
+      }
+      <Normal> { -0.805353 -0.590747 0.049043 }
+    }
+    <Vertex> 347 {
+      2.14021348953 9.46903705597 3.62171697617
+      <UV>  {
+        0.716129 0.232330
+        <Tangent> { 0.233033 -0.304719 0.923494 }
+        <Binormal> { -0.060735 -0.952327 -0.298907 }
+      }
+      <Normal> { -0.969420 -0.015046 0.244911 }
+    }
+    <Vertex> 348 {
+      0.799248695374 10.1584644318 1.74562072754
+      <UV>  {
+        0.757553 0.228970
+        <Tangent> { 0.621971 -0.187741 0.760201 }
+        <Binormal> { -0.072583 -0.975058 -0.181417 }
+      }
+      <Normal> { -0.710013 -0.077364 0.699881 }
+    }
+    <Vertex> 349 {
+      2.14021348953 9.46903705597 3.62171697617
+      <UV>  {
+        0.716129 0.232330
+        <Tangent> { 0.233033 -0.304719 0.923494 }
+        <Binormal> { -0.060735 -0.952327 -0.298907 }
+      }
+      <Normal> { -0.969420 -0.015046 0.244911 }
+    }
+    <Vertex> 350 {
+      2.86528635025 13.4712696075 3.50198435783
+      <UV>  {
+        0.709483 0.009555
+        <Tangent> { 0.254680 -0.411612 0.875050 }
+        <Binormal> { -0.534682 -0.807296 -0.224124 }
+      }
+      <Normal> { -0.770684 0.365551 0.521867 }
+    }
+    <Vertex> 351 {
+      1.09304213524 14.8763160706 1.6657987833
+      <UV>  {
+        0.759243 0.009555
+        <Tangent> { 0.687673 -0.532038 0.494004 }
+        <Binormal> { -0.552130 -0.822528 -0.117269 }
+      }
+      <Normal> { -0.516495 0.229072 0.825068 }
+    }
+    <Vertex> 352 {
+      3.55736398697 17.5389270782 1.63919115067
+      <UV>  {
+        0.452988 0.209036
+        <Tangent> { 0.931730 0.333499 0.143730 }
+        <Binormal> { 0.201667 -0.804258 0.558828 }
+      }
+      <Normal> { -0.290048 0.495956 0.818445 }
+    }
+    <Vertex> 353 {
+      7.26489925385 18.7651672363 1.63919150829
+      <UV>  {
+        0.378731 0.192275
+        <Tangent> { 0.988012 0.138632 0.067929 }
+        <Binormal> { 0.065486 -0.774755 0.628667 }
+      }
+      <Normal> { -0.126255 0.618580 0.775475 }
+    }
+    <Vertex> 354 {
+      7.06949853897 20.5617847443 0.324613153934
+      <UV>  {
+        0.376328 0.136154
+        <Tangent> { 0.993252 0.113493 0.023883 }
+        <Binormal> { 0.094905 -0.913710 0.395077 }
+      }
+      <Normal> { -0.063417 0.390515 0.918393 }
+    }
+    <Vertex> 355 {
+      2.50994849205 19.507982254 0.324613153934
+      <UV>  {
+        0.457135 0.147978
+        <Tangent> { 0.969698 0.235553 0.064808 }
+        <Binormal> { 0.202780 -0.923982 0.324209 }
+      }
+      <Normal> { -0.134342 0.301706 0.943876 }
+    }
+    <Vertex> 356 {
+      3.55736398697 17.5389270782 1.63919115067
+      <UV>  {
+        0.452988 0.209036
+        <Tangent> { 0.931730 0.333499 0.143730 }
+        <Binormal> { 0.201667 -0.804258 0.558828 }
+      }
+      <Normal> { -0.290048 0.495956 0.818445 }
+    }
+    <Vertex> 357 {
+      2.50994849205 19.507982254 0.324613153934
+      <UV>  {
+        0.457135 0.147978
+        <Tangent> { 0.969698 0.235553 0.064808 }
+        <Binormal> { 0.202780 -0.923982 0.324209 }
+      }
+      <Normal> { -0.134342 0.301706 0.943876 }
+    }
+    <Vertex> 358 {
+      -1.77140462399 17.0585784912 0.171120867133
+      <UV>  {
+        0.551463 0.169949
+        <Tangent> { 0.968990 0.241594 0.051874 }
+        <Binormal> { 0.228250 -0.949442 0.158216 }
+      }
+      <Normal> { -0.229163 0.106143 0.967559 }
+    }
+    <Vertex> 359 {
+      1.09304213524 14.8763160706 1.6657987833
+      <UV>  {
+        0.518780 0.233265
+        <Tangent> { 0.850976 0.501792 0.155062 }
+        <Binormal> { 0.378492 -0.782202 0.454108 }
+      }
+      <Normal> { -0.516495 0.229072 0.825068 }
+    }
+    <Vertex> 360 {
+      3.55736398697 17.5389270782 1.63919115067
+      <UV>  {
+        0.452988 0.209036
+        <Tangent> { 0.931730 0.333499 0.143730 }
+        <Binormal> { 0.201667 -0.804258 0.558828 }
+      }
+      <Normal> { -0.290048 0.495956 0.818445 }
+    }
+    <Vertex> 361 {
+      1.09304213524 14.8763160706 1.6657987833
+      <UV>  {
+        0.518780 0.233265
+        <Tangent> { 0.850976 0.501792 0.155062 }
+        <Binormal> { 0.378492 -0.782202 0.454108 }
+      }
+      <Normal> { -0.516495 0.229072 0.825068 }
+    }
+    <Vertex> 362 {
+      2.86528635025 13.4712696075 3.50198435783
+      <UV>  {
+        0.486096 0.296581
+        <Tangent> { 0.783276 0.574338 0.237938 }
+        <Binormal> { 0.212750 -0.592140 0.728960 }
+      }
+      <Normal> { -0.770684 0.365551 0.521867 }
+    }
+    <Vertex> 363 {
+      4.70696640015 15.7761211395 3.46207380295
+      <UV>  {
+        0.444750 0.271283
+        <Tangent> { 0.870375 0.436217 0.228390 }
+        <Binormal> { 0.164196 -0.693172 0.698198 }
+      }
+      <Normal> { -0.401227 0.601093 0.691122 }
+    }
+    <Vertex> 364 {
+      3.55736398697 17.5389270782 1.63919115067
+      <UV>  {
+        0.452988 0.209036
+        <Tangent> { 0.931730 0.333499 0.143730 }
+        <Binormal> { 0.201667 -0.804258 0.558828 }
+      }
+      <Normal> { -0.290048 0.495956 0.818445 }
+    }
+    <Vertex> 365 {
+      4.70696640015 15.7761211395 3.46207380295
+      <UV>  {
+        0.444750 0.271283
+        <Tangent> { 0.870375 0.436217 0.228390 }
+        <Binormal> { 0.164196 -0.693172 0.698198 }
+      }
+      <Normal> { -0.401227 0.601093 0.691122 }
+    }
+    <Vertex> 366 {
+      7.45612001419 16.8682441711 3.46207380295
+      <UV>  {
+        0.380939 0.254091
+        <Tangent> { 0.988945 0.118915 0.088579 }
+        <Binormal> { 0.030125 -0.746016 0.665175 }
+      }
+      <Normal> { -0.141728 0.655568 0.741661 }
+    }
+    <Vertex> 367 {
+      7.26489925385 18.7651672363 1.63919150829
+      <UV>  {
+        0.378731 0.192275
+        <Tangent> { 0.988012 0.138632 0.067929 }
+        <Binormal> { 0.065486 -0.774755 0.628667 }
+      }
+      <Normal> { -0.126255 0.618580 0.775475 }
+    }
+    <Vertex> 368 {
+      4.51881837845 4.41299104691 1.85204946995
+      <UV>  {
+        0.755760 0.535372
+        <Tangent> { -0.685565 0.440361 0.579726 }
+        <Binormal> { 0.665376 0.077572 0.727928 }
+      }
+      <Normal> { -0.375713 -0.820460 0.430860 }
+    }
+    <Vertex> 369 {
+      2.12487697601 5.84935998917 1.82544267178
+      <UV>  {
+        0.756840 0.454244
+        <Tangent> { 0.464591 0.159459 0.871050 }
+        <Binormal> { 0.546156 -0.820047 -0.141180 }
+      }
+      <Normal> { -0.647114 -0.525986 0.551836 }
+    }
+    <Vertex> 370 {
+      0.749846220016 4.60740232468 0.173797205091
+      <UV>  {
+        0.797616 0.458751
+        <Tangent> { -0.782593 0.590655 0.196662 }
+        <Binormal> { 0.594594 0.664282 0.371009 }
+      }
+      <Normal> { -0.291787 -0.253853 0.922147 }
+    }
+    <Vertex> 371 {
+      4.1042881012 3.32009768486 0.377827942371
+      <UV>  {
+        0.796167 0.503369
+        <Tangent> { -0.898366 0.434930 -0.061442 }
+        <Binormal> { 0.347024 0.788397 0.506860 }
+      }
+      <Normal> { -0.240059 -0.447981 0.861171 }
+    }
+    <Vertex> 372 {
+      4.51881837845 4.41299104691 1.85204946995
+      <UV>  {
+        0.755760 0.535372
+        <Tangent> { -0.685565 0.440361 0.579726 }
+        <Binormal> { 0.665376 0.077572 0.727928 }
+      }
+      <Normal> { -0.375713 -0.820460 0.430860 }
+    }
+    <Vertex> 373 {
+      4.1042881012 3.32009768486 0.377827942371
+      <UV>  {
+        0.796167 0.503369
+        <Tangent> { -0.898366 0.434930 -0.061442 }
+        <Binormal> { 0.347024 0.788397 0.506860 }
+      }
+      <Normal> { -0.240059 -0.447981 0.861171 }
+    }
+    <Vertex> 374 {
+      5.8857550621 2.81278657913 0.760033249855
+      <UV>  {
+        0.785443 0.494519
+        <Tangent> { -0.959577 0.198762 -0.199262 }
+        <Binormal> { 0.075893 0.854861 0.487242 }
+      }
+      <Normal> { -0.421827 -0.420392 0.803278 }
+    }
+    <Vertex> 375 {
+      6.71489095688 3.68096613884 1.85204946995
+      <UV>  {
+        0.758099 0.542528
+        <Tangent> { -0.942058 0.331607 -0.050629 }
+        <Binormal> { 0.118109 0.458100 0.802760 }
+      }
+      <Normal> { -0.631336 -0.629902 0.452345 }
+    }
+    <Vertex> 376 {
+      4.51881837845 4.41299104691 1.85204946995
+      <UV>  {
+        0.755760 0.535372
+        <Tangent> { -0.685565 0.440361 0.579726 }
+        <Binormal> { 0.665376 0.077572 0.727928 }
+      }
+      <Normal> { -0.375713 -0.820460 0.430860 }
+    }
+    <Vertex> 377 {
+      6.71489095688 3.68096613884 1.85204946995
+      <UV>  {
+        0.758099 0.542528
+        <Tangent> { -0.942058 0.331607 -0.050629 }
+        <Binormal> { 0.118109 0.458100 0.802760 }
+      }
+      <Normal> { -0.631336 -0.629902 0.452345 }
+    }
+    <Vertex> 378 {
+      6.91146659851 3.91268157959 3.78136014938
+      <UV>  {
+        0.720827 0.542872
+        <Tangent> { -0.701872 0.312412 -0.640136 }
+        <Binormal> { -0.453388 0.450726 0.717086 }
+      }
+      <Normal> { -0.707389 -0.706809 -0.002991 }
+    }
+    <Vertex> 379 {
+      4.79517126083 4.61811351776 3.78136014938
+      <UV>  {
+        0.717495 0.534408
+        <Tangent> { 0.006581 -0.008271 0.999944 }
+        <Binormal> { 0.913539 -0.406518 -0.009375 }
+      }
+      <Normal> { -0.406629 -0.913480 -0.013306 }
+    }
+    <Vertex> 380 {
+      4.51881837845 4.41299104691 1.85204946995
+      <UV>  {
+        0.755760 0.535372
+        <Tangent> { -0.685565 0.440361 0.579726 }
+        <Binormal> { 0.665376 0.077572 0.727928 }
+      }
+      <Normal> { -0.375713 -0.820460 0.430860 }
+    }
+    <Vertex> 381 {
+      4.79517126083 4.61811351776 3.78136014938
+      <UV>  {
+        0.717495 0.534408
+        <Tangent> { 0.006581 -0.008271 0.999944 }
+        <Binormal> { 0.913539 -0.406518 -0.009375 }
+      }
+      <Normal> { -0.406629 -0.913480 -0.013306 }
+    }
+    <Vertex> 382 {
+      2.72056818008 5.83084440231 3.7414495945
+      <UV>  {
+        0.736208 0.450526
+        <Tangent> { 0.184557 -0.135990 0.973368 }
+        <Binormal> { 0.568345 -0.792956 -0.218546 }
+      }
+      <Normal> { -0.805353 -0.590747 0.049043 }
+    }
+    <Vertex> 383 {
+      2.12487697601 5.84935998917 1.82544267178
+      <UV>  {
+        0.756840 0.454244
+        <Tangent> { 0.464591 0.159459 0.871050 }
+        <Binormal> { 0.546156 -0.820047 -0.141180 }
+      }
+      <Normal> { -0.647114 -0.525986 0.551836 }
+    }
+    <Vertex> 384 {
+      7.44691419601 1.48489296436 1.85204946995
+      <UV>  {
+        0.767278 0.401743
+        <Tangent> { -0.330507 -0.187638 -0.924963 }
+        <Binormal> { -0.378639 0.923467 -0.052040 }
+      }
+      <Normal> { -0.852901 -0.326762 0.407147 }
+    }
+    <Vertex> 385 {
+      6.71489095688 3.68096613884 1.85204946995
+      <UV>  {
+        0.758099 0.542528
+        <Tangent> { -0.942058 0.331607 -0.050629 }
+        <Binormal> { 0.118109 0.458100 0.802760 }
+      }
+      <Normal> { -0.631336 -0.629902 0.452345 }
+    }
+    <Vertex> 386 {
+      5.8857550621 2.81278657913 0.760033249855
+      <UV>  {
+        0.785443 0.494519
+        <Tangent> { -0.959577 0.198762 -0.199262 }
+        <Binormal> { 0.075893 0.854861 0.487242 }
+      }
+      <Normal> { -0.421827 -0.420392 0.803278 }
+    }
+    <Vertex> 387 {
+      6.40673065186 1.01765370369 0.377827942371
+      <UV>  {
+        0.803240 0.402021
+        <Tangent> { -0.859743 -0.162305 -0.484250 }
+        <Binormal> { -0.244368 0.963096 0.111056 }
+      }
+      <Normal> { -0.464187 -0.216803 0.858760 }
+    }
+    <Vertex> 388 {
+      7.44691419601 1.48489296436 1.85204946995
+      <UV>  {
+        0.767278 0.401743
+        <Tangent> { -0.330507 -0.187638 -0.924963 }
+        <Binormal> { -0.378639 0.923467 -0.052040 }
+      }
+      <Normal> { -0.852901 -0.326762 0.407147 }
+    }
+    <Vertex> 389 {
+      6.40673065186 1.01765370369 0.377827942371
+      <UV>  {
+        0.803240 0.402021
+        <Tangent> { -0.859743 -0.162305 -0.484250 }
+        <Binormal> { -0.244368 0.963096 0.111056 }
+      }
+      <Normal> { -0.464187 -0.216803 0.858760 }
+    }
+    <Vertex> 390 {
+      7.33035802841 -2.14091944695 0.196663975716
+      <UV>  {
+        0.902983 0.195288
+        <Tangent> { -0.546592 -0.726925 -0.415712 }
+        <Binormal> { -0.789561 0.610224 -0.028911 }
+      }
+      <Normal> { -0.243110 -0.270425 0.931516 }
+    }
+    <Vertex> 391 {
+      8.44976234436 -0.815645933151 1.82544195652
+      <UV>  {
+        0.772619 0.217975
+        <Tangent> { -0.168491 -0.248229 -0.953936 }
+        <Binormal> { -0.733263 0.662406 -0.042854 }
+      }
+      <Normal> { -0.617725 -0.655721 0.434065 }
+    }
+    <Vertex> 392 {
+      7.44691419601 1.48489296436 1.85204946995
+      <UV>  {
+        0.767278 0.401743
+        <Tangent> { -0.330507 -0.187638 -0.924963 }
+        <Binormal> { -0.378639 0.923467 -0.052040 }
+      }
+      <Normal> { -0.852901 -0.326762 0.407147 }
+    }
+    <Vertex> 393 {
+      8.44976234436 -0.815645933151 1.82544195652
+      <UV>  {
+        0.772619 0.217975
+        <Tangent> { -0.168491 -0.248229 -0.953936 }
+        <Binormal> { -0.733263 0.662406 -0.042854 }
+      }
+      <Normal> { -0.617725 -0.655721 0.434065 }
+    }
+    <Vertex> 394 {
+      8.50231838226 -0.476608067751 3.7414495945
+      <UV>  {
+        0.740936 0.218092
+        <Tangent> { 0.088476 -0.005560 -0.996063 }
+        <Binormal> { -0.694129 0.716602 -0.065656 }
+      }
+      <Normal> { -0.715751 -0.697104 -0.041475 }
+    }
+    <Vertex> 395 {
+      7.61689758301 1.79638600349 3.78136014938
+      <UV>  {
+        0.731361 0.402211
+        <Tangent> { 0.000556 0.006047 -0.999982 }
+        <Binormal> { -0.339777 0.940418 0.005498 }
+      }
+      <Normal> { -0.940428 -0.339702 -0.013520 }
+    }
+    <Vertex> 396 {
+      7.44691419601 1.48489296436 1.85204946995
+      <UV>  {
+        0.767278 0.401743
+        <Tangent> { -0.330507 -0.187638 -0.924963 }
+        <Binormal> { -0.378639 0.923467 -0.052040 }
+      }
+      <Normal> { -0.852901 -0.326762 0.407147 }
+    }
+    <Vertex> 397 {
+      7.61689758301 1.79638600349 3.78136014938
+      <UV>  {
+        0.731361 0.402211
+        <Tangent> { 0.000556 0.006047 -0.999982 }
+        <Binormal> { -0.339777 0.940418 0.005498 }
+      }
+      <Normal> { -0.940428 -0.339702 -0.013520 }
+    }
+    <Vertex> 398 {
+      6.91146659851 3.91268157959 3.78136014938
+      <UV>  {
+        0.720827 0.542872
+        <Tangent> { -0.701872 0.312412 -0.640136 }
+        <Binormal> { -0.453388 0.450726 0.717086 }
+      }
+      <Normal> { -0.707389 -0.706809 -0.002991 }
+    }
+    <Vertex> 399 {
+      6.71489095688 3.68096613884 1.85204946995
+      <UV>  {
+        0.758099 0.542528
+        <Tangent> { -0.942058 0.331607 -0.050629 }
+        <Binormal> { 0.118109 0.458100 0.802760 }
+      }
+      <Normal> { -0.631336 -0.629902 0.452345 }
+    }
+    <Vertex> 400 {
+      7.44691419601 1.48489284515 5.63803434372
+      <UV>  {
+        0.696740 0.402583
+        <Tangent> { 0.164226 0.263407 -0.950603 }
+        <Binormal> { -0.364081 0.911751 0.189742 }
+      }
+      <Normal> { -0.914762 -0.311838 -0.256813 }
+    }
+    <Vertex> 401 {
+      6.71489095688 3.68096613884 5.63803434372
+      <UV>  {
+        0.685754 0.543484
+        <Tangent> { -0.922883 0.373574 -0.093432 }
+        <Binormal> { -0.171365 -0.203736 0.878064 }
+      }
+      <Normal> { -0.675954 -0.677816 -0.289193 }
+    }
+    <Vertex> 402 {
+      6.91146659851 3.91268157959 3.78136014938
+      <UV>  {
+        0.720827 0.542872
+        <Tangent> { -0.701872 0.312412 -0.640136 }
+        <Binormal> { -0.453388 0.450726 0.717086 }
+      }
+      <Normal> { -0.707389 -0.706809 -0.002991 }
+    }
+    <Vertex> 403 {
+      7.61689758301 1.79638600349 3.78136014938
+      <UV>  {
+        0.731361 0.402211
+        <Tangent> { 0.000556 0.006047 -0.999982 }
+        <Binormal> { -0.339777 0.940418 0.005498 }
+      }
+      <Normal> { -0.940428 -0.339702 -0.013520 }
+    }
+    <Vertex> 404 {
+      7.44691419601 1.48489284515 5.63803434372
+      <UV>  {
+        0.696740 0.402583
+        <Tangent> { 0.164226 0.263407 -0.950603 }
+        <Binormal> { -0.364081 0.911751 0.189742 }
+      }
+      <Normal> { -0.914762 -0.311838 -0.256813 }
+    }
+    <Vertex> 405 {
+      7.61689758301 1.79638600349 3.78136014938
+      <UV>  {
+        0.731361 0.402211
+        <Tangent> { 0.000556 0.006047 -0.999982 }
+        <Binormal> { -0.339777 0.940418 0.005498 }
+      }
+      <Normal> { -0.940428 -0.339702 -0.013520 }
+    }
+    <Vertex> 406 {
+      8.50231838226 -0.476608067751 3.7414495945
+      <UV>  {
+        0.740936 0.218092
+        <Tangent> { 0.088476 -0.005560 -0.996063 }
+        <Binormal> { -0.694129 0.716602 -0.065656 }
+      }
+      <Normal> { -0.715751 -0.697104 -0.041475 }
+    }
+    <Vertex> 407 {
+      8.24225139618 -0.815646111965 5.61142683029
+      <UV>  {
+        0.707726 0.218185
+        <Tangent> { 0.187188 0.292207 -0.937857 }
+        <Binormal> { -0.691838 0.716890 0.085276 }
+      }
+      <Normal> { -0.699240 -0.635975 -0.326426 }
+    }
+    <Vertex> 408 {
+      7.44691419601 1.48489284515 5.63803434372
+      <UV>  {
+        0.696740 0.402583
+        <Tangent> { 0.164226 0.263407 -0.950603 }
+        <Binormal> { -0.364081 0.911751 0.189742 }
+      }
+      <Normal> { -0.914762 -0.311838 -0.256813 }
+    }
+    <Vertex> 409 {
+      8.24225139618 -0.815646111965 5.61142683029
+      <UV>  {
+        0.707726 0.218185
+        <Tangent> { 0.187188 0.292207 -0.937857 }
+        <Binormal> { -0.691838 0.716890 0.085276 }
+      }
+      <Normal> { -0.699240 -0.635975 -0.326426 }
+    }
+    <Vertex> 410 {
+      7.83960199356 -1.50740194321 7.04303026199
+      <UV>  {
+        0.673990 0.218255
+        <Tangent> { 0.328042 0.511637 -0.794113 }
+        <Binormal> { -0.721731 0.677183 0.138159 }
+      }
+      <Normal> { -0.596240 -0.508774 -0.620960 }
+    }
+    <Vertex> 411 {
+      7.1133184433 0.860100746155 7.04968214035
+      <UV>  {
+        0.661221 0.402863
+        <Tangent> { 0.262640 0.507040 -0.820933 }
+        <Binormal> { -0.486165 0.800903 0.339131 }
+      }
+      <Normal> { -0.807245 -0.267190 -0.526231 }
+    }
+    <Vertex> 412 {
+      7.44691419601 1.48489284515 5.63803434372
+      <UV>  {
+        0.696740 0.402583
+        <Tangent> { 0.164226 0.263407 -0.950603 }
+        <Binormal> { -0.364081 0.911751 0.189742 }
+      }
+      <Normal> { -0.914762 -0.311838 -0.256813 }
+    }
+    <Vertex> 413 {
+      7.1133184433 0.860100746155 7.04968214035
+      <UV>  {
+        0.661221 0.402863
+        <Tangent> { 0.262640 0.507040 -0.820933 }
+        <Binormal> { -0.486165 0.800903 0.339131 }
+      }
+      <Normal> { -0.807245 -0.267190 -0.526231 }
+    }
+    <Vertex> 414 {
+      6.29482984543 3.20148730278 7.04968214035
+      <UV>  {
+        0.649047 0.543539
+        <Tangent> { 0.955460 -0.293569 0.030215 }
+        <Binormal> { 0.194185 0.559209 -0.707242 }
+      }
+      <Normal> { -0.559954 -0.568163 -0.602985 }
+    }
+    <Vertex> 415 {
+      6.71489095688 3.68096613884 5.63803434372
+      <UV>  {
+        0.685754 0.543484
+        <Tangent> { -0.922883 0.373574 -0.093432 }
+        <Binormal> { -0.171365 -0.203736 0.878064 }
+      }
+      <Normal> { -0.675954 -0.677816 -0.289193 }
+    }
+    <Vertex> 416 {
+      4.51881790161 4.41299104691 5.63803434372
+      <UV>  {
+        0.682092 0.534993
+        <Tangent> { -0.258027 -0.221064 0.940507 }
+        <Binormal> { 0.896448 -0.417717 0.147757 }
+      }
+      <Normal> { -0.358898 -0.880123 -0.310709 }
+    }
+    <Vertex> 417 {
+      2.3956720829 5.48475694656 5.61142683029
+      <UV>  {
+        0.681923 0.419915
+        <Tangent> { -0.338513 -0.340034 0.877374 }
+        <Binormal> { 0.635610 -0.768303 -0.052528 }
+      }
+      <Normal> { -0.710166 -0.558184 -0.428999 }
+    }
+    <Vertex> 418 {
+      2.72056818008 5.83084440231 3.7414495945
+      <UV>  {
+        0.736208 0.450526
+        <Tangent> { 0.184557 -0.135990 0.973368 }
+        <Binormal> { 0.568345 -0.792956 -0.218546 }
+      }
+      <Normal> { -0.805353 -0.590747 0.049043 }
+    }
+    <Vertex> 419 {
+      4.79517126083 4.61811351776 3.78136014938
+      <UV>  {
+        0.717495 0.534408
+        <Tangent> { 0.006581 -0.008271 0.999944 }
+        <Binormal> { 0.913539 -0.406518 -0.009375 }
+      }
+      <Normal> { -0.406629 -0.913480 -0.013306 }
+    }
+    <Vertex> 420 {
+      4.51881790161 4.41299104691 5.63803434372
+      <UV>  {
+        0.682092 0.534993
+        <Tangent> { -0.258027 -0.221064 0.940507 }
+        <Binormal> { 0.896448 -0.417717 0.147757 }
+      }
+      <Normal> { -0.358898 -0.880123 -0.310709 }
+    }
+    <Vertex> 421 {
+      4.79517126083 4.61811351776 3.78136014938
+      <UV>  {
+        0.717495 0.534408
+        <Tangent> { 0.006581 -0.008271 0.999944 }
+        <Binormal> { 0.913539 -0.406518 -0.009375 }
+      }
+      <Normal> { -0.406629 -0.913480 -0.013306 }
+    }
+    <Vertex> 422 {
+      6.91146659851 3.91268157959 3.78136014938
+      <UV>  {
+        0.720827 0.542872
+        <Tangent> { -0.701872 0.312412 -0.640136 }
+        <Binormal> { -0.453388 0.450726 0.717086 }
+      }
+      <Normal> { -0.707389 -0.706809 -0.002991 }
+    }
+    <Vertex> 423 {
+      6.71489095688 3.68096613884 5.63803434372
+      <UV>  {
+        0.685754 0.543484
+        <Tangent> { -0.922883 0.373574 -0.093432 }
+        <Binormal> { -0.171365 -0.203736 0.878064 }
+      }
+      <Normal> { -0.675954 -0.677816 -0.289193 }
+    }
+    <Vertex> 424 {
+      4.51881790161 4.41299104691 5.63803434372
+      <UV>  {
+        0.682092 0.534993
+        <Tangent> { -0.258027 -0.221064 0.940507 }
+        <Binormal> { 0.896448 -0.417717 0.147757 }
+      }
+      <Normal> { -0.358898 -0.880123 -0.310709 }
+    }
+    <Vertex> 425 {
+      6.71489095688 3.68096613884 5.63803434372
+      <UV>  {
+        0.685754 0.543484
+        <Tangent> { -0.922883 0.373574 -0.093432 }
+        <Binormal> { -0.171365 -0.203736 0.878064 }
+      }
+      <Normal> { -0.675954 -0.677816 -0.289193 }
+    }
+    <Vertex> 426 {
+      6.29482984543 3.20148730278 7.04968214035
+      <UV>  {
+        0.649047 0.543539
+        <Tangent> { 0.955460 -0.293569 0.030215 }
+        <Binormal> { 0.194185 0.559209 -0.707242 }
+      }
+      <Normal> { -0.559954 -0.568163 -0.602985 }
+    }
+    <Vertex> 427 {
+      3.8393611908 3.98195004463 7.04968214035
+      <UV>  {
+        0.646575 0.533816
+        <Tangent> { -0.242577 -0.501811 0.830266 }
+        <Binormal> { 0.923817 -0.368151 0.047400 }
+      }
+      <Normal> { -0.259224 -0.731651 -0.630421 }
+    }
+    <Vertex> 428 {
+      4.51881790161 4.41299104691 5.63803434372
+      <UV>  {
+        0.682092 0.534993
+        <Tangent> { -0.258027 -0.221064 0.940507 }
+        <Binormal> { 0.896448 -0.417717 0.147757 }
+      }
+      <Normal> { -0.358898 -0.880123 -0.310709 }
+    }
+    <Vertex> 429 {
+      3.8393611908 3.98195004463 7.04968214035
+      <UV>  {
+        0.646575 0.533816
+        <Tangent> { -0.242577 -0.501811 0.830266 }
+        <Binormal> { 0.923817 -0.368151 0.047400 }
+      }
+      <Normal> { -0.259224 -0.731651 -0.630421 }
+    }
+    <Vertex> 430 {
+      1.40212368965 4.94877958298 7.04224920273
+      <UV>  {
+        0.648816 0.420128
+        <Tangent> { -0.685542 -0.385352 0.617687 }
+        <Binormal> { 0.573442 -0.808221 0.132218 }
+      }
+      <Normal> { -0.434523 -0.437117 -0.787439 }
+    }
+    <Vertex> 431 {
+      2.3956720829 5.48475694656 5.61142683029
+      <UV>  {
+        0.681923 0.419915
+        <Tangent> { -0.338513 -0.340034 0.877374 }
+        <Binormal> { 0.635610 -0.768303 -0.052528 }
+      }
+      <Normal> { -0.710166 -0.558184 -0.428999 }
+    }
+    <Vertex> 432 {
+      4.64054489136 13.8250484467 5.42517709732
+      <UV>  {
+        0.452132 0.338167
+        <Tangent> { 0.924132 0.330771 0.191233 }
+        <Binormal> { 0.078761 -0.654666 0.751743 }
+      }
+      <Normal> { -0.368480 0.681570 0.632160 }
+    }
+    <Vertex> 433 {
+      7.32818365097 14.4534978867 5.42517709732
+      <UV>  {
+        0.387904 0.325334
+        <Tangent> { 0.995961 0.048047 0.075845 }
+        <Binormal> { -0.009022 -0.786901 0.616969 }
+      }
+      <Normal> { -0.093753 0.614948 0.782952 }
+    }
+    <Vertex> 434 {
+      7.45612001419 16.8682441711 3.46207380295
+      <UV>  {
+        0.380939 0.254091
+        <Tangent> { 0.988945 0.118915 0.088579 }
+        <Binormal> { 0.030125 -0.746016 0.665175 }
+      }
+      <Normal> { -0.141728 0.655568 0.741661 }
+    }
+    <Vertex> 435 {
+      4.70696640015 15.7761211395 3.46207380295
+      <UV>  {
+        0.444750 0.271283
+        <Tangent> { 0.870375 0.436217 0.228390 }
+        <Binormal> { 0.164196 -0.693172 0.698198 }
+      }
+      <Normal> { -0.401227 0.601093 0.691122 }
+    }
+    <Vertex> 436 {
+      4.64054489136 13.8250484467 5.42517709732
+      <UV>  {
+        0.452132 0.338167
+        <Tangent> { 0.924132 0.330771 0.191233 }
+        <Binormal> { 0.078761 -0.654666 0.751743 }
+      }
+      <Normal> { -0.368480 0.681570 0.632160 }
+    }
+    <Vertex> 437 {
+      4.70696640015 15.7761211395 3.46207380295
+      <UV>  {
+        0.444750 0.271283
+        <Tangent> { 0.870375 0.436217 0.228390 }
+        <Binormal> { 0.164196 -0.693172 0.698198 }
+      }
+      <Normal> { -0.401227 0.601093 0.691122 }
+    }
+    <Vertex> 438 {
+      2.86528635025 13.4712696075 3.50198435783
+      <UV>  {
+        0.486096 0.296581
+        <Tangent> { 0.783276 0.574338 0.237938 }
+        <Binormal> { 0.212750 -0.592140 0.728960 }
+      }
+      <Normal> { -0.770684 0.365551 0.521867 }
+    }
+    <Vertex> 439 {
+      2.71781349182 12.1248340607 5.45178461075
+      <UV>  {
+        0.513107 0.355742
+        <Tangent> { 0.776381 0.589438 0.223148 }
+        <Binormal> { -0.043447 -0.283203 0.899235 }
+      }
+      <Normal> { -0.849818 0.513047 0.120518 }
+    }
+    <Vertex> 440 {
+      4.64054489136 13.8250484467 5.42517709732
+      <UV>  {
+        0.452132 0.338167
+        <Tangent> { 0.924132 0.330771 0.191233 }
+        <Binormal> { 0.078761 -0.654666 0.751743 }
+      }
+      <Normal> { -0.368480 0.681570 0.632160 }
+    }
+    <Vertex> 441 {
+      2.71781349182 12.1248340607 5.45178461075
+      <UV>  {
+        0.513107 0.355742
+        <Tangent> { 0.776381 0.589438 0.223148 }
+        <Binormal> { -0.043447 -0.283203 0.899235 }
+      }
+      <Normal> { -0.849818 0.513047 0.120518 }
+    }
+    <Vertex> 442 {
+      1.48394858837 10.8036794662 7.00472736359
+      <UV>  {
+        0.540117 0.414902
+        <Tangent> { 0.918286 0.362542 0.159106 }
+        <Binormal> { -0.121713 -0.071346 0.865038 }
+      }
+      <Normal> { -0.767052 0.639180 -0.055208 }
+    }
+    <Vertex> 443 {
+      3.87495136261 11.9322881699 7.01851797104
+      <UV>  {
+        0.468830 0.399177
+        <Tangent> { 0.989537 0.097897 0.105989 }
+        <Binormal> { 0.010486 -0.779549 0.622140 }
+      }
+      <Normal> { -0.214148 0.607532 0.764855 }
+    }
+    <Vertex> 444 {
+      4.64054489136 13.8250484467 5.42517709732
+      <UV>  {
+        0.452132 0.338167
+        <Tangent> { 0.924132 0.330771 0.191233 }
+        <Binormal> { 0.078761 -0.654666 0.751743 }
+      }
+      <Normal> { -0.368480 0.681570 0.632160 }
+    }
+    <Vertex> 445 {
+      3.87495136261 11.9322881699 7.01851797104
+      <UV>  {
+        0.468830 0.399177
+        <Tangent> { 0.989537 0.097897 0.105989 }
+        <Binormal> { 0.010486 -0.779549 0.622140 }
+      }
+      <Normal> { -0.214148 0.607532 0.764855 }
+    }
+    <Vertex> 446 {
+      7.00420427322 12.0940675735 7.03973960876
+      <UV>  {
+        0.396783 0.390753
+        <Tangent> { 0.998114 -0.027274 0.054998 }
+        <Binormal> { -0.051195 -0.864172 0.500545 }
+      }
+      <Normal> { -0.036470 0.502487 0.863796 }
+    }
+    <Vertex> 447 {
+      7.32818365097 14.4534978867 5.42517709732
+      <UV>  {
+        0.387904 0.325334
+        <Tangent> { 0.995961 0.048047 0.075845 }
+        <Binormal> { -0.009022 -0.786901 0.616969 }
+      }
+      <Normal> { -0.093753 0.614948 0.782952 }
+    }
+    <Vertex> 448 {
+      1.8824300766 8.7000541687 5.53160572052
+      <UV>  {
+        0.681416 0.241056
+        <Tangent> { -0.361925 -0.386608 0.848260 }
+        <Binormal> { 0.119094 -0.921417 -0.369138 }
+      }
+      <Normal> { -0.932554 0.023774 -0.360210 }
+    }
+    <Vertex> 449 {
+      2.71781349182 12.1248340607 5.45178461075
+      <UV>  {
+        0.680741 0.030307
+        <Tangent> { -0.289945 -0.474925 0.830890 }
+        <Binormal> { -0.483522 -0.671162 -0.552355 }
+      }
+      <Normal> { -0.849818 0.513047 0.120518 }
+    }
+    <Vertex> 450 {
+      2.86528635025 13.4712696075 3.50198435783
+      <UV>  {
+        0.709483 0.009555
+        <Tangent> { 0.254680 -0.411612 0.875050 }
+        <Binormal> { -0.534682 -0.807296 -0.224124 }
+      }
+      <Normal> { -0.770684 0.365551 0.521867 }
+    }
+    <Vertex> 451 {
+      2.14021348953 9.46903705597 3.62171697617
+      <UV>  {
+        0.716129 0.232330
+        <Tangent> { 0.233033 -0.304719 0.923494 }
+        <Binormal> { -0.060735 -0.952327 -0.298907 }
+      }
+      <Normal> { -0.969420 -0.015046 0.244911 }
+    }
+    <Vertex> 452 {
+      1.8824300766 8.7000541687 5.53160572052
+      <UV>  {
+        0.681416 0.241056
+        <Tangent> { -0.361925 -0.386608 0.848260 }
+        <Binormal> { 0.119094 -0.921417 -0.369138 }
+      }
+      <Normal> { -0.932554 0.023774 -0.360210 }
+    }
+    <Vertex> 453 {
+      2.14021348953 9.46903705597 3.62171697617
+      <UV>  {
+        0.716129 0.232330
+        <Tangent> { 0.233033 -0.304719 0.923494 }
+        <Binormal> { -0.060735 -0.952327 -0.298907 }
+      }
+      <Normal> { -0.969420 -0.015046 0.244911 }
+    }
+    <Vertex> 454 {
+      2.72056818008 5.83084440231 3.7414495945
+      <UV>  {
+        0.736208 0.450526
+        <Tangent> { 0.184557 -0.135990 0.973368 }
+        <Binormal> { 0.568345 -0.792956 -0.218546 }
+      }
+      <Normal> { -0.805353 -0.590747 0.049043 }
+    }
+    <Vertex> 455 {
+      2.3956720829 5.48475694656 5.61142683029
+      <UV>  {
+        0.681923 0.419915
+        <Tangent> { -0.338513 -0.340034 0.877374 }
+        <Binormal> { 0.635610 -0.768303 -0.052528 }
+      }
+      <Normal> { -0.710166 -0.558184 -0.428999 }
+    }
+    <Vertex> 456 {
+      1.8824300766 8.7000541687 5.53160572052
+      <UV>  {
+        0.681416 0.241056
+        <Tangent> { -0.361925 -0.386608 0.848260 }
+        <Binormal> { 0.119094 -0.921417 -0.369138 }
+      }
+      <Normal> { -0.932554 0.023774 -0.360210 }
+    }
+    <Vertex> 457 {
+      2.3956720829 5.48475694656 5.61142683029
+      <UV>  {
+        0.681923 0.419915
+        <Tangent> { -0.338513 -0.340034 0.877374 }
+        <Binormal> { 0.635610 -0.768303 -0.052528 }
+      }
+      <Normal> { -0.710166 -0.558184 -0.428999 }
+    }
+    <Vertex> 458 {
+      1.40212368965 4.94877958298 7.04224920273
+      <UV>  {
+        0.648816 0.420128
+        <Tangent> { -0.685542 -0.385352 0.617687 }
+        <Binormal> { 0.573442 -0.808221 0.132218 }
+      }
+      <Normal> { -0.434523 -0.437117 -0.787439 }
+    }
+    <Vertex> 459 {
+      0.638329088688 7.84926700592 7.0199508667
+      <UV>  {
+        0.650784 0.248908
+        <Tangent> { -0.734136 -0.422690 0.531392 }
+        <Binormal> { 0.318996 -0.905192 -0.279320 }
+      }
+      <Normal> { -0.619526 0.023774 -0.784570 }
+    }
+    <Vertex> 460 {
+      1.8824300766 8.7000541687 5.53160572052
+      <UV>  {
+        0.681416 0.241056
+        <Tangent> { -0.361925 -0.386608 0.848260 }
+        <Binormal> { 0.119094 -0.921417 -0.369138 }
+      }
+      <Normal> { -0.932554 0.023774 -0.360210 }
+    }
+    <Vertex> 461 {
+      0.638329088688 7.84926700592 7.0199508667
+      <UV>  {
+        0.650784 0.248908
+        <Tangent> { -0.734136 -0.422690 0.531392 }
+        <Binormal> { 0.318996 -0.905192 -0.279320 }
+      }
+      <Normal> { -0.619526 0.023774 -0.784570 }
+    }
+    <Vertex> 462 {
+      1.48394858837 10.8036794662 7.00472736359
+      <UV>  {
+        0.651998 0.051059
+        <Tangent> { -0.687954 -0.487859 0.537320 }
+        <Binormal> { -0.316511 -0.450133 -0.813939 }
+      }
+      <Normal> { -0.767052 0.639180 -0.055208 }
+    }
+    <Vertex> 463 {
+      2.71781349182 12.1248340607 5.45178461075
+      <UV>  {
+        0.680741 0.030307
+        <Tangent> { -0.289945 -0.474925 0.830890 }
+        <Binormal> { -0.483522 -0.671162 -0.552355 }
+      }
+      <Normal> { -0.849818 0.513047 0.120518 }
+    }
+    <Vertex> 464 {
+      10.6282682419 -1.86106801033 5.53160572052
+      <UV>  {
+        0.711389 0.096181
+        <Tangent> { 0.310234 0.187500 -0.931986 }
+        <Binormal> { -0.946342 0.153405 -0.284150 }
+      }
+      <Normal> { -0.093112 -0.972198 -0.214759 }
+    }
+    <Vertex> 465 {
+      8.24225139618 -0.815646111965 5.61142683029
+      <UV>  {
+        0.707726 0.218185
+        <Tangent> { 0.187188 0.292207 -0.937857 }
+        <Binormal> { -0.691838 0.716890 0.085276 }
+      }
+      <Normal> { -0.699240 -0.635975 -0.326426 }
+    }
+    <Vertex> 466 {
+      8.50231838226 -0.476608067751 3.7414495945
+      <UV>  {
+        0.740936 0.218092
+        <Tangent> { 0.088476 -0.005560 -0.996063 }
+        <Binormal> { -0.694129 0.716602 -0.065656 }
+      }
+      <Normal> { -0.715751 -0.697104 -0.041475 }
+    }
+    <Vertex> 467 {
+      11.1585836411 -1.65213620663 3.62171697617
+      <UV>  {
+        0.741389 0.096181
+        <Tangent> { 0.205707 -0.016504 -0.978474 }
+        <Binormal> { -0.971081 0.120043 -0.206177 }
+      }
+      <Normal> { -0.122074 -0.992492 -0.002899 }
+    }
+    <Vertex> 468 {
+      10.6282682419 -1.86106801033 5.53160572052
+      <UV>  {
+        0.711389 0.096181
+        <Tangent> { 0.310234 0.187500 -0.931986 }
+        <Binormal> { -0.946342 0.153405 -0.284150 }
+      }
+      <Normal> { -0.093112 -0.972198 -0.214759 }
+    }
+    <Vertex> 469 {
+      11.1585836411 -1.65213620663 3.62171697617
+      <UV>  {
+        0.741389 0.096181
+        <Tangent> { 0.205707 -0.016504 -0.978474 }
+        <Binormal> { -0.971081 0.120043 -0.206177 }
+      }
+      <Normal> { -0.122074 -0.992492 -0.002899 }
+    }
+    <Vertex> 470 {
+      13.8148508072 -1.33702301979 3.50198435783
+      <UV>  {
+        0.745361 0.005374
+        <Tangent> { 0.322796 -0.023402 -0.946179 }
+        <Binormal> { -0.736413 -0.634039 -0.235551 }
+      }
+      <Normal> { 0.590289 -0.772515 0.233955 }
+    }
+    <Vertex> 471 {
+      13.0142860413 -1.38925588131 5.45178461075
+      <UV>  {
+        0.711389 0.005374
+        <Tangent> { 0.418448 0.080532 -0.904663 }
+        <Binormal> { -0.665115 -0.650625 -0.365564 }
+      }
+      <Normal> { 0.628254 -0.752708 0.196600 }
+    }
+    <Vertex> 472 {
+      10.6282682419 -1.86106801033 5.53160572052
+      <UV>  {
+        0.711389 0.096181
+        <Tangent> { 0.310234 0.187500 -0.931986 }
+        <Binormal> { -0.946342 0.153405 -0.284150 }
+      }
+      <Normal> { -0.093112 -0.972198 -0.214759 }
+    }
+    <Vertex> 473 {
+      13.0142860413 -1.38925588131 5.45178461075
+      <UV>  {
+        0.711389 0.005374
+        <Tangent> { 0.418448 0.080532 -0.904663 }
+        <Binormal> { -0.665115 -0.650625 -0.365564 }
+      }
+      <Normal> { 0.628254 -0.752708 0.196600 }
+    }
+    <Vertex> 474 {
+      12.1925029755 -1.6492484808 7.00941324234
+      <UV>  {
+        0.677416 0.005374
+        <Tangent> { 0.493348 0.374998 -0.784847 }
+        <Binormal> { -0.509834 -0.605011 -0.609550 }
+      }
+      <Normal> { 0.678976 -0.719443 0.146184 }
+    }
+    <Vertex> 475 {
+      10.018456459 -2.3662135601 7.02307510376
+      <UV>  {
+        0.678246 0.096181
+        <Tangent> { 0.430274 0.446470 -0.784557 }
+        <Binormal> { -0.902439 0.226508 -0.366024 }
+      }
+      <Normal> { -0.007172 -0.858119 -0.513352 }
+    }
+    <Vertex> 476 {
+      10.6282682419 -1.86106801033 5.53160572052
+      <UV>  {
+        0.711389 0.096181
+        <Tangent> { 0.310234 0.187500 -0.931986 }
+        <Binormal> { -0.946342 0.153405 -0.284150 }
+      }
+      <Normal> { -0.093112 -0.972198 -0.214759 }
+    }
+    <Vertex> 477 {
+      10.018456459 -2.3662135601 7.02307510376
+      <UV>  {
+        0.678246 0.096181
+        <Tangent> { 0.430274 0.446470 -0.784557 }
+        <Binormal> { -0.902439 0.226508 -0.366024 }
+      }
+      <Normal> { -0.007172 -0.858119 -0.513352 }
+    }
+    <Vertex> 478 {
+      7.83960199356 -1.50740194321 7.04303026199
+      <UV>  {
+        0.673990 0.218255
+        <Tangent> { 0.328042 0.511637 -0.794113 }
+        <Binormal> { -0.721731 0.677183 0.138159 }
+      }
+      <Normal> { -0.596240 -0.508774 -0.620960 }
+    }
+    <Vertex> 479 {
+      8.24225139618 -0.815646111965 5.61142683029
+      <UV>  {
+        0.707726 0.218185
+        <Tangent> { 0.187188 0.292207 -0.937857 }
+        <Binormal> { -0.691838 0.716890 0.085276 }
+      }
+      <Normal> { -0.699240 -0.635975 -0.326426 }
+    }
+    <Vertex> 480 {
+      13.8096265793 0.861906886101 5.42517709732
+      <UV>  {
+        0.175527 0.609571
+        <Tangent> { 0.411255 -0.182731 -0.893017 }
+        <Binormal> { -0.215609 -0.971350 0.099467 }
+      }
+      <Normal> { 0.888791 -0.153050 0.431959 }
+    }
+    <Vertex> 481 {
+      13.0142860413 -1.38925588131 5.45178461075
+      <UV>  {
+        0.160570 0.678176
+        <Tangent> { 0.360571 -0.112095 -0.925971 }
+        <Binormal> { -0.719025 -0.652634 -0.200981 }
+      }
+      <Normal> { 0.628254 -0.752708 0.196600 }
+    }
+    <Vertex> 482 {
+      13.8148508072 -1.33702301979 3.50198435783
+      <UV>  {
+        0.111299 0.666965
+        <Tangent> { 0.316041 -0.168534 -0.933657 }
+        <Binormal> { -0.760693 -0.625067 -0.144663 }
+      }
+      <Normal> { 0.590289 -0.772515 0.233955 }
+    }
+    <Vertex> 483 {
+      14.7002744675 0.861906886101 3.46207380295
+      <UV>  {
+        0.128615 0.599169
+        <Tangent> { 0.366979 -0.194199 -0.909732 }
+        <Binormal> { -0.233200 -0.965787 0.112094 }
+      }
+      <Normal> { 0.906339 -0.174169 0.384930 }
+    }
+    <Vertex> 484 {
+      13.8096265793 0.861906886101 5.42517709732
+      <UV>  {
+        0.175527 0.609571
+        <Tangent> { 0.411255 -0.182731 -0.893017 }
+        <Binormal> { -0.215609 -0.971350 0.099467 }
+      }
+      <Normal> { 0.888791 -0.153050 0.431959 }
+    }
+    <Vertex> 485 {
+      14.7002744675 0.861906886101 3.46207380295
+      <UV>  {
+        0.128615 0.599169
+        <Tangent> { 0.366979 -0.194199 -0.909732 }
+        <Binormal> { -0.233200 -0.965787 0.112094 }
+      }
+      <Normal> { 0.906339 -0.174169 0.384930 }
+    }
+    <Vertex> 486 {
+      14.7002754211 4.87122774124 3.46207380295
+      <UV>  {
+        0.149023 0.513571
+        <Tangent> { 0.388675 -0.247115 -0.887618 }
+        <Binormal> { -0.099104 -0.968973 0.226368 }
+      }
+      <Normal> { 0.916044 0.000000 0.401044 }
+    }
+    <Vertex> 487 {
+      13.809627533 4.55006504059 5.42517709732
+      <UV>  {
+        0.193332 0.530918
+        <Tangent> { 0.436889 -0.227036 -0.870393 }
+        <Binormal> { -0.103342 -0.973852 0.202151 }
+      }
+      <Normal> { 0.895383 -0.002594 0.445235 }
+    }
+    <Vertex> 488 {
+      13.8096265793 0.861906886101 5.42517709732
+      <UV>  {
+        0.175527 0.609571
+        <Tangent> { 0.411255 -0.182731 -0.893017 }
+        <Binormal> { -0.215609 -0.971350 0.099467 }
+      }
+      <Normal> { 0.888791 -0.153050 0.431959 }
+    }
+    <Vertex> 489 {
+      13.809627533 4.55006504059 5.42517709732
+      <UV>  {
+        0.193332 0.530918
+        <Tangent> { 0.436889 -0.227036 -0.870393 }
+        <Binormal> { -0.103342 -0.973852 0.202151 }
+      }
+      <Normal> { 0.895383 -0.002594 0.445235 }
+    }
+    <Vertex> 490 {
+      12.9156131744 4.12854003906 7.04052066803
+      <UV>  {
+        0.231656 0.548722
+        <Tangent> { 0.555273 -0.239964 -0.796297 }
+        <Binormal> { -0.152670 -0.970577 0.186024 }
+      }
+      <Normal> { 0.814692 -0.017060 0.579608 }
+    }
+    <Vertex> 491 {
+      12.9043655396 0.710577666759 7.02164173126
+      <UV>  {
+        0.215898 0.622029
+        <Tangent> { 0.576095 -0.194632 -0.793872 }
+        <Binormal> { -0.216423 -0.972593 0.081395 }
+      }
+      <Normal> { 0.801660 -0.129551 0.583544 }
+    }
+    <Vertex> 492 {
+      13.8096265793 0.861906886101 5.42517709732
+      <UV>  {
+        0.175527 0.609571
+        <Tangent> { 0.411255 -0.182731 -0.893017 }
+        <Binormal> { -0.215609 -0.971350 0.099467 }
+      }
+      <Normal> { 0.888791 -0.153050 0.431959 }
+    }
+    <Vertex> 493 {
+      12.9043655396 0.710577666759 7.02164173126
+      <UV>  {
+        0.215898 0.622029
+        <Tangent> { 0.576095 -0.194632 -0.793872 }
+        <Binormal> { -0.216423 -0.972593 0.081395 }
+      }
+      <Normal> { 0.801660 -0.129551 0.583544 }
+    }
+    <Vertex> 494 {
+      12.1925029755 -1.6492484808 7.00941324234
+      <UV>  {
+        0.209841 0.689388
+        <Tangent> { 0.538897 -0.138687 -0.830877 }
+        <Binormal> { -0.618042 -0.642923 -0.293541 }
+      }
+      <Normal> { 0.678976 -0.719443 0.146184 }
+    }
+    <Vertex> 495 {
+      13.0142860413 -1.38925588131 5.45178461075
+      <UV>  {
+        0.160570 0.678176
+        <Tangent> { 0.360571 -0.112095 -0.925971 }
+        <Binormal> { -0.719025 -0.652634 -0.200981 }
+      }
+      <Normal> { 0.628254 -0.752708 0.196600 }
+    }
+    <Vertex> 496 {
+      13.809627533 9.33286190033 5.42517709732
+      <UV>  {
+        0.216832 0.432169
+        <Tangent> { 0.492848 -0.252424 -0.832696 }
+        <Binormal> { -0.053771 -0.963990 0.260399 }
+      }
+      <Normal> { 0.867672 0.083956 0.489975 }
+    }
+    <Vertex> 497 {
+      13.809627533 4.55006504059 5.42517709732
+      <UV>  {
+        0.193332 0.530918
+        <Tangent> { 0.436889 -0.227036 -0.870393 }
+        <Binormal> { -0.103342 -0.973852 0.202151 }
+      }
+      <Normal> { 0.895383 -0.002594 0.445235 }
+    }
+    <Vertex> 498 {
+      14.7002754211 4.87122774124 3.46207380295
+      <UV>  {
+        0.149023 0.513571
+        <Tangent> { 0.388675 -0.247115 -0.887618 }
+        <Binormal> { -0.099104 -0.968973 0.226368 }
+      }
+      <Normal> { 0.916044 0.000000 0.401044 }
+    }
+    <Vertex> 499 {
+      14.7002763748 10.6175146103 3.46207380295
+      <UV>  {
+        0.179742 0.393038
+        <Tangent> { 0.442282 -0.279882 -0.852087 }
+        <Binormal> { -0.053989 -0.956578 0.286180 }
+      }
+      <Normal> { 0.890988 0.083224 0.446272 }
+    }
+    <Vertex> 500 {
+      13.809627533 9.33286190033 5.42517709732
+      <UV>  {
+        0.216832 0.432169
+        <Tangent> { 0.492848 -0.252424 -0.832696 }
+        <Binormal> { -0.053771 -0.963990 0.260399 }
+      }
+      <Normal> { 0.867672 0.083956 0.489975 }
+    }
+    <Vertex> 501 {
+      14.7002763748 10.6175146103 3.46207380295
+      <UV>  {
+        0.179742 0.393038
+        <Tangent> { 0.442282 -0.279882 -0.852087 }
+        <Binormal> { -0.053989 -0.956578 0.286180 }
+      }
+      <Normal> { 0.890988 0.083224 0.446272 }
+    }
+    <Vertex> 502 {
+      13.7511100769 15.5785903931 3.46207380295
+      <UV>  {
+        0.228256 0.288535
+        <Tangent> { 0.756292 -0.218752 -0.616580 }
+        <Binormal> { 0.102093 -0.891360 0.441466 }
+      }
+      <Normal> { 0.638020 0.399182 0.658437 }
+    }
+    <Vertex> 503 {
+      12.9717922211 13.330450058 5.42517709732
+      <UV>  {
+        0.255089 0.350224
+        <Tangent> { 0.796547 -0.197567 -0.571384 }
+        <Binormal> { 0.073361 -0.906446 0.415692 }
+      }
+      <Normal> { 0.592090 0.375011 0.713248 }
+    }
+    <Vertex> 504 {
+      13.809627533 9.33286190033 5.42517709732
+      <UV>  {
+        0.216832 0.432169
+        <Tangent> { 0.492848 -0.252424 -0.832696 }
+        <Binormal> { -0.053771 -0.963990 0.260399 }
+      }
+      <Normal> { 0.867672 0.083956 0.489975 }
+    }
+    <Vertex> 505 {
+      12.9717922211 13.330450058 5.42517709732
+      <UV>  {
+        0.255089 0.350224
+        <Tangent> { 0.796547 -0.197567 -0.571384 }
+        <Binormal> { 0.073361 -0.906446 0.415692 }
+      }
+      <Normal> { 0.592090 0.375011 0.713248 }
+    }
+    <Vertex> 506 {
+      12.3083486557 11.1159734726 7.04681396484
+      <UV>  {
+        0.276438 0.406551
+        <Tangent> { 0.849951 -0.176024 -0.496588 }
+        <Binormal> { 0.024431 -0.928326 0.370877 }
+      }
+      <Normal> { 0.526658 0.327280 0.784509 }
+    }
+    <Vertex> 507 {
+      12.9878177643 8.0199136734 7.04681491852
+      <UV>  {
+        0.247852 0.468695
+        <Tangent> { 0.563818 -0.238947 -0.790578 }
+        <Binormal> { -0.084752 -0.968726 0.232348 }
+      }
+      <Normal> { 0.811151 0.068331 0.580767 }
+    }
+    <Vertex> 508 {
+      13.809627533 9.33286190033 5.42517709732
+      <UV>  {
+        0.216832 0.432169
+        <Tangent> { 0.492848 -0.252424 -0.832696 }
+        <Binormal> { -0.053771 -0.963990 0.260399 }
+      }
+      <Normal> { 0.867672 0.083956 0.489975 }
+    }
+    <Vertex> 509 {
+      12.9878177643 8.0199136734 7.04681491852
+      <UV>  {
+        0.247852 0.468695
+        <Tangent> { 0.563818 -0.238947 -0.790578 }
+        <Binormal> { -0.084752 -0.968726 0.232348 }
+      }
+      <Normal> { 0.811151 0.068331 0.580767 }
+    }
+    <Vertex> 510 {
+      12.9156131744 4.12854003906 7.04052066803
+      <UV>  {
+        0.231656 0.548722
+        <Tangent> { 0.555273 -0.239964 -0.796297 }
+        <Binormal> { -0.152670 -0.970577 0.186024 }
+      }
+      <Normal> { 0.814692 -0.017060 0.579608 }
+    }
+    <Vertex> 511 {
+      13.809627533 4.55006504059 5.42517709732
+      <UV>  {
+        0.193332 0.530918
+        <Tangent> { 0.436889 -0.227036 -0.870393 }
+        <Binormal> { -0.103342 -0.973852 0.202151 }
+      }
+      <Normal> { 0.895383 -0.002594 0.445235 }
+    }
+    <Vertex> 512 {
+      10.4582891464 14.662979126 5.42517709732
+      <UV>  {
+        0.317168 0.321982
+        <Tangent> { 0.992592 -0.032859 -0.116968 }
+        <Binormal> { 0.039641 -0.822401 0.567423 }
+      }
+      <Normal> { 0.122166 0.567614 0.814142 }
+    }
+    <Vertex> 513 {
+      12.9717922211 13.330450058 5.42517709732
+      <UV>  {
+        0.255089 0.350224
+        <Tangent> { 0.796547 -0.197567 -0.571384 }
+        <Binormal> { 0.073361 -0.906446 0.415692 }
+      }
+      <Normal> { 0.592090 0.375011 0.713248 }
+    }
+    <Vertex> 514 {
+      13.7511100769 15.5785903931 3.46207380295
+      <UV>  {
+        0.228256 0.288535
+        <Tangent> { 0.756292 -0.218752 -0.616580 }
+        <Binormal> { 0.102093 -0.891360 0.441466 }
+      }
+      <Normal> { 0.638020 0.399182 0.658437 }
+    }
+    <Vertex> 515 {
+      10.9036130905 17.2322826385 3.46207380295
+      <UV>  {
+        0.302049 0.251031
+        <Tangent> { 0.989126 -0.014788 -0.146322 }
+        <Binormal> { 0.081052 -0.775203 0.626248 }
+      }
+      <Normal> { 0.138493 0.631062 0.763237 }
+    }
+    <Vertex> 516 {
+      10.4582891464 14.662979126 5.42517709732
+      <UV>  {
+        0.317168 0.321982
+        <Tangent> { 0.992592 -0.032859 -0.116968 }
+        <Binormal> { 0.039641 -0.822401 0.567423 }
+      }
+      <Normal> { 0.122166 0.567614 0.814142 }
+    }
+    <Vertex> 517 {
+      10.9036130905 17.2322826385 3.46207380295
+      <UV>  {
+        0.302049 0.251031
+        <Tangent> { 0.989126 -0.014788 -0.146322 }
+        <Binormal> { 0.081052 -0.775203 0.626248 }
+      }
+      <Normal> { 0.138493 0.631062 0.763237 }
+    }
+    <Vertex> 518 {
+      7.45612001419 16.8682441711 3.46207380295
+      <UV>  {
+        0.380939 0.254091
+        <Tangent> { 0.988945 0.118915 0.088579 }
+        <Binormal> { 0.030125 -0.746016 0.665175 }
+      }
+      <Normal> { -0.141728 0.655568 0.741661 }
+    }
+    <Vertex> 519 {
+      7.32818365097 14.4534978867 5.42517709732
+      <UV>  {
+        0.387904 0.325334
+        <Tangent> { 0.995961 0.048047 0.075845 }
+        <Binormal> { -0.009022 -0.786901 0.616969 }
+      }
+      <Normal> { -0.093753 0.614948 0.782952 }
+    }
+    <Vertex> 520 {
+      10.4582891464 14.662979126 5.42517709732
+      <UV>  {
+        0.317168 0.321982
+        <Tangent> { 0.992592 -0.032859 -0.116968 }
+        <Binormal> { 0.039641 -0.822401 0.567423 }
+      }
+      <Normal> { 0.122166 0.567614 0.814142 }
+    }
+    <Vertex> 521 {
+      7.32818365097 14.4534978867 5.42517709732
+      <UV>  {
+        0.387904 0.325334
+        <Tangent> { 0.995961 0.048047 0.075845 }
+        <Binormal> { -0.009022 -0.786901 0.616969 }
+      }
+      <Normal> { -0.093753 0.614948 0.782952 }
+    }
+    <Vertex> 522 {
+      7.00420427322 12.0940675735 7.03973960876
+      <UV>  {
+        0.396783 0.390753
+        <Tangent> { 0.998114 -0.027274 0.054998 }
+        <Binormal> { -0.051195 -0.864172 0.500545 }
+      }
+      <Normal> { -0.036470 0.502487 0.863796 }
+    }
+    <Vertex> 523 {
+      10.064573288 12.1479940414 7.04681491852
+      <UV>  {
+        0.329366 0.386891
+        <Tangent> { 0.995264 -0.065797 -0.071562 }
+        <Binormal> { -0.023770 -0.878470 0.477118 }
+      }
+      <Normal> { 0.098392 0.472884 0.875576 }
+    }
+    <Vertex> 524 {
+      10.4582891464 14.662979126 5.42517709732
+      <UV>  {
+        0.317168 0.321982
+        <Tangent> { 0.992592 -0.032859 -0.116968 }
+        <Binormal> { 0.039641 -0.822401 0.567423 }
+      }
+      <Normal> { 0.122166 0.567614 0.814142 }
+    }
+    <Vertex> 525 {
+      10.064573288 12.1479940414 7.04681491852
+      <UV>  {
+        0.329366 0.386891
+        <Tangent> { 0.995264 -0.065797 -0.071562 }
+        <Binormal> { -0.023770 -0.878470 0.477118 }
+      }
+      <Normal> { 0.098392 0.472884 0.875576 }
+    }
+    <Vertex> 526 {
+      12.3083486557 11.1159734726 7.04681396484
+      <UV>  {
+        0.276438 0.406551
+        <Tangent> { 0.849951 -0.176024 -0.496588 }
+        <Binormal> { 0.024431 -0.928326 0.370877 }
+      }
+      <Normal> { 0.526658 0.327280 0.784509 }
+    }
+    <Vertex> 527 {
+      12.9717922211 13.330450058 5.42517709732
+      <UV>  {
+        0.255089 0.350224
+        <Tangent> { 0.796547 -0.197567 -0.571384 }
+        <Binormal> { 0.073361 -0.906446 0.415692 }
+      }
+      <Normal> { 0.592090 0.375011 0.713248 }
+    }
+    <Vertex> 528 {
+      9.83467960358 10.3693161011 7.84529972076
+      <UV>  {
+        0.335109 0.429345
+        <Tangent> { 0.995913 -0.084886 -0.030856 }
+        <Binormal> { -0.073102 -0.958195 0.276581 }
+      }
+      <Normal> { 0.052248 0.273263 0.960509 }
+    }
+    <Vertex> 529 {
+      11.9827070236 9.51803970337 7.84529972076
+      <UV>  {
+        0.286277 0.443667
+        <Tangent> { 0.946346 -0.147812 -0.287370 }
+        <Binormal> { -0.082994 -0.970594 0.225925 }
+      }
+      <Normal> { 0.310007 0.190313 0.931486 }
+    }
+    <Vertex> 530 {
+      12.3083486557 11.1159734726 7.04681396484
+      <UV>  {
+        0.276438 0.406551
+        <Tangent> { 0.849951 -0.176024 -0.496588 }
+        <Binormal> { 0.024431 -0.928326 0.370877 }
+      }
+      <Normal> { 0.526658 0.327280 0.784509 }
+    }
+    <Vertex> 531 {
+      10.064573288 12.1479940414 7.04681491852
+      <UV>  {
+        0.329366 0.386891
+        <Tangent> { 0.995264 -0.065797 -0.071562 }
+        <Binormal> { -0.023770 -0.878470 0.477118 }
+      }
+      <Normal> { 0.098392 0.472884 0.875576 }
+    }
+    <Vertex> 532 {
+      9.83467960358 10.3693161011 7.84529972076
+      <UV>  {
+        0.335109 0.429345
+        <Tangent> { 0.995913 -0.084886 -0.030856 }
+        <Binormal> { -0.073102 -0.958195 0.276581 }
+      }
+      <Normal> { 0.052248 0.273263 0.960509 }
+    }
+    <Vertex> 533 {
+      10.064573288 12.1479940414 7.04681491852
+      <UV>  {
+        0.329366 0.386891
+        <Tangent> { 0.995264 -0.065797 -0.071562 }
+        <Binormal> { -0.023770 -0.878470 0.477118 }
+      }
+      <Normal> { 0.098392 0.472884 0.875576 }
+    }
+    <Vertex> 534 {
+      7.00420427322 12.0940675735 7.03973960876
+      <UV>  {
+        0.396783 0.390753
+        <Tangent> { 0.998114 -0.027274 0.054998 }
+        <Binormal> { -0.051195 -0.864172 0.500545 }
+      }
+      <Normal> { -0.036470 0.502487 0.863796 }
+    }
+    <Vertex> 535 {
+      6.60729598999 10.3630924225 7.81700277328
+      <UV>  {
+        0.404736 0.435099
+        <Tangent> { 0.995855 -0.081651 0.040072 }
+        <Binormal> { -0.089517 -0.957791 0.273040 }
+      }
+      <Normal> { -0.019379 0.275765 0.960997 }
+    }
+    <Vertex> 536 {
+      9.83467960358 10.3693161011 7.84529972076
+      <UV>  {
+        0.335109 0.429345
+        <Tangent> { 0.995913 -0.084886 -0.030856 }
+        <Binormal> { -0.073102 -0.958195 0.276581 }
+      }
+      <Normal> { 0.052248 0.273263 0.960509 }
+    }
+    <Vertex> 537 {
+      6.60729598999 10.3630924225 7.81700277328
+      <UV>  {
+        0.404736 0.435099
+        <Tangent> { 0.995855 -0.081651 0.040072 }
+        <Binormal> { -0.089517 -0.957791 0.273040 }
+      }
+      <Normal> { -0.019379 0.275765 0.960997 }
+    }
+    <Vertex> 538 {
+      6.24885749817 8.56078052521 8.04898262024
+      <UV>  {
+        0.408553 0.477740
+        <Tangent> { 0.993942 -0.105625 0.030382 }
+        <Binormal> { -0.107369 -0.992193 0.063137 }
+      }
+      <Normal> { -0.024293 0.066103 0.997497 }
+    }
+    <Vertex> 539 {
+      9.61585140228 8.5747833252 8.11030864716
+      <UV>  {
+        0.335990 0.469401
+        <Tangent> { 0.993609 -0.112510 -0.009065 }
+        <Binormal> { -0.111545 -0.991006 0.073483 }
+      }
+      <Normal> { 0.010590 0.072756 0.997284 }
+    }
+    <Vertex> 540 {
+      9.83467960358 10.3693161011 7.84529972076
+      <UV>  {
+        0.335109 0.429345
+        <Tangent> { 0.995913 -0.084886 -0.030856 }
+        <Binormal> { -0.073102 -0.958195 0.276581 }
+      }
+      <Normal> { 0.052248 0.273263 0.960509 }
+    }
+    <Vertex> 541 {
+      9.61585140228 8.5747833252 8.11030864716
+      <UV>  {
+        0.335990 0.469401
+        <Tangent> { 0.993609 -0.112510 -0.009065 }
+        <Binormal> { -0.111545 -0.991006 0.073483 }
+      }
+      <Normal> { 0.010590 0.072756 0.997284 }
+    }
+    <Vertex> 542 {
+      11.1713752747 8.23069190979 8.04906082153
+      <UV>  {
+        0.300409 0.472919
+        <Tangent> { 0.987320 -0.134459 -0.084383 }
+        <Binormal> { -0.128123 -0.988796 0.076487 }
+      }
+      <Normal> { 0.095340 0.064486 0.993347 }
+    }
+    <Vertex> 543 {
+      11.9827070236 9.51803970337 7.84529972076
+      <UV>  {
+        0.286277 0.443667
+        <Tangent> { 0.946346 -0.147812 -0.287370 }
+        <Binormal> { -0.082994 -0.970594 0.225925 }
+      }
+      <Normal> { 0.310007 0.190313 0.931486 }
+    }
+    <Vertex> 544 {
+      12.4248933792 6.96420955658 7.84529972076
+      <UV>  {
+        0.264859 0.495192
+        <Tangent> { 0.829828 -0.223561 -0.511279 }
+        <Binormal> { -0.175829 -0.974252 0.140623 }
+      }
+      <Normal> { 0.520829 0.029145 0.853145 }
+    }
+    <Vertex> 545 {
+      12.1360740662 3.58475136757 7.82012701035
+      <UV>  {
+        0.254579 0.565991
+        <Tangent> { 0.838767 -0.253319 -0.481974 }
+        <Binormal> { -0.235408 -0.966821 0.098474 }
+      }
+      <Normal> { 0.500595 -0.033784 0.865017 }
+    }
+    <Vertex> 546 {
+      12.9156131744 4.12854003906 7.04052066803
+      <UV>  {
+        0.231656 0.548722
+        <Tangent> { 0.555273 -0.239964 -0.796297 }
+        <Binormal> { -0.152670 -0.970577 0.186024 }
+      }
+      <Normal> { 0.814692 -0.017060 0.579608 }
+    }
+    <Vertex> 547 {
+      12.9878177643 8.0199136734 7.04681491852
+      <UV>  {
+        0.247852 0.468695
+        <Tangent> { 0.563818 -0.238947 -0.790578 }
+        <Binormal> { -0.084752 -0.968726 0.232348 }
+      }
+      <Normal> { 0.811151 0.068331 0.580767 }
+    }
+    <Vertex> 548 {
+      12.4248933792 6.96420955658 7.84529972076
+      <UV>  {
+        0.264859 0.495192
+        <Tangent> { 0.829828 -0.223561 -0.511279 }
+        <Binormal> { -0.175829 -0.974252 0.140623 }
+      }
+      <Normal> { 0.520829 0.029145 0.853145 }
+    }
+    <Vertex> 549 {
+      12.9878177643 8.0199136734 7.04681491852
+      <UV>  {
+        0.247852 0.468695
+        <Tangent> { 0.563818 -0.238947 -0.790578 }
+        <Binormal> { -0.084752 -0.968726 0.232348 }
+      }
+      <Normal> { 0.811151 0.068331 0.580767 }
+    }
+    <Vertex> 550 {
+      12.3083486557 11.1159734726 7.04681396484
+      <UV>  {
+        0.276438 0.406551
+        <Tangent> { 0.849951 -0.176024 -0.496588 }
+        <Binormal> { 0.024431 -0.928326 0.370877 }
+      }
+      <Normal> { 0.526658 0.327280 0.784509 }
+    }
+    <Vertex> 551 {
+      11.9827070236 9.51803970337 7.84529972076
+      <UV>  {
+        0.286277 0.443667
+        <Tangent> { 0.946346 -0.147812 -0.287370 }
+        <Binormal> { -0.082994 -0.970594 0.225925 }
+      }
+      <Normal> { 0.310007 0.190313 0.931486 }
+    }
+    <Vertex> 552 {
+      12.4248933792 6.96420955658 7.84529972076
+      <UV>  {
+        0.264859 0.495192
+        <Tangent> { 0.829828 -0.223561 -0.511279 }
+        <Binormal> { -0.175829 -0.974252 0.140623 }
+      }
+      <Normal> { 0.520829 0.029145 0.853145 }
+    }
+    <Vertex> 553 {
+      11.9827070236 9.51803970337 7.84529972076
+      <UV>  {
+        0.286277 0.443667
+        <Tangent> { 0.946346 -0.147812 -0.287370 }
+        <Binormal> { -0.082994 -0.970594 0.225925 }
+      }
+      <Normal> { 0.310007 0.190313 0.931486 }
+    }
+    <Vertex> 554 {
+      11.1713752747 8.23069190979 8.04906082153
+      <UV>  {
+        0.300409 0.472919
+        <Tangent> { 0.987320 -0.134459 -0.084383 }
+        <Binormal> { -0.128123 -0.988796 0.076487 }
+      }
+      <Normal> { 0.095340 0.064486 0.993347 }
+    }
+    <Vertex> 555 {
+      11.4157619476 6.26267385483 8.11030864716
+      <UV>  {
+        0.287046 0.513913
+        <Tangent> { 0.977461 -0.171184 -0.123557 }
+        <Binormal> { -0.170061 -0.985201 0.019608 }
+      }
+      <Normal> { 0.118900 -0.000763 0.992889 }
+    }
+    <Vertex> 556 {
+      12.4248933792 6.96420955658 7.84529972076
+      <UV>  {
+        0.264859 0.495192
+        <Tangent> { 0.829828 -0.223561 -0.511279 }
+        <Binormal> { -0.175829 -0.974252 0.140623 }
+      }
+      <Normal> { 0.520829 0.029145 0.853145 }
+    }
+    <Vertex> 557 {
+      11.4157619476 6.26267385483 8.11030864716
+      <UV>  {
+        0.287046 0.513913
+        <Tangent> { 0.977461 -0.171184 -0.123557 }
+        <Binormal> { -0.170061 -0.985201 0.019608 }
+      }
+      <Normal> { 0.118900 -0.000763 0.992889 }
+    }
+    <Vertex> 558 {
+      10.9786643982 3.12172555923 8.05366897583
+      <UV>  {
+        0.279916 0.582036
+        <Tangent> { 0.968041 -0.224380 -0.112028 }
+        <Binormal> { -0.226583 -0.973940 -0.007222 }
+      }
+      <Normal> { 0.108829 -0.032685 0.993500 }
+    }
+    <Vertex> 559 {
+      12.1360740662 3.58475136757 7.82012701035
+      <UV>  {
+        0.254579 0.565991
+        <Tangent> { 0.838767 -0.253319 -0.481974 }
+        <Binormal> { -0.235408 -0.966821 0.098474 }
+      }
+      <Normal> { 0.500595 -0.033784 0.865017 }
+    }
+    <Vertex> 560 {
+      12.0910873413 0.256590038538 7.74460697174
+      <UV>  {
+        0.239165 0.638137
+        <Tangent> { 0.813367 -0.334886 -0.475695 }
+        <Binormal> { -0.337128 -0.937697 0.083694 }
+      }
+      <Normal> { 0.468581 -0.090030 0.878811 }
+    }
+    <Vertex> 561 {
+      11.4768390656 -2.22029471397 7.66908788681
+      <UV>  {
+        0.221184 0.710957
+        <Tangent> { 0.648541 -0.614760 -0.448848 }
+        <Binormal> { -0.672906 -0.688462 -0.029337 }
+      }
+      <Normal> { 0.465346 -0.486343 0.739494 }
+    }
+    <Vertex> 562 {
+      12.1925029755 -1.6492484808 7.00941324234
+      <UV>  {
+        0.209841 0.689388
+        <Tangent> { 0.538897 -0.138687 -0.830877 }
+        <Binormal> { -0.618042 -0.642923 -0.293541 }
+      }
+      <Normal> { 0.678976 -0.719443 0.146184 }
+    }
+    <Vertex> 563 {
+      12.9043655396 0.710577666759 7.02164173126
+      <UV>  {
+        0.215898 0.622029
+        <Tangent> { 0.576095 -0.194632 -0.793872 }
+        <Binormal> { -0.216423 -0.972593 0.081395 }
+      }
+      <Normal> { 0.801660 -0.129551 0.583544 }
+    }
+    <Vertex> 564 {
+      12.0910873413 0.256590038538 7.74460697174
+      <UV>  {
+        0.239165 0.638137
+        <Tangent> { 0.813367 -0.334886 -0.475695 }
+        <Binormal> { -0.337128 -0.937697 0.083694 }
+      }
+      <Normal> { 0.468581 -0.090030 0.878811 }
+    }
+    <Vertex> 565 {
+      12.9043655396 0.710577666759 7.02164173126
+      <UV>  {
+        0.215898 0.622029
+        <Tangent> { 0.576095 -0.194632 -0.793872 }
+        <Binormal> { -0.216423 -0.972593 0.081395 }
+      }
+      <Normal> { 0.801660 -0.129551 0.583544 }
+    }
+    <Vertex> 566 {
+      12.9156131744 4.12854003906 7.04052066803
+      <UV>  {
+        0.231656 0.548722
+        <Tangent> { 0.555273 -0.239964 -0.796297 }
+        <Binormal> { -0.152670 -0.970577 0.186024 }
+      }
+      <Normal> { 0.814692 -0.017060 0.579608 }
+    }
+    <Vertex> 567 {
+      12.1360740662 3.58475136757 7.82012701035
+      <UV>  {
+        0.254579 0.565991
+        <Tangent> { 0.838767 -0.253319 -0.481974 }
+        <Binormal> { -0.235408 -0.966821 0.098474 }
+      }
+      <Normal> { 0.500595 -0.033784 0.865017 }
+    }
+    <Vertex> 568 {
+      12.0910873413 0.256590038538 7.74460697174
+      <UV>  {
+        0.239165 0.638137
+        <Tangent> { 0.813367 -0.334886 -0.475695 }
+        <Binormal> { -0.337128 -0.937697 0.083694 }
+      }
+      <Normal> { 0.468581 -0.090030 0.878811 }
+    }
+    <Vertex> 569 {
+      12.1360740662 3.58475136757 7.82012701035
+      <UV>  {
+        0.254579 0.565991
+        <Tangent> { 0.838767 -0.253319 -0.481974 }
+        <Binormal> { -0.235408 -0.966821 0.098474 }
+      }
+      <Normal> { 0.500595 -0.033784 0.865017 }
+    }
+    <Vertex> 570 {
+      10.9786643982 3.12172555923 8.05366897583
+      <UV>  {
+        0.279916 0.582036
+        <Tangent> { 0.968041 -0.224380 -0.112028 }
+        <Binormal> { -0.226583 -0.973940 -0.007222 }
+      }
+      <Normal> { 0.108829 -0.032685 0.993500 }
+    }
+    <Vertex> 571 {
+      10.9098949432 -0.203621029854 7.93409538269
+      <UV>  {
+        0.264018 0.655130
+        <Tangent> { 0.984910 -0.143579 -0.096629 }
+        <Binormal> { -0.147765 -0.988288 -0.037651 }
+      }
+      <Normal> { 0.092196 -0.051668 0.994385 }
+    }
+    <Vertex> 572 {
+      12.0910873413 0.256590038538 7.74460697174
+      <UV>  {
+        0.239165 0.638137
+        <Tangent> { 0.813367 -0.334886 -0.475695 }
+        <Binormal> { -0.337128 -0.937697 0.083694 }
+      }
+      <Normal> { 0.468581 -0.090030 0.878811 }
+    }
+    <Vertex> 573 {
+      10.9098949432 -0.203621029854 7.93409538269
+      <UV>  {
+        0.264018 0.655130
+        <Tangent> { 0.984910 -0.143579 -0.096629 }
+        <Binormal> { -0.147765 -0.988288 -0.037651 }
+      }
+      <Normal> { 0.092196 -0.051668 0.994385 }
+    }
+    <Vertex> 574 {
+      10.601275444 -1.95312011242 7.81411123276
+      <UV>  {
+        0.232528 0.732526
+        <Tangent> { 0.925119 -0.361782 -0.115190 }
+        <Binormal> { -0.372331 -0.923168 -0.090855 }
+      }
+      <Normal> { 0.099734 -0.137211 0.985473 }
+    }
+    <Vertex> 575 {
+      11.4768390656 -2.22029471397 7.66908788681
+      <UV>  {
+        0.221184 0.710957
+        <Tangent> { 0.648541 -0.614760 -0.448848 }
+        <Binormal> { -0.672906 -0.688462 -0.029337 }
+      }
+      <Normal> { 0.465346 -0.486343 0.739494 }
+    }
+    <Vertex> 576 {
+      9.48023796082 -3.0459227562 7.64391422272
+      <UV>  {
+        0.646762 0.096181
+        <Tangent> { 0.780676 0.225292 -0.582913 }
+        <Binormal> { -0.515984 -0.164151 -0.754483 }
+      }
+      <Normal> { -0.023835 -0.973327 0.228065 }
+    }
+    <Vertex> 577 {
+      7.46440553665 -2.22651791573 7.64391422272
+      <UV>  {
+        0.640724 0.218302
+        <Tangent> { 0.500895 0.017299 -0.865335 }
+        <Binormal> { -0.554839 0.589257 -0.309387 }
+      }
+      <Normal> { -0.754570 -0.643727 0.127171 }
+    }
+    <Vertex> 578 {
+      7.83960199356 -1.50740194321 7.04303026199
+      <UV>  {
+        0.673990 0.218255
+        <Tangent> { 0.328042 0.511637 -0.794113 }
+        <Binormal> { -0.721731 0.677183 0.138159 }
+      }
+      <Normal> { -0.596240 -0.508774 -0.620960 }
+    }
+    <Vertex> 579 {
+      10.018456459 -2.3662135601 7.02307510376
+      <UV>  {
+        0.678246 0.096181
+        <Tangent> { 0.430274 0.446470 -0.784557 }
+        <Binormal> { -0.902439 0.226508 -0.366024 }
+      }
+      <Normal> { -0.007172 -0.858119 -0.513352 }
+    }
+    <Vertex> 580 {
+      9.48023796082 -3.0459227562 7.64391422272
+      <UV>  {
+        0.646762 0.096181
+        <Tangent> { 0.780676 0.225292 -0.582913 }
+        <Binormal> { -0.515984 -0.164151 -0.754483 }
+      }
+      <Normal> { -0.023835 -0.973327 0.228065 }
+    }
+    <Vertex> 581 {
+      10.018456459 -2.3662135601 7.02307510376
+      <UV>  {
+        0.678246 0.096181
+        <Tangent> { 0.430274 0.446470 -0.784557 }
+        <Binormal> { -0.902439 0.226508 -0.366024 }
+      }
+      <Normal> { -0.007172 -0.858119 -0.513352 }
+    }
+    <Vertex> 582 {
+      12.1925029755 -1.6492484808 7.00941324234
+      <UV>  {
+        0.677416 0.005374
+        <Tangent> { 0.493348 0.374998 -0.784847 }
+        <Binormal> { -0.509834 -0.605011 -0.609550 }
+      }
+      <Normal> { 0.678976 -0.719443 0.146184 }
+    }
+    <Vertex> 583 {
+      11.4768390656 -2.22029471397 7.66908788681
+      <UV>  {
+        0.646762 0.005374
+        <Tangent> { 0.879698 0.167993 -0.444871 }
+        <Binormal> { -0.092130 -0.857550 -0.506010 }
+      }
+      <Normal> { 0.465346 -0.486343 0.739494 }
+    }
+    <Vertex> 584 {
+      9.48023796082 -3.0459227562 7.64391422272
+      <UV>  {
+        0.646762 0.096181
+        <Tangent> { 0.780676 0.225292 -0.582913 }
+        <Binormal> { -0.515984 -0.164151 -0.754483 }
+      }
+      <Normal> { -0.023835 -0.973327 0.228065 }
+    }
+    <Vertex> 585 {
+      11.4768390656 -2.22029471397 7.66908788681
+      <UV>  {
+        0.646762 0.005374
+        <Tangent> { 0.879698 0.167993 -0.444871 }
+        <Binormal> { -0.092130 -0.857550 -0.506010 }
+      }
+      <Normal> { 0.465346 -0.486343 0.739494 }
+    }
+    <Vertex> 586 {
+      10.601275444 -1.95312011242 7.81411123276
+      <UV>  {
+        0.616107 0.005374
+        <Tangent> { 0.895342 -0.388490 -0.217806 }
+        <Binormal> { -0.412732 -0.904058 -0.084105 }
+      }
+      <Normal> { 0.099734 -0.137211 0.985473 }
+    }
+    <Vertex> 587 {
+      9.08419036865 -2.76134347916 7.80822992325
+      <UV>  {
+        0.616107 0.096181
+        <Tangent> { 0.769585 -0.552984 -0.319292 }
+        <Binormal> { -0.609477 -0.734020 -0.197761 }
+      }
+      <Normal> { -0.048128 -0.222388 0.973754 }
+    }
+    <Vertex> 588 {
+      9.48023796082 -3.0459227562 7.64391422272
+      <UV>  {
+        0.646762 0.096181
+        <Tangent> { 0.780676 0.225292 -0.582913 }
+        <Binormal> { -0.515984 -0.164151 -0.754483 }
+      }
+      <Normal> { -0.023835 -0.973327 0.228065 }
+    }
+    <Vertex> 589 {
+      9.08419036865 -2.76134347916 7.80822992325
+      <UV>  {
+        0.616107 0.096181
+        <Tangent> { 0.769585 -0.552984 -0.319292 }
+        <Binormal> { -0.609477 -0.734020 -0.197761 }
+      }
+      <Normal> { -0.048128 -0.222388 0.973754 }
+    }
+    <Vertex> 590 {
+      7.74112176895 -1.96695017815 7.75817108154
+      <UV>  {
+        0.616107 0.186987
+        <Tangent> { 0.157505 -0.901016 -0.404181 }
+        <Binormal> { -0.939324 -0.044072 -0.267799 }
+      }
+      <Normal> { -0.256508 -0.232887 0.938047 }
+    }
+    <Vertex> 591 {
+      7.46440553665 -2.22651791573 7.64391422272
+      <UV>  {
+        0.640724 0.218302
+        <Tangent> { 0.500895 0.017299 -0.865335 }
+        <Binormal> { -0.554839 0.589257 -0.309387 }
+      }
+      <Normal> { -0.754570 -0.643727 0.127171 }
+    }
+    <Vertex> 592 {
+      -0.979658186436 6.91442394257 7.63141918182
+      <UV>  {
+        0.621604 0.249644
+        <Tangent> { -0.644936 -0.706485 0.291438 }
+        <Binormal> { 0.513745 -0.666708 -0.479302 }
+      }
+      <Normal> { -0.693197 -0.016175 -0.720511 }
+    }
+    <Vertex> 593 {
+      -0.00298445741646 9.47447681427 7.65034532547
+      <UV>  {
+        0.625728 0.063266
+        <Tangent> { -0.485675 -0.826453 0.284771 }
+        <Binormal> { -0.758807 0.240252 -0.596889 }
+      }
+      <Normal> { -0.473800 0.422742 0.772485 }
+    }
+    <Vertex> 594 {
+      1.48394858837 10.8036794662 7.00472736359
+      <UV>  {
+        0.651998 0.051059
+        <Tangent> { -0.687954 -0.487859 0.537320 }
+        <Binormal> { -0.316511 -0.450133 -0.813939 }
+      }
+      <Normal> { -0.767052 0.639180 -0.055208 }
+    }
+    <Vertex> 595 {
+      0.638329088688 7.84926700592 7.0199508667
+      <UV>  {
+        0.650784 0.248908
+        <Tangent> { -0.734136 -0.422690 0.531392 }
+        <Binormal> { 0.318996 -0.905192 -0.279320 }
+      }
+      <Normal> { -0.619526 0.023774 -0.784570 }
+    }
+    <Vertex> 596 {
+      -0.979658186436 6.91442394257 7.63141918182
+      <UV>  {
+        0.621604 0.249644
+        <Tangent> { -0.644936 -0.706485 0.291438 }
+        <Binormal> { 0.513745 -0.666708 -0.479302 }
+      }
+      <Normal> { -0.693197 -0.016175 -0.720511 }
+    }
+    <Vertex> 597 {
+      0.638329088688 7.84926700592 7.0199508667
+      <UV>  {
+        0.650784 0.248908
+        <Tangent> { -0.734136 -0.422690 0.531392 }
+        <Binormal> { 0.318996 -0.905192 -0.279320 }
+      }
+      <Normal> { -0.619526 0.023774 -0.784570 }
+    }
+    <Vertex> 598 {
+      1.40212368965 4.94877958298 7.04224920273
+      <UV>  {
+        0.648816 0.420128
+        <Tangent> { -0.685542 -0.385352 0.617687 }
+        <Binormal> { 0.573442 -0.808221 0.132218 }
+      }
+      <Normal> { -0.434523 -0.437117 -0.787439 }
+    }
+    <Vertex> 599 {
+      -0.00814317632467 4.36059379578 7.64079093933
+      <UV>  {
+        0.616133 0.412314
+        <Tangent> { -0.825480 -0.430012 0.365613 }
+        <Binormal> { 0.502924 -0.733549 0.272745 }
+      }
+      <Normal> { -0.453658 -0.566729 -0.687704 }
+    }
+    <Vertex> 600 {
+      -0.979658186436 6.91442394257 7.63141918182
+      <UV>  {
+        0.621604 0.249644
+        <Tangent> { -0.644936 -0.706485 0.291438 }
+        <Binormal> { 0.513745 -0.666708 -0.479302 }
+      }
+      <Normal> { -0.693197 -0.016175 -0.720511 }
+    }
+    <Vertex> 601 {
+      -0.00814317632467 4.36059379578 7.64079093933
+      <UV>  {
+        0.616133 0.412314
+        <Tangent> { -0.825480 -0.430012 0.365613 }
+        <Binormal> { 0.502924 -0.733549 0.272745 }
+      }
+      <Normal> { -0.453658 -0.566729 -0.687704 }
+    }
+    <Vertex> 602 {
+      -0.00455888127908 4.59018945694 7.74984121323
+      <UV>  {
+        0.586841 0.418170
+        <Tangent> { -0.730976 -0.619929 0.285240 }
+        <Binormal> { -0.210858 0.312328 0.138441 }
+      }
+      <Normal> { -0.494552 -0.608814 0.620258 }
+    }
+    <Vertex> 603 {
+      -1.17037653923 6.18799448013 7.78948736191
+      <UV>  {
+        0.593150 0.246822
+        <Tangent> { -0.239886 -0.950339 0.198270 }
+        <Binormal> { -0.850161 0.134342 -0.384682 }
+      }
+      <Normal> { -0.418928 -0.056032 0.906278 }
+    }
+    <Vertex> 604 {
+      -0.979658186436 6.91442394257 7.63141918182
+      <UV>  {
+        0.621604 0.249644
+        <Tangent> { -0.644936 -0.706485 0.291438 }
+        <Binormal> { 0.513745 -0.666708 -0.479302 }
+      }
+      <Normal> { -0.693197 -0.016175 -0.720511 }
+    }
+    <Vertex> 605 {
+      -1.17037653923 6.18799448013 7.78948736191
+      <UV>  {
+        0.593150 0.246822
+        <Tangent> { -0.239886 -0.950339 0.198270 }
+        <Binormal> { -0.850161 0.134342 -0.384682 }
+      }
+      <Normal> { -0.418928 -0.056032 0.906278 }
+    }
+    <Vertex> 606 {
+      0.00690464675426 8.17260837555 7.79328536987
+      <UV>  {
+        0.599459 0.075473
+        <Tangent> { -0.063418 -0.985789 0.155556 }
+        <Binormal> { -0.983256 0.036851 -0.167326 }
+      }
+      <Normal> { -0.163121 0.102847 0.981201 }
+    }
+    <Vertex> 607 {
+      -0.00298445741646 9.47447681427 7.65034532547
+      <UV>  {
+        0.625728 0.063266
+        <Tangent> { -0.485675 -0.826453 0.284771 }
+        <Binormal> { -0.758807 0.240252 -0.596889 }
+      }
+      <Normal> { -0.473800 0.422742 0.772485 }
+    }
+    <Vertex> 608 {
+      2.92703747749 10.3444232941 7.73211193085
+      <UV>  {
+        0.488541 0.443801
+        <Tangent> { 0.997505 0.030166 0.063819 }
+        <Binormal> { 0.008546 -0.948847 0.314933 }
+      }
+      <Normal> { -0.089022 0.313028 0.945524 }
+    }
+    <Vertex> 609 {
+      6.60729598999 10.3630924225 7.81700277328
+      <UV>  {
+        0.404736 0.435099
+        <Tangent> { 0.995855 -0.081651 0.040072 }
+        <Binormal> { -0.089517 -0.957791 0.273040 }
+      }
+      <Normal> { -0.019379 0.275765 0.960997 }
+    }
+    <Vertex> 610 {
+      7.00420427322 12.0940675735 7.03973960876
+      <UV>  {
+        0.396783 0.390753
+        <Tangent> { 0.998114 -0.027274 0.054998 }
+        <Binormal> { -0.051195 -0.864172 0.500545 }
+      }
+      <Normal> { -0.036470 0.502487 0.863796 }
+    }
+    <Vertex> 611 {
+      3.87495136261 11.9322881699 7.01851797104
+      <UV>  {
+        0.468830 0.399177
+        <Tangent> { 0.989537 0.097897 0.105989 }
+        <Binormal> { 0.010486 -0.779549 0.622140 }
+      }
+      <Normal> { -0.214148 0.607532 0.764855 }
+    }
+    <Vertex> 612 {
+      2.92703747749 10.3444232941 7.73211193085
+      <UV>  {
+        0.488541 0.443801
+        <Tangent> { 0.997505 0.030166 0.063819 }
+        <Binormal> { 0.008546 -0.948847 0.314933 }
+      }
+      <Normal> { -0.089022 0.313028 0.945524 }
+    }
+    <Vertex> 613 {
+      3.87495136261 11.9322881699 7.01851797104
+      <UV>  {
+        0.468830 0.399177
+        <Tangent> { 0.989537 0.097897 0.105989 }
+        <Binormal> { 0.010486 -0.779549 0.622140 }
+      }
+      <Normal> { -0.214148 0.607532 0.764855 }
+    }
+    <Vertex> 614 {
+      1.48394858837 10.8036794662 7.00472736359
+      <UV>  {
+        0.540117 0.414902
+        <Tangent> { 0.918286 0.362542 0.159106 }
+        <Binormal> { -0.121713 -0.071346 0.865038 }
+      }
+      <Normal> { -0.767052 0.639180 -0.055208 }
+    }
+    <Vertex> 615 {
+      -0.00298445741646 9.47447681427 7.65034532547
+      <UV>  {
+        0.579436 0.453979
+        <Tangent> { 0.979808 0.188726 0.066016 }
+        <Binormal> { 0.117880 -0.788165 0.503625 }
+      }
+      <Normal> { -0.473800 0.422742 0.772485 }
+    }
+    <Vertex> 616 {
+      2.92703747749 10.3444232941 7.73211193085
+      <UV>  {
+        0.488541 0.443801
+        <Tangent> { 0.997505 0.030166 0.063819 }
+        <Binormal> { 0.008546 -0.948847 0.314933 }
+      }
+      <Normal> { -0.089022 0.313028 0.945524 }
+    }
+    <Vertex> 617 {
+      -0.00298445741646 9.47447681427 7.65034532547
+      <UV>  {
+        0.579436 0.453979
+        <Tangent> { 0.979808 0.188726 0.066016 }
+        <Binormal> { 0.117880 -0.788165 0.503625 }
+      }
+      <Normal> { -0.473800 0.422742 0.772485 }
+    }
+    <Vertex> 618 {
+      0.00690464675426 8.17260837555 7.79328536987
+      <UV>  {
+        0.618754 0.493056
+        <Tangent> { 0.997776 0.044202 0.049901 }
+        <Binormal> { 0.038239 -0.987158 0.109829 }
+      }
+      <Normal> { -0.163121 0.102847 0.981201 }
+    }
+    <Vertex> 619 {
+      2.14257335663 8.5312204361 7.91535282135
+      <UV>  {
+        0.502459 0.488556
+        <Tangent> { 0.997734 -0.048971 0.046131 }
+        <Binormal> { -0.051802 -0.996690 0.062335 }
+      }
+      <Normal> { -0.044038 0.064638 0.996918 }
+    }
+    <Vertex> 620 {
+      2.92703747749 10.3444232941 7.73211193085
+      <UV>  {
+        0.488541 0.443801
+        <Tangent> { 0.997505 0.030166 0.063819 }
+        <Binormal> { 0.008546 -0.948847 0.314933 }
+      }
+      <Normal> { -0.089022 0.313028 0.945524 }
+    }
+    <Vertex> 621 {
+      2.14257335663 8.5312204361 7.91535282135
+      <UV>  {
+        0.502459 0.488556
+        <Tangent> { 0.997734 -0.048971 0.046131 }
+        <Binormal> { -0.051802 -0.996690 0.062335 }
+      }
+      <Normal> { -0.044038 0.064638 0.996918 }
+    }
+    <Vertex> 622 {
+      6.24885749817 8.56078052521 8.04898262024
+      <UV>  {
+        0.408553 0.477740
+        <Tangent> { 0.993942 -0.105625 0.030382 }
+        <Binormal> { -0.107369 -0.992193 0.063137 }
+      }
+      <Normal> { -0.024293 0.066103 0.997497 }
+    }
+    <Vertex> 623 {
+      6.60729598999 10.3630924225 7.81700277328
+      <UV>  {
+        0.404736 0.435099
+        <Tangent> { 0.995855 -0.081651 0.040072 }
+        <Binormal> { -0.089517 -0.957791 0.273040 }
+      }
+      <Normal> { -0.019379 0.275765 0.960997 }
+    }
+    <Vertex> 624 {
+      2.90640306473 3.50931668282 7.64391422272
+      <UV>  {
+        0.607969 0.527570
+        <Tangent> { -0.971150 0.106981 0.213128 }
+        <Binormal> { 0.205789 -0.044947 0.960268 }
+      }
+      <Normal> { -0.290017 -0.956847 0.017365 }
+    }
+    <Vertex> 625 {
+      -0.00814317632467 4.36059379578 7.64079093933
+      <UV>  {
+        0.616133 0.412314
+        <Tangent> { -0.825480 -0.430012 0.365613 }
+        <Binormal> { 0.502924 -0.733549 0.272745 }
+      }
+      <Normal> { -0.453658 -0.566729 -0.687704 }
+    }
+    <Vertex> 626 {
+      1.40212368965 4.94877958298 7.04224920273
+      <UV>  {
+        0.648816 0.420128
+        <Tangent> { -0.685542 -0.385352 0.617687 }
+        <Binormal> { 0.573442 -0.808221 0.132218 }
+      }
+      <Normal> { -0.434523 -0.437117 -0.787439 }
+    }
+    <Vertex> 627 {
+      3.8393611908 3.98195004463 7.04968214035
+      <UV>  {
+        0.646575 0.533816
+        <Tangent> { -0.242577 -0.501811 0.830266 }
+        <Binormal> { 0.923817 -0.368151 0.047400 }
+      }
+      <Normal> { -0.259224 -0.731651 -0.630421 }
+    }
+    <Vertex> 628 {
+      2.90640306473 3.50931668282 7.64391422272
+      <UV>  {
+        0.607969 0.527570
+        <Tangent> { -0.971150 0.106981 0.213128 }
+        <Binormal> { 0.205789 -0.044947 0.960268 }
+      }
+      <Normal> { -0.290017 -0.956847 0.017365 }
+    }
+    <Vertex> 629 {
+      3.8393611908 3.98195004463 7.04968214035
+      <UV>  {
+        0.646575 0.533816
+        <Tangent> { -0.242577 -0.501811 0.830266 }
+        <Binormal> { 0.923817 -0.368151 0.047400 }
+      }
+      <Normal> { -0.259224 -0.731651 -0.630421 }
+    }
+    <Vertex> 630 {
+      6.29482984543 3.20148730278 7.04968214035
+      <UV>  {
+        0.649047 0.543539
+        <Tangent> { 0.955460 -0.293569 0.030215 }
+        <Binormal> { 0.194185 0.559209 -0.707242 }
+      }
+      <Normal> { -0.559954 -0.568163 -0.602985 }
+    }
+    <Vertex> 631 {
+      5.82094860077 2.68991112709 7.64391422272
+      <UV>  {
+        0.606874 0.542216
+        <Tangent> { -0.940908 0.338662 -0.000696 }
+        <Binormal> { 0.044681 0.126012 0.911887 }
+      }
+      <Normal> { -0.673940 -0.726585 0.133427 }
+    }
+    <Vertex> 632 {
+      2.90640306473 3.50931668282 7.64391422272
+      <UV>  {
+        0.607969 0.527570
+        <Tangent> { -0.971150 0.106981 0.213128 }
+        <Binormal> { 0.205789 -0.044947 0.960268 }
+      }
+      <Normal> { -0.290017 -0.956847 0.017365 }
+    }
+    <Vertex> 633 {
+      5.82094860077 2.68991112709 7.64391422272
+      <UV>  {
+        0.606874 0.542216
+        <Tangent> { -0.940908 0.338662 -0.000696 }
+        <Binormal> { 0.044681 0.126012 0.911887 }
+      }
+      <Normal> { -0.673940 -0.726585 0.133427 }
+    }
+    <Vertex> 634 {
+      6.21691513062 3.03441333771 7.85161542892
+      <UV>  {
+        0.548797 0.619410
+        <Tangent> { -0.929812 0.368033 -0.001085 }
+        <Binormal> { 0.358587 0.906563 0.209095 }
+      }
+      <Normal> { -0.148625 -0.166051 0.974822 }
+    }
+    <Vertex> 635 {
+      2.11678051949 3.87588429451 7.80510663986
+      <UV>  {
+        0.567819 0.518790
+        <Tangent> { -0.834946 0.481285 0.266891 }
+        <Binormal> { 0.538936 0.758066 0.318994 }
+      }
+      <Normal> { -0.103122 -0.322611 0.940886 }
+    }
+    <Vertex> 636 {
+      2.90640306473 3.50931668282 7.64391422272
+      <UV>  {
+        0.607969 0.527570
+        <Tangent> { -0.971150 0.106981 0.213128 }
+        <Binormal> { 0.205789 -0.044947 0.960268 }
+      }
+      <Normal> { -0.290017 -0.956847 0.017365 }
+    }
+    <Vertex> 637 {
+      2.11678051949 3.87588429451 7.80510663986
+      <UV>  {
+        0.567819 0.518790
+        <Tangent> { -0.834946 0.481285 0.266891 }
+        <Binormal> { 0.538936 0.758066 0.318994 }
+      }
+      <Normal> { -0.103122 -0.322611 0.940886 }
+    }
+    <Vertex> 638 {
+      -0.00455888127908 4.59018945694 7.74984121323
+      <UV>  {
+        0.586841 0.418170
+        <Tangent> { -0.730976 -0.619929 0.285240 }
+        <Binormal> { -0.210858 0.312328 0.138441 }
+      }
+      <Normal> { -0.494552 -0.608814 0.620258 }
+    }
+    <Vertex> 639 {
+      -0.00814317632467 4.36059379578 7.64079093933
+      <UV>  {
+        0.616133 0.412314
+        <Tangent> { -0.825480 -0.430012 0.365613 }
+        <Binormal> { 0.502924 -0.733549 0.272745 }
+      }
+      <Normal> { -0.453658 -0.566729 -0.687704 }
+    }
+    <Vertex> 640 {
+      6.79246234894 0.231696248055 7.64391422272
+      <UV>  {
+        0.622610 0.403053
+        <Tangent> { -0.034387 0.731987 -0.680450 }
+        <Binormal> { -0.085151 0.642017 0.694947 }
+      }
+      <Normal> { -0.934812 -0.310465 0.172277 }
+    }
+    <Vertex> 641 {
+      5.82094860077 2.68991112709 7.64391422272
+      <UV>  {
+        0.606874 0.542216
+        <Tangent> { -0.940908 0.338662 -0.000696 }
+        <Binormal> { 0.044681 0.126012 0.911887 }
+      }
+      <Normal> { -0.673940 -0.726585 0.133427 }
+    }
+    <Vertex> 642 {
+      6.29482984543 3.20148730278 7.04968214035
+      <UV>  {
+        0.649047 0.543539
+        <Tangent> { 0.955460 -0.293569 0.030215 }
+        <Binormal> { 0.194185 0.559209 -0.707242 }
+      }
+      <Normal> { -0.559954 -0.568163 -0.602985 }
+    }
+    <Vertex> 643 {
+      7.1133184433 0.860100746155 7.04968214035
+      <UV>  {
+        0.661221 0.402863
+        <Tangent> { 0.262640 0.507040 -0.820933 }
+        <Binormal> { -0.486165 0.800903 0.339131 }
+      }
+      <Normal> { -0.807245 -0.267190 -0.526231 }
+    }
+    <Vertex> 644 {
+      6.79246234894 0.231696248055 7.64391422272
+      <UV>  {
+        0.622610 0.403053
+        <Tangent> { -0.034387 0.731987 -0.680450 }
+        <Binormal> { -0.085151 0.642017 0.694947 }
+      }
+      <Normal> { -0.934812 -0.310465 0.172277 }
+    }
+    <Vertex> 645 {
+      7.1133184433 0.860100746155 7.04968214035
+      <UV>  {
+        0.661221 0.402863
+        <Tangent> { 0.262640 0.507040 -0.820933 }
+        <Binormal> { -0.486165 0.800903 0.339131 }
+      }
+      <Normal> { -0.807245 -0.267190 -0.526231 }
+    }
+    <Vertex> 646 {
+      7.83960199356 -1.50740194321 7.04303026199
+      <UV>  {
+        0.673990 0.218255
+        <Tangent> { 0.328042 0.511637 -0.794113 }
+        <Binormal> { -0.721731 0.677183 0.138159 }
+      }
+      <Normal> { -0.596240 -0.508774 -0.620960 }
+    }
+    <Vertex> 647 {
+      7.46440553665 -2.22651791573 7.64391422272
+      <UV>  {
+        0.640724 0.218302
+        <Tangent> { 0.500895 0.017299 -0.865335 }
+        <Binormal> { -0.554839 0.589257 -0.309387 }
+      }
+      <Normal> { -0.754570 -0.643727 0.127171 }
+    }
+    <Vertex> 648 {
+      6.79246234894 0.231696248055 7.64391422272
+      <UV>  {
+        0.622610 0.403053
+        <Tangent> { -0.034387 0.731987 -0.680450 }
+        <Binormal> { -0.085151 0.642017 0.694947 }
+      }
+      <Normal> { -0.934812 -0.310465 0.172277 }
+    }
+    <Vertex> 649 {
+      7.46440553665 -2.22651791573 7.64391422272
+      <UV>  {
+        0.640724 0.218302
+        <Tangent> { 0.500895 0.017299 -0.865335 }
+        <Binormal> { -0.554839 0.589257 -0.309387 }
+      }
+      <Normal> { -0.754570 -0.643727 0.127171 }
+    }
+    <Vertex> 650 {
+      7.74112176895 -1.96695017815 7.75817108154
+      <UV>  {
+        0.616107 0.186987
+        <Tangent> { 0.157505 -0.901016 -0.404181 }
+        <Binormal> { -0.939324 -0.044072 -0.267799 }
+      }
+      <Normal> { -0.256508 -0.232887 0.938047 }
+    }
+    <Vertex> 651 {
+      7.16232585907 -0.234738186002 7.80822992325
+      <UV>  {
+        0.582452 0.403198
+        <Tangent> { -0.598238 0.756107 -0.265355 }
+        <Binormal> { 0.700295 0.643752 0.255514 }
+      }
+      <Normal> { -0.260689 -0.097629 0.960448 }
+    }
+    <Vertex> 652 {
+      6.79246234894 0.231696248055 7.64391422272
+      <UV>  {
+        0.622610 0.403053
+        <Tangent> { -0.034387 0.731987 -0.680450 }
+        <Binormal> { -0.085151 0.642017 0.694947 }
+      }
+      <Normal> { -0.934812 -0.310465 0.172277 }
+    }
+    <Vertex> 653 {
+      7.16232585907 -0.234738186002 7.80822992325
+      <UV>  {
+        0.582452 0.403198
+        <Tangent> { -0.598238 0.756107 -0.265355 }
+        <Binormal> { 0.700295 0.643752 0.255514 }
+      }
+      <Normal> { -0.260689 -0.097629 0.960448 }
+    }
+    <Vertex> 654 {
+      6.21691513062 3.03441333771 7.85161542892
+      <UV>  {
+        0.548797 0.619410
+        <Tangent> { -0.929812 0.368033 -0.001085 }
+        <Binormal> { 0.358587 0.906563 0.209095 }
+      }
+      <Normal> { -0.148625 -0.166051 0.974822 }
+    }
+    <Vertex> 655 {
+      5.82094860077 2.68991112709 7.64391422272
+      <UV>  {
+        0.606874 0.542216
+        <Tangent> { -0.940908 0.338662 -0.000696 }
+        <Binormal> { 0.044681 0.126012 0.911887 }
+      }
+      <Normal> { -0.673940 -0.726585 0.133427 }
+    }
+    <Vertex> 656 {
+      1.86732900143 5.96244668961 7.91763544083
+      <UV>  {
+        0.501778 0.549957
+        <Tangent> { 0.985893 -0.165106 0.027490 }
+        <Binormal> { -0.164221 -0.985894 -0.031757 }
+      }
+      <Normal> { -0.037263 -0.025971 0.998962 }
+    }
+    <Vertex> 657 {
+      -1.17037653923 6.18799448013 7.78948736191
+      <UV>  {
+        0.611201 0.562355
+        <Tangent> { 0.983420 -0.176821 0.040242 }
+        <Binormal> { -0.157994 -0.908110 -0.129178 }
+      }
+      <Normal> { -0.418928 -0.056032 0.906278 }
+    }
+    <Vertex> 658 {
+      -0.00455888127908 4.59018945694 7.74984121323
+      <UV>  {
+        0.603647 0.631654
+        <Tangent> { 0.959426 -0.280581 0.027859 }
+        <Binormal> { -0.157071 -0.608870 -0.722874 }
+      }
+      <Normal> { -0.494552 -0.608814 0.620258 }
+    }
+    <Vertex> 659 {
+      2.11678051949 3.87588429451 7.80510663986
+      <UV>  {
+        0.493797 0.619681
+        <Tangent> { 0.940758 -0.338949 0.009416 }
+        <Binormal> { -0.315875 -0.886116 -0.338452 }
+      }
+      <Normal> { -0.103122 -0.322611 0.940886 }
+    }
+    <Vertex> 660 {
+      1.86732900143 5.96244668961 7.91763544083
+      <UV>  {
+        0.501778 0.549957
+        <Tangent> { 0.985893 -0.165106 0.027490 }
+        <Binormal> { -0.164221 -0.985894 -0.031757 }
+      }
+      <Normal> { -0.037263 -0.025971 0.998962 }
+    }
+    <Vertex> 661 {
+      2.11678051949 3.87588429451 7.80510663986
+      <UV>  {
+        0.493797 0.619681
+        <Tangent> { 0.940758 -0.338949 0.009416 }
+        <Binormal> { -0.315875 -0.886116 -0.338452 }
+      }
+      <Normal> { -0.103122 -0.322611 0.940886 }
+    }
+    <Vertex> 662 {
+      6.21691513062 3.03441333771 7.85161542892
+      <UV>  {
+        0.383948 0.607707
+        <Tangent> { 0.975677 -0.215989 0.037460 }
+        <Binormal> { -0.204330 -0.956679 -0.194114 }
+      }
+      <Normal> { -0.148625 -0.166051 0.974822 }
+    }
+    <Vertex> 663 {
+      6.0402879715 5.98733949661 8.02769947052
+      <UV>  {
+        0.405024 0.538048
+        <Tangent> { 0.991782 -0.125518 0.024769 }
+        <Binormal> { -0.124778 -0.991722 -0.029326 }
+      }
+      <Normal> { -0.031800 -0.025544 0.999146 }
+    }
+    <Vertex> 664 {
+      1.86732900143 5.96244668961 7.91763544083
+      <UV>  {
+        0.501778 0.549957
+        <Tangent> { 0.985893 -0.165106 0.027490 }
+        <Binormal> { -0.164221 -0.985894 -0.031757 }
+      }
+      <Normal> { -0.037263 -0.025971 0.998962 }
+    }
+    <Vertex> 665 {
+      6.0402879715 5.98733949661 8.02769947052
+      <UV>  {
+        0.405024 0.538048
+        <Tangent> { 0.991782 -0.125518 0.024769 }
+        <Binormal> { -0.124778 -0.991722 -0.029326 }
+      }
+      <Normal> { -0.031800 -0.025544 0.999146 }
+    }
+    <Vertex> 666 {
+      6.24885749817 8.56078052521 8.04898262024
+      <UV>  {
+        0.408553 0.477740
+        <Tangent> { 0.993942 -0.105625 0.030382 }
+        <Binormal> { -0.107369 -0.992193 0.063137 }
+      }
+      <Normal> { -0.024293 0.066103 0.997497 }
+    }
+    <Vertex> 667 {
+      2.14257335663 8.5312204361 7.91535282135
+      <UV>  {
+        0.502459 0.488556
+        <Tangent> { 0.997734 -0.048971 0.046131 }
+        <Binormal> { -0.051802 -0.996690 0.062335 }
+      }
+      <Normal> { -0.044038 0.064638 0.996918 }
+    }
+    <Vertex> 668 {
+      1.86732900143 5.96244668961 7.91763544083
+      <UV>  {
+        0.501778 0.549957
+        <Tangent> { 0.985893 -0.165106 0.027490 }
+        <Binormal> { -0.164221 -0.985894 -0.031757 }
+      }
+      <Normal> { -0.037263 -0.025971 0.998962 }
+    }
+    <Vertex> 669 {
+      2.14257335663 8.5312204361 7.91535282135
+      <UV>  {
+        0.502459 0.488556
+        <Tangent> { 0.997734 -0.048971 0.046131 }
+        <Binormal> { -0.051802 -0.996690 0.062335 }
+      }
+      <Normal> { -0.044038 0.064638 0.996918 }
+    }
+    <Vertex> 670 {
+      0.00690464675426 8.17260837555 7.79328536987
+      <UV>  {
+        0.618754 0.493056
+        <Tangent> { 0.997776 0.044202 0.049901 }
+        <Binormal> { 0.038239 -0.987158 0.109829 }
+      }
+      <Normal> { -0.163121 0.102847 0.981201 }
+    }
+    <Vertex> 671 {
+      -1.17037653923 6.18799448013 7.78948736191
+      <UV>  {
+        0.611201 0.562355
+        <Tangent> { 0.983420 -0.176821 0.040242 }
+        <Binormal> { -0.157994 -0.908110 -0.129178 }
+      }
+      <Normal> { -0.418928 -0.056032 0.906278 }
+    }
+    <Vertex> 672 {
+      8.90088939667 -0.373620629311 7.93013048172
+      <UV>  {
+        0.309143 0.670246
+        <Tangent> { 0.970842 -0.238813 0.020839 }
+        <Binormal> { -0.237514 -0.970015 -0.051033 }
+      }
+      <Normal> { -0.032807 -0.044496 0.998444 }
+    }
+    <Vertex> 673 {
+      8.9510345459 2.94248986244 8.03082370758
+      <UV>  {
+        0.325483 0.596170
+        <Tangent> { 0.975052 -0.219776 0.031164 }
+        <Binormal> { -0.218506 -0.974992 -0.039321 }
+      }
+      <Normal> { -0.029572 -0.033662 0.998993 }
+    }
+    <Vertex> 674 {
+      6.21691513062 3.03441333771 7.85161542892
+      <UV>  {
+        0.383948 0.607707
+        <Tangent> { 0.975677 -0.215989 0.037460 }
+        <Binormal> { -0.204330 -0.956679 -0.194114 }
+      }
+      <Normal> { -0.148625 -0.166051 0.974822 }
+    }
+    <Vertex> 675 {
+      7.16232585907 -0.234738186002 7.80822992325
+      <UV>  {
+        0.364406 0.684424
+        <Tangent> { 0.950917 -0.304094 0.057309 }
+        <Binormal> { -0.286471 -0.928246 -0.172111 }
+      }
+      <Normal> { -0.260689 -0.097629 0.960448 }
+    }
+    <Vertex> 676 {
+      8.90088939667 -0.373620629311 7.93013048172
+      <UV>  {
+        0.309143 0.670246
+        <Tangent> { 0.970842 -0.238813 0.020839 }
+        <Binormal> { -0.237514 -0.970015 -0.051033 }
+      }
+      <Normal> { -0.032807 -0.044496 0.998444 }
+    }
+    <Vertex> 677 {
+      7.16232585907 -0.234738186002 7.80822992325
+      <UV>  {
+        0.364406 0.684424
+        <Tangent> { 0.950917 -0.304094 0.057309 }
+        <Binormal> { -0.286471 -0.928246 -0.172111 }
+      }
+      <Normal> { -0.260689 -0.097629 0.960448 }
+    }
+    <Vertex> 678 {
+      7.74112176895 -1.96695017815 7.75817108154
+      <UV>  {
+        0.344864 0.761141
+        <Tangent> { 0.884982 -0.464022 0.038593 }
+        <Binormal> { -0.426287 -0.840055 -0.325126 }
+      }
+      <Normal> { -0.256508 -0.232887 0.938047 }
+    }
+    <Vertex> 679 {
+      9.08419036865 -2.76134347916 7.80822992325
+      <UV>  {
+        0.288696 0.746833
+        <Tangent> { 0.957848 -0.287257 0.003400 }
+        <Binormal> { -0.278961 -0.932872 -0.226839 }
+      }
+      <Normal> { -0.048128 -0.222388 0.973754 }
+    }
+    <Vertex> 680 {
+      8.90088939667 -0.373620629311 7.93013048172
+      <UV>  {
+        0.309143 0.670246
+        <Tangent> { 0.970842 -0.238813 0.020839 }
+        <Binormal> { -0.237514 -0.970015 -0.051033 }
+      }
+      <Normal> { -0.032807 -0.044496 0.998444 }
+    }
+    <Vertex> 681 {
+      9.08419036865 -2.76134347916 7.80822992325
+      <UV>  {
+        0.288696 0.746833
+        <Tangent> { 0.957848 -0.287257 0.003400 }
+        <Binormal> { -0.278961 -0.932872 -0.226839 }
+      }
+      <Normal> { -0.048128 -0.222388 0.973754 }
+    }
+    <Vertex> 682 {
+      10.601275444 -1.95312011242 7.81411123276
+      <UV>  {
+        0.232528 0.732526
+        <Tangent> { 0.925119 -0.361782 -0.115190 }
+        <Binormal> { -0.372331 -0.923168 -0.090855 }
+      }
+      <Normal> { 0.099734 -0.137211 0.985473 }
+    }
+    <Vertex> 683 {
+      10.9098949432 -0.203621029854 7.93409538269
+      <UV>  {
+        0.264018 0.655130
+        <Tangent> { 0.984910 -0.143579 -0.096629 }
+        <Binormal> { -0.147765 -0.988288 -0.037651 }
+      }
+      <Normal> { 0.092196 -0.051668 0.994385 }
+    }
+    <Vertex> 684 {
+      8.90088939667 -0.373620629311 7.93013048172
+      <UV>  {
+        0.309143 0.670246
+        <Tangent> { 0.970842 -0.238813 0.020839 }
+        <Binormal> { -0.237514 -0.970015 -0.051033 }
+      }
+      <Normal> { -0.032807 -0.044496 0.998444 }
+    }
+    <Vertex> 685 {
+      10.9098949432 -0.203621029854 7.93409538269
+      <UV>  {
+        0.264018 0.655130
+        <Tangent> { 0.984910 -0.143579 -0.096629 }
+        <Binormal> { -0.147765 -0.988288 -0.037651 }
+      }
+      <Normal> { 0.092196 -0.051668 0.994385 }
+    }
+    <Vertex> 686 {
+      10.9786643982 3.12172555923 8.05366897583
+      <UV>  {
+        0.279916 0.582036
+        <Tangent> { 0.968041 -0.224380 -0.112028 }
+        <Binormal> { -0.226583 -0.973940 -0.007222 }
+      }
+      <Normal> { 0.108829 -0.032685 0.993500 }
+    }
+    <Vertex> 687 {
+      8.9510345459 2.94248986244 8.03082370758
+      <UV>  {
+        0.325483 0.596170
+        <Tangent> { 0.975052 -0.219776 0.031164 }
+        <Binormal> { -0.218506 -0.974992 -0.039321 }
+      }
+      <Normal> { -0.029572 -0.033662 0.998993 }
+    }
+    <Vertex> 688 {
+      9.25532913208 6.01223278046 8.1315164566
+      <UV>  {
+        0.333607 0.527116
+        <Tangent> { 0.987120 -0.159663 0.010079 }
+        <Binormal> { -0.159513 -0.987091 -0.014276 }
+      }
+      <Normal> { -0.012055 -0.012513 0.999847 }
+    }
+    <Vertex> 689 {
+      9.61585140228 8.5747833252 8.11030864716
+      <UV>  {
+        0.335990 0.469401
+        <Tangent> { 0.993609 -0.112510 -0.009065 }
+        <Binormal> { -0.111545 -0.991006 0.073483 }
+      }
+      <Normal> { 0.010590 0.072756 0.997284 }
+    }
+    <Vertex> 690 {
+      6.24885749817 8.56078052521 8.04898262024
+      <UV>  {
+        0.408553 0.477740
+        <Tangent> { 0.993942 -0.105625 0.030382 }
+        <Binormal> { -0.107369 -0.992193 0.063137 }
+      }
+      <Normal> { -0.024293 0.066103 0.997497 }
+    }
+    <Vertex> 691 {
+      6.0402879715 5.98733949661 8.02769947052
+      <UV>  {
+        0.405024 0.538048
+        <Tangent> { 0.991782 -0.125518 0.024769 }
+        <Binormal> { -0.124778 -0.991722 -0.029326 }
+      }
+      <Normal> { -0.031800 -0.025544 0.999146 }
+    }
+    <Vertex> 692 {
+      9.25532913208 6.01223278046 8.1315164566
+      <UV>  {
+        0.333607 0.527116
+        <Tangent> { 0.987120 -0.159663 0.010079 }
+        <Binormal> { -0.159513 -0.987091 -0.014276 }
+      }
+      <Normal> { -0.012055 -0.012513 0.999847 }
+    }
+    <Vertex> 693 {
+      6.0402879715 5.98733949661 8.02769947052
+      <UV>  {
+        0.405024 0.538048
+        <Tangent> { 0.991782 -0.125518 0.024769 }
+        <Binormal> { -0.124778 -0.991722 -0.029326 }
+      }
+      <Normal> { -0.031800 -0.025544 0.999146 }
+    }
+    <Vertex> 694 {
+      6.21691513062 3.03441333771 7.85161542892
+      <UV>  {
+        0.383948 0.607707
+        <Tangent> { 0.975677 -0.215989 0.037460 }
+        <Binormal> { -0.204330 -0.956679 -0.194114 }
+      }
+      <Normal> { -0.148625 -0.166051 0.974822 }
+    }
+    <Vertex> 695 {
+      8.9510345459 2.94248986244 8.03082370758
+      <UV>  {
+        0.325483 0.596170
+        <Tangent> { 0.975052 -0.219776 0.031164 }
+        <Binormal> { -0.218506 -0.974992 -0.039321 }
+      }
+      <Normal> { -0.029572 -0.033662 0.998993 }
+    }
+    <Vertex> 696 {
+      9.25532913208 6.01223278046 8.1315164566
+      <UV>  {
+        0.333607 0.527116
+        <Tangent> { 0.987120 -0.159663 0.010079 }
+        <Binormal> { -0.159513 -0.987091 -0.014276 }
+      }
+      <Normal> { -0.012055 -0.012513 0.999847 }
+    }
+    <Vertex> 697 {
+      8.9510345459 2.94248986244 8.03082370758
+      <UV>  {
+        0.325483 0.596170
+        <Tangent> { 0.975052 -0.219776 0.031164 }
+        <Binormal> { -0.218506 -0.974992 -0.039321 }
+      }
+      <Normal> { -0.029572 -0.033662 0.998993 }
+    }
+    <Vertex> 698 {
+      10.9786643982 3.12172555923 8.05366897583
+      <UV>  {
+        0.279916 0.582036
+        <Tangent> { 0.968041 -0.224380 -0.112028 }
+        <Binormal> { -0.226583 -0.973940 -0.007222 }
+      }
+      <Normal> { 0.108829 -0.032685 0.993500 }
+    }
+    <Vertex> 699 {
+      11.4157619476 6.26267385483 8.11030864716
+      <UV>  {
+        0.287046 0.513913
+        <Tangent> { 0.977461 -0.171184 -0.123557 }
+        <Binormal> { -0.170061 -0.985201 0.019608 }
+      }
+      <Normal> { 0.118900 -0.000763 0.992889 }
+    }
+    <Vertex> 700 {
+      9.25532913208 6.01223278046 8.1315164566
+      <UV>  {
+        0.333607 0.527116
+        <Tangent> { 0.987120 -0.159663 0.010079 }
+        <Binormal> { -0.159513 -0.987091 -0.014276 }
+      }
+      <Normal> { -0.012055 -0.012513 0.999847 }
+    }
+    <Vertex> 701 {
+      11.4157619476 6.26267385483 8.11030864716
+      <UV>  {
+        0.287046 0.513913
+        <Tangent> { 0.977461 -0.171184 -0.123557 }
+        <Binormal> { -0.170061 -0.985201 0.019608 }
+      }
+      <Normal> { 0.118900 -0.000763 0.992889 }
+    }
+    <Vertex> 702 {
+      11.1713752747 8.23069190979 8.04906082153
+      <UV>  {
+        0.300409 0.472919
+        <Tangent> { 0.987320 -0.134459 -0.084383 }
+        <Binormal> { -0.128123 -0.988796 0.076487 }
+      }
+      <Normal> { 0.095340 0.064486 0.993347 }
+    }
+    <Vertex> 703 {
+      9.61585140228 8.5747833252 8.11030864716
+      <UV>  {
+        0.335990 0.469401
+        <Tangent> { 0.993609 -0.112510 -0.009065 }
+        <Binormal> { -0.111545 -0.991006 0.073483 }
+      }
+      <Normal> { 0.010590 0.072756 0.997284 }
+    }
+    <Vertex> 704 {
+      -16.9874076843 0.799743831158 0.709868133068
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.103547 -0.943817 0.313827 }
+        <Binormal> { -0.953927 -0.004938 0.299898 }
+      }
+      <Normal> { 0.281228 0.332896 0.900021 }
+    }
+    <Vertex> 705 {
+      -16.3443870544 -2.29496955872 1.98089694977
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.188747 -0.908395 0.373087 }
+        <Binormal> { -0.956484 -0.114342 0.205490 }
+      }
+      <Normal> { 0.176580 0.238868 0.954833 }
+    }
+    <Vertex> 706 {
+      -13.2726078033 -2.29160046577 1.3915374279
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.231518 -0.891396 0.389632 }
+        <Binormal> { -0.830800 0.018934 0.536976 }
+      }
+      <Normal> { 0.519608 0.318766 0.792688 }
+    }
+    <Vertex> 707 {
+      -14.2371377945 0.803112506866 -0.0428524985909
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.207231 -0.914015 0.348758 }
+        <Binormal> { -0.856629 0.002420 0.515348 }
+      }
+      <Normal> { 0.476791 0.383892 0.790735 }
+    }
+    <Vertex> 708 {
+      -16.9874076843 0.799743831158 0.709868133068
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.103547 -0.943817 0.313827 }
+        <Binormal> { -0.953927 -0.004938 0.299898 }
+      }
+      <Normal> { 0.281228 0.332896 0.900021 }
+    }
+    <Vertex> 709 {
+      -14.2371377945 0.803112506866 -0.0428524985909
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.207231 -0.914015 0.348758 }
+        <Binormal> { -0.856629 0.002420 0.515348 }
+      }
+      <Normal> { 0.476791 0.383892 0.790735 }
+    }
+    <Vertex> 710 {
+      -14.8801593781 4.79867649078 -1.31388151646
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.127253 -0.948861 0.288911 }
+        <Binormal> { -0.857548 0.031555 0.481349 }
+      }
+      <Normal> { 0.488571 0.139592 0.861263 }
+    }
+    <Vertex> 711 {
+      -17.4160881042 4.79530763626 -0.452253818512
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.102478 -0.955155 0.277810 }
+        <Binormal> { -0.923686 0.002679 0.349938 }
+      }
+      <Normal> { 0.350963 0.143590 0.925291 }
+    }
+    <Vertex> 712 {
+      -16.9874076843 0.799743831158 0.709868133068
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.103547 -0.943817 0.313827 }
+        <Binormal> { -0.953927 -0.004938 0.299898 }
+      }
+      <Normal> { 0.281228 0.332896 0.900021 }
+    }
+    <Vertex> 713 {
+      -17.4160881042 4.79530763626 -0.452253818512
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.102478 -0.955155 0.277810 }
+        <Binormal> { -0.923686 0.002679 0.349938 }
+      }
+      <Normal> { 0.350963 0.143590 0.925291 }
+    }
+    <Vertex> 714 {
+      -19.8630504608 4.7945227623 0.816746592522
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.065499 -0.963139 0.260907 }
+        <Binormal> { -0.730422 0.128699 0.658459 }
+      }
+      <Normal> { 0.676138 0.110599 0.728416 }
+    }
+    <Vertex> 715 {
+      -19.7558803558 0.910538911819 1.78913700581
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.088961 -0.963661 0.251882 }
+        <Binormal> { -0.775869 0.225474 0.588606 }
+      }
+      <Normal> { 0.626362 0.168554 0.761071 }
+    }
+    <Vertex> 716 {
+      -16.9874076843 0.799743831158 0.709868133068
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.103547 -0.943817 0.313827 }
+        <Binormal> { -0.953927 -0.004938 0.299898 }
+      }
+      <Normal> { 0.281228 0.332896 0.900021 }
+    }
+    <Vertex> 717 {
+      -19.7558803558 0.910538911819 1.78913700581
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.088961 -0.963661 0.251882 }
+        <Binormal> { -0.775869 0.225474 0.588606 }
+      }
+      <Normal> { 0.626362 0.168554 0.761071 }
+    }
+    <Vertex> 718 {
+      -20.510684967 -2.22094368935 2.65044903755
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.016983 -0.945919 0.323957 }
+        <Binormal> { -0.831136 0.123181 0.316103 }
+      }
+      <Normal> { 0.331431 -0.152837 0.930998 }
+    }
+    <Vertex> 719 {
+      -16.3443870544 -2.29496955872 1.98089694977
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.188747 -0.908395 0.373087 }
+        <Binormal> { -0.956484 -0.114342 0.205490 }
+      }
+      <Normal> { 0.176580 0.238868 0.954833 }
+    }
+    <Vertex> 720 {
+      -16.9874076843 10.5003252029 -0.549208521843
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.067799 -0.997635 -0.011316 }
+        <Binormal> { -0.953439 0.061447 0.295184 }
+      }
+      <Normal> { 0.293802 -0.030641 0.955351 }
+    }
+    <Vertex> 721 {
+      -17.4160881042 4.79530763626 -0.452253818512
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.074919 -0.997046 0.016944 }
+        <Binormal> { -0.924990 0.075269 0.339168 }
+      }
+      <Normal> { 0.350963 0.143590 0.925291 }
+    }
+    <Vertex> 722 {
+      -14.8801593781 4.79867649078 -1.31388151646
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.093512 -0.995591 0.007417 }
+        <Binormal> { -0.858500 0.084162 0.473363 }
+      }
+      <Normal> { 0.488571 0.139592 0.861263 }
+    }
+    <Vertex> 723 {
+      -14.2371377945 10.5036935806 -1.30192875862
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.139615 -0.989245 -0.043601 }
+        <Binormal> { -0.855292 0.098311 0.508198 }
+      }
+      <Normal> { 0.501602 -0.085879 0.860805 }
+    }
+    <Vertex> 724 {
+      -16.9874076843 10.5003252029 -0.549208521843
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.067799 -0.997635 -0.011316 }
+        <Binormal> { -0.953439 0.061447 0.295184 }
+      }
+      <Normal> { 0.293802 -0.030641 0.955351 }
+    }
+    <Vertex> 725 {
+      -14.2371377945 10.5036935806 -1.30192875862
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.139615 -0.989245 -0.043601 }
+        <Binormal> { -0.855292 0.098311 0.508198 }
+      }
+      <Normal> { 0.501602 -0.085879 0.860805 }
+    }
+    <Vertex> 726 {
+      -13.2726049423 16.1890468597 -0.81184643507
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.139632 -0.987659 -0.070948 }
+        <Binormal> { -0.836729 0.079455 0.540680 }
+      }
+      <Normal> { 0.533219 -0.100558 0.839961 }
+    }
+    <Vertex> 727 {
+      -16.3443870544 16.1856765747 -0.222486764193
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.112202 -0.992049 -0.057010 }
+        <Binormal> { -0.977317 0.100185 0.180116 }
+      }
+      <Normal> { 0.178411 -0.027833 0.983551 }
+    }
+    <Vertex> 728 {
+      -16.9874076843 10.5003252029 -0.549208521843
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.067799 -0.997635 -0.011316 }
+        <Binormal> { -0.953439 0.061447 0.295184 }
+      }
+      <Normal> { 0.293802 -0.030641 0.955351 }
+    }
+    <Vertex> 729 {
+      -16.3443870544 16.1856765747 -0.222486764193
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.112202 -0.992049 -0.057010 }
+        <Binormal> { -0.977317 0.100185 0.180116 }
+      }
+      <Normal> { 0.178411 -0.027833 0.983551 }
+    }
+    <Vertex> 730 {
+      -20.5106811523 16.2876834869 0.37312862277
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.009608 -0.999887 -0.011572 }
+        <Binormal> { -0.908155 -0.012629 0.337212 }
+      }
+      <Normal> { 0.334941 0.240303 0.911039 }
+    }
+    <Vertex> 731 {
+      -19.7558803558 10.340221405 0.565221428871
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.056218 -0.997676 0.038509 }
+        <Binormal> { -0.777256 -0.019542 0.628405 }
+      }
+      <Normal> { 0.627522 0.041658 0.777459 }
+    }
+    <Vertex> 732 {
+      -16.9874076843 10.5003252029 -0.549208521843
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.067799 -0.997635 -0.011316 }
+        <Binormal> { -0.953439 0.061447 0.295184 }
+      }
+      <Normal> { 0.293802 -0.030641 0.955351 }
+    }
+    <Vertex> 733 {
+      -19.7558803558 10.340221405 0.565221428871
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.056218 -0.997676 0.038509 }
+        <Binormal> { -0.777256 -0.019542 0.628405 }
+      }
+      <Normal> { 0.627522 0.041658 0.777459 }
+    }
+    <Vertex> 734 {
+      -19.8630504608 4.7945227623 0.816746592522
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.047551 -0.998390 0.030924 }
+        <Binormal> { -0.730663 0.055546 0.669790 }
+      }
+      <Normal> { 0.676138 0.110599 0.728416 }
+    }
+    <Vertex> 735 {
+      -17.4160881042 4.79530763626 -0.452253818512
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.074919 -0.997046 0.016944 }
+        <Binormal> { -0.924990 0.075269 0.339168 }
+      }
+      <Normal> { 0.350963 0.143590 0.925291 }
+    }
+    <Vertex> 736 {
+      -16.1300487518 -5.29743289948 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.039314 -0.998221 0.044824 }
+        <Binormal> { -0.993635 -0.034324 0.107099 }
+      }
+      <Normal> { 0.105350 0.049257 0.993194 }
+    }
+    <Vertex> 737 {
+      -16.1300487518 -8.27541637421 2.40457344055
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.996612 -0.000000 0.082186 }
+      }
+      <Normal> { 0.082186 0.000732 0.996612 }
+    }
+    <Vertex> 738 {
+      -12.9233322144 -8.2720489502 1.86966729164
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.004661 -0.999989 -0.000000 }
+        <Binormal> { -0.840562 -0.003918 0.541340 }
+      }
+      <Normal> { 0.541246 0.021393 0.840571 }
+    }
+    <Vertex> 739 {
+      -12.9510955811 -5.29406452179 1.86966776848
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.058119 -0.995134 0.079560 }
+        <Binormal> { -0.829442 -0.003790 0.558511 }
+      }
+      <Normal> { 0.555864 0.092074 0.826136 }
+    }
+    <Vertex> 740 {
+      -16.1300487518 -5.29743289948 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.039314 -0.998221 0.044824 }
+        <Binormal> { -0.993635 -0.034324 0.107099 }
+      }
+      <Normal> { 0.105350 0.049257 0.993194 }
+    }
+    <Vertex> 741 {
+      -12.9510955811 -5.29406452179 1.86966776848
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.058119 -0.995134 0.079560 }
+        <Binormal> { -0.829442 -0.003790 0.558511 }
+      }
+      <Normal> { 0.555864 0.092074 0.826136 }
+    }
+    <Vertex> 742 {
+      -13.2726078033 -2.29160046577 1.3915374279
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.087904 -0.985082 0.147938 }
+        <Binormal> { -0.828020 0.007189 0.539878 }
+      }
+      <Normal> { 0.519608 0.318766 0.792688 }
+    }
+    <Vertex> 743 {
+      -16.3443870544 -2.29496955872 1.98089694977
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.070511 -0.987726 0.139378 }
+        <Binormal> { -0.976406 -0.042715 0.191256 }
+      }
+      <Normal> { 0.176580 0.238868 0.954833 }
+    }
+    <Vertex> 744 {
+      -16.1300487518 -5.29743289948 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.039314 -0.998221 0.044824 }
+        <Binormal> { -0.993635 -0.034324 0.107099 }
+      }
+      <Normal> { 0.105350 0.049257 0.993194 }
+    }
+    <Vertex> 745 {
+      -16.3443870544 -2.29496955872 1.98089694977
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.070511 -0.987726 0.139378 }
+        <Binormal> { -0.976406 -0.042715 0.191256 }
+      }
+      <Normal> { 0.176580 0.238868 0.954833 }
+    }
+    <Vertex> 746 {
+      -20.510684967 -2.22094368935 2.65044903755
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.062420 -0.997630 0.028957 }
+        <Binormal> { -0.924365 -0.048515 0.321105 }
+      }
+      <Normal> { 0.331431 -0.152837 0.930998 }
+    }
+    <Vertex> 747 {
+      -20.3417568207 -5.34405708313 2.40457344055
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.027655 -0.998807 -0.040252 }
+        <Binormal> { -0.998864 -0.029153 0.037123 }
+      }
+      <Normal> { 0.038087 -0.033235 0.998718 }
+    }
+    <Vertex> 748 {
+      -16.1300487518 -5.29743289948 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.039314 -0.998221 0.044824 }
+        <Binormal> { -0.993635 -0.034324 0.107099 }
+      }
+      <Normal> { 0.105350 0.049257 0.993194 }
+    }
+    <Vertex> 749 {
+      -20.3417568207 -5.34405708313 2.40457344055
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.027655 -0.998807 -0.040252 }
+        <Binormal> { -0.998864 -0.029153 0.037123 }
+      }
+      <Normal> { 0.038087 -0.033235 0.998718 }
+    }
+    <Vertex> 750 {
+      -20.3417549133 -8.32204055786 2.40457344055
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -1.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 751 {
+      -16.1300487518 -8.27541637421 2.40457344055
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.996612 -0.000000 0.082186 }
+      }
+      <Normal> { 0.082186 0.000732 0.996612 }
+    }
+    <Vertex> 752 {
+      -16.1300449371 20.1222476959 -0.113579511642
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.032989 -0.999449 0.003788 }
+        <Binormal> { -0.994019 0.033203 0.103742 }
+      }
+      <Normal> { 0.103793 -0.000183 0.994568 }
+    }
+    <Vertex> 753 {
+      -16.3443870544 16.1856765747 -0.222486764193
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.054348 -0.998140 -0.027614 }
+        <Binormal> { -0.982490 0.048527 0.179592 }
+      }
+      <Normal> { 0.178411 -0.027833 0.983551 }
+    }
+    <Vertex> 754 {
+      -13.2726049423 16.1890468597 -0.81184643507
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.067863 -0.997099 -0.034482 }
+        <Binormal> { -0.840991 0.038616 0.538497 }
+      }
+      <Normal> { 0.533219 -0.100558 0.839961 }
+    }
+    <Vertex> 755 {
+      -12.9510936737 20.125617981 -0.648485422134
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.045878 -0.998675 -0.023311 }
+        <Binormal> { -0.828410 0.024999 0.559371 }
+      }
+      <Normal> { 0.558580 -0.033357 0.828730 }
+    }
+    <Vertex> 756 {
+      -16.1300449371 20.1222476959 -0.113579511642
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.032989 -0.999449 0.003788 }
+        <Binormal> { -0.994019 0.033203 0.103742 }
+      }
+      <Normal> { 0.103793 -0.000183 0.994568 }
+    }
+    <Vertex> 757 {
+      -12.9510936737 20.125617981 -0.648485422134
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.045878 -0.998675 -0.023311 }
+        <Binormal> { -0.828410 0.024999 0.559371 }
+      }
+      <Normal> { 0.558580 -0.033357 0.828730 }
+    }
+    <Vertex> 758 {
+      -12.9510936737 23.1877994537 -0.648485422134
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.825526 -0.000000 0.564318 }
+      }
+      <Normal> { 0.564318 0.000000 0.825526 }
+    }
+    <Vertex> 759 {
+      -16.1300449371 23.184431076 -0.113579511642
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.996521 -0.000000 0.083254 }
+      }
+      <Normal> { 0.083254 0.000000 0.996521 }
+    }
+    <Vertex> 760 {
+      -16.1300449371 20.1222476959 -0.113579511642
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.032989 -0.999449 0.003788 }
+        <Binormal> { -0.994019 0.033203 0.103742 }
+      }
+      <Normal> { 0.103793 -0.000183 0.994568 }
+    }
+    <Vertex> 761 {
+      -16.1300449371 23.184431076 -0.113579511642
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.996521 -0.000000 0.083254 }
+      }
+      <Normal> { 0.083254 0.000000 0.996521 }
+    }
+    <Vertex> 762 {
+      -20.3417510986 23.1378059387 -0.113579511642
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -1.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 763 {
+      -20.3417510986 20.0756244659 -0.113579511642
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.024591 -0.997184 0.070851 }
+        <Binormal> { -0.999044 0.026946 0.032493 }
+      }
+      <Normal> { 0.034059 0.059755 0.997620 }
+    }
+    <Vertex> 764 {
+      -16.1300449371 20.1222476959 -0.113579511642
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.032989 -0.999449 0.003788 }
+        <Binormal> { -0.994019 0.033203 0.103742 }
+      }
+      <Normal> { 0.103793 -0.000183 0.994568 }
+    }
+    <Vertex> 765 {
+      -20.3417510986 20.0756244659 -0.113579511642
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.024591 -0.997184 0.070851 }
+        <Binormal> { -0.999044 0.026946 0.032493 }
+      }
+      <Normal> { 0.034059 0.059755 0.997620 }
+    }
+    <Vertex> 766 {
+      -20.5106811523 16.2876834869 0.37312862277
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.049498 -0.997582 0.048791 }
+        <Binormal> { -0.920560 0.061436 0.322236 }
+      }
+      <Normal> { 0.334941 0.240303 0.911039 }
+    }
+    <Vertex> 767 {
+      -16.3443870544 16.1856765747 -0.222486764193
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.054348 -0.998140 -0.027614 }
+        <Binormal> { -0.982490 0.048527 0.179592 }
+      }
+      <Normal> { 0.178411 -0.027833 0.983551 }
+    }
+    <Vertex> 768 {
+      -16.1300487518 -11.2966918945 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000067 -0.999998 0.001848 }
+        <Binormal> { -0.996859 0.000080 0.079073 }
+      }
+      <Normal> { 0.079073 0.002167 0.996857 }
+    }
+    <Vertex> 769 {
+      -16.1690883636 -14.3227319717 2.40457344055
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.012900 -0.999917 0.000000 }
+        <Binormal> { -0.997414 0.012868 0.070023 }
+      }
+      <Normal> { 0.070101 0.005585 0.997497 }
+    }
+    <Vertex> 770 {
+      -12.8338851929 -14.2589521408 1.91424322128
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.819838 -0.483251 -0.307139 }
+        <Binormal> { -0.424440 -0.871173 0.237754 }
+      }
+      <Normal> { 0.436537 0.032685 0.899075 }
+    }
+    <Vertex> 771 {
+      -12.8400325775 -11.2933235168 1.86966776848
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.014938 -0.999861 0.007445 }
+        <Binormal> { -0.865837 -0.009214 0.499875 }
+      }
+      <Normal> { 0.499466 0.032075 0.865719 }
+    }
+    <Vertex> 772 {
+      -16.1300487518 -11.2966918945 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000067 -0.999998 0.001848 }
+        <Binormal> { -0.996859 0.000080 0.079073 }
+      }
+      <Normal> { 0.079073 0.002167 0.996857 }
+    }
+    <Vertex> 773 {
+      -12.8400325775 -11.2933235168 1.86966776848
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.014938 -0.999861 0.007445 }
+        <Binormal> { -0.865837 -0.009214 0.499875 }
+      }
+      <Normal> { 0.499466 0.032075 0.865719 }
+    }
+    <Vertex> 774 {
+      -12.9233322144 -8.2720489502 1.86966729164
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.013784 -0.999905 0.000000 }
+        <Binormal> { -0.840491 -0.011587 0.541489 }
+      }
+      <Normal> { 0.541246 0.021393 0.840571 }
+    }
+    <Vertex> 775 {
+      -16.1300487518 -8.27541637421 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.996612 -0.000000 0.082186 }
+      }
+      <Normal> { 0.082186 0.000732 0.996612 }
+    }
+    <Vertex> 776 {
+      -16.1300487518 -11.2966918945 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000067 -0.999998 0.001848 }
+        <Binormal> { -0.996859 0.000080 0.079073 }
+      }
+      <Normal> { 0.079073 0.002167 0.996857 }
+    }
+    <Vertex> 777 {
+      -16.1300487518 -8.27541637421 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.996612 -0.000000 0.082186 }
+      }
+      <Normal> { 0.082186 0.000732 0.996612 }
+    }
+    <Vertex> 778 {
+      -20.3417549133 -8.32204055786 2.40457344055
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.000000 -1.000000 0.000000 }
+        <Binormal> { -1.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 779 {
+      -20.3417568207 -11.3433151245 2.40457344055
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.001615 -0.999999 0.000000 }
+        <Binormal> { -0.999999 0.001615 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 780 {
+      -16.1300487518 -11.2966918945 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000067 -0.999998 0.001848 }
+        <Binormal> { -0.996859 0.000080 0.079073 }
+      }
+      <Normal> { 0.079073 0.002167 0.996857 }
+    }
+    <Vertex> 781 {
+      -20.3417568207 -11.3433151245 2.40457344055
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.001615 -0.999999 0.000000 }
+        <Binormal> { -0.999999 0.001615 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 782 {
+      -20.3515148163 -14.3635282516 2.40457344055
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.008070 -0.999967 0.000000 }
+        <Binormal> { -0.999967 0.008070 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 783 {
+      -16.1690883636 -14.3227319717 2.40457344055
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.012900 -0.999917 0.000000 }
+        <Binormal> { -0.997414 0.012868 0.070023 }
+      }
+      <Normal> { 0.070101 0.005585 0.997497 }
+    }
+    <Vertex> 784 {
+      -24.3980464935 -5.35959863663 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.015271 -0.997285 -0.072036 }
+        <Binormal> { -0.997251 -0.020381 0.070752 }
+      }
+      <Normal> { 0.072115 -0.076418 0.994446 }
+    }
+    <Vertex> 785 {
+      -24.3980464935 -8.3375825882 2.40457344055
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 -0.000000 }
+        <Binormal> { -0.997864 -0.000000 0.054903 }
+      }
+      <Normal> { 0.054903 -0.035218 0.997864 }
+    }
+    <Vertex> 786 {
+      -20.3417549133 -8.32204055786 2.40457344055
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -1.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 787 {
+      -20.3417568207 -5.34405708313 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.027655 -0.998807 -0.040252 }
+        <Binormal> { -0.998864 -0.029153 0.037123 }
+      }
+      <Normal> { 0.038087 -0.033235 0.998718 }
+    }
+    <Vertex> 788 {
+      -24.3980464935 -5.35959863663 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.015271 -0.997285 -0.072036 }
+        <Binormal> { -0.997251 -0.020381 0.070752 }
+      }
+      <Normal> { 0.072115 -0.076418 0.994446 }
+    }
+    <Vertex> 789 {
+      -20.3417568207 -5.34405708313 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.027655 -0.998807 -0.040252 }
+        <Binormal> { -0.998864 -0.029153 0.037123 }
+      }
+      <Normal> { 0.038087 -0.033235 0.998718 }
+    }
+    <Vertex> 790 {
+      -20.510684967 -2.22094368935 2.65044903755
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.674962 -0.737510 -0.022482 }
+        <Binormal> { -0.690056 0.620937 0.347593 }
+      }
+      <Normal> { 0.331431 -0.152837 0.930998 }
+    }
+    <Vertex> 791 {
+      -24.4813747406 -2.89721417427 3.1219599247
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.032473 -0.959578 -0.279562 }
+        <Binormal> { -0.959905 -0.045578 0.044945 }
+      }
+      <Normal> { 0.064730 -0.528703 0.846309 }
+    }
+    <Vertex> 792 {
+      -24.3980464935 -5.35959863663 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.015271 -0.997285 -0.072036 }
+        <Binormal> { -0.997251 -0.020381 0.070752 }
+      }
+      <Normal> { 0.072115 -0.076418 0.994446 }
+    }
+    <Vertex> 793 {
+      -24.4813747406 -2.89721417427 3.1219599247
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.032473 -0.959578 -0.279562 }
+        <Binormal> { -0.959905 -0.045578 0.044945 }
+      }
+      <Normal> { 0.064730 -0.528703 0.846309 }
+    }
+    <Vertex> 794 {
+      -28.3173828125 -2.16770863533 2.83676719666
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.192174 -0.978146 -0.079366 }
+        <Binormal> { -0.939053 -0.187390 0.035693 }
+      }
+      <Normal> { -0.005158 0.211982 0.977233 }
+    }
+    <Vertex> 795 {
+      -27.3542079926 -5.03190994263 3.1219599247
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.002534 -0.999986 0.004555 }
+        <Binormal> { -0.789947 0.000762 0.606671 }
+      }
+      <Normal> { 0.606891 -0.083560 0.790338 }
+    }
+    <Vertex> 796 {
+      -24.3980464935 -5.35959863663 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.015271 -0.997285 -0.072036 }
+        <Binormal> { -0.997251 -0.020381 0.070752 }
+      }
+      <Normal> { 0.072115 -0.076418 0.994446 }
+    }
+    <Vertex> 797 {
+      -27.3542079926 -5.03190994263 3.1219599247
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.002534 -0.999986 0.004555 }
+        <Binormal> { -0.789947 0.000762 0.606671 }
+      }
+      <Normal> { 0.606891 -0.083560 0.790338 }
+    }
+    <Vertex> 798 {
+      -28.3024024963 -8.08044242859 2.86370134354
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.155286 -0.986964 -0.042295 }
+        <Binormal> { -0.913082 0.129994 0.318934 }
+      }
+      <Normal> { 0.275399 -0.303476 0.912137 }
+    }
+    <Vertex> 799 {
+      -24.3980464935 -8.3375825882 2.40457344055
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 -0.000000 }
+        <Binormal> { -0.997864 -0.000000 0.054903 }
+      }
+      <Normal> { 0.054903 -0.035218 0.997864 }
+    }
+    <Vertex> 800 {
+      -24.3980445862 20.0600833893 -0.113579511642
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.014239 -0.994674 0.102081 }
+        <Binormal> { -0.999883 0.014132 -0.001768 }
+      }
+      <Normal> { -0.000366 0.098605 0.995117 }
+    }
+    <Vertex> 801 {
+      -24.4813747406 17.4667816162 0.674128890038
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.030731 -0.956382 0.290498 }
+        <Binormal> { -0.971875 0.025176 -0.019927 }
+      }
+      <Normal> { -0.004578 0.505966 0.862514 }
+    }
+    <Vertex> 802 {
+      -20.5106811523 16.2876834869 0.37312862277
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.574698 -0.813638 0.087834 }
+        <Binormal> { -0.762362 -0.494153 0.410622 }
+      }
+      <Normal> { 0.334941 0.240303 0.911039 }
+    }
+    <Vertex> 803 {
+      -20.3417510986 20.0756244659 -0.113579511642
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.024591 -0.997184 0.070851 }
+        <Binormal> { -0.999044 0.026946 0.032493 }
+      }
+      <Normal> { 0.034059 0.059755 0.997620 }
+    }
+    <Vertex> 804 {
+      -24.3980445862 20.0600833893 -0.113579511642
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.014239 -0.994674 0.102081 }
+        <Binormal> { -0.999883 0.014132 -0.001768 }
+      }
+      <Normal> { -0.000366 0.098605 0.995117 }
+    }
+    <Vertex> 805 {
+      -20.3417510986 20.0756244659 -0.113579511642
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.024591 -0.997184 0.070851 }
+        <Binormal> { -0.999044 0.026946 0.032493 }
+      }
+      <Normal> { 0.034059 0.059755 0.997620 }
+    }
+    <Vertex> 806 {
+      -20.3417510986 23.1378059387 -0.113579511642
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -1.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 807 {
+      -24.3980445862 23.1222648621 -0.113579511642
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -1.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 808 {
+      -24.3980445862 20.0600833893 -0.113579511642
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.014239 -0.994674 0.102081 }
+        <Binormal> { -0.999883 0.014132 -0.001768 }
+      }
+      <Normal> { -0.000366 0.098605 0.995117 }
+    }
+    <Vertex> 809 {
+      -24.3980445862 23.1222648621 -0.113579511642
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -1.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 810 {
+      -28.3144645691 23.1222648621 -0.113579511642
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -1.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 811 {
+      -28.3144645691 20.0600833893 -0.113579511642
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.003261 -0.997293 0.073456 }
+        <Binormal> { -0.999397 0.000786 -0.033696 }
+      }
+      <Normal> { -0.033570 0.066347 0.997223 }
+    }
+    <Vertex> 812 {
+      -24.3980445862 20.0600833893 -0.113579511642
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.014239 -0.994674 0.102081 }
+        <Binormal> { -0.999883 0.014132 -0.001768 }
+      }
+      <Normal> { -0.000366 0.098605 0.995117 }
+    }
+    <Vertex> 813 {
+      -28.3144645691 20.0600833893 -0.113579511642
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.003261 -0.997293 0.073456 }
+        <Binormal> { -0.999397 0.000786 -0.033696 }
+      }
+      <Normal> { -0.033570 0.066347 0.997223 }
+    }
+    <Vertex> 814 {
+      -28.3368453979 16.2777366638 0.390553623438
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.016248 -0.979954 0.198559 }
+        <Binormal> { -0.932333 -0.054779 -0.346643 }
+      }
+      <Normal> { -0.349162 0.275735 0.895535 }
+    }
+    <Vertex> 815 {
+      -24.4813747406 17.4667816162 0.674128890038
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.030731 -0.956382 0.290498 }
+        <Binormal> { -0.971875 0.025176 -0.019927 }
+      }
+      <Normal> { -0.004578 0.505966 0.862514 }
+    }
+    <Vertex> 816 {
+      -24.3980464935 -11.3588571548 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.000894 -0.999823 -0.018800 }
+        <Binormal> { -0.999890 0.000630 0.014022 }
+      }
+      <Normal> { 0.014008 -0.018159 0.999725 }
+    }
+    <Vertex> 817 {
+      -24.3980464935 -14.3771276474 2.40457344055
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -1.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 818 {
+      -20.3515148163 -14.3635282516 2.40457344055
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.801116 -0.598509 0.000000 }
+        <Binormal> { -0.598509 -0.801116 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 819 {
+      -20.3417568207 -11.3433151245 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.001615 -0.999999 0.000000 }
+        <Binormal> { -0.999999 0.001615 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 820 {
+      -24.3980464935 -11.3588571548 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.000894 -0.999823 -0.018800 }
+        <Binormal> { -0.999890 0.000630 0.014022 }
+      }
+      <Normal> { 0.014008 -0.018159 0.999725 }
+    }
+    <Vertex> 821 {
+      -20.3417568207 -11.3433151245 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.001615 -0.999999 0.000000 }
+        <Binormal> { -0.999999 0.001615 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 822 {
+      -20.3417549133 -8.32204055786 2.40457344055
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.000000 -1.000000 0.000000 }
+        <Binormal> { -1.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 823 {
+      -24.3980464935 -8.3375825882 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.997864 -0.000000 0.054903 }
+      }
+      <Normal> { 0.054903 -0.035218 0.997864 }
+    }
+    <Vertex> 824 {
+      -24.3980464935 -11.3588571548 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.000894 -0.999823 -0.018800 }
+        <Binormal> { -0.999890 0.000630 0.014022 }
+      }
+      <Normal> { 0.014008 -0.018159 0.999725 }
+    }
+    <Vertex> 825 {
+      -24.3980464935 -8.3375825882 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.997864 -0.000000 0.054903 }
+      }
+      <Normal> { 0.054903 -0.035218 0.997864 }
+    }
+    <Vertex> 826 {
+      -28.3024024963 -8.08044242859 2.86370134354
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.001910 -0.997353 -0.072688 }
+        <Binormal> { -0.931782 -0.018276 0.275250 }
+      }
+      <Normal> { 0.275399 -0.303476 0.912137 }
+    }
+    <Vertex> 827 {
+      -28.3144645691 -11.3588571548 2.40457344055
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.001911 -0.997350 -0.072723 }
+        <Binormal> { -0.999633 -0.000011 0.026426 }
+      }
+      <Normal> { 0.026368 -0.066958 0.997406 }
+    }
+    <Vertex> 828 {
+      -24.3980464935 -11.3588571548 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.000894 -0.999823 -0.018800 }
+        <Binormal> { -0.999890 0.000630 0.014022 }
+      }
+      <Normal> { 0.014008 -0.018159 0.999725 }
+    }
+    <Vertex> 829 {
+      -28.3144645691 -11.3588571548 2.40457344055
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.001911 -0.997350 -0.072723 }
+        <Binormal> { -0.999633 -0.000011 0.026426 }
+      }
+      <Normal> { 0.026368 -0.066958 0.997406 }
+    }
+    <Vertex> 830 {
+      -28.3144683838 -14.3771276474 2.40457344055
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.000001 -1.000000 0.000000 }
+        <Binormal> { -1.000000 0.000001 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 831 {
+      -24.3980464935 -14.3771276474 2.40457344055
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -1.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 832 {
+      -32.1065559387 0.737578451633 1.14549672604
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.044226 -0.945488 0.322640 }
+        <Binormal> { -0.991851 -0.079537 -0.097123 }
+      }
+      <Normal> { -0.118442 0.336070 0.934355 }
+    }
+    <Vertex> 833 {
+      -31.9746170044 -1.37291991711 2.8071911335
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.049059 -0.784749 0.617869 }
+        <Binormal> { -0.926915 -0.091918 -0.043146 }
+      }
+      <Normal> { -0.108371 0.854030 0.508744 }
+    }
+    <Vertex> 834 {
+      -28.3173828125 -2.16770863533 2.83676719666
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.115110 -0.948330 0.295668 }
+        <Binormal> { -0.989416 -0.114015 0.019510 }
+      }
+      <Normal> { -0.005158 0.211982 0.977233 }
+    }
+    <Vertex> 835 {
+      -29.281332016 0.894997596741 1.89804446697
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.733451 -0.000000 -0.650410 }
+      }
+      <Normal> { -0.650410 0.197424 0.733451 }
+    }
+    <Vertex> 836 {
+      -32.1065559387 0.737578451633 1.14549672604
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.044226 -0.945488 0.322640 }
+        <Binormal> { -0.991851 -0.079537 -0.097123 }
+      }
+      <Normal> { -0.118442 0.336070 0.934355 }
+    }
+    <Vertex> 837 {
+      -29.281332016 0.894997596741 1.89804446697
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.733451 -0.000000 -0.650410 }
+      }
+      <Normal> { -0.650410 0.197424 0.733451 }
+    }
+    <Vertex> 838 {
+      -29.2813358307 4.77898168564 0.980107784271
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.000003 0.906077 0.423114 }
+        <Binormal> { 0.631314 -0.277395 0.594023 }
+      }
+      <Normal> { -0.655599 0.108188 0.747276 }
+    }
+    <Vertex> 839 {
+      -32.1065559387 4.73314237595 0.201189562678
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 -0.973190 0.230003 }
+        <Binormal> { -0.987098 -0.030787 -0.130266 }
+      }
+      <Normal> { -0.133854 0.141820 0.980773 }
+    }
+    <Vertex> 840 {
+      -32.1065559387 0.737578451633 1.14549672604
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.044226 -0.945488 0.322640 }
+        <Binormal> { -0.991851 -0.079537 -0.097123 }
+      }
+      <Normal> { -0.118442 0.336070 0.934355 }
+    }
+    <Vertex> 841 {
+      -32.1065559387 4.73314237595 0.201189562678
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 -0.973190 0.230003 }
+        <Binormal> { -0.987098 -0.030787 -0.130266 }
+      }
+      <Normal> { -0.133854 0.141820 0.980773 }
+    }
+    <Vertex> 842 {
+      -35.836479187 4.73314237595 0.201189562678
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.000000 -0.973190 0.230003 }
+        <Binormal> { -0.996065 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.143101 0.989685 }
+    }
+    <Vertex> 843 {
+      -35.836479187 0.737578451633 1.14549672604
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 -0.966307 0.257392 }
+        <Binormal> { -0.993788 -0.018295 -0.068683 }
+      }
+      <Normal> { -0.071078 0.338206 0.938353 }
+    }
+    <Vertex> 844 {
+      -32.1065559387 0.737578451633 1.14549672604
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.044226 -0.945488 0.322640 }
+        <Binormal> { -0.991851 -0.079537 -0.097123 }
+      }
+      <Normal> { -0.118442 0.336070 0.934355 }
+    }
+    <Vertex> 845 {
+      -35.836479187 0.737578451633 1.14549672604
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 -0.966307 0.257392 }
+        <Binormal> { -0.993788 -0.018295 -0.068683 }
+      }
+      <Normal> { -0.071078 0.338206 0.938353 }
+    }
+    <Vertex> 846 {
+      -35.836479187 -2.35713481903 2.08980441093
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.022660 -0.893964 0.447565 }
+        <Binormal> { -0.771176 -0.253119 -0.466535 }
+      }
+      <Normal> { -0.538316 0.648732 0.537858 }
+    }
+    <Vertex> 847 {
+      -31.9746170044 -1.37291991711 2.8071911335
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.049059 -0.784749 0.617869 }
+        <Binormal> { -0.926915 -0.091918 -0.043146 }
+      }
+      <Normal> { -0.108371 0.854030 0.508744 }
+    }
+    <Vertex> 848 {
+      -32.1065559387 10.4381599426 -0.113579511642
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.020665 -0.999223 0.033560 }
+        <Binormal> { -0.993060 0.016637 -0.116130 }
+      }
+      <Normal> { -0.115452 0.037172 0.992584 }
+    }
+    <Vertex> 849 {
+      -32.1065559387 4.73314237595 0.201189562678
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 -0.998481 0.055090 }
+        <Binormal> { -0.987097 -0.007374 -0.133651 }
+      }
+      <Normal> { -0.133854 0.141820 0.980773 }
+    }
+    <Vertex> 850 {
+      -29.2813358307 4.77898168564 0.980107784271
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.000002 -0.958462 -0.285220 }
+        <Binormal> { -0.685378 0.186991 -0.628367 }
+      }
+      <Normal> { -0.655599 0.108188 0.747276 }
+    }
+    <Vertex> 851 {
+      -29.281332016 10.3246803284 0.674128890038
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 0.970143 0.242536 }
+        <Binormal> { 0.729146 -0.153144 0.612575 }
+      }
+      <Normal> { -0.631428 0.079073 0.771355 }
+    }
+    <Vertex> 852 {
+      -32.1065559387 10.4381599426 -0.113579511642
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.020665 -0.999223 0.033560 }
+        <Binormal> { -0.993060 0.016637 -0.116130 }
+      }
+      <Normal> { -0.115452 0.037172 0.992584 }
+    }
+    <Vertex> 853 {
+      -29.281332016 10.3246803284 0.674128890038
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 0.970143 0.242536 }
+        <Binormal> { 0.729146 -0.153144 0.612575 }
+      }
+      <Normal> { -0.631428 0.079073 0.771355 }
+    }
+    <Vertex> 854 {
+      -28.3368453979 16.2777366638 0.390553623438
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.525240 -0.849267 0.053562 }
+        <Binormal> { -0.775317 -0.489073 -0.151705 }
+      }
+      <Normal> { -0.349162 0.275735 0.895535 }
+    }
+    <Vertex> 855 {
+      -32.1065559387 16.1235122681 -0.113579511642
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.997497 -0.000000 -0.065218 }
+      }
+      <Normal> { -0.065218 0.026246 0.997497 }
+    }
+    <Vertex> 856 {
+      -32.1065559387 10.4381599426 -0.113579511642
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.020665 -0.999223 0.033560 }
+        <Binormal> { -0.993060 0.016637 -0.116130 }
+      }
+      <Normal> { -0.115452 0.037172 0.992584 }
+    }
+    <Vertex> 857 {
+      -32.1065559387 16.1235122681 -0.113579511642
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.997497 -0.000000 -0.065218 }
+      }
+      <Normal> { -0.065218 0.026246 0.997497 }
+    }
+    <Vertex> 858 {
+      -35.836479187 16.1235122681 -0.113579511642
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -1.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 859 {
+      -35.836479187 10.4381599426 -0.113579511642
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 -0.999618 0.027624 }
+        <Binormal> { -0.999982 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.027528 0.999603 }
+    }
+    <Vertex> 860 {
+      -32.1065559387 10.4381599426 -0.113579511642
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.020665 -0.999223 0.033560 }
+        <Binormal> { -0.993060 0.016637 -0.116130 }
+      }
+      <Normal> { -0.115452 0.037172 0.992584 }
+    }
+    <Vertex> 861 {
+      -35.836479187 10.4381599426 -0.113579511642
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 -0.999618 0.027624 }
+        <Binormal> { -0.999982 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.027528 0.999603 }
+    }
+    <Vertex> 862 {
+      -35.836479187 4.73314237595 0.201189562678
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.000000 -0.998481 0.055090 }
+        <Binormal> { -0.996065 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.143101 0.989685 }
+    }
+    <Vertex> 863 {
+      -32.1065559387 4.73314237595 0.201189562678
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 -0.998481 0.055090 }
+        <Binormal> { -0.987097 -0.007374 -0.133651 }
+      }
+      <Normal> { -0.133854 0.141820 0.980773 }
+    }
+    <Vertex> 864 {
+      -32.1065559387 20.0600833893 -0.113579511642
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.000804 -0.999836 0.018105 }
+        <Binormal> { -0.999826 0.000497 -0.016948 }
+      }
+      <Normal> { -0.016938 0.016297 0.999695 }
+    }
+    <Vertex> 865 {
+      -32.1065559387 16.1235122681 -0.113579511642
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.997497 -0.000000 -0.065218 }
+      }
+      <Normal> { -0.065218 0.026246 0.997497 }
+    }
+    <Vertex> 866 {
+      -28.3368453979 16.2777366638 0.390553623438
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.568392 0.819823 0.069429 }
+        <Binormal> { 0.715037 -0.533257 0.442977 }
+      }
+      <Normal> { -0.349162 0.275735 0.895535 }
+    }
+    <Vertex> 867 {
+      -28.3144645691 20.0600833893 -0.113579511642
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.003261 -0.997293 0.073456 }
+        <Binormal> { -0.999397 0.000786 -0.033696 }
+      }
+      <Normal> { -0.033570 0.066347 0.997223 }
+    }
+    <Vertex> 868 {
+      -32.1065559387 20.0600833893 -0.113579511642
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.000804 -0.999836 0.018105 }
+        <Binormal> { -0.999826 0.000497 -0.016948 }
+      }
+      <Normal> { -0.016938 0.016297 0.999695 }
+    }
+    <Vertex> 869 {
+      -28.3144645691 20.0600833893 -0.113579511642
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.003261 -0.997293 0.073456 }
+        <Binormal> { -0.999397 0.000786 -0.033696 }
+      }
+      <Normal> { -0.033570 0.066347 0.997223 }
+    }
+    <Vertex> 870 {
+      -28.3144645691 23.1222648621 -0.113579511642
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -1.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 871 {
+      -32.1065559387 23.1222648621 -0.113579511642
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -1.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 872 {
+      -32.1065559387 20.0600833893 -0.113579511642
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.000804 -0.999836 0.018105 }
+        <Binormal> { -0.999826 0.000497 -0.016948 }
+      }
+      <Normal> { -0.016938 0.016297 0.999695 }
+    }
+    <Vertex> 873 {
+      -32.1065559387 23.1222648621 -0.113579511642
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -1.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 874 {
+      -34.9040031433 22.3567199707 -0.113579511642
+      <UV>  {
+        0.875000 0.875000
+        <Tangent> { 0.000001 -1.000000 0.000000 }
+        <Binormal> { -1.000000 -0.000001 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 875 {
+      -35.836479187 20.0600852966 -0.113579511642
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000001 -1.000000 0.000000 }
+        <Binormal> { -1.000000 -0.000001 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 876 {
+      -32.1065559387 20.0600833893 -0.113579511642
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.000804 -0.999836 0.018105 }
+        <Binormal> { -0.999826 0.000497 -0.016948 }
+      }
+      <Normal> { -0.016938 0.016297 0.999695 }
+    }
+    <Vertex> 877 {
+      -35.836479187 20.0600852966 -0.113579511642
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000001 -1.000000 0.000000 }
+        <Binormal> { -1.000000 -0.000001 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 878 {
+      -35.836479187 16.1235122681 -0.113579511642
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -1.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 879 {
+      -32.1065559387 16.1235122681 -0.113579511642
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.997497 -0.000000 -0.065218 }
+      }
+      <Normal> { -0.065218 0.026246 0.997497 }
+    }
+    <Vertex> 880 {
+      -32.1065559387 -11.3588571548 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.011577 -0.996771 -0.079460 }
+        <Binormal> { -0.999854 0.012527 -0.011462 }
+      }
+      <Normal> { -0.012421 -0.079379 0.996765 }
+    }
+    <Vertex> 881 {
+      -32.1065559387 -14.3771276474 2.40457344055
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -1.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 882 {
+      -28.3144683838 -14.3771276474 2.40457344055
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.782416 -0.622756 0.000000 }
+        <Binormal> { -0.622756 -0.782416 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 883 {
+      -28.3144645691 -11.3588571548 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.001911 -0.997350 -0.072723 }
+        <Binormal> { -0.999633 -0.000011 0.026426 }
+      }
+      <Normal> { 0.026368 -0.066958 0.997406 }
+    }
+    <Vertex> 884 {
+      -32.1065559387 -11.3588571548 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.011577 -0.996771 -0.079460 }
+        <Binormal> { -0.999854 0.012527 -0.011462 }
+      }
+      <Normal> { -0.012421 -0.079379 0.996765 }
+    }
+    <Vertex> 885 {
+      -28.3144645691 -11.3588571548 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.001911 -0.997350 -0.072723 }
+        <Binormal> { -0.999633 -0.000011 0.026426 }
+      }
+      <Normal> { 0.026368 -0.066958 0.997406 }
+    }
+    <Vertex> 886 {
+      -28.3024024963 -8.08044242859 2.86370134354
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.654880 -0.749683 -0.095434 }
+        <Binormal> { -0.712776 0.571058 0.405202 }
+      }
+      <Normal> { 0.275399 -0.303476 0.912137 }
+    }
+    <Vertex> 887 {
+      -31.9746170044 -8.66641998291 3.1219599247
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.047299 -0.965207 -0.257175 }
+        <Binormal> { -0.973539 0.046035 0.006276 }
+      }
+      <Normal> { -0.016358 -0.466506 0.884335 }
+    }
+    <Vertex> 888 {
+      -32.1065559387 -11.3588571548 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.011577 -0.996771 -0.079460 }
+        <Binormal> { -0.999854 0.012527 -0.011462 }
+      }
+      <Normal> { -0.012421 -0.079379 0.996765 }
+    }
+    <Vertex> 889 {
+      -31.9746170044 -8.66641998291 3.1219599247
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.047299 -0.965207 -0.257175 }
+        <Binormal> { -0.973539 0.046035 0.006276 }
+      }
+      <Normal> { -0.016358 -0.466506 0.884335 }
+    }
+    <Vertex> 890 {
+      -35.836479187 -8.3375825882 2.40457344055
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.022906 -0.991950 -0.124544 }
+        <Binormal> { -0.862043 0.072795 -0.421239 }
+      }
+      <Normal> { -0.433149 -0.367718 0.822871 }
+    }
+    <Vertex> 891 {
+      -35.836479187 -11.3588571548 2.40457344055
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.996887 -0.000000 -0.049440 }
+      }
+      <Normal> { -0.049440 -0.061037 0.996887 }
+    }
+    <Vertex> 892 {
+      -32.1065559387 -11.3588571548 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.011577 -0.996771 -0.079460 }
+        <Binormal> { -0.999854 0.012527 -0.011462 }
+      }
+      <Normal> { -0.012421 -0.079379 0.996765 }
+    }
+    <Vertex> 893 {
+      -35.836479187 -11.3588571548 2.40457344055
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.996887 -0.000000 -0.049440 }
+      }
+      <Normal> { -0.049440 -0.061037 0.996887 }
+    }
+    <Vertex> 894 {
+      -35.836479187 -14.3771276474 2.40457344055
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -1.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 895 {
+      -32.1065559387 -14.3771276474 2.40457344055
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -1.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 896 {
+      -31.5788002014 -6.67494869232 5.27411985397
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.999723 -0.011503 -0.020539 }
+        <Binormal> { -0.023534 0.468329 0.883201 }
+      }
+      <Normal> { -0.002960 -0.883480 0.468398 }
+    }
+    <Vertex> 897 {
+      -34.0637626648 -6.01842212677 5.27411985397
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.966826 0.255435 -0.000000 }
+        <Binormal> { 0.112435 0.425566 0.772815 }
+      }
+      <Normal> { -0.639332 -0.630421 0.440168 }
+    }
+    <Vertex> 898 {
+      -35.836479187 -8.3375825882 2.40457344055
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.982055 0.152467 -0.111002 }
+        <Binormal> { 0.084643 0.856185 0.427160 }
+      }
+      <Normal> { -0.433149 -0.367718 0.822871 }
+    }
+    <Vertex> 899 {
+      -31.9746170044 -8.66641998291 3.1219599247
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.997570 -0.034047 -0.060792 }
+        <Binormal> { -0.058469 0.883180 0.464815 }
+      }
+      <Normal> { -0.016358 -0.466506 0.884335 }
+    }
+    <Vertex> 900 {
+      -31.5788002014 -6.67494869232 5.27411985397
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.999723 -0.011503 -0.020539 }
+        <Binormal> { -0.023534 0.468329 0.883201 }
+      }
+      <Normal> { -0.002960 -0.883480 0.468398 }
+    }
+    <Vertex> 901 {
+      -31.9746170044 -8.66641998291 3.1219599247
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.997570 -0.034047 -0.060792 }
+        <Binormal> { -0.058469 0.883180 0.464815 }
+      }
+      <Normal> { -0.016358 -0.466506 0.884335 }
+    }
+    <Vertex> 902 {
+      -28.3024024963 -8.08044242859 2.86370134354
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.654880 -0.749683 -0.095434 }
+        <Binormal> { -0.712776 0.571058 0.405202 }
+      }
+      <Normal> { 0.275399 -0.303476 0.912137 }
+    }
+    <Vertex> 903 {
+      -29.0938453674 -6.01842212677 5.27411985397
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.966826 -0.255436 0.000000 }
+        <Binormal> { -0.104959 0.397270 0.809697 }
+      }
+      <Normal> { 0.611835 -0.675832 0.410901 }
+    }
+    <Vertex> 904 {
+      -31.5788002014 -6.67494869232 5.27411985397
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.999723 -0.011503 -0.020539 }
+        <Binormal> { -0.023534 0.468329 0.883201 }
+      }
+      <Normal> { -0.002960 -0.883480 0.468398 }
+    }
+    <Vertex> 905 {
+      -29.0938453674 -6.01842212677 5.27411985397
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.966826 -0.255436 0.000000 }
+        <Binormal> { -0.104959 0.397270 0.809697 }
+      }
+      <Normal> { 0.611835 -0.675832 0.410901 }
+    }
+    <Vertex> 906 {
+      -29.0608310699 -5.40799951553 8.11392402649
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.966826 -0.255436 0.000000 }
+        <Binormal> { 0.013174 -0.049865 0.890904 }
+      }
+      <Normal> { 0.663839 -0.746086 -0.051576 }
+    }
+    <Vertex> 907 {
+      -31.4978637695 -6.05186367035 8.11392402649
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.126408 0.991943 }
+      }
+      <Normal> { 0.003876 -0.991943 -0.126408 }
+    }
+    <Vertex> 908 {
+      -31.5788002014 -6.67494869232 5.27411985397
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.999723 -0.011503 -0.020539 }
+        <Binormal> { -0.023534 0.468329 0.883201 }
+      }
+      <Normal> { -0.002960 -0.883480 0.468398 }
+    }
+    <Vertex> 909 {
+      -31.4978637695 -6.05186367035 8.11392402649
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.126408 0.991943 }
+      }
+      <Normal> { 0.003876 -0.991943 -0.126408 }
+    }
+    <Vertex> 910 {
+      -33.9348983765 -5.40799951553 8.11392402649
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.966826 0.255435 0.000000 }
+        <Binormal> { -0.050873 -0.192557 0.879328 }
+      }
+      <Normal> { -0.642781 -0.739677 -0.199164 }
+    }
+    <Vertex> 911 {
+      -34.0637626648 -6.01842212677 5.27411985397
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.966826 0.255435 -0.000000 }
+        <Binormal> { 0.112435 0.425566 0.772815 }
+      }
+      <Normal> { -0.639332 -0.630421 0.440168 }
+    }
+    <Vertex> 912 {
+      -34.8920822144 -4.04884386063 5.27411985397
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.999842 -0.017759 }
+        <Binormal> { 0.255718 0.017168 0.966582 }
+      }
+      <Normal> { -0.966735 0.009339 0.255593 }
+    }
+    <Vertex> 913 {
+      -34.0637626648 -2.07926511765 5.27411985397
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.387669 0.921799 -0.000000 }
+        <Binormal> { 0.060540 -0.025460 0.912851 }
+      }
+      <Normal> { -0.685263 0.725303 0.065676 }
+    }
+    <Vertex> 914 {
+      -35.836479187 -2.35713481903 2.08980441093
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.164011 0.984488 -0.062326 }
+        <Binormal> { 0.569947 -0.054664 0.636365 }
+      }
+      <Normal> { -0.538316 0.648732 0.537858 }
+    }
+    <Vertex> 915 {
+      -35.836479187 -5.35959863663 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 0.998618 -0.052560 }
+        <Binormal> { 0.437245 0.047267 0.898046 }
+      }
+      <Normal> { -0.899289 0.016266 0.436995 }
+    }
+    <Vertex> 916 {
+      -34.8920822144 -4.04884386063 5.27411985397
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.999842 -0.017759 }
+        <Binormal> { 0.255718 0.017168 0.966582 }
+      }
+      <Normal> { -0.966735 0.009339 0.255593 }
+    }
+    <Vertex> 917 {
+      -35.836479187 -5.35959863663 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 0.998618 -0.052560 }
+        <Binormal> { 0.437245 0.047267 0.898046 }
+      }
+      <Normal> { -0.899289 0.016266 0.436995 }
+    }
+    <Vertex> 918 {
+      -35.836479187 -8.3375825882 2.40457344055
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.165122 0.986273 0.000000 }
+        <Binormal> { 0.811575 0.135874 0.487922 }
+      }
+      <Normal> { -0.433149 -0.367718 0.822871 }
+    }
+    <Vertex> 919 {
+      -34.0637626648 -6.01842212677 5.27411985397
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.387669 0.921799 0.000000 }
+        <Binormal> { 0.405747 0.170640 0.833730 }
+      }
+      <Normal> { -0.639332 -0.630421 0.440168 }
+    }
+    <Vertex> 920 {
+      -34.8920822144 -4.04884386063 5.27411985397
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.999842 -0.017759 }
+        <Binormal> { 0.255718 0.017168 0.966582 }
+      }
+      <Normal> { -0.966735 0.009339 0.255593 }
+    }
+    <Vertex> 921 {
+      -34.0637626648 -6.01842212677 5.27411985397
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.387669 0.921799 0.000000 }
+        <Binormal> { 0.405747 0.170640 0.833730 }
+      }
+      <Normal> { -0.639332 -0.630421 0.440168 }
+    }
+    <Vertex> 922 {
+      -33.9348983765 -5.40799951553 8.11392402649
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.387668 0.921799 0.000000 }
+        <Binormal> { -0.183589 -0.077209 0.879264 }
+      }
+      <Normal> { -0.642781 -0.739677 -0.199164 }
+    }
+    <Vertex> 923 {
+      -34.7472381592 -3.47640657425 8.11392402649
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { -0.213172 -0.000000 0.976928 }
+      }
+      <Normal> { -0.976928 0.010285 -0.213172 }
+    }
+    <Vertex> 924 {
+      -34.8920822144 -4.04884386063 5.27411985397
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.999842 -0.017759 }
+        <Binormal> { 0.255718 0.017168 0.966582 }
+      }
+      <Normal> { -0.966735 0.009339 0.255593 }
+    }
+    <Vertex> 925 {
+      -34.7472381592 -3.47640657425 8.11392402649
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { -0.213172 -0.000000 0.976928 }
+      }
+      <Normal> { -0.976928 0.010285 -0.213172 }
+    }
+    <Vertex> 926 {
+      -33.9348983765 -1.54481327534 8.11392402649
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.387668 0.921799 0.000000 }
+        <Binormal> { -0.122346 0.051453 0.887005 }
+      }
+      <Normal> { -0.646199 0.751518 -0.132725 }
+    }
+    <Vertex> 927 {
+      -34.0637626648 -2.07926511765 5.27411985397
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.387669 0.921799 -0.000000 }
+        <Binormal> { 0.060540 -0.025460 0.912851 }
+      }
+      <Normal> { -0.685263 0.725303 0.065676 }
+    }
+    <Vertex> 928 {
+      -31.5788002014 -1.42273902893 5.27411985397
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.996950 0.077985 -0.002849 }
+        <Binormal> { -0.006665 0.121449 0.991889 }
+      }
+      <Normal> { -0.114170 0.985992 -0.121494 }
+    }
+    <Vertex> 929 {
+      -28.2287120819 -1.39542424679 5.08771419525
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.364010 0.135039 -0.921554 }
+        <Binormal> { 0.336938 0.470263 -0.064179 }
+      }
+      <Normal> { -0.128727 0.224067 0.966002 }
+    }
+    <Vertex> 930 {
+      -28.3173828125 -2.16770863533 2.83676719666
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.115110 -0.948330 0.295668 }
+        <Binormal> { -0.989416 -0.114015 0.019510 }
+      }
+      <Normal> { -0.005158 0.211982 0.977233 }
+    }
+    <Vertex> 931 {
+      -31.9746170044 -1.37291991711 2.8071911335
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.994789 0.025061 0.098824 }
+        <Binormal> { -0.071649 -0.516802 0.852296 }
+      }
+      <Normal> { -0.108371 0.854030 0.508744 }
+    }
+    <Vertex> 932 {
+      -31.5788002014 -1.42273902893 5.27411985397
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.996950 0.077985 -0.002849 }
+        <Binormal> { -0.006665 0.121449 0.991889 }
+      }
+      <Normal> { -0.114170 0.985992 -0.121494 }
+    }
+    <Vertex> 933 {
+      -31.9746170044 -1.37291991711 2.8071911335
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.994789 0.025061 0.098824 }
+        <Binormal> { -0.071649 -0.516802 0.852296 }
+      }
+      <Normal> { -0.108371 0.854030 0.508744 }
+    }
+    <Vertex> 934 {
+      -35.836479187 -2.35713481903 2.08980441093
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.962426 0.248800 0.108784 }
+        <Binormal> { 0.063248 -0.576209 0.758290 }
+      }
+      <Normal> { -0.538316 0.648732 0.537858 }
+    }
+    <Vertex> 935 {
+      -34.0637626648 -2.07926511765 5.27411985397
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.966826 0.255435 0.000000 }
+        <Binormal> { 0.016776 -0.063497 0.876282 }
+      }
+      <Normal> { -0.685263 0.725303 0.065676 }
+    }
+    <Vertex> 936 {
+      -31.5788002014 -1.42273902893 5.27411985397
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.996950 0.077985 -0.002849 }
+        <Binormal> { -0.006665 0.121449 0.991889 }
+      }
+      <Normal> { -0.114170 0.985992 -0.121494 }
+    }
+    <Vertex> 937 {
+      -34.0637626648 -2.07926511765 5.27411985397
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.966826 0.255435 0.000000 }
+        <Binormal> { 0.016776 -0.063497 0.876282 }
+      }
+      <Normal> { -0.685263 0.725303 0.065676 }
+    }
+    <Vertex> 938 {
+      -33.9348983765 -1.54481327534 8.11392402649
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.966826 0.255435 0.000000 }
+        <Binormal> { -0.033903 0.128322 0.891650 }
+      }
+      <Normal> { -0.646199 0.751518 -0.132725 }
+    }
+    <Vertex> 939 {
+      -31.4978637695 -0.900949001312 8.11392402649
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.988793 0.148454 -0.015784 }
+        <Binormal> { 0.010278 0.037783 0.999230 }
+      }
+      <Normal> { -0.147343 0.988433 -0.035859 }
+    }
+    <Vertex> 940 {
+      -31.5788002014 -1.42273902893 5.27411985397
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.996950 0.077985 -0.002849 }
+        <Binormal> { -0.006665 0.121449 0.991889 }
+      }
+      <Normal> { -0.114170 0.985992 -0.121494 }
+    }
+    <Vertex> 941 {
+      -31.4978637695 -0.900949001312 8.11392402649
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.988793 0.148454 -0.015784 }
+        <Binormal> { 0.010278 0.037783 0.999230 }
+      }
+      <Normal> { -0.147343 0.988433 -0.035859 }
+    }
+    <Vertex> 942 {
+      -28.1859474182 -0.681684911251 8.02215671539
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.336991 0.478157 -0.811050 }
+        <Binormal> { -0.461736 0.665622 0.584271 }
+      }
+      <Normal> { -0.835414 -0.548418 -0.035432 }
+    }
+    <Vertex> 943 {
+      -28.2287120819 -1.39542424679 5.08771419525
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.364010 0.135039 -0.921554 }
+        <Binormal> { 0.336938 0.470263 -0.064179 }
+      }
+      <Normal> { -0.128727 0.224067 0.966002 }
+    }
+    <Vertex> 944 {
+      -28.2655277252 -4.04884386063 5.27411985397
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.105093 -0.993878 0.034100 }
+        <Binormal> { -0.174644 0.052166 0.982191 }
+      }
+      <Normal> { 0.973174 -0.142491 0.180609 }
+    }
+    <Vertex> 945 {
+      -29.0938453674 -6.01842212677 5.27411985397
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.387668 -0.921799 -0.000000 }
+        <Binormal> { -0.378768 0.159293 0.825988 }
+      }
+      <Normal> { 0.611835 -0.675832 0.410901 }
+    }
+    <Vertex> 946 {
+      -28.3024024963 -8.08044242859 2.86370134354
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.333332 -0.941563 -0.048458 }
+        <Binormal> { -0.873541 0.290700 0.360464 }
+      }
+      <Normal> { 0.275399 -0.303476 0.912137 }
+    }
+    <Vertex> 947 {
+      -27.3542079926 -5.03190994263 3.1219599247
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.002534 -0.999986 0.004555 }
+        <Binormal> { -0.789947 0.000762 0.606671 }
+      }
+      <Normal> { 0.606891 -0.083560 0.790338 }
+    }
+    <Vertex> 948 {
+      -28.2655277252 -4.04884386063 5.27411985397
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.105093 -0.993878 0.034100 }
+        <Binormal> { -0.174644 0.052166 0.982191 }
+      }
+      <Normal> { 0.973174 -0.142491 0.180609 }
+    }
+    <Vertex> 949 {
+      -27.3542079926 -5.03190994263 3.1219599247
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.002534 -0.999986 0.004555 }
+        <Binormal> { -0.789947 0.000762 0.606671 }
+      }
+      <Normal> { 0.606891 -0.083560 0.790338 }
+    }
+    <Vertex> 950 {
+      -28.3173828125 -2.16770863533 2.83676719666
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.067595 0.190426 -0.979372 }
+        <Binormal> { 0.393700 0.071107 -0.013347 }
+      }
+      <Normal> { -0.005158 0.211982 0.977233 }
+    }
+    <Vertex> 951 {
+      -28.2287120819 -1.39542424679 5.08771419525
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.097240 0.144300 -0.984745 }
+        <Binormal> { 0.360043 0.220697 -0.003213 }
+      }
+      <Normal> { -0.128727 0.224067 0.966002 }
+    }
+    <Vertex> 952 {
+      -28.2655277252 -4.04884386063 5.27411985397
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.105093 -0.993878 0.034100 }
+        <Binormal> { -0.174644 0.052166 0.982191 }
+      }
+      <Normal> { 0.973174 -0.142491 0.180609 }
+    }
+    <Vertex> 953 {
+      -28.2287120819 -1.39542424679 5.08771419525
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.097240 0.144300 -0.984745 }
+        <Binormal> { 0.360043 0.220697 -0.003213 }
+      }
+      <Normal> { -0.128727 0.224067 0.966002 }
+    }
+    <Vertex> 954 {
+      -28.1859474182 -0.681684911251 8.02215671539
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.112502 -0.024489 -0.993350 }
+        <Binormal> { -0.543903 0.825872 0.041240 }
+      }
+      <Normal> { -0.835414 -0.548418 -0.035432 }
+    }
+    <Vertex> 955 {
+      -28.2484874725 -3.47640657425 8.11392402649
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.181984 -0.983116 0.019088 }
+        <Binormal> { -0.010956 0.021432 0.999391 }
+      }
+      <Normal> { 0.978484 -0.205664 0.015137 }
+    }
+    <Vertex> 956 {
+      -28.2655277252 -4.04884386063 5.27411985397
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.105093 -0.993878 0.034100 }
+        <Binormal> { -0.174644 0.052166 0.982191 }
+      }
+      <Normal> { 0.973174 -0.142491 0.180609 }
+    }
+    <Vertex> 957 {
+      -28.2484874725 -3.47640657425 8.11392402649
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.181984 -0.983116 0.019088 }
+        <Binormal> { -0.010956 0.021432 0.999391 }
+      }
+      <Normal> { 0.978484 -0.205664 0.015137 }
+    }
+    <Vertex> 958 {
+      -29.0608310699 -5.40799951553 8.11392402649
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.387668 -0.921799 0.000000 }
+        <Binormal> { 0.047543 -0.019994 0.901160 }
+      }
+      <Normal> { 0.663839 -0.746086 -0.051576 }
+    }
+    <Vertex> 959 {
+      -29.0938453674 -6.01842212677 5.27411985397
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.387668 -0.921799 -0.000000 }
+        <Binormal> { -0.378768 0.159293 0.825988 }
+      }
+      <Normal> { 0.611835 -0.675832 0.410901 }
+    }
+    <Vertex> 960 {
+      -28.2655239105 9.98424434662 3.03725409508
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.089862 0.995313 -0.035738 }
+        <Binormal> { 0.211829 0.015960 0.977147 }
+      }
+      <Normal> { -0.972716 0.100040 0.209235 }
+    }
+    <Vertex> 961 {
+      -27.3819828033 14.3544893265 3.03725409508
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.198163 0.980169 -0.000000 }
+        <Binormal> { 0.261741 -0.052917 0.872262 }
+      }
+      <Normal> { -0.773797 0.574328 0.267037 }
+    }
+    <Vertex> 962 {
+      -28.3368453979 16.2777366638 0.390553623438
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.568392 0.819823 0.069429 }
+        <Binormal> { 0.715037 -0.533257 0.442977 }
+      }
+      <Normal> { -0.349162 0.275735 0.895535 }
+    }
+    <Vertex> 963 {
+      -29.281332016 10.3246803284 0.674128890038
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 0.970143 0.242536 }
+        <Binormal> { 0.729146 -0.153144 0.612575 }
+      }
+      <Normal> { -0.631428 0.079073 0.771355 }
+    }
+    <Vertex> 964 {
+      -28.2655239105 9.98424434662 3.03725409508
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.089862 0.995313 -0.035738 }
+        <Binormal> { 0.211829 0.015960 0.977147 }
+      }
+      <Normal> { -0.972716 0.100040 0.209235 }
+    }
+    <Vertex> 965 {
+      -29.281332016 10.3246803284 0.674128890038
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 0.970143 0.242536 }
+        <Binormal> { 0.729146 -0.153144 0.612575 }
+      }
+      <Normal> { -0.631428 0.079073 0.771355 }
+    }
+    <Vertex> 966 {
+      -29.2813358307 4.77898168564 0.980107784271
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.000003 0.906077 0.423114 }
+        <Binormal> { 0.631314 -0.277395 0.594023 }
+      }
+      <Normal> { -0.655599 0.108188 0.747276 }
+    }
+    <Vertex> 967 {
+      -28.2655239105 4.91649913788 3.31686210632
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 0.998481 -0.055090 }
+        <Binormal> { 0.205921 0.053900 0.976907 }
+      }
+      <Normal> { -0.978393 0.029695 0.204596 }
+    }
+    <Vertex> 968 {
+      -28.2655239105 9.98424434662 3.03725409508
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.089862 0.995313 -0.035738 }
+        <Binormal> { 0.211829 0.015960 0.977147 }
+      }
+      <Normal> { -0.972716 0.100040 0.209235 }
+    }
+    <Vertex> 969 {
+      -28.2655239105 4.91649913788 3.31686210632
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 0.998481 -0.055090 }
+        <Binormal> { 0.205921 0.053900 0.976907 }
+      }
+      <Normal> { -0.978393 0.029695 0.204596 }
+    }
+    <Vertex> 970 {
+      -28.2484836578 5.31602954865 6.19441509247
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.000000 0.998481 -0.055090 }
+        <Binormal> { -0.031173 0.055062 0.997963 }
+      }
+      <Normal> { -0.999481 -0.004425 -0.030976 }
+    }
+    <Vertex> 971 {
+      -28.2484836578 10.2860364914 5.92019987106
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.093167 0.995214 -0.029484 }
+        <Binormal> { -0.071892 0.036258 0.996706 }
+      }
+      <Normal> { -0.992340 0.097842 -0.075137 }
+    }
+    <Vertex> 972 {
+      -28.2655239105 9.98424434662 3.03725409508
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.089862 0.995313 -0.035738 }
+        <Binormal> { 0.211829 0.015960 0.977147 }
+      }
+      <Normal> { -0.972716 0.100040 0.209235 }
+    }
+    <Vertex> 973 {
+      -28.2484836578 10.2860364914 5.92019987106
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.093167 0.995214 -0.029484 }
+        <Binormal> { -0.071892 0.036258 0.996706 }
+      }
+      <Normal> { -0.992340 0.097842 -0.075137 }
+    }
+    <Vertex> 974 {
+      -27.3819828033 14.5719957352 5.92019987106
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.198163 0.980169 0.000000 }
+        <Binormal> { -0.282082 0.057029 0.881835 }
+      }
+      <Normal> { -0.790338 0.540819 -0.287790 }
+    }
+    <Vertex> 975 {
+      -27.3819828033 14.3544893265 3.03725409508
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.198163 0.980169 -0.000000 }
+        <Binormal> { 0.261741 -0.052917 0.872262 }
+      }
+      <Normal> { -0.773797 0.574328 0.267037 }
+    }
+    <Vertex> 976 {
+      -24.7313613892 15.8112382889 3.03725409508
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 1.000000 0.000421 -0.000737 }
+        <Binormal> { 0.000834 -0.320990 0.947052 }
+      }
+      <Normal> { -0.004364 0.947050 0.320994 }
+    }
+    <Vertex> 977 {
+      -22.0807380676 14.3544893265 3.03725409508
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.876369 -0.481641 -0.000000 }
+        <Binormal> { -0.160189 -0.291472 0.857372 }
+      }
+      <Normal> { 0.757134 0.562212 0.332591 }
+    }
+    <Vertex> 978 {
+      -20.5106811523 16.2876834869 0.37312862277
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.574698 -0.813638 0.087834 }
+        <Binormal> { -0.762362 -0.494153 0.410622 }
+      }
+      <Normal> { 0.334941 0.240303 0.911039 }
+    }
+    <Vertex> 979 {
+      -24.4813747406 17.4667816162 0.674128890038
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.999997 0.001271 -0.002227 }
+        <Binormal> { 0.002223 -0.862501 0.505971 }
+      }
+      <Normal> { -0.004578 0.505966 0.862514 }
+    }
+    <Vertex> 980 {
+      -24.7313613892 15.8112382889 3.03725409508
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 1.000000 0.000421 -0.000737 }
+        <Binormal> { 0.000834 -0.320990 0.947052 }
+      }
+      <Normal> { -0.004364 0.947050 0.320994 }
+    }
+    <Vertex> 981 {
+      -24.4813747406 17.4667816162 0.674128890038
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.999997 0.001271 -0.002227 }
+        <Binormal> { 0.002223 -0.862501 0.505971 }
+      }
+      <Normal> { -0.004578 0.505966 0.862514 }
+    }
+    <Vertex> 982 {
+      -28.3368453979 16.2777366638 0.390553623438
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.525240 -0.849267 0.053562 }
+        <Binormal> { -0.775317 -0.489073 -0.151705 }
+      }
+      <Normal> { -0.349162 0.275735 0.895535 }
+    }
+    <Vertex> 983 {
+      -27.3819828033 14.3544893265 3.03725409508
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.876368 0.481641 0.000000 }
+        <Binormal> { 0.128616 -0.234023 0.876015 }
+      }
+      <Normal> { -0.773797 0.574328 0.267037 }
+    }
+    <Vertex> 984 {
+      -24.7313613892 15.8112382889 3.03725409508
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 1.000000 0.000421 -0.000737 }
+        <Binormal> { 0.000834 -0.320990 0.947052 }
+      }
+      <Normal> { -0.004364 0.947050 0.320994 }
+    }
+    <Vertex> 985 {
+      -27.3819828033 14.3544893265 3.03725409508
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.876368 0.481641 0.000000 }
+        <Binormal> { 0.128616 -0.234023 0.876015 }
+      }
+      <Normal> { -0.773797 0.574328 0.267037 }
+    }
+    <Vertex> 986 {
+      -27.3819828033 14.5719957352 5.92019987106
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.876368 0.481642 0.000000 }
+        <Binormal> { -0.138611 0.252210 0.854616 }
+      }
+      <Normal> { -0.790338 0.540819 -0.287790 }
+    }
+    <Vertex> 987 {
+      -24.7824840546 16.0006504059 5.92019987106
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.476424 0.879147 }
+      }
+      <Normal> { -0.010041 0.879147 -0.476424 }
+    }
+    <Vertex> 988 {
+      -24.7313613892 15.8112382889 3.03725409508
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 1.000000 0.000421 -0.000737 }
+        <Binormal> { 0.000834 -0.320990 0.947052 }
+      }
+      <Normal> { -0.004364 0.947050 0.320994 }
+    }
+    <Vertex> 989 {
+      -24.7824840546 16.0006504059 5.92019987106
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.476424 0.879147 }
+      }
+      <Normal> { -0.010041 0.879147 -0.476424 }
+    }
+    <Vertex> 990 {
+      -22.1829814911 14.5719957352 5.92019987106
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.876369 -0.481641 0.000000 }
+        <Binormal> { 0.188985 0.343866 0.823768 }
+      }
+      <Normal> { 0.755333 0.524857 -0.392376 }
+    }
+    <Vertex> 991 {
+      -22.0807380676 14.3544893265 3.03725409508
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.876369 -0.481641 -0.000000 }
+        <Binormal> { -0.160189 -0.291472 0.857372 }
+      }
+      <Normal> { 0.757134 0.562212 0.332591 }
+    }
+    <Vertex> 992 {
+      -24.7313652039 -1.42273902893 5.27411985397
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.998673 -0.051209 0.005502 }
+        <Binormal> { -0.013902 0.370810 0.927874 }
+      }
+      <Normal> { 0.085726 -0.924711 0.370830 }
+    }
+    <Vertex> 993 {
+      -28.2287120819 -1.39542424679 5.08771419525
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.364010 0.135039 -0.921554 }
+        <Binormal> { 0.336938 0.470263 -0.064179 }
+      }
+      <Normal> { -0.128727 0.224067 0.966002 }
+    }
+    <Vertex> 994 {
+      -28.3173828125 -2.16770863533 2.83676719666
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.115110 -0.948330 0.295668 }
+        <Binormal> { -0.989416 -0.114015 0.019510 }
+      }
+      <Normal> { -0.005158 0.211982 0.977233 }
+    }
+    <Vertex> 995 {
+      -24.4813747406 -2.89721417427 3.1219599247
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.999692 0.006817 0.023859 }
+        <Binormal> { 0.018384 0.847593 0.528099 }
+      }
+      <Normal> { 0.064730 -0.528703 0.846309 }
+    }
+    <Vertex> 996 {
+      -24.7313652039 -1.42273902893 5.27411985397
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.998673 -0.051209 0.005502 }
+        <Binormal> { -0.013902 0.370810 0.927874 }
+      }
+      <Normal> { 0.085726 -0.924711 0.370830 }
+    }
+    <Vertex> 997 {
+      -24.4813747406 -2.89721417427 3.1219599247
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.999692 0.006817 0.023859 }
+        <Binormal> { 0.018384 0.847593 0.528099 }
+      }
+      <Normal> { 0.064730 -0.528703 0.846309 }
+    }
+    <Vertex> 998 {
+      -20.510684967 -2.22094368935 2.65044903755
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.674962 -0.737510 -0.022482 }
+        <Binormal> { -0.690056 0.620937 0.347593 }
+      }
+      <Normal> { 0.331431 -0.152837 0.930998 }
+    }
+    <Vertex> 999 {
+      -22.0807437897 -0.725240468979 4.99451112747
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.962084 -0.253168 0.101488 }
+        <Binormal> { -0.042440 0.469606 0.769140 }
+      }
+      <Normal> { 0.657308 -0.626484 0.418775 }
+    }
+    <Vertex> 1000 {
+      -24.7313652039 -1.42273902893 5.27411985397
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.998673 -0.051209 0.005502 }
+        <Binormal> { -0.013902 0.370810 0.927874 }
+      }
+      <Normal> { 0.085726 -0.924711 0.370830 }
+    }
+    <Vertex> 1001 {
+      -22.0807437897 -0.725240468979 4.99451112747
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.962084 -0.253168 0.101488 }
+        <Binormal> { -0.042440 0.469606 0.769140 }
+      }
+      <Normal> { 0.657308 -0.626484 0.418775 }
+    }
+    <Vertex> 1002 {
+      -22.1829833984 -0.216902643442 7.83970880508
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.962084 -0.253168 0.101488 }
+        <Binormal> { 0.096430 -0.004510 0.902879 }
+      }
+      <Normal> { 0.631092 -0.772393 -0.071261 }
+    }
+    <Vertex> 1003 {
+      -24.7824840546 -0.900949001312 8.11392402649
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.996559 -0.077159 0.030288 }
+        <Binormal> { 0.029445 0.011817 0.998919 }
+      }
+      <Normal> { 0.110996 -0.993774 0.008484 }
+    }
+    <Vertex> 1004 {
+      -24.7313652039 -1.42273902893 5.27411985397
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.998673 -0.051209 0.005502 }
+        <Binormal> { -0.013902 0.370810 0.927874 }
+      }
+      <Normal> { 0.085726 -0.924711 0.370830 }
+    }
+    <Vertex> 1005 {
+      -24.7824840546 -0.900949001312 8.11392402649
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.996559 -0.077159 0.030288 }
+        <Binormal> { 0.029445 0.011817 0.998919 }
+      }
+      <Normal> { 0.110996 -0.993774 0.008484 }
+    }
+    <Vertex> 1006 {
+      -28.1859474182 -0.681684911251 8.02215671539
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.336991 0.478157 -0.811050 }
+        <Binormal> { -0.461736 0.665622 0.584271 }
+      }
+      <Normal> { -0.835414 -0.548418 -0.035432 }
+    }
+    <Vertex> 1007 {
+      -28.2287120819 -1.39542424679 5.08771419525
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.364010 0.135039 -0.921554 }
+        <Binormal> { 0.336938 0.470263 -0.064179 }
+      }
+      <Normal> { -0.128727 0.224067 0.966002 }
+    }
+    <Vertex> 1008 {
+      -28.2655239105 1.36725509167 4.15568637848
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.036208 0.959195 -0.280419 }
+        <Binormal> { 0.163103 0.282482 0.945193 }
+      }
+      <Normal> { -0.985382 -0.000549 0.170202 }
+    }
+    <Vertex> 1009 {
+      -28.2655239105 4.91649913788 3.31686210632
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.000000 0.973190 -0.230003 }
+        <Binormal> { 0.205941 0.225033 0.952162 }
+      }
+      <Normal> { -0.978393 0.029695 0.204596 }
+    }
+    <Vertex> 1010 {
+      -29.2813358307 4.77898168564 0.980107784271
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.000002 -0.958462 -0.285220 }
+        <Binormal> { -0.685378 0.186991 -0.628367 }
+      }
+      <Normal> { -0.655599 0.108188 0.747276 }
+    }
+    <Vertex> 1011 {
+      -29.281332016 0.894997596741 1.89804446697
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.733451 -0.000000 -0.650410 }
+      }
+      <Normal> { -0.650410 0.197424 0.733451 }
+    }
+    <Vertex> 1012 {
+      -28.2655239105 1.36725509167 4.15568637848
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.036208 0.959195 -0.280419 }
+        <Binormal> { 0.163103 0.282482 0.945193 }
+      }
+      <Normal> { -0.985382 -0.000549 0.170202 }
+    }
+    <Vertex> 1013 {
+      -29.281332016 0.894997596741 1.89804446697
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.733451 -0.000000 -0.650410 }
+      }
+      <Normal> { -0.650410 0.197424 0.733451 }
+    }
+    <Vertex> 1014 {
+      -28.3173828125 -2.16770863533 2.83676719666
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.067595 0.190426 -0.979372 }
+        <Binormal> { 0.393700 0.071107 -0.013347 }
+      }
+      <Normal> { -0.005158 0.211982 0.977233 }
+    }
+    <Vertex> 1015 {
+      -28.2287120819 -1.39542424679 5.08771419525
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.097240 0.144300 -0.984745 }
+        <Binormal> { 0.360043 0.220697 -0.003213 }
+      }
+      <Normal> { -0.128727 0.224067 0.966002 }
+    }
+    <Vertex> 1016 {
+      -28.2655239105 1.36725509167 4.15568637848
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.036208 0.959195 -0.280419 }
+        <Binormal> { 0.163103 0.282482 0.945193 }
+      }
+      <Normal> { -0.985382 -0.000549 0.170202 }
+    }
+    <Vertex> 1017 {
+      -28.2287120819 -1.39542424679 5.08771419525
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.097240 0.144300 -0.984745 }
+        <Binormal> { 0.360043 0.220697 -0.003213 }
+      }
+      <Normal> { -0.128727 0.224067 0.966002 }
+    }
+    <Vertex> 1018 {
+      -28.1859474182 -0.681684911251 8.02215671539
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.112502 -0.024489 -0.993350 }
+        <Binormal> { -0.543903 0.825872 0.041240 }
+      }
+      <Normal> { -0.835414 -0.548418 -0.035432 }
+    }
+    <Vertex> 1019 {
+      -28.2484836578 1.83523666859 7.01706218719
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.009973 0.956522 -0.291490 }
+        <Binormal> { -0.033928 0.291005 0.956091 }
+      }
+      <Normal> { -0.999359 -0.018250 -0.029908 }
+    }
+    <Vertex> 1020 {
+      -28.2655239105 1.36725509167 4.15568637848
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.036208 0.959195 -0.280419 }
+        <Binormal> { 0.163103 0.282482 0.945193 }
+      }
+      <Normal> { -0.985382 -0.000549 0.170202 }
+    }
+    <Vertex> 1021 {
+      -28.2484836578 1.83523666859 7.01706218719
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.009973 0.956522 -0.291490 }
+        <Binormal> { -0.033928 0.291005 0.956091 }
+      }
+      <Normal> { -0.999359 -0.018250 -0.029908 }
+    }
+    <Vertex> 1022 {
+      -28.2484836578 5.31602954865 6.19441509247
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.000000 0.973190 -0.230003 }
+        <Binormal> { -0.031164 0.229883 0.972685 }
+      }
+      <Normal> { -0.999481 -0.004425 -0.030976 }
+    }
+    <Vertex> 1023 {
+      -28.2655239105 4.91649913788 3.31686210632
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.000000 0.973190 -0.230003 }
+        <Binormal> { 0.205941 0.225033 0.952162 }
+      }
+      <Normal> { -0.978393 0.029695 0.204596 }
+    }
+    <Vertex> 1024 {
+      -21.1972007751 9.98424434662 3.03725409508
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.082482 -0.996075 0.032102 }
+        <Binormal> { -0.286170 0.007182 0.958122 }
+      }
+      <Normal> { 0.954222 0.092685 0.284310 }
+    }
+    <Vertex> 1025 {
+      -21.1971969604 4.91649913788 3.31686210632
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000001 -0.998481 0.055090 }
+        <Binormal> { -0.271625 0.052999 0.960574 }
+      }
+      <Normal> { 0.962035 0.040315 0.269814 }
+    }
+    <Vertex> 1026 {
+      -19.8630504608 4.7945227623 0.816746592522
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.010084 -0.998699 0.049978 }
+        <Binormal> { -0.732996 0.041138 0.674143 }
+      }
+      <Normal> { 0.676138 0.110599 0.728416 }
+    }
+    <Vertex> 1027 {
+      -19.7558803558 10.340221405 0.565221428871
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.056218 -0.997676 0.038509 }
+        <Binormal> { -0.777256 -0.019542 0.628405 }
+      }
+      <Normal> { 0.627522 0.041658 0.777459 }
+    }
+    <Vertex> 1028 {
+      -21.1972007751 9.98424434662 3.03725409508
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.082482 -0.996075 0.032102 }
+        <Binormal> { -0.286170 0.007182 0.958122 }
+      }
+      <Normal> { 0.954222 0.092685 0.284310 }
+    }
+    <Vertex> 1029 {
+      -19.7558803558 10.340221405 0.565221428871
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.056218 -0.997676 0.038509 }
+        <Binormal> { -0.777256 -0.019542 0.628405 }
+      }
+      <Normal> { 0.627522 0.041658 0.777459 }
+    }
+    <Vertex> 1030 {
+      -20.5106811523 16.2876834869 0.37312862277
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.156798 -0.987460 0.018384 }
+        <Binormal> { -0.904032 -0.136691 0.368419 }
+      }
+      <Normal> { 0.334941 0.240303 0.911039 }
+    }
+    <Vertex> 1031 {
+      -22.0807380676 14.3544893265 3.03725409508
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.198162 -0.980169 0.000000 }
+        <Binormal> { -0.325995 -0.065907 0.853528 }
+      }
+      <Normal> { 0.757134 0.562212 0.332591 }
+    }
+    <Vertex> 1032 {
+      -21.1972007751 9.98424434662 3.03725409508
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.082482 -0.996075 0.032102 }
+        <Binormal> { -0.286170 0.007182 0.958122 }
+      }
+      <Normal> { 0.954222 0.092685 0.284310 }
+    }
+    <Vertex> 1033 {
+      -22.0807380676 14.3544893265 3.03725409508
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.198162 -0.980169 0.000000 }
+        <Binormal> { -0.325995 -0.065907 0.853528 }
+      }
+      <Normal> { 0.757134 0.562212 0.332591 }
+    }
+    <Vertex> 1034 {
+      -22.1829814911 14.5719957352 5.92019987106
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.198162 -0.980169 0.000000 }
+        <Binormal> { 0.384595 0.077754 0.844361 }
+      }
+      <Normal> { 0.755333 0.524857 -0.392376 }
+    }
+    <Vertex> 1035 {
+      -21.3164806366 10.2860364914 5.92019987106
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.093168 -0.995214 0.029484 }
+        <Binormal> { 0.238006 0.051015 0.969886 }
+      }
+      <Normal> { 0.966186 0.089358 -0.241798 }
+    }
+    <Vertex> 1036 {
+      -21.1972007751 9.98424434662 3.03725409508
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.082482 -0.996075 0.032102 }
+        <Binormal> { -0.286170 0.007182 0.958122 }
+      }
+      <Normal> { 0.954222 0.092685 0.284310 }
+    }
+    <Vertex> 1037 {
+      -21.3164806366 10.2860364914 5.92019987106
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.093168 -0.995214 0.029484 }
+        <Binormal> { 0.238006 0.051015 0.969886 }
+      }
+      <Normal> { 0.966186 0.089358 -0.241798 }
+    }
+    <Vertex> 1038 {
+      -21.3164768219 5.31602954865 6.19441509247
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.000001 -0.998481 0.055090 }
+        <Binormal> { 0.200985 0.053957 0.977943 }
+      }
+      <Normal> { 0.979430 -0.028596 -0.199713 }
+    }
+    <Vertex> 1039 {
+      -21.1971969604 4.91649913788 3.31686210632
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000001 -0.998481 0.055090 }
+        <Binormal> { -0.271625 0.052999 0.960574 }
+      }
+      <Normal> { 0.962035 0.040315 0.269814 }
+    }
+    <Vertex> 1040 {
+      -21.1972007751 1.36725509167 4.15568637848
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.131204 -0.952945 0.273277 }
+        <Binormal> { -0.272442 0.299552 0.913764 }
+      }
+      <Normal> { 0.948363 -0.076418 0.307810 }
+    }
+    <Vertex> 1041 {
+      -22.0807437897 -0.725240468979 4.99451112747
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.364901 -0.864195 0.346432 }
+        <Binormal> { -0.144869 0.380524 0.796646 }
+      }
+      <Normal> { 0.657308 -0.626484 0.418775 }
+    }
+    <Vertex> 1042 {
+      -20.510684967 -2.22094368935 2.65044903755
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.285787 -0.911249 0.296565 }
+        <Binormal> { -0.803045 0.364358 0.345695 }
+      }
+      <Normal> { 0.331431 -0.152837 0.930998 }
+    }
+    <Vertex> 1043 {
+      -19.7558803558 0.910538911819 1.78913700581
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.088961 -0.963661 0.251882 }
+        <Binormal> { -0.775869 0.225474 0.588606 }
+      }
+      <Normal> { 0.626362 0.168554 0.761071 }
+    }
+    <Vertex> 1044 {
+      -21.1972007751 1.36725509167 4.15568637848
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.131204 -0.952945 0.273277 }
+        <Binormal> { -0.272442 0.299552 0.913764 }
+      }
+      <Normal> { 0.948363 -0.076418 0.307810 }
+    }
+    <Vertex> 1045 {
+      -19.7558803558 0.910538911819 1.78913700581
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.088961 -0.963661 0.251882 }
+        <Binormal> { -0.775869 0.225474 0.588606 }
+      }
+      <Normal> { 0.626362 0.168554 0.761071 }
+    }
+    <Vertex> 1046 {
+      -19.8630504608 4.7945227623 0.816746592522
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.014006 -0.971478 0.236715 }
+        <Binormal> { -0.733820 0.149850 0.658402 }
+      }
+      <Normal> { 0.676138 0.110599 0.728416 }
+    }
+    <Vertex> 1047 {
+      -21.1971969604 4.91649913788 3.31686210632
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.000001 -0.973190 0.230003 }
+        <Binormal> { -0.271853 0.221271 0.936243 }
+      }
+      <Normal> { 0.962035 0.040315 0.269814 }
+    }
+    <Vertex> 1048 {
+      -21.1972007751 1.36725509167 4.15568637848
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.131204 -0.952945 0.273277 }
+        <Binormal> { -0.272442 0.299552 0.913764 }
+      }
+      <Normal> { 0.948363 -0.076418 0.307810 }
+    }
+    <Vertex> 1049 {
+      -21.1971969604 4.91649913788 3.31686210632
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.000001 -0.973190 0.230003 }
+        <Binormal> { -0.271853 0.221271 0.936243 }
+      }
+      <Normal> { 0.962035 0.040315 0.269814 }
+    }
+    <Vertex> 1050 {
+      -21.3164768219 5.31602954865 6.19441509247
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.000001 -0.973190 0.230003 }
+        <Binormal> { 0.200936 0.225271 0.953172 }
+      }
+      <Normal> { 0.979430 -0.028596 -0.199713 }
+    }
+    <Vertex> 1051 {
+      -21.3164806366 1.83523654938 7.01706218719
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.148449 -0.947899 0.281871 }
+        <Binormal> { 0.224964 0.244930 0.942149 }
+      }
+      <Normal> { 0.955962 -0.242470 -0.165227 }
+    }
+    <Vertex> 1052 {
+      -21.1972007751 1.36725509167 4.15568637848
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.131204 -0.952945 0.273277 }
+        <Binormal> { -0.272442 0.299552 0.913764 }
+      }
+      <Normal> { 0.948363 -0.076418 0.307810 }
+    }
+    <Vertex> 1053 {
+      -21.3164806366 1.83523654938 7.01706218719
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.148449 -0.947899 0.281871 }
+        <Binormal> { 0.224964 0.244930 0.942149 }
+      }
+      <Normal> { 0.955962 -0.242470 -0.165227 }
+    }
+    <Vertex> 1054 {
+      -22.1829833984 -0.216902643442 7.83970880508
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.364901 -0.864195 0.346432 }
+        <Binormal> { 0.329165 0.192628 0.827233 }
+      }
+      <Normal> { 0.631092 -0.772393 -0.071261 }
+    }
+    <Vertex> 1055 {
+      -22.0807437897 -0.725240468979 4.99451112747
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.364901 -0.864195 0.346432 }
+        <Binormal> { -0.144869 0.380524 0.796646 }
+      }
+      <Normal> { 0.657308 -0.626484 0.418775 }
+    }
+    <Vertex> 1056 {
+      -20.1188430786 1.97982800007 9.58080768585
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.148449 -0.947899 0.281871 }
+        <Binormal> { 0.593756 0.142228 0.791001 }
+      }
+      <Normal> { 0.784204 -0.321024 -0.530931 }
+    }
+    <Vertex> 1057 {
+      -21.1564369202 -0.477507591248 10.5658874512
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.364900 -0.864195 0.346432 }
+        <Binormal> { 0.625288 0.019092 0.706248 }
+      }
+      <Normal> { 0.496017 -0.760735 -0.418592 }
+    }
+    <Vertex> 1058 {
+      -22.1829833984 -0.216902643442 7.83970880508
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.364901 -0.864195 0.346432 }
+        <Binormal> { 0.329165 0.192628 0.827233 }
+      }
+      <Normal> { 0.631092 -0.772393 -0.071261 }
+    }
+    <Vertex> 1059 {
+      -21.3164806366 1.83523654938 7.01706218719
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.148449 -0.947899 0.281871 }
+        <Binormal> { 0.224964 0.244930 0.942149 }
+      }
+      <Normal> { 0.955962 -0.242470 -0.165227 }
+    }
+    <Vertex> 1060 {
+      -20.1188430786 1.97982800007 9.58080768585
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.148449 -0.947899 0.281871 }
+        <Binormal> { 0.593756 0.142228 0.791001 }
+      }
+      <Normal> { 0.784204 -0.321024 -0.530931 }
+    }
+    <Vertex> 1061 {
+      -21.3164806366 1.83523654938 7.01706218719
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.148449 -0.947899 0.281871 }
+        <Binormal> { 0.224964 0.244930 0.942149 }
+      }
+      <Normal> { 0.955962 -0.242470 -0.165227 }
+    }
+    <Vertex> 1062 {
+      -21.3164768219 5.31602954865 6.19441509247
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.000001 -0.973190 0.230003 }
+        <Binormal> { 0.200936 0.225271 0.953172 }
+      }
+      <Normal> { 0.979430 -0.028596 -0.199713 }
+    }
+    <Vertex> 1063 {
+      -20.1188411713 6.14790582657 8.59572982788
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.000000 -0.973190 0.230002 }
+        <Binormal> { 0.579582 0.187037 0.791394 }
+      }
+      <Normal> { 0.813196 -0.082430 -0.576067 }
+    }
+    <Vertex> 1064 {
+      -20.1188430786 1.97982800007 9.58080768585
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.148449 -0.947899 0.281871 }
+        <Binormal> { 0.593756 0.142228 0.791001 }
+      }
+      <Normal> { 0.784204 -0.321024 -0.530931 }
+    }
+    <Vertex> 1065 {
+      -20.1188411713 6.14790582657 8.59572982788
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.000000 -0.973190 0.230002 }
+        <Binormal> { 0.579582 0.187037 0.791394 }
+      }
+      <Normal> { 0.813196 -0.082430 -0.576067 }
+    }
+    <Vertex> 1066 {
+      -18.3627719879 7.08254098892 10.2023181915
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.000000 -0.973190 0.230003 }
+        <Binormal> { 0.839042 0.123919 0.524329 }
+      }
+      <Normal> { 0.538774 -0.119480 -0.833918 }
+    }
+    <Vertex> 1067 {
+      -18.3627738953 1.90671312809 11.4255685806
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.148449 -0.947899 0.281871 }
+        <Binormal> { 0.835487 0.032002 0.547633 }
+      }
+      <Normal> { 0.523453 -0.346599 -0.778344 }
+    }
+    <Vertex> 1068 {
+      -20.1188430786 1.97982800007 9.58080768585
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.148449 -0.947899 0.281871 }
+        <Binormal> { 0.593756 0.142228 0.791001 }
+      }
+      <Normal> { 0.784204 -0.321024 -0.530931 }
+    }
+    <Vertex> 1069 {
+      -18.3627738953 1.90671312809 11.4255685806
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.148449 -0.947899 0.281871 }
+        <Binormal> { 0.835487 0.032002 0.547633 }
+      }
+      <Normal> { 0.523453 -0.346599 -0.778344 }
+    }
+    <Vertex> 1070 {
+      -19.6512355804 -1.14475238323 12.6488189697
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.364901 -0.864195 0.346432 }
+        <Binormal> { 0.810269 -0.132436 0.523096 }
+      }
+      <Normal> { 0.322794 -0.669057 -0.669393 }
+    }
+    <Vertex> 1071 {
+      -21.1564369202 -0.477507591248 10.5658874512
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.364900 -0.864195 0.346432 }
+        <Binormal> { 0.625288 0.019092 0.706248 }
+      }
+      <Normal> { 0.496017 -0.760735 -0.418592 }
+    }
+    <Vertex> 1072 {
+      -20.1188411713 12.0992441177 8.26736927032
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.093167 -0.995214 0.029484 }
+        <Binormal> { 0.643854 0.082808 0.760608 }
+      }
+      <Normal> { 0.759117 0.054994 -0.648579 }
+    }
+    <Vertex> 1073 {
+      -20.1188411713 6.14790582657 8.59572982788
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.000000 -0.998481 0.055090 }
+        <Binormal> { 0.579734 0.044799 0.811961 }
+      }
+      <Normal> { 0.813196 -0.082430 -0.576067 }
+    }
+    <Vertex> 1074 {
+      -21.3164768219 5.31602954865 6.19441509247
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.000000 -0.998481 0.055090 }
+        <Binormal> { 0.200985 0.053957 0.977943 }
+      }
+      <Normal> { 0.979430 -0.028596 -0.199713 }
+    }
+    <Vertex> 1075 {
+      -21.3164806366 10.2860364914 5.92019987106
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.093168 -0.995214 0.029484 }
+        <Binormal> { 0.238006 0.051015 0.969886 }
+      }
+      <Normal> { 0.966186 0.089358 -0.241798 }
+    }
+    <Vertex> 1076 {
+      -20.1188411713 12.0992441177 8.26736927032
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.093167 -0.995214 0.029484 }
+        <Binormal> { 0.643854 0.082808 0.760608 }
+      }
+      <Normal> { 0.759117 0.054994 -0.648579 }
+    }
+    <Vertex> 1077 {
+      -21.3164806366 10.2860364914 5.92019987106
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.093168 -0.995214 0.029484 }
+        <Binormal> { 0.238006 0.051015 0.969886 }
+      }
+      <Normal> { 0.966186 0.089358 -0.241798 }
+    }
+    <Vertex> 1078 {
+      -22.1829814911 14.5719957352 5.92019987106
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.198163 -0.980169 0.000000 }
+        <Binormal> { 0.384595 0.077754 0.844361 }
+      }
+      <Normal> { 0.755333 0.524857 -0.392376 }
+    }
+    <Vertex> 1079 {
+      -21.1564331055 17.2314720154 8.26736927032
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.198163 -0.980169 0.000000 }
+        <Binormal> { 0.797010 0.161133 0.545405 }
+      }
+      <Normal> { 0.494308 0.307321 -0.813135 }
+    }
+    <Vertex> 1080 {
+      -20.1188411713 12.0992441177 8.26736927032
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.093167 -0.995214 0.029484 }
+        <Binormal> { 0.643854 0.082808 0.760608 }
+      }
+      <Normal> { 0.759117 0.054994 -0.648579 }
+    }
+    <Vertex> 1081 {
+      -21.1564331055 17.2314720154 8.26736927032
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.198163 -0.980169 0.000000 }
+        <Binormal> { 0.797010 0.161133 0.545405 }
+      }
+      <Normal> { 0.494308 0.307321 -0.813135 }
+    }
+    <Vertex> 1082 {
+      -19.6512298584 20.8458690643 9.7945690155
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.198163 -0.980169 0.000000 }
+        <Binormal> { 0.935299 0.189091 0.283180 }
+      }
+      <Normal> { 0.258522 0.150304 -0.954222 }
+    }
+    <Vertex> 1083 {
+      -18.3627700806 14.4727830887 9.7945690155
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.093167 -0.995214 0.029484 }
+        <Binormal> { 0.884723 0.096333 0.456014 }
+      }
+      <Normal> { 0.456679 0.016327 -0.889462 }
+    }
+    <Vertex> 1084 {
+      -20.1188411713 12.0992441177 8.26736927032
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.093167 -0.995214 0.029484 }
+        <Binormal> { 0.643854 0.082808 0.760608 }
+      }
+      <Normal> { 0.759117 0.054994 -0.648579 }
+    }
+    <Vertex> 1085 {
+      -18.3627700806 14.4727830887 9.7945690155
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.093167 -0.995214 0.029484 }
+        <Binormal> { 0.884723 0.096333 0.456014 }
+      }
+      <Normal> { 0.456679 0.016327 -0.889462 }
+    }
+    <Vertex> 1086 {
+      -18.3627719879 7.08254098892 10.2023181915
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.000000 -0.998481 0.055090 }
+        <Binormal> { 0.839234 0.029681 0.537956 }
+      }
+      <Normal> { 0.538774 -0.119480 -0.833918 }
+    }
+    <Vertex> 1087 {
+      -20.1188411713 6.14790582657 8.59572982788
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.000000 -0.998481 0.055090 }
+        <Binormal> { 0.579734 0.044799 0.811961 }
+      }
+      <Normal> { 0.813196 -0.082430 -0.576067 }
+    }
+    <Vertex> 1088 {
+      -28.4195766449 1.97982811928 9.58080768585
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.006821 0.956536 -0.291533 }
+        <Binormal> { -0.108396 0.289114 0.951134 }
+      }
+      <Normal> { -0.994079 -0.038270 -0.101657 }
+    }
+    <Vertex> 1089 {
+      -28.4195747375 6.14790582657 8.59572982788
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 0.973190 -0.230002 }
+        <Binormal> { -0.105928 0.228697 0.967666 }
+      }
+      <Normal> { -0.994324 -0.014924 -0.105319 }
+    }
+    <Vertex> 1090 {
+      -28.2484836578 5.31602954865 6.19441509247
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.000000 0.973190 -0.230003 }
+        <Binormal> { -0.031164 0.229883 0.972685 }
+      }
+      <Normal> { -0.999481 -0.004425 -0.030976 }
+    }
+    <Vertex> 1091 {
+      -28.2484836578 1.83523666859 7.01706218719
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.009973 0.956522 -0.291490 }
+        <Binormal> { -0.033928 0.291005 0.956091 }
+      }
+      <Normal> { -0.999359 -0.018250 -0.029908 }
+    }
+    <Vertex> 1092 {
+      -28.4195766449 1.97982811928 9.58080768585
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.006821 0.956536 -0.291533 }
+        <Binormal> { -0.108396 0.289114 0.951134 }
+      }
+      <Normal> { -0.994079 -0.038270 -0.101657 }
+    }
+    <Vertex> 1093 {
+      -28.2484836578 1.83523666859 7.01706218719
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.009973 0.956522 -0.291490 }
+        <Binormal> { -0.033928 0.291005 0.956091 }
+      }
+      <Normal> { -0.999359 -0.018250 -0.029908 }
+    }
+    <Vertex> 1094 {
+      -28.1859474182 -0.681684911251 8.02215671539
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.111143 -0.007899 -0.993773 }
+        <Binormal> { -0.544723 0.826274 0.054354 }
+      }
+      <Normal> { -0.835414 -0.548418 -0.035432 }
+    }
+    <Vertex> 1095 {
+      -28.3763446808 -1.26454222202 10.6753396988
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.097239 0.144300 -0.984745 }
+        <Binormal> { -0.921965 0.316572 0.137429 }
+      }
+      <Normal> { -0.348643 -0.895932 -0.275124 }
+    }
+    <Vertex> 1096 {
+      -28.4195766449 1.97982811928 9.58080768585
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.006821 0.956536 -0.291533 }
+        <Binormal> { -0.108396 0.289114 0.951134 }
+      }
+      <Normal> { -0.994079 -0.038270 -0.101657 }
+    }
+    <Vertex> 1097 {
+      -28.3763446808 -1.26454222202 10.6753396988
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.097239 0.144300 -0.984745 }
+        <Binormal> { -0.921965 0.316572 0.137429 }
+      }
+      <Normal> { -0.348643 -0.895932 -0.275124 }
+    }
+    <Vertex> 1098 {
+      -28.6454277039 -2.13379597664 13.1591978073
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.061570 0.121340 -0.990700 }
+        <Binormal> { -0.802306 -0.341982 0.007976 }
+      }
+      <Normal> { 0.307718 -0.735984 -0.602985 }
+    }
+    <Vertex> 1099 {
+      -28.6704425812 1.90671312809 11.4255685806
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.002584 0.952191 -0.305492 }
+        <Binormal> { -0.269584 0.293513 0.917134 }
+      }
+      <Normal> { -0.962951 -0.085513 -0.255684 }
+    }
+    <Vertex> 1100 {
+      -28.4195766449 1.97982811928 9.58080768585
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.006821 0.956536 -0.291533 }
+        <Binormal> { -0.108396 0.289114 0.951134 }
+      }
+      <Normal> { -0.994079 -0.038270 -0.101657 }
+    }
+    <Vertex> 1101 {
+      -28.6704425812 1.90671312809 11.4255685806
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.002584 0.952191 -0.305492 }
+        <Binormal> { -0.269584 0.293513 0.917134 }
+      }
+      <Normal> { -0.962951 -0.085513 -0.255684 }
+    }
+    <Vertex> 1102 {
+      -28.6704387665 7.08254098892 10.2023181915
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.000001 0.973190 -0.230003 }
+        <Binormal> { -0.250028 0.222625 0.941975 }
+      }
+      <Normal> { -0.967925 -0.034394 -0.248787 }
+    }
+    <Vertex> 1103 {
+      -28.4195747375 6.14790582657 8.59572982788
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 0.973190 -0.230002 }
+        <Binormal> { -0.105928 0.228697 0.967666 }
+      }
+      <Normal> { -0.994324 -0.014924 -0.105319 }
+    }
+    <Vertex> 1104 {
+      -24.2692127228 -1.29661953449 10.8942480087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.996838 -0.078467 0.012547 }
+        <Binormal> { 0.034320 -0.282797 0.958128 }
+      }
+      <Normal> { 0.099857 -0.953307 -0.284951 }
+    }
+    <Vertex> 1105 {
+      -28.3763446808 -1.26454222202 10.6753396988
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.363999 0.135039 -0.921558 }
+        <Binormal> { -0.862806 0.221150 0.373199 }
+      }
+      <Normal> { -0.348643 -0.895932 -0.275124 }
+    }
+    <Vertex> 1106 {
+      -28.1859474182 -0.681684911251 8.02215671539
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.342135 0.443374 -0.828470 }
+        <Binormal> { -0.470057 0.679993 0.558034 }
+      }
+      <Normal> { -0.835414 -0.548418 -0.035432 }
+    }
+    <Vertex> 1107 {
+      -24.7824840546 -0.900949001312 8.11392402649
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.996559 -0.077159 0.030288 }
+        <Binormal> { 0.029445 0.011817 0.998919 }
+      }
+      <Normal> { 0.110996 -0.993774 0.008484 }
+    }
+    <Vertex> 1108 {
+      -24.2692127228 -1.29661953449 10.8942480087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.996838 -0.078467 0.012547 }
+        <Binormal> { 0.034320 -0.282797 0.958128 }
+      }
+      <Normal> { 0.099857 -0.953307 -0.284951 }
+    }
+    <Vertex> 1109 {
+      -24.7824840546 -0.900949001312 8.11392402649
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.996559 -0.077159 0.030288 }
+        <Binormal> { 0.029445 0.011817 0.998919 }
+      }
+      <Normal> { 0.110996 -0.993774 0.008484 }
+    }
+    <Vertex> 1110 {
+      -22.1829833984 -0.216902643442 7.83970880508
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.962084 -0.253168 0.101488 }
+        <Binormal> { 0.096430 -0.004510 0.902879 }
+      }
+      <Normal> { 0.631092 -0.772393 -0.071261 }
+    }
+    <Vertex> 1111 {
+      -21.1564369202 -0.477507591248 10.5658874512
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.962084 -0.253168 0.101488 }
+        <Binormal> { 0.183180 -0.352381 0.857467 }
+      }
+      <Normal> { 0.496017 -0.760735 -0.418592 }
+    }
+    <Vertex> 1112 {
+      -24.2692127228 -1.29661953449 10.8942480087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.996838 -0.078467 0.012547 }
+        <Binormal> { 0.034320 -0.282797 0.958128 }
+      }
+      <Normal> { 0.099857 -0.953307 -0.284951 }
+    }
+    <Vertex> 1113 {
+      -21.1564369202 -0.477507591248 10.5658874512
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.962084 -0.253168 0.101488 }
+        <Binormal> { 0.183180 -0.352381 0.857467 }
+      }
+      <Normal> { 0.496017 -0.760735 -0.418592 }
+    }
+    <Vertex> 1114 {
+      -19.6512355804 -1.14475238323 12.6488189697
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.962084 -0.253168 0.101488 }
+        <Binormal> { 0.237370 -0.611253 0.725411 }
+      }
+      <Normal> { 0.322794 -0.669057 -0.669393 }
+    }
+    <Vertex> 1115 {
+      -23.5166091919 -2.16190767288 13.0565700531
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.992431 -0.109132 0.056316 }
+        <Binormal> { 0.108339 -0.562327 0.819497 }
+      }
+      <Normal> { 0.078890 -0.817072 -0.571093 }
+    }
+    <Vertex> 1116 {
+      -24.2692127228 -1.29661953449 10.8942480087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.996838 -0.078467 0.012547 }
+        <Binormal> { 0.034320 -0.282797 0.958128 }
+      }
+      <Normal> { 0.099857 -0.953307 -0.284951 }
+    }
+    <Vertex> 1117 {
+      -23.5166091919 -2.16190767288 13.0565700531
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.992431 -0.109132 0.056316 }
+        <Binormal> { 0.108339 -0.562327 0.819497 }
+      }
+      <Normal> { 0.078890 -0.817072 -0.571093 }
+    }
+    <Vertex> 1118 {
+      -28.6454277039 -2.13379597664 13.1591978073
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.664296 0.198375 -0.720665 }
+        <Binormal> { -0.650015 -0.622322 0.427868 }
+      }
+      <Normal> { 0.307718 -0.735984 -0.602985 }
+    }
+    <Vertex> 1119 {
+      -28.3763446808 -1.26454222202 10.6753396988
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.363999 0.135039 -0.921558 }
+        <Binormal> { -0.862806 0.221150 0.373199 }
+      }
+      <Normal> { -0.348643 -0.895932 -0.275124 }
+    }
+    <Vertex> 1120 {
+      -24.2692089081 18.9422130585 8.26736927032
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.868801 0.494797 }
+      }
+      <Normal> { -0.017670 0.494797 -0.868801 }
+    }
+    <Vertex> 1121 {
+      -21.1564331055 17.2314720154 8.26736927032
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.876369 -0.481641 -0.000000 }
+        <Binormal> { 0.391639 0.712606 0.507406 }
+      }
+      <Normal> { 0.494308 0.307321 -0.813135 }
+    }
+    <Vertex> 1122 {
+      -22.1829814911 14.5719957352 5.92019987106
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.876369 -0.481641 0.000000 }
+        <Binormal> { 0.188985 0.343866 0.823768 }
+      }
+      <Normal> { 0.755333 0.524857 -0.392376 }
+    }
+    <Vertex> 1123 {
+      -24.7824840546 16.0006504059 5.92019987106
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.476424 0.879147 }
+      }
+      <Normal> { -0.010041 0.879147 -0.476424 }
+    }
+    <Vertex> 1124 {
+      -24.2692089081 18.9422130585 8.26736927032
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.868801 0.494797 }
+      }
+      <Normal> { -0.017670 0.494797 -0.868801 }
+    }
+    <Vertex> 1125 {
+      -24.7824840546 16.0006504059 5.92019987106
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.476424 0.879147 }
+      }
+      <Normal> { -0.010041 0.879147 -0.476424 }
+    }
+    <Vertex> 1126 {
+      -27.3819828033 14.5719957352 5.92019987106
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.876368 0.481642 0.000000 }
+        <Binormal> { -0.138611 0.252210 0.854616 }
+      }
+      <Normal> { -0.790338 0.540819 -0.287790 }
+    }
+    <Vertex> 1127 {
+      -27.3819828033 17.231470108 8.26736927032
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.876368 0.481641 0.000000 }
+        <Binormal> { -0.304151 0.553417 0.662231 }
+      }
+      <Normal> { -0.672384 0.386120 -0.631489 }
+    }
+    <Vertex> 1128 {
+      -24.2692089081 18.9422130585 8.26736927032
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.868801 0.494797 }
+      }
+      <Normal> { -0.017670 0.494797 -0.868801 }
+    }
+    <Vertex> 1129 {
+      -27.3819828033 17.231470108 8.26736927032
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.876368 0.481641 0.000000 }
+        <Binormal> { -0.304151 0.553417 0.662231 }
+      }
+      <Normal> { -0.672384 0.386120 -0.631489 }
+    }
+    <Vertex> 1130 {
+      -27.381980896 20.8458690643 9.7945690155
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.876368 0.481641 0.000000 }
+        <Binormal> { -0.411395 0.748552 0.419874 }
+      }
+      <Normal> { -0.471053 0.220222 -0.854152 }
+    }
+    <Vertex> 1131 {
+      -23.5166072845 22.9702301025 9.7945690155
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.970458 0.240913 }
+      }
+      <Normal> { -0.012024 0.240913 -0.970458 }
+    }
+    <Vertex> 1132 {
+      -24.2692089081 18.9422130585 8.26736927032
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.868801 0.494797 }
+      }
+      <Normal> { -0.017670 0.494797 -0.868801 }
+    }
+    <Vertex> 1133 {
+      -23.5166072845 22.9702301025 9.7945690155
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.970458 0.240913 }
+      }
+      <Normal> { -0.012024 0.240913 -0.970458 }
+    }
+    <Vertex> 1134 {
+      -19.6512298584 20.8458690643 9.7945690155
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.876369 -0.481641 0.000000 }
+        <Binormal> { 0.459592 0.836251 0.256236 }
+      }
+      <Normal> { 0.258522 0.150304 -0.954222 }
+    }
+    <Vertex> 1135 {
+      -21.1564331055 17.2314720154 8.26736927032
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.876369 -0.481641 -0.000000 }
+        <Binormal> { 0.391639 0.712606 0.507406 }
+      }
+      <Normal> { 0.494308 0.307321 -0.813135 }
+    }
+    <Vertex> 1136 {
+      -28.4195747375 12.0992441177 8.26736927032
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.093167 0.995214 -0.029484 }
+        <Binormal> { -0.215134 0.049034 0.975307 }
+      }
+      <Normal> { -0.971435 0.091464 -0.218879 }
+    }
+    <Vertex> 1137 {
+      -27.3819828033 17.231470108 8.26736927032
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.198163 0.980169 -0.000000 }
+        <Binormal> { -0.618966 0.125138 0.735564 }
+      }
+      <Normal> { -0.672384 0.386120 -0.631489 }
+    }
+    <Vertex> 1138 {
+      -27.3819828033 14.5719957352 5.92019987106
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.198163 0.980169 0.000000 }
+        <Binormal> { -0.282082 0.057029 0.881835 }
+      }
+      <Normal> { -0.790338 0.540819 -0.287790 }
+    }
+    <Vertex> 1139 {
+      -28.2484836578 10.2860364914 5.92019987106
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.093167 0.995214 -0.029484 }
+        <Binormal> { -0.071892 0.036258 0.996706 }
+      }
+      <Normal> { -0.992340 0.097842 -0.075137 }
+    }
+    <Vertex> 1140 {
+      -28.4195747375 12.0992441177 8.26736927032
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.093167 0.995214 -0.029484 }
+        <Binormal> { -0.215134 0.049034 0.975307 }
+      }
+      <Normal> { -0.971435 0.091464 -0.218879 }
+    }
+    <Vertex> 1141 {
+      -28.2484836578 10.2860364914 5.92019987106
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.093167 0.995214 -0.029484 }
+        <Binormal> { -0.071892 0.036258 0.996706 }
+      }
+      <Normal> { -0.992340 0.097842 -0.075137 }
+    }
+    <Vertex> 1142 {
+      -28.2484836578 5.31602954865 6.19441509247
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.000000 0.998481 -0.055090 }
+        <Binormal> { -0.031173 0.055062 0.997963 }
+      }
+      <Normal> { -0.999481 -0.004425 -0.030976 }
+    }
+    <Vertex> 1143 {
+      -28.4195747375 6.14790582657 8.59572982788
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 0.998481 -0.055090 }
+        <Binormal> { -0.105982 0.054778 0.992814 }
+      }
+      <Normal> { -0.994324 -0.014924 -0.105319 }
+    }
+    <Vertex> 1144 {
+      -28.4195747375 12.0992441177 8.26736927032
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.093167 0.995214 -0.029484 }
+        <Binormal> { -0.215134 0.049034 0.975307 }
+      }
+      <Normal> { -0.971435 0.091464 -0.218879 }
+    }
+    <Vertex> 1145 {
+      -28.4195747375 6.14790582657 8.59572982788
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 0.998481 -0.055090 }
+        <Binormal> { -0.105982 0.054778 0.992814 }
+      }
+      <Normal> { -0.994324 -0.014924 -0.105319 }
+    }
+    <Vertex> 1146 {
+      -28.6704387665 7.08254098892 10.2023181915
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.000000 0.998481 -0.055090 }
+        <Binormal> { -0.250304 0.053323 0.966455 }
+      }
+      <Normal> { -0.967925 -0.034394 -0.248787 }
+    }
+    <Vertex> 1147 {
+      -28.6704425812 14.4727830887 9.7945690155
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.093167 0.995214 -0.029484 }
+        <Binormal> { -0.463364 0.069549 0.883397 }
+      }
+      <Normal> { -0.881191 0.068941 -0.467635 }
+    }
+    <Vertex> 1148 {
+      -28.4195747375 12.0992441177 8.26736927032
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.093167 0.995214 -0.029484 }
+        <Binormal> { -0.215134 0.049034 0.975307 }
+      }
+      <Normal> { -0.971435 0.091464 -0.218879 }
+    }
+    <Vertex> 1149 {
+      -28.6704425812 14.4727830887 9.7945690155
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.093167 0.995214 -0.029484 }
+        <Binormal> { -0.463364 0.069549 0.883397 }
+      }
+      <Normal> { -0.881191 0.068941 -0.467635 }
+    }
+    <Vertex> 1150 {
+      -27.381980896 20.8458690643 9.7945690155
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.198163 0.980169 0.000000 }
+        <Binormal> { -0.837213 0.169261 0.505352 }
+      }
+      <Normal> { -0.471053 0.220222 -0.854152 }
+    }
+    <Vertex> 1151 {
+      -27.3819828033 17.231470108 8.26736927032
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.198163 0.980169 -0.000000 }
+        <Binormal> { -0.618966 0.125138 0.735564 }
+      }
+      <Normal> { -0.672384 0.386120 -0.631489 }
+    }
+    <Vertex> 1152 {
+      -28.4195766449 -4.38060283661 10.8942480087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.146386 -0.988774 0.029953 }
+        <Binormal> { 0.026018 0.026371 0.997686 }
+      }
+      <Normal> { 0.979003 -0.202704 -0.020173 }
+    }
+    <Vertex> 1153 {
+      -29.3923187256 -6.69359064102 10.8942480087
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.387668 -0.921799 -0.000000 }
+        <Binormal> { 0.341915 -0.143795 0.850163 }
+      }
+      <Normal> { 0.638844 -0.673971 -0.370922 }
+    }
+    <Vertex> 1154 {
+      -29.0608310699 -5.40799951553 8.11392402649
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.387668 -0.921799 0.000000 }
+        <Binormal> { 0.047543 -0.019994 0.901160 }
+      }
+      <Normal> { 0.663839 -0.746086 -0.051576 }
+    }
+    <Vertex> 1155 {
+      -28.2484874725 -3.47640657425 8.11392402649
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.181984 -0.983116 0.019088 }
+        <Binormal> { -0.010956 0.021432 0.999391 }
+      }
+      <Normal> { 0.978484 -0.205664 0.015137 }
+    }
+    <Vertex> 1156 {
+      -28.4195766449 -4.38060283661 10.8942480087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.146386 -0.988774 0.029953 }
+        <Binormal> { 0.026018 0.026371 0.997686 }
+      }
+      <Normal> { 0.979003 -0.202704 -0.020173 }
+    }
+    <Vertex> 1157 {
+      -28.2484874725 -3.47640657425 8.11392402649
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.181984 -0.983116 0.019088 }
+        <Binormal> { -0.010956 0.021432 0.999391 }
+      }
+      <Normal> { 0.978484 -0.205664 0.015137 }
+    }
+    <Vertex> 1158 {
+      -28.1859474182 -0.681684911251 8.02215671539
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.111143 -0.007899 -0.993773 }
+        <Binormal> { -0.544723 0.826274 0.054354 }
+      }
+      <Normal> { -0.835414 -0.548418 -0.035432 }
+    }
+    <Vertex> 1159 {
+      -28.3763446808 -1.26454222202 10.6753396988
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.097239 0.144300 -0.984745 }
+        <Binormal> { -0.921965 0.316572 0.137429 }
+      }
+      <Normal> { -0.348643 -0.895932 -0.275124 }
+    }
+    <Vertex> 1160 {
+      -28.4195766449 -4.38060283661 10.8942480087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.146386 -0.988774 0.029953 }
+        <Binormal> { 0.026018 0.026371 0.997686 }
+      }
+      <Normal> { 0.979003 -0.202704 -0.020173 }
+    }
+    <Vertex> 1161 {
+      -28.3763446808 -1.26454222202 10.6753396988
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.097239 0.144300 -0.984745 }
+        <Binormal> { -0.921965 0.316572 0.137429 }
+      }
+      <Normal> { -0.348643 -0.895932 -0.275124 }
+    }
+    <Vertex> 1162 {
+      -28.6454277039 -2.13379597664 13.1591978073
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.061570 0.121340 -0.990700 }
+        <Binormal> { -0.802306 -0.341982 0.007976 }
+      }
+      <Normal> { 0.307718 -0.735984 -0.602985 }
+    }
+    <Vertex> 1163 {
+      -28.6704425812 -5.9915304184 13.0565700531
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.180184 -0.983519 -0.014998 }
+        <Binormal> { 0.047579 -0.023942 0.998392 }
+      }
+      <Normal> { 0.978881 -0.197821 -0.051393 }
+    }
+    <Vertex> 1164 {
+      -28.4195766449 -4.38060283661 10.8942480087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.146386 -0.988774 0.029953 }
+        <Binormal> { 0.026018 0.026371 0.997686 }
+      }
+      <Normal> { 0.979003 -0.202704 -0.020173 }
+    }
+    <Vertex> 1165 {
+      -28.6704425812 -5.9915304184 13.0565700531
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.180184 -0.983519 -0.014998 }
+        <Binormal> { 0.047579 -0.023942 0.998392 }
+      }
+      <Normal> { 0.978881 -0.197821 -0.051393 }
+    }
+    <Vertex> 1166 {
+      -29.8783760071 -8.86374759674 13.0565681458
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.387669 -0.921799 -0.000000 }
+        <Binormal> { 0.552764 -0.232469 0.752748 }
+      }
+      <Normal> { 0.588610 -0.542131 -0.599658 }
+    }
+    <Vertex> 1167 {
+      -29.3923187256 -6.69359064102 10.8942480087
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.387668 -0.921799 -0.000000 }
+        <Binormal> { 0.341915 -0.143795 0.850163 }
+      }
+      <Normal> { 0.638844 -0.673971 -0.370922 }
+    }
+    <Vertex> 1168 {
+      -32.310546875 -1.29661953449 10.8942480087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.994917 0.097788 -0.024031 }
+        <Binormal> { 0.043667 -0.204208 0.976925 }
+      }
+      <Normal> { -0.134587 0.968688 0.208502 }
+    }
+    <Vertex> 1169 {
+      -28.3763446808 -1.26454222202 10.6753396988
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.363999 0.135039 -0.921558 }
+        <Binormal> { -0.862806 0.221150 0.373199 }
+      }
+      <Normal> { -0.348643 -0.895932 -0.275124 }
+    }
+    <Vertex> 1170 {
+      -28.1859474182 -0.681684911251 8.02215671539
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.342135 0.443374 -0.828470 }
+        <Binormal> { -0.470057 0.679993 0.558034 }
+      }
+      <Normal> { -0.835414 -0.548418 -0.035432 }
+    }
+    <Vertex> 1171 {
+      -31.4978637695 -0.900949001312 8.11392402649
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.988793 0.148454 -0.015784 }
+        <Binormal> { 0.010278 0.037783 0.999230 }
+      }
+      <Normal> { -0.147343 0.988433 -0.035859 }
+    }
+    <Vertex> 1172 {
+      -32.310546875 -1.29661953449 10.8942480087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.994917 0.097788 -0.024031 }
+        <Binormal> { 0.043667 -0.204208 0.976925 }
+      }
+      <Normal> { -0.134587 0.968688 0.208502 }
+    }
+    <Vertex> 1173 {
+      -31.4978637695 -0.900949001312 8.11392402649
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.988793 0.148454 -0.015784 }
+        <Binormal> { 0.010278 0.037783 0.999230 }
+      }
+      <Normal> { -0.147343 0.988433 -0.035859 }
+    }
+    <Vertex> 1174 {
+      -33.9348983765 -1.54481327534 8.11392402649
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.966826 0.255436 0.000000 }
+        <Binormal> { -0.033903 0.128322 0.891650 }
+      }
+      <Normal> { -0.646199 0.751518 -0.132725 }
+    }
+    <Vertex> 1175 {
+      -35.2287712097 -2.06761550903 10.8942480087
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.966826 0.255436 0.000000 }
+        <Binormal> { -0.041854 0.158418 0.894986 }
+      }
+      <Normal> { -0.629688 0.759331 -0.163854 }
+    }
+    <Vertex> 1176 {
+      -32.310546875 -1.29661953449 10.8942480087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.994917 0.097788 -0.024031 }
+        <Binormal> { 0.043667 -0.204208 0.976925 }
+      }
+      <Normal> { -0.134587 0.968688 0.208502 }
+    }
+    <Vertex> 1177 {
+      -35.2287712097 -2.06761550903 10.8942480087
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.966826 0.255436 0.000000 }
+        <Binormal> { -0.041854 0.158418 0.894986 }
+      }
+      <Normal> { -0.629688 0.759331 -0.163854 }
+    }
+    <Vertex> 1178 {
+      -37.1259498596 -3.11931300163 13.0565681458
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.966826 0.255436 0.000000 }
+        <Binormal> { -0.044739 0.169335 0.903300 }
+      }
+      <Normal> { -0.609333 0.773309 -0.175146 }
+    }
+    <Vertex> 1179 {
+      -33.5021629333 -2.16190767288 13.0565700531
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.993244 0.115424 0.012020 }
+        <Binormal> { 0.044862 -0.477419 0.877428 }
+      }
+      <Normal> { -0.118503 0.869625 0.479232 }
+    }
+    <Vertex> 1180 {
+      -32.310546875 -1.29661953449 10.8942480087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.994917 0.097788 -0.024031 }
+        <Binormal> { 0.043667 -0.204208 0.976925 }
+      }
+      <Normal> { -0.134587 0.968688 0.208502 }
+    }
+    <Vertex> 1181 {
+      -33.5021629333 -2.16190767288 13.0565700531
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.993244 0.115424 0.012020 }
+        <Binormal> { 0.044862 -0.477419 0.877428 }
+      }
+      <Normal> { -0.118503 0.869625 0.479232 }
+    }
+    <Vertex> 1182 {
+      -28.6454277039 -2.13379597664 13.1591978073
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.664296 0.198375 -0.720665 }
+        <Binormal> { -0.650015 -0.622322 0.427868 }
+      }
+      <Normal> { 0.307718 -0.735984 -0.602985 }
+    }
+    <Vertex> 1183 {
+      -28.3763446808 -1.26454222202 10.6753396988
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.363999 0.135039 -0.921558 }
+        <Binormal> { -0.862806 0.221150 0.373199 }
+      }
+      <Normal> { -0.348643 -0.895932 -0.275124 }
+    }
+    <Vertex> 1184 {
+      -36.2015113831 -4.38060283661 10.8942480087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { -0.578356 -0.000000 0.815180 }
+      }
+      <Normal> { -0.815180 0.030915 -0.578356 }
+    }
+    <Vertex> 1185 {
+      -35.2287712097 -2.06761550903 10.8942480087
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.387668 0.921799 -0.000000 }
+        <Binormal> { -0.151040 0.063521 0.874814 }
+      }
+      <Normal> { -0.629688 0.759331 -0.163854 }
+    }
+    <Vertex> 1186 {
+      -33.9348983765 -1.54481327534 8.11392402649
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.387667 0.921799 0.000000 }
+        <Binormal> { -0.122346 0.051453 0.887005 }
+      }
+      <Normal> { -0.646199 0.751518 -0.132725 }
+    }
+    <Vertex> 1187 {
+      -34.7472381592 -3.47640657425 8.11392402649
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { -0.213172 -0.000000 0.976928 }
+      }
+      <Normal> { -0.976928 0.010285 -0.213172 }
+    }
+    <Vertex> 1188 {
+      -36.2015113831 -4.38060283661 10.8942480087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { -0.578356 -0.000000 0.815180 }
+      }
+      <Normal> { -0.815180 0.030915 -0.578356 }
+    }
+    <Vertex> 1189 {
+      -34.7472381592 -3.47640657425 8.11392402649
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { -0.213172 -0.000000 0.976928 }
+      }
+      <Normal> { -0.976928 0.010285 -0.213172 }
+    }
+    <Vertex> 1190 {
+      -33.9348983765 -5.40799951553 8.11392402649
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.387667 0.921799 0.000000 }
+        <Binormal> { -0.183589 -0.077209 0.879264 }
+      }
+      <Normal> { -0.642781 -0.739677 -0.199164 }
+    }
+    <Vertex> 1191 {
+      -35.2287712097 -6.69359064102 10.8942480087
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.387668 0.921799 0.000000 }
+        <Binormal> { -0.632631 -0.266057 0.651694 }
+      }
+      <Normal> { -0.475570 -0.550249 -0.686300 }
+    }
+    <Vertex> 1192 {
+      -36.2015113831 -4.38060283661 10.8942480087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { -0.578356 -0.000000 0.815180 }
+      }
+      <Normal> { -0.815180 0.030915 -0.578356 }
+    }
+    <Vertex> 1193 {
+      -35.2287712097 -6.69359064102 10.8942480087
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.387668 0.921799 0.000000 }
+        <Binormal> { -0.632631 -0.266057 0.651694 }
+      }
+      <Normal> { -0.475570 -0.550249 -0.686300 }
+    }
+    <Vertex> 1194 {
+      -37.1259498596 -8.86374759674 13.0565681458
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.387668 0.921799 0.000000 }
+        <Binormal> { -0.809721 -0.340533 0.429157 }
+      }
+      <Normal> { -0.314127 -0.360088 -0.878414 }
+    }
+    <Vertex> 1195 {
+      -38.3338775635 -5.9915304184 13.0565700531
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { -0.785607 -0.000000 0.616749 }
+      }
+      <Normal> { -0.616749 0.048585 -0.785607 }
+    }
+    <Vertex> 1196 {
+      -36.2015113831 -4.38060283661 10.8942480087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { -0.578356 -0.000000 0.815180 }
+      }
+      <Normal> { -0.815180 0.030915 -0.578356 }
+    }
+    <Vertex> 1197 {
+      -38.3338775635 -5.9915304184 13.0565700531
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { -0.785607 -0.000000 0.616749 }
+      }
+      <Normal> { -0.616749 0.048585 -0.785607 }
+    }
+    <Vertex> 1198 {
+      -37.1259498596 -3.11931300163 13.0565681458
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.387668 0.921799 -0.000000 }
+        <Binormal> { -0.161449 0.067899 0.861469 }
+      }
+      <Normal> { -0.609333 0.773309 -0.175146 }
+    }
+    <Vertex> 1199 {
+      -35.2287712097 -2.06761550903 10.8942480087
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.387668 0.921799 -0.000000 }
+        <Binormal> { -0.151040 0.063521 0.874814 }
+      }
+      <Normal> { -0.629688 0.759331 -0.163854 }
+    }
+    <Vertex> 1200 {
+      -32.310546875 -7.46458673477 10.8942480087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.602710 0.797876 }
+      }
+      <Normal> { 0.009919 -0.797876 -0.602710 }
+    }
+    <Vertex> 1201 {
+      -35.2287712097 -6.69359064102 10.8942480087
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.966826 0.255436 -0.000000 }
+        <Binormal> { -0.175306 -0.663533 0.653472 }
+      }
+      <Normal> { -0.475570 -0.550249 -0.686300 }
+    }
+    <Vertex> 1202 {
+      -33.9348983765 -5.40799951553 8.11392402649
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.966826 0.255436 0.000000 }
+        <Binormal> { -0.050874 -0.192557 0.879328 }
+      }
+      <Normal> { -0.642781 -0.739677 -0.199164 }
+    }
+    <Vertex> 1203 {
+      -31.4978637695 -6.05186367035 8.11392402649
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.126408 0.991943 }
+      }
+      <Normal> { 0.003876 -0.991943 -0.126408 }
+    }
+    <Vertex> 1204 {
+      -32.310546875 -7.46458673477 10.8942480087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.602710 0.797876 }
+      }
+      <Normal> { 0.009919 -0.797876 -0.602710 }
+    }
+    <Vertex> 1205 {
+      -31.4978637695 -6.05186367035 8.11392402649
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.126408 0.991943 }
+      }
+      <Normal> { 0.003876 -0.991943 -0.126408 }
+    }
+    <Vertex> 1206 {
+      -29.0608310699 -5.40799951553 8.11392402649
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.966826 -0.255436 0.000000 }
+        <Binormal> { 0.013174 -0.049865 0.890903 }
+      }
+      <Normal> { 0.663839 -0.746086 -0.051576 }
+    }
+    <Vertex> 1207 {
+      -29.3923187256 -6.69359064102 10.8942480087
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.966826 -0.255436 0.000000 }
+        <Binormal> { 0.094747 -0.358617 0.814796 }
+      }
+      <Normal> { 0.638844 -0.673971 -0.370922 }
+    }
+    <Vertex> 1208 {
+      -32.310546875 -7.46458673477 10.8942480087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.602710 0.797876 }
+      }
+      <Normal> { 0.009919 -0.797876 -0.602710 }
+    }
+    <Vertex> 1209 {
+      -29.3923187256 -6.69359064102 10.8942480087
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.966826 -0.255436 0.000000 }
+        <Binormal> { 0.094747 -0.358617 0.814796 }
+      }
+      <Normal> { 0.638844 -0.673971 -0.370922 }
+    }
+    <Vertex> 1210 {
+      -29.8783760071 -8.86374759674 13.0565681458
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.966826 -0.255436 0.000000 }
+        <Binormal> { 0.153174 -0.579765 0.674498 }
+      }
+      <Normal> { 0.588610 -0.542131 -0.599658 }
+    }
+    <Vertex> 1211 {
+      -33.5021629333 -9.82115268707 13.0565700531
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.833613 0.552171 }
+      }
+      <Normal> { 0.012085 -0.552171 -0.833613 }
+    }
+    <Vertex> 1212 {
+      -32.310546875 -7.46458673477 10.8942480087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.602710 0.797876 }
+      }
+      <Normal> { 0.009919 -0.797876 -0.602710 }
+    }
+    <Vertex> 1213 {
+      -33.5021629333 -9.82115268707 13.0565700531
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.833613 0.552171 }
+      }
+      <Normal> { 0.012085 -0.552171 -0.833613 }
+    }
+    <Vertex> 1214 {
+      -37.1259498596 -8.86374759674 13.0565681458
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.966826 0.255436 -0.000000 }
+        <Binormal> { -0.224378 -0.849274 0.428382 }
+      }
+      <Normal> { -0.314127 -0.360088 -0.878414 }
+    }
+    <Vertex> 1215 {
+      -35.2287712097 -6.69359064102 10.8942480087
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.966826 0.255436 -0.000000 }
+        <Binormal> { -0.175306 -0.663533 0.653472 }
+      }
+      <Normal> { -0.475570 -0.550249 -0.686300 }
+    }
+    <Vertex> 1216 {
+      -34.5580253601 -12.0296010971 14.0423679352
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.660451 0.750420 }
+      }
+      <Normal> { 0.024964 -0.750420 -0.660451 }
+    }
+    <Vertex> 1217 {
+      -38.8069992065 -10.9070224762 14.0423679352
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.966826 0.255435 -0.000000 }
+        <Binormal> { -0.189571 -0.717529 0.588021 }
+      }
+      <Normal> { -0.461104 -0.486373 -0.742149 }
+    }
+    <Vertex> 1218 {
+      -37.1259498596 -8.86374759674 13.0565681458
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.966826 0.255435 -0.000000 }
+        <Binormal> { -0.224378 -0.849274 0.428382 }
+      }
+      <Normal> { -0.314127 -0.360088 -0.878414 }
+    }
+    <Vertex> 1219 {
+      -33.5021629333 -9.82115268707 13.0565700531
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.833613 0.552171 }
+      }
+      <Normal> { 0.012085 -0.552171 -0.833613 }
+    }
+    <Vertex> 1220 {
+      -34.5580253601 -12.0296010971 14.0423679352
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.660451 0.750420 }
+      }
+      <Normal> { 0.024964 -0.750420 -0.660451 }
+    }
+    <Vertex> 1221 {
+      -33.5021629333 -9.82115268707 13.0565700531
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.833613 0.552171 }
+      }
+      <Normal> { 0.012085 -0.552171 -0.833613 }
+    }
+    <Vertex> 1222 {
+      -29.8783760071 -8.86374759674 13.0565681458
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.966826 -0.255436 0.000000 }
+        <Binormal> { 0.153174 -0.579765 0.674498 }
+      }
+      <Normal> { 0.588610 -0.542131 -0.599658 }
+    }
+    <Vertex> 1223 {
+      -30.3090572357 -10.9070224762 14.0423679352
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.966826 -0.255436 0.000000 }
+        <Binormal> { -0.020572 0.077867 0.906232 }
+      }
+      <Normal> { 0.632710 -0.770165 0.080538 }
+    }
+    <Vertex> 1224 {
+      -34.5580253601 -12.0296010971 14.0423679352
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.660451 0.750420 }
+      }
+      <Normal> { 0.024964 -0.750420 -0.660451 }
+    }
+    <Vertex> 1225 {
+      -30.3090572357 -10.9070224762 14.0423679352
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.966826 -0.255436 0.000000 }
+        <Binormal> { -0.020572 0.077867 0.906232 }
+      }
+      <Normal> { 0.632710 -0.770165 0.080538 }
+    }
+    <Vertex> 1226 {
+      -31.7861881256 -11.0136041641 14.2632236481
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.953146 -0.302362 0.009492 }
+        <Binormal> { -0.272284 0.871040 0.404807 }
+      }
+      <Normal> { 0.185034 -0.366008 0.912015 }
+    }
+    <Vertex> 1227 {
+      -35.2990150452 -12.3532590866 14.3405208588
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -1.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 0.740074 0.672140 }
+      }
+      <Normal> { 0.021332 -0.672140 0.740074 }
+    }
+    <Vertex> 1228 {
+      -34.5580253601 -12.0296010971 14.0423679352
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.660451 0.750420 }
+      }
+      <Normal> { 0.024964 -0.750420 -0.660451 }
+    }
+    <Vertex> 1229 {
+      -35.2990150452 -12.3532590866 14.3405208588
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -1.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 0.740074 0.672140 }
+      }
+      <Normal> { 0.021332 -0.672140 0.740074 }
+    }
+    <Vertex> 1230 {
+      -38.4276237488 -11.0136041641 14.2632236481
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.870147 -0.491220 -0.039322 }
+        <Binormal> { -0.126266 0.201624 0.275373 }
+      }
+      <Normal> { -0.683126 -0.702109 0.200842 }
+    }
+    <Vertex> 1231 {
+      -38.8069992065 -10.9070224762 14.0423679352
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.966826 0.255435 -0.000000 }
+        <Binormal> { -0.189571 -0.717529 0.588021 }
+      }
+      <Normal> { -0.461104 -0.486373 -0.742149 }
+    }
+    <Vertex> 1232 {
+      -40.2233200073 -7.53928661346 14.0423679352
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { -0.304331 0.000000 0.946867 }
+      }
+      <Normal> { -0.946867 -0.103671 -0.304331 }
+    }
+    <Vertex> 1233 {
+      -38.8069953918 -4.17154932022 14.0423679352
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.387669 0.921799 -0.000000 }
+        <Binormal> { 0.642111 -0.270044 0.634241 }
+      }
+      <Normal> { -0.454634 0.555010 0.696585 }
+    }
+    <Vertex> 1234 {
+      -37.1259498596 -3.11931300163 13.0565681458
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.387668 0.921799 -0.000000 }
+        <Binormal> { -0.161449 0.067899 0.861469 }
+      }
+      <Normal> { -0.609333 0.773309 -0.175146 }
+    }
+    <Vertex> 1235 {
+      -38.3338775635 -5.9915304184 13.0565700531
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { -0.785607 -0.000000 0.616749 }
+      }
+      <Normal> { -0.616749 0.048585 -0.785607 }
+    }
+    <Vertex> 1236 {
+      -40.2233200073 -7.53928661346 14.0423679352
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { -0.304331 0.000000 0.946867 }
+      }
+      <Normal> { -0.946867 -0.103671 -0.304331 }
+    }
+    <Vertex> 1237 {
+      -38.3338775635 -5.9915304184 13.0565700531
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { -0.785607 -0.000000 0.616749 }
+      }
+      <Normal> { -0.616749 0.048585 -0.785607 }
+    }
+    <Vertex> 1238 {
+      -37.1259498596 -8.86374759674 13.0565681458
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.387668 0.921799 0.000000 }
+        <Binormal> { -0.809721 -0.340533 0.429157 }
+      }
+      <Normal> { -0.314127 -0.360088 -0.878414 }
+    }
+    <Vertex> 1239 {
+      -38.8069992065 -10.9070224762 14.0423679352
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.387668 0.921799 0.000000 }
+        <Binormal> { -0.684112 -0.287707 0.613597 }
+      }
+      <Normal> { -0.461104 -0.486373 -0.742149 }
+    }
+    <Vertex> 1240 {
+      -40.2233200073 -7.53928661346 14.0423679352
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { -0.304331 0.000000 0.946867 }
+      }
+      <Normal> { -0.946867 -0.103671 -0.304331 }
+    }
+    <Vertex> 1241 {
+      -38.8069992065 -10.9070224762 14.0423679352
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.387668 0.921799 0.000000 }
+        <Binormal> { -0.684112 -0.287707 0.613597 }
+      }
+      <Normal> { -0.461104 -0.486373 -0.742149 }
+    }
+    <Vertex> 1242 {
+      -38.4276237488 -11.0136041641 14.2632236481
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.456416 0.889685 0.012055 }
+        <Binormal> { 0.187150 0.083433 0.928221 }
+      }
+      <Normal> { -0.683126 -0.702109 0.200842 }
+    }
+    <Vertex> 1243 {
+      -39.9379806519 -8.67641353607 14.3405208588
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.365978 -0.105228 0.924619 }
+    }
+    <Vertex> 1244 {
+      -40.2233200073 -7.53928661346 14.0423679352
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { -0.304331 0.000000 0.946867 }
+      }
+      <Normal> { -0.946867 -0.103671 -0.304331 }
+    }
+    <Vertex> 1245 {
+      -39.9379806519 -8.67641353607 14.3405208588
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.365978 -0.105228 0.924619 }
+    }
+    <Vertex> 1246 {
+      -38.4276237488 -5.74959993362 14.2632236481
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.421584 0.906721 -0.011135 }
+        <Binormal> { 0.897931 -0.415785 0.139384 }
+      }
+      <Normal> { -0.105960 0.102725 0.989044 }
+    }
+    <Vertex> 1247 {
+      -38.8069953918 -4.17154932022 14.0423679352
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.387669 0.921799 -0.000000 }
+        <Binormal> { 0.642111 -0.270044 0.634241 }
+      }
+      <Normal> { -0.454634 0.555010 0.696585 }
+    }
+    <Vertex> 1248 {
+      -34.5580253601 -3.04897022247 14.0423679352
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.993545 0.109926 -0.028014 }
+        <Binormal> { 0.109044 -0.857846 0.501182 }
+      }
+      <Normal> { -0.062044 0.497574 0.865169 }
+    }
+    <Vertex> 1249 {
+      -28.829782486 -3.0022649765 13.7236375809
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.364006 0.135040 -0.921555 }
+        <Binormal> { -0.045515 0.164283 0.042051 }
+      }
+      <Normal> { 0.201270 -0.190191 0.960875 }
+    }
+    <Vertex> 1250 {
+      -28.6454277039 -2.13379597664 13.1591978073
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.577359 0.180908 -0.796196 }
+        <Binormal> { -0.695073 -0.593143 0.369259 }
+      }
+      <Normal> { 0.307718 -0.735984 -0.602985 }
+    }
+    <Vertex> 1251 {
+      -33.5021629333 -2.16190767288 13.0565700531
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.993244 0.115424 0.012020 }
+        <Binormal> { 0.044862 -0.477419 0.877428 }
+      }
+      <Normal> { -0.118503 0.869625 0.479232 }
+    }
+    <Vertex> 1252 {
+      -34.5580253601 -3.04897022247 14.0423679352
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.993545 0.109926 -0.028014 }
+        <Binormal> { 0.109044 -0.857846 0.501182 }
+      }
+      <Normal> { -0.062044 0.497574 0.865169 }
+    }
+    <Vertex> 1253 {
+      -33.5021629333 -2.16190767288 13.0565700531
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.993244 0.115424 0.012020 }
+        <Binormal> { 0.044862 -0.477419 0.877428 }
+      }
+      <Normal> { -0.118503 0.869625 0.479232 }
+    }
+    <Vertex> 1254 {
+      -37.1259498596 -3.11931300163 13.0565681458
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.966826 0.255436 0.000000 }
+        <Binormal> { -0.044739 0.169335 0.903300 }
+      }
+      <Normal> { -0.609333 0.773309 -0.175146 }
+    }
+    <Vertex> 1255 {
+      -38.8069953918 -4.17154932022 14.0423679352
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.966826 0.255436 0.000000 }
+        <Binormal> { 0.177933 -0.673477 0.652728 }
+      }
+      <Normal> { -0.454634 0.555010 0.696585 }
+    }
+    <Vertex> 1256 {
+      -34.5580253601 -3.04897022247 14.0423679352
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.993545 0.109926 -0.028014 }
+        <Binormal> { 0.109044 -0.857846 0.501182 }
+      }
+      <Normal> { -0.062044 0.497574 0.865169 }
+    }
+    <Vertex> 1257 {
+      -38.8069953918 -4.17154932022 14.0423679352
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.966826 0.255436 0.000000 }
+        <Binormal> { 0.177933 -0.673477 0.652728 }
+      }
+      <Normal> { -0.454634 0.555010 0.696585 }
+    }
+    <Vertex> 1258 {
+      -38.4276237488 -5.74959993362 14.2632236481
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.739475 -0.672354 0.033417 }
+        <Binormal> { -0.668420 -0.734914 0.004720 }
+      }
+      <Normal> { -0.105960 0.102725 0.989044 }
+    }
+    <Vertex> 1259 {
+      -35.2990150452 -4.99956703186 14.3405208588
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.977159 0.211303 -0.022630 }
+        <Binormal> { 0.212505 -0.971121 0.108295 }
+      }
+      <Normal> { -0.004578 0.109836 0.993927 }
+    }
+    <Vertex> 1260 {
+      -34.5580253601 -3.04897022247 14.0423679352
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.993545 0.109926 -0.028014 }
+        <Binormal> { 0.109044 -0.857846 0.501182 }
+      }
+      <Normal> { -0.062044 0.497574 0.865169 }
+    }
+    <Vertex> 1261 {
+      -35.2990150452 -4.99956703186 14.3405208588
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.977159 0.211303 -0.022630 }
+        <Binormal> { 0.212505 -0.971121 0.108295 }
+      }
+      <Normal> { -0.004578 0.109836 0.993927 }
+    }
+    <Vertex> 1262 {
+      -28.9950714111 -3.70988488197 14.0447750092
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.853789 -0.505848 0.123132 }
+        <Binormal> { -0.508166 -0.840286 0.071545 }
+      }
+      <Normal> { 0.081942 0.035249 0.996002 }
+    }
+    <Vertex> 1263 {
+      -28.829782486 -3.0022649765 13.7236375809
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.364006 0.135040 -0.921555 }
+        <Binormal> { -0.045515 0.164283 0.042051 }
+      }
+      <Normal> { 0.201270 -0.190191 0.960875 }
+    }
+    <Vertex> 1264 {
+      -28.8927326202 -7.53928565979 14.0423679352
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.179573 -0.983117 0.035133 }
+        <Binormal> { -0.591827 0.136466 0.793732 }
+      }
+      <Normal> { 0.779351 -0.153356 0.607471 }
+    }
+    <Vertex> 1265 {
+      -30.3090572357 -10.9070224762 14.0423679352
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.387669 -0.921799 -0.000000 }
+        <Binormal> { -0.074240 0.031222 0.881800 }
+      }
+      <Normal> { 0.632710 -0.770165 0.080538 }
+    }
+    <Vertex> 1266 {
+      -29.8783760071 -8.86374759674 13.0565681458
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.387669 -0.921799 -0.000000 }
+        <Binormal> { 0.552764 -0.232469 0.752748 }
+      }
+      <Normal> { 0.588610 -0.542131 -0.599658 }
+    }
+    <Vertex> 1267 {
+      -28.6704425812 -5.9915304184 13.0565700531
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.180184 -0.983519 -0.014998 }
+        <Binormal> { 0.047579 -0.023942 0.998392 }
+      }
+      <Normal> { 0.978881 -0.197821 -0.051393 }
+    }
+    <Vertex> 1268 {
+      -28.8927326202 -7.53928565979 14.0423679352
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.179573 -0.983117 0.035133 }
+        <Binormal> { -0.591827 0.136466 0.793732 }
+      }
+      <Normal> { 0.779351 -0.153356 0.607471 }
+    }
+    <Vertex> 1269 {
+      -28.6704425812 -5.9915304184 13.0565700531
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.180184 -0.983519 -0.014998 }
+        <Binormal> { 0.047579 -0.023942 0.998392 }
+      }
+      <Normal> { 0.978881 -0.197821 -0.051393 }
+    }
+    <Vertex> 1270 {
+      -28.6454277039 -2.13379597664 13.1591978073
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.068107 0.125558 -0.989746 }
+        <Binormal> { -0.804147 -0.345630 0.011489 }
+      }
+      <Normal> { 0.307718 -0.735984 -0.602985 }
+    }
+    <Vertex> 1271 {
+      -28.829782486 -3.0022649765 13.7236375809
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.013839 -0.997446 0.070072 }
+        <Binormal> { -0.945094 0.027401 0.203388 }
+      }
+      <Normal> { 0.201270 -0.190191 0.960875 }
+    }
+    <Vertex> 1272 {
+      -28.8927326202 -7.53928565979 14.0423679352
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.179573 -0.983117 0.035133 }
+        <Binormal> { -0.591827 0.136466 0.793732 }
+      }
+      <Normal> { 0.779351 -0.153356 0.607471 }
+    }
+    <Vertex> 1273 {
+      -28.829782486 -3.0022649765 13.7236375809
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.013839 -0.997446 0.070072 }
+        <Binormal> { -0.945094 0.027401 0.203388 }
+      }
+      <Normal> { 0.201270 -0.190191 0.960875 }
+    }
+    <Vertex> 1274 {
+      -28.9950714111 -3.70988488197 14.0447750092
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.000005 -0.992098 0.125465 }
+        <Binormal> { -0.992554 0.010275 0.081295 }
+      }
+      <Normal> { 0.081942 0.035249 0.996002 }
+    }
+    <Vertex> 1275 {
+      -30.6600494385 -8.67641353607 14.3405208588
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.356833 -0.933751 0.027928 }
+        <Binormal> { -0.923794 0.357151 0.137845 }
+      }
+      <Normal> { 0.138890 -0.022858 0.990020 }
+    }
+    <Vertex> 1276 {
+      -28.8927326202 -7.53928565979 14.0423679352
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.179573 -0.983117 0.035133 }
+        <Binormal> { -0.591827 0.136466 0.793732 }
+      }
+      <Normal> { 0.779351 -0.153356 0.607471 }
+    }
+    <Vertex> 1277 {
+      -30.6600494385 -8.67641353607 14.3405208588
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.356833 -0.933751 0.027928 }
+        <Binormal> { -0.923794 0.357151 0.137845 }
+      }
+      <Normal> { 0.138890 -0.022858 0.990020 }
+    }
+    <Vertex> 1278 {
+      -31.7861881256 -11.0136041641 14.2632236481
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.407035 -0.913329 -0.012375 }
+        <Binormal> { -0.837499 0.368932 0.317975 }
+      }
+      <Normal> { 0.185034 -0.366008 0.912015 }
+    }
+    <Vertex> 1279 {
+      -30.3090572357 -10.9070224762 14.0423679352
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.387669 -0.921799 -0.000000 }
+        <Binormal> { -0.074240 0.031222 0.881800 }
+      }
+      <Normal> { 0.632710 -0.770165 0.080538 }
+    }
+    <Vertex> 1280 {
+      -28.8927268982 16.4555644989 10.2176017761
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.091156 0.995372 -0.030408 }
+        <Binormal> { 0.488418 -0.018081 0.872313 }
+      }
+      <Normal> { -0.868923 0.081301 0.488205 }
+    }
+    <Vertex> 1281 {
+      -27.381980896 23.9281463623 10.2176017761
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.198163 0.980169 0.000000 }
+        <Binormal> { 0.312953 -0.063270 0.942994 }
+      }
+      <Normal> { -0.905728 0.278695 0.319285 }
+    }
+    <Vertex> 1282 {
+      -27.381980896 20.8458690643 9.7945690155
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.198163 0.980169 0.000000 }
+        <Binormal> { -0.837213 0.169261 0.505351 }
+      }
+      <Normal> { -0.471053 0.220222 -0.854152 }
+    }
+    <Vertex> 1283 {
+      -28.6704425812 14.4727830887 9.7945690155
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.093167 0.995214 -0.029484 }
+        <Binormal> { -0.463364 0.069549 0.883397 }
+      }
+      <Normal> { -0.881191 0.068941 -0.467635 }
+    }
+    <Vertex> 1284 {
+      -28.8927268982 16.4555644989 10.2176017761
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.091156 0.995372 -0.030408 }
+        <Binormal> { 0.488418 -0.018081 0.872313 }
+      }
+      <Normal> { -0.868923 0.081301 0.488205 }
+    }
+    <Vertex> 1285 {
+      -28.6704425812 14.4727830887 9.7945690155
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.093167 0.995214 -0.029484 }
+        <Binormal> { -0.463364 0.069549 0.883397 }
+      }
+      <Normal> { -0.881191 0.068941 -0.467635 }
+    }
+    <Vertex> 1286 {
+      -28.6704387665 7.08254098892 10.2023181915
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.000000 0.998481 -0.055090 }
+        <Binormal> { -0.250304 0.053323 0.966455 }
+      }
+      <Normal> { -0.967925 -0.034394 -0.248787 }
+    }
+    <Vertex> 1287 {
+      -28.8927268982 7.79034566879 10.6956977844
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 0.998481 -0.055090 }
+        <Binormal> { 0.559021 0.045588 0.826253 }
+      }
+      <Normal> { -0.827509 0.082583 0.555315 }
+    }
+    <Vertex> 1288 {
+      -28.8927268982 16.4555644989 10.2176017761
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.091156 0.995372 -0.030408 }
+        <Binormal> { 0.488418 -0.018081 0.872313 }
+      }
+      <Normal> { -0.868923 0.081301 0.488205 }
+    }
+    <Vertex> 1289 {
+      -28.8927268982 7.79034566879 10.6956977844
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 0.998481 -0.055090 }
+        <Binormal> { 0.559021 0.045588 0.826253 }
+      }
+      <Normal> { -0.827509 0.082583 0.555315 }
+    }
+    <Vertex> 1290 {
+      -27.3299808502 8.23613834381 10.6482791901
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.000000 0.902407 0.430885 }
+        <Binormal> { 0.831451 -0.002551 0.005343 }
+      }
+      <Normal> { -0.005921 0.143071 0.989685 }
+    }
+    <Vertex> 1291 {
+      -27.3299808502 17.7961158752 10.1208152771
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.021516 0.022462 0.999512 }
+    }
+    <Vertex> 1292 {
+      -28.8927268982 16.4555644989 10.2176017761
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.091156 0.995372 -0.030408 }
+        <Binormal> { 0.488418 -0.018081 0.872313 }
+      }
+      <Normal> { -0.868923 0.081301 0.488205 }
+    }
+    <Vertex> 1293 {
+      -27.3299808502 17.7961158752 10.1208152771
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.021516 0.022462 0.999512 }
+    }
+    <Vertex> 1294 {
+      -26.0451831818 23.288646698 10.1459083557
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.210776 0.977533 0.001892 }
+        <Binormal> { 0.976338 -0.210431 -0.045209 }
+      }
+      <Normal> { 0.039583 -0.030915 0.998718 }
+    }
+    <Vertex> 1295 {
+      -27.381980896 23.9281463623 10.2176017761
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.198163 0.980169 0.000000 }
+        <Binormal> { 0.312953 -0.063270 0.942994 }
+      }
+      <Normal> { -0.905728 0.278695 0.319285 }
+    }
+    <Vertex> 1296 {
+      -22.8497428894 26.419008255 10.2176017761
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.038606 0.546617 }
+      }
+      <Normal> { -0.836451 0.546617 0.038606 }
+    }
+    <Vertex> 1297 {
+      -18.3175067902 23.9281463623 10.2176017761
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.876368 -0.481641 0.000000 }
+        <Binormal> { -0.075156 -0.136750 -0.125397 }
+      }
+      <Normal> { 0.798212 -0.581774 0.156041 }
+    }
+    <Vertex> 1298 {
+      -19.6512298584 20.8458690643 9.7945690155
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.876369 -0.481641 0.000000 }
+        <Binormal> { 0.459593 0.836250 0.256236 }
+      }
+      <Normal> { 0.258522 0.150304 -0.954222 }
+    }
+    <Vertex> 1299 {
+      -23.5166072845 22.9702301025 9.7945690155
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.970458 0.240913 }
+      }
+      <Normal> { -0.012024 0.240913 -0.970458 }
+    }
+    <Vertex> 1300 {
+      -22.8497428894 26.419008255 10.2176017761
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.038606 0.546617 }
+      }
+      <Normal> { -0.836451 0.546617 0.038606 }
+    }
+    <Vertex> 1301 {
+      -23.5166072845 22.9702301025 9.7945690155
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.970458 0.240913 }
+      }
+      <Normal> { -0.012024 0.240913 -0.970458 }
+    }
+    <Vertex> 1302 {
+      -27.381980896 20.8458690643 9.7945690155
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.876368 0.481641 0.000000 }
+        <Binormal> { -0.411395 0.748552 0.419874 }
+      }
+      <Normal> { -0.471053 0.220222 -0.854152 }
+    }
+    <Vertex> 1303 {
+      -27.381980896 23.9281463623 10.2176017761
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.876368 0.481641 0.000000 }
+        <Binormal> { 0.153781 -0.279811 0.680476 }
+      }
+      <Normal> { -0.905728 0.278695 0.319285 }
+    }
+    <Vertex> 1304 {
+      -22.8497428894 26.419008255 10.2176017761
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.038606 0.546617 }
+      }
+      <Normal> { -0.836451 0.546617 0.038606 }
+    }
+    <Vertex> 1305 {
+      -27.381980896 23.9281463623 10.2176017761
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.876368 0.481641 0.000000 }
+        <Binormal> { 0.153781 -0.279811 0.680476 }
+      }
+      <Normal> { -0.905728 0.278695 0.319285 }
+    }
+    <Vertex> 1306 {
+      -26.0451831818 23.288646698 10.1459083557
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.659829 -0.751376 -0.007698 }
+        <Binormal> { -0.750651 -0.659288 0.009343 }
+      }
+      <Normal> { 0.039583 -0.030915 0.998718 }
+    }
+    <Vertex> 1307 {
+      -22.3817481995 25.9545726776 10.1208152771
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.998413 -0.054903 }
+      }
+      <Normal> { -0.010865 -0.054903 0.998413 }
+    }
+    <Vertex> 1308 {
+      -22.8497428894 26.419008255 10.2176017761
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.038606 0.546617 }
+      }
+      <Normal> { -0.836451 0.546617 0.038606 }
+    }
+    <Vertex> 1309 {
+      -22.3817481995 25.9545726776 10.1208152771
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.998413 -0.054903 }
+      }
+      <Normal> { -0.010865 -0.054903 0.998413 }
+    }
+    <Vertex> 1310 {
+      -18.9609832764 23.288646698 10.1459083557
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.839051 -0.544047 0.002647 }
+        <Binormal> { -0.540966 -0.834767 -0.096073 }
+      }
+      <Normal> { -0.084292 -0.059847 0.994629 }
+    }
+    <Vertex> 1311 {
+      -18.3175067902 23.9281463623 10.2176017761
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.876368 -0.481641 0.000000 }
+        <Binormal> { -0.075156 -0.136750 -0.125397 }
+      }
+      <Normal> { 0.798212 -0.581774 0.156041 }
+    }
+    <Vertex> 1312 {
+      -22.8497486115 -3.04897022247 14.0423679352
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.996965 -0.077116 0.010656 }
+        <Binormal> { 0.049225 -0.518567 0.852595 }
+      }
+      <Normal> { 0.101016 -0.847377 -0.521226 }
+    }
+    <Vertex> 1313 {
+      -28.829782486 -3.0022649765 13.7236375809
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.364006 0.135040 -0.921555 }
+        <Binormal> { -0.045515 0.164283 0.042051 }
+      }
+      <Normal> { 0.201270 -0.190191 0.960875 }
+    }
+    <Vertex> 1314 {
+      -28.6454277039 -2.13379597664 13.1591978073
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.577359 0.180908 -0.796196 }
+        <Binormal> { -0.695073 -0.593143 0.369259 }
+      }
+      <Normal> { 0.307718 -0.735984 -0.602985 }
+    }
+    <Vertex> 1315 {
+      -23.5166091919 -2.16190767288 13.0565700531
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.992431 -0.109132 0.056316 }
+        <Binormal> { 0.108339 -0.562327 0.819497 }
+      }
+      <Normal> { 0.078890 -0.817072 -0.571093 }
+    }
+    <Vertex> 1316 {
+      -22.8497486115 -3.04897022247 14.0423679352
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.996965 -0.077116 0.010656 }
+        <Binormal> { 0.049225 -0.518567 0.852595 }
+      }
+      <Normal> { 0.101016 -0.847377 -0.521226 }
+    }
+    <Vertex> 1317 {
+      -23.5166091919 -2.16190767288 13.0565700531
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.992431 -0.109132 0.056316 }
+        <Binormal> { 0.108339 -0.562327 0.819497 }
+      }
+      <Normal> { 0.078890 -0.817072 -0.571093 }
+    }
+    <Vertex> 1318 {
+      -19.6512355804 -1.14475238323 12.6488189697
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.962084 -0.253168 0.101488 }
+        <Binormal> { 0.237370 -0.611253 0.725411 }
+      }
+      <Normal> { 0.322794 -0.669057 -0.669393 }
+    }
+    <Vertex> 1319 {
+      -18.3175125122 -1.8563337326 13.5642719269
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.962084 -0.253168 0.101488 }
+        <Binormal> { -0.052895 0.506027 0.760877 }
+      }
+      <Normal> { 0.631397 -0.624714 0.459365 }
+    }
+    <Vertex> 1320 {
+      -22.8497486115 -3.04897022247 14.0423679352
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.996965 -0.077116 0.010656 }
+        <Binormal> { 0.049225 -0.518567 0.852595 }
+      }
+      <Normal> { 0.101016 -0.847377 -0.521226 }
+    }
+    <Vertex> 1321 {
+      -18.3175125122 -1.8563337326 13.5642719269
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.962084 -0.253168 0.101488 }
+        <Binormal> { -0.052895 0.506027 0.760877 }
+      }
+      <Normal> { 0.631397 -0.624714 0.459365 }
+    }
+    <Vertex> 1322 {
+      -18.9609870911 -1.20865499973 13.3255090714
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.952802 -0.281489 0.113717 }
+        <Binormal> { -0.303502 0.891486 -0.336217 }
+      }
+      <Normal> { 0.014405 0.357128 0.933927 }
+    }
+    <Vertex> 1323 {
+      -22.3817577362 -2.36559605598 13.7966022491
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.995866 0.058440 0.069537 }
+        <Binormal> { 0.049682 -0.985699 0.116894 }
+      }
+      <Normal> { 0.034761 0.119419 0.992218 }
+    }
+    <Vertex> 1324 {
+      -22.8497486115 -3.04897022247 14.0423679352
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.996965 -0.077116 0.010656 }
+        <Binormal> { 0.049225 -0.518567 0.852595 }
+      }
+      <Normal> { 0.101016 -0.847377 -0.521226 }
+    }
+    <Vertex> 1325 {
+      -22.3817577362 -2.36559605598 13.7966022491
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.995866 0.058440 0.069537 }
+        <Binormal> { 0.049682 -0.985699 0.116894 }
+      }
+      <Normal> { 0.034761 0.119419 0.992218 }
+    }
+    <Vertex> 1326 {
+      -28.9950714111 -3.70988488197 14.0447750092
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.853789 -0.505848 0.123132 }
+        <Binormal> { -0.508166 -0.840286 0.071545 }
+      }
+      <Normal> { 0.081942 0.035249 0.996002 }
+    }
+    <Vertex> 1327 {
+      -28.829782486 -3.0022649765 13.7236375809
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.364006 0.135040 -0.921555 }
+        <Binormal> { -0.045515 0.164283 0.042051 }
+      }
+      <Normal> { 0.201270 -0.190191 0.960875 }
+    }
+    <Vertex> 1328 {
+      -28.8927268982 1.721575737 12.1299848557
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.047412 0.962643 -0.266591 }
+        <Binormal> { 0.528427 0.202011 0.823429 }
+      }
+      <Normal> { -0.848567 0.138401 0.510605 }
+    }
+    <Vertex> 1329 {
+      -28.8927268982 7.79034566879 10.6956977844
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 0.973190 -0.230003 }
+        <Binormal> { 0.559421 0.190329 0.805324 }
+      }
+      <Normal> { -0.827509 0.082583 0.555315 }
+    }
+    <Vertex> 1330 {
+      -28.6704387665 7.08254098892 10.2023181915
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.000000 0.973190 -0.230003 }
+        <Binormal> { -0.250028 0.222626 0.941975 }
+      }
+      <Normal> { -0.967925 -0.034394 -0.248787 }
+    }
+    <Vertex> 1331 {
+      -28.6704425812 1.90671312809 11.4255685806
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.002584 0.952191 -0.305492 }
+        <Binormal> { -0.269584 0.293513 0.917134 }
+      }
+      <Normal> { -0.962951 -0.085513 -0.255684 }
+    }
+    <Vertex> 1332 {
+      -28.8927268982 1.721575737 12.1299848557
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.047412 0.962643 -0.266591 }
+        <Binormal> { 0.528427 0.202011 0.823429 }
+      }
+      <Normal> { -0.848567 0.138401 0.510605 }
+    }
+    <Vertex> 1333 {
+      -28.6704425812 1.90671312809 11.4255685806
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.002584 0.952191 -0.305492 }
+        <Binormal> { -0.269584 0.293513 0.917134 }
+      }
+      <Normal> { -0.962951 -0.085513 -0.255684 }
+    }
+    <Vertex> 1334 {
+      -28.6454277039 -2.13379597664 13.1591978073
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.068107 0.125558 -0.989746 }
+        <Binormal> { -0.804147 -0.345630 0.011489 }
+      }
+      <Normal> { 0.307718 -0.735984 -0.602985 }
+    }
+    <Vertex> 1335 {
+      -28.829782486 -3.0022649765 13.7236375809
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.013839 -0.997446 0.070072 }
+        <Binormal> { -0.945094 0.027401 0.203388 }
+      }
+      <Normal> { 0.201270 -0.190191 0.960875 }
+    }
+    <Vertex> 1336 {
+      -28.8927268982 1.721575737 12.1299848557
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.047412 0.962643 -0.266591 }
+        <Binormal> { 0.528427 0.202011 0.823429 }
+      }
+      <Normal> { -0.848567 0.138401 0.510605 }
+    }
+    <Vertex> 1337 {
+      -28.829782486 -3.0022649765 13.7236375809
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.013839 -0.997446 0.070072 }
+        <Binormal> { -0.945094 0.027401 0.203388 }
+      }
+      <Normal> { 0.201270 -0.190191 0.960875 }
+    }
+    <Vertex> 1338 {
+      -28.9950714111 -3.70988488197 14.0447750092
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.000005 -0.992098 0.125465 }
+        <Binormal> { -0.992554 0.010275 0.081295 }
+      }
+      <Normal> { 0.081942 0.035249 0.996002 }
+    }
+    <Vertex> 1339 {
+      -27.3299808502 1.5407140255 12.2306690216
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.957640 -0.000000 -0.033296 }
+      }
+      <Normal> { -0.033296 0.285958 0.957640 }
+    }
+    <Vertex> 1340 {
+      -28.8927268982 1.721575737 12.1299848557
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.047412 0.962643 -0.266591 }
+        <Binormal> { 0.528427 0.202011 0.823429 }
+      }
+      <Normal> { -0.848567 0.138401 0.510605 }
+    }
+    <Vertex> 1341 {
+      -27.3299808502 1.5407140255 12.2306690216
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.957640 -0.000000 -0.033296 }
+      }
+      <Normal> { -0.033296 0.285958 0.957640 }
+    }
+    <Vertex> 1342 {
+      -27.3299808502 8.23613834381 10.6482791901
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.000000 -0.959824 -0.280603 }
+        <Binormal> { -0.909777 0.001661 -0.005683 }
+      }
+      <Normal> { -0.005921 0.143071 0.989685 }
+    }
+    <Vertex> 1343 {
+      -28.8927268982 7.79034566879 10.6956977844
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 0.973190 -0.230003 }
+        <Binormal> { 0.559421 0.190329 0.805324 }
+      }
+      <Normal> { -0.827509 0.082583 0.555315 }
+    }
+    <Vertex> 1344 {
+      -16.806760788 16.4555644989 10.2176017761
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.095075 -0.995006 0.030397 }
+        <Binormal> { -0.181836 0.012573 0.980289 }
+      }
+      <Normal> { 0.983001 0.023103 0.182043 }
+    }
+    <Vertex> 1345 {
+      -16.8067626953 7.79034566879 10.6956977844
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.000000 -0.998481 0.055090 }
+        <Binormal> { -0.160914 0.054364 0.985317 }
+      }
+      <Normal> { 0.986816 0.025269 0.159764 }
+    }
+    <Vertex> 1346 {
+      -18.3627719879 7.08254098892 10.2023181915
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.000000 -0.998481 0.055090 }
+        <Binormal> { 0.839234 0.029681 0.537956 }
+      }
+      <Normal> { 0.538774 -0.119480 -0.833918 }
+    }
+    <Vertex> 1347 {
+      -18.3627700806 14.4727830887 9.7945690155
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.093167 -0.995214 0.029484 }
+        <Binormal> { 0.884723 0.096333 0.456014 }
+      }
+      <Normal> { 0.456679 0.016327 -0.889462 }
+    }
+    <Vertex> 1348 {
+      -16.806760788 16.4555644989 10.2176017761
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.095075 -0.995006 0.030397 }
+        <Binormal> { -0.181836 0.012573 0.980289 }
+      }
+      <Normal> { 0.983001 0.023103 0.182043 }
+    }
+    <Vertex> 1349 {
+      -18.3627700806 14.4727830887 9.7945690155
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.093167 -0.995214 0.029484 }
+        <Binormal> { 0.884723 0.096333 0.456014 }
+      }
+      <Normal> { 0.456679 0.016327 -0.889462 }
+    }
+    <Vertex> 1350 {
+      -19.6512298584 20.8458690643 9.7945690155
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.198163 -0.980169 0.000000 }
+        <Binormal> { 0.935299 0.189091 0.283180 }
+      }
+      <Normal> { 0.258522 0.150304 -0.954222 }
+    }
+    <Vertex> 1351 {
+      -18.3175067902 23.9281463623 10.2176017761
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.198163 -0.980169 0.000000 }
+        <Binormal> { -0.152947 -0.030922 0.667096 }
+      }
+      <Normal> { 0.798212 -0.581774 0.156041 }
+    }
+    <Vertex> 1352 {
+      -16.806760788 16.4555644989 10.2176017761
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.095075 -0.995006 0.030397 }
+        <Binormal> { -0.181836 0.012573 0.980289 }
+      }
+      <Normal> { 0.983001 0.023103 0.182043 }
+    }
+    <Vertex> 1353 {
+      -18.3175067902 23.9281463623 10.2176017761
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.198163 -0.980169 0.000000 }
+        <Binormal> { -0.152947 -0.030922 0.667096 }
+      }
+      <Normal> { 0.798212 -0.581774 0.156041 }
+    }
+    <Vertex> 1354 {
+      -18.9609832764 23.288646698 10.1459083557
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.228156 -0.973623 -0.001884 }
+        <Binormal> { -0.968506 -0.226772 -0.095723 }
+      }
+      <Normal> { -0.084292 -0.059847 0.994629 }
+    }
+    <Vertex> 1355 {
+      -17.4335174561 17.7961158752 10.1208152771
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.100902 -0.994343 0.033186 }
+        <Binormal> { -0.993505 -0.102412 -0.047797 }
+      }
+      <Normal> { -0.049776 0.016816 0.998596 }
+    }
+    <Vertex> 1356 {
+      -16.806760788 16.4555644989 10.2176017761
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.095075 -0.995006 0.030397 }
+        <Binormal> { -0.181836 0.012573 0.980289 }
+      }
+      <Normal> { 0.983001 0.023103 0.182043 }
+    }
+    <Vertex> 1357 {
+      -17.4335174561 17.7961158752 10.1208152771
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.100902 -0.994343 0.033186 }
+        <Binormal> { -0.993505 -0.102412 -0.047797 }
+      }
+      <Normal> { -0.049776 0.016816 0.998596 }
+    }
+    <Vertex> 1358 {
+      -17.4335174561 8.23613834381 10.6482791901
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.000000 -0.998481 0.055090 }
+        <Binormal> { -0.995969 0.000768 0.013926 }
+      }
+      <Normal> { 0.013947 0.143010 0.989593 }
+    }
+    <Vertex> 1359 {
+      -16.8067626953 7.79034566879 10.6956977844
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.000000 -0.998481 0.055090 }
+        <Binormal> { -0.160914 0.054364 0.985317 }
+      }
+      <Normal> { 0.986816 0.025269 0.159764 }
+    }
+    <Vertex> 1360 {
+      -16.8067646027 1.72157561779 12.1299848557
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.149802 -0.948619 0.278715 }
+        <Binormal> { -0.169156 0.302291 0.937943 }
+      }
+      <Normal> { 0.971801 -0.107303 0.209845 }
+    }
+    <Vertex> 1361 {
+      -18.3175125122 -1.8563337326 13.5642719269
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.364900 -0.864195 0.346432 }
+        <Binormal> { -0.180559 0.386359 0.773609 }
+      }
+      <Normal> { 0.631397 -0.624714 0.459365 }
+    }
+    <Vertex> 1362 {
+      -19.6512355804 -1.14475238323 12.6488189697
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.364900 -0.864195 0.346432 }
+        <Binormal> { 0.810269 -0.132435 0.523096 }
+      }
+      <Normal> { 0.322794 -0.669057 -0.669393 }
+    }
+    <Vertex> 1363 {
+      -18.3627738953 1.90671312809 11.4255685806
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.148449 -0.947899 0.281871 }
+        <Binormal> { 0.835487 0.032002 0.547633 }
+      }
+      <Normal> { 0.523453 -0.346599 -0.778344 }
+    }
+    <Vertex> 1364 {
+      -16.8067646027 1.72157561779 12.1299848557
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.149802 -0.948619 0.278715 }
+        <Binormal> { -0.169156 0.302291 0.937943 }
+      }
+      <Normal> { 0.971801 -0.107303 0.209845 }
+    }
+    <Vertex> 1365 {
+      -18.3627738953 1.90671312809 11.4255685806
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.148449 -0.947899 0.281871 }
+        <Binormal> { 0.835487 0.032002 0.547633 }
+      }
+      <Normal> { 0.523453 -0.346599 -0.778344 }
+    }
+    <Vertex> 1366 {
+      -18.3627719879 7.08254098892 10.2023181915
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.000000 -0.973190 0.230003 }
+        <Binormal> { 0.839042 0.123919 0.524329 }
+      }
+      <Normal> { 0.538774 -0.119480 -0.833918 }
+    }
+    <Vertex> 1367 {
+      -16.8067626953 7.79034566879 10.6956977844
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.000000 -0.973190 0.230003 }
+        <Binormal> { -0.161293 0.226970 0.960359 }
+      }
+      <Normal> { 0.986816 0.025269 0.159764 }
+    }
+    <Vertex> 1368 {
+      -16.8067646027 1.72157561779 12.1299848557
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.149802 -0.948619 0.278715 }
+        <Binormal> { -0.169156 0.302291 0.937943 }
+      }
+      <Normal> { 0.971801 -0.107303 0.209845 }
+    }
+    <Vertex> 1369 {
+      -16.8067626953 7.79034566879 10.6956977844
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.000000 -0.973190 0.230003 }
+        <Binormal> { -0.161293 0.226970 0.960359 }
+      }
+      <Normal> { 0.986816 0.025269 0.159764 }
+    }
+    <Vertex> 1370 {
+      -17.4335174561 8.23613834381 10.6482791901
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.000001 -0.973190 0.230003 }
+        <Binormal> { -0.995955 0.003208 0.013573 }
+      }
+      <Normal> { 0.013947 0.143010 0.989593 }
+    }
+    <Vertex> 1371 {
+      -17.4335231781 1.5407140255 12.2306690216
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.153746 -0.950656 0.269474 }
+        <Binormal> { -0.987266 0.155214 -0.015710 }
+      }
+      <Normal> { 0.031617 0.297678 0.954131 }
+    }
+    <Vertex> 1372 {
+      -16.8067646027 1.72157561779 12.1299848557
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.149802 -0.948619 0.278715 }
+        <Binormal> { -0.169156 0.302291 0.937943 }
+      }
+      <Normal> { 0.971801 -0.107303 0.209845 }
+    }
+    <Vertex> 1373 {
+      -17.4335231781 1.5407140255 12.2306690216
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.153746 -0.950656 0.269474 }
+        <Binormal> { -0.987266 0.155214 -0.015710 }
+      }
+      <Normal> { 0.031617 0.297678 0.954131 }
+    }
+    <Vertex> 1374 {
+      -18.9609870911 -1.20865499973 13.3255090714
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.407230 -0.848084 0.338994 }
+        <Binormal> { -0.913113 0.385207 -0.133217 }
+      }
+      <Normal> { 0.014405 0.357128 0.933927 }
+    }
+    <Vertex> 1375 {
+      -18.3175125122 -1.8563337326 13.5642719269
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.364900 -0.864195 0.346432 }
+        <Binormal> { -0.180559 0.386359 0.773609 }
+      }
+      <Normal> { 0.631397 -0.624714 0.459365 }
+    }
+    <Vertex> 1376 {
+      -22.2257537842 1.48042690754 12.2642297745
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.078252 -0.957702 0.276918 }
+        <Binormal> { -0.996744 0.073484 -0.027521 }
+      }
+      <Normal> { -0.004608 0.295297 0.955382 }
+    }
+    <Vertex> 1377 {
+      -22.3817577362 -2.36559605598 13.7966022491
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.037655 -0.928320 0.369871 }
+        <Binormal> { -0.965265 0.050219 0.027772 }
+      }
+      <Normal> { 0.034761 0.119419 0.992218 }
+    }
+    <Vertex> 1378 {
+      -18.9609870911 -1.20865499973 13.3255090714
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.230730 -0.903941 0.360076 }
+        <Binormal> { -0.972808 0.220672 -0.069379 }
+      }
+      <Normal> { 0.014405 0.357128 0.933927 }
+    }
+    <Vertex> 1379 {
+      -17.4335231781 1.5407140255 12.2306690216
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.153746 -0.950656 0.269474 }
+        <Binormal> { -0.987266 0.155214 -0.015710 }
+      }
+      <Normal> { 0.031617 0.297678 0.954131 }
+    }
+    <Vertex> 1380 {
+      -22.2257537842 1.48042690754 12.2642297745
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.078252 -0.957702 0.276918 }
+        <Binormal> { -0.996744 0.073484 -0.027521 }
+      }
+      <Normal> { -0.004608 0.295297 0.955382 }
+    }
+    <Vertex> 1381 {
+      -17.4335231781 1.5407140255 12.2306690216
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.153746 -0.950656 0.269474 }
+        <Binormal> { -0.987266 0.155214 -0.015710 }
+      }
+      <Normal> { 0.031617 0.297678 0.954131 }
+    }
+    <Vertex> 1382 {
+      -17.4335174561 8.23613834381 10.6482791901
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.000001 -0.973190 0.230003 }
+        <Binormal> { -0.995955 0.003208 0.013573 }
+      }
+      <Normal> { 0.013947 0.143010 0.989593 }
+    }
+    <Vertex> 1383 {
+      -22.2257518768 8.3847360611 10.6324720383
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.000000 -0.973190 0.230003 }
+        <Binormal> { -0.996065 0.000007 0.000030 }
+      }
+      <Normal> { 0.000031 0.143101 0.989685 }
+    }
+    <Vertex> 1384 {
+      -22.2257537842 1.48042690754 12.2642297745
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.078252 -0.957702 0.276918 }
+        <Binormal> { -0.996744 0.073484 -0.027521 }
+      }
+      <Normal> { -0.004608 0.295297 0.955382 }
+    }
+    <Vertex> 1385 {
+      -22.2257518768 8.3847360611 10.6324720383
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.000000 -0.973190 0.230003 }
+        <Binormal> { -0.996065 0.000007 0.000030 }
+      }
+      <Normal> { 0.000031 0.143101 0.989685 }
+    }
+    <Vertex> 1386 {
+      -27.3299808502 8.23613834381 10.6482791901
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.000000 0.902407 0.430885 }
+        <Binormal> { 0.831451 -0.002551 0.005343 }
+      }
+      <Normal> { -0.005921 0.143071 0.989685 }
+    }
+    <Vertex> 1387 {
+      -27.3299808502 1.5407140255 12.2306690216
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.957640 -0.000000 -0.033296 }
+      }
+      <Normal> { -0.033296 0.285958 0.957640 }
+    }
+    <Vertex> 1388 {
+      -22.2257537842 1.48042690754 12.2642297745
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.078252 -0.957702 0.276918 }
+        <Binormal> { -0.996744 0.073484 -0.027521 }
+      }
+      <Normal> { -0.004608 0.295297 0.955382 }
+    }
+    <Vertex> 1389 {
+      -27.3299808502 1.5407140255 12.2306690216
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.957640 -0.000000 -0.033296 }
+      }
+      <Normal> { -0.033296 0.285958 0.957640 }
+    }
+    <Vertex> 1390 {
+      -28.9950714111 -3.70988488197 14.0447750092
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.853789 -0.505848 0.123132 }
+        <Binormal> { -0.508166 -0.840286 0.071545 }
+      }
+      <Normal> { 0.081942 0.035249 0.996002 }
+    }
+    <Vertex> 1391 {
+      -22.3817577362 -2.36559605598 13.7966022491
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.037655 -0.928320 0.369871 }
+        <Binormal> { -0.965265 0.050219 0.027772 }
+      }
+      <Normal> { 0.034761 0.119419 0.992218 }
+    }
+    <Vertex> 1392 {
+      -22.2257518768 18.2429676056 10.088552475
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.008497 -0.999481 0.031068 }
+        <Binormal> { -0.999919 -0.008500 0.000029 }
+      }
+      <Normal> { -0.000183 0.024903 0.999664 }
+    }
+    <Vertex> 1393 {
+      -22.2257518768 8.3847360611 10.6324720383
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 -0.998481 0.055090 }
+        <Binormal> { -0.996065 0.000002 0.000030 }
+      }
+      <Normal> { 0.000031 0.143101 0.989685 }
+    }
+    <Vertex> 1394 {
+      -17.4335174561 8.23613834381 10.6482791901
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.000000 -0.998481 0.055090 }
+        <Binormal> { -0.995969 0.000768 0.013926 }
+      }
+      <Normal> { 0.013947 0.143010 0.989593 }
+    }
+    <Vertex> 1395 {
+      -17.4335174561 17.7961158752 10.1208152771
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.100902 -0.994343 0.033186 }
+        <Binormal> { -0.993505 -0.102412 -0.047797 }
+      }
+      <Normal> { -0.049776 0.016816 0.998596 }
+    }
+    <Vertex> 1396 {
+      -22.2257518768 18.2429676056 10.088552475
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.008497 -0.999481 0.031068 }
+        <Binormal> { -0.999919 -0.008500 0.000029 }
+      }
+      <Normal> { -0.000183 0.024903 0.999664 }
+    }
+    <Vertex> 1397 {
+      -17.4335174561 17.7961158752 10.1208152771
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.100902 -0.994343 0.033186 }
+        <Binormal> { -0.993505 -0.102412 -0.047797 }
+      }
+      <Normal> { -0.049776 0.016816 0.998596 }
+    }
+    <Vertex> 1398 {
+      -18.9609832764 23.288646698 10.1459083557
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.126470 -0.991961 -0.004309 }
+        <Binormal> { -0.986891 -0.125428 -0.091183 }
+      }
+      <Normal> { -0.084292 -0.059847 0.994629 }
+    }
+    <Vertex> 1399 {
+      -22.3817481995 25.9545726776 10.1208152771
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.020224 -0.999787 -0.004183 }
+        <Binormal> { -0.998430 -0.020147 -0.011973 }
+      }
+      <Normal> { -0.010865 -0.054903 0.998413 }
+    }
+    <Vertex> 1400 {
+      -22.2257518768 18.2429676056 10.088552475
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.008497 -0.999481 0.031068 }
+        <Binormal> { -0.999919 -0.008500 0.000029 }
+      }
+      <Normal> { -0.000183 0.024903 0.999664 }
+    }
+    <Vertex> 1401 {
+      -22.3817481995 25.9545726776 10.1208152771
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.020224 -0.999787 -0.004183 }
+        <Binormal> { -0.998430 -0.020147 -0.011973 }
+      }
+      <Normal> { -0.010865 -0.054903 0.998413 }
+    }
+    <Vertex> 1402 {
+      -26.0451831818 23.288646698 10.1459083557
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.659829 -0.751376 -0.007698 }
+        <Binormal> { -0.750651 -0.659288 0.009343 }
+      }
+      <Normal> { 0.039583 -0.030915 0.998718 }
+    }
+    <Vertex> 1403 {
+      -27.3299808502 17.7961158752 10.1208152771
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.021516 0.022462 0.999512 }
+    }
+    <Vertex> 1404 {
+      -22.2257518768 18.2429676056 10.088552475
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.008497 -0.999481 0.031068 }
+        <Binormal> { -0.999919 -0.008500 0.000029 }
+      }
+      <Normal> { -0.000183 0.024903 0.999664 }
+    }
+    <Vertex> 1405 {
+      -27.3299808502 17.7961158752 10.1208152771
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.021516 0.022462 0.999512 }
+    }
+    <Vertex> 1406 {
+      -27.3299808502 8.23613834381 10.6482791901
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.000000 -0.959824 -0.280603 }
+        <Binormal> { -0.909777 0.001661 -0.005683 }
+      }
+      <Normal> { -0.005921 0.143071 0.989685 }
+    }
+    <Vertex> 1407 {
+      -22.2257518768 8.3847360611 10.6324720383
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 -0.998481 0.055090 }
+        <Binormal> { -0.996065 0.000002 0.000030 }
+      }
+      <Normal> { 0.000031 0.143101 0.989685 }
+    }
+    <Vertex> 1408 {
+      -35.5460090637 -9.05545520782 14.4399061203
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.101797 -0.994773 0.007967 }
+        <Binormal> { -0.994726 0.101794 0.000211 }
+      }
+      <Normal> { 0.000000 -0.002075 0.999969 }
+    }
+    <Vertex> 1409 {
+      -35.2990150452 -12.3532590866 14.3405208588
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.074654 -0.996757 -0.030039 }
+        <Binormal> { -0.757864 -0.055890 -0.028914 }
+      }
+      <Normal> { 0.021332 -0.672140 0.740074 }
+    }
+    <Vertex> 1410 {
+      -31.7861881256 -11.0136041641 14.2632236481
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.154076 -0.987574 -0.030965 }
+        <Binormal> { -0.912015 0.134791 0.239128 }
+      }
+      <Normal> { 0.185034 -0.366008 0.912015 }
+    }
+    <Vertex> 1411 {
+      -30.6600494385 -8.67641353607 14.3405208588
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.356833 -0.933751 0.027928 }
+        <Binormal> { -0.923794 0.357151 0.137845 }
+      }
+      <Normal> { 0.138890 -0.022858 0.990020 }
+    }
+    <Vertex> 1412 {
+      -35.5460090637 -9.05545520782 14.4399061203
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.101797 -0.994773 0.007967 }
+        <Binormal> { -0.994726 0.101794 0.000211 }
+      }
+      <Normal> { 0.000000 -0.002075 0.999969 }
+    }
+    <Vertex> 1413 {
+      -30.6600494385 -8.67641353607 14.3405208588
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.356833 -0.933751 0.027928 }
+        <Binormal> { -0.923794 0.357151 0.137845 }
+      }
+      <Normal> { 0.138890 -0.022858 0.990020 }
+    }
+    <Vertex> 1414 {
+      -28.9950714111 -3.70988488197 14.0447750092
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.207120 -0.977379 0.042804 }
+        <Binormal> { -0.974980 0.209799 0.072788 }
+      }
+      <Normal> { 0.081942 0.035249 0.996002 }
+    }
+    <Vertex> 1415 {
+      -35.2990150452 -4.99956703186 14.3405208588
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.060767 -0.997852 0.024451 }
+        <Binormal> { -0.994478 0.060286 -0.011242 }
+      }
+      <Normal> { -0.004578 0.109836 0.993927 }
+    }
+    <Vertex> 1416 {
+      -35.5460090637 -9.05545520782 14.4399061203
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.101797 -0.994773 0.007967 }
+        <Binormal> { -0.994726 0.101794 0.000211 }
+      }
+      <Normal> { 0.000000 -0.002075 0.999969 }
+    }
+    <Vertex> 1417 {
+      -35.2990150452 -4.99956703186 14.3405208588
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.060767 -0.997852 0.024451 }
+        <Binormal> { -0.994478 0.060286 -0.011242 }
+      }
+      <Normal> { -0.004578 0.109836 0.993927 }
+    }
+    <Vertex> 1418 {
+      -38.4276237488 -5.74959993362 14.2632236481
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.739475 -0.672354 0.033417 }
+        <Binormal> { -0.668420 -0.734914 0.004720 }
+      }
+      <Normal> { -0.105960 0.102725 0.989044 }
+    }
+    <Vertex> 1419 {
+      -39.9379806519 -8.67641353607 14.3405208588
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.365978 -0.105228 0.924619 }
+    }
+    <Vertex> 1420 {
+      -35.5460090637 -9.05545520782 14.4399061203
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.101797 -0.994773 0.007967 }
+        <Binormal> { -0.994726 0.101794 0.000211 }
+      }
+      <Normal> { 0.000000 -0.002075 0.999969 }
+    }
+    <Vertex> 1421 {
+      -39.9379806519 -8.67641353607 14.3405208588
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.365978 -0.105228 0.924619 }
+    }
+    <Vertex> 1422 {
+      -38.4276237488 -11.0136041641 14.2632236481
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.870147 -0.491220 -0.039322 }
+        <Binormal> { -0.126266 0.201624 0.275373 }
+      }
+      <Normal> { -0.683126 -0.702109 0.200842 }
+    }
+    <Vertex> 1423 {
+      -35.2990150452 -12.3532590866 14.3405208588
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.074654 -0.996757 -0.030039 }
+        <Binormal> { -0.757864 -0.055890 -0.028914 }
+      }
+      <Normal> { 0.021332 -0.672140 0.740074 }
+    }
+    <Vertex> 1424 {
+      -11.5488147736 -11.4075469971 0.264949798584
+      <UV>  {
+        0.802328 0.921866
+        <Tangent> { 0.557654 -0.111632 -0.822533 }
+        <Binormal> { 0.009846 -0.989932 0.141027 }
+      }
+      <Normal> { 0.830195 0.086703 0.550645 }
+    }
+    <Vertex> 1425 {
+      -11.8820056915 -8.38627338409 0.264949798584
+      <UV>  {
+        0.797318 0.860744
+        <Tangent> { 0.490264 -0.029612 -0.871071 }
+        <Binormal> { 0.037106 -0.997759 0.054803 }
+      }
+      <Normal> { 0.868465 0.059328 0.492111 }
+    }
+    <Vertex> 1426 {
+      -12.9233322144 -8.2720489502 1.86966729164
+      <UV>  {
+        0.839550 0.857178
+        <Tangent> { 0.551527 -0.052508 -0.832503 }
+        <Binormal> { -0.026327 -0.914186 0.040219 }
+      }
+      <Normal> { 0.541246 0.021393 0.840571 }
+    }
+    <Vertex> 1427 {
+      -12.8400325775 -11.2933235168 1.86966776848
+      <UV>  {
+        0.856632 0.924448
+        <Tangent> { 0.623758 -0.110552 -0.773760 }
+        <Binormal> { -0.070889 -0.926465 0.075224 }
+      }
+      <Normal> { 0.499466 0.032075 0.865719 }
+    }
+    <Vertex> 1428 {
+      -11.5488147736 -11.4075469971 0.264949798584
+      <UV>  {
+        0.802328 0.921866
+        <Tangent> { 0.557654 -0.111632 -0.822533 }
+        <Binormal> { 0.009846 -0.989932 0.141027 }
+      }
+      <Normal> { 0.830195 0.086703 0.550645 }
+    }
+    <Vertex> 1429 {
+      -12.8400325775 -11.2933235168 1.86966776848
+      <UV>  {
+        0.856632 0.924448
+        <Tangent> { 0.623758 -0.110552 -0.773760 }
+        <Binormal> { -0.070889 -0.926465 0.075224 }
+      }
+      <Normal> { 0.499466 0.032075 0.865719 }
+    }
+    <Vertex> 1430 {
+      -12.8338851929 -14.2589521408 1.91424322128
+      <UV>  {
+        0.873713 0.991719
+        <Tangent> { 0.670339 -0.107451 -0.734234 }
+        <Binormal> { -0.072608 -0.923206 0.068817 }
+      }
+      <Normal> { 0.436537 0.032685 0.899075 }
+    }
+    <Vertex> 1431 {
+      -11.3290185928 -14.1764011383 0.443251699209
+      <UV>  {
+        0.809422 0.984836
+        <Tangent> { 0.639591 -0.203376 -0.741324 }
+        <Binormal> { -0.068785 -0.975564 0.208292 }
+      }
+      <Normal> { 0.771752 0.080264 0.630787 }
+    }
+    <Vertex> 1432 {
+      -11.5488147736 -11.4075469971 0.264949798584
+      <UV>  {
+        0.802328 0.921866
+        <Tangent> { 0.557654 -0.111632 -0.822533 }
+        <Binormal> { 0.009846 -0.989932 0.141027 }
+      }
+      <Normal> { 0.830195 0.086703 0.550645 }
+    }
+    <Vertex> 1433 {
+      -11.3290185928 -14.1764011383 0.443251699209
+      <UV>  {
+        0.809422 0.984836
+        <Tangent> { 0.639591 -0.203376 -0.741324 }
+        <Binormal> { -0.068785 -0.975564 0.208292 }
+      }
+      <Normal> { 0.771752 0.080264 0.630787 }
+    }
+    <Vertex> 1434 {
+      -10.4264764786 -14.4343919754 -0.970763266087
+      <UV>  {
+        0.745131 0.977952
+        <Tangent> { 0.801127 -0.127308 -0.584798 }
+        <Binormal> { 0.006490 -0.974755 0.221091 }
+      }
+      <Normal> { 0.622211 0.177099 0.762535 }
+    }
+    <Vertex> 1435 {
+      -10.6696643829 -11.5162258148 -1.36310350895
+      <UV>  {
+        0.748192 0.919304
+        <Tangent> { 0.798170 -0.092062 -0.595357 }
+        <Binormal> { -0.006421 -0.988712 0.144280 }
+      }
+      <Normal> { 0.632923 0.107761 0.766625 }
+    }
+    <Vertex> 1436 {
+      -11.5488147736 -11.4075469971 0.264949798584
+      <UV>  {
+        0.802328 0.921866
+        <Tangent> { 0.557654 -0.111632 -0.822533 }
+        <Binormal> { 0.009846 -0.989932 0.141027 }
+      }
+      <Normal> { 0.830195 0.086703 0.550645 }
+    }
+    <Vertex> 1437 {
+      -10.6696643829 -11.5162258148 -1.36310350895
+      <UV>  {
+        0.748192 0.919304
+        <Tangent> { 0.798170 -0.092062 -0.595357 }
+        <Binormal> { -0.006421 -0.988712 0.144280 }
+      }
+      <Normal> { 0.632923 0.107761 0.766625 }
+    }
+    <Vertex> 1438 {
+      -11.0997304916 -8.51076793671 -1.38494825363
+      <UV>  {
+        0.749301 0.859394
+        <Tangent> { 0.780295 -0.104431 -0.616632 }
+        <Binormal> { -0.028234 -0.990095 0.131953 }
+      }
+      <Normal> { 0.654012 0.081576 0.752037 }
+    }
+    <Vertex> 1439 {
+      -11.8820056915 -8.38627338409 0.264949798584
+      <UV>  {
+        0.797318 0.860744
+        <Tangent> { 0.490264 -0.029612 -0.871071 }
+        <Binormal> { 0.037106 -0.997759 0.054803 }
+      }
+      <Normal> { 0.868465 0.059328 0.492111 }
+    }
+    <Vertex> 1440 {
+      -11.9930667877 20.0113945007 -2.25320339203
+      <UV>  {
+        0.783390 0.298647
+        <Tangent> { 0.491263 -0.015450 -0.870874 }
+        <Binormal> { -0.032366 -0.999442 -0.000527 }
+      }
+      <Normal> { 0.872250 -0.028504 0.488174 }
+    }
+    <Vertex> 1441 {
+      -11.9930667877 23.0735740662 -2.25320339203
+      <UV>  {
+        0.780250 0.241100
+        <Tangent> { 0.469045 -0.085050 -0.879070 }
+        <Binormal> { -0.039853 -0.996346 0.075132 }
+      }
+      <Normal> { 0.883389 0.000000 0.468581 }
+    }
+    <Vertex> 1442 {
+      -12.9510936737 23.1877994537 -0.648485422134
+      <UV>  {
+        0.823691 0.242242
+        <Tangent> { 0.510666 -0.086882 -0.855378 }
+        <Binormal> { -0.071723 -0.904273 0.049029 }
+      }
+      <Normal> { 0.564318 0.000000 0.825526 }
+    }
+    <Vertex> 1443 {
+      -12.9510936737 20.125617981 -0.648485422134
+      <UV>  {
+        0.827007 0.299331
+        <Tangent> { 0.509838 -0.083263 -0.856232 }
+        <Binormal> { -0.097563 -0.900792 0.029502 }
+      }
+      <Normal> { 0.558580 -0.033357 0.828730 }
+    }
+    <Vertex> 1444 {
+      -11.9930667877 20.0113945007 -2.25320339203
+      <UV>  {
+        0.783390 0.298647
+        <Tangent> { 0.491263 -0.015450 -0.870874 }
+        <Binormal> { -0.032366 -0.999442 -0.000527 }
+      }
+      <Normal> { 0.872250 -0.028504 0.488174 }
+    }
+    <Vertex> 1445 {
+      -12.9510936737 20.125617981 -0.648485422134
+      <UV>  {
+        0.827007 0.299331
+        <Tangent> { 0.509838 -0.083263 -0.856232 }
+        <Binormal> { -0.097563 -0.900792 0.029502 }
+      }
+      <Normal> { 0.558580 -0.033357 0.828730 }
+    }
+    <Vertex> 1446 {
+      -13.2726049423 16.1890468597 -0.81184643507
+      <UV>  {
+        0.830322 0.356420
+        <Tangent> { 0.604081 0.158105 -0.781082 }
+        <Binormal> { 0.054257 -0.923893 -0.145050 }
+      }
+      <Normal> { 0.533219 -0.100558 0.839961 }
+    }
+    <Vertex> 1447 {
+      -12.2074069977 16.0748214722 -2.36211061478
+      <UV>  {
+        0.785213 0.372497
+        <Tangent> { 0.551244 0.175389 -0.815702 }
+        <Binormal> { 0.030584 -0.980584 -0.190173 }
+      }
+      <Normal> { 0.813227 -0.086245 0.575488 }
+    }
+    <Vertex> 1448 {
+      -11.9930667877 20.0113945007 -2.25320339203
+      <UV>  {
+        0.783390 0.298647
+        <Tangent> { 0.491263 -0.015450 -0.870874 }
+        <Binormal> { -0.032366 -0.999442 -0.000527 }
+      }
+      <Normal> { 0.872250 -0.028504 0.488174 }
+    }
+    <Vertex> 1449 {
+      -12.2074069977 16.0748214722 -2.36211061478
+      <UV>  {
+        0.785213 0.372497
+        <Tangent> { 0.551244 0.175389 -0.815702 }
+        <Binormal> { 0.030584 -0.980584 -0.190173 }
+      }
+      <Normal> { 0.813227 -0.086245 0.575488 }
+    }
+    <Vertex> 1450 {
+      -11.2966690063 15.9450550079 -3.8851480484
+      <UV>  {
+        0.740080 0.373241
+        <Tangent> { 0.869572 -0.004739 -0.493783 }
+        <Binormal> { -0.021335 -0.997302 -0.028001 }
+      }
+      <Normal> { 0.548143 -0.035188 0.835627 }
+    }
+    <Vertex> 1451 {
+      -11.2430839539 19.8816280365 -3.8579211235
+      <UV>  {
+        0.737848 0.298866
+        <Tangent> { 0.828452 -0.015835 -0.559837 }
+        <Binormal> { -0.019224 -0.997978 -0.000220 }
+      }
+      <Normal> { 0.608783 -0.011902 0.793237 }
+    }
+    <Vertex> 1452 {
+      -11.9930667877 20.0113945007 -2.25320339203
+      <UV>  {
+        0.783390 0.298647
+        <Tangent> { 0.491263 -0.015450 -0.870874 }
+        <Binormal> { -0.032366 -0.999442 -0.000527 }
+      }
+      <Normal> { 0.872250 -0.028504 0.488174 }
+    }
+    <Vertex> 1453 {
+      -11.2430839539 19.8816280365 -3.8579211235
+      <UV>  {
+        0.737848 0.298866
+        <Tangent> { 0.828452 -0.015835 -0.559837 }
+        <Binormal> { -0.019224 -0.997978 -0.000220 }
+      }
+      <Normal> { 0.608783 -0.011902 0.793237 }
+    }
+    <Vertex> 1454 {
+      -11.2430839539 22.9438095093 -3.8579211235
+      <UV>  {
+        0.734971 0.241008
+        <Tangent> { 0.828476 -0.018100 -0.559732 }
+        <Binormal> { -0.014187 -0.996936 0.011240 }
+      }
+      <Normal> { 0.620960 0.000000 0.783807 }
+    }
+    <Vertex> 1455 {
+      -11.9930667877 23.0735740662 -2.25320339203
+      <UV>  {
+        0.780250 0.241100
+        <Tangent> { 0.469045 -0.085050 -0.879070 }
+        <Binormal> { -0.039853 -0.996346 0.075132 }
+      }
+      <Normal> { 0.883389 0.000000 0.468581 }
+    }
+    <Vertex> 1456 {
+      -11.9930696487 -5.40828943253 0.264949798584
+      <UV>  {
+        0.796475 0.803320
+        <Tangent> { 0.484664 -0.173803 -0.857259 }
+        <Binormal> { -0.013257 -0.981361 0.191468 }
+      }
+      <Normal> { 0.878414 0.080050 0.471114 }
+    }
+    <Vertex> 1457 {
+      -12.2074108124 -2.40582537651 -0.158726722002
+      <UV>  {
+        0.795475 0.743383
+        <Tangent> { 0.543287 -0.294444 -0.786220 }
+        <Binormal> { 0.042152 -0.925132 0.375595 }
+      }
+      <Normal> { 0.818873 0.247536 0.517808 }
+    }
+    <Vertex> 1458 {
+      -13.2726078033 -2.29160046577 1.3915374279
+      <UV>  {
+        0.831450 0.756246
+        <Tangent> { 0.617241 -0.263048 -0.741498 }
+        <Binormal> { 0.027849 -0.874568 0.333437 }
+      }
+      <Normal> { 0.519608 0.318766 0.792688 }
+    }
+    <Vertex> 1459 {
+      -12.9510955811 -5.29406452179 1.86966776848
+      <UV>  {
+        0.835500 0.806712
+        <Tangent> { 0.513714 -0.166980 -0.841556 }
+        <Binormal> { -0.060463 -0.892188 0.140118 }
+      }
+      <Normal> { 0.555864 0.092074 0.826136 }
+    }
+    <Vertex> 1460 {
+      -11.9930696487 -5.40828943253 0.264949798584
+      <UV>  {
+        0.796475 0.803320
+        <Tangent> { 0.484664 -0.173803 -0.857259 }
+        <Binormal> { -0.013257 -0.981361 0.191468 }
+      }
+      <Normal> { 0.878414 0.080050 0.471114 }
+    }
+    <Vertex> 1461 {
+      -12.9510955811 -5.29406452179 1.86966776848
+      <UV>  {
+        0.835500 0.806712
+        <Tangent> { 0.513714 -0.166980 -0.841556 }
+        <Binormal> { -0.060463 -0.892188 0.140118 }
+      }
+      <Normal> { 0.555864 0.092074 0.826136 }
+    }
+    <Vertex> 1462 {
+      -12.9233322144 -8.2720489502 1.86966729164
+      <UV>  {
+        0.839550 0.857178
+        <Tangent> { 0.551527 -0.052508 -0.832503 }
+        <Binormal> { -0.026327 -0.914186 0.040219 }
+      }
+      <Normal> { 0.541246 0.021393 0.840571 }
+    }
+    <Vertex> 1463 {
+      -11.8820056915 -8.38627338409 0.264949798584
+      <UV>  {
+        0.797318 0.860744
+        <Tangent> { 0.490264 -0.029612 -0.871071 }
+        <Binormal> { 0.037106 -0.997759 0.054803 }
+      }
+      <Normal> { 0.868465 0.059328 0.492111 }
+    }
+    <Vertex> 1464 {
+      -11.9930696487 -5.40828943253 0.264949798584
+      <UV>  {
+        0.796475 0.803320
+        <Tangent> { 0.484664 -0.173803 -0.857259 }
+        <Binormal> { -0.013257 -0.981361 0.191468 }
+      }
+      <Normal> { 0.878414 0.080050 0.471114 }
+    }
+    <Vertex> 1465 {
+      -11.8820056915 -8.38627338409 0.264949798584
+      <UV>  {
+        0.797318 0.860744
+        <Tangent> { 0.490264 -0.029612 -0.871071 }
+        <Binormal> { 0.037106 -0.997759 0.054803 }
+      }
+      <Normal> { 0.868465 0.059328 0.492111 }
+    }
+    <Vertex> 1466 {
+      -11.0997304916 -8.51076793671 -1.38494825363
+      <UV>  {
+        0.749301 0.859394
+        <Tangent> { 0.780295 -0.104431 -0.616632 }
+        <Binormal> { -0.028234 -0.990095 0.131953 }
+      }
+      <Normal> { 0.654012 0.081576 0.752037 }
+    }
+    <Vertex> 1467 {
+      -11.2430868149 -5.53805494308 -1.49715280533
+      <UV>  {
+        0.753084 0.799554
+        <Tangent> { 0.740378 -0.137229 -0.658034 }
+        <Binormal> { -0.027031 -0.984086 0.174812 }
+      }
+      <Normal> { 0.682760 0.109561 0.722343 }
+    }
+    <Vertex> 1468 {
+      -11.9930696487 -5.40828943253 0.264949798584
+      <UV>  {
+        0.796475 0.803320
+        <Tangent> { 0.484664 -0.173803 -0.857259 }
+        <Binormal> { -0.013257 -0.981361 0.191468 }
+      }
+      <Normal> { 0.878414 0.080050 0.471114 }
+    }
+    <Vertex> 1469 {
+      -11.2430868149 -5.53805494308 -1.49715280533
+      <UV>  {
+        0.753084 0.799554
+        <Tangent> { 0.740378 -0.137229 -0.658034 }
+        <Binormal> { -0.027031 -0.984086 0.174812 }
+      }
+      <Normal> { 0.682760 0.109561 0.722343 }
+    }
+    <Vertex> 1470 {
+      -11.2966709137 -2.53559160233 -1.91784119606
+      <UV>  {
+        0.754813 0.737804
+        <Tangent> { 0.780181 -0.133340 -0.611177 }
+        <Binormal> { 0.031171 -0.967119 0.250786 }
+      }
+      <Normal> { 0.646199 0.211005 0.733390 }
+    }
+    <Vertex> 1471 {
+      -12.2074108124 -2.40582537651 -0.158726722002
+      <UV>  {
+        0.795475 0.743383
+        <Tangent> { 0.543287 -0.294444 -0.786220 }
+        <Binormal> { 0.042152 -0.925132 0.375595 }
+      }
+      <Normal> { 0.818873 0.247536 0.517808 }
+    }
+    <Vertex> 1472 {
+      -12.8504314423 10.3894681931 -2.68883228302
+      <UV>  {
+        0.784400 0.478952
+        <Tangent> { 0.716282 -0.023817 -0.697405 }
+        <Binormal> { -0.068220 -0.996934 -0.036021 }
+      }
+      <Normal> { 0.703238 -0.073672 0.707114 }
+    }
+    <Vertex> 1473 {
+      -12.2074069977 16.0748214722 -2.36211061478
+      <UV>  {
+        0.785213 0.372497
+        <Tangent> { 0.551244 0.175389 -0.815702 }
+        <Binormal> { 0.030584 -0.980584 -0.190173 }
+      }
+      <Normal> { 0.813227 -0.086245 0.575488 }
+    }
+    <Vertex> 1474 {
+      -13.2726049423 16.1890468597 -0.81184643507
+      <UV>  {
+        0.830322 0.356420
+        <Tangent> { 0.604081 0.158105 -0.781082 }
+        <Binormal> { 0.054257 -0.923893 -0.145050 }
+      }
+      <Normal> { 0.533219 -0.100558 0.839961 }
+    }
+    <Vertex> 1475 {
+      -14.2371377945 10.5036935806 -1.30192875862
+      <UV>  {
+        0.825076 0.477622
+        <Tangent> { 0.709752 -0.026288 -0.703961 }
+        <Binormal> { -0.083084 -0.964066 -0.047767 }
+      }
+      <Normal> { 0.501602 -0.085879 0.860805 }
+    }
+    <Vertex> 1476 {
+      -12.8504314423 10.3894681931 -2.68883228302
+      <UV>  {
+        0.784400 0.478952
+        <Tangent> { 0.716282 -0.023817 -0.697405 }
+        <Binormal> { -0.068220 -0.996934 -0.036021 }
+      }
+      <Normal> { 0.703238 -0.073672 0.707114 }
+    }
+    <Vertex> 1477 {
+      -14.2371377945 10.5036935806 -1.30192875862
+      <UV>  {
+        0.825076 0.477622
+        <Tangent> { 0.709752 -0.026288 -0.703961 }
+        <Binormal> { -0.083084 -0.964066 -0.047767 }
+      }
+      <Normal> { 0.501602 -0.085879 0.860805 }
+    }
+    <Vertex> 1478 {
+      -14.8801593781 4.79867649078 -1.31388151646
+      <UV>  {
+        0.819830 0.598823
+        <Tangent> { 0.748237 -0.189227 -0.635873 }
+        <Binormal> { -0.074211 -0.955098 0.196898 }
+      }
+      <Normal> { 0.488571 0.139592 0.861263 }
+    }
+    <Vertex> 1479 {
+      -13.2791118622 4.68445158005 -2.5918776989
+      <UV>  {
+        0.784733 0.589275
+        <Tangent> { 0.800893 -0.168999 -0.574465 }
+        <Binormal> { -0.059182 -0.974833 0.204272 }
+      }
+      <Normal> { 0.647847 0.118351 0.752495 }
+    }
+    <Vertex> 1480 {
+      -12.8504314423 10.3894681931 -2.68883228302
+      <UV>  {
+        0.784400 0.478952
+        <Tangent> { 0.716282 -0.023817 -0.697405 }
+        <Binormal> { -0.068220 -0.996934 -0.036021 }
+      }
+      <Normal> { 0.703238 -0.073672 0.707114 }
+    }
+    <Vertex> 1481 {
+      -13.2791118622 4.68445158005 -2.5918776989
+      <UV>  {
+        0.784733 0.589275
+        <Tangent> { 0.800893 -0.168999 -0.574465 }
+        <Binormal> { -0.059182 -0.974833 0.204272 }
+      }
+      <Normal> { 0.647847 0.118351 0.752495 }
+    }
+    <Vertex> 1482 {
+      -11.5645942688 4.55468559265 -3.74585914612
+      <UV>  {
+        0.743356 0.590492
+        <Tangent> { 0.915003 -0.025220 -0.402658 }
+        <Binormal> { 0.021177 -0.993309 0.110337 }
+      }
+      <Normal> { 0.426588 0.108829 0.897855 }
+    }
+    <Vertex> 1483 {
+      -11.4574260712 10.2597026825 -3.96682834625
+      <UV>  {
+        0.741022 0.480651
+        <Tangent> { 0.918684 0.008162 -0.394908 }
+        <Binormal> { 0.000826 -0.997918 -0.018703 }
+      }
+      <Normal> { 0.450331 -0.016358 0.892666 }
+    }
+    <Vertex> 1484 {
+      -12.8504314423 10.3894681931 -2.68883228302
+      <UV>  {
+        0.784400 0.478952
+        <Tangent> { 0.716282 -0.023817 -0.697405 }
+        <Binormal> { -0.068220 -0.996934 -0.036021 }
+      }
+      <Normal> { 0.703238 -0.073672 0.707114 }
+    }
+    <Vertex> 1485 {
+      -11.4574260712 10.2597026825 -3.96682834625
+      <UV>  {
+        0.741022 0.480651
+        <Tangent> { 0.918684 0.008162 -0.394908 }
+        <Binormal> { 0.000826 -0.997918 -0.018703 }
+      }
+      <Normal> { 0.450331 -0.016358 0.892666 }
+    }
+    <Vertex> 1486 {
+      -11.2966690063 15.9450550079 -3.8851480484
+      <UV>  {
+        0.740080 0.373241
+        <Tangent> { 0.869572 -0.004739 -0.493783 }
+        <Binormal> { -0.021335 -0.997302 -0.028001 }
+      }
+      <Normal> { 0.548143 -0.035188 0.835627 }
+    }
+    <Vertex> 1487 {
+      -12.2074069977 16.0748214722 -2.36211061478
+      <UV>  {
+        0.785213 0.372497
+        <Tangent> { 0.551244 0.175389 -0.815702 }
+        <Binormal> { 0.030584 -0.980584 -0.190173 }
+      }
+      <Normal> { 0.813227 -0.086245 0.575488 }
+    }
+    <Vertex> 1488 {
+      -12.8504314423 0.68888771534 -1.42975592613
+      <UV>  {
+        0.789993 0.674727
+        <Tangent> { 0.708774 -0.175799 -0.683179 }
+        <Binormal> { 0.103802 -0.931891 0.347489 }
+      }
+      <Normal> { 0.699942 0.316660 0.640126 }
+    }
+    <Vertex> 1489 {
+      -13.2791118622 4.68445158005 -2.5918776989
+      <UV>  {
+        0.784733 0.589275
+        <Tangent> { 0.800893 -0.168999 -0.574465 }
+        <Binormal> { -0.059182 -0.974833 0.204272 }
+      }
+      <Normal> { 0.647847 0.118351 0.752495 }
+    }
+    <Vertex> 1490 {
+      -14.8801593781 4.79867649078 -1.31388151646
+      <UV>  {
+        0.819830 0.598823
+        <Tangent> { 0.748237 -0.189227 -0.635873 }
+        <Binormal> { -0.074211 -0.955098 0.196898 }
+      }
+      <Normal> { 0.488571 0.139592 0.861263 }
+    }
+    <Vertex> 1491 {
+      -14.2371377945 0.803112506866 -0.0428524985909
+      <UV>  {
+        0.825640 0.677535
+        <Tangent> { 0.721043 -0.122612 -0.681956 }
+        <Binormal> { 0.164844 -0.895304 0.335263 }
+      }
+      <Normal> { 0.476791 0.383892 0.790735 }
+    }
+    <Vertex> 1492 {
+      -12.8504314423 0.68888771534 -1.42975592613
+      <UV>  {
+        0.789993 0.674727
+        <Tangent> { 0.708774 -0.175799 -0.683179 }
+        <Binormal> { 0.103802 -0.931891 0.347489 }
+      }
+      <Normal> { 0.699942 0.316660 0.640126 }
+    }
+    <Vertex> 1493 {
+      -14.2371377945 0.803112506866 -0.0428524985909
+      <UV>  {
+        0.825640 0.677535
+        <Tangent> { 0.721043 -0.122612 -0.681956 }
+        <Binormal> { 0.164844 -0.895304 0.335263 }
+      }
+      <Normal> { 0.476791 0.383892 0.790735 }
+    }
+    <Vertex> 1494 {
+      -13.2726078033 -2.29160046577 1.3915374279
+      <UV>  {
+        0.831450 0.756246
+        <Tangent> { 0.617241 -0.263048 -0.741498 }
+        <Binormal> { 0.027849 -0.874568 0.333437 }
+      }
+      <Normal> { 0.519608 0.318766 0.792688 }
+    }
+    <Vertex> 1495 {
+      -12.2074108124 -2.40582537651 -0.158726722002
+      <UV>  {
+        0.795475 0.743383
+        <Tangent> { 0.543287 -0.294444 -0.786220 }
+        <Binormal> { 0.042152 -0.925132 0.375595 }
+      }
+      <Normal> { 0.818873 0.247536 0.517808 }
+    }
+    <Vertex> 1496 {
+      -12.8504314423 0.68888771534 -1.42975592613
+      <UV>  {
+        0.789993 0.674727
+        <Tangent> { 0.708774 -0.175799 -0.683179 }
+        <Binormal> { 0.103802 -0.931891 0.347489 }
+      }
+      <Normal> { 0.699942 0.316660 0.640126 }
+    }
+    <Vertex> 1497 {
+      -12.2074108124 -2.40582537651 -0.158726722002
+      <UV>  {
+        0.795475 0.743383
+        <Tangent> { 0.543287 -0.294444 -0.786220 }
+        <Binormal> { 0.042152 -0.925132 0.375595 }
+      }
+      <Normal> { 0.818873 0.247536 0.517808 }
+    }
+    <Vertex> 1498 {
+      -11.2966709137 -2.53559160233 -1.91784119606
+      <UV>  {
+        0.754813 0.737804
+        <Tangent> { 0.780181 -0.133340 -0.611177 }
+        <Binormal> { 0.031171 -0.967119 0.250786 }
+      }
+      <Normal> { 0.646199 0.211005 0.733390 }
+    }
+    <Vertex> 1499 {
+      -11.4574260712 0.559121608734 -2.86513662338
+      <UV>  {
+        0.749761 0.672163
+        <Tangent> { 0.862394 -0.087156 -0.498679 }
+        <Binormal> { 0.049689 -0.965422 0.254661 }
+      }
+      <Normal> { 0.524216 0.242317 0.816340 }
+    }
+    <Vertex> 1500 {
+      -12.8504314423 0.68888771534 -1.42975592613
+      <UV>  {
+        0.789993 0.674727
+        <Tangent> { 0.708774 -0.175799 -0.683179 }
+        <Binormal> { 0.103802 -0.931891 0.347489 }
+      }
+      <Normal> { 0.699942 0.316660 0.640126 }
+    }
+    <Vertex> 1501 {
+      -11.4574260712 0.559121608734 -2.86513662338
+      <UV>  {
+        0.749761 0.672163
+        <Tangent> { 0.862394 -0.087156 -0.498679 }
+        <Binormal> { 0.049689 -0.965422 0.254661 }
+      }
+      <Normal> { 0.524216 0.242317 0.816340 }
+    }
+    <Vertex> 1502 {
+      -11.5645942688 4.55468559265 -3.74585914612
+      <UV>  {
+        0.743356 0.590492
+        <Tangent> { 0.915003 -0.025220 -0.402658 }
+        <Binormal> { 0.021177 -0.993309 0.110337 }
+      }
+      <Normal> { 0.426588 0.108829 0.897855 }
+    }
+    <Vertex> 1503 {
+      -13.2791118622 4.68445158005 -2.5918776989
+      <UV>  {
+        0.784733 0.589275
+        <Tangent> { 0.800893 -0.168999 -0.574465 }
+        <Binormal> { -0.059182 -0.974833 0.204272 }
+      }
+      <Normal> { 0.647847 0.118351 0.752495 }
+    }
+    <Vertex> 1504 {
+      -5.4504237175 -11.3231954575 0.171608746052
+      <UV>  {
+        0.609120 0.917763
+        <Tangent> { 0.612755 0.121536 0.780871 }
+        <Binormal> { -0.016737 -0.985833 0.166570 }
+      }
+      <Normal> { -0.793695 0.114414 0.597400 }
+    }
+    <Vertex> 1505 {
+      -5.77582025528 -14.0086050034 0.0728101804852
+      <UV>  {
+        0.613086 0.975117
+        <Tangent> { 0.657014 0.035766 0.753030 }
+        <Binormal> { -0.018594 -0.997626 0.063606 }
+      }
+      <Normal> { -0.741813 0.056429 0.668203 }
+    }
+    <Vertex> 1506 {
+      -4.53326320648 -14.1648855209 1.29812788963
+      <UV>  {
+        0.583312 0.975667
+        <Tangent> { 0.674639 0.030666 0.737510 }
+        <Binormal> { 0.089475 -0.872349 -0.045575 }
+      }
+      <Normal> { -0.319193 -0.082064 0.944121 }
+    }
+    <Vertex> 1507 {
+      -4.33829259872 -11.25669384 1.53156352043
+      <UV>  {
+        0.577484 0.921236
+        <Tangent> { 0.633078 0.143527 0.760665 }
+        <Binormal> { 0.081398 -0.860917 0.094698 }
+      }
+      <Normal> { -0.356243 0.068819 0.931852 }
+    }
+    <Vertex> 1508 {
+      -5.4504237175 -11.3231954575 0.171608746052
+      <UV>  {
+        0.609120 0.917763
+        <Tangent> { 0.612755 0.121536 0.780871 }
+        <Binormal> { -0.016737 -0.985833 0.166570 }
+      }
+      <Normal> { -0.793695 0.114414 0.597400 }
+    }
+    <Vertex> 1509 {
+      -4.33829259872 -11.25669384 1.53156352043
+      <UV>  {
+        0.577484 0.921236
+        <Tangent> { 0.633078 0.143527 0.760665 }
+        <Binormal> { 0.081398 -0.860917 0.094698 }
+      }
+      <Normal> { -0.356243 0.068819 0.931852 }
+    }
+    <Vertex> 1510 {
+      -4.1140127182 -8.25123500824 1.05926406384
+      <UV>  {
+        0.571657 0.866805
+        <Tangent> { 0.645584 0.246080 0.722956 }
+        <Binormal> { 0.002245 -0.850554 0.287507 }
+      }
+      <Normal> { -0.401410 0.292337 0.867977 }
+    }
+    <Vertex> 1511 {
+      -5.06850767136 -8.36518573761 -0.216073006392
+      <UV>  {
+        0.607081 0.858261
+        <Tangent> { 0.614580 0.234157 0.753300 }
+        <Binormal> { -0.053983 -0.939583 0.336103 }
+      }
+      <Normal> { -0.764855 0.255470 0.591327 }
+    }
+    <Vertex> 1512 {
+      -5.4504237175 -11.3231954575 0.171608746052
+      <UV>  {
+        0.609120 0.917763
+        <Tangent> { 0.612755 0.121536 0.780871 }
+        <Binormal> { -0.016737 -0.985833 0.166570 }
+      }
+      <Normal> { -0.793695 0.114414 0.597400 }
+    }
+    <Vertex> 1513 {
+      -5.06850767136 -8.36518573761 -0.216073006392
+      <UV>  {
+        0.607081 0.858261
+        <Tangent> { 0.614580 0.234157 0.753300 }
+        <Binormal> { -0.053983 -0.939583 0.336103 }
+      }
+      <Normal> { -0.764855 0.255470 0.591327 }
+    }
+    <Vertex> 1514 {
+      -6.14313840866 -8.4844083786 -1.68592369556
+      <UV>  {
+        0.646144 0.855278
+        <Tangent> { 0.882204 0.063724 0.466535 }
+        <Binormal> { -0.041240 -0.976453 0.211358 }
+      }
+      <Normal> { -0.479659 0.204932 0.853175 }
+    }
+    <Vertex> 1515 {
+      -6.50391483307 -11.4107866287 -1.47977948189
+      <UV>  {
+        0.646255 0.915782
+        <Tangent> { 0.797124 0.062790 0.600542 }
+        <Binormal> { -0.014048 -0.990025 0.122159 }
+      }
+      <Normal> { -0.547655 0.110111 0.829402 }
+    }
+    <Vertex> 1516 {
+      -5.4504237175 -11.3231954575 0.171608746052
+      <UV>  {
+        0.609120 0.917763
+        <Tangent> { 0.612755 0.121536 0.780871 }
+        <Binormal> { -0.016737 -0.985833 0.166570 }
+      }
+      <Normal> { -0.793695 0.114414 0.597400 }
+    }
+    <Vertex> 1517 {
+      -6.50391483307 -11.4107866287 -1.47977948189
+      <UV>  {
+        0.646255 0.915782
+        <Tangent> { 0.797124 0.062790 0.600542 }
+        <Binormal> { -0.014048 -0.990025 0.122159 }
+      }
+      <Normal> { -0.547655 0.110111 0.829402 }
+    }
+    <Vertex> 1518 {
+      -6.85692882538 -14.240237236 -1.37037372589
+      <UV>  {
+        0.642860 0.974567
+        <Tangent> { 0.795518 0.089379 0.599301 }
+        <Binormal> { -0.025787 -0.973954 0.179485 }
+      }
+      <Normal> { -0.491623 0.170385 0.853938 }
+    }
+    <Vertex> 1519 {
+      -5.77582025528 -14.0086050034 0.0728101804852
+      <UV>  {
+        0.613086 0.975117
+        <Tangent> { 0.657014 0.035766 0.753030 }
+        <Binormal> { -0.018594 -0.997626 0.063606 }
+      }
+      <Normal> { -0.741813 0.056429 0.668203 }
+    }
+    <Vertex> 1520 {
+      -5.07858848572 20.0113945007 -2.25320339203
+      <UV>  {
+        0.605334 0.301975
+        <Tangent> { 0.433326 0.007078 0.901209 }
+        <Binormal> { -0.009718 -0.999848 0.012526 }
+      }
+      <Normal> { -0.900815 0.014191 0.433912 }
+    }
+    <Vertex> 1521 {
+      -5.07858848572 16.0748214722 -2.25320339203
+      <UV>  {
+        0.607152 0.376121
+        <Tangent> { 0.381856 -0.214051 0.899093 }
+        <Binormal> { -0.089007 -0.976571 -0.194695 }
+      }
+      <Normal> { -0.911802 0.001251 0.410565 }
+    }
+    <Vertex> 1522 {
+      -4.65152549744 16.2772274017 -0.64848524332
+      <UV>  {
+        0.575275 0.357573
+        <Tangent> { 0.288182 -0.202334 0.935955 }
+        <Binormal> { -0.137496 -0.893559 -0.150833 }
+      }
+      <Normal> { -0.751640 0.004334 0.659505 }
+    }
+    <Vertex> 1523 {
+      -4.51612854004 20.2782020569 -0.648485422134
+      <UV>  {
+        0.573537 0.300131
+        <Tangent> { 0.326046 0.089264 0.941130 }
+        <Binormal> { 0.022341 -0.900216 0.077644 }
+      }
+      <Normal> { -0.714652 0.042482 0.698172 }
+    }
+    <Vertex> 1524 {
+      -5.07858848572 20.0113945007 -2.25320339203
+      <UV>  {
+        0.605334 0.301975
+        <Tangent> { 0.433326 0.007078 0.901209 }
+        <Binormal> { -0.009718 -0.999848 0.012526 }
+      }
+      <Normal> { -0.900815 0.014191 0.433912 }
+    }
+    <Vertex> 1525 {
+      -4.51612854004 20.2782020569 -0.648485422134
+      <UV>  {
+        0.573537 0.300131
+        <Tangent> { 0.326046 0.089264 0.941130 }
+        <Binormal> { 0.022341 -0.900216 0.077644 }
+      }
+      <Normal> { -0.714652 0.042482 0.698172 }
+    }
+    <Vertex> 1526 {
+      -4.2453327179 23.4160194397 -0.648485422134
+      <UV>  {
+        0.571800 0.242689
+        <Tangent> { 0.393982 0.118816 0.911406 }
+        <Binormal> { 0.035828 -0.903592 0.102309 }
+      }
+      <Normal> { -0.672445 0.056887 0.737907 }
+    }
+    <Vertex> 1527 {
+      -5.07858848572 23.0735740662 -2.25320339203
+      <UV>  {
+        0.603514 0.244386
+        <Tangent> { 0.487106 0.098844 0.867731 }
+        <Binormal> { 0.027782 -0.994223 0.097657 }
+      }
+      <Normal> { -0.888882 0.020112 0.457625 }
+    }
+    <Vertex> 1528 {
+      -5.07858848572 20.0113945007 -2.25320339203
+      <UV>  {
+        0.605334 0.301975
+        <Tangent> { 0.433326 0.007078 0.901209 }
+        <Binormal> { -0.009718 -0.999848 0.012526 }
+      }
+      <Normal> { -0.900815 0.014191 0.433912 }
+    }
+    <Vertex> 1529 {
+      -5.07858848572 23.0735740662 -2.25320339203
+      <UV>  {
+        0.603514 0.244386
+        <Tangent> { 0.487106 0.098844 0.867731 }
+        <Binormal> { 0.027782 -0.994223 0.097657 }
+      }
+      <Normal> { -0.888882 0.020112 0.457625 }
+    }
+    <Vertex> 1530 {
+      -6.05722475052 22.9438095093 -3.8579211235
+      <UV>  {
+        0.639997 0.244893
+        <Tangent> { 0.832010 0.056806 0.551845 }
+        <Binormal> { 0.046500 -0.998030 0.032629 }
+      }
+      <Normal> { -0.574389 0.000000 0.818567 }
+    }
+    <Vertex> 1531 {
+      -6.05722475052 19.8816280365 -3.8579211235
+      <UV>  {
+        0.642011 0.302627
+        <Tangent> { 0.831912 0.055003 0.552175 }
+        <Binormal> { 0.045023 -0.998139 0.031593 }
+      }
+      <Normal> { -0.574389 0.000000 0.818567 }
+    }
+    <Vertex> 1532 {
+      -5.07858848572 20.0113945007 -2.25320339203
+      <UV>  {
+        0.605334 0.301975
+        <Tangent> { 0.433326 0.007078 0.901209 }
+        <Binormal> { -0.009718 -0.999848 0.012526 }
+      }
+      <Normal> { -0.900815 0.014191 0.433912 }
+    }
+    <Vertex> 1533 {
+      -6.05722475052 19.8816280365 -3.8579211235
+      <UV>  {
+        0.642011 0.302627
+        <Tangent> { 0.831912 0.055003 0.552175 }
+        <Binormal> { 0.045023 -0.998139 0.031593 }
+      }
+      <Normal> { -0.574389 0.000000 0.818567 }
+    }
+    <Vertex> 1534 {
+      -6.05722570419 15.9450550079 -3.85792136192
+      <UV>  {
+        0.643935 0.376977
+        <Tangent> { 0.831993 0.050098 0.552520 }
+        <Binormal> { 0.041009 -0.998403 0.028776 }
+      }
+      <Normal> { -0.574389 0.000000 0.818567 }
+    }
+    <Vertex> 1535 {
+      -5.07858848572 16.0748214722 -2.25320339203
+      <UV>  {
+        0.607152 0.376121
+        <Tangent> { 0.381856 -0.214051 0.899093 }
+        <Binormal> { -0.089007 -0.976571 -0.194695 }
+      }
+      <Normal> { -0.911802 0.001251 0.410565 }
+    }
+    <Vertex> 1536 {
+      -4.66642713547 -5.40828943253 -1.56579959393
+      <UV>  {
+        0.608898 0.794463
+        <Tangent> { 0.728259 0.172345 0.663277 }
+        <Binormal> { -0.106702 -0.927489 0.358153 }
+      }
+      <Normal> { -0.673757 0.332347 0.659932 }
+    }
+    <Vertex> 1537 {
+      -5.06850767136 -8.36518573761 -0.216073006392
+      <UV>  {
+        0.607081 0.858261
+        <Tangent> { 0.614580 0.234157 0.753300 }
+        <Binormal> { -0.053983 -0.939583 0.336103 }
+      }
+      <Normal> { -0.764855 0.255470 0.591327 }
+    }
+    <Vertex> 1538 {
+      -4.1140127182 -8.25123500824 1.05926406384
+      <UV>  {
+        0.571657 0.866805
+        <Tangent> { 0.645584 0.246080 0.722956 }
+        <Binormal> { 0.002245 -0.850554 0.287507 }
+      }
+      <Normal> { -0.401410 0.292337 0.867977 }
+    }
+    <Vertex> 1539 {
+      -3.62709021568 -5.27852344513 -0.40430277586
+      <UV>  {
+        0.573326 0.798771
+        <Tangent> { 0.688375 0.206234 0.695419 }
+        <Binormal> { -0.092745 -0.877274 0.351971 }
+      }
+      <Normal> { -0.467360 0.371288 0.802271 }
+    }
+    <Vertex> 1540 {
+      -4.66642713547 -5.40828943253 -1.56579959393
+      <UV>  {
+        0.608898 0.794463
+        <Tangent> { 0.728259 0.172345 0.663277 }
+        <Binormal> { -0.106702 -0.927489 0.358153 }
+      }
+      <Normal> { -0.673757 0.332347 0.659932 }
+    }
+    <Vertex> 1541 {
+      -3.62709021568 -5.27852344513 -0.40430277586
+      <UV>  {
+        0.573326 0.798771
+        <Tangent> { 0.688375 0.206234 0.695419 }
+        <Binormal> { -0.092745 -0.877274 0.351971 }
+      }
+      <Normal> { -0.467360 0.371288 0.802271 }
+    }
+    <Vertex> 1542 {
+      -3.31796836853 -2.2760591507 -1.65932631493
+      <UV>  {
+        0.574996 0.730736
+        <Tangent> { 0.679897 0.120334 0.723366 }
+        <Binormal> { 0.003681 -0.960768 0.156367 }
+      }
+      <Normal> { -0.558153 0.131199 0.819269 }
+    }
+    <Vertex> 1543 {
+      -4.46034574509 -2.40582537651 -2.79594349861
+      <UV>  {
+        0.611473 0.729839
+        <Tangent> { 0.803286 0.100387 0.587073 }
+        <Binormal> { -0.011842 -0.980828 0.183922 }
+      }
+      <Normal> { -0.644795 0.148381 0.749779 }
+    }
+    <Vertex> 1544 {
+      -4.66642713547 -5.40828943253 -1.56579959393
+      <UV>  {
+        0.608898 0.794463
+        <Tangent> { 0.728259 0.172345 0.663277 }
+        <Binormal> { -0.106702 -0.927489 0.358153 }
+      }
+      <Normal> { -0.673757 0.332347 0.659932 }
+    }
+    <Vertex> 1545 {
+      -4.46034574509 -2.40582537651 -2.79594349861
+      <UV>  {
+        0.611473 0.729839
+        <Tangent> { 0.803286 0.100387 0.587073 }
+        <Binormal> { -0.011842 -0.980828 0.183922 }
+      }
+      <Normal> { -0.644795 0.148381 0.749779 }
+    }
+    <Vertex> 1546 {
+      -5.90266561508 -2.53559160233 -3.52145266533
+      <UV>  {
+        0.652771 0.729502
+        <Tangent> { 0.981077 0.023330 0.192208 }
+        <Binormal> { -0.015373 -0.978895 0.197281 }
+      }
+      <Normal> { -0.242561 0.195318 0.950255 }
+    }
+    <Vertex> 1547 {
+      -5.95418548584 -5.53805494308 -2.58437824249
+      <UV>  {
+        0.649699 0.792454
+        <Tangent> { 0.962772 0.045216 0.266505 }
+        <Binormal> { -0.037377 -0.952327 0.296603 }
+      }
+      <Normal> { -0.325297 0.292795 0.899106 }
+    }
+    <Vertex> 1548 {
+      -4.66642713547 -5.40828943253 -1.56579959393
+      <UV>  {
+        0.608898 0.794463
+        <Tangent> { 0.728259 0.172345 0.663277 }
+        <Binormal> { -0.106702 -0.927489 0.358153 }
+      }
+      <Normal> { -0.673757 0.332347 0.659932 }
+    }
+    <Vertex> 1549 {
+      -5.95418548584 -5.53805494308 -2.58437824249
+      <UV>  {
+        0.649699 0.792454
+        <Tangent> { 0.962772 0.045216 0.266505 }
+        <Binormal> { -0.037377 -0.952327 0.296603 }
+      }
+      <Normal> { -0.325297 0.292795 0.899106 }
+    }
+    <Vertex> 1550 {
+      -6.14313840866 -8.4844083786 -1.68592369556
+      <UV>  {
+        0.646144 0.855278
+        <Tangent> { 0.882204 0.063724 0.466535 }
+        <Binormal> { -0.041240 -0.976453 0.211358 }
+      }
+      <Normal> { -0.479659 0.204932 0.853175 }
+    }
+    <Vertex> 1551 {
+      -5.06850767136 -8.36518573761 -0.216073006392
+      <UV>  {
+        0.607081 0.858261
+        <Tangent> { 0.614580 0.234157 0.753300 }
+        <Binormal> { -0.053983 -0.939583 0.336103 }
+      }
+      <Normal> { -0.764855 0.255470 0.591327 }
+    }
+    <Vertex> 1552 {
+      -5.07858848572 10.3894691467 -2.25320339203
+      <UV>  {
+        0.608966 0.483381
+        <Tangent> { 0.442298 0.027441 0.896448 }
+        <Binormal> { 0.029612 -0.999402 0.015982 }
+      }
+      <Normal> { -0.894284 -0.019349 0.447035 }
+    }
+    <Vertex> 1553 {
+      -4.97554731369 4.68445158005 -2.39612150192
+      <UV>  {
+        0.610559 0.591408
+        <Tangent> { 0.496952 0.254438 0.829638 }
+        <Binormal> { 0.203065 -0.963152 0.173749 }
+      }
+      <Normal> { -0.828791 -0.074709 0.554491 }
+    }
+    <Vertex> 1554 {
+      -4.15847110748 4.82189369202 -0.862862765789
+      <UV>  {
+        0.579086 0.604180
+        <Tangent> { 0.445809 0.253351 0.858526 }
+        <Binormal> { 0.294482 -0.887981 0.109127 }
+      }
+      <Normal> { -0.640278 -0.119083 0.758812 }
+    }
+    <Vertex> 1555 {
+      -4.51612854004 10.5499382019 -0.648485422134
+      <UV>  {
+        0.577180 0.480876
+        <Tangent> { 0.333683 0.025945 0.942328 }
+        <Binormal> { 0.056754 -0.904755 0.004814 }
+      }
+      <Normal> { -0.711875 -0.040925 0.701071 }
+    }
+    <Vertex> 1556 {
+      -5.07858848572 10.3894691467 -2.25320339203
+      <UV>  {
+        0.608966 0.483381
+        <Tangent> { 0.442298 0.027441 0.896448 }
+        <Binormal> { 0.029612 -0.999402 0.015982 }
+      }
+      <Normal> { -0.894284 -0.019349 0.447035 }
+    }
+    <Vertex> 1557 {
+      -4.51612854004 10.5499382019 -0.648485422134
+      <UV>  {
+        0.577180 0.480876
+        <Tangent> { 0.333683 0.025945 0.942328 }
+        <Binormal> { 0.056754 -0.904755 0.004814 }
+      }
+      <Normal> { -0.711875 -0.040925 0.701071 }
+    }
+    <Vertex> 1558 {
+      -4.65152549744 16.2772274017 -0.64848524332
+      <UV>  {
+        0.575275 0.357573
+        <Tangent> { 0.288182 -0.202334 0.935955 }
+        <Binormal> { -0.137496 -0.893559 -0.150833 }
+      }
+      <Normal> { -0.751640 0.004334 0.659505 }
+    }
+    <Vertex> 1559 {
+      -5.07858848572 16.0748214722 -2.25320339203
+      <UV>  {
+        0.607152 0.376121
+        <Tangent> { 0.381856 -0.214051 0.899093 }
+        <Binormal> { -0.089007 -0.976571 -0.194695 }
+      }
+      <Normal> { -0.911802 0.001251 0.410565 }
+    }
+    <Vertex> 1560 {
+      -5.07858848572 10.3894691467 -2.25320339203
+      <UV>  {
+        0.608966 0.483381
+        <Tangent> { 0.442298 0.027441 0.896448 }
+        <Binormal> { 0.029612 -0.999402 0.015982 }
+      }
+      <Normal> { -0.894284 -0.019349 0.447035 }
+    }
+    <Vertex> 1561 {
+      -5.07858848572 16.0748214722 -2.25320339203
+      <UV>  {
+        0.607152 0.376121
+        <Tangent> { 0.381856 -0.214051 0.899093 }
+        <Binormal> { -0.089007 -0.976571 -0.194695 }
+      }
+      <Normal> { -0.911802 0.001251 0.410565 }
+    }
+    <Vertex> 1562 {
+      -6.05722570419 15.9450550079 -3.85792136192
+      <UV>  {
+        0.643935 0.376977
+        <Tangent> { 0.831993 0.050098 0.552520 }
+        <Binormal> { 0.041009 -0.998403 0.028776 }
+      }
+      <Normal> { -0.574389 0.000000 0.818567 }
+    }
+    <Vertex> 1563 {
+      -6.05722475052 10.2597026825 -3.8579211235
+      <UV>  {
+        0.645677 0.484559
+        <Tangent> { 0.832208 0.044450 0.552679 }
+        <Binormal> { 0.037206 -0.998947 0.024318 }
+      }
+      <Normal> { -0.560228 -0.000702 0.828303 }
+    }
+    <Vertex> 1564 {
+      -5.07858848572 10.3894691467 -2.25320339203
+      <UV>  {
+        0.608966 0.483381
+        <Tangent> { 0.442298 0.027441 0.896448 }
+        <Binormal> { 0.029612 -0.999402 0.015982 }
+      }
+      <Normal> { -0.894284 -0.019349 0.447035 }
+    }
+    <Vertex> 1565 {
+      -6.05722475052 10.2597026825 -3.8579211235
+      <UV>  {
+        0.645677 0.484559
+        <Tangent> { 0.832208 0.044450 0.552679 }
+        <Binormal> { 0.037206 -0.998947 0.024318 }
+      }
+      <Normal> { -0.560228 -0.000702 0.828303 }
+    }
+    <Vertex> 1566 {
+      -6.0314655304 4.55468559265 -3.8543047905
+      <UV>  {
+        0.647886 0.592673
+        <Tangent> { 0.890930 0.033279 0.452920 }
+        <Binormal> { 0.030834 -0.998846 0.012738 }
+      }
+      <Normal> { -0.483261 -0.003754 0.875454 }
+    }
+    <Vertex> 1567 {
+      -4.97554731369 4.68445158005 -2.39612150192
+      <UV>  {
+        0.610559 0.591408
+        <Tangent> { 0.496952 0.254438 0.829638 }
+        <Binormal> { 0.203065 -0.963152 0.173749 }
+      }
+      <Normal> { -0.828791 -0.074709 0.554491 }
+    }
+    <Vertex> 1568 {
+      -4.66642618179 0.68888771534 -2.82487607002
+      <UV>  {
+        0.611710 0.667857
+        <Tangent> { 0.670791 0.127072 0.730679 }
+        <Binormal> { 0.140305 -0.988945 0.043182 }
+      }
+      <Normal> { -0.714866 -0.071047 0.695608 }
+    }
+    <Vertex> 1569 {
+      -4.46034574509 -2.40582537651 -2.79594349861
+      <UV>  {
+        0.611473 0.729839
+        <Tangent> { 0.803286 0.100387 0.587073 }
+        <Binormal> { -0.011842 -0.980828 0.183922 }
+      }
+      <Normal> { -0.644795 0.148381 0.749779 }
+    }
+    <Vertex> 1570 {
+      -3.31796836853 -2.2760591507 -1.65932631493
+      <UV>  {
+        0.574996 0.730736
+        <Tangent> { 0.679897 0.120334 0.723366 }
+        <Binormal> { 0.003681 -0.960768 0.156367 }
+      }
+      <Normal> { -0.558153 0.131199 0.819269 }
+    }
+    <Vertex> 1571 {
+      -3.62708950043 0.81865388155 -1.50599467754
+      <UV>  {
+        0.577041 0.667458
+        <Tangent> { 0.619387 0.063829 0.782487 }
+        <Binormal> { 0.148093 -0.957039 -0.039157 }
+      }
+      <Normal> { -0.593921 -0.124424 0.794824 }
+    }
+    <Vertex> 1572 {
+      -4.66642618179 0.68888771534 -2.82487607002
+      <UV>  {
+        0.611710 0.667857
+        <Tangent> { 0.670791 0.127072 0.730679 }
+        <Binormal> { 0.140305 -0.988945 0.043182 }
+      }
+      <Normal> { -0.714866 -0.071047 0.695608 }
+    }
+    <Vertex> 1573 {
+      -3.62708950043 0.81865388155 -1.50599467754
+      <UV>  {
+        0.577041 0.667458
+        <Tangent> { 0.619387 0.063829 0.782487 }
+        <Binormal> { 0.148093 -0.957039 -0.039157 }
+      }
+      <Normal> { -0.593921 -0.124424 0.794824 }
+    }
+    <Vertex> 1574 {
+      -4.15847110748 4.82189369202 -0.862862765789
+      <UV>  {
+        0.579086 0.604180
+        <Tangent> { 0.445809 0.253351 0.858526 }
+        <Binormal> { 0.294482 -0.887981 0.109127 }
+      }
+      <Normal> { -0.640278 -0.119083 0.758812 }
+    }
+    <Vertex> 1575 {
+      -4.97554731369 4.68445158005 -2.39612150192
+      <UV>  {
+        0.610559 0.591408
+        <Tangent> { 0.496952 0.254438 0.829638 }
+        <Binormal> { 0.203065 -0.963152 0.173749 }
+      }
+      <Normal> { -0.828791 -0.074709 0.554491 }
+    }
+    <Vertex> 1576 {
+      -4.66642618179 0.68888771534 -2.82487607002
+      <UV>  {
+        0.611710 0.667857
+        <Tangent> { 0.670791 0.127072 0.730679 }
+        <Binormal> { 0.140305 -0.988945 0.043182 }
+      }
+      <Normal> { -0.714866 -0.071047 0.695608 }
+    }
+    <Vertex> 1577 {
+      -4.97554731369 4.68445158005 -2.39612150192
+      <UV>  {
+        0.610559 0.591408
+        <Tangent> { 0.496952 0.254438 0.829638 }
+        <Binormal> { 0.203065 -0.963152 0.173749 }
+      }
+      <Normal> { -0.828791 -0.074709 0.554491 }
+    }
+    <Vertex> 1578 {
+      -6.0314655304 4.55468559265 -3.8543047905
+      <UV>  {
+        0.647886 0.592673
+        <Tangent> { 0.890930 0.033279 0.452920 }
+        <Binormal> { 0.030834 -0.998846 0.012738 }
+      }
+      <Normal> { -0.483261 -0.003754 0.875454 }
+    }
+    <Vertex> 1579 {
+      -5.95418548584 0.559121608734 -3.8434548378
+      <UV>  {
+        0.651208 0.668615
+        <Tangent> { 0.964026 0.017725 0.265215 }
+        <Binormal> { 0.004886 -0.996378 0.048833 }
+      }
+      <Normal> { -0.331645 0.044557 0.942320 }
+    }
+    <Vertex> 1580 {
+      -4.66642618179 0.68888771534 -2.82487607002
+      <UV>  {
+        0.611710 0.667857
+        <Tangent> { 0.670791 0.127072 0.730679 }
+        <Binormal> { 0.140305 -0.988945 0.043182 }
+      }
+      <Normal> { -0.714866 -0.071047 0.695608 }
+    }
+    <Vertex> 1581 {
+      -5.95418548584 0.559121608734 -3.8434548378
+      <UV>  {
+        0.651208 0.668615
+        <Tangent> { 0.964026 0.017725 0.265215 }
+        <Binormal> { 0.004886 -0.996378 0.048833 }
+      }
+      <Normal> { -0.331645 0.044557 0.942320 }
+    }
+    <Vertex> 1582 {
+      -5.90266561508 -2.53559160233 -3.52145266533
+      <UV>  {
+        0.652771 0.729502
+        <Tangent> { 0.981077 0.023330 0.192208 }
+        <Binormal> { -0.015373 -0.978895 0.197281 }
+      }
+      <Normal> { -0.242561 0.195318 0.950255 }
+    }
+    <Vertex> 1583 {
+      -4.46034574509 -2.40582537651 -2.79594349861
+      <UV>  {
+        0.611473 0.729839
+        <Tangent> { 0.803286 0.100387 0.587073 }
+        <Binormal> { -0.011842 -0.980828 0.183922 }
+      }
+      <Normal> { -0.644795 0.148381 0.749779 }
+    }
+    <Vertex> 1584 {
+      -8.68826389313 0.515866219997 -3.76328897476
+      <UV>  {
+        0.700363 0.670088
+        <Tangent> { 0.987235 -0.028549 -0.156691 }
+        <Binormal> { -0.003327 -0.987253 0.158910 }
+      }
+      <Normal> { 0.157598 0.156407 0.975005 }
+    }
+    <Vertex> 1585 {
+      -8.68826580048 -2.57884645462 -3.13375067711
+      <UV>  {
+        0.703898 0.732667
+        <Tangent> { 0.959920 -0.072165 -0.270826 }
+        <Binormal> { -0.013520 -0.975780 0.212088 }
+      }
+      <Normal> { 0.230445 0.203619 0.951506 }
+    }
+    <Vertex> 1586 {
+      -5.90266561508 -2.53559160233 -3.52145266533
+      <UV>  {
+        0.652771 0.729502
+        <Tangent> { 0.981077 0.023330 0.192208 }
+        <Binormal> { -0.015373 -0.978895 0.197281 }
+      }
+      <Normal> { -0.242561 0.195318 0.950255 }
+    }
+    <Vertex> 1587 {
+      -5.95418548584 0.559121608734 -3.8434548378
+      <UV>  {
+        0.651208 0.668615
+        <Tangent> { 0.964026 0.017725 0.265215 }
+        <Binormal> { 0.004886 -0.996378 0.048833 }
+      }
+      <Normal> { -0.331645 0.044557 0.942320 }
+    }
+    <Vertex> 1588 {
+      -8.68826389313 0.515866219997 -3.76328897476
+      <UV>  {
+        0.700363 0.670088
+        <Tangent> { 0.987235 -0.028549 -0.156691 }
+        <Binormal> { -0.003327 -0.987253 0.158910 }
+      }
+      <Normal> { 0.157598 0.156407 0.975005 }
+    }
+    <Vertex> 1589 {
+      -5.95418548584 0.559121608734 -3.8434548378
+      <UV>  {
+        0.651208 0.668615
+        <Tangent> { 0.964026 0.017725 0.265215 }
+        <Binormal> { 0.004886 -0.996378 0.048833 }
+      }
+      <Normal> { -0.331645 0.044557 0.942320 }
+    }
+    <Vertex> 1590 {
+      -6.0314655304 4.55468559265 -3.8543047905
+      <UV>  {
+        0.647886 0.592673
+        <Tangent> { 0.890930 0.033279 0.452920 }
+        <Binormal> { 0.030834 -0.998846 0.012738 }
+      }
+      <Normal> { -0.483261 -0.003754 0.875454 }
+    }
+    <Vertex> 1591 {
+      -8.68826389313 4.51143074036 -4.2354426384
+      <UV>  {
+        0.694946 0.591996
+        <Tangent> { 0.999613 0.020521 -0.018783 }
+        <Binormal> { 0.021739 -0.997132 0.067537 }
+      }
+      <Normal> { 0.043336 0.068453 0.996704 }
+    }
+    <Vertex> 1592 {
+      -8.68826389313 0.515866219997 -3.76328897476
+      <UV>  {
+        0.700363 0.670088
+        <Tangent> { 0.987235 -0.028549 -0.156691 }
+        <Binormal> { -0.003327 -0.987253 0.158910 }
+      }
+      <Normal> { 0.157598 0.156407 0.975005 }
+    }
+    <Vertex> 1593 {
+      -8.68826389313 4.51143074036 -4.2354426384
+      <UV>  {
+        0.694946 0.591996
+        <Tangent> { 0.999613 0.020521 -0.018783 }
+        <Binormal> { 0.021739 -0.997132 0.067537 }
+      }
+      <Normal> { 0.043336 0.068453 0.996704 }
+    }
+    <Vertex> 1594 {
+      -11.5645942688 4.55468559265 -3.74585914612
+      <UV>  {
+        0.743356 0.590492
+        <Tangent> { 0.915003 -0.025220 -0.402658 }
+        <Binormal> { 0.021177 -0.993309 0.110337 }
+      }
+      <Normal> { 0.426588 0.108829 0.897855 }
+    }
+    <Vertex> 1595 {
+      -11.4574260712 0.559121608734 -2.86513662338
+      <UV>  {
+        0.749761 0.672163
+        <Tangent> { 0.862394 -0.087156 -0.498679 }
+        <Binormal> { 0.049689 -0.965422 0.254661 }
+      }
+      <Normal> { 0.524216 0.242317 0.816340 }
+    }
+    <Vertex> 1596 {
+      -8.68826389313 0.515866219997 -3.76328897476
+      <UV>  {
+        0.700363 0.670088
+        <Tangent> { 0.987235 -0.028549 -0.156691 }
+        <Binormal> { -0.003327 -0.987253 0.158910 }
+      }
+      <Normal> { 0.157598 0.156407 0.975005 }
+    }
+    <Vertex> 1597 {
+      -11.4574260712 0.559121608734 -2.86513662338
+      <UV>  {
+        0.749761 0.672163
+        <Tangent> { 0.862394 -0.087156 -0.498679 }
+        <Binormal> { 0.049689 -0.965422 0.254661 }
+      }
+      <Normal> { 0.524216 0.242317 0.816340 }
+    }
+    <Vertex> 1598 {
+      -11.2966709137 -2.53559160233 -1.91784119606
+      <UV>  {
+        0.754813 0.737804
+        <Tangent> { 0.780181 -0.133340 -0.611177 }
+        <Binormal> { 0.031171 -0.967119 0.250786 }
+      }
+      <Normal> { 0.646199 0.211005 0.733390 }
+    }
+    <Vertex> 1599 {
+      -8.68826580048 -2.57884645462 -3.13375067711
+      <UV>  {
+        0.703898 0.732667
+        <Tangent> { 0.959920 -0.072165 -0.270826 }
+        <Binormal> { -0.013520 -0.975780 0.212088 }
+      }
+      <Normal> { 0.230445 0.203619 0.951506 }
+    }
+    <Vertex> 1600 {
+      -8.68826389313 10.2164478302 -4.392827034
+      <UV>  {
+        0.692238 0.483085
+        <Tangent> { 0.999382 0.033652 0.010117 }
+        <Binormal> { 0.033559 -0.999390 0.009267 }
+      }
+      <Normal> { -0.009827 0.008942 0.999908 }
+    }
+    <Vertex> 1601 {
+      -8.68826389313 4.51143074036 -4.2354426384
+      <UV>  {
+        0.694946 0.591996
+        <Tangent> { 0.999613 0.020521 -0.018783 }
+        <Binormal> { 0.021739 -0.997132 0.067537 }
+      }
+      <Normal> { 0.043336 0.068453 0.996704 }
+    }
+    <Vertex> 1602 {
+      -6.0314655304 4.55468559265 -3.8543047905
+      <UV>  {
+        0.647886 0.592673
+        <Tangent> { 0.890930 0.033279 0.452920 }
+        <Binormal> { 0.030834 -0.998846 0.012738 }
+      }
+      <Normal> { -0.483261 -0.003754 0.875454 }
+    }
+    <Vertex> 1603 {
+      -6.05722475052 10.2597026825 -3.8579211235
+      <UV>  {
+        0.645677 0.484559
+        <Tangent> { 0.832208 0.044450 0.552679 }
+        <Binormal> { 0.037206 -0.998947 0.024318 }
+      }
+      <Normal> { -0.560228 -0.000702 0.828303 }
+    }
+    <Vertex> 1604 {
+      -8.68826389313 10.2164478302 -4.392827034
+      <UV>  {
+        0.692238 0.483085
+        <Tangent> { 0.999382 0.033652 0.010117 }
+        <Binormal> { 0.033559 -0.999390 0.009267 }
+      }
+      <Normal> { -0.009827 0.008942 0.999908 }
+    }
+    <Vertex> 1605 {
+      -6.05722475052 10.2597026825 -3.8579211235
+      <UV>  {
+        0.645677 0.484559
+        <Tangent> { 0.832208 0.044450 0.552679 }
+        <Binormal> { 0.037206 -0.998947 0.024318 }
+      }
+      <Normal> { -0.560228 -0.000702 0.828303 }
+    }
+    <Vertex> 1606 {
+      -6.05722570419 15.9450550079 -3.85792136192
+      <UV>  {
+        0.643935 0.376977
+        <Tangent> { 0.831993 0.050098 0.552520 }
+        <Binormal> { 0.041009 -0.998403 0.028776 }
+      }
+      <Normal> { -0.574389 0.000000 0.818567 }
+    }
+    <Vertex> 1607 {
+      -8.68826389313 15.901799202 -4.392827034
+      <UV>  {
+        0.690616 0.375376
+        <Tangent> { 0.999220 0.037942 0.010967 }
+        <Binormal> { 0.037979 -0.999241 -0.003312 }
+      }
+      <Normal> { -0.007538 -0.003601 0.999939 }
+    }
+    <Vertex> 1608 {
+      -8.68826389313 10.2164478302 -4.392827034
+      <UV>  {
+        0.692238 0.483085
+        <Tangent> { 0.999382 0.033652 0.010117 }
+        <Binormal> { 0.033559 -0.999390 0.009267 }
+      }
+      <Normal> { -0.009827 0.008942 0.999908 }
+    }
+    <Vertex> 1609 {
+      -8.68826389313 15.901799202 -4.392827034
+      <UV>  {
+        0.690616 0.375376
+        <Tangent> { 0.999220 0.037942 0.010967 }
+        <Binormal> { 0.037979 -0.999241 -0.003312 }
+      }
+      <Normal> { -0.007538 -0.003601 0.999939 }
+    }
+    <Vertex> 1610 {
+      -11.2966690063 15.9450550079 -3.8851480484
+      <UV>  {
+        0.740080 0.373241
+        <Tangent> { 0.869572 -0.004739 -0.493783 }
+        <Binormal> { -0.021335 -0.997302 -0.028001 }
+      }
+      <Normal> { 0.548143 -0.035188 0.835627 }
+    }
+    <Vertex> 1611 {
+      -11.4574260712 10.2597026825 -3.96682834625
+      <UV>  {
+        0.741022 0.480651
+        <Tangent> { 0.918684 0.008162 -0.394908 }
+        <Binormal> { 0.000826 -0.997918 -0.018703 }
+      }
+      <Normal> { 0.450331 -0.016358 0.892666 }
+    }
+    <Vertex> 1612 {
+      -8.68826389313 10.2164478302 -4.392827034
+      <UV>  {
+        0.692238 0.483085
+        <Tangent> { 0.999382 0.033652 0.010117 }
+        <Binormal> { 0.033559 -0.999390 0.009267 }
+      }
+      <Normal> { -0.009827 0.008942 0.999908 }
+    }
+    <Vertex> 1613 {
+      -11.4574260712 10.2597026825 -3.96682834625
+      <UV>  {
+        0.741022 0.480651
+        <Tangent> { 0.918684 0.008162 -0.394908 }
+        <Binormal> { 0.000826 -0.997918 -0.018703 }
+      }
+      <Normal> { 0.450331 -0.016358 0.892666 }
+    }
+    <Vertex> 1614 {
+      -11.5645942688 4.55468559265 -3.74585914612
+      <UV>  {
+        0.743356 0.590492
+        <Tangent> { 0.915003 -0.025220 -0.402658 }
+        <Binormal> { 0.021177 -0.993309 0.110337 }
+      }
+      <Normal> { 0.426588 0.108829 0.897855 }
+    }
+    <Vertex> 1615 {
+      -8.68826389313 4.51143074036 -4.2354426384
+      <UV>  {
+        0.694946 0.591996
+        <Tangent> { 0.999613 0.020521 -0.018783 }
+        <Binormal> { 0.021739 -0.997132 0.067537 }
+      }
+      <Normal> { 0.043336 0.068453 0.996704 }
+    }
+    <Vertex> 1616 {
+      -8.68826580048 -5.58131074905 -2.50421237946
+      <UV>  {
+        0.700960 0.795041
+        <Tangent> { 0.982164 -0.058732 -0.178620 }
+        <Binormal> { -0.023224 -0.980553 0.194714 }
+      }
+      <Normal> { 0.186316 0.187109 0.964476 }
+    }
+    <Vertex> 1617 {
+      -8.67016029358 -8.53820705414 -2.05539393425
+      <UV>  {
+        0.696230 0.856614
+        <Tangent> { 0.998130 -0.034033 -0.050767 }
+        <Binormal> { -0.028225 -0.992777 0.110597 }
+      }
+      <Normal> { 0.090152 0.107730 0.990051 }
+    }
+    <Vertex> 1618 {
+      -6.14313840866 -8.4844083786 -1.68592369556
+      <UV>  {
+        0.646144 0.855278
+        <Tangent> { 0.882204 0.063724 0.466535 }
+        <Binormal> { -0.041240 -0.976453 0.211358 }
+      }
+      <Normal> { -0.479659 0.204932 0.853175 }
+    }
+    <Vertex> 1619 {
+      -5.95418548584 -5.53805494308 -2.58437824249
+      <UV>  {
+        0.649699 0.792454
+        <Tangent> { 0.962772 0.045216 0.266505 }
+        <Binormal> { -0.037377 -0.952327 0.296603 }
+      }
+      <Normal> { -0.325297 0.292795 0.899106 }
+    }
+    <Vertex> 1620 {
+      -8.68826580048 -5.58131074905 -2.50421237946
+      <UV>  {
+        0.700960 0.795041
+        <Tangent> { 0.982164 -0.058732 -0.178620 }
+        <Binormal> { -0.023224 -0.980553 0.194714 }
+      }
+      <Normal> { 0.186316 0.187109 0.964476 }
+    }
+    <Vertex> 1621 {
+      -5.95418548584 -5.53805494308 -2.58437824249
+      <UV>  {
+        0.649699 0.792454
+        <Tangent> { 0.962772 0.045216 0.266505 }
+        <Binormal> { -0.037377 -0.952327 0.296603 }
+      }
+      <Normal> { -0.325297 0.292795 0.899106 }
+    }
+    <Vertex> 1622 {
+      -5.90266561508 -2.53559160233 -3.52145266533
+      <UV>  {
+        0.652771 0.729502
+        <Tangent> { 0.981077 0.023330 0.192208 }
+        <Binormal> { -0.015373 -0.978895 0.197281 }
+      }
+      <Normal> { -0.242561 0.195318 0.950255 }
+    }
+    <Vertex> 1623 {
+      -8.68826580048 -2.57884645462 -3.13375067711
+      <UV>  {
+        0.703898 0.732667
+        <Tangent> { 0.959920 -0.072165 -0.270826 }
+        <Binormal> { -0.013520 -0.975780 0.212088 }
+      }
+      <Normal> { 0.230445 0.203619 0.951506 }
+    }
+    <Vertex> 1624 {
+      -8.68826580048 -5.58131074905 -2.50421237946
+      <UV>  {
+        0.700960 0.795041
+        <Tangent> { 0.982164 -0.058732 -0.178620 }
+        <Binormal> { -0.023224 -0.980553 0.194714 }
+      }
+      <Normal> { 0.186316 0.187109 0.964476 }
+    }
+    <Vertex> 1625 {
+      -8.68826580048 -2.57884645462 -3.13375067711
+      <UV>  {
+        0.703898 0.732667
+        <Tangent> { 0.959920 -0.072165 -0.270826 }
+        <Binormal> { -0.013520 -0.975780 0.212088 }
+      }
+      <Normal> { 0.230445 0.203619 0.951506 }
+    }
+    <Vertex> 1626 {
+      -11.2966709137 -2.53559160233 -1.91784119606
+      <UV>  {
+        0.754813 0.737804
+        <Tangent> { 0.780181 -0.133340 -0.611177 }
+        <Binormal> { 0.031171 -0.967119 0.250786 }
+      }
+      <Normal> { 0.646199 0.211005 0.733390 }
+    }
+    <Vertex> 1627 {
+      -11.2430868149 -5.53805494308 -1.49715280533
+      <UV>  {
+        0.753084 0.799554
+        <Tangent> { 0.740378 -0.137229 -0.658034 }
+        <Binormal> { -0.027031 -0.984086 0.174812 }
+      }
+      <Normal> { 0.682760 0.109561 0.722343 }
+    }
+    <Vertex> 1628 {
+      -8.68826580048 -5.58131074905 -2.50421237946
+      <UV>  {
+        0.700960 0.795041
+        <Tangent> { 0.982164 -0.058732 -0.178620 }
+        <Binormal> { -0.023224 -0.980553 0.194714 }
+      }
+      <Normal> { 0.186316 0.187109 0.964476 }
+    }
+    <Vertex> 1629 {
+      -11.2430868149 -5.53805494308 -1.49715280533
+      <UV>  {
+        0.753084 0.799554
+        <Tangent> { 0.740378 -0.137229 -0.658034 }
+        <Binormal> { -0.027031 -0.984086 0.174812 }
+      }
+      <Normal> { 0.682760 0.109561 0.722343 }
+    }
+    <Vertex> 1630 {
+      -11.0997304916 -8.51076793671 -1.38494825363
+      <UV>  {
+        0.749301 0.859394
+        <Tangent> { 0.780295 -0.104431 -0.616632 }
+        <Binormal> { -0.028234 -0.990095 0.131953 }
+      }
+      <Normal> { 0.654012 0.081576 0.752037 }
+    }
+    <Vertex> 1631 {
+      -8.67016029358 -8.53820705414 -2.05539393425
+      <UV>  {
+        0.696230 0.856614
+        <Tangent> { 0.998130 -0.034033 -0.050767 }
+        <Binormal> { -0.028225 -0.992777 0.110597 }
+      }
+      <Normal> { 0.090152 0.107730 0.990051 }
+    }
+    <Vertex> 1632 {
+      -8.68826389313 19.8383731842 -4.392827034
+      <UV>  {
+        0.688452 0.300891
+        <Tangent> { 0.999215 0.038893 0.007573 }
+        <Binormal> { 0.038901 -0.999176 -0.001232 }
+      }
+      <Normal> { 0.001099 -0.001190 0.999969 }
+    }
+    <Vertex> 1633 {
+      -8.68826389313 15.901799202 -4.392827034
+      <UV>  {
+        0.690616 0.375376
+        <Tangent> { 0.999220 0.037942 0.010967 }
+        <Binormal> { 0.037979 -0.999241 -0.003312 }
+      }
+      <Normal> { -0.007538 -0.003601 0.999939 }
+    }
+    <Vertex> 1634 {
+      -6.05722570419 15.9450550079 -3.85792136192
+      <UV>  {
+        0.643935 0.376977
+        <Tangent> { 0.831993 0.050098 0.552520 }
+        <Binormal> { 0.041009 -0.998403 0.028776 }
+      }
+      <Normal> { -0.574389 0.000000 0.818567 }
+    }
+    <Vertex> 1635 {
+      -6.05722475052 19.8816280365 -3.8579211235
+      <UV>  {
+        0.642011 0.302627
+        <Tangent> { 0.831912 0.055003 0.552175 }
+        <Binormal> { 0.045023 -0.998139 0.031593 }
+      }
+      <Normal> { -0.574389 0.000000 0.818567 }
+    }
+    <Vertex> 1636 {
+      -8.68826389313 19.8383731842 -4.392827034
+      <UV>  {
+        0.688452 0.300891
+        <Tangent> { 0.999215 0.038893 0.007573 }
+        <Binormal> { 0.038901 -0.999176 -0.001232 }
+      }
+      <Normal> { 0.001099 -0.001190 0.999969 }
+    }
+    <Vertex> 1637 {
+      -6.05722475052 19.8816280365 -3.8579211235
+      <UV>  {
+        0.642011 0.302627
+        <Tangent> { 0.831912 0.055003 0.552175 }
+        <Binormal> { 0.045023 -0.998139 0.031593 }
+      }
+      <Normal> { -0.574389 0.000000 0.818567 }
+    }
+    <Vertex> 1638 {
+      -6.05722475052 22.9438095093 -3.8579211235
+      <UV>  {
+        0.639997 0.244893
+        <Tangent> { 0.832010 0.056806 0.551845 }
+        <Binormal> { 0.046500 -0.998030 0.032629 }
+      }
+      <Normal> { -0.574389 0.000000 0.818567 }
+    }
+    <Vertex> 1639 {
+      -8.68826389313 22.9005527496 -4.392827034
+      <UV>  {
+        0.686018 0.243020
+        <Tangent> { 0.999177 0.040056 0.006362 }
+        <Binormal> { 0.040055 -0.999128 -0.000116 }
+      }
+      <Normal> { 0.002899 0.000000 0.999969 }
+    }
+    <Vertex> 1640 {
+      -8.68826389313 19.8383731842 -4.392827034
+      <UV>  {
+        0.688452 0.300891
+        <Tangent> { 0.999215 0.038893 0.007573 }
+        <Binormal> { 0.038901 -0.999176 -0.001232 }
+      }
+      <Normal> { 0.001099 -0.001190 0.999969 }
+    }
+    <Vertex> 1641 {
+      -8.68826389313 22.9005527496 -4.392827034
+      <UV>  {
+        0.686018 0.243020
+        <Tangent> { 0.999177 0.040056 0.006362 }
+        <Binormal> { 0.040055 -0.999128 -0.000116 }
+      }
+      <Normal> { 0.002899 0.000000 0.999969 }
+    }
+    <Vertex> 1642 {
+      -11.2430839539 22.9438095093 -3.8579211235
+      <UV>  {
+        0.734971 0.241008
+        <Tangent> { 0.828476 -0.018100 -0.559732 }
+        <Binormal> { -0.014187 -0.996936 0.011240 }
+      }
+      <Normal> { 0.620960 0.000000 0.783807 }
+    }
+    <Vertex> 1643 {
+      -11.2430839539 19.8816280365 -3.8579211235
+      <UV>  {
+        0.737848 0.298866
+        <Tangent> { 0.828452 -0.015835 -0.559837 }
+        <Binormal> { -0.019224 -0.997978 -0.000220 }
+      }
+      <Normal> { 0.608783 -0.011902 0.793237 }
+    }
+    <Vertex> 1644 {
+      -8.68826389313 19.8383731842 -4.392827034
+      <UV>  {
+        0.688452 0.300891
+        <Tangent> { 0.999215 0.038893 0.007573 }
+        <Binormal> { 0.038901 -0.999176 -0.001232 }
+      }
+      <Normal> { 0.001099 -0.001190 0.999969 }
+    }
+    <Vertex> 1645 {
+      -11.2430839539 19.8816280365 -3.8579211235
+      <UV>  {
+        0.737848 0.298866
+        <Tangent> { 0.828452 -0.015835 -0.559837 }
+        <Binormal> { -0.019224 -0.997978 -0.000220 }
+      }
+      <Normal> { 0.608783 -0.011902 0.793237 }
+    }
+    <Vertex> 1646 {
+      -11.2966690063 15.9450550079 -3.8851480484
+      <UV>  {
+        0.740080 0.373241
+        <Tangent> { 0.869572 -0.004739 -0.493783 }
+        <Binormal> { -0.021335 -0.997302 -0.028001 }
+      }
+      <Normal> { 0.548143 -0.035188 0.835627 }
+    }
+    <Vertex> 1647 {
+      -8.68826389313 15.901799202 -4.392827034
+      <UV>  {
+        0.690616 0.375376
+        <Tangent> { 0.999220 0.037942 0.010967 }
+        <Binormal> { 0.037979 -0.999241 -0.003312 }
+      }
+      <Normal> { -0.007538 -0.003601 0.999939 }
+    }
+    <Vertex> 1648 {
+      -8.61584568024 -11.4962177277 -1.96801507473
+      <UV>  {
+        0.694390 0.916786
+        <Tangent> { 0.998938 -0.015649 -0.043329 }
+        <Binormal> { -0.012108 -0.996583 0.080779 }
+      }
+      <Normal> { 0.053987 0.080020 0.995300 }
+    }
+    <Vertex> 1649 {
+      -8.6714630127 -14.4189186096 -1.64676845074
+      <UV>  {
+        0.693996 0.976260
+        <Tangent> { 0.994302 0.007753 -0.106313 }
+        <Binormal> { 0.030830 -0.975575 0.217200 }
+      }
+      <Normal> { 0.110416 0.219306 0.969359 }
+    }
+    <Vertex> 1650 {
+      -6.85692882538 -14.240237236 -1.37037372589
+      <UV>  {
+        0.642860 0.974567
+        <Tangent> { 0.795518 0.089379 0.599301 }
+        <Binormal> { -0.025787 -0.973954 0.179485 }
+      }
+      <Normal> { -0.491623 0.170385 0.853938 }
+    }
+    <Vertex> 1651 {
+      -6.50391483307 -11.4107866287 -1.47977948189
+      <UV>  {
+        0.646255 0.915782
+        <Tangent> { 0.797124 0.062790 0.600542 }
+        <Binormal> { -0.014048 -0.990025 0.122159 }
+      }
+      <Normal> { -0.547655 0.110111 0.829402 }
+    }
+    <Vertex> 1652 {
+      -8.61584568024 -11.4962177277 -1.96801507473
+      <UV>  {
+        0.694390 0.916786
+        <Tangent> { 0.998938 -0.015649 -0.043329 }
+        <Binormal> { -0.012108 -0.996583 0.080779 }
+      }
+      <Normal> { 0.053987 0.080020 0.995300 }
+    }
+    <Vertex> 1653 {
+      -6.50391483307 -11.4107866287 -1.47977948189
+      <UV>  {
+        0.646255 0.915782
+        <Tangent> { 0.797124 0.062790 0.600542 }
+        <Binormal> { -0.014048 -0.990025 0.122159 }
+      }
+      <Normal> { -0.547655 0.110111 0.829402 }
+    }
+    <Vertex> 1654 {
+      -6.14313840866 -8.4844083786 -1.68592369556
+      <UV>  {
+        0.646144 0.855278
+        <Tangent> { 0.882204 0.063724 0.466535 }
+        <Binormal> { -0.041240 -0.976453 0.211358 }
+      }
+      <Normal> { -0.479659 0.204932 0.853175 }
+    }
+    <Vertex> 1655 {
+      -8.67016029358 -8.53820705414 -2.05539393425
+      <UV>  {
+        0.696230 0.856614
+        <Tangent> { 0.998130 -0.034033 -0.050767 }
+        <Binormal> { -0.028225 -0.992777 0.110597 }
+      }
+      <Normal> { 0.090152 0.107730 0.990051 }
+    }
+    <Vertex> 1656 {
+      -8.61584568024 -11.4962177277 -1.96801507473
+      <UV>  {
+        0.694390 0.916786
+        <Tangent> { 0.998938 -0.015649 -0.043329 }
+        <Binormal> { -0.012108 -0.996583 0.080779 }
+      }
+      <Normal> { 0.053987 0.080020 0.995300 }
+    }
+    <Vertex> 1657 {
+      -8.67016029358 -8.53820705414 -2.05539393425
+      <UV>  {
+        0.696230 0.856614
+        <Tangent> { 0.998130 -0.034033 -0.050767 }
+        <Binormal> { -0.028225 -0.992777 0.110597 }
+      }
+      <Normal> { 0.090152 0.107730 0.990051 }
+    }
+    <Vertex> 1658 {
+      -11.0997304916 -8.51076793671 -1.38494825363
+      <UV>  {
+        0.749301 0.859394
+        <Tangent> { 0.780295 -0.104431 -0.616632 }
+        <Binormal> { -0.028234 -0.990095 0.131953 }
+      }
+      <Normal> { 0.654012 0.081576 0.752037 }
+    }
+    <Vertex> 1659 {
+      -10.6696643829 -11.5162258148 -1.36310350895
+      <UV>  {
+        0.748192 0.919304
+        <Tangent> { 0.798170 -0.092062 -0.595357 }
+        <Binormal> { -0.006421 -0.988712 0.144280 }
+      }
+      <Normal> { 0.632923 0.107761 0.766625 }
+    }
+    <Vertex> 1660 {
+      -8.61584568024 -11.4962177277 -1.96801507473
+      <UV>  {
+        0.694390 0.916786
+        <Tangent> { 0.998938 -0.015649 -0.043329 }
+        <Binormal> { -0.012108 -0.996583 0.080779 }
+      }
+      <Normal> { 0.053987 0.080020 0.995300 }
+    }
+    <Vertex> 1661 {
+      -10.6696643829 -11.5162258148 -1.36310350895
+      <UV>  {
+        0.748192 0.919304
+        <Tangent> { 0.798170 -0.092062 -0.595357 }
+        <Binormal> { -0.006421 -0.988712 0.144280 }
+      }
+      <Normal> { 0.632923 0.107761 0.766625 }
+    }
+    <Vertex> 1662 {
+      -10.4264764786 -14.4343919754 -0.970763266087
+      <UV>  {
+        0.745131 0.977952
+        <Tangent> { 0.801127 -0.127308 -0.584798 }
+        <Binormal> { 0.006490 -0.974755 0.221091 }
+      }
+      <Normal> { 0.622211 0.177099 0.762535 }
+    }
+    <Vertex> 1663 {
+      -8.6714630127 -14.4189186096 -1.64676845074
+      <UV>  {
+        0.693996 0.976260
+        <Tangent> { 0.994302 0.007753 -0.106313 }
+        <Binormal> { 0.030830 -0.975575 0.217200 }
+      }
+      <Normal> { 0.110416 0.219306 0.969359 }
+    }
+    <Vertex> 1664 {
+      3.9661090374 -17.0784988403 -0.113579511642
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.998659 -0.043409 -0.028215 }
+        <Binormal> { -0.043692 -0.998972 -0.009532 }
+      }
+      <Normal> { 0.024049 -0.010590 0.999634 }
+    }
+    <Vertex> 1665 {
+      7.04066562653 -17.0785007477 -0.113579511642
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.990136 -0.140108 0.000000 }
+        <Binormal> { -0.140108 -0.990136 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1666 {
+      7.04066562653 -14.2169818878 -0.113579511642
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.996779 -0.080194 0.000000 }
+        <Binormal> { -0.080194 -0.996779 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1667 {
+      3.9661090374 -14.2169799805 -0.113579511642
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.995569 0.083090 -0.044041 }
+        <Binormal> { 0.082690 -0.996500 -0.010806 }
+      }
+      <Normal> { 0.040468 -0.007477 0.999146 }
+    }
+    <Vertex> 1668 {
+      3.9661090374 -17.0784988403 -0.113579511642
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.998659 -0.043409 -0.028215 }
+        <Binormal> { -0.043692 -0.998972 -0.009532 }
+      }
+      <Normal> { 0.024049 -0.010590 0.999634 }
+    }
+    <Vertex> 1669 {
+      3.9661090374 -14.2169799805 -0.113579511642
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.995569 0.083090 -0.044041 }
+        <Binormal> { 0.082690 -0.996500 -0.010806 }
+      }
+      <Normal> { 0.040468 -0.007477 0.999146 }
+    }
+    <Vertex> 1670 {
+      0.868828475475 -14.2169790268 0.159442424774
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.997099 0.026848 -0.071222 }
+        <Binormal> { 0.023118 -0.994391 -0.051198 }
+      }
+      <Normal> { 0.161504 -0.046999 0.985748 }
+    }
+    <Vertex> 1671 {
+      0.800655782223 -17.078496933 0.0342006646097
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.997657 -0.048131 -0.048614 }
+        <Binormal> { -0.050976 -0.995606 -0.060403 }
+      }
+      <Normal> { 0.094974 -0.065127 0.993316 }
+    }
+    <Vertex> 1672 {
+      3.9661090374 -17.0784988403 -0.113579511642
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.998659 -0.043409 -0.028215 }
+        <Binormal> { -0.043692 -0.998972 -0.009532 }
+      }
+      <Normal> { 0.024049 -0.010590 0.999634 }
+    }
+    <Vertex> 1673 {
+      0.800655782223 -17.078496933 0.0342006646097
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.997657 -0.048131 -0.048614 }
+        <Binormal> { -0.050976 -0.995606 -0.060403 }
+      }
+      <Normal> { 0.094974 -0.065127 0.993316 }
+    }
+    <Vertex> 1674 {
+      0.782701313496 -19.865146637 -0.075658172369
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.993630 -0.107930 -0.032407 }
+        <Binormal> { -0.108681 -0.993736 -0.022678 }
+      }
+      <Normal> { 0.041627 -0.027345 0.998749 }
+    }
+    <Vertex> 1675 {
+      3.9661090374 -19.865146637 -0.113579511642
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.982215 -0.187665 -0.005952 }
+        <Binormal> { -0.187675 -0.982188 -0.002616 }
+      }
+      <Normal> { 0.010498 -0.004669 0.999908 }
+    }
+    <Vertex> 1676 {
+      3.9661090374 -17.0784988403 -0.113579511642
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.998659 -0.043409 -0.028215 }
+        <Binormal> { -0.043692 -0.998972 -0.009532 }
+      }
+      <Normal> { 0.024049 -0.010590 0.999634 }
+    }
+    <Vertex> 1677 {
+      3.9661090374 -19.865146637 -0.113579511642
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.982215 -0.187665 -0.005952 }
+        <Binormal> { -0.187675 -0.982188 -0.002616 }
+      }
+      <Normal> { 0.010498 -0.004669 0.999908 }
+    }
+    <Vertex> 1678 {
+      7.04066562653 -19.8651504517 -0.113579511642
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.986127 -0.165990 0.000000 }
+        <Binormal> { -0.165990 -0.986127 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1679 {
+      7.04066562653 -17.0785007477 -0.113579511642
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.990136 -0.140108 0.000000 }
+        <Binormal> { -0.140108 -0.990136 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1680 {
+      9.9826593399 -17.0785007477 -0.113579511642
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.977406 -0.211369 0.000000 }
+        <Binormal> { -0.211369 -0.977406 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1681 {
+      12.7938938141 -17.0785007477 -0.113579511642
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.975076 -0.221873 0.000000 }
+        <Binormal> { -0.221873 -0.975076 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1682 {
+      12.7938938141 -14.2169818878 -0.113579511642
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.974590 -0.223996 0.000000 }
+        <Binormal> { -0.223996 -0.974590 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1683 {
+      9.9826593399 -14.2169818878 -0.113579511642
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.974451 -0.224601 0.000000 }
+        <Binormal> { -0.224601 -0.974451 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1684 {
+      9.9826593399 -17.0785007477 -0.113579511642
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.977406 -0.211369 0.000000 }
+        <Binormal> { -0.211369 -0.977406 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1685 {
+      9.9826593399 -14.2169818878 -0.113579511642
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.974451 -0.224601 0.000000 }
+        <Binormal> { -0.224601 -0.974451 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1686 {
+      7.04066562653 -14.2169818878 -0.113579511642
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.996779 -0.080194 0.000000 }
+        <Binormal> { -0.080194 -0.996779 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1687 {
+      7.04066562653 -17.0785007477 -0.113579511642
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.990136 -0.140108 0.000000 }
+        <Binormal> { -0.140108 -0.990136 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1688 {
+      9.9826593399 -17.0785007477 -0.113579511642
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.977406 -0.211369 0.000000 }
+        <Binormal> { -0.211369 -0.977406 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1689 {
+      7.04066562653 -17.0785007477 -0.113579511642
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.990136 -0.140108 0.000000 }
+        <Binormal> { -0.140108 -0.990136 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1690 {
+      7.04066562653 -19.8651504517 -0.113579511642
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.986127 -0.165990 0.000000 }
+        <Binormal> { -0.165990 -0.986127 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1691 {
+      9.9826593399 -19.8651504517 -0.113579511642
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.975722 -0.219012 0.000000 }
+        <Binormal> { -0.219012 -0.975722 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1692 {
+      9.9826593399 -17.0785007477 -0.113579511642
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.977406 -0.211369 0.000000 }
+        <Binormal> { -0.211369 -0.977406 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1693 {
+      9.9826593399 -19.8651504517 -0.113579511642
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.975722 -0.219012 0.000000 }
+        <Binormal> { -0.219012 -0.975722 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1694 {
+      12.7938938141 -19.8651504517 -0.113579511642
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.975612 -0.219502 0.000000 }
+        <Binormal> { -0.219502 -0.975612 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1695 {
+      12.7938938141 -17.0785007477 -0.113579511642
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.975076 -0.221873 0.000000 }
+        <Binormal> { -0.221873 -0.975076 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1696 {
+      15.4761724472 -17.0785007477 -0.113579511642
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.975369 -0.220580 0.000000 }
+        <Binormal> { -0.220580 -0.975369 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1697 {
+      18.0939731598 -17.0785007477 -0.113579511642
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.975076 -0.221872 0.000000 }
+        <Binormal> { -0.221872 -0.975076 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1698 {
+      18.0939731598 -14.2169818878 -0.113579511642
+      <UV>  {
+        -0.042124 0.762705
+        <Tangent> { 0.974436 -0.224665 0.000000 }
+        <Binormal> { -0.224665 -0.974436 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1699 {
+      15.4761724472 -14.2169818878 -0.113579511642
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.975032 -0.222066 0.000000 }
+        <Binormal> { -0.222066 -0.975032 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1700 {
+      15.4761724472 -17.0785007477 -0.113579511642
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.975369 -0.220580 0.000000 }
+        <Binormal> { -0.220580 -0.975369 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1701 {
+      15.4761724472 -14.2169818878 -0.113579511642
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.975032 -0.222066 0.000000 }
+        <Binormal> { -0.222066 -0.975032 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1702 {
+      12.7938938141 -14.2169818878 -0.113579511642
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.974590 -0.223996 0.000000 }
+        <Binormal> { -0.223996 -0.974590 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1703 {
+      12.7938938141 -17.0785007477 -0.113579511642
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.975076 -0.221873 0.000000 }
+        <Binormal> { -0.221873 -0.975076 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1704 {
+      15.4761724472 -17.0785007477 -0.113579511642
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.975369 -0.220580 0.000000 }
+        <Binormal> { -0.220580 -0.975369 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1705 {
+      12.7938938141 -17.0785007477 -0.113579511642
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.975076 -0.221873 0.000000 }
+        <Binormal> { -0.221873 -0.975076 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1706 {
+      12.7938938141 -19.8651504517 -0.113579511642
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.975612 -0.219502 0.000000 }
+        <Binormal> { -0.219502 -0.975612 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1707 {
+      15.4761724472 -19.8651504517 -0.113579511642
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.976275 -0.216535 0.000000 }
+        <Binormal> { -0.216535 -0.976275 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1708 {
+      15.4761724472 -17.0785007477 -0.113579511642
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.975369 -0.220580 0.000000 }
+        <Binormal> { -0.220580 -0.975369 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1709 {
+      15.4761724472 -19.8651504517 -0.113579511642
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.976275 -0.216535 0.000000 }
+        <Binormal> { -0.216535 -0.976275 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1710 {
+      18.0939731598 -19.8651504517 -0.113579511642
+      <UV>  {
+        -0.073782 0.891829
+        <Tangent> { 0.975708 -0.219074 0.000000 }
+        <Binormal> { -0.219074 -0.975708 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1711 {
+      18.0939731598 -17.0785007477 -0.113579511642
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.975076 -0.221872 0.000000 }
+        <Binormal> { -0.221872 -0.975076 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1712 {
+      3.9661090374 -22.6229934692 -0.113579511642
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.998823 -0.047509 -0.009821 }
+        <Binormal> { -0.047772 -0.998426 -0.028634 }
+      }
+      <Normal> { 0.006195 -0.028962 0.999542 }
+    }
+    <Vertex> 1713 {
+      7.04066562653 -22.6229953766 -0.113579511642
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.990033 -0.140789 -0.003547 }
+        <Binormal> { -0.140828 -0.989684 -0.024773 }
+      }
+      <Normal> { -0.004700 -0.024354 0.999664 }
+    }
+    <Vertex> 1714 {
+      7.04066562653 -19.8651504517 -0.113579511642
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.997007 -0.077306 0.000000 }
+        <Binormal> { -0.077306 -0.997007 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1715 {
+      3.9661090374 -19.865146637 -0.113579511642
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.996850 0.079079 -0.006041 }
+        <Binormal> { 0.079043 -0.996822 -0.005485 }
+      }
+      <Normal> { 0.010498 -0.004669 0.999908 }
+    }
+    <Vertex> 1716 {
+      3.9661090374 -22.6229934692 -0.113579511642
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.998823 -0.047509 -0.009821 }
+        <Binormal> { -0.047772 -0.998426 -0.028634 }
+      }
+      <Normal> { 0.006195 -0.028962 0.999542 }
+    }
+    <Vertex> 1717 {
+      3.9661090374 -19.865146637 -0.113579511642
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.996850 0.079079 -0.006041 }
+        <Binormal> { 0.079043 -0.996822 -0.005485 }
+      }
+      <Normal> { 0.010498 -0.004669 0.999908 }
+    }
+    <Vertex> 1718 {
+      0.782701313496 -19.865146637 -0.075658172369
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.794134 -0.607695 -0.007662 }
+        <Binormal> { -0.607144 -0.793459 0.003581 }
+      }
+      <Normal> { 0.041627 -0.027345 0.998749 }
+    }
+    <Vertex> 1719 {
+      0.910633265972 -22.6229934692 -0.0712580233812
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.998625 -0.050181 -0.015167 }
+        <Binormal> { -0.050390 -0.998362 -0.014604 }
+      }
+      <Normal> { 0.036927 -0.016480 0.999176 }
+    }
+    <Vertex> 1720 {
+      3.9661090374 -22.6229934692 -0.113579511642
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.998823 -0.047509 -0.009821 }
+        <Binormal> { -0.047772 -0.998426 -0.028634 }
+      }
+      <Normal> { 0.006195 -0.028962 0.999542 }
+    }
+    <Vertex> 1721 {
+      0.910633265972 -22.6229934692 -0.0712580233812
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.998625 -0.050181 -0.015167 }
+        <Binormal> { -0.050390 -0.998362 -0.014604 }
+      }
+      <Normal> { 0.036927 -0.016480 0.999176 }
+    }
+    <Vertex> 1722 {
+      1.13197898865 -25.5655536652 -0.232177615166
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.992207 -0.121876 -0.025921 }
+        <Binormal> { -0.123674 -0.986842 -0.094041 }
+      }
+      <Normal> { 0.058229 -0.101932 0.993072 }
+    }
+    <Vertex> 1723 {
+      4.11504411697 -25.5846939087 -0.307364881039
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.978835 -0.203856 -0.018021 }
+        <Binormal> { -0.204593 -0.972748 -0.108902 }
+      }
+      <Normal> { -0.001251 -0.110996 0.993805 }
+    }
+    <Vertex> 1724 {
+      3.9661090374 -22.6229934692 -0.113579511642
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.998823 -0.047509 -0.009821 }
+        <Binormal> { -0.047772 -0.998426 -0.028634 }
+      }
+      <Normal> { 0.006195 -0.028962 0.999542 }
+    }
+    <Vertex> 1725 {
+      4.11504411697 -25.5846939087 -0.307364881039
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.978835 -0.203856 -0.018021 }
+        <Binormal> { -0.204593 -0.972748 -0.108902 }
+      }
+      <Normal> { -0.001251 -0.110996 0.993805 }
+    }
+    <Vertex> 1726 {
+      7.19918632507 -25.5716743469 -0.261906713247
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.985187 -0.171482 0.000468 }
+        <Binormal> { -0.170665 -0.980751 -0.093851 }
+      }
+      <Normal> { -0.027955 -0.090396 0.995483 }
+    }
+    <Vertex> 1727 {
+      7.04066562653 -22.6229953766 -0.113579511642
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.990033 -0.140789 -0.003547 }
+        <Binormal> { -0.140828 -0.989684 -0.024773 }
+      }
+      <Normal> { -0.004700 -0.024354 0.999664 }
+    }
+    <Vertex> 1728 {
+      9.9826593399 -22.6229953766 -0.113579511642
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.977508 -0.210886 0.002416 }
+        <Binormal> { -0.210826 -0.977402 -0.015013 }
+      }
+      <Normal> { -0.005554 -0.014161 0.999878 }
+    }
+    <Vertex> 1729 {
+      12.7938938141 -22.6229953766 -0.113579511642
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.975055 -0.221963 -0.000784 }
+        <Binormal> { -0.221960 -0.975022 -0.005858 }
+      }
+      <Normal> { -0.003601 -0.005188 0.999969 }
+    }
+    <Vertex> 1730 {
+      12.7938938141 -19.8651504517 -0.113579511642
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.976334 -0.216267 0.000000 }
+        <Binormal> { -0.216267 -0.976334 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1731 {
+      9.9826593399 -19.8651504517 -0.113579511642
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.976204 -0.216853 0.000000 }
+        <Binormal> { -0.216853 -0.976204 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1732 {
+      9.9826593399 -22.6229953766 -0.113579511642
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.977508 -0.210886 0.002416 }
+        <Binormal> { -0.210826 -0.977402 -0.015013 }
+      }
+      <Normal> { -0.005554 -0.014161 0.999878 }
+    }
+    <Vertex> 1733 {
+      9.9826593399 -19.8651504517 -0.113579511642
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.976204 -0.216853 0.000000 }
+        <Binormal> { -0.216853 -0.976204 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1734 {
+      7.04066562653 -19.8651504517 -0.113579511642
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.997007 -0.077306 0.000000 }
+        <Binormal> { -0.077306 -0.997007 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1735 {
+      7.04066562653 -22.6229953766 -0.113579511642
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.990033 -0.140789 -0.003547 }
+        <Binormal> { -0.140828 -0.989684 -0.024773 }
+      }
+      <Normal> { -0.004700 -0.024354 0.999664 }
+    }
+    <Vertex> 1736 {
+      9.9826593399 -22.6229953766 -0.113579511642
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.977508 -0.210886 0.002416 }
+        <Binormal> { -0.210826 -0.977402 -0.015013 }
+      }
+      <Normal> { -0.005554 -0.014161 0.999878 }
+    }
+    <Vertex> 1737 {
+      7.04066562653 -22.6229953766 -0.113579511642
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.990033 -0.140789 -0.003547 }
+        <Binormal> { -0.140828 -0.989684 -0.024773 }
+      }
+      <Normal> { -0.004700 -0.024354 0.999664 }
+    }
+    <Vertex> 1738 {
+      7.19918632507 -25.5716743469 -0.261906713247
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.985187 -0.171482 0.000468 }
+        <Binormal> { -0.170665 -0.980751 -0.093851 }
+      }
+      <Normal> { -0.027955 -0.090396 0.995483 }
+    }
+    <Vertex> 1739 {
+      10.0796890259 -25.5456466675 -0.19348423183
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.974387 -0.224329 0.015710 }
+        <Binormal> { -0.223025 -0.972930 -0.060043 }
+      }
+      <Normal> { -0.034089 -0.053774 0.997955 }
+    }
+    <Vertex> 1740 {
+      9.9826593399 -22.6229953766 -0.113579511642
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.977508 -0.210886 0.002416 }
+        <Binormal> { -0.210826 -0.977402 -0.015013 }
+      }
+      <Normal> { -0.005554 -0.014161 0.999878 }
+    }
+    <Vertex> 1741 {
+      10.0796890259 -25.5456466675 -0.19348423183
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.974387 -0.224329 0.015710 }
+        <Binormal> { -0.223025 -0.972930 -0.060043 }
+      }
+      <Normal> { -0.034089 -0.053774 0.997955 }
+    }
+    <Vertex> 1742 {
+      12.818151474 -25.5212535858 -0.133555784822
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.973955 -0.226695 0.004617 }
+        <Binormal> { -0.226499 -0.973612 -0.024430 }
+      }
+      <Normal> { -0.022279 -0.019898 0.999542 }
+    }
+    <Vertex> 1743 {
+      12.7938938141 -22.6229953766 -0.113579511642
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.975055 -0.221963 -0.000784 }
+        <Binormal> { -0.221960 -0.975022 -0.005858 }
+      }
+      <Normal> { -0.003601 -0.005188 0.999969 }
+    }
+    <Vertex> 1744 {
+      15.4761724472 -22.6229953766 -0.113579511642
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.975391 -0.220481 0.000730 }
+        <Binormal> { -0.220473 -0.975362 -0.001035 }
+      }
+      <Normal> { -0.000916 -0.000855 0.999969 }
+    }
+    <Vertex> 1745 {
+      18.0939731598 -22.6229953766 -0.113579511642
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.975077 -0.221865 0.000000 }
+        <Binormal> { -0.221865 -0.975077 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1746 {
+      18.0939731598 -19.8651504517 -0.113579511642
+      <UV>  {
+        -0.042124 0.762705
+        <Tangent> { 0.976191 -0.216915 0.000000 }
+        <Binormal> { -0.216915 -0.976191 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1747 {
+      15.4761724472 -19.8651504517 -0.113579511642
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.976747 -0.214397 0.000000 }
+        <Binormal> { -0.214397 -0.976747 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1748 {
+      15.4761724472 -22.6229953766 -0.113579511642
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.975391 -0.220481 0.000730 }
+        <Binormal> { -0.220473 -0.975362 -0.001035 }
+      }
+      <Normal> { -0.000916 -0.000855 0.999969 }
+    }
+    <Vertex> 1749 {
+      15.4761724472 -19.8651504517 -0.113579511642
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.976747 -0.214397 0.000000 }
+        <Binormal> { -0.214397 -0.976747 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1750 {
+      12.7938938141 -19.8651504517 -0.113579511642
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.976334 -0.216267 0.000000 }
+        <Binormal> { -0.216267 -0.976334 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1751 {
+      12.7938938141 -22.6229953766 -0.113579511642
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.975055 -0.221963 -0.000784 }
+        <Binormal> { -0.221960 -0.975022 -0.005858 }
+      }
+      <Normal> { -0.003601 -0.005188 0.999969 }
+    }
+    <Vertex> 1752 {
+      15.4761724472 -22.6229953766 -0.113579511642
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.975391 -0.220481 0.000730 }
+        <Binormal> { -0.220473 -0.975362 -0.001035 }
+      }
+      <Normal> { -0.000916 -0.000855 0.999969 }
+    }
+    <Vertex> 1753 {
+      12.7938938141 -22.6229953766 -0.113579511642
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.975055 -0.221963 -0.000784 }
+        <Binormal> { -0.221960 -0.975022 -0.005858 }
+      }
+      <Normal> { -0.003601 -0.005188 0.999969 }
+    }
+    <Vertex> 1754 {
+      12.818151474 -25.5212535858 -0.133555784822
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.973955 -0.226695 0.004617 }
+        <Binormal> { -0.226499 -0.973612 -0.024430 }
+      }
+      <Normal> { -0.022279 -0.019898 0.999542 }
+    }
+    <Vertex> 1755 {
+      15.4761724472 -25.5131206512 -0.113579511642
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.974645 -0.223728 0.003690 }
+        <Binormal> { -0.223710 -0.974636 -0.004423 }
+      }
+      <Normal> { -0.005676 -0.003235 0.999969 }
+    }
+    <Vertex> 1756 {
+      15.4761724472 -22.6229953766 -0.113579511642
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.975391 -0.220481 0.000730 }
+        <Binormal> { -0.220473 -0.975362 -0.001035 }
+      }
+      <Normal> { -0.000916 -0.000855 0.999969 }
+    }
+    <Vertex> 1757 {
+      15.4761724472 -25.5131206512 -0.113579511642
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.974645 -0.223728 0.003690 }
+        <Binormal> { -0.223710 -0.974636 -0.004423 }
+      }
+      <Normal> { -0.005676 -0.003235 0.999969 }
+    }
+    <Vertex> 1758 {
+      18.0939731598 -25.5131206512 -0.113579511642
+      <UV>  {
+        -0.073782 0.891829
+        <Tangent> { 0.973942 -0.226797 0.000000 }
+        <Binormal> { -0.226797 -0.973942 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1759 {
+      18.0939731598 -22.6229953766 -0.113579511642
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.975077 -0.221865 0.000000 }
+        <Binormal> { -0.221865 -0.975077 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1760 {
+      -1.97411859035 -22.6229934692 0.0557064339519
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.158768 -0.987277 -0.008719 }
+        <Binormal> { -0.987132 -0.158570 -0.019822 }
+      }
+      <Normal> { -0.018311 -0.010987 0.999756 }
+    }
+    <Vertex> 1761 {
+      -1.44529187679 -25.4951076508 0.0613350458443
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.123556 -0.992331 0.003556 }
+        <Binormal> { -0.989093 -0.123140 0.003697 }
+      }
+      <Normal> { 0.013184 -0.075961 0.997009 }
+    }
+    <Vertex> 1762 {
+      1.13197898865 -25.5655536652 -0.232177615166
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.717410 -0.689605 -0.098832 }
+        <Binormal> { -0.694902 -0.718195 -0.032972 }
+      }
+      <Normal> { 0.058229 -0.101932 0.993072 }
+    }
+    <Vertex> 1763 {
+      0.910633265972 -22.6229934692 -0.0712580233812
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.150557 -0.988112 -0.031093 }
+        <Binormal> { -0.987810 -0.151581 0.034007 }
+      }
+      <Normal> { 0.036927 -0.016480 0.999176 }
+    }
+    <Vertex> 1764 {
+      -1.97411859035 -22.6229934692 0.0557064339519
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.158768 -0.987277 -0.008719 }
+        <Binormal> { -0.987132 -0.158570 -0.019822 }
+      }
+      <Normal> { -0.018311 -0.010987 0.999756 }
+    }
+    <Vertex> 1765 {
+      0.910633265972 -22.6229934692 -0.0712580233812
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.150557 -0.988112 -0.031093 }
+        <Binormal> { -0.987810 -0.151581 0.034007 }
+      }
+      <Normal> { 0.036927 -0.016480 0.999176 }
+    }
+    <Vertex> 1766 {
+      0.782701313496 -19.865146637 -0.075658172369
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.794134 -0.607695 -0.007662 }
+        <Binormal> { -0.607144 -0.793459 0.003581 }
+      }
+      <Normal> { 0.041627 -0.027345 0.998749 }
+    }
+    <Vertex> 1767 {
+      -2.48584604263 -19.865146637 0.0381054617465
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.117370 -0.993076 0.005004 }
+        <Binormal> { -0.988884 -0.116919 -0.008934 }
+      }
+      <Normal> { 0.001251 -0.086703 0.996216 }
+    }
+    <Vertex> 1768 {
+      -1.97411859035 -22.6229934692 0.0557064339519
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.158768 -0.987277 -0.008719 }
+        <Binormal> { -0.987132 -0.158570 -0.019822 }
+      }
+      <Normal> { -0.018311 -0.010987 0.999756 }
+    }
+    <Vertex> 1769 {
+      -2.48584604263 -19.865146637 0.0381054617465
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.117370 -0.993076 0.005004 }
+        <Binormal> { -0.988884 -0.116919 -0.008934 }
+      }
+      <Normal> { 0.001251 -0.086703 0.996216 }
+    }
+    <Vertex> 1770 {
+      -6.12064647675 -19.6365470886 -0.213918238878
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.259344 -0.965750 -0.008265 }
+        <Binormal> { -0.926798 -0.246789 -0.244777 }
+      }
+      <Normal> { -0.197516 -0.208319 0.957884 }
+    }
+    <Vertex> 1771 {
+      -4.27453517914 -22.6229934692 -0.21685834229
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.263955 -0.964534 -0.001438 }
+        <Binormal> { -0.886090 -0.241902 -0.393106 }
+      }
+      <Normal> { -0.367748 -0.145482 0.918455 }
+    }
+    <Vertex> 1772 {
+      -1.97411859035 -22.6229934692 0.0557064339519
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.158768 -0.987277 -0.008719 }
+        <Binormal> { -0.987132 -0.158570 -0.019822 }
+      }
+      <Normal> { -0.018311 -0.010987 0.999756 }
+    }
+    <Vertex> 1773 {
+      -4.27453517914 -22.6229934692 -0.21685834229
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.263955 -0.964534 -0.001438 }
+        <Binormal> { -0.886090 -0.241902 -0.393106 }
+      }
+      <Normal> { -0.367748 -0.145482 0.918455 }
+    }
+    <Vertex> 1774 {
+      -3.54617714882 -25.4372901917 -0.105620525777
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.109275 -0.993988 0.006873 }
+        <Binormal> { -0.918381 -0.103591 -0.380023 }
+      }
+      <Normal> { -0.374371 -0.072329 0.924436 }
+    }
+    <Vertex> 1775 {
+      -1.44529187679 -25.4951076508 0.0613350458443
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.123556 -0.992331 0.003556 }
+        <Binormal> { -0.989093 -0.123140 0.003697 }
+      }
+      <Normal> { 0.013184 -0.075961 0.997009 }
+    }
+    <Vertex> 1776 {
+      -2.4140291214 -17.0784988403 0.477541953325
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.103482 -0.981855 -0.158909 }
+        <Binormal> { -0.991035 0.088275 0.099938 }
+      }
+      <Normal> { 0.084567 -0.163366 0.982910 }
+    }
+    <Vertex> 1777 {
+      0.800655782223 -17.078496933 0.0342006646097
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.015234 -0.999019 -0.041583 }
+        <Binormal> { -0.995050 0.011183 0.095873 }
+      }
+      <Normal> { 0.094974 -0.065127 0.993316 }
+    }
+    <Vertex> 1778 {
+      0.868828475475 -14.2169790268 0.159442424774
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.059103 -0.992329 -0.108580 }
+        <Binormal> { -0.983290 0.040725 0.163043 }
+      }
+      <Normal> { 0.161504 -0.046999 0.985748 }
+    }
+    <Vertex> 1779 {
+      -2.14133810997 -14.2169790268 0.978508234024
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.093457 -0.980708 -0.171692 }
+        <Binormal> { -0.977751 0.060576 0.186208 }
+      }
+      <Normal> { 0.179235 -0.111606 0.977447 }
+    }
+    <Vertex> 1780 {
+      -2.4140291214 -17.0784988403 0.477541953325
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.103482 -0.981855 -0.158909 }
+        <Binormal> { -0.991035 0.088275 0.099938 }
+      }
+      <Normal> { 0.084567 -0.163366 0.982910 }
+    }
+    <Vertex> 1781 {
+      -2.14133810997 -14.2169790268 0.978508234024
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.093457 -0.980708 -0.171692 }
+        <Binormal> { -0.977751 0.060576 0.186208 }
+      }
+      <Normal> { 0.179235 -0.111606 0.977447 }
+    }
+    <Vertex> 1782 {
+      -4.53326320648 -14.1648855209 1.29812788963
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.117816 -0.972165 -0.202522 }
+        <Binormal> { -0.934460 0.175877 -0.300640 }
+      }
+      <Normal> { -0.319193 -0.082064 0.944121 }
+    }
+    <Vertex> 1783 {
+      -4.93225812912 -16.8457946777 0.644491136074
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.269299 -0.928265 -0.256518 }
+        <Binormal> { -0.909229 0.332265 -0.247842 }
+      }
+      <Normal> { -0.305155 -0.131535 0.943144 }
+    }
+    <Vertex> 1784 {
+      -2.4140291214 -17.0784988403 0.477541953325
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.103482 -0.981855 -0.158909 }
+        <Binormal> { -0.991035 0.088275 0.099938 }
+      }
+      <Normal> { 0.084567 -0.163366 0.982910 }
+    }
+    <Vertex> 1785 {
+      -4.93225812912 -16.8457946777 0.644491136074
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.269299 -0.928265 -0.256518 }
+        <Binormal> { -0.909229 0.332265 -0.247842 }
+      }
+      <Normal> { -0.305155 -0.131535 0.943144 }
+    }
+    <Vertex> 1786 {
+      -6.12064647675 -19.6365470886 -0.213918238878
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.919375 -0.266981 0.288912 }
+        <Binormal> { -0.195551 -0.937720 -0.244257 }
+      }
+      <Normal> { -0.197516 -0.208319 0.957884 }
+    }
+    <Vertex> 1787 {
+      -2.48584604263 -19.865146637 0.0381054617465
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.025449 -0.987474 -0.155718 }
+        <Binormal> { -0.997238 0.025158 0.003442 }
+      }
+      <Normal> { 0.001251 -0.086703 0.996216 }
+    }
+    <Vertex> 1788 {
+      -2.4140291214 -17.0784988403 0.477541953325
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.103482 -0.981855 -0.158909 }
+        <Binormal> { -0.991035 0.088275 0.099938 }
+      }
+      <Normal> { 0.084567 -0.163366 0.982910 }
+    }
+    <Vertex> 1789 {
+      -2.48584604263 -19.865146637 0.0381054617465
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.025449 -0.987474 -0.155718 }
+        <Binormal> { -0.997238 0.025158 0.003442 }
+      }
+      <Normal> { 0.001251 -0.086703 0.996216 }
+    }
+    <Vertex> 1790 {
+      0.782701313496 -19.865146637 -0.075658172369
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.016028 -0.995050 -0.098071 }
+        <Binormal> { -0.996487 0.011925 0.041859 }
+      }
+      <Normal> { 0.041627 -0.027345 0.998749 }
+    }
+    <Vertex> 1791 {
+      0.800655782223 -17.078496933 0.0342006646097
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.015234 -0.999019 -0.041583 }
+        <Binormal> { -0.995050 0.011183 0.095873 }
+      }
+      <Normal> { 0.094974 -0.065127 0.993316 }
+    }
+    <Vertex> 1792 {
+      -6.00834178925 -16.147693634 -0.0369037613273
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.781366 0.070694 0.620056 }
+        <Binormal> { 0.039183 -0.996389 0.064224 }
+      }
+      <Normal> { -0.652791 0.023133 0.757164 }
+    }
+    <Vertex> 1793 {
+      -4.93225812912 -16.8457946777 0.644491136074
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.813739 0.129797 0.566552 }
+        <Binormal> { 0.196939 -0.940359 -0.067427 }
+      }
+      <Normal> { -0.305155 -0.131535 0.943144 }
+    }
+    <Vertex> 1794 {
+      -4.53326320648 -14.1648855209 1.29812788963
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.764388 0.034271 0.643846 }
+        <Binormal> { 0.085193 -0.927185 -0.051790 }
+      }
+      <Normal> { -0.319193 -0.082064 0.944121 }
+    }
+    <Vertex> 1795 {
+      -5.77582025528 -14.0086050034 0.0728101804852
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.656549 0.021291 0.753983 }
+        <Binormal> { -0.028320 -0.998022 0.052842 }
+      }
+      <Normal> { -0.741813 0.056429 0.668203 }
+    }
+    <Vertex> 1796 {
+      -6.00834178925 -16.147693634 -0.0369037613273
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.781366 0.070694 0.620056 }
+        <Binormal> { 0.039183 -0.996389 0.064224 }
+      }
+      <Normal> { -0.652791 0.023133 0.757164 }
+    }
+    <Vertex> 1797 {
+      -5.77582025528 -14.0086050034 0.0728101804852
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.656549 0.021291 0.753983 }
+        <Binormal> { -0.028320 -0.998022 0.052842 }
+      }
+      <Normal> { -0.741813 0.056429 0.668203 }
+    }
+    <Vertex> 1798 {
+      -6.85692882538 -14.240237236 -1.37037372589
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.921315 0.072593 0.381981 }
+        <Binormal> { -0.003094 -0.974536 0.192666 }
+      }
+      <Normal> { -0.491623 0.170385 0.853938 }
+    }
+    <Vertex> 1799 {
+      -7.02259349823 -16.8958034515 -0.762133955956
+      <UV>  {
+        0.791667 0.458333
+        <Tangent> { 0.921640 0.069917 0.381694 }
+        <Binormal> { -0.007057 -0.978593 0.196293 }
+      }
+      <Normal> { -0.331004 0.187872 0.924711 }
+    }
+    <Vertex> 1800 {
+      -6.00834178925 -16.147693634 -0.0369037613273
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.781366 0.070694 0.620056 }
+        <Binormal> { 0.039183 -0.996389 0.064224 }
+      }
+      <Normal> { -0.652791 0.023133 0.757164 }
+    }
+    <Vertex> 1801 {
+      -7.02259349823 -16.8958034515 -0.762133955956
+      <UV>  {
+        0.791667 0.458333
+        <Tangent> { 0.921640 0.069917 0.381694 }
+        <Binormal> { -0.007057 -0.978593 0.196293 }
+      }
+      <Normal> { -0.331004 0.187872 0.924711 }
+    }
+    <Vertex> 1802 {
+      -6.12064647675 -19.6365470886 -0.213918238878
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.919375 -0.266981 0.288912 }
+        <Binormal> { -0.195551 -0.937720 -0.244257 }
+      }
+      <Normal> { -0.197516 -0.208319 0.957884 }
+    }
+    <Vertex> 1803 {
+      -4.93225812912 -16.8457946777 0.644491136074
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.813739 0.129797 0.566552 }
+        <Binormal> { 0.196939 -0.940359 -0.067427 }
+      }
+      <Normal> { -0.305155 -0.131535 0.943144 }
+    }
+    <Vertex> 1804 {
+      -24.3980464935 -17.3461017609 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999999 0.000922 -0.000464 }
+        <Binormal> { 0.000922 -0.999969 -0.000611 }
+      }
+      <Normal> { 0.000458 -0.000610 0.999969 }
+    }
+    <Vertex> 1805 {
+      -20.3807945251 -17.3383312225 2.40457344055
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.999998 0.001934 0.000000 }
+        <Binormal> { 0.001934 -0.999968 -0.003818 }
+      }
+      <Normal> { 0.001831 -0.003815 0.999969 }
+    }
+    <Vertex> 1806 {
+      -20.3515148163 -14.3635282516 2.40457344055
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.801116 -0.598509 0.000000 }
+        <Binormal> { -0.598509 -0.801116 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1807 {
+      -24.3980464935 -14.3771276474 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.999999 0.001708 0.000000 }
+        <Binormal> { 0.001708 -0.999999 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1808 {
+      -24.3980464935 -17.3461017609 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999999 0.000922 -0.000464 }
+        <Binormal> { 0.000922 -0.999969 -0.000611 }
+      }
+      <Normal> { 0.000458 -0.000610 0.999969 }
+    }
+    <Vertex> 1809 {
+      -24.3980464935 -14.3771276474 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.999999 0.001708 0.000000 }
+        <Binormal> { 0.001708 -0.999999 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1810 {
+      -28.3144683838 -14.3771276474 2.40457344055
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1811 {
+      -28.3144683838 -17.3461017609 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1812 {
+      -24.3980464935 -17.3461017609 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999999 0.000922 -0.000464 }
+        <Binormal> { 0.000922 -0.999969 -0.000611 }
+      }
+      <Normal> { 0.000458 -0.000610 0.999969 }
+    }
+    <Vertex> 1813 {
+      -28.3144683838 -17.3461017609 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1814 {
+      -28.3144683838 -20.2730484009 2.40457344055
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1815 {
+      -24.3980464935 -20.2730484009 2.40457344055
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.999998 0.000012 -0.001868 }
+        <Binormal> { 0.000008 -0.999973 -0.002564 }
+      }
+      <Normal> { 0.002808 -0.002564 0.999969 }
+    }
+    <Vertex> 1816 {
+      -24.3980464935 -17.3461017609 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999999 0.000922 -0.000464 }
+        <Binormal> { 0.000922 -0.999969 -0.000611 }
+      }
+      <Normal> { 0.000458 -0.000610 0.999969 }
+    }
+    <Vertex> 1817 {
+      -24.3980464935 -20.2730484009 2.40457344055
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.999998 0.000012 -0.001868 }
+        <Binormal> { 0.000008 -0.999973 -0.002564 }
+      }
+      <Normal> { 0.002808 -0.002564 0.999969 }
+    }
+    <Vertex> 1818 {
+      -20.4411811829 -20.2729511261 2.38986229897
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.999998 0.000987 -0.001845 }
+        <Binormal> { 0.000957 -0.999805 -0.015881 }
+      }
+      <Normal> { 0.011475 -0.015870 0.999786 }
+    }
+    <Vertex> 1819 {
+      -20.3807945251 -17.3383312225 2.40457344055
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.999998 0.001934 0.000000 }
+        <Binormal> { 0.001934 -0.999968 -0.003818 }
+      }
+      <Normal> { 0.001831 -0.003815 0.999969 }
+    }
+    <Vertex> 1820 {
+      -32.1065597534 -17.3461017609 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1821 {
+      -28.3144683838 -17.3461017609 2.40457344055
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1822 {
+      -28.3144683838 -14.3771276474 2.40457344055
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.782416 -0.622756 0.000000 }
+        <Binormal> { -0.622756 -0.782416 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1823 {
+      -32.1065559387 -14.3771276474 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1824 {
+      -32.1065597534 -17.3461017609 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1825 {
+      -32.1065559387 -14.3771276474 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1826 {
+      -35.836479187 -14.3771276474 2.40457344055
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1827 {
+      -35.836479187 -17.3461017609 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1828 {
+      -32.1065597534 -17.3461017609 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1829 {
+      -35.836479187 -17.3461017609 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1830 {
+      -35.836479187 -20.2730484009 2.40457344055
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1831 {
+      -32.1065597534 -20.2730484009 2.40457344055
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1832 {
+      -32.1065597534 -17.3461017609 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1833 {
+      -32.1065597534 -20.2730484009 2.40457344055
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1834 {
+      -28.3144683838 -20.2730484009 2.40457344055
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1835 {
+      -28.3144683838 -17.3461017609 2.40457344055
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1836 {
+      -24.3980464935 -23.1652355194 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999837 0.000438 -0.018055 }
+        <Binormal> { -0.000004 -0.999677 -0.024510 }
+      }
+      <Normal> { 0.018159 -0.024506 0.999512 }
+    }
+    <Vertex> 1837 {
+      -20.5442523956 -23.1726131439 2.34572958946
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.999882 -0.001914 -0.015267 }
+        <Binormal> { -0.003154 -0.996037 -0.081684 }
+      }
+      <Normal> { 0.049959 -0.081790 0.995392 }
+    }
+    <Vertex> 1838 {
+      -20.4411811829 -20.2729511261 2.38986229897
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.819781 0.572494 0.014484 }
+        <Binormal> { 0.572601 -0.819440 -0.019579 }
+      }
+      <Normal> { 0.011475 -0.015870 0.999786 }
+    }
+    <Vertex> 1839 {
+      -24.3980464935 -20.2730484009 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.999998 0.000012 -0.001868 }
+        <Binormal> { 0.000008 -0.999973 -0.002564 }
+      }
+      <Normal> { 0.002808 -0.002564 0.999969 }
+    }
+    <Vertex> 1840 {
+      -24.3980464935 -23.1652355194 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999837 0.000438 -0.018055 }
+        <Binormal> { -0.000004 -0.999677 -0.024510 }
+      }
+      <Normal> { 0.018159 -0.024506 0.999512 }
+    }
+    <Vertex> 1841 {
+      -24.3980464935 -20.2730484009 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.999998 0.000012 -0.001868 }
+        <Binormal> { 0.000008 -0.999973 -0.002564 }
+      }
+      <Normal> { 0.002808 -0.002564 0.999969 }
+    }
+    <Vertex> 1842 {
+      -28.3144683838 -20.2730484009 2.40457344055
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1843 {
+      -28.3144683838 -23.1652355194 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.999969 -0.003906 }
+      }
+      <Normal> { 0.001984 -0.003906 0.999969 }
+    }
+    <Vertex> 1844 {
+      -24.3980464935 -23.1652355194 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999837 0.000438 -0.018055 }
+        <Binormal> { -0.000004 -0.999677 -0.024510 }
+      }
+      <Normal> { 0.018159 -0.024506 0.999512 }
+    }
+    <Vertex> 1845 {
+      -28.3144683838 -23.1652355194 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.999969 -0.003906 }
+      }
+      <Normal> { 0.001984 -0.003906 0.999969 }
+    }
+    <Vertex> 1846 {
+      -28.3466072083 -26.1558628082 2.38913798332
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.999982 -0.000766 -0.005985 }
+        <Binormal> { -0.000857 -0.999842 -0.015249 }
+      }
+      <Normal> { 0.012421 -0.015259 0.999786 }
+    }
+    <Vertex> 1847 {
+      -24.5266094208 -26.1617908478 2.34283208847
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.998437 0.003676 -0.055763 }
+        <Binormal> { -0.000063 -0.997736 -0.066897 }
+      }
+      <Normal> { 0.061739 -0.066775 0.995849 }
+    }
+    <Vertex> 1848 {
+      -24.3980464935 -23.1652355194 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999837 0.000438 -0.018055 }
+        <Binormal> { -0.000004 -0.999677 -0.024510 }
+      }
+      <Normal> { 0.018159 -0.024506 0.999512 }
+    }
+    <Vertex> 1849 {
+      -24.5266094208 -26.1617908478 2.34283208847
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.998437 0.003676 -0.055763 }
+        <Binormal> { -0.000063 -0.997736 -0.066897 }
+      }
+      <Normal> { 0.061739 -0.066775 0.995849 }
+    }
+    <Vertex> 1850 {
+      -20.6625614166 -26.1275749207 1.95997941494
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.998360 0.003472 -0.057137 }
+        <Binormal> { -0.017658 -0.903188 -0.363426 }
+      }
+      <Normal> { 0.280160 -0.363048 0.888638 }
+    }
+    <Vertex> 1851 {
+      -20.5442523956 -23.1726131439 2.34572958946
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.999882 -0.001914 -0.015267 }
+        <Binormal> { -0.003154 -0.996037 -0.081684 }
+      }
+      <Normal> { 0.049959 -0.081790 0.995392 }
+    }
+    <Vertex> 1852 {
+      -32.1065597534 -23.1652355194 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 1.000000 -0.000066 -0.000514 }
+        <Binormal> { -0.000066 -0.999970 -0.000641 }
+      }
+      <Normal> { 0.000488 -0.000641 0.999969 }
+    }
+    <Vertex> 1853 {
+      -28.3144683838 -23.1652355194 2.40457344055
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.999969 -0.003906 }
+      }
+      <Normal> { 0.001984 -0.003906 0.999969 }
+    }
+    <Vertex> 1854 {
+      -28.3144683838 -20.2730484009 2.40457344055
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1855 {
+      -32.1065597534 -20.2730484009 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1856 {
+      -32.1065597534 -23.1652355194 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 1.000000 -0.000066 -0.000514 }
+        <Binormal> { -0.000066 -0.999970 -0.000641 }
+      }
+      <Normal> { 0.000488 -0.000641 0.999969 }
+    }
+    <Vertex> 1857 {
+      -32.1065597534 -20.2730484009 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1858 {
+      -35.836479187 -20.2730484009 2.40457344055
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1859 {
+      -35.836479187 -23.1652355194 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1860 {
+      -32.1065597534 -23.1652355194 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 1.000000 -0.000066 -0.000514 }
+        <Binormal> { -0.000066 -0.999970 -0.000641 }
+      }
+      <Normal> { 0.000488 -0.000641 0.999969 }
+    }
+    <Vertex> 1861 {
+      -35.836479187 -23.1652355194 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1862 {
+      -35.836479187 -26.1538829803 2.40457344055
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1863 {
+      -32.1065597534 -26.1538829803 2.40457344055
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.999998 -0.000264 -0.002061 }
+        <Binormal> { -0.000269 -0.999974 -0.002471 }
+      }
+      <Normal> { 0.003082 -0.002472 0.999969 }
+    }
+    <Vertex> 1864 {
+      -32.1065597534 -23.1652355194 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 1.000000 -0.000066 -0.000514 }
+        <Binormal> { -0.000066 -0.999970 -0.000641 }
+      }
+      <Normal> { 0.000488 -0.000641 0.999969 }
+    }
+    <Vertex> 1865 {
+      -32.1065597534 -26.1538829803 2.40457344055
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.999998 -0.000264 -0.002061 }
+        <Binormal> { -0.000269 -0.999974 -0.002471 }
+      }
+      <Normal> { 0.003082 -0.002472 0.999969 }
+    }
+    <Vertex> 1866 {
+      -28.3466072083 -26.1558628082 2.38913798332
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.999998 -0.000262 -0.002044 }
+        <Binormal> { -0.000293 -0.999810 -0.015256 }
+      }
+      <Normal> { 0.012421 -0.015259 0.999786 }
+    }
+    <Vertex> 1867 {
+      -28.3144683838 -23.1652355194 2.40457344055
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.999969 -0.003906 }
+      }
+      <Normal> { 0.001984 -0.003906 0.999969 }
+    }
+    <Vertex> 1868 {
+      -16.9400424957 -23.1947441101 2.16919875145
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.190031 0.973373 0.128190 }
+        <Binormal> { 0.971252 -0.167536 -0.167660 }
+      }
+      <Normal> { 0.137791 -0.176489 0.974578 }
+    }
+    <Vertex> 1869 {
+      -16.5277519226 -20.2726535797 2.34572958946
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.139461 0.988425 0.059713 }
+        <Binormal> { 0.986663 -0.133674 -0.091680 }
+      }
+      <Normal> { 0.084658 -0.057375 0.994751 }
+    }
+    <Vertex> 1870 {
+      -20.4411811829 -20.2729511261 2.38986229897
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.819781 0.572494 0.014484 }
+        <Binormal> { 0.572601 -0.819440 -0.019579 }
+      }
+      <Normal> { 0.011475 -0.015870 0.999786 }
+    }
+    <Vertex> 1871 {
+      -20.5442523956 -23.1726131439 2.34572958946
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.037685 0.996607 0.073177 }
+        <Binormal> { 0.997999 -0.033855 -0.052871 }
+      }
+      <Normal> { 0.049959 -0.081790 0.995392 }
+    }
+    <Vertex> 1872 {
+      -16.9400424957 -23.1947441101 2.16919875145
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.190031 0.973373 0.128190 }
+        <Binormal> { 0.971252 -0.167536 -0.167660 }
+      }
+      <Normal> { 0.137791 -0.176489 0.974578 }
+    }
+    <Vertex> 1873 {
+      -20.5442523956 -23.1726131439 2.34572958946
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.037685 0.996607 0.073177 }
+        <Binormal> { 0.997999 -0.033855 -0.052871 }
+      }
+      <Normal> { 0.049959 -0.081790 0.995392 }
+    }
+    <Vertex> 1874 {
+      -20.6625614166 -26.1275749207 1.95997941494
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.699394 0.712911 0.051047 }
+        <Binormal> { 0.652053 -0.607207 -0.453643 }
+      }
+      <Normal> { 0.280160 -0.363048 0.888638 }
+    }
+    <Vertex> 1875 {
+      -17.1888771057 -25.3656044006 1.53771138191
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.109402 0.954436 0.277638 }
+        <Binormal> { 0.904468 -0.020600 -0.285584 }
+      }
+      <Normal> { 0.232276 -0.584002 0.777764 }
+    }
+    <Vertex> 1876 {
+      -16.9400424957 -23.1947441101 2.16919875145
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.190031 0.973373 0.128190 }
+        <Binormal> { 0.971252 -0.167536 -0.167660 }
+      }
+      <Normal> { 0.137791 -0.176489 0.974578 }
+    }
+    <Vertex> 1877 {
+      -17.1888771057 -25.3656044006 1.53771138191
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.109402 0.954436 0.277638 }
+        <Binormal> { 0.904468 -0.020600 -0.285584 }
+      }
+      <Normal> { 0.232276 -0.584002 0.777764 }
+    }
+    <Vertex> 1878 {
+      -15.062330246 -24.8115329742 1.09885978699
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.271223 0.925976 0.262692 }
+        <Binormal> { 0.818158 -0.090822 -0.524586 }
+      }
+      <Normal> { 0.403027 -0.558184 0.725211 }
+    }
+    <Vertex> 1879 {
+      -14.2060632706 -23.2094974518 1.53771138191
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.461130 0.878083 0.127785 }
+        <Binormal> { 0.758471 -0.315371 -0.569955 }
+      }
+      <Normal> { 0.468642 -0.343608 0.813776 }
+    }
+    <Vertex> 1880 {
+      -16.9400424957 -23.1947441101 2.16919875145
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.190031 0.973373 0.128190 }
+        <Binormal> { 0.971252 -0.167536 -0.167660 }
+      }
+      <Normal> { 0.137791 -0.176489 0.974578 }
+    }
+    <Vertex> 1881 {
+      -14.2060632706 -23.2094974518 1.53771138191
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.461130 0.878083 0.127785 }
+        <Binormal> { 0.758471 -0.315371 -0.569955 }
+      }
+      <Normal> { 0.468642 -0.343608 0.813776 }
+    }
+    <Vertex> 1882 {
+      -12.5347423553 -19.998506546 1.79928779602
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.892080 0.325505 -0.313432 }
+        <Binormal> { 0.226079 -0.920421 -0.312414 }
+      }
+      <Normal> { 0.447157 -0.187048 0.874660 }
+    }
+    <Vertex> 1883 {
+      -16.5277519226 -20.2726535797 2.34572958946
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.139461 0.988425 0.059713 }
+        <Binormal> { 0.986663 -0.133674 -0.091680 }
+      }
+      <Normal> { 0.084658 -0.057375 0.994751 }
+    }
+    <Vertex> 1884 {
+      -11.55813694 -16.3971214294 0.978157818317
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.723508 -0.034700 -0.689444 }
+        <Binormal> { 0.009685 -0.997970 0.060392 }
+      }
+      <Normal> { 0.702567 0.049776 0.709861 }
+    }
+    <Vertex> 1885 {
+      -11.3290185928 -14.1764011383 0.443251699209
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.639995 -0.046640 -0.766962 }
+        <Binormal> { 0.032140 -0.995605 0.087363 }
+      }
+      <Normal> { 0.771752 0.080264 0.630787 }
+    }
+    <Vertex> 1886 {
+      -12.8338851929 -14.2589521408 1.91424322128
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.819838 -0.483251 -0.307139 }
+        <Binormal> { -0.424440 -0.871173 0.237754 }
+      }
+      <Normal> { 0.436537 0.032685 0.899075 }
+    }
+    <Vertex> 1887 {
+      -13.0375680923 -17.0700035095 2.04796934128
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.805439 -0.149423 -0.573534 }
+        <Binormal> { -0.133933 -0.967097 0.063871 }
+      }
+      <Normal> { 0.397839 0.005493 0.917417 }
+    }
+    <Vertex> 1888 {
+      -11.55813694 -16.3971214294 0.978157818317
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.723508 -0.034700 -0.689444 }
+        <Binormal> { 0.009685 -0.997970 0.060392 }
+      }
+      <Normal> { 0.702567 0.049776 0.709861 }
+    }
+    <Vertex> 1889 {
+      -13.0375680923 -17.0700035095 2.04796934128
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.805439 -0.149423 -0.573534 }
+        <Binormal> { -0.133933 -0.967097 0.063871 }
+      }
+      <Normal> { 0.397839 0.005493 0.917417 }
+    }
+    <Vertex> 1890 {
+      -12.5347423553 -19.998506546 1.79928779602
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.773665 -0.026530 -0.633039 }
+        <Binormal> { -0.141613 -0.959762 -0.132849 }
+      }
+      <Normal> { 0.447157 -0.187048 0.874660 }
+    }
+    <Vertex> 1891 {
+      -10.8437681198 -17.1452312469 0.25292763114
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.663931 0.111663 -0.739410 }
+        <Binormal> { 0.222828 -0.952089 0.056301 }
+      }
+      <Normal> { 0.563860 0.179632 0.806055 }
+    }
+    <Vertex> 1892 {
+      -11.55813694 -16.3971214294 0.978157818317
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.723508 -0.034700 -0.689444 }
+        <Binormal> { 0.009685 -0.997970 0.060392 }
+      }
+      <Normal> { 0.702567 0.049776 0.709861 }
+    }
+    <Vertex> 1893 {
+      -10.8437681198 -17.1452312469 0.25292763114
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.663931 0.111663 -0.739410 }
+        <Binormal> { 0.222828 -0.952089 0.056301 }
+      }
+      <Normal> { 0.563860 0.179632 0.806055 }
+    }
+    <Vertex> 1894 {
+      -10.4264764786 -14.4343919754 -0.970763266087
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.574006 -0.006505 -0.818826 }
+        <Binormal> { 0.140053 -0.947182 0.105703 }
+      }
+      <Normal> { 0.622211 0.177099 0.762535 }
+    }
+    <Vertex> 1895 {
+      -11.3290185928 -14.1764011383 0.443251699209
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.639995 -0.046640 -0.766962 }
+        <Binormal> { 0.032140 -0.995605 0.087363 }
+      }
+      <Normal> { 0.771752 0.080264 0.630787 }
+    }
+    <Vertex> 1896 {
+      -16.2862110138 -17.3150196075 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.997770 0.030343 -0.059451 }
+        <Binormal> { 0.029636 -0.999439 -0.012720 }
+      }
+      <Normal> { 0.064943 -0.010773 0.997803 }
+    }
+    <Vertex> 1897 {
+      -13.0375680923 -17.0700035095 2.04796934128
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.991247 0.074761 -0.108809 }
+        <Binormal> { 0.069185 -0.952676 -0.024298 }
+      }
+      <Normal> { 0.397839 0.005493 0.917417 }
+    }
+    <Vertex> 1898 {
+      -12.8338851929 -14.2589521408 1.91424322128
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.819838 -0.483251 -0.307139 }
+        <Binormal> { -0.424440 -0.871173 0.237754 }
+      }
+      <Normal> { 0.436537 0.032685 0.899075 }
+    }
+    <Vertex> 1899 {
+      -16.1690883636 -14.3227319717 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.997784 0.013880 -0.065079 }
+        <Binormal> { 0.014209 -0.999849 0.004600 }
+      }
+      <Normal> { 0.070101 0.005585 0.997497 }
+    }
+    <Vertex> 1900 {
+      -16.2862110138 -17.3150196075 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.997770 0.030343 -0.059451 }
+        <Binormal> { 0.029636 -0.999439 -0.012720 }
+      }
+      <Normal> { 0.064943 -0.010773 0.997803 }
+    }
+    <Vertex> 1901 {
+      -16.1690883636 -14.3227319717 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.997784 0.013880 -0.065079 }
+        <Binormal> { 0.014209 -0.999849 0.004600 }
+      }
+      <Normal> { 0.070101 0.005585 0.997497 }
+    }
+    <Vertex> 1902 {
+      -20.3515148163 -14.3635282516 2.40457344055
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.999970 0.007745 0.000000 }
+        <Binormal> { 0.007745 -0.999970 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1903 {
+      -20.3807945251 -17.3383312225 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.999984 0.005693 0.000000 }
+        <Binormal> { 0.005693 -0.999953 -0.003825 }
+      }
+      <Normal> { 0.001831 -0.003815 0.999969 }
+    }
+    <Vertex> 1904 {
+      -16.2862110138 -17.3150196075 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.997770 0.030343 -0.059451 }
+        <Binormal> { 0.029636 -0.999439 -0.012720 }
+      }
+      <Normal> { 0.064943 -0.010773 0.997803 }
+    }
+    <Vertex> 1905 {
+      -20.3807945251 -17.3383312225 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.999984 0.005693 0.000000 }
+        <Binormal> { 0.005693 -0.999953 -0.003825 }
+      }
+      <Normal> { 0.001831 -0.003815 0.999969 }
+    }
+    <Vertex> 1906 {
+      -20.4411811829 -20.2729511261 2.38986229897
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.999980 0.002948 -0.005511 }
+        <Binormal> { 0.002860 -0.999830 -0.015903 }
+      }
+      <Normal> { 0.011475 -0.015870 0.999786 }
+    }
+    <Vertex> 1907 {
+      -16.5277519226 -20.2726535797 2.34572958946
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.996625 0.034594 -0.074443 }
+        <Binormal> { 0.030142 -0.997696 -0.060110 }
+      }
+      <Normal> { 0.084658 -0.057375 0.994751 }
+    }
+    <Vertex> 1908 {
+      -16.2862110138 -17.3150196075 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.997770 0.030343 -0.059451 }
+        <Binormal> { 0.029636 -0.999439 -0.012720 }
+      }
+      <Normal> { 0.064943 -0.010773 0.997803 }
+    }
+    <Vertex> 1909 {
+      -16.5277519226 -20.2726535797 2.34572958946
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.996625 0.034594 -0.074443 }
+        <Binormal> { 0.030142 -0.997696 -0.060110 }
+      }
+      <Normal> { 0.084658 -0.057375 0.994751 }
+    }
+    <Vertex> 1910 {
+      -12.5347423553 -19.998506546 1.79928779602
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.892080 0.325505 -0.313432 }
+        <Binormal> { 0.226079 -0.920421 -0.312414 }
+      }
+      <Normal> { 0.447157 -0.187048 0.874660 }
+    }
+    <Vertex> 1911 {
+      -13.0375680923 -17.0700035095 2.04796934128
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.991247 0.074761 -0.108809 }
+        <Binormal> { 0.069185 -0.952676 -0.024298 }
+      }
+      <Normal> { 0.397839 0.005493 0.917417 }
+    }
+    <Vertex> 1912 {
+      -8.9831609726 -17.2698879242 -0.496346473694
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.974553 0.038627 -0.220806 }
+        <Binormal> { 0.101883 -0.953673 0.282840 }
+      }
+      <Normal> { 0.206488 0.298410 0.931791 }
+    }
+    <Vertex> 1913 {
+      -8.6714630127 -14.4189186096 -1.64676845074
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.992343 0.053976 -0.111093 }
+        <Binormal> { 0.076685 -0.974204 0.211667 }
+      }
+      <Normal> { 0.110416 0.219306 0.969359 }
+    }
+    <Vertex> 1914 {
+      -10.4264764786 -14.4343919754 -0.970763266087
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.929959 -0.028083 -0.366590 }
+        <Binormal> { 0.043509 -0.937223 0.182168 }
+      }
+      <Normal> { 0.622211 0.177099 0.762535 }
+    }
+    <Vertex> 1915 {
+      -10.8437681198 -17.1452312469 0.25292763114
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.925823 -0.062028 -0.372833 }
+        <Binormal> { 0.016975 -0.956490 0.201283 }
+      }
+      <Normal> { 0.563860 0.179632 0.806055 }
+    }
+    <Vertex> 1916 {
+      -8.9831609726 -17.2698879242 -0.496346473694
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.974553 0.038627 -0.220806 }
+        <Binormal> { 0.101883 -0.953673 0.282840 }
+      }
+      <Normal> { 0.206488 0.298410 0.931791 }
+    }
+    <Vertex> 1917 {
+      -10.8437681198 -17.1452312469 0.25292763114
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.925823 -0.062028 -0.372833 }
+        <Binormal> { 0.016975 -0.956490 0.201283 }
+      }
+      <Normal> { 0.563860 0.179632 0.806055 }
+    }
+    <Vertex> 1918 {
+      -12.5347423553 -19.998506546 1.79928779602
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.892080 0.325505 -0.313432 }
+        <Binormal> { 0.226079 -0.920421 -0.312414 }
+      }
+      <Normal> { 0.447157 -0.187048 0.874660 }
+    }
+    <Vertex> 1919 {
+      -9.31296443939 -19.3812122345 0.277881801128
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.952727 0.053764 -0.299034 }
+        <Binormal> { -0.031707 -0.961005 -0.273801 }
+      }
+      <Normal> { 0.281655 -0.271493 0.920286 }
+    }
+    <Vertex> 1920 {
+      -8.9831609726 -17.2698879242 -0.496346473694
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.974553 0.038627 -0.220806 }
+        <Binormal> { 0.101883 -0.953673 0.282840 }
+      }
+      <Normal> { 0.206488 0.298410 0.931791 }
+    }
+    <Vertex> 1921 {
+      -9.31296443939 -19.3812122345 0.277881801128
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.952727 0.053764 -0.299034 }
+        <Binormal> { -0.031707 -0.961005 -0.273801 }
+      }
+      <Normal> { 0.281655 -0.271493 0.920286 }
+    }
+    <Vertex> 1922 {
+      -6.12064647675 -19.6365470886 -0.213918238878
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.919375 -0.266981 0.288912 }
+        <Binormal> { -0.195551 -0.937720 -0.244257 }
+      }
+      <Normal> { -0.197516 -0.208319 0.957884 }
+    }
+    <Vertex> 1923 {
+      -7.02259349823 -16.8958034515 -0.762133955956
+      <UV>  {
+        0.791667 0.458333
+        <Tangent> { 0.921640 0.069917 0.381694 }
+        <Binormal> { -0.007057 -0.978593 0.196293 }
+      }
+      <Normal> { -0.331004 0.187872 0.924711 }
+    }
+    <Vertex> 1924 {
+      -8.9831609726 -17.2698879242 -0.496346473694
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.974553 0.038627 -0.220806 }
+        <Binormal> { 0.101883 -0.953673 0.282840 }
+      }
+      <Normal> { 0.206488 0.298410 0.931791 }
+    }
+    <Vertex> 1925 {
+      -7.02259349823 -16.8958034515 -0.762133955956
+      <UV>  {
+        0.791667 0.458333
+        <Tangent> { 0.921640 0.069917 0.381694 }
+        <Binormal> { -0.007057 -0.978593 0.196293 }
+      }
+      <Normal> { -0.331004 0.187872 0.924711 }
+    }
+    <Vertex> 1926 {
+      -6.85692882538 -14.240237236 -1.37037372589
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.921315 0.072593 0.381981 }
+        <Binormal> { -0.003094 -0.974536 0.192666 }
+      }
+      <Normal> { -0.491623 0.170385 0.853938 }
+    }
+    <Vertex> 1927 {
+      -8.6714630127 -14.4189186096 -1.64676845074
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.992343 0.053976 -0.111093 }
+        <Binormal> { 0.076685 -0.974204 0.211667 }
+      }
+      <Normal> { 0.110416 0.219306 0.969359 }
+    }
+    <Vertex> 1928 {
+      4.56184911728 -28.9829063416 -0.888720989227
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.997324 -0.072924 0.005207 }
+        <Binormal> { -0.069735 -0.970231 -0.231452 }
+      }
+      <Normal> { -0.034364 -0.229560 0.972655 }
+    }
+    <Vertex> 1929 {
+      7.67474889755 -28.9308204651 -0.706889033318
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.988051 -0.146833 0.046859 }
+        <Binormal> { -0.136341 -0.974101 -0.177530 }
+      }
+      <Normal> { -0.102573 -0.164434 0.981017 }
+    }
+    <Vertex> 1930 {
+      7.19918632507 -25.5716743469 -0.261906713247
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.996292 -0.078471 0.035274 }
+        <Binormal> { -0.074928 -0.992778 -0.092254 }
+      }
+      <Normal> { -0.027955 -0.090396 0.995483 }
+    }
+    <Vertex> 1931 {
+      4.11504411697 -25.5846939087 -0.307364881039
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.994846 0.100633 0.012450 }
+        <Binormal> { 0.101392 -0.988698 -0.110298 }
+      }
+      <Normal> { -0.001251 -0.110996 0.993805 }
+    }
+    <Vertex> 1932 {
+      4.56184911728 -28.9829063416 -0.888720989227
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.997324 -0.072924 0.005207 }
+        <Binormal> { -0.069735 -0.970231 -0.231452 }
+      }
+      <Normal> { -0.034364 -0.229560 0.972655 }
+    }
+    <Vertex> 1933 {
+      4.11504411697 -25.5846939087 -0.307364881039
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.994846 0.100633 0.012450 }
+        <Binormal> { 0.101392 -0.988698 -0.110298 }
+      }
+      <Normal> { -0.001251 -0.110996 0.993805 }
+    }
+    <Vertex> 1934 {
+      1.13197898865 -25.5655536652 -0.232177615166
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.999693 0.019025 -0.015885 }
+        <Binormal> { 0.017274 -0.993692 -0.103008 }
+      }
+      <Normal> { 0.058229 -0.101932 0.993072 }
+    }
+    <Vertex> 1935 {
+      1.39426636696 -28.9063587189 -0.837996244431
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.996809 -0.074396 -0.028916 }
+        <Binormal> { -0.079134 -0.964851 -0.245552 }
+      }
+      <Normal> { 0.059389 -0.250771 0.966216 }
+    }
+    <Vertex> 1936 {
+      4.56184911728 -28.9829063416 -0.888720989227
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.997324 -0.072924 0.005207 }
+        <Binormal> { -0.069735 -0.970231 -0.231452 }
+      }
+      <Normal> { -0.034364 -0.229560 0.972655 }
+    }
+    <Vertex> 1937 {
+      1.39426636696 -28.9063587189 -0.837996244431
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.996809 -0.074396 -0.028916 }
+        <Binormal> { -0.079134 -0.964851 -0.245552 }
+      }
+      <Normal> { 0.059389 -0.250771 0.966216 }
+    }
+    <Vertex> 1938 {
+      1.48542678356 -31.5088615417 -1.76593053341
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.990959 -0.126158 -0.045658 }
+        <Binormal> { -0.127444 -0.780830 -0.608516 }
+      }
+      <Normal> { 0.019135 -0.616504 0.787072 }
+    }
+    <Vertex> 1939 {
+      4.85971927643 -31.6236820221 -1.79009187222
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.954998 -0.296613 -0.000503 }
+        <Binormal> { -0.239099 -0.768819 -0.589751 }
+      }
+      <Normal> { -0.114963 -0.581835 0.805109 }
+    }
+    <Vertex> 1940 {
+      4.56184911728 -28.9829063416 -0.888720989227
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.997324 -0.072924 0.005207 }
+        <Binormal> { -0.069735 -0.970231 -0.231452 }
+      }
+      <Normal> { -0.034364 -0.229560 0.972655 }
+    }
+    <Vertex> 1941 {
+      4.85971927643 -31.6236820221 -1.79009187222
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.954998 -0.296613 -0.000503 }
+        <Binormal> { -0.239099 -0.768819 -0.589751 }
+      }
+      <Normal> { -0.114963 -0.581835 0.805109 }
+    }
+    <Vertex> 1942 {
+      8.12346458435 -32.4771995544 -1.38274729252
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.966604 -0.236972 0.097576 }
+        <Binormal> { -0.187135 -0.899262 -0.330144 }
+      }
+      <Normal> { -0.376141 -0.249336 0.892361 }
+    }
+    <Vertex> 1943 {
+      7.67474889755 -28.9308204651 -0.706889033318
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.988051 -0.146833 0.046859 }
+        <Binormal> { -0.136341 -0.974101 -0.177530 }
+      }
+      <Normal> { -0.102573 -0.164434 0.981017 }
+    }
+    <Vertex> 1944 {
+      10.3707780838 -28.8267211914 -0.433198779821
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.967536 -0.237938 0.085198 }
+        <Binormal> { -0.228858 -0.967863 -0.104023 }
+      }
+      <Normal> { -0.107456 -0.081088 0.990875 }
+    }
+    <Vertex> 1945 {
+      12.8909225464 -28.729139328 -0.19348423183
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.965782 -0.253400 0.055266 }
+        <Binormal> { -0.251544 -0.967063 -0.038314 }
+      }
+      <Normal> { -0.058382 -0.024354 0.997986 }
+    }
+    <Vertex> 1946 {
+      12.818151474 -25.5212535858 -0.133555784822
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.969092 -0.245011 0.028816 }
+        <Binormal> { -0.244325 -0.969290 -0.024742 }
+      }
+      <Normal> { -0.022279 -0.019898 0.999542 }
+    }
+    <Vertex> 1947 {
+      10.0796890259 -25.5456466675 -0.19348423183
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.968873 -0.247540 0.002907 }
+        <Binormal> { -0.246877 -0.966991 -0.060538 }
+      }
+      <Normal> { -0.034089 -0.053774 0.997955 }
+    }
+    <Vertex> 1948 {
+      10.3707780838 -28.8267211914 -0.433198779821
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.967536 -0.237938 0.085198 }
+        <Binormal> { -0.228858 -0.967863 -0.104023 }
+      }
+      <Normal> { -0.107456 -0.081088 0.990875 }
+    }
+    <Vertex> 1949 {
+      10.0796890259 -25.5456466675 -0.19348423183
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.968873 -0.247540 0.002907 }
+        <Binormal> { -0.246877 -0.966991 -0.060538 }
+      }
+      <Normal> { -0.034089 -0.053774 0.997955 }
+    }
+    <Vertex> 1950 {
+      7.19918632507 -25.5716743469 -0.261906713247
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.996292 -0.078471 0.035274 }
+        <Binormal> { -0.074928 -0.992778 -0.092254 }
+      }
+      <Normal> { -0.027955 -0.090396 0.995483 }
+    }
+    <Vertex> 1951 {
+      7.67474889755 -28.9308204651 -0.706889033318
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.988051 -0.146833 0.046859 }
+        <Binormal> { -0.136341 -0.974101 -0.177530 }
+      }
+      <Normal> { -0.102573 -0.164434 0.981017 }
+    }
+    <Vertex> 1952 {
+      10.3707780838 -28.8267211914 -0.433198779821
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.967536 -0.237938 0.085198 }
+        <Binormal> { -0.228858 -0.967863 -0.104023 }
+      }
+      <Normal> { -0.107456 -0.081088 0.990875 }
+    }
+    <Vertex> 1953 {
+      7.67474889755 -28.9308204651 -0.706889033318
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.988051 -0.146833 0.046859 }
+        <Binormal> { -0.136341 -0.974101 -0.177530 }
+      }
+      <Normal> { -0.102573 -0.164434 0.981017 }
+    }
+    <Vertex> 1954 {
+      8.12346458435 -32.4771995544 -1.38274729252
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.966604 -0.236972 0.097576 }
+        <Binormal> { -0.187135 -0.899262 -0.330144 }
+      }
+      <Normal> { -0.376141 -0.249336 0.892361 }
+    }
+    <Vertex> 1955 {
+      10.5648374557 -32.3385810852 -0.593008577824
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.943683 -0.258231 0.206832 }
+        <Binormal> { -0.249300 -0.965578 -0.068084 }
+      }
+      <Normal> { -0.189825 -0.020203 0.981597 }
+    }
+    <Vertex> 1956 {
+      10.3707780838 -28.8267211914 -0.433198779821
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.967536 -0.237938 0.085198 }
+        <Binormal> { -0.228858 -0.967863 -0.104023 }
+      }
+      <Normal> { -0.107456 -0.081088 0.990875 }
+    }
+    <Vertex> 1957 {
+      10.5648374557 -32.3385810852 -0.593008577824
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.943683 -0.258231 0.206832 }
+        <Binormal> { -0.249300 -0.965578 -0.068084 }
+      }
+      <Normal> { -0.189825 -0.020203 0.981597 }
+    }
+    <Vertex> 1958 {
+      12.9394388199 -32.1922111511 -0.233436778188
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.962279 -0.262969 0.069760 }
+        <Binormal> { -0.262091 -0.964765 -0.021489 }
+      }
+      <Normal> { -0.080264 -0.000397 0.996765 }
+    }
+    <Vertex> 1959 {
+      12.8909225464 -28.729139328 -0.19348423183
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.965782 -0.253400 0.055266 }
+        <Binormal> { -0.251544 -0.967063 -0.038314 }
+      }
+      <Normal> { -0.058382 -0.024354 0.997986 }
+    }
+    <Vertex> 1960 {
+      15.4761724472 -28.6966152191 -0.113579511642
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.966710 -0.255553 0.012807 }
+        <Binormal> { -0.255472 -0.966777 -0.007465 }
+      }
+      <Normal> { -0.014435 -0.003906 0.999878 }
+    }
+    <Vertex> 1961 {
+      18.0939731598 -28.6966133118 -0.113579511642
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.966128 -0.258062 0.000000 }
+        <Binormal> { -0.258062 -0.966128 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1962 {
+      18.0939731598 -25.5131206512 -0.113579511642
+      <UV>  {
+        -0.042124 0.762705
+        <Tangent> { 0.968643 -0.248457 0.000000 }
+        <Binormal> { -0.248457 -0.968643 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1963 {
+      15.4761724472 -25.5131206512 -0.113579511642
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.969447 -0.245273 0.003671 }
+        <Binormal> { -0.245253 -0.969438 -0.004528 }
+      }
+      <Normal> { -0.005676 -0.003235 0.999969 }
+    }
+    <Vertex> 1964 {
+      15.4761724472 -28.6966152191 -0.113579511642
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.966710 -0.255553 0.012807 }
+        <Binormal> { -0.255472 -0.966777 -0.007465 }
+      }
+      <Normal> { -0.014435 -0.003906 0.999878 }
+    }
+    <Vertex> 1965 {
+      15.4761724472 -25.5131206512 -0.113579511642
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.969447 -0.245273 0.003671 }
+        <Binormal> { -0.245253 -0.969438 -0.004528 }
+      }
+      <Normal> { -0.005676 -0.003235 0.999969 }
+    }
+    <Vertex> 1966 {
+      12.818151474 -25.5212535858 -0.133555784822
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.969092 -0.245011 0.028816 }
+        <Binormal> { -0.244325 -0.969290 -0.024742 }
+      }
+      <Normal> { -0.022279 -0.019898 0.999542 }
+    }
+    <Vertex> 1967 {
+      12.8909225464 -28.729139328 -0.19348423183
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.965782 -0.253400 0.055266 }
+        <Binormal> { -0.251544 -0.967063 -0.038314 }
+      }
+      <Normal> { -0.058382 -0.024354 0.997986 }
+    }
+    <Vertex> 1968 {
+      15.4761724472 -28.6966152191 -0.113579511642
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.966710 -0.255553 0.012807 }
+        <Binormal> { -0.255472 -0.966777 -0.007465 }
+      }
+      <Normal> { -0.014435 -0.003906 0.999878 }
+    }
+    <Vertex> 1969 {
+      12.8909225464 -28.729139328 -0.19348423183
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.965782 -0.253400 0.055266 }
+        <Binormal> { -0.251544 -0.967063 -0.038314 }
+      }
+      <Normal> { -0.058382 -0.024354 0.997986 }
+    }
+    <Vertex> 1970 {
+      12.9394388199 -32.1922111511 -0.233436778188
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.962279 -0.262969 0.069760 }
+        <Binormal> { -0.262091 -0.964765 -0.021489 }
+      }
+      <Normal> { -0.080264 -0.000397 0.996765 }
+    }
+    <Vertex> 1971 {
+      15.4761724472 -32.1434249878 -0.113579511642
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.964547 -0.262957 0.022428 }
+        <Binormal> { -0.262899 -0.964778 -0.005179 }
+      }
+      <Normal> { -0.019471 -0.000061 0.999786 }
+    }
+    <Vertex> 1972 {
+      15.4761724472 -28.6966152191 -0.113579511642
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.966710 -0.255553 0.012807 }
+        <Binormal> { -0.255472 -0.966777 -0.007465 }
+      }
+      <Normal> { -0.014435 -0.003906 0.999878 }
+    }
+    <Vertex> 1973 {
+      15.4761724472 -32.1434249878 -0.113579511642
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.964547 -0.262957 0.022428 }
+        <Binormal> { -0.262899 -0.964778 -0.005179 }
+      }
+      <Normal> { -0.019471 -0.000061 0.999786 }
+    }
+    <Vertex> 1974 {
+      18.0939731598 -32.1434249878 -0.113579511642
+      <UV>  {
+        -0.073782 0.891829
+        <Tangent> { 0.963533 -0.267591 0.000000 }
+        <Binormal> { -0.267591 -0.963533 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1975 {
+      18.0939731598 -28.6966133118 -0.113579511642
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.966128 -0.258062 0.000000 }
+        <Binormal> { -0.258062 -0.966128 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 1976 {
+      -1.4658113718 -28.6245594025 -0.41401720047
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.986449 -0.137830 -0.089005 }
+        <Binormal> { -0.155231 -0.959292 -0.234909 }
+      }
+      <Normal> { 0.032105 -0.242622 0.969573 }
+    }
+    <Vertex> 1977 {
+      1.39426636696 -28.9063587189 -0.837996244431
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.972092 -0.169196 -0.162510 }
+        <Binormal> { -0.204232 -0.948902 -0.233724 }
+      }
+      <Normal> { 0.059389 -0.250771 0.966216 }
+    }
+    <Vertex> 1978 {
+      1.13197898865 -25.5655536652 -0.232177615166
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.717410 -0.689605 -0.098832 }
+        <Binormal> { -0.694902 -0.718195 -0.032972 }
+      }
+      <Normal> { 0.058229 -0.101932 0.993072 }
+    }
+    <Vertex> 1979 {
+      -1.44529187679 -25.4951076508 0.0613350458443
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.995672 0.092525 -0.008717 }
+        <Binormal> { 0.091586 -0.992809 -0.076852 }
+      }
+      <Normal> { 0.013184 -0.075961 0.997009 }
+    }
+    <Vertex> 1980 {
+      -1.4658113718 -28.6245594025 -0.41401720047
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.986449 -0.137830 -0.089005 }
+        <Binormal> { -0.155231 -0.959292 -0.234909 }
+      }
+      <Normal> { 0.032105 -0.242622 0.969573 }
+    }
+    <Vertex> 1981 {
+      -1.44529187679 -25.4951076508 0.0613350458443
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.995672 0.092525 -0.008717 }
+        <Binormal> { 0.091586 -0.992809 -0.076852 }
+      }
+      <Normal> { 0.013184 -0.075961 0.997009 }
+    }
+    <Vertex> 1982 {
+      -3.54617714882 -25.4372901917 -0.105620525777
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.998587 -0.015939 0.050685 }
+        <Binormal> { -0.011069 -0.942105 -0.078194 }
+      }
+      <Normal> { -0.374371 -0.072329 0.924436 }
+    }
+    <Vertex> 1983 {
+      -3.77160167694 -28.3932991028 -0.404782384634
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.987772 -0.155113 -0.015688 }
+        <Binormal> { -0.146209 -0.905756 -0.250257 }
+      }
+      <Normal> { -0.329936 -0.201544 0.922208 }
+    }
+    <Vertex> 1984 {
+      -1.4658113718 -28.6245594025 -0.41401720047
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.986449 -0.137830 -0.089005 }
+        <Binormal> { -0.155231 -0.959292 -0.234909 }
+      }
+      <Normal> { 0.032105 -0.242622 0.969573 }
+    }
+    <Vertex> 1985 {
+      -3.77160167694 -28.3932991028 -0.404782384634
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.987772 -0.155113 -0.015688 }
+        <Binormal> { -0.146209 -0.905756 -0.250257 }
+      }
+      <Normal> { -0.329936 -0.201544 0.922208 }
+    }
+    <Vertex> 1986 {
+      -3.60399985313 -30.2704372406 -1.11836576462
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.933030 -0.350303 -0.082111 }
+        <Binormal> { -0.333737 -0.765572 -0.526176 }
+      }
+      <Normal> { -0.270821 -0.462264 0.844356 }
+    }
+    <Vertex> 1987 {
+      -1.81428253651 -31.0861663818 -1.2857388258
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.891390 -0.414056 -0.184343 }
+        <Binormal> { -0.444265 -0.720482 -0.529951 }
+      }
+      <Normal> { -0.040651 -0.575640 0.816675 }
+    }
+    <Vertex> 1988 {
+      -1.4658113718 -28.6245594025 -0.41401720047
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.986449 -0.137830 -0.089005 }
+        <Binormal> { -0.155231 -0.959292 -0.234909 }
+      }
+      <Normal> { 0.032105 -0.242622 0.969573 }
+    }
+    <Vertex> 1989 {
+      -1.81428253651 -31.0861663818 -1.2857388258
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.891390 -0.414056 -0.184343 }
+        <Binormal> { -0.444265 -0.720482 -0.529951 }
+      }
+      <Normal> { -0.040651 -0.575640 0.816675 }
+    }
+    <Vertex> 1990 {
+      1.48542678356 -31.5088615417 -1.76593053341
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.959302 -0.217054 -0.180629 }
+        <Binormal> { -0.282196 -0.758497 -0.587261 }
+      }
+      <Normal> { 0.019135 -0.616504 0.787072 }
+    }
+    <Vertex> 1991 {
+      1.39426636696 -28.9063587189 -0.837996244431
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.972092 -0.169196 -0.162510 }
+        <Binormal> { -0.204232 -0.948902 -0.233724 }
+      }
+      <Normal> { 0.059389 -0.250771 0.966216 }
+    }
+    <Vertex> 1992 {
+      -24.9122962952 -29.4018497467 2.15760707855
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.993246 -0.004185 -0.115952 }
+        <Binormal> { -0.011917 -0.997676 -0.066079 }
+      }
+      <Normal> { 0.123692 -0.067049 0.990020 }
+    }
+    <Vertex> 1993 {
+      -22.1854820251 -29.4176673889 1.52032351494
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.973744 -0.005648 -0.227574 }
+        <Binormal> { -0.046846 -0.943317 -0.177030 }
+      }
+      <Normal> { 0.483169 -0.184606 0.855831 }
+    }
+    <Vertex> 1994 {
+      -20.6625614166 -26.1275749207 1.95997941494
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.848636 0.527376 -0.041130 }
+        <Binormal> { 0.453714 -0.765653 -0.455845 }
+      }
+      <Normal> { 0.280160 -0.363048 0.888638 }
+    }
+    <Vertex> 1995 {
+      -24.5266094208 -26.1617908478 2.34283208847
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.998437 0.003676 -0.055763 }
+        <Binormal> { -0.000063 -0.997736 -0.066897 }
+      }
+      <Normal> { 0.061739 -0.066775 0.995849 }
+    }
+    <Vertex> 1996 {
+      -24.9122962952 -29.4018497467 2.15760707855
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.993246 -0.004185 -0.115952 }
+        <Binormal> { -0.011917 -0.997676 -0.066079 }
+      }
+      <Normal> { 0.123692 -0.067049 0.990020 }
+    }
+    <Vertex> 1997 {
+      -24.5266094208 -26.1617908478 2.34283208847
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.998437 0.003676 -0.055763 }
+        <Binormal> { -0.000063 -0.997736 -0.066897 }
+      }
+      <Normal> { 0.061739 -0.066775 0.995849 }
+    }
+    <Vertex> 1998 {
+      -28.3466072083 -26.1558628082 2.38913798332
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.999496 -0.004032 -0.031482 }
+        <Binormal> { -0.004512 -0.999674 -0.015201 }
+      }
+      <Normal> { 0.012421 -0.015259 0.999786 }
+    }
+    <Vertex> 1999 {
+      -28.443031311 -29.3781242371 2.34283161163
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.998604 -0.006710 -0.052387 }
+        <Binormal> { -0.007693 -0.999574 -0.018616 }
+      }
+      <Normal> { 0.032472 -0.018860 0.999268 }
+    }
+    <Vertex> 2000 {
+      -24.9122962952 -29.4018497467 2.15760707855
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.993246 -0.004185 -0.115952 }
+        <Binormal> { -0.011917 -0.997676 -0.066079 }
+      }
+      <Normal> { 0.123692 -0.067049 0.990020 }
+    }
+    <Vertex> 2001 {
+      -28.443031311 -29.3781242371 2.34283161163
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.998604 -0.006710 -0.052387 }
+        <Binormal> { -0.007693 -0.999574 -0.018616 }
+      }
+      <Normal> { 0.032472 -0.018860 0.999268 }
+    }
+    <Vertex> 2002 {
+      -28.5073108673 -32.8288879395 2.31196093559
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.997698 -0.008615 -0.067262 }
+        <Binormal> { -0.008636 -0.999670 -0.000045 }
+      }
+      <Normal> { 0.044252 -0.000427 0.998993 }
+    }
+    <Vertex> 2003 {
+      -25.1694221497 -32.8644752502 2.03412413597
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.986681 -0.009858 -0.162370 }
+        <Binormal> { -0.009931 -0.999912 0.000362 }
+      }
+      <Normal> { 0.155858 -0.001190 0.987762 }
+    }
+    <Vertex> 2004 {
+      -24.9122962952 -29.4018497467 2.15760707855
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.993246 -0.004185 -0.115952 }
+        <Binormal> { -0.011917 -0.997676 -0.066079 }
+      }
+      <Normal> { 0.123692 -0.067049 0.990020 }
+    }
+    <Vertex> 2005 {
+      -25.1694221497 -32.8644752502 2.03412413597
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.986681 -0.009858 -0.162370 }
+        <Binormal> { -0.009931 -0.999912 0.000362 }
+      }
+      <Normal> { 0.155858 -0.001190 0.987762 }
+    }
+    <Vertex> 2006 {
+      -22.5711708069 -32.8881988525 1.33509898186
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.969901 -0.007202 -0.243394 }
+        <Binormal> { -0.006762 -0.960293 0.001470 }
+      }
+      <Normal> { 0.504135 -0.002228 0.863582 }
+    }
+    <Vertex> 2007 {
+      -22.1854820251 -29.4176673889 1.52032351494
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.973744 -0.005648 -0.227574 }
+        <Binormal> { -0.046846 -0.943317 -0.177030 }
+      }
+      <Normal> { 0.483169 -0.184606 0.855831 }
+    }
+    <Vertex> 2008 {
+      -32.1065597534 -29.370218277 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999969 -0.001002 -0.007820 }
+        <Binormal> { -0.001025 -0.999970 -0.002983 }
+      }
+      <Normal> { 0.007904 -0.002991 0.999939 }
+    }
+    <Vertex> 2009 {
+      -28.443031311 -29.3781242371 2.34283161163
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.999856 -0.002158 -0.016851 }
+        <Binormal> { -0.002474 -0.999671 -0.018788 }
+      }
+      <Normal> { 0.032472 -0.018860 0.999268 }
+    }
+    <Vertex> 2010 {
+      -28.3466072083 -26.1558628082 2.38913798332
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.999945 -0.001332 -0.010396 }
+        <Binormal> { -0.001490 -0.999861 -0.015242 }
+      }
+      <Normal> { 0.012421 -0.015259 0.999786 }
+    }
+    <Vertex> 2011 {
+      -32.1065597534 -26.1538829803 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.999998 -0.000264 -0.002061 }
+        <Binormal> { -0.000269 -0.999974 -0.002471 }
+      }
+      <Normal> { 0.003082 -0.002472 0.999969 }
+    }
+    <Vertex> 2012 {
+      -32.1065597534 -29.370218277 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999969 -0.001002 -0.007820 }
+        <Binormal> { -0.001025 -0.999970 -0.002983 }
+      }
+      <Normal> { 0.007904 -0.002991 0.999939 }
+    }
+    <Vertex> 2013 {
+      -32.1065597534 -26.1538829803 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.999998 -0.000264 -0.002061 }
+        <Binormal> { -0.000269 -0.999974 -0.002471 }
+      }
+      <Normal> { 0.003082 -0.002472 0.999969 }
+    }
+    <Vertex> 2014 {
+      -35.836479187 -26.1538829803 2.40457344055
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 1.000000 -0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 2015 {
+      -35.836479187 -29.3702163696 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 1.000000 -0.000001 0.000000 }
+        <Binormal> { -0.000001 -1.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 2016 {
+      -32.1065597534 -29.370218277 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999969 -0.001002 -0.007820 }
+        <Binormal> { -0.001025 -0.999970 -0.002983 }
+      }
+      <Normal> { 0.007904 -0.002991 0.999939 }
+    }
+    <Vertex> 2017 {
+      -35.836479187 -29.3702163696 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 1.000000 -0.000001 0.000000 }
+        <Binormal> { -0.000001 -1.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 2018 {
+      -35.836479187 -32.8170280457 2.40457344055
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 1.000000 -0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 2019 {
+      -32.1065597534 -32.8170280457 2.40457344055
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.999919 -0.001618 -0.012635 }
+        <Binormal> { -0.001619 -0.999992 -0.000044 }
+      }
+      <Normal> { 0.010620 -0.000061 0.999939 }
+    }
+    <Vertex> 2020 {
+      -32.1065597534 -29.370218277 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999969 -0.001002 -0.007820 }
+        <Binormal> { -0.001025 -0.999970 -0.002983 }
+      }
+      <Normal> { 0.007904 -0.002991 0.999939 }
+    }
+    <Vertex> 2021 {
+      -32.1065597534 -32.8170280457 2.40457344055
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.999919 -0.001618 -0.012635 }
+        <Binormal> { -0.001619 -0.999992 -0.000044 }
+      }
+      <Normal> { 0.010620 -0.000061 0.999939 }
+    }
+    <Vertex> 2022 {
+      -28.5073108673 -32.8288879395 2.31196093559
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.999771 -0.002721 -0.021248 }
+        <Binormal> { -0.002727 -0.999704 -0.000307 }
+      }
+      <Normal> { 0.044252 -0.000427 0.998993 }
+    }
+    <Vertex> 2023 {
+      -28.443031311 -29.3781242371 2.34283161163
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.999856 -0.002158 -0.016851 }
+        <Binormal> { -0.002474 -0.999671 -0.018788 }
+      }
+      <Normal> { 0.032472 -0.018860 0.999268 }
+    }
+    <Vertex> 2024 {
+      10.3707780838 -35.9536132813 -0.433198779821
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.942679 -0.282708 0.177291 }
+        <Binormal> { -0.288145 -0.957535 0.005224 }
+      }
+      <Normal> { -0.173040 0.057436 0.983215 }
+    }
+    <Vertex> 2025 {
+      12.8909235001 -35.8560295105 -0.19348423183
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.960114 -0.273688 0.057229 }
+        <Binormal> { -0.273462 -0.961796 -0.011834 }
+      }
+      <Normal> { -0.059084 0.004517 0.998230 }
+    }
+    <Vertex> 2026 {
+      12.9394388199 -32.1922111511 -0.233436778188
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.956928 -0.278983 0.080363 }
+        <Binormal> { -0.278049 -0.960282 -0.022772 }
+      }
+      <Normal> { -0.080264 -0.000397 0.996765 }
+    }
+    <Vertex> 2027 {
+      10.5648374557 -32.3385810852 -0.593008577824
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.931072 -0.273893 0.241014 }
+        <Binormal> { -0.263984 -0.959688 -0.070802 }
+      }
+      <Normal> { -0.189825 -0.020203 0.981597 }
+    }
+    <Vertex> 2028 {
+      10.3707780838 -35.9536132813 -0.433198779821
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.942679 -0.282708 0.177291 }
+        <Binormal> { -0.288145 -0.957535 0.005224 }
+      }
+      <Normal> { -0.173040 0.057436 0.983215 }
+    }
+    <Vertex> 2029 {
+      10.5648374557 -32.3385810852 -0.593008577824
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.931072 -0.273893 0.241014 }
+        <Binormal> { -0.263984 -0.959688 -0.070802 }
+      }
+      <Normal> { -0.189825 -0.020203 0.981597 }
+    }
+    <Vertex> 2030 {
+      8.12346458435 -32.4771995544 -1.38274729252
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.773266 -0.617720 0.143111 }
+        <Binormal> { -0.515547 -0.743863 -0.425153 }
+      }
+      <Normal> { -0.376141 -0.249336 0.892361 }
+    }
+    <Vertex> 2031 {
+      8.40805339813 -36.0186653137 -1.10680878162
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.865568 -0.351542 0.356666 }
+        <Binormal> { -0.331214 -0.906875 -0.090047 }
+      }
+      <Normal> { -0.566637 0.126102 0.814234 }
+    }
+    <Vertex> 2032 {
+      10.3707780838 -35.9536132813 -0.433198779821
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.942679 -0.282708 0.177291 }
+        <Binormal> { -0.288145 -0.957535 0.005224 }
+      }
+      <Normal> { -0.173040 0.057436 0.983215 }
+    }
+    <Vertex> 2033 {
+      8.40805339813 -36.0186653137 -1.10680878162
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.865568 -0.351542 0.356666 }
+        <Binormal> { -0.331214 -0.906875 -0.090047 }
+      }
+      <Normal> { -0.566637 0.126102 0.814234 }
+    }
+    <Vertex> 2034 {
+      7.19533348083 -39.542350769 -0.598637402058
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.929378 -0.286018 0.233347 }
+        <Binormal> { -0.328083 -0.897518 0.206587 }
+      }
+      <Normal> { -0.345531 0.328623 0.878964 }
+    }
+    <Vertex> 2035 {
+      10.0990219116 -39.3871536255 -0.288117974997
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.968098 -0.241834 0.065602 }
+        <Binormal> { -0.242485 -0.970104 0.002212 }
+      }
+      <Normal> { -0.055361 0.016114 0.998321 }
+    }
+    <Vertex> 2036 {
+      10.3707780838 -35.9536132813 -0.433198779821
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.942679 -0.282708 0.177291 }
+        <Binormal> { -0.288145 -0.957535 0.005224 }
+      }
+      <Normal> { -0.173040 0.057436 0.983215 }
+    }
+    <Vertex> 2037 {
+      10.0990219116 -39.3871536255 -0.288117974997
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.968098 -0.241834 0.065602 }
+        <Binormal> { -0.242485 -0.970104 0.002212 }
+      }
+      <Normal> { -0.055361 0.016114 0.998321 }
+    }
+    <Vertex> 2038 {
+      12.9291086197 -39.3520507813 -0.285861551762
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.961203 -0.273900 0.032679 }
+        <Binormal> { -0.271230 -0.959796 -0.066744 }
+      }
+      <Normal> { -0.023377 -0.062777 0.997742 }
+    }
+    <Vertex> 2039 {
+      12.8909235001 -35.8560295105 -0.19348423183
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.960114 -0.273688 0.057229 }
+        <Binormal> { -0.273462 -0.961796 -0.011834 }
+      }
+      <Normal> { -0.059084 0.004517 0.998230 }
+    }
+    <Vertex> 2040 {
+      15.4761724472 -35.8235054016 -0.113579511642
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.957851 -0.286684 0.018272 }
+        <Binormal> { -0.286428 -0.957961 -0.015107 }
+      }
+      <Normal> { -0.022004 -0.009186 0.999695 }
+    }
+    <Vertex> 2041 {
+      18.0939731598 -35.8235054016 -0.113579511642
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.958661 -0.284552 0.000000 }
+        <Binormal> { -0.284526 -0.958573 -0.009750 }
+      }
+      <Normal> { -0.010102 -0.007172 0.999908 }
+    }
+    <Vertex> 2042 {
+      18.0939731598 -32.1434249878 -0.113579511642
+      <UV>  {
+        -0.042124 0.762705
+        <Tangent> { 0.958742 -0.284278 0.000000 }
+        <Binormal> { -0.284278 -0.958742 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 2043 {
+      15.4761724472 -32.1434249878 -0.113579511642
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.959750 -0.279967 0.022317 }
+        <Binormal> { -0.279906 -0.959980 -0.005510 }
+      }
+      <Normal> { -0.019471 -0.000061 0.999786 }
+    }
+    <Vertex> 2044 {
+      15.4761724472 -35.8235054016 -0.113579511642
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.957851 -0.286684 0.018272 }
+        <Binormal> { -0.286428 -0.957961 -0.015107 }
+      }
+      <Normal> { -0.022004 -0.009186 0.999695 }
+    }
+    <Vertex> 2045 {
+      15.4761724472 -32.1434249878 -0.113579511642
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.959750 -0.279967 0.022317 }
+        <Binormal> { -0.279906 -0.959980 -0.005510 }
+      }
+      <Normal> { -0.019471 -0.000061 0.999786 }
+    }
+    <Vertex> 2046 {
+      12.9394388199 -32.1922111511 -0.233436778188
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.956928 -0.278983 0.080363 }
+        <Binormal> { -0.278049 -0.960282 -0.022772 }
+      }
+      <Normal> { -0.080264 -0.000397 0.996765 }
+    }
+    <Vertex> 2047 {
+      12.8909235001 -35.8560295105 -0.19348423183
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.960114 -0.273688 0.057229 }
+        <Binormal> { -0.273462 -0.961796 -0.011834 }
+      }
+      <Normal> { -0.059084 0.004517 0.998230 }
+    }
+    <Vertex> 2048 {
+      15.4761724472 -35.8235054016 -0.113579511642
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.957851 -0.286684 0.018272 }
+        <Binormal> { -0.286428 -0.957961 -0.015107 }
+      }
+      <Normal> { -0.022004 -0.009186 0.999695 }
+    }
+    <Vertex> 2049 {
+      12.8909235001 -35.8560295105 -0.19348423183
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.960114 -0.273688 0.057229 }
+        <Binormal> { -0.273462 -0.961796 -0.011834 }
+      }
+      <Normal> { -0.059084 0.004517 0.998230 }
+    }
+    <Vertex> 2050 {
+      12.9291086197 -39.3520507813 -0.285861551762
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.961203 -0.273900 0.032679 }
+        <Binormal> { -0.271230 -0.959796 -0.066744 }
+      }
+      <Normal> { -0.023377 -0.062777 0.997742 }
+    }
+    <Vertex> 2051 {
+      15.5610723495 -39.4087181091 -0.216497406363
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.951765 -0.305921 0.023584 }
+        <Binormal> { -0.303704 -0.950181 -0.068926 }
+      }
+      <Normal> { -0.054781 -0.054811 0.996979 }
+    }
+    <Vertex> 2052 {
+      15.4761724472 -35.8235054016 -0.113579511642
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.957851 -0.286684 0.018272 }
+        <Binormal> { -0.286428 -0.957961 -0.015107 }
+      }
+      <Normal> { -0.022004 -0.009186 0.999695 }
+    }
+    <Vertex> 2053 {
+      15.5610723495 -39.4087181091 -0.216497406363
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.951765 -0.305921 0.023584 }
+        <Binormal> { -0.303704 -0.950181 -0.068926 }
+      }
+      <Normal> { -0.054781 -0.054811 0.996979 }
+    }
+    <Vertex> 2054 {
+      18.0939731598 -39.5112686157 -0.113579511642
+      <UV>  {
+        -0.073782 0.891829
+        <Tangent> { 0.953243 -0.301835 0.014978 }
+        <Binormal> { -0.300529 -0.951641 -0.050860 }
+      }
+      <Normal> { -0.065950 -0.032472 0.997284 }
+    }
+    <Vertex> 2055 {
+      18.0939731598 -35.8235054016 -0.113579511642
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.958661 -0.284552 0.000000 }
+        <Binormal> { -0.284526 -0.958573 -0.009750 }
+      }
+      <Normal> { -0.010102 -0.007172 0.999908 }
+    }
+    <Vertex> 2056 {
+      -24.9122982025 -36.5287399292 2.15760684013
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.993318 -0.007425 -0.115174 }
+        <Binormal> { -0.000137 -0.997938 0.063155 }
+      }
+      <Normal> { 0.123814 0.062655 0.990295 }
+    }
+    <Vertex> 2057 {
+      -22.1854839325 -36.5445556641 1.52032351494
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.973745 -0.005648 -0.227574 }
+        <Binormal> { 0.035574 -0.943937 0.175638 }
+      }
+      <Normal> { 0.485763 0.177557 0.855861 }
+    }
+    <Vertex> 2058 {
+      -22.5711708069 -32.8881988525 1.33509898186
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.531376 0.826310 -0.186688 }
+        <Binormal> { 0.713170 -0.553003 -0.417756 }
+      }
+      <Normal> { 0.504135 -0.002228 0.863582 }
+    }
+    <Vertex> 2059 {
+      -25.1694221497 -32.8644752502 2.03412413597
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.986681 -0.009858 -0.162370 }
+        <Binormal> { -0.009931 -0.999912 0.000362 }
+      }
+      <Normal> { 0.155858 -0.001190 0.987762 }
+    }
+    <Vertex> 2060 {
+      -24.9122982025 -36.5287399292 2.15760684013
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.993318 -0.007425 -0.115174 }
+        <Binormal> { -0.000137 -0.997938 0.063155 }
+      }
+      <Normal> { 0.123814 0.062655 0.990295 }
+    }
+    <Vertex> 2061 {
+      -25.1694221497 -32.8644752502 2.03412413597
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.986681 -0.009858 -0.162370 }
+        <Binormal> { -0.009931 -0.999912 0.000362 }
+      }
+      <Normal> { 0.155858 -0.001190 0.987762 }
+    }
+    <Vertex> 2062 {
+      -28.5073108673 -32.8288879395 2.31196093559
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.997698 -0.008615 -0.067262 }
+        <Binormal> { -0.008635 -0.999670 -0.000045 }
+      }
+      <Normal> { 0.044252 -0.000427 0.998993 }
+    }
+    <Vertex> 2063 {
+      -28.443031311 -36.5050163269 2.34283161163
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.998604 -0.006710 -0.052387 }
+        <Binormal> { -0.005802 -0.999609 0.017437 }
+      }
+      <Normal> { 0.032563 0.017243 0.999298 }
+    }
+    <Vertex> 2064 {
+      -24.9122982025 -36.5287399292 2.15760684013
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.993318 -0.007425 -0.115174 }
+        <Binormal> { -0.000137 -0.997938 0.063155 }
+      }
+      <Normal> { 0.123814 0.062655 0.990295 }
+    }
+    <Vertex> 2065 {
+      -28.443031311 -36.5050163269 2.34283161163
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.998604 -0.006710 -0.052387 }
+        <Binormal> { -0.005802 -0.999609 0.017437 }
+      }
+      <Normal> { 0.032563 0.017243 0.999298 }
+    }
+    <Vertex> 2066 {
+      -28.3140487671 -40.1868515015 2.38913798332
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.999509 -0.003979 -0.031069 }
+        <Binormal> { -0.003554 -0.999708 0.013684 }
+      }
+      <Normal> { 0.012268 0.013642 0.999817 }
+    }
+    <Vertex> 2067 {
+      -24.3963737488 -40.192779541 2.34283161163
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.998490 -0.007404 -0.054439 }
+        <Binormal> { -0.003963 -0.997958 0.063040 }
+      }
+      <Normal> { 0.060762 0.062685 0.996155 }
+    }
+    <Vertex> 2068 {
+      -24.9122982025 -36.5287399292 2.15760684013
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.993318 -0.007425 -0.115174 }
+        <Binormal> { -0.000137 -0.997938 0.063155 }
+      }
+      <Normal> { 0.123814 0.062655 0.990295 }
+    }
+    <Vertex> 2069 {
+      -24.3963737488 -40.192779541 2.34283161163
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.998490 -0.007404 -0.054439 }
+        <Binormal> { -0.003963 -0.997958 0.063040 }
+      }
+      <Normal> { 0.060762 0.062685 0.996155 }
+    }
+    <Vertex> 2070 {
+      -20.4595336914 -40.2450904846 1.96089971066
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.988454 -0.010106 -0.151185 }
+        <Binormal> { 0.043826 -0.925431 0.348394 }
+      }
+      <Normal> { 0.284097 0.349559 0.892788 }
+    }
+    <Vertex> 2071 {
+      -22.1854839325 -36.5445556641 1.52032351494
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.973745 -0.005648 -0.227574 }
+        <Binormal> { 0.035574 -0.943937 0.175638 }
+      }
+      <Normal> { 0.485763 0.177557 0.855861 }
+    }
+    <Vertex> 2072 {
+      -32.1065597534 -36.4971084595 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999969 -0.001001 -0.007812 }
+        <Binormal> { -0.000980 -0.999970 0.002693 }
+      }
+      <Normal> { 0.007904 0.002686 0.999939 }
+    }
+    <Vertex> 2073 {
+      -28.443031311 -36.5050163269 2.34283161163
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.999856 -0.002158 -0.016851 }
+        <Binormal> { -0.001866 -0.999703 0.017311 }
+      }
+      <Normal> { 0.032563 0.017243 0.999298 }
+    }
+    <Vertex> 2074 {
+      -28.5073108673 -32.8288879395 2.31196093559
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.999771 -0.002721 -0.021248 }
+        <Binormal> { -0.002728 -0.999704 -0.000307 }
+      }
+      <Normal> { 0.044252 -0.000427 0.998993 }
+    }
+    <Vertex> 2075 {
+      -32.1065597534 -32.8170280457 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.999919 -0.001618 -0.012635 }
+        <Binormal> { -0.001619 -0.999992 -0.000044 }
+      }
+      <Normal> { 0.010620 -0.000061 0.999939 }
+    }
+    <Vertex> 2076 {
+      -32.1065597534 -36.4971084595 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999969 -0.001001 -0.007812 }
+        <Binormal> { -0.000980 -0.999970 0.002693 }
+      }
+      <Normal> { 0.007904 0.002686 0.999939 }
+    }
+    <Vertex> 2077 {
+      -32.1065597534 -32.8170280457 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.999919 -0.001618 -0.012635 }
+        <Binormal> { -0.001619 -0.999992 -0.000044 }
+      }
+      <Normal> { 0.010620 -0.000061 0.999939 }
+    }
+    <Vertex> 2078 {
+      -35.836479187 -32.8170280457 2.40457344055
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 2079 {
+      -35.836479187 -36.4971084595 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 2080 {
+      -32.1065597534 -36.4971084595 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999969 -0.001001 -0.007812 }
+        <Binormal> { -0.000980 -0.999970 0.002693 }
+      }
+      <Normal> { 0.007904 0.002686 0.999939 }
+    }
+    <Vertex> 2081 {
+      -35.836479187 -36.4971084595 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 2082 {
+      -35.836479187 -40.1848716736 2.40457344055
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 2083 {
+      -32.1065597534 -40.1848716736 2.40457344055
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.999998 -0.000263 -0.002052 }
+        <Binormal> { -0.000259 -0.999974 0.002168 }
+      }
+      <Normal> { 0.003082 0.002167 0.999969 }
+    }
+    <Vertex> 2084 {
+      -32.1065597534 -36.4971084595 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999969 -0.001001 -0.007812 }
+        <Binormal> { -0.000980 -0.999970 0.002693 }
+      }
+      <Normal> { 0.007904 0.002686 0.999939 }
+    }
+    <Vertex> 2085 {
+      -32.1065597534 -40.1848716736 2.40457344055
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.999998 -0.000263 -0.002052 }
+        <Binormal> { -0.000259 -0.999974 0.002168 }
+      }
+      <Normal> { 0.003082 0.002167 0.999969 }
+    }
+    <Vertex> 2086 {
+      -28.3140487671 -40.1868515015 2.38913798332
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.999946 -0.001326 -0.010350 }
+        <Binormal> { -0.001185 -0.999889 0.013657 }
+      }
+      <Normal> { 0.012268 0.013642 0.999817 }
+    }
+    <Vertex> 2087 {
+      -28.443031311 -36.5050163269 2.34283161163
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.999856 -0.002158 -0.016851 }
+        <Binormal> { -0.001866 -0.999703 0.017311 }
+      }
+      <Normal> { 0.032563 0.017243 0.999298 }
+    }
+    <Vertex> 2088 {
+      4.06641864777 -42.885471344 -0.376289248466
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.969146 0.173671 0.174913 }
+        <Binormal> { 0.108093 -0.937181 0.331613 }
+      }
+      <Normal> { -0.222571 0.302286 0.926847 }
+    }
+    <Vertex> 2089 {
+      6.82280921936 -42.5842018127 -0.240754574537
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.998930 -0.045774 0.006669 }
+        <Binormal> { -0.046201 -0.981679 0.182267 }
+      }
+      <Normal> { -0.028138 0.183752 0.982543 }
+    }
+    <Vertex> 2090 {
+      7.19533348083 -39.542350769 -0.598637402058
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.994131 0.083361 0.068958 }
+        <Binormal> { 0.050610 -0.897632 0.355498 }
+      }
+      <Normal> { -0.345531 0.328623 0.878964 }
+    }
+    <Vertex> 2091 {
+      4.4444065094 -40.5874176025 -1.0628644228
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.291820 0.857986 0.422730 }
+        <Binormal> { 0.429077 -0.368641 0.452004 }
+      }
+      <Normal> { -0.342387 0.542253 0.767266 }
+    }
+    <Vertex> 2092 {
+      4.06641864777 -42.885471344 -0.376289248466
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.969146 0.173671 0.174913 }
+        <Binormal> { 0.108093 -0.937181 0.331613 }
+      }
+      <Normal> { -0.222571 0.302286 0.926847 }
+    }
+    <Vertex> 2093 {
+      4.4444065094 -40.5874176025 -1.0628644228
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.291820 0.857986 0.422730 }
+        <Binormal> { 0.429077 -0.368641 0.452004 }
+      }
+      <Normal> { -0.342387 0.542253 0.767266 }
+    }
+    <Vertex> 2094 {
+      2.79635214806 -41.291103363 -1.51639676094
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.499899 -0.741973 0.446741 }
+        <Binormal> { -0.736217 -0.578547 -0.137064 }
+      }
+      <Normal> { -0.521714 0.500168 0.691092 }
+    }
+    <Vertex> 2095 {
+      2.08877849579 -43.1081047058 -1.0628644228
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.935619 0.043423 0.350332 }
+        <Binormal> { -0.089001 -0.878289 0.346553 }
+      }
+      <Normal> { -0.619373 0.341655 0.706809 }
+    }
+    <Vertex> 2096 {
+      4.06641864777 -42.885471344 -0.376289248466
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.969146 0.173671 0.174913 }
+        <Binormal> { 0.108093 -0.937181 0.331613 }
+      }
+      <Normal> { -0.222571 0.302286 0.926847 }
+    }
+    <Vertex> 2097 {
+      2.08877849579 -43.1081047058 -1.0628644228
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.935619 0.043423 0.350332 }
+        <Binormal> { -0.089001 -0.878289 0.346553 }
+      }
+      <Normal> { -0.619373 0.341655 0.706809 }
+    }
+    <Vertex> 2098 {
+      1.39152395725 -46.1994247437 -0.046333078295
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.942290 0.103198 0.318497 }
+        <Binormal> { -0.102689 -0.669768 0.520825 }
+      }
+      <Normal> { -0.756310 0.469893 0.455153 }
+    }
+    <Vertex> 2099 {
+      3.84703230858 -45.2283363342 0.473477274179
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.988727 0.063794 0.135457 }
+        <Binormal> { -0.038671 -0.763553 0.641869 }
+      }
+      <Normal> { -0.202399 0.636128 0.744530 }
+    }
+    <Vertex> 2100 {
+      4.06641864777 -42.885471344 -0.376289248466
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.969146 0.173671 0.174913 }
+        <Binormal> { 0.108093 -0.937181 0.331613 }
+      }
+      <Normal> { -0.222571 0.302286 0.926847 }
+    }
+    <Vertex> 2101 {
+      3.84703230858 -45.2283363342 0.473477274179
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.988727 0.063794 0.135457 }
+        <Binormal> { -0.038671 -0.763553 0.641869 }
+      }
+      <Normal> { -0.202399 0.636128 0.744530 }
+    }
+    <Vertex> 2102 {
+      6.75631093979 -44.8541069031 0.311147242785
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.999347 -0.027055 -0.023953 }
+        <Binormal> { -0.007107 -0.796154 0.602740 }
+      }
+      <Normal> { -0.017029 0.603595 0.797082 }
+    }
+    <Vertex> 2103 {
+      6.82280921936 -42.5842018127 -0.240754574537
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.998930 -0.045774 0.006669 }
+        <Binormal> { -0.046201 -0.981679 0.182267 }
+      }
+      <Normal> { -0.028138 0.183752 0.982543 }
+    }
+    <Vertex> 2104 {
+      10.0599918365 -42.3545570374 -0.492114633322
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.990956 -0.125532 -0.047422 }
+        <Binormal> { -0.121813 -0.989699 0.074400 }
+      }
+      <Normal> { 0.047487 0.069063 0.996460 }
+    }
+    <Vertex> 2105 {
+      13.2377262115 -42.3117370605 -0.72280216217
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.975597 -0.219350 -0.009816 }
+        <Binormal> { -0.219082 -0.975232 0.018398 }
+      }
+      <Normal> { -0.009919 0.021088 0.999725 }
+    }
+    <Vertex> 2106 {
+      12.9291086197 -39.3520507813 -0.285861551762
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.968680 -0.247369 -0.021636 }
+        <Binormal> { -0.248169 -0.965986 -0.066593 }
+      }
+      <Normal> { -0.023377 -0.062777 0.997742 }
+    }
+    <Vertex> 2107 {
+      10.0990219116 -39.3871536255 -0.288117974997
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.978499 -0.202837 0.037362 }
+        <Binormal> { -0.203099 -0.978925 0.004538 }
+      }
+      <Normal> { -0.055361 0.016114 0.998321 }
+    }
+    <Vertex> 2108 {
+      10.0599918365 -42.3545570374 -0.492114633322
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.990956 -0.125532 -0.047422 }
+        <Binormal> { -0.121813 -0.989699 0.074400 }
+      }
+      <Normal> { 0.047487 0.069063 0.996460 }
+    }
+    <Vertex> 2109 {
+      10.0990219116 -39.3871536255 -0.288117974997
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.978499 -0.202837 0.037362 }
+        <Binormal> { -0.203099 -0.978925 0.004538 }
+      }
+      <Normal> { -0.055361 0.016114 0.998321 }
+    }
+    <Vertex> 2110 {
+      7.19533348083 -39.542350769 -0.598637402058
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.994131 0.083361 0.068958 }
+        <Binormal> { 0.050610 -0.897632 0.355498 }
+      }
+      <Normal> { -0.345531 0.328623 0.878964 }
+    }
+    <Vertex> 2111 {
+      6.82280921936 -42.5842018127 -0.240754574537
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.998930 -0.045774 0.006669 }
+        <Binormal> { -0.046201 -0.981679 0.182267 }
+      }
+      <Normal> { -0.028138 0.183752 0.982543 }
+    }
+    <Vertex> 2112 {
+      10.0599918365 -42.3545570374 -0.492114633322
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.990956 -0.125532 -0.047422 }
+        <Binormal> { -0.121813 -0.989699 0.074400 }
+      }
+      <Normal> { 0.047487 0.069063 0.996460 }
+    }
+    <Vertex> 2113 {
+      6.82280921936 -42.5842018127 -0.240754574537
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.998930 -0.045774 0.006669 }
+        <Binormal> { -0.046201 -0.981679 0.182267 }
+      }
+      <Normal> { -0.028138 0.183752 0.982543 }
+    }
+    <Vertex> 2114 {
+      6.75631093979 -44.8541069031 0.311147242785
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.999347 -0.027055 -0.023953 }
+        <Binormal> { -0.007107 -0.796154 0.602740 }
+      }
+      <Normal> { -0.017029 0.603595 0.797082 }
+    }
+    <Vertex> 2115 {
+      10.2525291443 -44.4553260803 -0.163017913699
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.994114 -0.064320 -0.087178 }
+        <Binormal> { 0.001440 -0.793247 0.601678 }
+      }
+      <Normal> { 0.015046 0.604266 0.796625 }
+    }
+    <Vertex> 2116 {
+      10.0599918365 -42.3545570374 -0.492114633322
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.990956 -0.125532 -0.047422 }
+        <Binormal> { -0.121813 -0.989699 0.074400 }
+      }
+      <Normal> { 0.047487 0.069063 0.996460 }
+    }
+    <Vertex> 2117 {
+      10.2525291443 -44.4553260803 -0.163017913699
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.994114 -0.064320 -0.087178 }
+        <Binormal> { 0.001440 -0.793247 0.601678 }
+      }
+      <Normal> { 0.015046 0.604266 0.796625 }
+    }
+    <Vertex> 2118 {
+      13.6012659073 -44.3292274475 -0.449449241161
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.978988 -0.200849 0.035241 }
+        <Binormal> { -0.177055 -0.752780 0.628222 }
+      }
+      <Normal> { 0.016327 0.638356 0.769524 }
+    }
+    <Vertex> 2119 {
+      13.2377262115 -42.3117370605 -0.72280216217
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.975597 -0.219350 -0.009816 }
+        <Binormal> { -0.219082 -0.975232 0.018398 }
+      }
+      <Normal> { -0.009919 0.021088 0.999725 }
+    }
+    <Vertex> 2120 {
+      15.8157720566 -42.5709266663 -0.525250732899
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.930218 -0.343314 0.129730 }
+        <Binormal> { -0.348086 -0.937310 0.015449 }
+      }
+      <Normal> { -0.114841 0.058992 0.991607 }
+    }
+    <Vertex> 2121 {
+      18.0939731598 -42.9811325073 -0.113579511642
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.892009 -0.407977 0.194613 }
+        <Binormal> { -0.420640 -0.906680 0.027285 }
+      }
+      <Normal> { -0.152318 0.100253 0.983215 }
+    }
+    <Vertex> 2122 {
+      18.0939731598 -39.5112686157 -0.113579511642
+      <UV>  {
+        -0.042124 0.762705
+        <Tangent> { 0.927302 -0.364378 0.085674 }
+        <Binormal> { -0.360606 -0.930433 -0.054142 }
+      }
+      <Normal> { -0.065950 -0.032472 0.997284 }
+    }
+    <Vertex> 2123 {
+      15.5610723495 -39.4087181091 -0.216497406363
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.962130 -0.272484 0.007671 }
+        <Binormal> { -0.271240 -0.959643 -0.067662 }
+      }
+      <Normal> { -0.054781 -0.054811 0.996979 }
+    }
+    <Vertex> 2124 {
+      15.8157720566 -42.5709266663 -0.525250732899
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.930218 -0.343314 0.129730 }
+        <Binormal> { -0.348086 -0.937310 0.015449 }
+      }
+      <Normal> { -0.114841 0.058992 0.991607 }
+    }
+    <Vertex> 2125 {
+      15.5610723495 -39.4087181091 -0.216497406363
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.962130 -0.272484 0.007671 }
+        <Binormal> { -0.271240 -0.959643 -0.067662 }
+      }
+      <Normal> { -0.054781 -0.054811 0.996979 }
+    }
+    <Vertex> 2126 {
+      12.9291086197 -39.3520507813 -0.285861551762
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.968680 -0.247369 -0.021636 }
+        <Binormal> { -0.248169 -0.965986 -0.066593 }
+      }
+      <Normal> { -0.023377 -0.062777 0.997742 }
+    }
+    <Vertex> 2127 {
+      13.2377262115 -42.3117370605 -0.72280216217
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.975597 -0.219350 -0.009816 }
+        <Binormal> { -0.219082 -0.975232 0.018398 }
+      }
+      <Normal> { -0.009919 0.021088 0.999725 }
+    }
+    <Vertex> 2128 {
+      15.8157720566 -42.5709266663 -0.525250732899
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.930218 -0.343314 0.129730 }
+        <Binormal> { -0.348086 -0.937310 0.015449 }
+      }
+      <Normal> { -0.114841 0.058992 0.991607 }
+    }
+    <Vertex> 2129 {
+      13.2377262115 -42.3117370605 -0.72280216217
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.975597 -0.219350 -0.009816 }
+        <Binormal> { -0.219082 -0.975232 0.018398 }
+      }
+      <Normal> { -0.009919 0.021088 0.999725 }
+    }
+    <Vertex> 2130 {
+      13.6012659073 -44.3292274475 -0.449449241161
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.978988 -0.200849 0.035241 }
+        <Binormal> { -0.177055 -0.752780 0.628222 }
+      }
+      <Normal> { 0.016327 0.638356 0.769524 }
+    }
+    <Vertex> 2131 {
+      16.0680961609 -44.7730445862 -0.0485777109861
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.878916 -0.401615 0.257317 }
+        <Binormal> { -0.470451 -0.646586 0.597741 }
+      }
+      <Normal> { 0.023408 0.669393 0.742515 }
+    }
+    <Vertex> 2132 {
+      15.8157720566 -42.5709266663 -0.525250732899
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.930218 -0.343314 0.129730 }
+        <Binormal> { -0.348086 -0.937310 0.015449 }
+      }
+      <Normal> { -0.114841 0.058992 0.991607 }
+    }
+    <Vertex> 2133 {
+      16.0680961609 -44.7730445862 -0.0485777109861
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.878916 -0.401615 0.257317 }
+        <Binormal> { -0.470451 -0.646586 0.597741 }
+      }
+      <Normal> { 0.023408 0.669393 0.742515 }
+    }
+    <Vertex> 2134 {
+      18.0939731598 -45.5018196106 0.695945441723
+      <UV>  {
+        -0.073782 0.891829
+        <Tangent> { 0.861481 -0.422136 0.282227 }
+        <Binormal> { -0.500773 -0.619523 0.601938 }
+      }
+      <Normal> { 0.031770 0.683157 0.729545 }
+    }
+    <Vertex> 2135 {
+      18.0939731598 -42.9811325073 -0.113579511642
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.892009 -0.407977 0.194613 }
+        <Binormal> { -0.420640 -0.906680 0.027285 }
+      }
+      <Normal> { -0.152318 0.100253 0.983215 }
+    }
+    <Vertex> 2136 {
+      -23.8770961761 -43.6547355652 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999833 0.005035 -0.017593 }
+        <Binormal> { 0.006406 -0.996871 0.078729 }
+      }
+      <Normal> { 0.017243 0.078829 0.996734 }
+    }
+    <Vertex> 2137 {
+      -19.6815776825 -43.6686973572 2.34668850899
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.999899 -0.003327 -0.013795 }
+        <Binormal> { -0.001309 -0.989156 0.143691 }
+      }
+      <Normal> { 0.044130 0.143559 0.988647 }
+    }
+    <Vertex> 2138 {
+      -20.4595336914 -40.2450904846 1.96089971066
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.554982 0.830930 0.039371 }
+        <Binormal> { 0.728082 -0.484297 -0.042065 }
+      }
+      <Normal> { 0.284097 0.349559 0.892788 }
+    }
+    <Vertex> 2139 {
+      -24.3963737488 -40.192779541 2.34283161163
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.998490 -0.007404 -0.054439 }
+        <Binormal> { -0.003963 -0.997958 0.063040 }
+      }
+      <Normal> { 0.060762 0.062685 0.996155 }
+    }
+    <Vertex> 2140 {
+      -23.8770961761 -43.6547355652 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999833 0.005035 -0.017593 }
+        <Binormal> { 0.006406 -0.996871 0.078729 }
+      }
+      <Normal> { 0.017243 0.078829 0.996734 }
+    }
+    <Vertex> 2141 {
+      -24.3963737488 -40.192779541 2.34283161163
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.998490 -0.007404 -0.054439 }
+        <Binormal> { -0.003963 -0.997958 0.063040 }
+      }
+      <Normal> { 0.060762 0.062685 0.996155 }
+    }
+    <Vertex> 2142 {
+      -28.3140487671 -40.1868515015 2.38913798332
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.999984 -0.000721 -0.005630 }
+        <Binormal> { -0.000644 -0.999870 0.013650 }
+      }
+      <Normal> { 0.012268 0.013642 0.999817 }
+    }
+    <Vertex> 2143 {
+      -28.1842308044 -43.6547355652 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.997528 0.069460 }
+      }
+      <Normal> { 0.008362 0.069460 0.997528 }
+    }
+    <Vertex> 2144 {
+      -23.8770961761 -43.6547355652 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999833 0.005035 -0.017593 }
+        <Binormal> { 0.006406 -0.996871 0.078729 }
+      }
+      <Normal> { 0.017243 0.078829 0.996734 }
+    }
+    <Vertex> 2145 {
+      -28.1842308044 -43.6547355652 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.997528 0.069460 }
+      }
+      <Normal> { 0.008362 0.069460 0.997528 }
+    }
+    <Vertex> 2146 {
+      -27.7901077271 -46.4382362366 2.78387331963
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.999254 0.033236 -0.019684 }
+        <Binormal> { 0.037896 -0.745790 0.664526 }
+      }
+      <Normal> { 0.019471 0.665670 0.745964 }
+    }
+    <Vertex> 2147 {
+      -23.2082595825 -46.142578125 2.60876917839
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.999573 0.028656 -0.005675 }
+        <Binormal> { 0.027543 -0.859778 0.509846 }
+      }
+      <Normal> { -0.014100 0.509659 0.860225 }
+    }
+    <Vertex> 2148 {
+      -23.8770961761 -43.6547355652 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999833 0.005035 -0.017593 }
+        <Binormal> { 0.006406 -0.996871 0.078729 }
+      }
+      <Normal> { 0.017243 0.078829 0.996734 }
+    }
+    <Vertex> 2149 {
+      -23.2082595825 -46.142578125 2.60876917839
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.999573 0.028656 -0.005675 }
+        <Binormal> { 0.027543 -0.859778 0.509846 }
+      }
+      <Normal> { -0.014100 0.509659 0.860225 }
+    }
+    <Vertex> 2150 {
+      -18.8465080261 -46.1818351746 2.73309445381
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.999951 -0.006219 0.007764 }
+        <Binormal> { -0.009669 -0.505769 0.840178 }
+      }
+      <Normal> { -0.194037 0.841426 0.504288 }
+    }
+    <Vertex> 2151 {
+      -19.6815776825 -43.6686973572 2.34668850899
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.999899 -0.003327 -0.013795 }
+        <Binormal> { -0.001309 -0.989156 0.143691 }
+      }
+      <Normal> { 0.044130 0.143559 0.988647 }
+    }
+    <Vertex> 2152 {
+      -32.1065597534 -43.6547355652 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999954 -0.008576 -0.004239 }
+        <Binormal> { -0.008194 -0.996468 0.083205 }
+      }
+      <Normal> { 0.005371 0.083163 0.996490 }
+    }
+    <Vertex> 2153 {
+      -28.1842308044 -43.6547355652 2.40457344055
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 1.000000 0.000000 -0.000000 }
+        <Binormal> { 0.000000 -0.997528 0.069460 }
+      }
+      <Normal> { 0.008362 0.069460 0.997528 }
+    }
+    <Vertex> 2154 {
+      -28.3140487671 -40.1868515015 2.38913798332
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.999998 -0.000257 -0.002001 }
+        <Binormal> { -0.000229 -0.999839 0.013645 }
+      }
+      <Normal> { 0.012268 0.013642 0.999817 }
+    }
+    <Vertex> 2155 {
+      -32.1065597534 -40.1848716736 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.999998 -0.000263 -0.002052 }
+        <Binormal> { -0.000259 -0.999974 0.002168 }
+      }
+      <Normal> { 0.003082 0.002167 0.999969 }
+    }
+    <Vertex> 2156 {
+      -32.1065597534 -43.6547355652 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999954 -0.008576 -0.004239 }
+        <Binormal> { -0.008194 -0.996468 0.083205 }
+      }
+      <Normal> { 0.005371 0.083163 0.996490 }
+    }
+    <Vertex> 2157 {
+      -32.1065597534 -40.1848716736 2.40457344055
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.999998 -0.000263 -0.002052 }
+        <Binormal> { -0.000259 -0.999974 0.002168 }
+      }
+      <Normal> { 0.003082 0.002167 0.999969 }
+    }
+    <Vertex> 2158 {
+      -35.836479187 -40.1848716736 2.40457344055
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -1.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 2159 {
+      -35.836479187 -43.6547355652 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.995911 0.089908 }
+      }
+      <Normal> { 0.004730 0.089908 0.995911 }
+    }
+    <Vertex> 2160 {
+      -32.1065597534 -43.6547355652 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999954 -0.008576 -0.004239 }
+        <Binormal> { -0.008194 -0.996468 0.083205 }
+      }
+      <Normal> { 0.005371 0.083163 0.996490 }
+    }
+    <Vertex> 2161 {
+      -35.836479187 -43.6547355652 2.40457344055
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.995911 0.089908 }
+      }
+      <Normal> { 0.004730 0.089908 0.995911 }
+    }
+    <Vertex> 2162 {
+      -35.836479187 -46.1754264832 2.89932918549
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.999949 0.001793 -0.009948 }
+        <Binormal> { 0.007135 -0.822189 0.569052 }
+      }
+      <Normal> { 0.015473 0.569109 0.822077 }
+    }
+    <Vertex> 2163 {
+      -32.1947669983 -46.1622085571 2.82599329948
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.999364 -0.032641 -0.014340 }
+        <Binormal> { -0.018582 -0.820107 0.571788 }
+      }
+      <Normal> { 0.020264 0.571490 0.820338 }
+    }
+    <Vertex> 2164 {
+      -32.1065597534 -43.6547355652 2.40457344055
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999954 -0.008576 -0.004239 }
+        <Binormal> { -0.008194 -0.996468 0.083205 }
+      }
+      <Normal> { 0.005371 0.083163 0.996490 }
+    }
+    <Vertex> 2165 {
+      -32.1947669983 -46.1622085571 2.82599329948
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.999364 -0.032641 -0.014340 }
+        <Binormal> { -0.018582 -0.820107 0.571788 }
+      }
+      <Normal> { 0.020264 0.571490 0.820338 }
+    }
+    <Vertex> 2166 {
+      -27.7901077271 -46.4382362366 2.78387331963
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.999438 -0.033130 -0.005055 }
+        <Binormal> { -0.021349 -0.745643 0.665941 }
+      }
+      <Normal> { 0.019471 0.665670 0.745964 }
+    }
+    <Vertex> 2167 {
+      -28.1842308044 -43.6547355652 2.40457344055
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 1.000000 0.000000 -0.000000 }
+        <Binormal> { 0.000000 -0.997528 0.069460 }
+      }
+      <Normal> { 0.008362 0.069460 0.997528 }
+    }
+    <Vertex> 2168 {
+      -16.0940895081 -43.7105827332 2.17303323746
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.995861 -0.029910 -0.085825 }
+        <Binormal> { -0.008517 -0.970845 0.239505 }
+      }
+      <Normal> { 0.089908 0.237800 0.967132 }
+    }
+    <Vertex> 2169 {
+      -12.9835205078 -43.6638145447 1.75926482677
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.991158 0.014902 -0.131844 }
+        <Binormal> { 0.052759 -0.953965 0.288797 }
+      }
+      <Normal> { 0.181799 0.294107 0.938292 }
+    }
+    <Vertex> 2170 {
+      -13.2005634308 -41.2014007568 1.03015196323
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.869214 0.230702 -0.437315 }
+        <Binormal> { 0.441785 -0.751816 0.481483 }
+      }
+      <Normal> { 0.141362 0.591449 0.793817 }
+    }
+    <Vertex> 2171 {
+      -16.5711364746 -41.2178192139 1.54346323013
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 0.000000 1.000000 }
+        <Binormal> { -0.571886 0.154454 -0.000000 }
+      }
+      <Normal> { 0.154454 0.571886 0.805628 }
+    }
+    <Vertex> 2172 {
+      -16.0940895081 -43.7105827332 2.17303323746
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.995861 -0.029910 -0.085825 }
+        <Binormal> { -0.008517 -0.970845 0.239505 }
+      }
+      <Normal> { 0.089908 0.237800 0.967132 }
+    }
+    <Vertex> 2173 {
+      -16.5711364746 -41.2178192139 1.54346323013
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 0.000000 1.000000 }
+        <Binormal> { -0.571886 0.154454 -0.000000 }
+      }
+      <Normal> { 0.154454 0.571886 0.805628 }
+    }
+    <Vertex> 2174 {
+      -20.4595336914 -40.2450904846 1.96089971066
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.615972 0.770979 -0.161771 }
+        <Binormal> { 0.744870 -0.595891 -0.003714 }
+      }
+      <Normal> { 0.284097 0.349559 0.892788 }
+    }
+    <Vertex> 2175 {
+      -19.6815776825 -43.6686973572 2.34668850899
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.998763 -0.011661 -0.048346 }
+        <Binormal> { -0.004588 -0.989557 0.143896 }
+      }
+      <Normal> { 0.044130 0.143559 0.988647 }
+    }
+    <Vertex> 2176 {
+      -16.0940895081 -43.7105827332 2.17303323746
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.995861 -0.029910 -0.085825 }
+        <Binormal> { -0.008517 -0.970845 0.239505 }
+      }
+      <Normal> { 0.089908 0.237800 0.967132 }
+    }
+    <Vertex> 2177 {
+      -19.6815776825 -43.6686973572 2.34668850899
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.998763 -0.011661 -0.048346 }
+        <Binormal> { -0.004588 -0.989557 0.143896 }
+      }
+      <Normal> { 0.044130 0.143559 0.988647 }
+    }
+    <Vertex> 2178 {
+      -18.8465080261 -46.1818351746 2.73309445381
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.997453 0.060230 -0.038203 }
+        <Binormal> { 0.062518 -0.495591 0.850970 }
+      }
+      <Normal> { -0.194037 0.841426 0.504288 }
+    }
+    <Vertex> 2179 {
+      -15.5738811493 -45.7257080078 2.64400482178
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.999170 0.021828 -0.034383 }
+        <Binormal> { 0.039891 -0.357169 0.932490 }
+      }
+      <Normal> { 0.027558 0.933866 0.356517 }
+    }
+    <Vertex> 2180 {
+      -16.0940895081 -43.7105827332 2.17303323746
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.995861 -0.029910 -0.085825 }
+        <Binormal> { -0.008517 -0.970845 0.239505 }
+      }
+      <Normal> { 0.089908 0.237800 0.967132 }
+    }
+    <Vertex> 2181 {
+      -15.5738811493 -45.7257080078 2.64400482178
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.999170 0.021828 -0.034383 }
+        <Binormal> { 0.039891 -0.357169 0.932490 }
+      }
+      <Normal> { 0.027558 0.933866 0.356517 }
+    }
+    <Vertex> 2182 {
+      -12.559217453 -46.0444793701 2.51674008369
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.715479 0.197887 0.670023 }
+        <Binormal> { -0.580080 -0.054431 0.635510 }
+      }
+      <Normal> { 0.200201 0.943602 0.263558 }
+    }
+    <Vertex> 2183 {
+      -12.9835205078 -43.6638145447 1.75926482677
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.991158 0.014902 -0.131844 }
+        <Binormal> { 0.052759 -0.953965 0.288797 }
+      }
+      <Normal> { 0.181799 0.294107 0.938292 }
+    }
+    <Vertex> 2184 {
+      -10.2187509537 -43.4117965698 0.981038928032
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.081605 -0.951307 0.297246 }
+        <Binormal> { -0.941615 0.024122 0.335706 }
+      }
+      <Normal> { 0.326487 0.307779 0.893643 }
+    }
+    <Vertex> 2185 {
+      -8.11905384064 -43.1363143921 -0.166021123528
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.152736 -0.940368 0.303940 }
+        <Binormal> { -0.768203 0.079645 0.632455 }
+      }
+      <Normal> { 0.627949 0.274667 0.728141 }
+    }
+    <Vertex> 2186 {
+      -8.6047372818 -41.4014854431 -0.550100982189
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.565282 -0.752048 -0.338940 }
+        <Binormal> { -0.402879 -0.593637 0.645258 }
+      }
+      <Normal> { 0.538133 0.425550 0.727500 }
+    }
+    <Vertex> 2187 {
+      -10.2645511627 -40.9845962524 0.184837639332
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.227557 -0.933107 -0.278440 }
+        <Binormal> { -0.580704 -0.263567 0.408679 }
+      }
+      <Normal> { 0.306162 0.540513 0.783624 }
+    }
+    <Vertex> 2188 {
+      -10.2187509537 -43.4117965698 0.981038928032
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.081605 -0.951307 0.297246 }
+        <Binormal> { -0.941615 0.024122 0.335706 }
+      }
+      <Normal> { 0.326487 0.307779 0.893643 }
+    }
+    <Vertex> 2189 {
+      -10.2645511627 -40.9845962524 0.184837639332
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.227557 -0.933107 -0.278440 }
+        <Binormal> { -0.580704 -0.263567 0.408679 }
+      }
+      <Normal> { 0.306162 0.540513 0.783624 }
+    }
+    <Vertex> 2190 {
+      -13.2005634308 -41.2014007568 1.03015196323
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.051249 -0.953375 0.297405 }
+        <Binormal> { -0.932705 0.001359 0.165082 }
+      }
+      <Normal> { 0.141362 0.591449 0.793817 }
+    }
+    <Vertex> 2191 {
+      -12.9835205078 -43.6638145447 1.75926482677
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.125593 -0.948408 0.291115 }
+        <Binormal> { -0.975502 -0.064919 0.209357 }
+      }
+      <Normal> { 0.181799 0.294107 0.938292 }
+    }
+    <Vertex> 2192 {
+      -10.2187509537 -43.4117965698 0.981038928032
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.081605 -0.951307 0.297246 }
+        <Binormal> { -0.941615 0.024122 0.335706 }
+      }
+      <Normal> { 0.326487 0.307779 0.893643 }
+    }
+    <Vertex> 2193 {
+      -12.9835205078 -43.6638145447 1.75926482677
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.125593 -0.948408 0.291115 }
+        <Binormal> { -0.975502 -0.064919 0.209357 }
+      }
+      <Normal> { 0.181799 0.294107 0.938292 }
+    }
+    <Vertex> 2194 {
+      -12.559217453 -46.0444793701 2.51674008369
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.099671 -0.951823 0.289997 }
+        <Binormal> { -0.524502 0.031789 0.284606 }
+      }
+      <Normal> { 0.200201 0.943602 0.263558 }
+    }
+    <Vertex> 2195 {
+      -10.1550111771 -45.6917610168 1.64354300499
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.026836 -0.959935 0.278935 }
+        <Binormal> { -0.795350 0.043986 0.227897 }
+      }
+      <Normal> { 0.216010 0.765435 0.606128 }
+    }
+    <Vertex> 2196 {
+      -10.2187509537 -43.4117965698 0.981038928032
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.081605 -0.951307 0.297246 }
+        <Binormal> { -0.941615 0.024122 0.335706 }
+      }
+      <Normal> { 0.326487 0.307779 0.893643 }
+    }
+    <Vertex> 2197 {
+      -10.1550111771 -45.6917610168 1.64354300499
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.026836 -0.959935 0.278935 }
+        <Binormal> { -0.795350 0.043986 0.227897 }
+      }
+      <Normal> { 0.216010 0.765435 0.606128 }
+    }
+    <Vertex> 2198 {
+      -7.83629846573 -46.1326217651 0.979065775871
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.062006 -0.944203 0.323473 }
+        <Binormal> { -0.483824 0.226393 0.753575 }
+      }
+      <Normal> { 0.761010 0.564898 0.318888 }
+    }
+    <Vertex> 2199 {
+      -8.11905384064 -43.1363143921 -0.166021123528
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.152736 -0.940368 0.303940 }
+        <Binormal> { -0.768203 0.079645 0.632455 }
+      }
+      <Normal> { 0.627949 0.274667 0.728141 }
+    }
+    <Vertex> 2200 {
+      -7.00369501114 -43.0191459656 -1.68629300594
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.599572 0.132948 -0.789201 }
+        <Binormal> { 0.215957 -0.976296 -0.000399 }
+      }
+      <Normal> { 0.762322 0.168371 0.624897 }
+    }
+    <Vertex> 2201 {
+      -7.76692771912 -40.6621894836 -1.69989109039
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.577612 0.463990 -0.671624 }
+        <Binormal> { 0.633425 -0.771084 0.012058 }
+      }
+      <Normal> { 0.548906 0.461806 0.696707 }
+    }
+    <Vertex> 2202 {
+      -8.6047372818 -41.4014854431 -0.550100982189
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.565282 -0.752048 -0.338940 }
+        <Binormal> { -0.402879 -0.593637 0.645258 }
+      }
+      <Normal> { 0.538133 0.425550 0.727500 }
+    }
+    <Vertex> 2203 {
+      -8.11905384064 -43.1363143921 -0.166021123528
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.590395 0.062021 -0.804728 }
+        <Binormal> { 0.266192 -0.935219 0.123216 }
+      }
+      <Normal> { 0.627949 0.274667 0.728141 }
+    }
+    <Vertex> 2204 {
+      -7.00369501114 -43.0191459656 -1.68629300594
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.599572 0.132948 -0.789201 }
+        <Binormal> { 0.215957 -0.976296 -0.000399 }
+      }
+      <Normal> { 0.762322 0.168371 0.624897 }
+    }
+    <Vertex> 2205 {
+      -8.11905384064 -43.1363143921 -0.166021123528
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.590395 0.062021 -0.804728 }
+        <Binormal> { 0.266192 -0.935219 0.123216 }
+      }
+      <Normal> { 0.627949 0.274667 0.728141 }
+    }
+    <Vertex> 2206 {
+      -7.83629846573 -46.1326217651 0.979065775871
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.373370 -0.766463 -0.522618 }
+        <Binormal> { 0.050810 -0.516780 0.794201 }
+      }
+      <Normal> { 0.761010 0.564898 0.318888 }
+    }
+    <Vertex> 2207 {
+      -6.97407722473 -46.0848350525 -1.3913949728
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.485545 0.002683 -0.874207 }
+        <Binormal> { 0.076168 -0.995968 0.039248 }
+      }
+      <Normal> { 0.858058 0.085574 0.506333 }
+    }
+    <Vertex> 2208 {
+      -7.00369501114 -43.0191459656 -1.68629300594
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.599572 0.132948 -0.789201 }
+        <Binormal> { 0.215957 -0.976296 -0.000399 }
+      }
+      <Normal> { 0.762322 0.168371 0.624897 }
+    }
+    <Vertex> 2209 {
+      -6.97407722473 -46.0848350525 -1.3913949728
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.485545 0.002683 -0.874207 }
+        <Binormal> { 0.076168 -0.995968 0.039248 }
+      }
+      <Normal> { 0.858058 0.085574 0.506333 }
+    }
+    <Vertex> 2210 {
+      -5.62817716599 -46.1204185486 -2.99657797813
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.672206 -0.001752 -0.740362 }
+        <Binormal> { 0.015946 -0.964977 0.016761 }
+      }
+      <Normal> { 0.538865 0.023530 0.842036 }
+    }
+    <Vertex> 2211 {
+      -5.63558197021 -42.9906349182 -3.07030248642
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.702935 0.014649 -0.711103 }
+        <Binormal> { 0.063224 -0.959265 0.042737 }
+      }
+      <Normal> { 0.490341 0.071017 0.868618 }
+    }
+    <Vertex> 2212 {
+      -7.00369501114 -43.0191459656 -1.68629300594
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.599572 0.132948 -0.789201 }
+        <Binormal> { 0.215957 -0.976296 -0.000399 }
+      }
+      <Normal> { 0.762322 0.168371 0.624897 }
+    }
+    <Vertex> 2213 {
+      -5.63558197021 -42.9906349182 -3.07030248642
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.702935 0.014649 -0.711103 }
+        <Binormal> { 0.063224 -0.959265 0.042737 }
+      }
+      <Normal> { 0.490341 0.071017 0.868618 }
+    }
+    <Vertex> 2214 {
+      -6.39095926285 -39.6231803894 -3.12419271469
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.397358 -0.891170 -0.218912 }
+        <Binormal> { -0.768509 -0.433526 0.369885 }
+      }
+      <Normal> { 0.308969 0.237922 0.920804 }
+    }
+    <Vertex> 2215 {
+      -7.76692771912 -40.6621894836 -1.69989109039
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.577612 0.463990 -0.671624 }
+        <Binormal> { 0.633425 -0.771084 0.012058 }
+      }
+      <Normal> { 0.548906 0.461806 0.696707 }
+    }
+    <Vertex> 2216 {
+      1.18784761429 -43.1018409729 -2.46462607384
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { -0.241159 -0.964429 0.108251 }
+        <Binormal> { -0.587525 0.056352 -0.806821 }
+      }
+      <Normal> { -0.778008 0.234230 0.582904 }
+    }
+    <Vertex> 2217 {
+      0.832987964153 -46.1624603271 -2.2427418232
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { -0.132384 -0.990765 0.029306 }
+        <Binormal> { -0.407050 0.027396 -0.912568 }
+      }
+      <Normal> { -0.899686 0.160070 0.406110 }
+    }
+    <Vertex> 2218 {
+      1.39152395725 -46.1994247437 -0.046333078295
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { -0.054194 -0.717593 0.694351 }
+        <Binormal> { -0.652886 -0.500478 -0.568188 }
+      }
+      <Normal> { -0.756310 0.469893 0.455153 }
+    }
+    <Vertex> 2219 {
+      2.08877849579 -43.1081047058 -1.0628644228
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { -0.232308 -0.917798 0.321994 }
+        <Binormal> { -0.758718 -0.035237 -0.647829 }
+      }
+      <Normal> { -0.619373 0.341655 0.706809 }
+    }
+    <Vertex> 2220 {
+      1.18784761429 -43.1018409729 -2.46462607384
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { -0.241159 -0.964429 0.108251 }
+        <Binormal> { -0.587525 0.056352 -0.806821 }
+      }
+      <Normal> { -0.778008 0.234230 0.582904 }
+    }
+    <Vertex> 2221 {
+      2.08877849579 -43.1081047058 -1.0628644228
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { -0.232308 -0.917798 0.321994 }
+        <Binormal> { -0.758718 -0.035237 -0.647829 }
+      }
+      <Normal> { -0.619373 0.341655 0.706809 }
+    }
+    <Vertex> 2222 {
+      2.79635214806 -41.291103363 -1.51639676094
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.499899 -0.741973 0.446741 }
+        <Binormal> { -0.736217 -0.578547 -0.137064 }
+      }
+      <Normal> { -0.521714 0.500168 0.691092 }
+    }
+    <Vertex> 2223 {
+      2.15434503555 -40.6415138245 -2.61254906654
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { -0.388813 -0.920766 0.031860 }
+        <Binormal> { -0.630079 0.242128 -0.691760 }
+      }
+      <Normal> { -0.529527 0.525163 0.666128 }
+    }
+    <Vertex> 2224 {
+      1.18784761429 -43.1018409729 -2.46462607384
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { -0.241159 -0.964429 0.108251 }
+        <Binormal> { -0.587525 0.056352 -0.806821 }
+      }
+      <Normal> { -0.778008 0.234230 0.582904 }
+    }
+    <Vertex> 2225 {
+      2.15434503555 -40.6415138245 -2.61254906654
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { -0.388813 -0.920766 0.031860 }
+        <Binormal> { -0.630079 0.242128 -0.691760 }
+      }
+      <Normal> { -0.529527 0.525163 0.666128 }
+    }
+    <Vertex> 2226 {
+      0.838361620903 -39.579460144 -3.89968729019
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.611686 -0.790891 0.018203 }
+        <Binormal> { -0.759855 -0.587773 -0.003929 }
+      }
+      <Normal> { -0.183599 0.230964 0.955443 }
+    }
+    <Vertex> 2227 {
+      0.0151931177825 -43.0113105774 -3.68029117584
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { -0.211900 -0.976593 -0.036948 }
+        <Binormal> { -0.886726 0.207926 -0.410345 }
+      }
+      <Normal> { -0.398785 0.098605 0.911710 }
+    }
+    <Vertex> 2228 {
+      1.18784761429 -43.1018409729 -2.46462607384
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { -0.241159 -0.964429 0.108251 }
+        <Binormal> { -0.587525 0.056352 -0.806821 }
+      }
+      <Normal> { -0.778008 0.234230 0.582904 }
+    }
+    <Vertex> 2229 {
+      0.0151931177825 -43.0113105774 -3.68029117584
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { -0.211900 -0.976593 -0.036948 }
+        <Binormal> { -0.886726 0.207926 -0.410345 }
+      }
+      <Normal> { -0.398785 0.098605 0.911710 }
+    }
+    <Vertex> 2230 {
+      -0.0735220164061 -46.1398277283 -3.62481999397
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.556378 -0.830355 0.030891 }
+        <Binormal> { -0.721167 -0.497545 -0.385134 }
+      }
+      <Normal> { -0.496414 0.048647 0.866695 }
+    }
+    <Vertex> 2231 {
+      0.832987964153 -46.1624603271 -2.2427418232
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { -0.132384 -0.990765 0.029306 }
+        <Binormal> { -0.407050 0.027396 -0.912568 }
+      }
+      <Normal> { -0.899686 0.160070 0.406110 }
+    }
+    <Vertex> 2232 {
+      -9.93704986572 -40.0881309509 -1.06813716888
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.296347 0.554005 -0.777983 }
+        <Binormal> { 0.927603 -0.360320 0.096754 }
+      }
+      <Normal> { 0.221625 0.740806 0.634053 }
+    }
+    <Vertex> 2233 {
+      -13.0433340073 -40.3122062683 -0.294429689646
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.119117 0.549079 -0.827238 }
+        <Binormal> { 0.990493 -0.123120 0.060904 }
+      }
+      <Normal> { 0.067812 0.823878 0.562670 }
+    }
+    <Vertex> 2234 {
+      -13.2005634308 -41.2014007568 1.03015196323
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.869214 0.230702 -0.437315 }
+        <Binormal> { 0.441785 -0.751816 0.481483 }
+      }
+      <Normal> { 0.141362 0.591449 0.793817 }
+    }
+    <Vertex> 2235 {
+      -10.2645511627 -40.9845962524 0.184837639332
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.227557 -0.933107 -0.278440 }
+        <Binormal> { -0.580704 -0.263567 0.408679 }
+      }
+      <Normal> { 0.306162 0.540513 0.783624 }
+    }
+    <Vertex> 2236 {
+      -9.93704986572 -40.0881309509 -1.06813716888
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.296347 0.554005 -0.777983 }
+        <Binormal> { 0.927603 -0.360320 0.096754 }
+      }
+      <Normal> { 0.221625 0.740806 0.634053 }
+    }
+    <Vertex> 2237 {
+      -10.2645511627 -40.9845962524 0.184837639332
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.227557 -0.933107 -0.278440 }
+        <Binormal> { -0.580704 -0.263567 0.408679 }
+      }
+      <Normal> { 0.306162 0.540513 0.783624 }
+    }
+    <Vertex> 2238 {
+      -8.6047372818 -41.4014854431 -0.550100982189
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.372113 0.522340 -0.767263 }
+        <Binormal> { 0.706511 -0.683602 -0.122735 }
+      }
+      <Normal> { 0.538133 0.425550 0.727500 }
+    }
+    <Vertex> 2239 {
+      -7.76692771912 -40.6621894836 -1.69989109039
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.577612 0.463990 -0.671624 }
+        <Binormal> { 0.633425 -0.771084 0.012058 }
+      }
+      <Normal> { 0.548906 0.461806 0.696707 }
+    }
+    <Vertex> 2240 {
+      -9.93704986572 -40.0881309509 -1.06813716888
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.296347 0.554005 -0.777983 }
+        <Binormal> { 0.927603 -0.360320 0.096754 }
+      }
+      <Normal> { 0.221625 0.740806 0.634053 }
+    }
+    <Vertex> 2241 {
+      -7.76692771912 -40.6621894836 -1.69989109039
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.577612 0.463990 -0.671624 }
+        <Binormal> { 0.633425 -0.771084 0.012058 }
+      }
+      <Normal> { 0.548906 0.461806 0.696707 }
+    }
+    <Vertex> 2242 {
+      -6.39095926285 -39.6231803894 -3.12419271469
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.453314 0.536931 -0.711485 }
+        <Binormal> { 0.663687 -0.637240 -0.058042 }
+      }
+      <Normal> { 0.308969 0.237922 0.920804 }
+    }
+    <Vertex> 2243 {
+      -9.55143642426 -39.0406188965 -2.40867447853
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.137323 -0.979034 -0.150450 }
+        <Binormal> { -0.730423 -0.136618 0.222330 }
+      }
+      <Normal> { 0.151555 0.538530 0.828822 }
+    }
+    <Vertex> 2244 {
+      -9.93704986572 -40.0881309509 -1.06813716888
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.296347 0.554005 -0.777983 }
+        <Binormal> { 0.927603 -0.360320 0.096754 }
+      }
+      <Normal> { 0.221625 0.740806 0.634053 }
+    }
+    <Vertex> 2245 {
+      -9.55143642426 -39.0406188965 -2.40867447853
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.137323 -0.979034 -0.150450 }
+        <Binormal> { -0.730423 -0.136618 0.222330 }
+      }
+      <Normal> { 0.151555 0.538530 0.828822 }
+    }
+    <Vertex> 2246 {
+      -12.7850561142 -39.2860908508 -1.85544037819
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.177673 0.572190 -0.800644 }
+        <Binormal> { 0.948376 -0.199019 0.068226 }
+      }
+      <Normal> { 0.078158 0.635701 0.767937 }
+    }
+    <Vertex> 2247 {
+      -13.0433340073 -40.3122062683 -0.294429689646
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.119117 0.549079 -0.827238 }
+        <Binormal> { 0.990493 -0.123120 0.060904 }
+      }
+      <Normal> { 0.067812 0.823878 0.562670 }
+    }
+    <Vertex> 2248 {
+      -16.6150417328 -40.3496704102 0.1178323403
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.985369 0.131749 0.108126 }
+        <Binormal> { -0.015713 0.561451 -0.827311 }
+      }
+      <Normal> { 0.176672 0.815973 0.550401 }
+    }
+    <Vertex> 2249 {
+      -19.5969200134 -39.3665122986 0.229745984077
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.949108 0.312931 0.035621 }
+        <Binormal> { 0.169103 0.596498 -0.734556 }
+      }
+      <Normal> { 0.512680 0.604907 0.609241 }
+    }
+    <Vertex> 2250 {
+      -20.4595336914 -40.2450904846 1.96089971066
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.554982 0.830930 0.039371 }
+        <Binormal> { 0.728082 -0.484297 -0.042065 }
+      }
+      <Normal> { 0.284097 0.349559 0.892788 }
+    }
+    <Vertex> 2251 {
+      -16.5711364746 -41.2178192139 1.54346323013
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 0.000000 1.000000 }
+        <Binormal> { -0.571886 0.154454 -0.000000 }
+      }
+      <Normal> { 0.154454 0.571886 0.805628 }
+    }
+    <Vertex> 2252 {
+      -16.6150417328 -40.3496704102 0.1178323403
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.985369 0.131749 0.108126 }
+        <Binormal> { -0.015713 0.561451 -0.827311 }
+      }
+      <Normal> { 0.176672 0.815973 0.550401 }
+    }
+    <Vertex> 2253 {
+      -16.5711364746 -41.2178192139 1.54346323013
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 0.000000 1.000000 }
+        <Binormal> { -0.571886 0.154454 -0.000000 }
+      }
+      <Normal> { 0.154454 0.571886 0.805628 }
+    }
+    <Vertex> 2254 {
+      -13.2005634308 -41.2014007568 1.03015196323
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.991200 -0.007693 0.132151 }
+        <Binormal> { -0.084267 0.805512 -0.585156 }
+      }
+      <Normal> { 0.141362 0.591449 0.793817 }
+    }
+    <Vertex> 2255 {
+      -13.0433340073 -40.3122062683 -0.294429689646
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.993351 -0.010419 0.114657 }
+        <Binormal> { -0.100326 0.566703 -0.817693 }
+      }
+      <Normal> { 0.067812 0.823878 0.562670 }
+    }
+    <Vertex> 2256 {
+      -16.6150417328 -40.3496704102 0.1178323403
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.985369 0.131749 0.108126 }
+        <Binormal> { -0.015713 0.561451 -0.827311 }
+      }
+      <Normal> { 0.176672 0.815973 0.550401 }
+    }
+    <Vertex> 2257 {
+      -13.0433340073 -40.3122062683 -0.294429689646
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.993351 -0.010419 0.114657 }
+        <Binormal> { -0.100326 0.566703 -0.817693 }
+      }
+      <Normal> { 0.067812 0.823878 0.562670 }
+    }
+    <Vertex> 2258 {
+      -12.7850561142 -39.2860908508 -1.85544037819
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.744128 -0.582781 0.326557 }
+        <Binormal> { -0.655132 0.596967 -0.427494 }
+      }
+      <Normal> { 0.078158 0.635701 0.767937 }
+    }
+    <Vertex> 2259 {
+      -16.4855422974 -39.3586044312 -1.47942864895
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.210944 0.612323 0.761925 }
+    }
+    <Vertex> 2260 {
+      -16.6150417328 -40.3496704102 0.1178323403
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.985369 0.131749 0.108126 }
+        <Binormal> { -0.015713 0.561451 -0.827311 }
+      }
+      <Normal> { 0.176672 0.815973 0.550401 }
+    }
+    <Vertex> 2261 {
+      -16.4855422974 -39.3586044312 -1.47942864895
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.210944 0.612323 0.761925 }
+    }
+    <Vertex> 2262 {
+      -18.7281913757 -38.6161117554 -0.947580099106
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.943111 0.311508 0.116209 }
+        <Binormal> { 0.168516 0.742299 -0.622178 }
+      }
+      <Normal> { 0.452528 0.510239 0.731315 }
+    }
+    <Vertex> 2263 {
+      -19.5969200134 -39.3665122986 0.229745984077
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.949108 0.312931 0.035621 }
+        <Binormal> { 0.169103 0.596498 -0.734556 }
+      }
+      <Normal> { 0.512680 0.604907 0.609241 }
+    }
+    <Vertex> 2264 {
+      -20.9337120056 -36.5287399292 0.102405980229
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.229817 0.970914 -0.067162 }
+        <Binormal> { 0.654299 0.103062 -0.748994 }
+      }
+      <Normal> { 0.716849 0.230598 0.657949 }
+    }
+    <Vertex> 2265 {
+      -21.1908378601 -32.8644752502 -0.0210767760873
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.069960 0.996984 -0.033598 }
+        <Binormal> { 0.681419 0.023300 -0.727497 }
+      }
+      <Normal> { 0.729850 -0.002167 0.683554 }
+    }
+    <Vertex> 2266 {
+      -22.5711708069 -32.8881988525 1.33509898186
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.531376 0.826310 -0.186688 }
+        <Binormal> { 0.713170 -0.553003 -0.417756 }
+      }
+      <Normal> { 0.504135 -0.002228 0.863582 }
+    }
+    <Vertex> 2267 {
+      -22.1854839325 -36.5445556641 1.52032351494
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.274971 0.957993 -0.081490 }
+        <Binormal> { 0.834378 0.195752 -0.514181 }
+      }
+      <Normal> { 0.485763 0.177557 0.855861 }
+    }
+    <Vertex> 2268 {
+      -20.9337120056 -36.5287399292 0.102405980229
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.229817 0.970914 -0.067162 }
+        <Binormal> { 0.654299 0.103062 -0.748994 }
+      }
+      <Normal> { 0.716849 0.230598 0.657949 }
+    }
+    <Vertex> 2269 {
+      -22.1854839325 -36.5445556641 1.52032351494
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.274971 0.957993 -0.081490 }
+        <Binormal> { 0.834378 0.195752 -0.514181 }
+      }
+      <Normal> { 0.485763 0.177557 0.855861 }
+    }
+    <Vertex> 2270 {
+      -20.4595336914 -40.2450904846 1.96089971066
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.615972 0.770979 -0.161771 }
+        <Binormal> { 0.744870 -0.595891 -0.003714 }
+      }
+      <Normal> { 0.284097 0.349559 0.892788 }
+    }
+    <Vertex> 2271 {
+      -19.5969200134 -39.3665122986 0.229745984077
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.425804 0.903906 -0.040561 }
+        <Binormal> { 0.575232 0.238622 -0.720987 }
+      }
+      <Normal> { 0.512680 0.604907 0.609241 }
+    }
+    <Vertex> 2272 {
+      -20.9337120056 -36.5287399292 0.102405980229
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.229817 0.970914 -0.067162 }
+        <Binormal> { 0.654299 0.103062 -0.748994 }
+      }
+      <Normal> { 0.716849 0.230598 0.657949 }
+    }
+    <Vertex> 2273 {
+      -19.5969200134 -39.3665122986 0.229745984077
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.425804 0.903906 -0.040561 }
+        <Binormal> { 0.575232 0.238622 -0.720987 }
+      }
+      <Normal> { 0.512680 0.604907 0.609241 }
+    }
+    <Vertex> 2274 {
+      -18.7281913757 -38.6161117554 -0.947580099106
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.552249 0.729190 -0.404107 }
+        <Binormal> { 0.739459 -0.586738 -0.048200 }
+      }
+      <Normal> { 0.452528 0.510239 0.731315 }
+    }
+    <Vertex> 2275 {
+      -19.5537528992 -36.5050163269 -1.48328518867
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.150955 0.981760 -0.115583 }
+        <Binormal> { 0.820286 0.059350 -0.567201 }
+      }
+      <Normal> { 0.543474 0.222846 0.809290 }
+    }
+    <Vertex> 2276 {
+      -20.9337120056 -36.5287399292 0.102405980229
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.229817 0.970914 -0.067162 }
+        <Binormal> { 0.654299 0.103062 -0.748994 }
+      }
+      <Normal> { 0.716849 0.230598 0.657949 }
+    }
+    <Vertex> 2277 {
+      -19.5537528992 -36.5050163269 -1.48328518867
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.150955 0.981760 -0.115583 }
+        <Binormal> { 0.820286 0.059350 -0.567201 }
+      }
+      <Normal> { 0.543474 0.222846 0.809290 }
+    }
+    <Vertex> 2278 {
+      -19.6180343628 -32.8288879395 -1.62891376019
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.043715 0.998373 -0.036602 }
+        <Binormal> { 0.819257 0.014964 -0.570310 }
+      }
+      <Normal> { 0.571337 -0.002228 0.820673 }
+    }
+    <Vertex> 2279 {
+      -21.1908378601 -32.8644752502 -0.0210767760873
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.069960 0.996984 -0.033598 }
+        <Binormal> { 0.681419 0.023300 -0.727497 }
+      }
+      <Normal> { 0.729850 -0.002167 0.683554 }
+    }
+    <Vertex> 2280 {
+      7.49506568909 -35.9536132813 -2.48839974403
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { -0.161056 -0.986746 -0.019818 }
+        <Binormal> { -0.621102 0.116939 -0.774918 }
+      }
+      <Normal> { -0.766228 0.117008 0.631794 }
+    }
+    <Vertex> 2281 {
+      6.50941085815 -38.733745575 -2.32264661789
+      <UV>  {
+        0.053131 0.854502
+        <Tangent> { -0.403697 -0.913239 -0.054985 }
+        <Binormal> { -0.520753 0.275696 -0.755669 }
+      }
+      <Normal> { -0.589862 0.537492 0.602588 }
+    }
+    <Vertex> 2282 {
+      7.19533348083 -39.542350769 -0.598637402058
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { -0.388028 -0.921622 -0.006897 }
+        <Binormal> { -0.807805 0.343446 -0.445964 }
+      }
+      <Normal> { -0.345531 0.328623 0.878964 }
+    }
+    <Vertex> 2283 {
+      8.40805339813 -36.0186653137 -1.10680878162
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { -0.188585 -0.981852 0.020079 }
+        <Binormal> { -0.801989 0.142175 -0.580135 }
+      }
+      <Normal> { -0.566637 0.126102 0.814234 }
+    }
+    <Vertex> 2284 {
+      7.49506568909 -35.9536132813 -2.48839974403
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { -0.161056 -0.986746 -0.019818 }
+        <Binormal> { -0.621102 0.116939 -0.774918 }
+      }
+      <Normal> { -0.766228 0.117008 0.631794 }
+    }
+    <Vertex> 2285 {
+      8.40805339813 -36.0186653137 -1.10680878162
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { -0.188585 -0.981852 0.020079 }
+        <Binormal> { -0.801989 0.142175 -0.580135 }
+      }
+      <Normal> { -0.566637 0.126102 0.814234 }
+    }
+    <Vertex> 2286 {
+      8.12346458435 -32.4771995544 -1.38274729252
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.773266 -0.617720 0.143111 }
+        <Binormal> { -0.515547 -0.743863 -0.425153 }
+      }
+      <Normal> { -0.376141 -0.249336 0.892361 }
+    }
+    <Vertex> 2287 {
+      6.95582103729 -33.2101707458 -2.76208996773
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.584043 -0.811324 0.025456 }
+        <Binormal> { -0.564522 -0.428500 -0.705036 }
+      }
+      <Normal> { -0.568896 -0.416883 0.708884 }
+    }
+    <Vertex> 2288 {
+      7.49506568909 -35.9536132813 -2.48839974403
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { -0.161056 -0.986746 -0.019818 }
+        <Binormal> { -0.621102 0.116939 -0.774918 }
+      }
+      <Normal> { -0.766228 0.117008 0.631794 }
+    }
+    <Vertex> 2289 {
+      6.95582103729 -33.2101707458 -2.76208996773
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.584043 -0.811324 0.025456 }
+        <Binormal> { -0.564522 -0.428500 -0.705036 }
+      }
+      <Normal> { -0.568896 -0.416883 0.708884 }
+    }
+    <Vertex> 2290 {
+      5.99283361435 -33.8183059692 -3.57425165176
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.573852 -0.818751 -0.018446 }
+        <Binormal> { -0.701049 -0.479469 -0.527664 }
+      }
+      <Normal> { -0.430403 -0.305429 0.849361 }
+    }
+    <Vertex> 2291 {
+      6.4187669754 -35.8560295105 -3.79008579254
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { -0.166949 -0.981115 -0.097681 }
+        <Binormal> { -0.850433 0.192962 -0.484636 }
+      }
+      <Normal> { -0.482986 0.064516 0.873226 }
+    }
+    <Vertex> 2292 {
+      7.49506568909 -35.9536132813 -2.48839974403
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { -0.161056 -0.986746 -0.019818 }
+        <Binormal> { -0.621102 0.116939 -0.774918 }
+      }
+      <Normal> { -0.766228 0.117008 0.631794 }
+    }
+    <Vertex> 2293 {
+      6.4187669754 -35.8560295105 -3.79008579254
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { -0.166949 -0.981115 -0.097681 }
+        <Binormal> { -0.850433 0.192962 -0.484636 }
+      }
+      <Normal> { -0.482986 0.064516 0.873226 }
+    }
+    <Vertex> 2294 {
+      5.79442977905 -37.9606590271 -3.37894368172
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { -0.396896 -0.917844 0.005985 }
+        <Binormal> { -0.729886 0.311836 -0.580238 }
+      }
+      <Normal> { -0.458266 0.402173 0.792596 }
+    }
+    <Vertex> 2295 {
+      6.50941085815 -38.733745575 -2.32264661789
+      <UV>  {
+        0.053131 0.854502
+        <Tangent> { -0.403697 -0.913239 -0.054985 }
+        <Binormal> { -0.520753 0.275696 -0.755669 }
+      }
+      <Normal> { -0.589862 0.537492 0.602588 }
+    }
+    <Vertex> 2296 {
+      4.32868528366 -39.7409286499 -2.46462607384
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { -0.927389 -0.350449 -0.130903 }
+        <Binormal> { -0.119940 0.609963 -0.783256 }
+      }
+      <Normal> { -0.355785 0.710135 0.607501 }
+    }
+    <Vertex> 2297 {
+      2.15434503555 -40.6415138245 -2.61254906654
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { -0.932475 -0.347762 -0.097741 }
+        <Binormal> { -0.180324 0.672903 -0.673850 }
+      }
+      <Normal> { -0.529527 0.525163 0.666128 }
+    }
+    <Vertex> 2298 {
+      2.79635214806 -41.291103363 -1.51639676094
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { -0.909369 -0.392161 -0.138772 }
+        <Binormal> { -0.201610 0.700857 -0.659433 }
+      }
+      <Normal> { -0.521714 0.500168 0.691092 }
+    }
+    <Vertex> 2299 {
+      4.4444065094 -40.5874176025 -1.0628644228
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.291820 0.857986 0.422730 }
+        <Binormal> { 0.429077 -0.368641 0.452004 }
+      }
+      <Normal> { -0.342387 0.542253 0.767266 }
+    }
+    <Vertex> 2300 {
+      4.32868528366 -39.7409286499 -2.46462607384
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { -0.927389 -0.350449 -0.130903 }
+        <Binormal> { -0.119940 0.609963 -0.783256 }
+      }
+      <Normal> { -0.355785 0.710135 0.607501 }
+    }
+    <Vertex> 2301 {
+      4.4444065094 -40.5874176025 -1.0628644228
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.291820 0.857986 0.422730 }
+        <Binormal> { 0.429077 -0.368641 0.452004 }
+      }
+      <Normal> { -0.342387 0.542253 0.767266 }
+    }
+    <Vertex> 2302 {
+      7.19533348083 -39.542350769 -0.598637402058
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { -0.917153 -0.383834 -0.107252 }
+        <Binormal> { -0.302130 0.843202 -0.434024 }
+      }
+      <Normal> { -0.345531 0.328623 0.878964 }
+    }
+    <Vertex> 2303 {
+      6.50941085815 -38.733745575 -2.32264661789
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { -0.913422 -0.397079 -0.089382 }
+        <Binormal> { -0.191233 0.603140 -0.725178 }
+      }
+      <Normal> { -0.589862 0.537492 0.602588 }
+    }
+    <Vertex> 2304 {
+      4.32868528366 -39.7409286499 -2.46462607384
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { -0.927389 -0.350449 -0.130903 }
+        <Binormal> { -0.119940 0.609963 -0.783256 }
+      }
+      <Normal> { -0.355785 0.710135 0.607501 }
+    }
+    <Vertex> 2305 {
+      6.50941085815 -38.733745575 -2.32264661789
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { -0.913422 -0.397079 -0.089382 }
+        <Binormal> { -0.191233 0.603140 -0.725178 }
+      }
+      <Normal> { -0.589862 0.537492 0.602588 }
+    }
+    <Vertex> 2306 {
+      5.79442977905 -37.9606590271 -3.37894368172
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { -0.918902 -0.348062 -0.185665 }
+        <Binormal> { -0.201204 0.813402 -0.529063 }
+      }
+      <Normal> { -0.458266 0.402173 0.792596 }
+    }
+    <Vertex> 2307 {
+      4.05675315857 -38.7012138367 -3.7841424942
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { -0.088619 -0.898464 -0.430011 }
+        <Binormal> { -0.602779 0.177193 -0.246003 }
+      }
+      <Normal> { -0.231819 0.425672 0.874630 }
+    }
+    <Vertex> 2308 {
+      4.32868528366 -39.7409286499 -2.46462607384
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { -0.927389 -0.350449 -0.130903 }
+        <Binormal> { -0.119940 0.609963 -0.783256 }
+      }
+      <Normal> { -0.355785 0.710135 0.607501 }
+    }
+    <Vertex> 2309 {
+      4.05675315857 -38.7012138367 -3.7841424942
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { -0.088619 -0.898464 -0.430011 }
+        <Binormal> { -0.602779 0.177193 -0.246003 }
+      }
+      <Normal> { -0.231819 0.425672 0.874630 }
+    }
+    <Vertex> 2310 {
+      0.838361620903 -39.579460144 -3.89968729019
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.516136 -0.794506 -0.319945 }
+        <Binormal> { -0.685209 -0.434396 -0.026662 }
+      }
+      <Normal> { -0.183599 0.230964 0.955443 }
+    }
+    <Vertex> 2311 {
+      2.15434503555 -40.6415138245 -2.61254906654
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { -0.932475 -0.347762 -0.097741 }
+        <Binormal> { -0.180324 0.672903 -0.673850 }
+      }
+      <Normal> { -0.529527 0.525163 0.666128 }
+    }
+    <Vertex> 2312 {
+      -20.9337120056 -29.4018535614 0.102405980229
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.233664 0.969581 0.072893 }
+        <Binormal> { 0.654311 -0.101369 -0.749081 }
+      }
+      <Normal> { 0.714133 -0.242531 0.656606 }
+    }
+    <Vertex> 2313 {
+      -19.6781692505 -26.8878726959 0.228787466884
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.446350 0.893730 0.044929 }
+        <Binormal> { 0.557352 -0.241665 -0.729835 }
+      }
+      <Normal> { 0.501511 -0.630940 0.591906 }
+    }
+    <Vertex> 2314 {
+      -20.6625614166 -26.1275749207 1.95997941494
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.848636 0.527376 -0.041130 }
+        <Binormal> { 0.453714 -0.765653 -0.455845 }
+      }
+      <Normal> { 0.280160 -0.363048 0.888638 }
+    }
+    <Vertex> 2315 {
+      -22.1854820251 -29.4176673889 1.52032351494
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.270625 0.958599 0.088603 }
+        <Binormal> { 0.836755 -0.188799 -0.513124 }
+      }
+      <Normal> { 0.483169 -0.184606 0.855831 }
+    }
+    <Vertex> 2316 {
+      -20.9337120056 -29.4018535614 0.102405980229
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.233664 0.969581 0.072893 }
+        <Binormal> { 0.654311 -0.101369 -0.749081 }
+      }
+      <Normal> { 0.714133 -0.242531 0.656606 }
+    }
+    <Vertex> 2317 {
+      -22.1854820251 -29.4176673889 1.52032351494
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.270625 0.958599 0.088603 }
+        <Binormal> { 0.836755 -0.188799 -0.513124 }
+      }
+      <Normal> { 0.483169 -0.184606 0.855831 }
+    }
+    <Vertex> 2318 {
+      -22.5711708069 -32.8881988525 1.33509898186
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.092230 0.994752 0.044293 }
+        <Binormal> { 0.859149 -0.057318 -0.501695 }
+      }
+      <Normal> { 0.504135 -0.002228 0.863582 }
+    }
+    <Vertex> 2319 {
+      -21.1908378601 -32.8644752502 -0.0210767760873
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.074007 0.996624 0.035541 }
+        <Binormal> { 0.681323 -0.024648 -0.727547 }
+      }
+      <Normal> { 0.729850 -0.002167 0.683554 }
+    }
+    <Vertex> 2320 {
+      -20.9337120056 -29.4018535614 0.102405980229
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.233664 0.969581 0.072893 }
+        <Binormal> { 0.654311 -0.101369 -0.749081 }
+      }
+      <Normal> { 0.714133 -0.242531 0.656606 }
+    }
+    <Vertex> 2321 {
+      -21.1908378601 -32.8644752502 -0.0210767760873
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.074007 0.996624 0.035541 }
+        <Binormal> { 0.681323 -0.024648 -0.727547 }
+      }
+      <Normal> { 0.729850 -0.002167 0.683554 }
+    }
+    <Vertex> 2322 {
+      -19.6180343628 -32.8288879395 -1.62891376019
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.670474 0.703418 -0.235939 }
+        <Binormal> { 0.576751 -0.685041 -0.403383 }
+      }
+      <Normal> { 0.571337 -0.002228 0.820673 }
+    }
+    <Vertex> 2323 {
+      -19.5537528992 -29.3781261444 -1.48328518867
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.157711 0.979441 0.125785 }
+        <Binormal> { 0.818229 -0.058596 -0.569641 }
+      }
+      <Normal> { 0.542619 -0.242073 0.804315 }
+    }
+    <Vertex> 2324 {
+      -20.9337120056 -29.4018535614 0.102405980229
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.233664 0.969581 0.072893 }
+        <Binormal> { 0.654311 -0.101369 -0.749081 }
+      }
+      <Normal> { 0.714133 -0.242531 0.656606 }
+    }
+    <Vertex> 2325 {
+      -19.5537528992 -29.3781261444 -1.48328518867
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.157711 0.979441 0.125785 }
+        <Binormal> { 0.818229 -0.058596 -0.569641 }
+      }
+      <Normal> { 0.542619 -0.242073 0.804315 }
+    }
+    <Vertex> 2326 {
+      -18.7643032074 -27.5269126892 -0.948005974293
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.420290 0.897142 0.135986 }
+        <Binormal> { 0.712386 -0.238629 -0.627456 }
+      }
+      <Normal> { 0.444533 -0.544023 0.711600 }
+    }
+    <Vertex> 2327 {
+      -19.6781692505 -26.8878726959 0.228787466884
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.446350 0.893730 0.044929 }
+        <Binormal> { 0.557352 -0.241665 -0.729835 }
+      }
+      <Normal> { 0.501511 -0.630940 0.591906 }
+    }
+    <Vertex> 2328 {
+      -2.26931095123 -31.9547367096 -2.46921801567
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.965771 -0.218618 -0.139613 }
+        <Binormal> { -0.249492 -0.635653 -0.730498 }
+      }
+      <Normal> { -0.075442 -0.739311 0.669088 }
+    }
+    <Vertex> 2329 {
+      1.19339179993 -32.236530304 -2.89319705963
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.984989 -0.096704 -0.142986 }
+        <Binormal> { -0.172373 -0.594159 -0.785594 }
+      }
+      <Normal> { 0.002838 -0.797845 0.602802 }
+    }
+    <Vertex> 2330 {
+      1.48542678356 -31.5088615417 -1.76593053341
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.987152 -0.099441 -0.125070 }
+        <Binormal> { -0.155373 -0.779353 -0.606681 }
+      }
+      <Normal> { 0.019135 -0.616504 0.787072 }
+    }
+    <Vertex> 2331 {
+      -1.81428253651 -31.0861663818 -1.2857388258
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.975508 -0.204120 -0.081968 }
+        <Binormal> { -0.213884 -0.793341 -0.569839 }
+      }
+      <Normal> { -0.040651 -0.575640 0.816675 }
+    }
+    <Vertex> 2332 {
+      -2.26931095123 -31.9547367096 -2.46921801567
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.965771 -0.218618 -0.139613 }
+        <Binormal> { -0.249492 -0.635653 -0.730498 }
+      }
+      <Normal> { -0.075442 -0.739311 0.669088 }
+    }
+    <Vertex> 2333 {
+      -1.81428253651 -31.0861663818 -1.2857388258
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.975508 -0.204120 -0.081968 }
+        <Binormal> { -0.213884 -0.793341 -0.569839 }
+      }
+      <Normal> { -0.040651 -0.575640 0.816675 }
+    }
+    <Vertex> 2334 {
+      -3.60399985313 -30.2704372406 -1.11836576462
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.913480 -0.388814 -0.119907 }
+        <Binormal> { -0.383726 -0.738829 -0.527568 }
+      }
+      <Normal> { -0.270821 -0.462264 0.844356 }
+    }
+    <Vertex> 2335 {
+      -4.77597570419 -30.8909339905 -1.94618296623
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.888853 -0.406080 -0.212225 }
+        <Binormal> { -0.422159 -0.615198 -0.590966 }
+      }
+      <Normal> { -0.381939 -0.490371 0.783319 }
+    }
+    <Vertex> 2336 {
+      -2.26931095123 -31.9547367096 -2.46921801567
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.965771 -0.218618 -0.139613 }
+        <Binormal> { -0.249492 -0.635653 -0.730498 }
+      }
+      <Normal> { -0.075442 -0.739311 0.669088 }
+    }
+    <Vertex> 2337 {
+      -4.77597570419 -30.8909339905 -1.94618296623
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.888853 -0.406080 -0.212225 }
+        <Binormal> { -0.422159 -0.615198 -0.590966 }
+      }
+      <Normal> { -0.381939 -0.490371 0.783319 }
+    }
+    <Vertex> 2338 {
+      -6.17821788788 -32.10679245 -3.29684877396
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.921122 -0.353567 -0.162865 }
+        <Binormal> { -0.374021 -0.845355 -0.280164 }
+      }
+      <Normal> { -0.199744 -0.227485 0.953063 }
+    }
+    <Vertex> 2339 {
+      -2.6505408287 -32.957950592 -3.47373652458
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.972124 -0.192010 -0.134565 }
+        <Binormal> { -0.231145 -0.879978 -0.414205 }
+      }
+      <Normal> { 0.015229 -0.429090 0.903104 }
+    }
+    <Vertex> 2340 {
+      -2.26931095123 -31.9547367096 -2.46921801567
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.965771 -0.218618 -0.139613 }
+        <Binormal> { -0.249492 -0.635653 -0.730498 }
+      }
+      <Normal> { -0.075442 -0.739311 0.669088 }
+    }
+    <Vertex> 2341 {
+      -2.6505408287 -32.957950592 -3.47373652458
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.972124 -0.192010 -0.134565 }
+        <Binormal> { -0.231145 -0.879978 -0.414205 }
+      }
+      <Normal> { 0.015229 -0.429090 0.903104 }
+    }
+    <Vertex> 2342 {
+      0.830666780472 -33.0284042358 -3.81339669228
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.984551 -0.090952 -0.149626 }
+        <Binormal> { -0.150343 -0.875242 -0.457240 }
+      }
+      <Normal> { 0.042787 -0.468368 0.882473 }
+    }
+    <Vertex> 2343 {
+      1.19339179993 -32.236530304 -2.89319705963
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.984989 -0.096704 -0.142986 }
+        <Binormal> { -0.172373 -0.594159 -0.785594 }
+      }
+      <Normal> { 0.002838 -0.797845 0.602802 }
+    }
+    <Vertex> 2344 {
+      -5.27632188797 -28.4683742523 -1.59829080105
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.762440 -0.167168 -0.625092 }
+        <Binormal> { -0.218545 0.975698 0.005635 }
+      }
+      <Normal> { -0.599200 -0.138768 0.788446 }
+    }
+    <Vertex> 2345 {
+      -4.77597570419 -30.8909339905 -1.94618296623
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.670392 -0.478234 -0.567333 }
+        <Binormal> { -0.652813 0.741817 0.146085 }
+      }
+      <Normal> { -0.381939 -0.490371 0.783319 }
+    }
+    <Vertex> 2346 {
+      -3.60399985313 -30.2704372406 -1.11836576462
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.781395 -0.203055 -0.590076 }
+        <Binormal> { -0.444222 0.819581 0.306219 }
+      }
+      <Normal> { -0.270821 -0.462264 0.844356 }
+    }
+    <Vertex> 2347 {
+      -3.77160167694 -28.3932991028 -0.404782384634
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.782872 -0.039060 -0.620955 }
+        <Binormal> { -0.161171 0.926846 0.144896 }
+      }
+      <Normal> { -0.329936 -0.201544 0.922208 }
+    }
+    <Vertex> 2348 {
+      -5.27632188797 -28.4683742523 -1.59829080105
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.762440 -0.167168 -0.625092 }
+        <Binormal> { -0.218545 0.975698 0.005635 }
+      }
+      <Normal> { -0.599200 -0.138768 0.788446 }
+    }
+    <Vertex> 2349 {
+      -3.77160167694 -28.3932991028 -0.404782384634
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.782872 -0.039060 -0.620955 }
+        <Binormal> { -0.161171 0.926846 0.144896 }
+      }
+      <Normal> { -0.329936 -0.201544 0.922208 }
+    }
+    <Vertex> 2350 {
+      -3.54617714882 -25.4372901917 -0.105620525777
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.774085 -0.023751 -0.632636 }
+        <Binormal> { -0.067714 0.952432 0.047097 }
+      }
+      <Normal> { -0.374371 -0.072329 0.924436 }
+    }
+    <Vertex> 2351 {
+      -5.100086689 -25.4560604095 -1.41183853149
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.785902 -0.033997 -0.617416 }
+        <Binormal> { -0.071406 0.996701 0.036011 }
+      }
+      <Normal> { -0.623371 -0.072787 0.778497 }
+    }
+    <Vertex> 2352 {
+      -5.27632188797 -28.4683742523 -1.59829080105
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.762440 -0.167168 -0.625092 }
+        <Binormal> { -0.218545 0.975698 0.005635 }
+      }
+      <Normal> { -0.599200 -0.138768 0.788446 }
+    }
+    <Vertex> 2353 {
+      -5.100086689 -25.4560604095 -1.41183853149
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.785902 -0.033997 -0.617416 }
+        <Binormal> { -0.071406 0.996701 0.036011 }
+      }
+      <Normal> { -0.623371 -0.072787 0.778497 }
+    }
+    <Vertex> 2354 {
+      -6.82100057602 -25.5789527893 -2.67837190628
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.779647 -0.089108 -0.619847 }
+        <Binormal> { -0.150284 0.938093 0.054169 }
+      }
+      <Normal> { -0.337077 -0.108005 0.935240 }
+    }
+    <Vertex> 2355 {
+      -6.86505794525 -28.7237529755 -2.9630484581
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.752975 -0.121036 -0.646822 }
+        <Binormal> { -0.201107 0.935573 0.059043 }
+      }
+      <Normal> { -0.384014 -0.140141 0.912625 }
+    }
+    <Vertex> 2356 {
+      -5.27632188797 -28.4683742523 -1.59829080105
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.762440 -0.167168 -0.625092 }
+        <Binormal> { -0.218545 0.975698 0.005635 }
+      }
+      <Normal> { -0.599200 -0.138768 0.788446 }
+    }
+    <Vertex> 2357 {
+      -6.86505794525 -28.7237529755 -2.9630484581
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.752975 -0.121036 -0.646822 }
+        <Binormal> { -0.201107 0.935573 0.059043 }
+      }
+      <Normal> { -0.384014 -0.140141 0.912625 }
+    }
+    <Vertex> 2358 {
+      -6.17821788788 -32.10679245 -3.29684877396
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.247707 -0.892410 -0.377156 }
+        <Binormal> { -0.936320 0.311414 -0.121904 }
+      }
+      <Normal> { -0.199744 -0.227485 0.953063 }
+    }
+    <Vertex> 2359 {
+      -4.77597570419 -30.8909339905 -1.94618296623
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.670392 -0.478234 -0.567333 }
+        <Binormal> { -0.652813 0.741817 0.146085 }
+      }
+      <Normal> { -0.381939 -0.490371 0.783319 }
+    }
+    <Vertex> 2360 {
+      4.56184911728 -32.313079834 -2.94392180443
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.985819 -0.166137 0.023645 }
+        <Binormal> { -0.086627 -0.624459 -0.775977 }
+      }
+      <Normal> { -0.161565 -0.759911 0.629566 }
+    }
+    <Vertex> 2361 {
+      6.95582103729 -33.2101707458 -2.76208996773
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.584043 -0.811324 0.025456 }
+        <Binormal> { -0.564522 -0.428500 -0.705036 }
+      }
+      <Normal> { -0.568896 -0.416883 0.708884 }
+    }
+    <Vertex> 2362 {
+      8.12346458435 -32.4771995544 -1.38274729252
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.773266 -0.617720 0.143111 }
+        <Binormal> { -0.515547 -0.743863 -0.425153 }
+      }
+      <Normal> { -0.376141 -0.249336 0.892361 }
+    }
+    <Vertex> 2363 {
+      4.85971927643 -31.6236820221 -1.79009187222
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.988350 -0.124693 0.087273 }
+        <Binormal> { -0.049613 -0.805762 -0.589392 }
+      }
+      <Normal> { -0.114963 -0.581835 0.805109 }
+    }
+    <Vertex> 2364 {
+      4.56184911728 -32.313079834 -2.94392180443
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.985819 -0.166137 0.023645 }
+        <Binormal> { -0.086627 -0.624459 -0.775977 }
+      }
+      <Normal> { -0.161565 -0.759911 0.629566 }
+    }
+    <Vertex> 2365 {
+      4.85971927643 -31.6236820221 -1.79009187222
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.988350 -0.124693 0.087273 }
+        <Binormal> { -0.049613 -0.805762 -0.589392 }
+      }
+      <Normal> { -0.114963 -0.581835 0.805109 }
+    }
+    <Vertex> 2366 {
+      1.48542678356 -31.5088615417 -1.76593053341
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.999725 -0.023456 -0.000240 }
+        <Binormal> { -0.018609 -0.786860 -0.615886 }
+      }
+      <Normal> { 0.019135 -0.616504 0.787072 }
+    }
+    <Vertex> 2367 {
+      1.19339179993 -32.236530304 -2.89319705963
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.998885 -0.035059 -0.031612 }
+        <Binormal> { -0.046355 -0.602219 -0.796856 }
+      }
+      <Normal> { 0.002838 -0.797845 0.602802 }
+    }
+    <Vertex> 2368 {
+      4.56184911728 -32.313079834 -2.94392180443
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.985819 -0.166137 0.023645 }
+        <Binormal> { -0.086627 -0.624459 -0.775977 }
+      }
+      <Normal> { -0.161565 -0.759911 0.629566 }
+    }
+    <Vertex> 2369 {
+      1.19339179993 -32.236530304 -2.89319705963
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.998885 -0.035059 -0.031612 }
+        <Binormal> { -0.046355 -0.602219 -0.796856 }
+      }
+      <Normal> { 0.002838 -0.797845 0.602802 }
+    }
+    <Vertex> 2370 {
+      0.830666780472 -33.0284042358 -3.81339669228
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.997442 -0.043868 -0.056429 }
+        <Binormal> { -0.065142 -0.882631 -0.465293 }
+      }
+      <Normal> { 0.042787 -0.468368 0.882473 }
+    }
+    <Vertex> 2371 {
+      4.11504411697 -33.0475387573 -3.90396642685
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.975605 -0.216897 -0.033913 }
+        <Binormal> { -0.207969 -0.864636 -0.452872 }
+      }
+      <Normal> { -0.130863 -0.435102 0.890805 }
+    }
+    <Vertex> 2372 {
+      4.56184911728 -32.313079834 -2.94392180443
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.985819 -0.166137 0.023645 }
+        <Binormal> { -0.086627 -0.624459 -0.775977 }
+      }
+      <Normal> { -0.161565 -0.759911 0.629566 }
+    }
+    <Vertex> 2373 {
+      4.11504411697 -33.0475387573 -3.90396642685
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.975605 -0.216897 -0.033913 }
+        <Binormal> { -0.207969 -0.864636 -0.452872 }
+      }
+      <Normal> { -0.130863 -0.435102 0.890805 }
+    }
+    <Vertex> 2374 {
+      5.99283361435 -33.8183059692 -3.57425165176
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.573852 -0.818751 -0.018446 }
+        <Binormal> { -0.701049 -0.479469 -0.527664 }
+      }
+      <Normal> { -0.430403 -0.305429 0.849361 }
+    }
+    <Vertex> 2375 {
+      6.95582103729 -33.2101707458 -2.76208996773
+      <UV>  {
+        0.172904 0.881867
+        <Tangent> { 0.584043 -0.811324 0.025456 }
+        <Binormal> { -0.564522 -0.428500 -0.705036 }
+      }
+      <Normal> { -0.568896 -0.416883 0.708884 }
+    }
+    <Vertex> 2376 {
+      -9.42289924622 -20.0849895477 -0.529452443123
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.035874 -0.557455 -0.829432 }
+        <Binormal> { -0.976267 -0.149287 0.142560 }
+      }
+      <Normal> { 0.205634 -0.778497 0.592975 }
+    }
+    <Vertex> 2377 {
+      -6.94023084641 -20.6167697906 -1.17978286743
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.550317 -0.564107 -0.615577 }
+        <Binormal> { -0.794052 0.574823 0.183110 }
+      }
+      <Normal> { -0.291360 -0.631397 0.718619 }
+    }
+    <Vertex> 2378 {
+      -6.12064647675 -19.6365470886 -0.213918238878
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.355304 -0.643701 -0.677797 }
+        <Binormal> { -0.757789 0.474216 -0.053124 }
+      }
+      <Normal> { -0.197516 -0.208319 0.957884 }
+    }
+    <Vertex> 2379 {
+      -9.31296443939 -19.3812122345 0.277881801128
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.102108 -0.653673 -0.749857 }
+        <Binormal> { -0.805146 -0.117233 0.211832 }
+      }
+      <Normal> { 0.281655 -0.271493 0.920286 }
+    }
+    <Vertex> 2380 {
+      -9.42289924622 -20.0849895477 -0.529452443123
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.035874 -0.557455 -0.829432 }
+        <Binormal> { -0.976267 -0.149287 0.142560 }
+      }
+      <Normal> { 0.205634 -0.778497 0.592975 }
+    }
+    <Vertex> 2381 {
+      -9.31296443939 -19.3812122345 0.277881801128
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.102108 -0.653673 -0.749857 }
+        <Binormal> { -0.805146 -0.117233 0.211832 }
+      }
+      <Normal> { 0.281655 -0.271493 0.920286 }
+    }
+    <Vertex> 2382 {
+      -12.5347423553 -19.998506546 1.79928779602
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.892080 0.325505 -0.313432 }
+        <Binormal> { 0.226079 -0.920421 -0.312414 }
+      }
+      <Normal> { 0.447157 -0.187048 0.874660 }
+    }
+    <Vertex> 2383 {
+      -11.8291101456 -20.9651470184 0.0708224028349
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.389080 -0.419822 -0.819979 }
+        <Binormal> { -0.709280 -0.704361 0.024074 }
+      }
+      <Normal> { 0.592273 -0.577197 0.562120 }
+    }
+    <Vertex> 2384 {
+      -9.42289924622 -20.0849895477 -0.529452443123
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.035874 -0.557455 -0.829432 }
+        <Binormal> { -0.976267 -0.149287 0.142560 }
+      }
+      <Normal> { 0.205634 -0.778497 0.592975 }
+    }
+    <Vertex> 2385 {
+      -11.8291101456 -20.9651470184 0.0708224028349
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.389080 -0.419822 -0.819979 }
+        <Binormal> { -0.709280 -0.704361 0.024074 }
+      }
+      <Normal> { 0.592273 -0.577197 0.562120 }
+    }
+    <Vertex> 2386 {
+      -11.1684131622 -21.4727935791 -1.08022630215
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.841279 -0.507551 -0.186120 }
+        <Binormal> { -0.433206 0.463291 0.694729 }
+      }
+      <Normal> { 0.551683 -0.492965 0.672750 }
+    }
+    <Vertex> 2387 {
+      -9.42289924622 -20.7872695923 -1.78078067303
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 -0.489418 -0.872049 }
+        <Binormal> { -0.889291 -0.188877 0.106003 }
+      }
+      <Normal> { 0.216590 -0.578387 0.786462 }
+    }
+    <Vertex> 2388 {
+      -9.42289924622 -20.0849895477 -0.529452443123
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.035874 -0.557455 -0.829432 }
+        <Binormal> { -0.976267 -0.149287 0.142560 }
+      }
+      <Normal> { 0.205634 -0.778497 0.592975 }
+    }
+    <Vertex> 2389 {
+      -9.42289924622 -20.7872695923 -1.78078067303
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 -0.489418 -0.872049 }
+        <Binormal> { -0.889291 -0.188877 0.106003 }
+      }
+      <Normal> { 0.216590 -0.578387 0.786462 }
+    }
+    <Vertex> 2390 {
+      -7.64340400696 -21.1974620819 -1.91725337505
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.284805 -0.519640 -0.805519 }
+        <Binormal> { -0.865841 0.388213 0.055696 }
+      }
+      <Normal> { -0.195318 -0.551927 0.810663 }
+    }
+    <Vertex> 2391 {
+      -6.94023084641 -20.6167697906 -1.17978286743
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.550317 -0.564107 -0.615577 }
+        <Binormal> { -0.794052 0.574823 0.183110 }
+      }
+      <Normal> { -0.291360 -0.631397 0.718619 }
+    }
+    <Vertex> 2392 {
+      -12.9629573822 -23.1947441101 0.113997928798
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.578175 -0.172608 -0.797446 }
+        <Binormal> { -0.417780 -0.902113 -0.107641 }
+      }
+      <Normal> { 0.701437 -0.395581 0.592822 }
+    }
+    <Vertex> 2393 {
+      -11.8291101456 -20.9651470184 0.0708224028349
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.389080 -0.419822 -0.819979 }
+        <Binormal> { -0.709280 -0.704361 0.024074 }
+      }
+      <Normal> { 0.592273 -0.577197 0.562120 }
+    }
+    <Vertex> 2394 {
+      -12.5347423553 -19.998506546 1.79928779602
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.509313 -0.248781 -0.823838 }
+        <Binormal> { -0.371696 -0.813861 0.015978 }
+      }
+      <Normal> { 0.447157 -0.187048 0.874660 }
+    }
+    <Vertex> 2395 {
+      -14.2060632706 -23.2094974518 1.53771138191
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.657692 0.007806 -0.753246 }
+        <Binormal> { -0.252469 -0.888217 -0.229646 }
+      }
+      <Normal> { 0.468642 -0.343608 0.813776 }
+    }
+    <Vertex> 2396 {
+      -12.9629573822 -23.1947441101 0.113997928798
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.578175 -0.172608 -0.797446 }
+        <Binormal> { -0.417780 -0.902113 -0.107641 }
+      }
+      <Normal> { 0.701437 -0.395581 0.592822 }
+    }
+    <Vertex> 2397 {
+      -14.2060632706 -23.2094974518 1.53771138191
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.657692 0.007806 -0.753246 }
+        <Binormal> { -0.252469 -0.888217 -0.229646 }
+      }
+      <Normal> { 0.468642 -0.343608 0.813776 }
+    }
+    <Vertex> 2398 {
+      -15.062330246 -24.8115329742 1.09885978699
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.630689 -0.162021 -0.758934 }
+        <Binormal> { -0.541124 -0.763254 -0.286741 }
+      }
+      <Normal> { 0.403027 -0.558184 0.725211 }
+    }
+    <Vertex> 2399 {
+      -14.2060632706 -25.3656044006 -0.00368922064081
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.595366 -0.321509 -0.736323 }
+        <Binormal> { -0.664789 -0.709224 -0.227850 }
+      }
+      <Normal> { 0.481887 -0.642933 0.595264 }
+    }
+    <Vertex> 2400 {
+      -12.9629573822 -23.1947441101 0.113997928798
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.578175 -0.172608 -0.797446 }
+        <Binormal> { -0.417780 -0.902113 -0.107641 }
+      }
+      <Normal> { 0.701437 -0.395581 0.592822 }
+    }
+    <Vertex> 2401 {
+      -14.2060632706 -25.3656044006 -0.00368922064081
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.595366 -0.321509 -0.736323 }
+        <Binormal> { -0.664789 -0.709224 -0.227850 }
+      }
+      <Normal> { 0.481887 -0.642933 0.595264 }
+    }
+    <Vertex> 2402 {
+      -12.7342815399 -26.0687236786 -1.7803696394
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.613242 -0.144320 -0.776599 }
+        <Binormal> { -0.466894 -0.771049 -0.225395 }
+      }
+      <Normal> { 0.339579 -0.447462 0.827296 }
+    }
+    <Vertex> 2403 {
+      -11.8291101456 -23.1048316956 -1.40904796124
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.902904 -0.085727 -0.421206 }
+        <Binormal> { -0.194972 0.460407 0.324239 }
+      }
+      <Normal> { 0.558916 -0.306040 0.770653 }
+    }
+    <Vertex> 2404 {
+      -12.9629573822 -23.1947441101 0.113997928798
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.578175 -0.172608 -0.797446 }
+        <Binormal> { -0.417780 -0.902113 -0.107641 }
+      }
+      <Normal> { 0.701437 -0.395581 0.592822 }
+    }
+    <Vertex> 2405 {
+      -11.8291101456 -23.1048316956 -1.40904796124
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.902904 -0.085727 -0.421206 }
+        <Binormal> { -0.194972 0.460407 0.324239 }
+      }
+      <Normal> { 0.558916 -0.306040 0.770653 }
+    }
+    <Vertex> 2406 {
+      -11.1684131622 -21.4727935791 -1.08022630215
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.552608 -0.128636 -0.823454 }
+        <Binormal> { -0.492475 -0.826053 -0.201450 }
+      }
+      <Normal> { 0.551683 -0.492965 0.672750 }
+    }
+    <Vertex> 2407 {
+      -11.8291101456 -20.9651470184 0.0708224028349
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.389080 -0.419822 -0.819979 }
+        <Binormal> { -0.709280 -0.704361 0.024074 }
+      }
+      <Normal> { 0.592273 -0.577197 0.562120 }
+    }
+    <Vertex> 2408 {
+      -16.9400424957 -26.0695533752 0.113997928798
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.964225 0.248537 -0.092193 }
+        <Binormal> { 0.052604 -0.520257 -0.852357 }
+      }
+      <Normal> { 0.263253 -0.816126 0.514389 }
+    }
+    <Vertex> 2409 {
+      -14.2060632706 -25.3656044006 -0.00368922064081
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.967573 0.249132 -0.041650 }
+        <Binormal> { 0.121521 -0.596032 -0.742139 }
+      }
+      <Normal> { 0.481887 -0.642933 0.595264 }
+    }
+    <Vertex> 2410 {
+      -15.062330246 -24.8115329742 1.09885978699
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.962206 0.249042 -0.110174 }
+        <Binormal> { 0.119111 -0.742206 -0.637458 }
+      }
+      <Normal> { 0.403027 -0.558184 0.725211 }
+    }
+    <Vertex> 2411 {
+      -17.1888771057 -25.3656044006 1.53771138191
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.962755 0.226245 -0.148038 }
+        <Binormal> { 0.089511 -0.783182 -0.614803 }
+      }
+      <Normal> { 0.232276 -0.584002 0.777764 }
+    }
+    <Vertex> 2412 {
+      -16.9400424957 -26.0695533752 0.113997928798
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.964225 0.248537 -0.092193 }
+        <Binormal> { 0.052604 -0.520257 -0.852357 }
+      }
+      <Normal> { 0.263253 -0.816126 0.514389 }
+    }
+    <Vertex> 2413 {
+      -17.1888771057 -25.3656044006 1.53771138191
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.962755 0.226245 -0.148038 }
+        <Binormal> { 0.089511 -0.783182 -0.614803 }
+      }
+      <Normal> { 0.232276 -0.584002 0.777764 }
+    }
+    <Vertex> 2414 {
+      -20.6625614166 -26.1275749207 1.95997941494
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.699394 0.712911 0.051047 }
+        <Binormal> { 0.652053 -0.607207 -0.453643 }
+      }
+      <Normal> { 0.280160 -0.363048 0.888638 }
+    }
+    <Vertex> 2415 {
+      -19.6781692505 -26.8878726959 0.228787466884
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.957354 0.286116 -0.040135 }
+        <Binormal> { 0.144031 -0.586792 -0.747523 }
+      }
+      <Normal> { 0.501511 -0.630940 0.591906 }
+    }
+    <Vertex> 2416 {
+      -16.9400424957 -26.0695533752 0.113997928798
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.964225 0.248537 -0.092193 }
+        <Binormal> { 0.052604 -0.520257 -0.852357 }
+      }
+      <Normal> { 0.263253 -0.816126 0.514389 }
+    }
+    <Vertex> 2417 {
+      -19.6781692505 -26.8878726959 0.228787466884
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.957354 0.286116 -0.040135 }
+        <Binormal> { 0.144031 -0.586792 -0.747523 }
+      }
+      <Normal> { 0.501511 -0.630940 0.591906 }
+    }
+    <Vertex> 2418 {
+      -18.7643032074 -27.5269126892 -0.948005974293
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.951162 0.282376 -0.124718 }
+        <Binormal> { 0.133089 -0.732288 -0.642979 }
+      }
+      <Normal> { 0.444533 -0.544023 0.711600 }
+    }
+    <Vertex> 2419 {
+      -16.5667934418 -26.8799648285 -1.48038721085
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.963352 0.232959 -0.132978 }
+        <Binormal> { 0.086908 -0.740031 -0.666834 }
+      }
+      <Normal> { 0.263558 -0.628468 0.731803 }
+    }
+    <Vertex> 2420 {
+      -16.9400424957 -26.0695533752 0.113997928798
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.964225 0.248537 -0.092193 }
+        <Binormal> { 0.052604 -0.520257 -0.852357 }
+      }
+      <Normal> { 0.263253 -0.816126 0.514389 }
+    }
+    <Vertex> 2421 {
+      -16.5667934418 -26.8799648285 -1.48038721085
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.963352 0.232959 -0.132978 }
+        <Binormal> { 0.086908 -0.740031 -0.666834 }
+      }
+      <Normal> { 0.263558 -0.628468 0.731803 }
+    }
+    <Vertex> 2422 {
+      -12.7342815399 -26.0687236786 -1.7803696394
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.763557 -0.566961 -0.309090 }
+        <Binormal> { -0.607350 -0.736648 -0.149135 }
+      }
+      <Normal> { 0.339579 -0.447462 0.827296 }
+    }
+    <Vertex> 2423 {
+      -14.2060632706 -25.3656044006 -0.00368922064081
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.967573 0.249132 -0.041650 }
+        <Binormal> { 0.121521 -0.596032 -0.742139 }
+      }
+      <Normal> { 0.481887 -0.642933 0.595264 }
+    }
+    <Vertex> 2424 {
+      -5.57700777054 -22.6229934692 -1.37312376499
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.752602 -0.136577 -0.644156 }
+        <Binormal> { -0.278069 0.952432 0.122944 }
+      }
+      <Normal> { -0.581744 -0.268929 0.767602 }
+    }
+    <Vertex> 2425 {
+      -5.100086689 -25.4560604095 -1.41183853149
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.785902 -0.033997 -0.617416 }
+        <Binormal> { -0.071406 0.996701 0.036011 }
+      }
+      <Normal> { -0.623371 -0.072787 0.778497 }
+    }
+    <Vertex> 2426 {
+      -3.54617714882 -25.4372901917 -0.105620525777
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.757389 -0.004977 -0.652944 }
+        <Binormal> { -0.051828 0.944601 0.052918 }
+      }
+      <Normal> { -0.374371 -0.072329 0.924436 }
+    }
+    <Vertex> 2427 {
+      -4.27453517914 -22.6229934692 -0.21685834229
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.747833 0.000000 -0.663886 }
+        <Binormal> { -0.096583 0.930994 0.108796 }
+      }
+      <Normal> { -0.367748 -0.145482 0.918455 }
+    }
+    <Vertex> 2428 {
+      -5.57700777054 -22.6229934692 -1.37312376499
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.752602 -0.136577 -0.644156 }
+        <Binormal> { -0.278069 0.952432 0.122944 }
+      }
+      <Normal> { -0.581744 -0.268929 0.767602 }
+    }
+    <Vertex> 2429 {
+      -4.27453517914 -22.6229934692 -0.21685834229
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.747833 0.000000 -0.663886 }
+        <Binormal> { -0.096583 0.930994 0.108796 }
+      }
+      <Normal> { -0.367748 -0.145482 0.918455 }
+    }
+    <Vertex> 2430 {
+      -6.12064647675 -19.6365470886 -0.213918238878
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.672150 -0.310480 -0.672173 }
+        <Binormal> { -0.437431 0.776607 0.078697 }
+      }
+      <Normal> { -0.197516 -0.208319 0.957884 }
+    }
+    <Vertex> 2431 {
+      -6.94023084641 -20.6167697906 -1.17978286743
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.550317 -0.564107 -0.615577 }
+        <Binormal> { -0.794052 0.574823 0.183110 }
+      }
+      <Normal> { -0.291360 -0.631397 0.718619 }
+    }
+    <Vertex> 2432 {
+      -5.57700777054 -22.6229934692 -1.37312376499
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.752602 -0.136577 -0.644156 }
+        <Binormal> { -0.278069 0.952432 0.122944 }
+      }
+      <Normal> { -0.581744 -0.268929 0.767602 }
+    }
+    <Vertex> 2433 {
+      -6.94023084641 -20.6167697906 -1.17978286743
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.550317 -0.564107 -0.615577 }
+        <Binormal> { -0.794052 0.574823 0.183110 }
+      }
+      <Normal> { -0.291360 -0.631397 0.718619 }
+    }
+    <Vertex> 2434 {
+      -7.64340400696 -21.1974620819 -1.91725337505
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.737464 -0.231429 -0.634498 }
+        <Binormal> { -0.537808 0.721764 0.361824 }
+      }
+      <Normal> { -0.195318 -0.551927 0.810663 }
+    }
+    <Vertex> 2435 {
+      -6.94023084641 -22.6907730103 -2.41353416443
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.794315 -0.039493 -0.606221 }
+        <Binormal> { -0.186657 0.905359 0.185590 }
+      }
+      <Normal> { -0.276864 -0.247414 0.928495 }
+    }
+    <Vertex> 2436 {
+      -5.57700777054 -22.6229934692 -1.37312376499
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.752602 -0.136577 -0.644156 }
+        <Binormal> { -0.278069 0.952432 0.122944 }
+      }
+      <Normal> { -0.581744 -0.268929 0.767602 }
+    }
+    <Vertex> 2437 {
+      -6.94023084641 -22.6907730103 -2.41353416443
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.794315 -0.039493 -0.606221 }
+        <Binormal> { -0.186657 0.905359 0.185590 }
+      }
+      <Normal> { -0.276864 -0.247414 0.928495 }
+    }
+    <Vertex> 2438 {
+      -6.82100057602 -25.5789527893 -2.67837190628
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.799787 -0.049446 -0.598243 }
+        <Binormal> { -0.110857 0.949647 0.069714 }
+      }
+      <Normal> { -0.337077 -0.108005 0.935240 }
+    }
+    <Vertex> 2439 {
+      -5.100086689 -25.4560604095 -1.41183853149
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.785902 -0.033997 -0.617416 }
+        <Binormal> { -0.071406 0.996701 0.036011 }
+      }
+      <Normal> { -0.623371 -0.072787 0.778497 }
+    }
+    <Vertex> 2440 {
+      -9.42289924622 -22.8941135406 -2.33853387833
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.978309 -0.081112 0.190611 }
+        <Binormal> { -0.037252 0.973997 0.223281 }
+      }
+      <Normal> { 0.196356 -0.211951 0.957335 }
+    }
+    <Vertex> 2441 {
+      -9.42289924622 -25.8335018158 -2.72627353668
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.985367 -0.081614 0.149640 }
+        <Binormal> { -0.050556 0.976954 0.199924 }
+      }
+      <Normal> { 0.108768 -0.193884 0.974944 }
+    }
+    <Vertex> 2442 {
+      -6.82100057602 -25.5789527893 -2.67837190628
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.597906 -0.793062 -0.116450 }
+        <Binormal> { -0.754280 0.598438 -0.202746 }
+      }
+      <Normal> { -0.337077 -0.108005 0.935240 }
+    }
+    <Vertex> 2443 {
+      -6.94023084641 -22.6907730103 -2.41353416443
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.996211 -0.081594 0.030095 }
+        <Binormal> { -0.068313 0.916645 0.223886 }
+      }
+      <Normal> { -0.276864 -0.247414 0.928495 }
+    }
+    <Vertex> 2444 {
+      -9.42289924622 -22.8941135406 -2.33853387833
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.978309 -0.081112 0.190611 }
+        <Binormal> { -0.037252 0.973997 0.223281 }
+      }
+      <Normal> { 0.196356 -0.211951 0.957335 }
+    }
+    <Vertex> 2445 {
+      -6.94023084641 -22.6907730103 -2.41353416443
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.996211 -0.081594 0.030095 }
+        <Binormal> { -0.068313 0.916645 0.223886 }
+      }
+      <Normal> { -0.276864 -0.247414 0.928495 }
+    }
+    <Vertex> 2446 {
+      -7.64340400696 -21.1974620819 -1.91725337505
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.997600 0.048416 0.049497 }
+        <Binormal> { 0.066568 0.799050 0.560059 }
+      }
+      <Normal> { -0.195318 -0.551927 0.810663 }
+    }
+    <Vertex> 2447 {
+      -9.42289924622 -20.7872695923 -1.78078067303
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.970149 -0.075776 0.230366 }
+        <Binormal> { 0.073645 0.812880 0.577534 }
+      }
+      <Normal> { 0.216590 -0.578387 0.786462 }
+    }
+    <Vertex> 2448 {
+      -9.42289924622 -22.8941135406 -2.33853387833
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.978309 -0.081112 0.190611 }
+        <Binormal> { -0.037252 0.973997 0.223281 }
+      }
+      <Normal> { 0.196356 -0.211951 0.957335 }
+    }
+    <Vertex> 2449 {
+      -9.42289924622 -20.7872695923 -1.78078067303
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.970149 -0.075776 0.230366 }
+        <Binormal> { 0.073645 0.812880 0.577534 }
+      }
+      <Normal> { 0.216590 -0.578387 0.786462 }
+    }
+    <Vertex> 2450 {
+      -11.1684131622 -21.4727935791 -1.08022630215
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.841279 -0.507551 -0.186120 }
+        <Binormal> { -0.433206 0.463291 0.694729 }
+      }
+      <Normal> { 0.551683 -0.492965 0.672750 }
+    }
+    <Vertex> 2451 {
+      -11.8291101456 -23.1048316956 -1.40904796124
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.902904 -0.085727 -0.421206 }
+        <Binormal> { -0.194972 0.460407 0.324239 }
+      }
+      <Normal> { 0.558916 -0.306040 0.770653 }
+    }
+    <Vertex> 2452 {
+      -9.42289924622 -22.8941135406 -2.33853387833
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.978309 -0.081112 0.190611 }
+        <Binormal> { -0.037252 0.973997 0.223281 }
+      }
+      <Normal> { 0.196356 -0.211951 0.957335 }
+    }
+    <Vertex> 2453 {
+      -11.8291101456 -23.1048316956 -1.40904796124
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.902904 -0.085727 -0.421206 }
+        <Binormal> { -0.194972 0.460407 0.324239 }
+      }
+      <Normal> { 0.558916 -0.306040 0.770653 }
+    }
+    <Vertex> 2454 {
+      -12.7342815399 -26.0687236786 -1.7803696394
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.947593 -0.073907 0.310814 }
+        <Binormal> { 0.077935 0.889486 0.449109 }
+      }
+      <Normal> { 0.339579 -0.447462 0.827296 }
+    }
+    <Vertex> 2455 {
+      -9.42289924622 -25.8335018158 -2.72627353668
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.985367 -0.081614 0.149640 }
+        <Binormal> { -0.050556 0.976954 0.199924 }
+      }
+      <Normal> { 0.108768 -0.193884 0.974944 }
+    }
+    <Vertex> 2456 {
+      -16.4423751831 -29.370218277 -2.62389039993
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.966985 0.063059 -0.246907 }
+        <Binormal> { -0.006865 -0.961938 -0.272563 }
+      }
+      <Normal> { 0.271432 -0.264168 0.925474 }
+    }
+    <Vertex> 2457 {
+      -12.698964119 -29.2860164642 -3.29383945465
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.984119 0.022136 -0.176125 }
+        <Binormal> { -0.026116 -0.962888 -0.266944 }
+      }
+      <Normal> { 0.146672 -0.267953 0.952178 }
+    }
+    <Vertex> 2458 {
+      -12.7342815399 -26.0687236786 -1.7803696394
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.985156 0.116441 -0.126128 }
+        <Binormal> { 0.039894 -0.857846 -0.480362 }
+      }
+      <Normal> { 0.339579 -0.447462 0.827296 }
+    }
+    <Vertex> 2459 {
+      -16.5667934418 -26.8799648285 -1.48038721085
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.963352 0.232959 -0.132978 }
+        <Binormal> { 0.086908 -0.740031 -0.666834 }
+      }
+      <Normal> { 0.263558 -0.628468 0.731803 }
+    }
+    <Vertex> 2460 {
+      -16.4423751831 -29.370218277 -2.62389039993
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.966985 0.063059 -0.246907 }
+        <Binormal> { -0.006865 -0.961938 -0.272563 }
+      }
+      <Normal> { 0.271432 -0.264168 0.925474 }
+    }
+    <Vertex> 2461 {
+      -16.5667934418 -26.8799648285 -1.48038721085
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.963352 0.232959 -0.132978 }
+        <Binormal> { 0.086908 -0.740031 -0.666834 }
+      }
+      <Normal> { 0.263558 -0.628468 0.731803 }
+    }
+    <Vertex> 2462 {
+      -18.7643032074 -27.5269126892 -0.948005974293
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.947231 0.116842 -0.298500 }
+        <Binormal> { -0.079246 -0.806742 -0.567255 }
+      }
+      <Normal> { 0.444533 -0.544023 0.711600 }
+    }
+    <Vertex> 2463 {
+      -19.5537528992 -29.3781261444 -1.48328518867
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.938896 0.002386 -0.344192 }
+        <Binormal> { -0.081400 -0.941934 -0.228576 }
+      }
+      <Normal> { 0.542619 -0.242073 0.804315 }
+    }
+    <Vertex> 2464 {
+      -16.4423751831 -29.370218277 -2.62389039993
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.966985 0.063059 -0.246907 }
+        <Binormal> { -0.006865 -0.961938 -0.272563 }
+      }
+      <Normal> { 0.271432 -0.264168 0.925474 }
+    }
+    <Vertex> 2465 {
+      -19.5537528992 -29.3781261444 -1.48328518867
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.938896 0.002386 -0.344192 }
+        <Binormal> { -0.081400 -0.941934 -0.228576 }
+      }
+      <Normal> { 0.542619 -0.242073 0.804315 }
+    }
+    <Vertex> 2466 {
+      -19.6180343628 -32.8288879395 -1.62891376019
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.670474 0.703418 -0.235939 }
+        <Binormal> { 0.576751 -0.685041 -0.403383 }
+      }
+      <Normal> { 0.571337 -0.002228 0.820673 }
+    }
+    <Vertex> 2467 {
+      -16.4423751831 -32.8170280457 -3.08292150497
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.946650 0.013143 -0.321996 }
+        <Binormal> { 0.011349 -0.999495 -0.007431 }
+      }
+      <Normal> { 0.295022 -0.003754 0.955473 }
+    }
+    <Vertex> 2468 {
+      -16.4423751831 -29.370218277 -2.62389039993
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.966985 0.063059 -0.246907 }
+        <Binormal> { -0.006865 -0.961938 -0.272563 }
+      }
+      <Normal> { 0.271432 -0.264168 0.925474 }
+    }
+    <Vertex> 2469 {
+      -16.4423751831 -32.8170280457 -3.08292150497
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.946650 0.013143 -0.321996 }
+        <Binormal> { 0.011349 -0.999495 -0.007431 }
+      }
+      <Normal> { 0.295022 -0.003754 0.955473 }
+    }
+    <Vertex> 2470 {
+      -12.698964119 -32.7328262329 -3.98238611221
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.720581 -0.692181 -0.040600 }
+        <Binormal> { -0.687992 -0.720568 0.074130 }
+      }
+      <Normal> { 0.112339 -0.005036 0.993652 }
+    }
+    <Vertex> 2471 {
+      -12.698964119 -29.2860164642 -3.29383945465
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.984119 0.022136 -0.176125 }
+        <Binormal> { -0.026116 -0.962888 -0.266944 }
+      }
+      <Normal> { 0.146672 -0.267953 0.952178 }
+    }
+    <Vertex> 2472 {
+      -9.42289924622 -29.0334148407 -3.4675617218
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.025111 -0.980809 -0.193349 }
+        <Binormal> { -0.999567 -0.022120 -0.017609 }
+      }
+      <Normal> { -0.012909 -0.197028 0.980285 }
+    }
+    <Vertex> 2473 {
+      -6.86505794525 -28.7237529755 -2.9630484581
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.097561 -0.990793 -0.093872 }
+        <Binormal> { -0.917378 -0.052989 -0.394151 }
+      }
+      <Normal> { -0.384014 -0.140141 0.912625 }
+    }
+    <Vertex> 2474 {
+      -6.82100057602 -25.5789527893 -2.67837190628
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.597906 -0.793062 -0.116450 }
+        <Binormal> { -0.754280 0.598438 -0.202746 }
+      }
+      <Normal> { -0.337077 -0.108005 0.935240 }
+    }
+    <Vertex> 2475 {
+      -9.42289924622 -25.8335018158 -2.72627353668
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 -0.974201 -0.225682 }
+        <Binormal> { -0.993548 -0.024547 0.105962 }
+      }
+      <Normal> { 0.108768 -0.193884 0.974944 }
+    }
+    <Vertex> 2476 {
+      -9.42289924622 -29.0334148407 -3.4675617218
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.025111 -0.980809 -0.193349 }
+        <Binormal> { -0.999567 -0.022120 -0.017609 }
+      }
+      <Normal> { -0.012909 -0.197028 0.980285 }
+    }
+    <Vertex> 2477 {
+      -9.42289924622 -25.8335018158 -2.72627353668
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 -0.974201 -0.225682 }
+        <Binormal> { -0.993548 -0.024547 0.105962 }
+      }
+      <Normal> { 0.108768 -0.193884 0.974944 }
+    }
+    <Vertex> 2478 {
+      -12.7342815399 -26.0687236786 -1.7803696394
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.763557 -0.566961 -0.309090 }
+        <Binormal> { -0.607350 -0.736648 -0.149135 }
+      }
+      <Normal> { 0.339579 -0.447462 0.827296 }
+    }
+    <Vertex> 2479 {
+      -12.698964119 -29.2860164642 -3.29383945465
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.005032 -0.949495 -0.313741 }
+        <Binormal> { -0.988156 -0.050808 0.137916 }
+      }
+      <Normal> { 0.146672 -0.267953 0.952178 }
+    }
+    <Vertex> 2480 {
+      -9.42289924622 -29.0334148407 -3.4675617218
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.025111 -0.980809 -0.193349 }
+        <Binormal> { -0.999567 -0.022120 -0.017609 }
+      }
+      <Normal> { -0.012909 -0.197028 0.980285 }
+    }
+    <Vertex> 2481 {
+      -12.698964119 -29.2860164642 -3.29383945465
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.005032 -0.949495 -0.313741 }
+        <Binormal> { -0.988156 -0.050808 0.137916 }
+      }
+      <Normal> { 0.146672 -0.267953 0.952178 }
+    }
+    <Vertex> 2482 {
+      -12.698964119 -32.7328262329 -3.98238611221
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.000000 -0.986425 -0.164210 }
+        <Binormal> { -0.980991 -0.018447 0.110814 }
+      }
+      <Normal> { 0.112339 -0.005036 0.993652 }
+    }
+    <Vertex> 2483 {
+      -9.42289924622 -32.4802246094 -3.92659282684
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 -0.991248 -0.132010 }
+        <Binormal> { -0.992775 0.007755 -0.058234 }
+      }
+      <Normal> { -0.058748 -0.027375 0.997894 }
+    }
+    <Vertex> 2484 {
+      -9.42289924622 -29.0334148407 -3.4675617218
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.025111 -0.980809 -0.193349 }
+        <Binormal> { -0.999567 -0.022120 -0.017609 }
+      }
+      <Normal> { -0.012909 -0.197028 0.980285 }
+    }
+    <Vertex> 2485 {
+      -9.42289924622 -32.4802246094 -3.92659282684
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 -0.991248 -0.132010 }
+        <Binormal> { -0.992775 0.007755 -0.058234 }
+      }
+      <Normal> { -0.058748 -0.027375 0.997894 }
+    }
+    <Vertex> 2486 {
+      -6.17821788788 -32.10679245 -3.29684877396
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.247707 -0.892410 -0.377156 }
+        <Binormal> { -0.936320 0.311414 -0.121904 }
+      }
+      <Normal> { -0.199744 -0.227485 0.953063 }
+    }
+    <Vertex> 2487 {
+      -6.86505794525 -28.7237529755 -2.9630484581
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.097561 -0.990793 -0.093872 }
+        <Binormal> { -0.917378 -0.052989 -0.394151 }
+      }
+      <Normal> { -0.384014 -0.140141 0.912625 }
+    }
+    <Vertex> 2488 {
+      3.9661090374 -35.8235054016 -4.22398138046
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.996775 -0.036606 0.071414 }
+        <Binormal> { -0.037374 -0.998757 0.009701 }
+      }
+      <Normal> { -0.102298 0.013489 0.994659 }
+    }
+    <Vertex> 2489 {
+      6.4187669754 -35.8560295105 -3.79008579254
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.981414 -0.074107 0.177016 }
+        <Binormal> { -0.076132 -0.942493 0.027525 }
+      }
+      <Normal> { -0.482986 0.064516 0.873226 }
+    }
+    <Vertex> 2490 {
+      5.99283361435 -33.8183059692 -3.57425165176
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.969425 -0.173139 0.173893 }
+        <Binormal> { -0.093946 -0.898235 -0.370610 }
+      }
+      <Normal> { -0.430403 -0.305429 0.849361 }
+    }
+    <Vertex> 2491 {
+      4.11504411697 -33.0475387573 -3.90396642685
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.996816 -0.055748 0.057007 }
+        <Binormal> { -0.024857 -0.895429 -0.441012 }
+      }
+      <Normal> { -0.130863 -0.435102 0.890805 }
+    }
+    <Vertex> 2492 {
+      3.9661090374 -35.8235054016 -4.22398138046
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.996775 -0.036606 0.071414 }
+        <Binormal> { -0.037374 -0.998757 0.009701 }
+      }
+      <Normal> { -0.102298 0.013489 0.994659 }
+    }
+    <Vertex> 2493 {
+      4.11504411697 -33.0475387573 -3.90396642685
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.996816 -0.055748 0.057007 }
+        <Binormal> { -0.024857 -0.895429 -0.441012 }
+      }
+      <Normal> { -0.130863 -0.435102 0.890805 }
+    }
+    <Vertex> 2494 {
+      0.830666780472 -33.0284042358 -3.81339669228
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.999424 0.021373 -0.026360 }
+        <Binormal> { 0.006515 -0.883093 -0.469012 }
+      }
+      <Normal> { 0.042787 -0.468368 0.882473 }
+    }
+    <Vertex> 2495 {
+      0.709758520126 -35.8235015869 -4.1201300621
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.997997 -0.054243 -0.032541 }
+        <Binormal> { -0.054998 -0.998165 -0.022889 }
+      }
+      <Normal> { 0.040712 -0.025147 0.998840 }
+    }
+    <Vertex> 2496 {
+      3.9661090374 -35.8235054016 -4.22398138046
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.996775 -0.036606 0.071414 }
+        <Binormal> { -0.037374 -0.998757 0.009701 }
+      }
+      <Normal> { -0.102298 0.013489 0.994659 }
+    }
+    <Vertex> 2497 {
+      0.709758520126 -35.8235015869 -4.1201300621
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.997997 -0.054243 -0.032541 }
+        <Binormal> { -0.054998 -0.998165 -0.022889 }
+      }
+      <Normal> { 0.040712 -0.025147 0.998840 }
+    }
+    <Vertex> 2498 {
+      0.838361620903 -39.579460144 -3.89968729019
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.611686 -0.790891 0.018203 }
+        <Binormal> { -0.759855 -0.587773 -0.003929 }
+      }
+      <Normal> { -0.183599 0.230964 0.955443 }
+    }
+    <Vertex> 2499 {
+      4.05675315857 -38.7012138367 -3.7841424942
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { -0.088619 -0.898464 -0.430011 }
+        <Binormal> { -0.602779 0.177193 -0.246003 }
+      }
+      <Normal> { -0.231819 0.425672 0.874630 }
+    }
+    <Vertex> 2500 {
+      3.9661090374 -35.8235054016 -4.22398138046
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.996775 -0.036606 0.071414 }
+        <Binormal> { -0.037374 -0.998757 0.009701 }
+      }
+      <Normal> { -0.102298 0.013489 0.994659 }
+    }
+    <Vertex> 2501 {
+      4.05675315857 -38.7012138367 -3.7841424942
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { -0.088619 -0.898464 -0.430011 }
+        <Binormal> { -0.602779 0.177193 -0.246003 }
+      }
+      <Normal> { -0.231819 0.425672 0.874630 }
+    }
+    <Vertex> 2502 {
+      5.79442977905 -37.9606590271 -3.37894368172
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.975059 -0.022875 0.220764 }
+        <Binormal> { -0.106916 -0.873997 0.381660 }
+      }
+      <Normal> { -0.458266 0.402173 0.792596 }
+    }
+    <Vertex> 2503 {
+      6.4187669754 -35.8560295105 -3.79008579254
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.981414 -0.074107 0.177016 }
+        <Binormal> { -0.076132 -0.942493 0.027525 }
+      }
+      <Normal> { -0.482986 0.064516 0.873226 }
+    }
+    <Vertex> 2504 {
+      -2.77761793137 -35.8235015869 -3.80857586861
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.993027 -0.083935 -0.082784 }
+        <Binormal> { -0.086083 -0.996014 -0.022734 }
+      }
+      <Normal> { 0.085513 -0.030122 0.995880 }
+    }
+    <Vertex> 2505 {
+      0.709758520126 -35.8235015869 -4.1201300621
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.993611 -0.068541 -0.089663 }
+        <Binormal> { -0.070716 -0.996109 -0.022196 }
+      }
+      <Normal> { 0.040712 -0.025147 0.998840 }
+    }
+    <Vertex> 2506 {
+      0.830666780472 -33.0284042358 -3.81339669228
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.995798 0.007329 -0.091286 }
+        <Binormal> { -0.036288 -0.882671 -0.466713 }
+      }
+      <Normal> { 0.042787 -0.468368 0.882473 }
+    }
+    <Vertex> 2507 {
+      -2.6505408287 -32.957950592 -3.47373652458
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.996251 -0.057491 -0.064644 }
+        <Binormal> { -0.079658 -0.900702 -0.426606 }
+      }
+      <Normal> { 0.015229 -0.429090 0.903104 }
+    }
+    <Vertex> 2508 {
+      -2.77761793137 -35.8235015869 -3.80857586861
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.993027 -0.083935 -0.082784 }
+        <Binormal> { -0.086083 -0.996014 -0.022734 }
+      }
+      <Normal> { 0.085513 -0.030122 0.995880 }
+    }
+    <Vertex> 2509 {
+      -2.6505408287 -32.957950592 -3.47373652458
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.996251 -0.057491 -0.064644 }
+        <Binormal> { -0.079658 -0.900702 -0.426606 }
+      }
+      <Normal> { 0.015229 -0.429090 0.903104 }
+    }
+    <Vertex> 2510 {
+      -6.17821788788 -32.10679245 -3.29684877396
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.991913 -0.111660 -0.060337 }
+        <Binormal> { -0.120145 -0.933303 -0.247949 }
+      }
+      <Normal> { -0.199744 -0.227485 0.953063 }
+    }
+    <Vertex> 2511 {
+      -6.24038219452 -35.907699585 -3.51561975479
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.995956 -0.034248 -0.083056 }
+        <Binormal> { -0.029828 -0.997710 0.053727 }
+      }
+      <Normal> { 0.057344 0.051973 0.996979 }
+    }
+    <Vertex> 2512 {
+      -2.77761793137 -35.8235015869 -3.80857586861
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.993027 -0.083935 -0.082784 }
+        <Binormal> { -0.086083 -0.996014 -0.022734 }
+      }
+      <Normal> { 0.085513 -0.030122 0.995880 }
+    }
+    <Vertex> 2513 {
+      -6.24038219452 -35.907699585 -3.51561975479
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.995956 -0.034248 -0.083056 }
+        <Binormal> { -0.029828 -0.997710 0.053727 }
+      }
+      <Normal> { 0.057344 0.051973 0.996979 }
+    }
+    <Vertex> 2514 {
+      -6.39095926285 -39.6231803894 -3.12419271469
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.986840 -0.101020 -0.126260 }
+        <Binormal> { -0.062980 -0.947697 0.266003 }
+      }
+      <Normal> { 0.308969 0.237922 0.920804 }
+    }
+    <Vertex> 2515 {
+      -2.77761793137 -39.5112686157 -3.80857586861
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.972755 -0.207026 -0.104348 }
+        <Binormal> { -0.202074 -0.977666 0.055908 }
+      }
+      <Normal> { 0.100558 0.036073 0.994263 }
+    }
+    <Vertex> 2516 {
+      -2.77761793137 -35.8235015869 -3.80857586861
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.993027 -0.083935 -0.082784 }
+        <Binormal> { -0.086083 -0.996014 -0.022734 }
+      }
+      <Normal> { 0.085513 -0.030122 0.995880 }
+    }
+    <Vertex> 2517 {
+      -2.77761793137 -39.5112686157 -3.80857586861
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.972755 -0.207026 -0.104348 }
+        <Binormal> { -0.202074 -0.977666 0.055908 }
+      }
+      <Normal> { 0.100558 0.036073 0.994263 }
+    }
+    <Vertex> 2518 {
+      0.838361620903 -39.579460144 -3.89968729019
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.516136 -0.794506 -0.319945 }
+        <Binormal> { -0.685209 -0.434396 -0.026662 }
+      }
+      <Normal> { -0.183599 0.230964 0.955443 }
+    }
+    <Vertex> 2519 {
+      0.709758520126 -35.8235015869 -4.1201300621
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.993611 -0.068541 -0.089663 }
+        <Binormal> { -0.070716 -0.996109 -0.022196 }
+      }
+      <Normal> { 0.040712 -0.025147 0.998840 }
+    }
+    <Vertex> 2520 {
+      -16.4423751831 -36.4971084595 -2.62389039993
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.967957 -0.014196 -0.250714 }
+        <Binormal> { 0.049344 -0.968054 0.245321 }
+      }
+      <Normal> { 0.259133 0.249641 0.932981 }
+    }
+    <Vertex> 2521 {
+      -12.698964119 -36.4129066467 -3.29383945465
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.984119 0.022136 -0.176125 }
+        <Binormal> { 0.070342 -0.957400 0.272713 }
+      }
+      <Normal> { 0.100162 0.279366 0.954924 }
+    }
+    <Vertex> 2522 {
+      -12.698964119 -32.7328262329 -3.98238611221
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.978490 0.022010 -0.205115 }
+        <Binormal> { 0.020837 -0.995321 -0.007400 }
+      }
+      <Normal> { 0.112339 -0.005036 0.993652 }
+    }
+    <Vertex> 2523 {
+      -16.4423751831 -32.8170280457 -3.08292150497
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.946650 0.013143 -0.321996 }
+        <Binormal> { 0.011349 -0.999495 -0.007431 }
+      }
+      <Normal> { 0.295022 -0.003754 0.955473 }
+    }
+    <Vertex> 2524 {
+      -16.4423751831 -36.4971084595 -2.62389039993
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.967957 -0.014196 -0.250714 }
+        <Binormal> { 0.049344 -0.968054 0.245321 }
+      }
+      <Normal> { 0.259133 0.249641 0.932981 }
+    }
+    <Vertex> 2525 {
+      -16.4423751831 -32.8170280457 -3.08292150497
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.946650 0.013143 -0.321996 }
+        <Binormal> { 0.011349 -0.999495 -0.007431 }
+      }
+      <Normal> { 0.295022 -0.003754 0.955473 }
+    }
+    <Vertex> 2526 {
+      -19.6180343628 -32.8288879395 -1.62891376019
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.924372 0.002906 -0.381481 }
+        <Binormal> { 0.001535 -0.976562 -0.003720 }
+      }
+      <Normal> { 0.571337 -0.002228 0.820673 }
+    }
+    <Vertex> 2527 {
+      -19.5537528992 -36.5050163269 -1.48328518867
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.938896 0.002386 -0.344192 }
+        <Binormal> { 0.078633 -0.946898 0.207933 }
+      }
+      <Normal> { 0.543474 0.222846 0.809290 }
+    }
+    <Vertex> 2528 {
+      -16.4423751831 -36.4971084595 -2.62389039993
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.967957 -0.014196 -0.250714 }
+        <Binormal> { 0.049344 -0.968054 0.245321 }
+      }
+      <Normal> { 0.259133 0.249641 0.932981 }
+    }
+    <Vertex> 2529 {
+      -19.5537528992 -36.5050163269 -1.48328518867
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.938896 0.002386 -0.344192 }
+        <Binormal> { 0.078633 -0.946898 0.207933 }
+      }
+      <Normal> { 0.543474 0.222846 0.809290 }
+    }
+    <Vertex> 2530 {
+      -18.7281913757 -38.6161117554 -0.947580099106
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.552249 0.729190 -0.404107 }
+        <Binormal> { 0.739459 -0.586738 -0.048200 }
+      }
+      <Normal> { 0.452528 0.510239 0.731315 }
+    }
+    <Vertex> 2531 {
+      -16.4855422974 -39.3586044312 -1.47942864895
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.210944 0.612323 0.761925 }
+    }
+    <Vertex> 2532 {
+      -16.4423751831 -36.4971084595 -2.62389039993
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.967957 -0.014196 -0.250714 }
+        <Binormal> { 0.049344 -0.968054 0.245321 }
+      }
+      <Normal> { 0.259133 0.249641 0.932981 }
+    }
+    <Vertex> 2533 {
+      -16.4855422974 -39.3586044312 -1.47942864895
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.210944 0.612323 0.761925 }
+    }
+    <Vertex> 2534 {
+      -12.7850561142 -39.2860908508 -1.85544037819
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.990057 0.020844 -0.139115 }
+        <Binormal> { 0.104442 -0.771174 0.627751 }
+      }
+      <Normal> { 0.078158 0.635701 0.767937 }
+    }
+    <Vertex> 2535 {
+      -12.698964119 -36.4129066467 -3.29383945465
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.984119 0.022136 -0.176125 }
+        <Binormal> { 0.070342 -0.957400 0.272713 }
+      }
+      <Normal> { 0.100162 0.279366 0.954924 }
+    }
+    <Vertex> 2536 {
+      -9.42289924622 -36.1603012085 -3.4675617218
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.020058 -0.981089 0.192514 }
+        <Binormal> { -0.999350 0.025115 0.023867 }
+      }
+      <Normal> { 0.028413 0.199835 0.979400 }
+    }
+    <Vertex> 2537 {
+      -6.24038219452 -35.907699585 -3.51561975479
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.028285 -0.999336 0.022955 }
+        <Binormal> { -0.997510 0.029516 0.055836 }
+      }
+      <Normal> { 0.057344 0.051973 0.996979 }
+    }
+    <Vertex> 2538 {
+      -6.17821788788 -32.10679245 -3.29684877396
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.008305 -0.999450 0.032098 }
+        <Binormal> { -0.945237 0.001504 -0.197745 }
+      }
+      <Normal> { -0.199744 -0.227485 0.953063 }
+    }
+    <Vertex> 2539 {
+      -9.42289924622 -32.4802246094 -3.92659282684
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 -0.992310 0.123775 }
+        <Binormal> { -0.986832 -0.007272 -0.058296 }
+      }
+      <Normal> { -0.058748 -0.027375 0.997894 }
+    }
+    <Vertex> 2540 {
+      -9.42289924622 -36.1603012085 -3.4675617218
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.020058 -0.981089 0.192514 }
+        <Binormal> { -0.999350 0.025115 0.023867 }
+      }
+      <Normal> { 0.028413 0.199835 0.979400 }
+    }
+    <Vertex> 2541 {
+      -9.42289924622 -32.4802246094 -3.92659282684
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 -0.992310 0.123775 }
+        <Binormal> { -0.986832 -0.007272 -0.058296 }
+      }
+      <Normal> { -0.058748 -0.027375 0.997894 }
+    }
+    <Vertex> 2542 {
+      -12.698964119 -32.7328262329 -3.98238611221
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.720581 -0.692181 -0.040600 }
+        <Binormal> { -0.687992 -0.720568 0.074130 }
+      }
+      <Normal> { 0.112339 -0.005036 0.993652 }
+    }
+    <Vertex> 2543 {
+      -12.698964119 -36.4129066467 -3.29383945465
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.012495 -0.951082 0.308686 }
+        <Binormal> { -0.994448 0.042850 0.091771 }
+      }
+      <Normal> { 0.100162 0.279366 0.954924 }
+    }
+    <Vertex> 2544 {
+      -9.42289924622 -36.1603012085 -3.4675617218
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.020058 -0.981089 0.192514 }
+        <Binormal> { -0.999350 0.025115 0.023867 }
+      }
+      <Normal> { 0.028413 0.199835 0.979400 }
+    }
+    <Vertex> 2545 {
+      -12.698964119 -36.4129066467 -3.29383945465
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.012495 -0.951082 0.308686 }
+        <Binormal> { -0.994448 0.042850 0.091771 }
+      }
+      <Normal> { 0.100162 0.279366 0.954924 }
+    }
+    <Vertex> 2546 {
+      -12.7850561142 -39.2860908508 -1.85544037819
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.744128 -0.582781 0.326557 }
+        <Binormal> { -0.655132 0.596967 -0.427494 }
+      }
+      <Normal> { 0.078158 0.635701 0.767937 }
+    }
+    <Vertex> 2547 {
+      -9.55143642426 -39.0406188965 -2.40867447853
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.137323 -0.979034 -0.150450 }
+        <Binormal> { -0.730423 -0.136618 0.222330 }
+      }
+      <Normal> { 0.151555 0.538530 0.828822 }
+    }
+    <Vertex> 2548 {
+      -9.42289924622 -36.1603012085 -3.4675617218
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.020058 -0.981089 0.192514 }
+        <Binormal> { -0.999350 0.025115 0.023867 }
+      }
+      <Normal> { 0.028413 0.199835 0.979400 }
+    }
+    <Vertex> 2549 {
+      -9.55143642426 -39.0406188965 -2.40867447853
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.137323 -0.979034 -0.150450 }
+        <Binormal> { -0.730423 -0.136618 0.222330 }
+      }
+      <Normal> { 0.151555 0.538530 0.828822 }
+    }
+    <Vertex> 2550 {
+      -6.39095926285 -39.6231803894 -3.12419271469
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.397358 -0.891170 -0.218912 }
+        <Binormal> { -0.768509 -0.433526 0.369885 }
+      }
+      <Normal> { 0.308969 0.237922 0.920804 }
+    }
+    <Vertex> 2551 {
+      -6.24038219452 -35.907699585 -3.51561975479
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.028285 -0.999336 0.022955 }
+        <Binormal> { -0.997510 0.029516 0.055836 }
+      }
+      <Normal> { 0.057344 0.051973 0.996979 }
+    }
+    <Vertex> 2552 {
+      -2.77761793137 -42.9811325073 -3.80857586861
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.993386 -0.038729 -0.108095 }
+        <Binormal> { -0.036188 -0.998985 0.025361 }
+      }
+      <Normal> { 0.104526 0.021455 0.994263 }
+    }
+    <Vertex> 2553 {
+      0.0151931177825 -43.0113105774 -3.68029117584
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.993971 -0.097658 0.049847 }
+        <Binormal> { -0.093951 -0.926092 0.059066 }
+      }
+      <Normal> { -0.398785 0.098605 0.911710 }
+    }
+    <Vertex> 2554 {
+      0.838361620903 -39.579460144 -3.89968729019
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.999963 0.008388 0.001817 }
+        <Binormal> { 0.007595 -0.955741 0.232496 }
+      }
+      <Normal> { -0.183599 0.230964 0.955443 }
+    }
+    <Vertex> 2555 {
+      -2.77761793137 -39.5112686157 -3.80857586861
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.990122 0.091534 -0.106211 }
+        <Binormal> { 0.094840 -0.995121 0.026512 }
+      }
+      <Normal> { 0.100558 0.036073 0.994263 }
+    }
+    <Vertex> 2556 {
+      -2.77761793137 -42.9811325073 -3.80857586861
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.993386 -0.038729 -0.108095 }
+        <Binormal> { -0.036188 -0.998985 0.025361 }
+      }
+      <Normal> { 0.104526 0.021455 0.994263 }
+    }
+    <Vertex> 2557 {
+      -2.77761793137 -39.5112686157 -3.80857586861
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.990122 0.091534 -0.106211 }
+        <Binormal> { 0.094840 -0.995121 0.026512 }
+      }
+      <Normal> { 0.100558 0.036073 0.994263 }
+    }
+    <Vertex> 2558 {
+      -6.39095926285 -39.6231803894 -3.12419271469
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.976770 0.051059 -0.208120 }
+        <Binormal> { 0.096532 -0.963717 0.216620 }
+      }
+      <Normal> { 0.308969 0.237922 0.920804 }
+    }
+    <Vertex> 2559 {
+      -5.63558197021 -42.9906349182 -3.07030248642
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.967418 -0.055801 -0.246957 }
+        <Binormal> { -0.030932 -0.961410 0.096064 }
+      }
+      <Normal> { 0.490341 0.071017 0.868618 }
+    }
+    <Vertex> 2560 {
+      -2.77761793137 -42.9811325073 -3.80857586861
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.993386 -0.038729 -0.108095 }
+        <Binormal> { -0.036188 -0.998985 0.025361 }
+      }
+      <Normal> { 0.104526 0.021455 0.994263 }
+    }
+    <Vertex> 2561 {
+      -5.63558197021 -42.9906349182 -3.07030248642
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.967418 -0.055801 -0.246957 }
+        <Binormal> { -0.030932 -0.961410 0.096064 }
+      }
+      <Normal> { 0.490341 0.071017 0.868618 }
+    }
+    <Vertex> 2562 {
+      -5.62817716599 -46.1204185486 -2.99657797813
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.957426 -0.130390 -0.257553 }
+        <Binormal> { -0.103733 -0.944974 0.092791 }
+      }
+      <Normal> { 0.538865 0.023530 0.842036 }
+    }
+    <Vertex> 2563 {
+      -2.77761793137 -46.1322822571 -3.80857586861
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.965045 -0.238273 -0.109148 }
+        <Binormal> { -0.235976 -0.971115 0.033562 }
+      }
+      <Normal> { 0.105258 0.008789 0.994385 }
+    }
+    <Vertex> 2564 {
+      -2.77761793137 -42.9811325073 -3.80857586861
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.993386 -0.038729 -0.108095 }
+        <Binormal> { -0.036188 -0.998985 0.025361 }
+      }
+      <Normal> { 0.104526 0.021455 0.994263 }
+    }
+    <Vertex> 2565 {
+      -2.77761793137 -46.1322822571 -3.80857586861
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.965045 -0.238273 -0.109148 }
+        <Binormal> { -0.235976 -0.971115 0.033562 }
+      }
+      <Normal> { 0.105258 0.008789 0.994385 }
+    }
+    <Vertex> 2566 {
+      -0.0735220164061 -46.1398277283 -3.62481999397
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.556378 -0.830355 0.030891 }
+        <Binormal> { -0.721167 -0.497545 -0.385134 }
+      }
+      <Normal> { -0.496414 0.048647 0.866695 }
+    }
+    <Vertex> 2567 {
+      0.0151931177825 -43.0113105774 -3.68029117584
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.993971 -0.097658 0.049847 }
+        <Binormal> { -0.093951 -0.926092 0.059066 }
+      }
+      <Normal> { -0.398785 0.098605 0.911710 }
+    }
+    <Vertex> 2568 {
+      -32.4593925476 -46.9627876282 4.09025287628
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.997713 0.007348 -0.067196 }
+        <Binormal> { 0.067065 -0.231518 0.970446 }
+      }
+      <Normal> { -0.002014 0.972655 0.232185 }
+    }
+    <Vertex> 2569 {
+      -29.1712741852 -46.8990974426 3.95841288567
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.999010 0.019351 -0.040056 }
+        <Binormal> { 0.042347 -0.138081 0.989449 }
+      }
+      <Normal> { -0.005341 0.990326 0.138432 }
+    }
+    <Vertex> 2570 {
+      -27.7901077271 -46.4382362366 2.78387331963
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.999364 -0.027585 -0.022599 }
+        <Binormal> { -0.005534 -0.745930 0.665783 }
+      }
+      <Normal> { 0.019471 0.665670 0.745964 }
+    }
+    <Vertex> 2571 {
+      -32.1947669983 -46.1622085571 2.82599329948
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.999364 -0.032641 -0.014340 }
+        <Binormal> { -0.018582 -0.820107 0.571788 }
+      }
+      <Normal> { 0.020264 0.571490 0.820338 }
+    }
+    <Vertex> 2572 {
+      -32.4593925476 -46.9627876282 4.09025287628
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.997713 0.007348 -0.067196 }
+        <Binormal> { 0.067065 -0.231518 0.970446 }
+      }
+      <Normal> { -0.002014 0.972655 0.232185 }
+    }
+    <Vertex> 2573 {
+      -32.1947669983 -46.1622085571 2.82599329948
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.999364 -0.032641 -0.014340 }
+        <Binormal> { -0.018582 -0.820107 0.571788 }
+      }
+      <Normal> { 0.020264 0.571490 0.820338 }
+    }
+    <Vertex> 2574 {
+      -35.836479187 -46.1754264832 2.89932918549
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.998594 0.009402 -0.052169 }
+        <Binormal> { 0.037419 -0.821728 0.568164 }
+      }
+      <Normal> { 0.015473 0.569109 0.822077 }
+    }
+    <Vertex> 2575 {
+      -35.836479187 -47.0156555176 4.38359642029
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.996127 0.015594 -0.086527 }
+        <Binormal> { 0.087639 -0.253467 0.963258 }
+      }
+      <Normal> { -0.005402 0.966918 0.254921 }
+    }
+    <Vertex> 2576 {
+      -32.4593925476 -46.9627876282 4.09025287628
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.997713 0.007348 -0.067196 }
+        <Binormal> { 0.067065 -0.231518 0.970446 }
+      }
+      <Normal> { -0.002014 0.972655 0.232185 }
+    }
+    <Vertex> 2577 {
+      -35.836479187 -47.0156555176 4.38359642029
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.996127 0.015594 -0.086527 }
+        <Binormal> { 0.087639 -0.253467 0.963258 }
+      }
+      <Normal> { -0.005402 0.966918 0.254921 }
+    }
+    <Vertex> 2578 {
+      -35.836479187 -47.0156555176 5.98122358322
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.992273 0.026057 -0.121306 }
+        <Binormal> { 0.120136 0.042235 0.991774 }
+      }
+      <Normal> { -0.043611 0.998352 -0.037233 }
+    }
+    <Vertex> 2579 {
+      -32.5823898315 -46.8943901062 5.4639005661
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.990107 0.034649 -0.135969 }
+        <Binormal> { 0.132740 0.082682 0.987669 }
+      }
+      <Normal> { -0.045625 0.995941 -0.077242 }
+    }
+    <Vertex> 2580 {
+      -32.4593925476 -46.9627876282 4.09025287628
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.997713 0.007348 -0.067196 }
+        <Binormal> { 0.067065 -0.231518 0.970446 }
+      }
+      <Normal> { -0.002014 0.972655 0.232185 }
+    }
+    <Vertex> 2581 {
+      -32.5823898315 -46.8943901062 5.4639005661
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.990107 0.034649 -0.135969 }
+        <Binormal> { 0.132740 0.082682 0.987669 }
+      }
+      <Normal> { -0.045625 0.995941 -0.077242 }
+    }
+    <Vertex> 2582 {
+      -29.0641727448 -46.7786598206 5.05120182037
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.996471 0.026268 -0.079722 }
+        <Binormal> { 0.074055 0.171977 0.982297 }
+      }
+      <Normal> { -0.043916 0.984619 -0.169073 }
+    }
+    <Vertex> 2583 {
+      -29.1712741852 -46.8990974426 3.95841288567
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.999010 0.019351 -0.040056 }
+        <Binormal> { 0.042347 -0.138081 0.989449 }
+      }
+      <Normal> { -0.005341 0.990326 0.138432 }
+    }
+    <Vertex> 2584 {
+      -15.400475502 -45.1609458923 3.59384012222
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999545 0.026120 -0.015061 }
+        <Binormal> { -0.008052 0.712608 0.701482 }
+      }
+      <Normal> { -0.025605 0.701132 -0.712546 }
+    }
+    <Vertex> 2585 {
+      -13.103102684 -45.1667747498 3.66006779671
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.999582 -0.002536 0.028816 }
+        <Binormal> { -0.018213 0.710829 0.694342 }
+      }
+      <Normal> { 0.132847 0.694296 -0.707297 }
+    }
+    <Vertex> 2586 {
+      -12.559217453 -46.0444793701 2.51674008369
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.998073 -0.060989 -0.011468 }
+        <Binormal> { -0.005253 -0.265346 0.953993 }
+      }
+      <Normal> { 0.200201 0.943602 0.263558 }
+    }
+    <Vertex> 2587 {
+      -15.5738811493 -45.7257080078 2.64400482178
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.999170 0.021828 -0.034383 }
+        <Binormal> { 0.039891 -0.357169 0.932490 }
+      }
+      <Normal> { 0.027558 0.933866 0.356517 }
+    }
+    <Vertex> 2588 {
+      -15.400475502 -45.1609458923 3.59384012222
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999545 0.026120 -0.015061 }
+        <Binormal> { -0.008052 0.712608 0.701482 }
+      }
+      <Normal> { -0.025605 0.701132 -0.712546 }
+    }
+    <Vertex> 2589 {
+      -15.5738811493 -45.7257080078 2.64400482178
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.999170 0.021828 -0.034383 }
+        <Binormal> { 0.039891 -0.357169 0.932490 }
+      }
+      <Normal> { 0.027558 0.933866 0.356517 }
+    }
+    <Vertex> 2590 {
+      -18.8465080261 -46.1818351746 2.73309445381
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.994157 0.102322 -0.034385 }
+        <Binormal> { 0.080532 -0.494669 0.856363 }
+      }
+      <Normal> { -0.194037 0.841426 0.504288 }
+    }
+    <Vertex> 2591 {
+      -17.7421188354 -45.2826576233 3.6989300251
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.997651 0.051855 -0.044773 }
+        <Binormal> { -0.002698 0.668146 0.713704 }
+      }
+      <Normal> { -0.276559 0.701010 -0.657308 }
+    }
+    <Vertex> 2592 {
+      -15.400475502 -45.1609458923 3.59384012222
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999545 0.026120 -0.015061 }
+        <Binormal> { -0.008052 0.712608 0.701482 }
+      }
+      <Normal> { -0.025605 0.701132 -0.712546 }
+    }
+    <Vertex> 2593 {
+      -17.7421188354 -45.2826576233 3.6989300251
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.997651 0.051855 -0.044773 }
+        <Binormal> { -0.002698 0.668146 0.713704 }
+      }
+      <Normal> { -0.276559 0.701010 -0.657308 }
+    }
+    <Vertex> 2594 {
+      -17.9432296753 -44.0518035889 4.54336023331
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.994932 0.097784 -0.023439 }
+        <Binormal> { -0.072529 0.855571 0.490642 }
+      }
+      <Normal> { -0.215430 0.471969 -0.854854 }
+    }
+    <Vertex> 2595 {
+      -15.4543781281 -43.698764801 4.53465223312
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.999426 0.033755 -0.002969 }
+        <Binormal> { -0.026635 0.836714 0.546900 }
+      }
+      <Normal> { -0.014069 0.546739 -0.837153 }
+    }
+    <Vertex> 2596 {
+      -15.400475502 -45.1609458923 3.59384012222
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999545 0.026120 -0.015061 }
+        <Binormal> { -0.008052 0.712608 0.701482 }
+      }
+      <Normal> { -0.025605 0.701132 -0.712546 }
+    }
+    <Vertex> 2597 {
+      -15.4543781281 -43.698764801 4.53465223312
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.999426 0.033755 -0.002969 }
+        <Binormal> { -0.026635 0.836714 0.546900 }
+      }
+      <Normal> { -0.014069 0.546739 -0.837153 }
+    }
+    <Vertex> 2598 {
+      -13.0206918716 -43.8855476379 4.52873849869
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.975725 0.135288 0.172214 }
+        <Binormal> { -0.207544 0.809257 0.540163 }
+      }
+      <Normal> { 0.164892 0.576464 -0.800287 }
+    }
+    <Vertex> 2599 {
+      -13.103102684 -45.1667747498 3.66006779671
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.999582 -0.002536 0.028816 }
+        <Binormal> { -0.018213 0.710829 0.694342 }
+      }
+      <Normal> { 0.132847 0.694296 -0.707297 }
+    }
+    <Vertex> 2600 {
+      10.6754779816 -45.2889518738 1.58134186268
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.992008 0.090907 0.087495 }
+        <Binormal> { -0.055065 -0.311962 0.948457 }
+      }
+      <Normal> { -0.107059 0.946287 0.305032 }
+    }
+    <Vertex> 2601 {
+      13.8042211533 -44.9986801147 1.58905553818
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.956515 -0.067398 0.283791 }
+        <Binormal> { -0.291508 -0.192598 0.936784 }
+      }
+      <Normal> { 0.026460 0.977508 0.209204 }
+    }
+    <Vertex> 2602 {
+      13.6012659073 -44.3292274475 -0.449449241161
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.970746 -0.100735 0.217955 }
+        <Binormal> { -0.216650 -0.743454 0.621326 }
+      }
+      <Normal> { 0.016327 0.638356 0.769524 }
+    }
+    <Vertex> 2603 {
+      10.2525291443 -44.4553260803 -0.163017913699
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.999783 0.019676 0.006782 }
+        <Binormal> { 0.011576 -0.796350 0.603840 }
+      }
+      <Normal> { 0.015046 0.604266 0.796625 }
+    }
+    <Vertex> 2604 {
+      10.6754779816 -45.2889518738 1.58134186268
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.992008 0.090907 0.087495 }
+        <Binormal> { -0.055065 -0.311962 0.948457 }
+      }
+      <Normal> { -0.107059 0.946287 0.305032 }
+    }
+    <Vertex> 2605 {
+      10.2525291443 -44.4553260803 -0.163017913699
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.999783 0.019676 0.006782 }
+        <Binormal> { 0.011576 -0.796350 0.603840 }
+      }
+      <Normal> { 0.015046 0.604266 0.796625 }
+    }
+    <Vertex> 2606 {
+      6.75631093979 -44.8541069031 0.311147242785
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.997056 0.076470 -0.005651 }
+        <Binormal> { 0.064364 -0.794639 0.603120 }
+      }
+      <Normal> { -0.017029 0.603595 0.797082 }
+    }
+    <Vertex> 2607 {
+      7.35510349274 -45.8565635681 1.92535662651
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.993361 0.113103 0.021027 }
+        <Binormal> { 0.021970 -0.365865 0.930074 }
+      }
+      <Normal> { -0.088565 0.926206 0.366436 }
+    }
+    <Vertex> 2608 {
+      10.6754779816 -45.2889518738 1.58134186268
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.992008 0.090907 0.087495 }
+        <Binormal> { -0.055065 -0.311962 0.948457 }
+      }
+      <Normal> { -0.107059 0.946287 0.305032 }
+    }
+    <Vertex> 2609 {
+      7.35510349274 -45.8565635681 1.92535662651
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.993361 0.113103 0.021027 }
+        <Binormal> { 0.021970 -0.365865 0.930074 }
+      }
+      <Normal> { -0.088565 0.926206 0.366436 }
+    }
+    <Vertex> 2610 {
+      7.87486314774 -46.3629455566 3.91087985039
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.984030 0.165117 0.066492 }
+        <Binormal> { -0.014351 -0.297587 0.951372 }
+      }
+      <Normal> { -0.099948 0.950041 0.295663 }
+    }
+    <Vertex> 2611 {
+      10.8328866959 -45.6497917175 3.73147511482
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.967899 0.177282 0.178165 }
+        <Binormal> { -0.128646 -0.259326 0.956920 }
+      }
+      <Normal> { -0.195166 0.952910 0.232002 }
+    }
+    <Vertex> 2612 {
+      10.6754779816 -45.2889518738 1.58134186268
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.992008 0.090907 0.087495 }
+        <Binormal> { -0.055065 -0.311962 0.948457 }
+      }
+      <Normal> { -0.107059 0.946287 0.305032 }
+    }
+    <Vertex> 2613 {
+      10.8328866959 -45.6497917175 3.73147511482
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.967899 0.177282 0.178165 }
+        <Binormal> { -0.128646 -0.259326 0.956920 }
+      }
+      <Normal> { -0.195166 0.952910 0.232002 }
+    }
+    <Vertex> 2614 {
+      13.6160917282 -45.1307907104 3.98471426964
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.941770 -0.023014 0.335469 }
+        <Binormal> { -0.334472 -0.166033 0.927580 }
+      }
+      <Normal> { -0.044618 0.986023 0.160405 }
+    }
+    <Vertex> 2615 {
+      13.8042211533 -44.9986801147 1.58905553818
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.956515 -0.067398 0.283791 }
+        <Binormal> { -0.291508 -0.192598 0.936784 }
+      }
+      <Normal> { 0.026460 0.977508 0.209204 }
+    }
+    <Vertex> 2616 {
+      16.1458721161 -45.4779701233 2.20478415489
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.836622 -0.274375 0.474112 }
+        <Binormal> { -0.500528 -0.031344 0.865094 }
+      }
+      <Normal> { 0.229865 0.958647 0.167730 }
+    }
+    <Vertex> 2617 {
+      18.0939750671 -46.3420524597 3.12452030182
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.747741 -0.365673 0.554226 }
+        <Binormal> { -0.577751 0.052761 0.814292 }
+      }
+      <Normal> { 0.313669 0.935606 0.161931 }
+    }
+    <Vertex> 2618 {
+      18.0939731598 -45.5018196106 0.695945441723
+      <UV>  {
+        -0.042124 0.762705
+        <Tangent> { 0.773168 -0.371776 0.513803 }
+        <Binormal> { -0.622235 -0.547738 0.540006 }
+      }
+      <Normal> { 0.031770 0.683157 0.729545 }
+    }
+    <Vertex> 2619 {
+      16.0680961609 -44.7730445862 -0.0485777109861
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.870386 -0.282715 0.403112 }
+        <Binormal> { -0.479761 -0.636839 0.589248 }
+      }
+      <Normal> { 0.023408 0.669393 0.742515 }
+    }
+    <Vertex> 2620 {
+      16.1458721161 -45.4779701233 2.20478415489
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.836622 -0.274375 0.474112 }
+        <Binormal> { -0.500528 -0.031344 0.865094 }
+      }
+      <Normal> { 0.229865 0.958647 0.167730 }
+    }
+    <Vertex> 2621 {
+      16.0680961609 -44.7730445862 -0.0485777109861
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.870386 -0.282715 0.403112 }
+        <Binormal> { -0.479761 -0.636839 0.589248 }
+      }
+      <Normal> { 0.023408 0.669393 0.742515 }
+    }
+    <Vertex> 2622 {
+      13.6012659073 -44.3292274475 -0.449449241161
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.970746 -0.100735 0.217955 }
+        <Binormal> { -0.216650 -0.743454 0.621326 }
+      }
+      <Normal> { 0.016327 0.638356 0.769524 }
+    }
+    <Vertex> 2623 {
+      13.8042211533 -44.9986801147 1.58905553818
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.956515 -0.067398 0.283791 }
+        <Binormal> { -0.291508 -0.192598 0.936784 }
+      }
+      <Normal> { 0.026460 0.977508 0.209204 }
+    }
+    <Vertex> 2624 {
+      16.1458721161 -45.4779701233 2.20478415489
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.836622 -0.274375 0.474112 }
+        <Binormal> { -0.500528 -0.031344 0.865094 }
+      }
+      <Normal> { 0.229865 0.958647 0.167730 }
+    }
+    <Vertex> 2625 {
+      13.8042211533 -44.9986801147 1.58905553818
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.956515 -0.067398 0.283791 }
+        <Binormal> { -0.291508 -0.192598 0.936784 }
+      }
+      <Normal> { 0.026460 0.977508 0.209204 }
+    }
+    <Vertex> 2626 {
+      13.6160917282 -45.1307907104 3.98471426964
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.941770 -0.023014 0.335469 }
+        <Binormal> { -0.334472 -0.166033 0.927580 }
+      }
+      <Normal> { -0.044618 0.986023 0.160405 }
+    }
+    <Vertex> 2627 {
+      15.963886261 -45.5114936829 4.7080578804
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.826340 -0.230078 0.514030 }
+        <Binormal> { -0.524958 0.015721 0.850945 }
+      }
+      <Normal> { 0.209754 0.971374 0.111454 }
+    }
+    <Vertex> 2628 {
+      16.1458721161 -45.4779701233 2.20478415489
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.836622 -0.274375 0.474112 }
+        <Binormal> { -0.500528 -0.031344 0.865094 }
+      }
+      <Normal> { 0.229865 0.958647 0.167730 }
+    }
+    <Vertex> 2629 {
+      15.963886261 -45.5114936829 4.7080578804
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.826340 -0.230078 0.514030 }
+        <Binormal> { -0.524958 0.015721 0.850945 }
+      }
+      <Normal> { 0.209754 0.971374 0.111454 }
+    }
+    <Vertex> 2630 {
+      18.0939750671 -46.3420524597 5.66645431519
+      <UV>  {
+        -0.073782 0.891829
+        <Tangent> { 0.765190 -0.322326 0.557306 }
+        <Binormal> { -0.552118 0.116149 0.825244 }
+      }
+      <Normal> { 0.311869 0.947111 0.075350 }
+    }
+    <Vertex> 2631 {
+      18.0939750671 -46.3420524597 3.12452030182
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.747741 -0.365673 0.554226 }
+        <Binormal> { -0.577751 0.052761 0.814292 }
+      }
+      <Normal> { 0.313669 0.935606 0.161931 }
+    }
+    <Vertex> 2632 {
+      4.43855857849 -46.2092666626 2.3648121357
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.971430 0.206092 -0.117685 }
+        <Binormal> { 0.177644 -0.302766 0.936150 }
+      }
+      <Normal> { -0.176214 0.926298 0.333018 }
+    }
+    <Vertex> 2633 {
+      7.35510349274 -45.8565635681 1.92535662651
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.981843 0.118736 -0.147941 }
+        <Binormal> { 0.180533 -0.346680 0.919905 }
+      }
+      <Normal> { -0.088565 0.926206 0.366436 }
+    }
+    <Vertex> 2634 {
+      6.75631093979 -44.8541069031 0.311147242785
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.987133 0.123172 -0.101967 }
+        <Binormal> { 0.159725 -0.785090 0.597926 }
+      }
+      <Normal> { -0.017029 0.603595 0.797082 }
+    }
+    <Vertex> 2635 {
+      3.84703230858 -45.2283363342 0.473477274179
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.967947 0.242730 0.064499 }
+        <Binormal> { 0.139690 -0.733720 0.664867 }
+      }
+      <Normal> { -0.202399 0.636128 0.744530 }
+    }
+    <Vertex> 2636 {
+      4.43855857849 -46.2092666626 2.3648121357
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.971430 0.206092 -0.117685 }
+        <Binormal> { 0.177644 -0.302766 0.936150 }
+      }
+      <Normal> { -0.176214 0.926298 0.333018 }
+    }
+    <Vertex> 2637 {
+      3.84703230858 -45.2283363342 0.473477274179
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.967947 0.242730 0.064499 }
+        <Binormal> { 0.139690 -0.733720 0.664867 }
+      }
+      <Normal> { -0.202399 0.636128 0.744530 }
+    }
+    <Vertex> 2638 {
+      1.39152395725 -46.1994247437 -0.046333078295
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.716680 0.109681 0.688723 }
+        <Binormal> { -0.273705 -0.847087 0.419716 }
+      }
+      <Normal> { -0.756310 0.469893 0.455153 }
+    }
+    <Vertex> 2639 {
+      2.2073264122 -47.0096130371 2.76426053047
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.928190 0.332943 -0.166170 }
+        <Binormal> { 0.216292 -0.155018 0.897563 }
+      }
+      <Normal> { -0.599292 0.752037 0.274300 }
+    }
+    <Vertex> 2640 {
+      4.43855857849 -46.2092666626 2.3648121357
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.971430 0.206092 -0.117685 }
+        <Binormal> { 0.177644 -0.302766 0.936150 }
+      }
+      <Normal> { -0.176214 0.926298 0.333018 }
+    }
+    <Vertex> 2641 {
+      2.2073264122 -47.0096130371 2.76426053047
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.928190 0.332943 -0.166170 }
+        <Binormal> { 0.216292 -0.155018 0.897563 }
+      }
+      <Normal> { -0.599292 0.752037 0.274300 }
+    }
+    <Vertex> 2642 {
+      2.69136691093 -47.1336174011 5.11570978165
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.935665 0.282041 -0.212096 }
+        <Binormal> { 0.203393 0.026022 0.931874 }
+      }
+      <Normal> { -0.548265 0.830683 0.096469 }
+    }
+    <Vertex> 2643 {
+      5.00261640549 -46.564704895 4.4854722023
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.963978 0.143322 -0.224063 }
+        <Binormal> { 0.249977 -0.200461 0.947243 }
+      }
+      <Normal> { -0.095065 0.968505 0.230049 }
+    }
+    <Vertex> 2644 {
+      4.43855857849 -46.2092666626 2.3648121357
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.971430 0.206092 -0.117685 }
+        <Binormal> { 0.177644 -0.302766 0.936150 }
+      }
+      <Normal> { -0.176214 0.926298 0.333018 }
+    }
+    <Vertex> 2645 {
+      5.00261640549 -46.564704895 4.4854722023
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.963978 0.143322 -0.224063 }
+        <Binormal> { 0.249977 -0.200461 0.947243 }
+      }
+      <Normal> { -0.095065 0.968505 0.230049 }
+    }
+    <Vertex> 2646 {
+      7.87486314774 -46.3629455566 3.91087985039
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.980647 0.093928 -0.171784 }
+        <Binormal> { 0.190973 -0.272772 0.941043 }
+      }
+      <Normal> { -0.099948 0.950041 0.295663 }
+    }
+    <Vertex> 2647 {
+      7.35510349274 -45.8565635681 1.92535662651
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.981843 0.118736 -0.147941 }
+        <Binormal> { 0.180533 -0.346680 0.919905 }
+      }
+      <Normal> { -0.088565 0.926206 0.366436 }
+    }
+    <Vertex> 2648 {
+      0.942890048027 -48.9201393127 2.98825407028
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.193837 -0.051322 0.979690 }
+        <Binormal> { -0.558949 -0.826413 0.067299 }
+      }
+      <Normal> { -0.807031 0.560869 0.184545 }
+    }
+    <Vertex> 2649 {
+      1.41633689404 -48.948261261 5.46205568314
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.187961 -0.011165 0.982113 }
+        <Binormal> { -0.568699 -0.807957 0.099655 }
+      }
+      <Normal> { -0.814478 0.578570 0.042817 }
+    }
+    <Vertex> 2650 {
+      2.69136691093 -47.1336174011 5.11570978165
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.521636 0.530113 0.668488 }
+        <Binormal> { -0.504162 -0.416830 0.723957 }
+      }
+      <Normal> { -0.548265 0.830683 0.096469 }
+    }
+    <Vertex> 2651 {
+      2.2073264122 -47.0096130371 2.76426053047
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.240510 -0.172853 0.955132 }
+        <Binormal> { -0.765708 -0.638375 0.077283 }
+      }
+      <Normal> { -0.599292 0.752037 0.274300 }
+    }
+    <Vertex> 2652 {
+      0.942890048027 -48.9201393127 2.98825407028
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.193837 -0.051322 0.979690 }
+        <Binormal> { -0.558949 -0.826413 0.067299 }
+      }
+      <Normal> { -0.807031 0.560869 0.184545 }
+    }
+    <Vertex> 2653 {
+      2.2073264122 -47.0096130371 2.76426053047
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.240510 -0.172853 0.955132 }
+        <Binormal> { -0.765708 -0.638375 0.077283 }
+      }
+      <Normal> { -0.599292 0.752037 0.274300 }
+    }
+    <Vertex> 2654 {
+      1.39152395725 -46.1994247437 -0.046333078295
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.716680 0.109681 0.688723 }
+        <Binormal> { -0.273705 -0.847087 0.419716 }
+      }
+      <Normal> { -0.756310 0.469893 0.455153 }
+    }
+    <Vertex> 2655 {
+      0.440038561821 -48.8779640198 0.148078873754
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.174319 -0.014621 0.984581 }
+        <Binormal> { -0.461670 -0.883198 0.068623 }
+      }
+      <Normal> { -0.876492 0.467177 0.116001 }
+    }
+    <Vertex> 2656 {
+      0.942890048027 -48.9201393127 2.98825407028
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.193837 -0.051322 0.979690 }
+        <Binormal> { -0.558949 -0.826413 0.067299 }
+      }
+      <Normal> { -0.807031 0.560869 0.184545 }
+    }
+    <Vertex> 2657 {
+      0.440038561821 -48.8779640198 0.148078873754
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.174319 -0.014621 0.984581 }
+        <Binormal> { -0.461670 -0.883198 0.068623 }
+      }
+      <Normal> { -0.876492 0.467177 0.116001 }
+    }
+    <Vertex> 2658 {
+      -0.911751627922 -50.7432327271 0.326278179884
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.157715 -0.010037 0.987434 }
+        <Binormal> { -0.827922 -0.541617 0.126733 }
+      }
+      <Normal> { -0.544786 0.838221 0.023316 }
+    }
+    <Vertex> 2659 {
+      -0.504589498043 -50.7589683533 3.18356585503
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.171284 -0.005981 0.985204 }
+        <Binormal> { -0.834556 -0.532237 0.141861 }
+      }
+      <Normal> { -0.522233 0.846461 0.103519 }
+    }
+    <Vertex> 2660 {
+      0.942890048027 -48.9201393127 2.98825407028
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.193837 -0.051322 0.979690 }
+        <Binormal> { -0.558949 -0.826413 0.067299 }
+      }
+      <Normal> { -0.807031 0.560869 0.184545 }
+    }
+    <Vertex> 2661 {
+      -0.504589498043 -50.7589683533 3.18356585503
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.171284 -0.005981 0.985204 }
+        <Binormal> { -0.834556 -0.532237 0.141861 }
+      }
+      <Normal> { -0.522233 0.846461 0.103519 }
+    }
+    <Vertex> 2662 {
+      0.0177282951772 -50.7756881714 5.67254209518
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.196718 -0.008859 0.980420 }
+        <Binormal> { -0.822419 -0.543248 0.160107 }
+      }
+      <Normal> { -0.541642 0.838282 0.062075 }
+    }
+    <Vertex> 2663 {
+      1.41633689404 -48.948261261 5.46205568314
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.187961 -0.011165 0.982113 }
+        <Binormal> { -0.568699 -0.807957 0.099655 }
+      }
+      <Normal> { -0.814478 0.578570 0.042817 }
+    }
+    <Vertex> 2664 {
+      -6.83783054352 -48.7851028442 3.69864606857
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.351085 -0.935648 0.036085 }
+        <Binormal> { 0.142428 0.091453 0.985561 }
+      }
+      <Normal> { 0.924161 0.344279 -0.165502 }
+    }
+    <Vertex> 2665 {
+      -7.27520275116 -48.7457008362 1.14718580246
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.299385 -0.953126 0.043820 }
+        <Binormal> { -0.016065 0.040882 0.998989 }
+      }
+      <Normal> { 0.955901 0.293588 0.003357 }
+    }
+    <Vertex> 2666 {
+      -7.83629846573 -46.1326217651 0.979065775871
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.150715 -0.550489 0.821125 }
+        <Binormal> { -0.639396 0.576823 0.504066 }
+      }
+      <Normal> { 0.761010 0.564898 0.318888 }
+    }
+    <Vertex> 2667 {
+      -7.28152084351 -46.8105506897 3.64229416847
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.219153 -0.975294 0.027834 }
+        <Binormal> { 0.049038 0.036709 0.900162 }
+      }
+      <Normal> { 0.784448 0.616443 -0.067873 }
+    }
+    <Vertex> 2668 {
+      -6.83783054352 -48.7851028442 3.69864606857
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.351085 -0.935648 0.036085 }
+        <Binormal> { 0.142428 0.091453 0.985561 }
+      }
+      <Normal> { 0.924161 0.344279 -0.165502 }
+    }
+    <Vertex> 2669 {
+      -7.28152084351 -46.8105506897 3.64229416847
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.219153 -0.975294 0.027834 }
+        <Binormal> { 0.049038 0.036709 0.900162 }
+      }
+      <Normal> { 0.784448 0.616443 -0.067873 }
+    }
+    <Vertex> 2670 {
+      -7.12337827682 -46.8284339905 5.819024086
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.172556 -0.727841 0.663681 }
+        <Binormal> { -0.460305 0.493173 0.660528 }
+      }
+      <Normal> { 0.751213 0.659291 0.031251 }
+    }
+    <Vertex> 2671 {
+      -6.32068920135 -48.8457641602 6.068151474
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.432506 -0.900031 0.053695 }
+        <Binormal> { 0.038994 0.078168 0.996160 }
+      }
+      <Normal> { 0.901944 0.426313 -0.068758 }
+    }
+    <Vertex> 2672 {
+      -6.83783054352 -48.7851028442 3.69864606857
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.351085 -0.935648 0.036085 }
+        <Binormal> { 0.142428 0.091453 0.985561 }
+      }
+      <Normal> { 0.924161 0.344279 -0.165502 }
+    }
+    <Vertex> 2673 {
+      -6.32068920135 -48.8457641602 6.068151474
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.432506 -0.900031 0.053695 }
+        <Binormal> { 0.038994 0.078168 0.996160 }
+      }
+      <Normal> { 0.901944 0.426313 -0.068758 }
+    }
+    <Vertex> 2674 {
+      -5.24020338058 -50.7472610474 6.05281829834
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.469688 -0.882821 0.004561 }
+        <Binormal> { 0.059246 0.036188 0.903368 }
+      }
+      <Normal> { 0.598926 0.797601 -0.071230 }
+    }
+    <Vertex> 2675 {
+      -5.8965716362 -50.6836547852 3.73361134529
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.444124 -0.895814 0.016498 }
+        <Binormal> { 0.096944 0.064602 0.898041 }
+      }
+      <Normal> { 0.617176 0.777184 -0.122532 }
+    }
+    <Vertex> 2676 {
+      -6.83783054352 -48.7851028442 3.69864606857
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.351085 -0.935648 0.036085 }
+        <Binormal> { 0.142428 0.091453 0.985561 }
+      }
+      <Normal> { 0.924161 0.344279 -0.165502 }
+    }
+    <Vertex> 2677 {
+      -5.8965716362 -50.6836547852 3.73361134529
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.444124 -0.895814 0.016498 }
+        <Binormal> { 0.096944 0.064602 0.898041 }
+      }
+      <Normal> { 0.617176 0.777184 -0.122532 }
+    }
+    <Vertex> 2678 {
+      -6.41803026199 -50.6478309631 1.18665266037
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.427652 -0.903770 0.017699 }
+        <Binormal> { 0.006792 0.020935 0.904890 }
+      }
+      <Normal> { 0.636402 0.771020 -0.022614 }
+    }
+    <Vertex> 2679 {
+      -7.27520275116 -48.7457008362 1.14718580246
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.299385 -0.953126 0.043820 }
+        <Binormal> { -0.016065 0.040882 0.998989 }
+      }
+      <Normal> { 0.955901 0.293588 0.003357 }
+    }
+    <Vertex> 2680 {
+      -7.00479793549 -48.7851028442 -1.17924892902
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.198945 -0.978349 0.057043 }
+        <Binormal> { -0.413086 -0.030980 0.909356 }
+      }
+      <Normal> { 0.880398 0.241371 0.408155 }
+    }
+    <Vertex> 2681 {
+      -5.63585758209 -48.844203949 -2.94354152679
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.132375 -0.985541 0.105767 }
+        <Binormal> { -0.822425 -0.049707 0.566151 }
+      }
+      <Normal> { 0.549486 0.185919 0.814539 }
+    }
+    <Vertex> 2682 {
+      -5.62817716599 -46.1204185486 -2.99657797813
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.007071 -0.998782 0.048831 }
+        <Binormal> { -0.842160 0.032267 0.538043 }
+      }
+      <Normal> { 0.538865 0.023530 0.842036 }
+    }
+    <Vertex> 2683 {
+      -6.97407722473 -46.0848350525 -1.3913949728
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.011341 -0.996864 0.078318 }
+        <Binormal> { -0.511447 0.072944 0.854397 }
+      }
+      <Normal> { 0.858058 0.085574 0.506333 }
+    }
+    <Vertex> 2684 {
+      -7.00479793549 -48.7851028442 -1.17924892902
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.198945 -0.978349 0.057043 }
+        <Binormal> { -0.413086 -0.030980 0.909356 }
+      }
+      <Normal> { 0.880398 0.241371 0.408155 }
+    }
+    <Vertex> 2685 {
+      -6.97407722473 -46.0848350525 -1.3913949728
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.011341 -0.996864 0.078318 }
+        <Binormal> { -0.511447 0.072944 0.854397 }
+      }
+      <Normal> { 0.858058 0.085574 0.506333 }
+    }
+    <Vertex> 2686 {
+      -7.83629846573 -46.1326217651 0.979065775871
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.373370 -0.766463 -0.522618 }
+        <Binormal> { 0.050810 -0.516780 0.794201 }
+      }
+      <Normal> { 0.761010 0.564898 0.318888 }
+    }
+    <Vertex> 2687 {
+      -7.27520275116 -48.7457008362 1.14718580246
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.299385 -0.953126 0.043820 }
+        <Binormal> { -0.016065 0.040882 0.998989 }
+      }
+      <Normal> { 0.955901 0.293588 0.003357 }
+    }
+    <Vertex> 2688 {
+      -7.00479793549 -48.7851028442 -1.17924892902
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.198945 -0.978349 0.057043 }
+        <Binormal> { -0.413086 -0.030980 0.909356 }
+      }
+      <Normal> { 0.880398 0.241371 0.408155 }
+    }
+    <Vertex> 2689 {
+      -7.27520275116 -48.7457008362 1.14718580246
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.299385 -0.953126 0.043820 }
+        <Binormal> { -0.016065 0.040882 0.998989 }
+      }
+      <Normal> { 0.955901 0.293588 0.003357 }
+    }
+    <Vertex> 2690 {
+      -6.41803026199 -50.6478309631 1.18665266037
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.411284 -0.911491 0.005398 }
+        <Binormal> { 0.016451 0.012736 0.897183 }
+      }
+      <Normal> { 0.636402 0.771020 -0.022614 }
+    }
+    <Vertex> 2691 {
+      -6.14702367783 -50.6836547852 -1.19620907307
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.411718 -0.911275 -0.008141 }
+        <Binormal> { -0.291475 -0.139291 0.850893 }
+      }
+      <Normal> { 0.605976 0.725455 0.326334 }
+    }
+    <Vertex> 2692 {
+      -7.00479793549 -48.7851028442 -1.17924892902
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.198945 -0.978349 0.057043 }
+        <Binormal> { -0.413086 -0.030980 0.909356 }
+      }
+      <Normal> { 0.880398 0.241371 0.408155 }
+    }
+    <Vertex> 2693 {
+      -6.14702367783 -50.6836547852 -1.19620907307
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.411718 -0.911275 -0.008141 }
+        <Binormal> { -0.291475 -0.139291 0.850893 }
+      }
+      <Normal> { 0.605976 0.725455 0.326334 }
+    }
+    <Vertex> 2694 {
+      -5.07577371597 -50.2330970764 -2.55521178246
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.393917 -0.913337 0.103176 }
+        <Binormal> { -0.691796 -0.225506 0.644991 }
+      }
+      <Normal> { 0.473861 0.538682 0.696585 }
+    }
+    <Vertex> 2695 {
+      -5.63585758209 -48.844203949 -2.94354152679
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.132375 -0.985541 0.105767 }
+        <Binormal> { -0.822425 -0.049707 0.566151 }
+      }
+      <Normal> { 0.549486 0.185919 0.814539 }
+    }
+    <Vertex> 2696 {
+      -2.77761793137 -48.8639030457 -3.80857586861
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.993541 -0.025172 -0.110644 }
+        <Binormal> { -0.006196 -0.985631 0.168593 }
+      }
+      <Normal> { 0.107456 0.166967 0.980071 }
+    }
+    <Vertex> 2697 {
+      -0.158378407359 -48.8639030457 -3.60632967949
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.994663 -0.058251 0.085165 }
+        <Binormal> { -0.070649 -0.851250 0.242893 }
+      }
+      <Normal> { -0.515610 0.274392 0.811670 }
+    }
+    <Vertex> 2698 {
+      -0.0735220164061 -46.1398277283 -3.62481999397
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.997187 0.021583 0.071775 }
+        <Binormal> { 0.015215 -0.899887 0.059224 }
+      }
+      <Normal> { -0.496414 0.048647 0.866695 }
+    }
+    <Vertex> 2699 {
+      -2.77761793137 -46.1322822571 -3.80857586861
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.990137 0.084191 -0.111986 }
+        <Binormal> { 0.084702 -0.996364 -0.000159 }
+      }
+      <Normal> { 0.105258 0.008789 0.994385 }
+    }
+    <Vertex> 2700 {
+      -2.77761793137 -48.8639030457 -3.80857586861
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.993541 -0.025172 -0.110644 }
+        <Binormal> { -0.006196 -0.985631 0.168593 }
+      }
+      <Normal> { 0.107456 0.166967 0.980071 }
+    }
+    <Vertex> 2701 {
+      -2.77761793137 -46.1322822571 -3.80857586861
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.990137 0.084191 -0.111986 }
+        <Binormal> { 0.084702 -0.996364 -0.000159 }
+      }
+      <Normal> { 0.105258 0.008789 0.994385 }
+    }
+    <Vertex> 2702 {
+      -5.62817716599 -46.1204185486 -2.99657797813
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.959696 0.021970 -0.280181 }
+        <Binormal> { 0.025092 -0.959078 0.010742 }
+      }
+      <Normal> { 0.538865 0.023530 0.842036 }
+    }
+    <Vertex> 2703 {
+      -5.63585758209 -48.844203949 -2.94354152679
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.957722 -0.043605 -0.284370 }
+        <Binormal> { 0.017352 -0.936360 0.202019 }
+      }
+      <Normal> { 0.549486 0.185919 0.814539 }
+    }
+    <Vertex> 2704 {
+      -2.77761793137 -48.8639030457 -3.80857586861
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.993541 -0.025172 -0.110644 }
+        <Binormal> { -0.006196 -0.985631 0.168593 }
+      }
+      <Normal> { 0.107456 0.166967 0.980071 }
+    }
+    <Vertex> 2705 {
+      -5.63585758209 -48.844203949 -2.94354152679
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.957722 -0.043605 -0.284370 }
+        <Binormal> { 0.017352 -0.936360 0.202019 }
+      }
+      <Normal> { 0.549486 0.185919 0.814539 }
+    }
+    <Vertex> 2706 {
+      -5.07577371597 -50.2330970764 -2.55521178246
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.947625 -0.167941 -0.271668 }
+        <Binormal> { 0.029357 -0.788834 0.590049 }
+      }
+      <Normal> { 0.473861 0.538682 0.696585 }
+    }
+    <Vertex> 2707 {
+      -2.94619321823 -50.7449073792 -3.25358939171
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.195029 -0.741418 -0.642078 }
+        <Binormal> { -0.118697 -0.201993 0.197191 }
+      }
+      <Normal> { 0.090243 0.668020 0.738609 }
+    }
+    <Vertex> 2708 {
+      -2.77761793137 -48.8639030457 -3.80857586861
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.993541 -0.025172 -0.110644 }
+        <Binormal> { -0.006196 -0.985631 0.168593 }
+      }
+      <Normal> { 0.107456 0.166967 0.980071 }
+    }
+    <Vertex> 2709 {
+      -2.94619321823 -50.7449073792 -3.25358939171
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.195029 -0.741418 -0.642078 }
+        <Binormal> { -0.118697 -0.201993 0.197191 }
+      }
+      <Normal> { 0.090243 0.668020 0.738609 }
+    }
+    <Vertex> 2710 {
+      -1.03521823883 -50.2603187561 -3.10762906075
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.993838 -0.009377 0.110443 }
+        <Binormal> { -0.079871 -0.672477 0.661630 }
+      }
+      <Normal> { -0.387951 0.669393 0.633534 }
+    }
+    <Vertex> 2711 {
+      -0.158378407359 -48.8639030457 -3.60632967949
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.994663 -0.058251 0.085165 }
+        <Binormal> { -0.070649 -0.851250 0.242893 }
+      }
+      <Normal> { -0.515610 0.274392 0.811670 }
+    }
+    <Vertex> 2712 {
+      0.493561476469 -48.8639030457 -2.16878032684
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.183438 -0.063680 0.980967 }
+        <Binormal> { -0.377340 -0.924313 0.010560 }
+      }
+      <Normal> { -0.895810 0.368542 0.248329 }
+    }
+    <Vertex> 2713 {
+      0.440038561821 -48.8779640198 0.148078873754
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { -0.058980 -0.077267 0.995264 }
+        <Binormal> { -0.473928 -0.865499 -0.095278 }
+      }
+      <Normal> { -0.876492 0.467177 0.116001 }
+    }
+    <Vertex> 2714 {
+      1.39152395725 -46.1994247437 -0.046333078295
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { -0.054194 -0.717593 0.694351 }
+        <Binormal> { -0.652886 -0.500478 -0.568188 }
+      }
+      <Normal> { -0.756310 0.469893 0.455153 }
+    }
+    <Vertex> 2715 {
+      0.832987964153 -46.1624603271 -2.2427418232
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.391170 0.109366 0.913797 }
+        <Binormal> { -0.101857 -0.980988 0.161009 }
+      }
+      <Normal> { -0.899686 0.160070 0.406110 }
+    }
+    <Vertex> 2716 {
+      0.493561476469 -48.8639030457 -2.16878032684
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.183438 -0.063680 0.980967 }
+        <Binormal> { -0.377340 -0.924313 0.010560 }
+      }
+      <Normal> { -0.895810 0.368542 0.248329 }
+    }
+    <Vertex> 2717 {
+      0.832987964153 -46.1624603271 -2.2427418232
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.391170 0.109366 0.913797 }
+        <Binormal> { -0.101857 -0.980988 0.161009 }
+      }
+      <Normal> { -0.899686 0.160070 0.406110 }
+    }
+    <Vertex> 2718 {
+      -0.0735220164061 -46.1398277283 -3.62481999397
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.502235 0.040539 0.863780 }
+        <Binormal> { -0.006885 -0.864077 0.044556 }
+      }
+      <Normal> { -0.496414 0.048647 0.866695 }
+    }
+    <Vertex> 2719 {
+      -0.158378407359 -48.8639030457 -3.60632967949
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.395011 -0.070253 0.915986 }
+        <Binormal> { -0.308361 -0.792911 0.072165 }
+      }
+      <Normal> { -0.515610 0.274392 0.811670 }
+    }
+    <Vertex> 2720 {
+      0.493561476469 -48.8639030457 -2.16878032684
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.183438 -0.063680 0.980967 }
+        <Binormal> { -0.377340 -0.924313 0.010560 }
+      }
+      <Normal> { -0.895810 0.368542 0.248329 }
+    }
+    <Vertex> 2721 {
+      -0.158378407359 -48.8639030457 -3.60632967949
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.395011 -0.070253 0.915986 }
+        <Binormal> { -0.308361 -0.792911 0.072165 }
+      }
+      <Normal> { -0.515610 0.274392 0.811670 }
+    }
+    <Vertex> 2722 {
+      -1.03521823883 -50.2603187561 -3.10762906075
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { -0.778894 -0.357411 0.515346 }
+        <Binormal> { -0.571401 0.293527 -0.660044 }
+      }
+      <Normal> { -0.387951 0.669393 0.633534 }
+    }
+    <Vertex> 2723 {
+      -0.658663630486 -50.7449073792 -2.02374267578
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { -0.099044 -0.344462 0.933561 }
+        <Binormal> { -0.829277 -0.487304 -0.267784 }
+      }
+      <Normal> { -0.541673 0.819819 0.185583 }
+    }
+    <Vertex> 2724 {
+      0.493561476469 -48.8639030457 -2.16878032684
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.183438 -0.063680 0.980967 }
+        <Binormal> { -0.377340 -0.924313 0.010560 }
+      }
+      <Normal> { -0.895810 0.368542 0.248329 }
+    }
+    <Vertex> 2725 {
+      -0.658663630486 -50.7449073792 -2.02374267578
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { -0.099044 -0.344462 0.933561 }
+        <Binormal> { -0.829277 -0.487304 -0.267784 }
+      }
+      <Normal> { -0.541673 0.819819 0.185583 }
+    }
+    <Vertex> 2726 {
+      -0.911751627922 -50.7432327271 0.326278179884
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { -0.128474 -0.109810 0.985615 }
+        <Binormal> { -0.828724 -0.533953 -0.167513 }
+      }
+      <Normal> { -0.544786 0.838221 0.023316 }
+    }
+    <Vertex> 2727 {
+      0.440038561821 -48.8779640198 0.148078873754
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { -0.058980 -0.077267 0.995264 }
+        <Binormal> { -0.473928 -0.865499 -0.095278 }
+      }
+      <Normal> { -0.876492 0.467177 0.116001 }
+    }
+    <Vertex> 2728 {
+      -3.45191907883 -51.3442077637 -1.5886297226
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { -0.991038 0.022605 0.131656 }
+        <Binormal> { -0.123920 0.212293 -0.969253 }
+      }
+      <Normal> { 0.039766 0.977111 0.208930 }
+    }
+    <Vertex> 2729 {
+      -6.14702367783 -50.6836547852 -1.19620907307
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { -0.964698 0.246400 0.092977 }
+        <Binormal> { 0.012958 0.371156 -0.849158 }
+      }
+      <Normal> { 0.605976 0.725455 0.326334 }
+    }
+    <Vertex> 2730 {
+      -6.41803026199 -50.6478309631 1.18665266037
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { -0.957962 0.238553 0.159377 }
+        <Binormal> { -0.128277 0.079764 -0.890424 }
+      }
+      <Normal> { 0.636402 0.771020 -0.022614 }
+    }
+    <Vertex> 2731 {
+      -3.74732756615 -51.3234329224 0.792742729187
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { -0.918815 0.050380 -0.391459 }
+        <Binormal> { 0.391264 -0.009848 -0.919623 }
+      }
+      <Normal> { 0.019929 0.999786 -0.002228 }
+    }
+    <Vertex> 2732 {
+      -3.45191907883 -51.3442077637 -1.5886297226
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { -0.991038 0.022605 0.131656 }
+        <Binormal> { -0.123920 0.212293 -0.969253 }
+      }
+      <Normal> { 0.039766 0.977111 0.208930 }
+    }
+    <Vertex> 2733 {
+      -3.74732756615 -51.3234329224 0.792742729187
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { -0.918815 0.050380 -0.391459 }
+        <Binormal> { 0.391264 -0.009848 -0.919623 }
+      }
+      <Normal> { 0.019929 0.999786 -0.002228 }
+    }
+    <Vertex> 2734 {
+      -0.911751627922 -50.7432327271 0.326278179884
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { -0.963377 -0.200072 0.178540 }
+        <Binormal> { -0.154321 -0.074804 -0.916519 }
+      }
+      <Normal> { -0.544786 0.838221 0.023316 }
+    }
+    <Vertex> 2735 {
+      -0.658663630486 -50.7449073792 -2.02374267578
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { -0.971776 -0.203715 0.118957 }
+        <Binormal> { -0.135329 0.115909 -0.907027 }
+      }
+      <Normal> { -0.541673 0.819819 0.185583 }
+    }
+    <Vertex> 2736 {
+      -3.45191907883 -51.3442077637 -1.5886297226
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { -0.991038 0.022605 0.131656 }
+        <Binormal> { -0.123920 0.212293 -0.969253 }
+      }
+      <Normal> { 0.039766 0.977111 0.208930 }
+    }
+    <Vertex> 2737 {
+      -0.658663630486 -50.7449073792 -2.02374267578
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { -0.971776 -0.203715 0.118957 }
+        <Binormal> { -0.135329 0.115909 -0.907027 }
+      }
+      <Normal> { -0.541673 0.819819 0.185583 }
+    }
+    <Vertex> 2738 {
+      -1.03521823883 -50.2603187561 -3.10762906075
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { -0.778894 -0.357411 0.515346 }
+        <Binormal> { -0.571401 0.293527 -0.660044 }
+      }
+      <Normal> { -0.387951 0.669393 0.633534 }
+    }
+    <Vertex> 2739 {
+      -2.94619321823 -50.7449073792 -3.25358939171
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.195029 -0.741418 -0.642078 }
+        <Binormal> { -0.118697 -0.201993 0.197191 }
+      }
+      <Normal> { 0.090243 0.668020 0.738609 }
+    }
+    <Vertex> 2740 {
+      -3.45191907883 -51.3442077637 -1.5886297226
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { -0.991038 0.022605 0.131656 }
+        <Binormal> { -0.123920 0.212293 -0.969253 }
+      }
+      <Normal> { 0.039766 0.977111 0.208930 }
+    }
+    <Vertex> 2741 {
+      -2.94619321823 -50.7449073792 -3.25358939171
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.195029 -0.741418 -0.642078 }
+        <Binormal> { -0.118697 -0.201993 0.197191 }
+      }
+      <Normal> { 0.090243 0.668020 0.738609 }
+    }
+    <Vertex> 2742 {
+      -5.07577371597 -50.2330970764 -2.55521178246
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { -0.953927 0.271669 0.127355 }
+        <Binormal> { 0.120637 0.724840 -0.642597 }
+      }
+      <Normal> { 0.473861 0.538682 0.696585 }
+    }
+    <Vertex> 2743 {
+      -6.14702367783 -50.6836547852 -1.19620907307
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { -0.964698 0.246400 0.092977 }
+        <Binormal> { 0.012958 0.371156 -0.849158 }
+      }
+      <Normal> { 0.605976 0.725455 0.326334 }
+    }
+    <Vertex> 2744 {
+      -3.2849509716 -51.3442077637 3.49696779251
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.996686 -0.016036 -0.079753 }
+        <Binormal> { 0.079660 -0.006276 0.996781 }
+      }
+      <Normal> { 0.019196 0.999786 0.004761 }
+    }
+    <Vertex> 2745 {
+      -0.504589498043 -50.7589683533 3.18356585503
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.978329 0.203017 -0.040692 }
+        <Binormal> { 0.055460 -0.080025 0.934140 }
+      }
+      <Normal> { -0.522233 0.846461 0.103519 }
+    }
+    <Vertex> 2746 {
+      -0.911751627922 -50.7432327271 0.326278179884
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.966599 0.201176 -0.158788 }
+        <Binormal> { 0.137791 0.063968 0.919822 }
+      }
+      <Normal> { -0.544786 0.838221 0.023316 }
+    }
+    <Vertex> 2747 {
+      -3.74732756615 -51.3234329224 0.792742729187
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { -0.918815 0.050380 -0.391459 }
+        <Binormal> { 0.391264 -0.009848 -0.919623 }
+      }
+      <Normal> { 0.019929 0.999786 -0.002228 }
+    }
+    <Vertex> 2748 {
+      -3.2849509716 -51.3442077637 3.49696779251
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.996686 -0.016036 -0.079753 }
+        <Binormal> { 0.079660 -0.006276 0.996781 }
+      }
+      <Normal> { 0.019196 0.999786 0.004761 }
+    }
+    <Vertex> 2749 {
+      -3.74732756615 -51.3234329224 0.792742729187
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { -0.918815 0.050380 -0.391459 }
+        <Binormal> { 0.391264 -0.009848 -0.919623 }
+      }
+      <Normal> { 0.019929 0.999786 -0.002228 }
+    }
+    <Vertex> 2750 {
+      -6.41803026199 -50.6478309631 1.18665266037
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.958326 -0.243440 -0.149491 }
+        <Binormal> { 0.120766 -0.073465 0.893814 }
+      }
+      <Normal> { 0.636402 0.771020 -0.022614 }
+    }
+    <Vertex> 2751 {
+      -5.8965716362 -50.6836547852 3.73361134529
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.969215 -0.243176 -0.038561 }
+        <Binormal> { 0.059766 0.094961 0.903341 }
+      }
+      <Normal> { 0.617176 0.777184 -0.122532 }
+    }
+    <Vertex> 2752 {
+      -3.2849509716 -51.3442077637 3.49696779251
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.996686 -0.016036 -0.079753 }
+        <Binormal> { 0.079660 -0.006276 0.996781 }
+      }
+      <Normal> { 0.019196 0.999786 0.004761 }
+    }
+    <Vertex> 2753 {
+      -5.8965716362 -50.6836547852 3.73361134529
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.969215 -0.243176 -0.038561 }
+        <Binormal> { 0.059766 0.094961 0.903341 }
+      }
+      <Normal> { 0.617176 0.777184 -0.122532 }
+    }
+    <Vertex> 2754 {
+      -5.24020338058 -50.7472610474 6.05281829834
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.970718 -0.237898 0.033331 }
+        <Binormal> { -0.009640 0.089107 0.916729 }
+      }
+      <Normal> { 0.598926 0.797601 -0.071230 }
+    }
+    <Vertex> 2755 {
+      -2.66425800323 -51.3829689026 5.89520645142
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.993143 -0.008101 0.116628 }
+        <Binormal> { -0.116719 -0.012128 0.993077 }
+      }
+      <Normal> { 0.010620 0.999847 0.013459 }
+    }
+    <Vertex> 2756 {
+      -3.2849509716 -51.3442077637 3.49696779251
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.996686 -0.016036 -0.079753 }
+        <Binormal> { 0.079660 -0.006276 0.996781 }
+      }
+      <Normal> { 0.019196 0.999786 0.004761 }
+    }
+    <Vertex> 2757 {
+      -2.66425800323 -51.3829689026 5.89520645142
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.993143 -0.008101 0.116628 }
+        <Binormal> { -0.116719 -0.012128 0.993077 }
+      }
+      <Normal> { 0.010620 0.999847 0.013459 }
+    }
+    <Vertex> 2758 {
+      0.0177282951772 -50.7756881714 5.67254209518
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.978533 0.205156 0.019608 }
+        <Binormal> { -0.003702 -0.071363 0.931408 }
+      }
+      <Normal> { -0.541642 0.838282 0.062075 }
+    }
+    <Vertex> 2759 {
+      -0.504589498043 -50.7589683533 3.18356585503
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.978329 0.203017 -0.040692 }
+        <Binormal> { 0.055460 -0.080025 0.934140 }
+      }
+      <Normal> { -0.522233 0.846461 0.103519 }
+    }
+    <Vertex> 2760 {
+      -32.2457199097 -46.794960022 6.21348571777
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.985270 0.059258 -0.160411 }
+        <Binormal> { 0.151132 0.137148 0.978940 }
+      }
+      <Normal> { -0.076876 0.988952 -0.126682 }
+    }
+    <Vertex> 2761 {
+      -28.439666748 -46.6000061035 5.65814161301
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.988253 0.050620 -0.144197 }
+        <Binormal> { 0.121738 0.309441 0.942962 }
+      }
+      <Normal> { -0.078219 0.950163 -0.301706 }
+    }
+    <Vertex> 2762 {
+      -29.0641727448 -46.7786598206 5.05120182037
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.990503 0.042016 -0.130914 }
+        <Binormal> { 0.121797 0.173216 0.977113 }
+      }
+      <Normal> { -0.043916 0.984619 -0.169073 }
+    }
+    <Vertex> 2763 {
+      -32.5823898315 -46.8943901062 5.4639005661
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.990107 0.034649 -0.135969 }
+        <Binormal> { 0.132740 0.082682 0.987669 }
+      }
+      <Normal> { -0.045625 0.995941 -0.077242 }
+    }
+    <Vertex> 2764 {
+      -32.2457199097 -46.794960022 6.21348571777
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.985270 0.059258 -0.160411 }
+        <Binormal> { 0.151132 0.137148 0.978940 }
+      }
+      <Normal> { -0.076876 0.988952 -0.126682 }
+    }
+    <Vertex> 2765 {
+      -32.5823898315 -46.8943901062 5.4639005661
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.990107 0.034649 -0.135969 }
+        <Binormal> { 0.132740 0.082682 0.987669 }
+      }
+      <Normal> { -0.045625 0.995941 -0.077242 }
+    }
+    <Vertex> 2766 {
+      -35.836479187 -47.0156555176 5.98122358322
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.985681 0.049244 -0.161269 }
+        <Binormal> { 0.159169 0.043733 0.986204 }
+      }
+      <Normal> { -0.043611 0.998352 -0.037233 }
+    }
+    <Vertex> 2767 {
+      -35.836479187 -47.0156555176 6.81605768204
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.984403 0.060503 -0.165195 }
+        <Binormal> { 0.161833 0.056783 0.985169 }
+      }
+      <Normal> { -0.068758 0.996551 -0.046144 }
+    }
+    <Vertex> 2768 {
+      -32.2457199097 -46.794960022 6.21348571777
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.985270 0.059258 -0.160411 }
+        <Binormal> { 0.151132 0.137148 0.978940 }
+      }
+      <Normal> { -0.076876 0.988952 -0.126682 }
+    }
+    <Vertex> 2769 {
+      -35.836479187 -47.0156555176 6.81605768204
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.984403 0.060503 -0.165195 }
+        <Binormal> { 0.161833 0.056783 0.985169 }
+      }
+      <Normal> { -0.068758 0.996551 -0.046144 }
+    }
+    <Vertex> 2770 {
+      -35.836479187 -47.0156555176 7.77505731583
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.974511 0.068781 -0.213536 }
+        <Binormal> { 0.210770 0.045166 0.976432 }
+      }
+      <Normal> { -0.086306 0.995880 -0.027436 }
+    }
+    <Vertex> 2771 {
+      -31.5272483826 -46.6787719727 6.64657020569
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.978213 0.084877 -0.189461 }
+        <Binormal> { 0.176554 0.139917 0.974258 }
+      }
+      <Normal> { -0.102542 0.987060 -0.123173 }
+    }
+    <Vertex> 2772 {
+      -32.2457199097 -46.794960022 6.21348571777
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.985270 0.059258 -0.160411 }
+        <Binormal> { 0.151132 0.137148 0.978940 }
+      }
+      <Normal> { -0.076876 0.988952 -0.126682 }
+    }
+    <Vertex> 2773 {
+      -31.5272483826 -46.6787719727 6.64657020569
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.978213 0.084877 -0.189461 }
+        <Binormal> { 0.176554 0.139917 0.974258 }
+      }
+      <Normal> { -0.102542 0.987060 -0.123173 }
+    }
+    <Vertex> 2774 {
+      -27.243730545 -46.2700843811 6.11081171036
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.988328 0.073749 -0.133303 }
+        <Binormal> { 0.081276 0.484350 0.870551 }
+      }
+      <Normal> { -0.157964 0.869045 -0.468764 }
+    }
+    <Vertex> 2775 {
+      -28.439666748 -46.6000061035 5.65814161301
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.988253 0.050620 -0.144197 }
+        <Binormal> { 0.121738 0.309441 0.942962 }
+      }
+      <Normal> { -0.078219 0.950163 -0.301706 }
+    }
+    <Vertex> 2776 {
+      -15.6160821915 -43.0216407776 4.97855806351
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999258 0.034794 0.016494 }
+        <Binormal> { -0.015436 -0.030437 0.999371 }
+      }
+      <Normal> { -0.042665 0.998627 0.029756 }
+    }
+    <Vertex> 2777 {
+      -12.869436264 -43.2817878723 4.98730802536
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.995540 -0.094292 0.003171 }
+        <Binormal> { 0.002752 0.060457 0.933659 }
+      }
+      <Normal> { 0.439589 0.896207 -0.059328 }
+    }
+    <Vertex> 2778 {
+      -13.0206918716 -43.8855476379 4.52873849869
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.996299 -0.085955 0.000545 }
+        <Binormal> { 0.068474 0.797415 0.588504 }
+      }
+      <Normal> { 0.164892 0.576464 -0.800287 }
+    }
+    <Vertex> 2779 {
+      -15.4543781281 -43.698764801 4.53465223312
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.999426 0.033755 -0.002969 }
+        <Binormal> { -0.026635 0.836714 0.546900 }
+      }
+      <Normal> { -0.014069 0.546739 -0.837153 }
+    }
+    <Vertex> 2780 {
+      -15.6160821915 -43.0216407776 4.97855806351
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999258 0.034794 0.016494 }
+        <Binormal> { -0.015436 -0.030437 0.999371 }
+      }
+      <Normal> { -0.042665 0.998627 0.029756 }
+    }
+    <Vertex> 2781 {
+      -15.4543781281 -43.698764801 4.53465223312
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.999426 0.033755 -0.002969 }
+        <Binormal> { -0.026635 0.836714 0.546900 }
+      }
+      <Normal> { -0.014069 0.546739 -0.837153 }
+    }
+    <Vertex> 2782 {
+      -17.9432296753 -44.0518035889 4.54336023331
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.988192 0.152499 0.014882 }
+        <Binormal> { -0.137388 0.841553 0.499248 }
+      }
+      <Normal> { -0.215430 0.471969 -0.854854 }
+    }
+    <Vertex> 2783 {
+      -18.4063129425 -43.4832763672 4.89034605026
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.986109 0.163149 0.031175 }
+        <Binormal> { -0.139642 0.718962 0.654514 }
+      }
+      <Normal> { -0.269234 0.619190 -0.737602 }
+    }
+    <Vertex> 2784 {
+      -15.6160821915 -43.0216407776 4.97855806351
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999258 0.034794 0.016494 }
+        <Binormal> { -0.015436 -0.030437 0.999371 }
+      }
+      <Normal> { -0.042665 0.998627 0.029756 }
+    }
+    <Vertex> 2785 {
+      -18.4063129425 -43.4832763672 4.89034605026
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.986109 0.163149 0.031175 }
+        <Binormal> { -0.139642 0.718962 0.654514 }
+      }
+      <Normal> { -0.269234 0.619190 -0.737602 }
+    }
+    <Vertex> 2786 {
+      -18.7911338806 -43.6828460693 4.95490074158
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.988102 0.148871 0.038633 }
+        <Binormal> { 0.122699 -0.910909 0.371926 }
+      }
+      <Normal> { -0.218696 0.343455 0.913327 }
+    }
+    <Vertex> 2787 {
+      -15.7758388519 -43.2697982788 5.0936756134
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.998995 0.032749 0.030587 }
+        <Binormal> { 0.024435 -0.970239 0.240766 }
+      }
+      <Normal> { -0.032685 0.239937 0.970214 }
+    }
+    <Vertex> 2788 {
+      -15.6160821915 -43.0216407776 4.97855806351
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.999258 0.034794 0.016494 }
+        <Binormal> { -0.015436 -0.030437 0.999371 }
+      }
+      <Normal> { -0.042665 0.998627 0.029756 }
+    }
+    <Vertex> 2789 {
+      -15.7758388519 -43.2697982788 5.0936756134
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.998995 0.032749 0.030587 }
+        <Binormal> { 0.024435 -0.970239 0.240766 }
+      }
+      <Normal> { -0.032685 0.239937 0.970214 }
+    }
+    <Vertex> 2790 {
+      -12.785610199 -43.4859733582 5.13877391815
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.996527 -0.082740 0.009354 }
+        <Binormal> { -0.080047 -0.931448 0.288816 }
+      }
+      <Normal> { 0.220771 0.271493 0.936766 }
+    }
+    <Vertex> 2791 {
+      -12.869436264 -43.2817878723 4.98730802536
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.995540 -0.094292 0.003171 }
+        <Binormal> { 0.002752 0.060457 0.933659 }
+      }
+      <Normal> { 0.439589 0.896207 -0.059328 }
+    }
+    <Vertex> 2792 {
+      10.2288036346 -46.3321914673 5.27788925171
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.965386 0.254546 0.056891 }
+        <Binormal> { 0.017798 -0.281891 0.959250 }
+      }
+      <Normal> { -0.258889 0.925382 0.276742 }
+    }
+    <Vertex> 2793 {
+      12.8063755035 -45.5362701416 5.32952833176
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.969897 0.090959 0.225891 }
+        <Binormal> { -0.197036 -0.251914 0.947439 }
+      }
+      <Normal> { -0.138066 0.963897 0.227577 }
+    }
+    <Vertex> 2794 {
+      13.6160917282 -45.1307907104 3.98471426964
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.958441 0.033214 0.283351 }
+        <Binormal> { -0.274063 -0.166382 0.946526 }
+      }
+      <Normal> { -0.044618 0.986023 0.160405 }
+    }
+    <Vertex> 2795 {
+      10.8328866959 -45.6497917175 3.73147511482
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.976330 0.163742 0.141313 }
+        <Binormal> { -0.096670 -0.254090 0.962311 }
+      }
+      <Normal> { -0.195166 0.952910 0.232002 }
+    }
+    <Vertex> 2796 {
+      10.2288036346 -46.3321914673 5.27788925171
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.965386 0.254546 0.056891 }
+        <Binormal> { 0.017798 -0.281891 0.959250 }
+      }
+      <Normal> { -0.258889 0.925382 0.276742 }
+    }
+    <Vertex> 2797 {
+      10.8328866959 -45.6497917175 3.73147511482
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.976330 0.163742 0.141313 }
+        <Binormal> { -0.096670 -0.254090 0.962311 }
+      }
+      <Normal> { -0.195166 0.952910 0.232002 }
+    }
+    <Vertex> 2798 {
+      7.87486314774 -46.3629455566 3.91087985039
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.975623 0.214132 0.048023 }
+        <Binormal> { 0.017687 -0.293256 0.948285 }
+      }
+      <Normal> { -0.099948 0.950041 0.295663 }
+    }
+    <Vertex> 2799 {
+      7.57126808167 -47.1446342468 5.57672595978
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.969107 0.245889 0.019259 }
+        <Binormal> { 0.069061 -0.344370 0.921599 }
+      }
+      <Normal> { -0.073214 0.932401 0.353893 }
+    }
+    <Vertex> 2800 {
+      10.2288036346 -46.3321914673 5.27788925171
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.965386 0.254546 0.056891 }
+        <Binormal> { 0.017798 -0.281891 0.959250 }
+      }
+      <Normal> { -0.258889 0.925382 0.276742 }
+    }
+    <Vertex> 2801 {
+      7.57126808167 -47.1446342468 5.57672595978
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.969107 0.245889 0.019259 }
+        <Binormal> { 0.069061 -0.344370 0.921599 }
+      }
+      <Normal> { -0.073214 0.932401 0.353893 }
+    }
+    <Vertex> 2802 {
+      7.21483469009 -47.7228813171 6.93306970596
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.958740 0.279297 -0.053019 }
+        <Binormal> { 0.095142 -0.142596 0.969277 }
+      }
+      <Normal> { -0.094089 0.983581 0.153935 }
+    }
+    <Vertex> 2803 {
+      9.7493057251 -46.8299179077 6.38475418091
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.942612 0.328967 -0.057131 }
+        <Binormal> { 0.097676 -0.108068 0.989292 }
+      }
+      <Normal> { -0.325449 0.935942 0.134373 }
+    }
+    <Vertex> 2804 {
+      10.2288036346 -46.3321914673 5.27788925171
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.965386 0.254546 0.056891 }
+        <Binormal> { 0.017798 -0.281891 0.959250 }
+      }
+      <Normal> { -0.258889 0.925382 0.276742 }
+    }
+    <Vertex> 2805 {
+      9.7493057251 -46.8299179077 6.38475418091
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.942612 0.328967 -0.057131 }
+        <Binormal> { 0.097676 -0.108068 0.989292 }
+      }
+      <Normal> { -0.325449 0.935942 0.134373 }
+    }
+    <Vertex> 2806 {
+      12.2629232407 -45.8080177307 6.12763595581
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.977675 0.130678 0.164544 }
+        <Binormal> { -0.159171 -0.049771 0.985281 }
+      }
+      <Normal> { -0.172826 0.984680 0.021821 }
+    }
+    <Vertex> 2807 {
+      12.8063755035 -45.5362701416 5.32952833176
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.969897 0.090959 0.225891 }
+        <Binormal> { -0.197036 -0.251914 0.947439 }
+      }
+      <Normal> { -0.138066 0.963897 0.227577 }
+    }
+    <Vertex> 2808 {
+      15.4369297028 -45.6994018555 5.93446779251
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.922456 -0.160042 0.351372 }
+        <Binormal> { -0.369940 -0.105910 0.922963 }
+      }
+      <Normal> { 0.113285 0.980895 0.157964 }
+    }
+    <Vertex> 2809 {
+      18.0939750671 -46.3420524597 6.81605768204
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.905164 -0.215321 0.366491 }
+        <Binormal> { -0.374156 0.005336 0.927229 }
+      }
+      <Normal> { 0.214606 0.973327 0.080996 }
+    }
+    <Vertex> 2810 {
+      18.0939750671 -46.3420524597 5.66645431519
+      <UV>  {
+        -0.042124 0.762705
+        <Tangent> { 0.858963 -0.277904 0.430059 }
+        <Binormal> { -0.428254 0.069399 0.900204 }
+      }
+      <Normal> { 0.311869 0.947111 0.075350 }
+    }
+    <Vertex> 2811 {
+      15.963886261 -45.5114936829 4.7080578804
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.857809 -0.260135 0.443276 }
+        <Binormal> { -0.459579 -0.002627 0.887818 }
+      }
+      <Normal> { 0.209754 0.971374 0.111454 }
+    }
+    <Vertex> 2812 {
+      15.4369297028 -45.6994018555 5.93446779251
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.922456 -0.160042 0.351372 }
+        <Binormal> { -0.369940 -0.105910 0.922963 }
+      }
+      <Normal> { 0.113285 0.980895 0.157964 }
+    }
+    <Vertex> 2813 {
+      15.963886261 -45.5114936829 4.7080578804
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.857809 -0.260135 0.443276 }
+        <Binormal> { -0.459579 -0.002627 0.887818 }
+      }
+      <Normal> { 0.209754 0.971374 0.111454 }
+    }
+    <Vertex> 2814 {
+      13.6160917282 -45.1307907104 3.98471426964
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.958441 0.033214 0.283351 }
+        <Binormal> { -0.274063 -0.166382 0.946526 }
+      }
+      <Normal> { -0.044618 0.986023 0.160405 }
+    }
+    <Vertex> 2815 {
+      12.8063755035 -45.5362701416 5.32952833176
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.969897 0.090959 0.225891 }
+        <Binormal> { -0.197036 -0.251914 0.947439 }
+      }
+      <Normal> { -0.138066 0.963897 0.227577 }
+    }
+    <Vertex> 2816 {
+      15.4369297028 -45.6994018555 5.93446779251
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.922456 -0.160042 0.351372 }
+        <Binormal> { -0.369940 -0.105910 0.922963 }
+      }
+      <Normal> { 0.113285 0.980895 0.157964 }
+    }
+    <Vertex> 2817 {
+      12.8063755035 -45.5362701416 5.32952833176
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.969897 0.090959 0.225891 }
+        <Binormal> { -0.197036 -0.251914 0.947439 }
+      }
+      <Normal> { -0.138066 0.963897 0.227577 }
+    }
+    <Vertex> 2818 {
+      12.2629232407 -45.8080177307 6.12763595581
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.977675 0.130678 0.164544 }
+        <Binormal> { -0.159171 -0.049771 0.985281 }
+      }
+      <Normal> { -0.172826 0.984680 0.021821 }
+    }
+    <Vertex> 2819 {
+      15.125834465 -45.7836952209 6.63962650299
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.955842 -0.080469 0.282650 }
+        <Binormal> { -0.270664 0.133373 0.953281 }
+      }
+      <Normal> { 0.126957 0.986633 -0.101993 }
+    }
+    <Vertex> 2820 {
+      15.4369297028 -45.6994018555 5.93446779251
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.922456 -0.160042 0.351372 }
+        <Binormal> { -0.369940 -0.105910 0.922963 }
+      }
+      <Normal> { 0.113285 0.980895 0.157964 }
+    }
+    <Vertex> 2821 {
+      15.125834465 -45.7836952209 6.63962650299
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.955842 -0.080469 0.282650 }
+        <Binormal> { -0.270664 0.133373 0.953281 }
+      }
+      <Normal> { 0.126957 0.986633 -0.101993 }
+    }
+    <Vertex> 2822 {
+      18.1633930206 -46.2581520081 7.53617238998
+      <UV>  {
+        -0.073782 0.891829
+        <Tangent> { 0.922587 -0.182632 0.339823 }
+        <Binormal> { -0.302602 0.203651 0.930984 }
+      }
+      <Normal> { 0.226356 0.964293 -0.137364 }
+    }
+    <Vertex> 2823 {
+      18.0939750671 -46.3420524597 6.81605768204
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.905164 -0.215321 0.366491 }
+        <Binormal> { -0.374156 0.005336 0.927229 }
+      }
+      <Normal> { 0.214606 0.973327 0.080996 }
+    }
+    <Vertex> 2824 {
+      4.70082521439 -47.0310783386 6.02321386337
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.986053 0.020404 -0.165178 }
+        <Binormal> { 0.164701 -0.262112 0.950829 }
+      }
+      <Normal> { 0.015503 0.964599 0.263222 }
+    }
+    <Vertex> 2825 {
+      7.57126808167 -47.1446342468 5.57672595978
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.987364 -0.039061 -0.153581 }
+        <Binormal> { 0.129376 -0.338176 0.917760 }
+      }
+      <Normal> { -0.073214 0.932401 0.353893 }
+    }
+    <Vertex> 2826 {
+      7.87486314774 -46.3629455566 3.91087985039
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.984445 0.015120 -0.175040 }
+        <Binormal> { 0.170765 -0.273569 0.936775 }
+      }
+      <Normal> { -0.099948 0.950041 0.295663 }
+    }
+    <Vertex> 2827 {
+      5.00261640549 -46.564704895 4.4854722023
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.963978 0.143322 -0.224063 }
+        <Binormal> { 0.249977 -0.200461 0.947243 }
+      }
+      <Normal> { -0.095065 0.968505 0.230049 }
+    }
+    <Vertex> 2828 {
+      4.70082521439 -47.0310783386 6.02321386337
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.986053 0.020404 -0.165178 }
+        <Binormal> { 0.164701 -0.262112 0.950829 }
+      }
+      <Normal> { 0.015503 0.964599 0.263222 }
+    }
+    <Vertex> 2829 {
+      5.00261640549 -46.564704895 4.4854722023
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.963978 0.143322 -0.224063 }
+        <Binormal> { 0.249977 -0.200461 0.947243 }
+      }
+      <Normal> { -0.095065 0.968505 0.230049 }
+    }
+    <Vertex> 2830 {
+      2.69136691093 -47.1336174011 5.11570978165
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.963394 0.155777 -0.218187 }
+        <Binormal> { 0.196272 0.026687 0.885682 }
+      }
+      <Normal> { -0.548265 0.830683 0.096469 }
+    }
+    <Vertex> 2831 {
+      2.35582065582 -47.2150650024 6.44751358032
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.981102 0.076976 -0.177518 }
+        <Binormal> { 0.148485 0.140972 0.881770 }
+      }
+      <Normal> { -0.509751 0.858760 -0.051454 }
+    }
+    <Vertex> 2832 {
+      4.70082521439 -47.0310783386 6.02321386337
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.986053 0.020404 -0.165178 }
+        <Binormal> { 0.164701 -0.262112 0.950829 }
+      }
+      <Normal> { 0.015503 0.964599 0.263222 }
+    }
+    <Vertex> 2833 {
+      2.35582065582 -47.2150650024 6.44751358032
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.981102 0.076976 -0.177518 }
+        <Binormal> { 0.148485 0.140972 0.881770 }
+      }
+      <Normal> { -0.509751 0.858760 -0.051454 }
+    }
+    <Vertex> 2834 {
+      1.88778138161 -47.2446708679 7.49466085434
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.991361 0.014259 -0.130387 }
+        <Binormal> { 0.113618 0.135211 0.878645 }
+      }
+      <Normal> { -0.469893 0.879543 -0.074587 }
+    }
+    <Vertex> 2835 {
+      4.2893652916 -47.3603858948 7.294672966
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.990549 -0.088922 -0.104426 }
+        <Binormal> { 0.094958 -0.104247 0.989511 }
+      }
+      <Normal> { 0.067873 0.992859 0.098086 }
+    }
+    <Vertex> 2836 {
+      4.70082521439 -47.0310783386 6.02321386337
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.986053 0.020404 -0.165178 }
+        <Binormal> { 0.164701 -0.262112 0.950829 }
+      }
+      <Normal> { 0.015503 0.964599 0.263222 }
+    }
+    <Vertex> 2837 {
+      4.2893652916 -47.3603858948 7.294672966
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.990549 -0.088922 -0.104426 }
+        <Binormal> { 0.094958 -0.104247 0.989511 }
+      }
+      <Normal> { 0.067873 0.992859 0.098086 }
+    }
+    <Vertex> 2838 {
+      7.21483469009 -47.7228813171 6.93306970596
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.987159 -0.081081 -0.137634 }
+        <Binormal> { 0.122893 -0.139009 0.963322 }
+      }
+      <Normal> { -0.094089 0.983581 0.153935 }
+    }
+    <Vertex> 2839 {
+      7.57126808167 -47.1446342468 5.57672595978
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.987364 -0.039061 -0.153581 }
+        <Binormal> { 0.129376 -0.338176 0.917760 }
+      }
+      <Normal> { -0.073214 0.932401 0.353893 }
+    }
+    <Vertex> 2840 {
+      1.2746001482 -48.9201393127 6.6797914505
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.535249 0.838161 -0.104856 }
+        <Binormal> { -0.112905 0.194006 0.974436 }
+      }
+      <Normal> { -0.836360 0.510849 -0.198614 }
+    }
+    <Vertex> 2841 {
+      2.35582065582 -47.2150650024 6.44751358032
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.532016 0.838985 -0.114293 }
+        <Binormal> { 0.054981 0.085635 0.884548 }
+      }
+      <Normal> { -0.509751 0.858760 -0.051454 }
+    }
+    <Vertex> 2842 {
+      2.69136691093 -47.1336174011 5.11570978165
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.521636 0.530113 0.668488 }
+        <Binormal> { -0.504162 -0.416830 0.723957 }
+      }
+      <Normal> { -0.548265 0.830683 0.096469 }
+    }
+    <Vertex> 2843 {
+      1.41633689404 -48.948261261 5.46205568314
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.587321 0.800057 -0.122320 }
+        <Binormal> { 0.105027 0.074479 0.991435 }
+      }
+      <Normal> { -0.814478 0.578570 0.042817 }
+    }
+    <Vertex> 2844 {
+      1.2746001482 -48.9201393127 6.6797914505
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.535249 0.838161 -0.104856 }
+        <Binormal> { -0.112905 0.194006 0.974436 }
+      }
+      <Normal> { -0.836360 0.510849 -0.198614 }
+    }
+    <Vertex> 2845 {
+      1.41633689404 -48.948261261 5.46205568314
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.587321 0.800057 -0.122320 }
+        <Binormal> { 0.105027 0.074479 0.991435 }
+      }
+      <Normal> { -0.814478 0.578570 0.042817 }
+    }
+    <Vertex> 2846 {
+      0.0177282951772 -50.7756881714 5.67254209518
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.568259 0.816824 -0.099397 }
+        <Binormal> { 0.134027 0.018563 0.918788 }
+      }
+      <Normal> { -0.541642 0.838282 0.062075 }
+    }
+    <Vertex> 2847 {
+      0.110105976462 -50.7769508362 6.91763019562
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.528206 0.842235 -0.107882 }
+        <Binormal> { 0.021205 0.104424 0.919065 }
+      }
+      <Normal> { -0.584979 0.807215 -0.078219 }
+    }
+    <Vertex> 2848 {
+      1.2746001482 -48.9201393127 6.6797914505
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.535249 0.838161 -0.104856 }
+        <Binormal> { -0.112905 0.194006 0.974436 }
+      }
+      <Normal> { -0.836360 0.510849 -0.198614 }
+    }
+    <Vertex> 2849 {
+      0.110105976462 -50.7769508362 6.91763019562
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.528206 0.842235 -0.107882 }
+        <Binormal> { 0.021205 0.104424 0.919065 }
+      }
+      <Normal> { -0.584979 0.807215 -0.078219 }
+    }
+    <Vertex> 2850 {
+      -0.0748328492045 -50.7720985413 7.78572463989
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.496910 0.861198 -0.106859 }
+        <Binormal> { -0.033085 0.132490 0.913914 }
+      }
+      <Normal> { -0.611316 0.779717 -0.135166 }
+    }
+    <Vertex> 2851 {
+      0.924965977669 -48.8779640198 7.55813837051
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.484939 0.871586 -0.071918 }
+        <Binormal> { -0.138389 0.157633 0.977223 }
+      }
+      <Normal> { -0.847652 0.491653 -0.199347 }
+    }
+    <Vertex> 2852 {
+      1.2746001482 -48.9201393127 6.6797914505
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.535249 0.838161 -0.104856 }
+        <Binormal> { -0.112905 0.194006 0.974436 }
+      }
+      <Normal> { -0.836360 0.510849 -0.198614 }
+    }
+    <Vertex> 2853 {
+      0.924965977669 -48.8779640198 7.55813837051
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.484939 0.871586 -0.071918 }
+        <Binormal> { -0.138389 0.157633 0.977223 }
+      }
+      <Normal> { -0.847652 0.491653 -0.199347 }
+    }
+    <Vertex> 2854 {
+      1.88778138161 -47.2446708679 7.49466085434
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.520695 0.850412 -0.075340 }
+        <Binormal> { 0.002835 0.074239 0.857577 }
+      }
+      <Normal> { -0.469893 0.879543 -0.074587 }
+    }
+    <Vertex> 2855 {
+      2.35582065582 -47.2150650024 6.44751358032
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.532016 0.838985 -0.114293 }
+        <Binormal> { 0.054981 0.085635 0.884548 }
+      }
+      <Normal> { -0.509751 0.858760 -0.051454 }
+    }
+    <Vertex> 2856 {
+      -2.48471975327 -51.4161338806 7.35861587524
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.990983 -0.000552 -0.133984 }
+        <Binormal> { 0.133965 -0.012271 0.990892 }
+      }
+      <Normal> { -0.001862 0.999908 0.012635 }
+    }
+    <Vertex> 2857 {
+      0.110105976462 -50.7769508362 6.91763019562
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.962016 0.237333 -0.134898 }
+        <Binormal> { 0.090328 0.154160 0.915389 }
+      }
+      <Normal> { -0.584979 0.807215 -0.078219 }
+    }
+    <Vertex> 2858 {
+      0.0177282951772 -50.7756881714 5.67254209518
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.965210 0.227515 -0.128865 }
+        <Binormal> { 0.122148 0.009884 0.932350 }
+      }
+      <Normal> { -0.541642 0.838282 0.062075 }
+    }
+    <Vertex> 2859 {
+      -2.66425800323 -51.3829689026 5.89520645142
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.992489 -0.004265 -0.122257 }
+        <Binormal> { 0.122181 -0.014656 0.992383 }
+      }
+      <Normal> { 0.010620 0.999847 0.013459 }
+    }
+    <Vertex> 2860 {
+      -2.48471975327 -51.4161338806 7.35861587524
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.990983 -0.000552 -0.133984 }
+        <Binormal> { 0.133965 -0.012271 0.990892 }
+      }
+      <Normal> { -0.001862 0.999908 0.012635 }
+    }
+    <Vertex> 2861 {
+      -2.66425800323 -51.3829689026 5.89520645142
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.992489 -0.004265 -0.122257 }
+        <Binormal> { 0.122181 -0.014656 0.992383 }
+      }
+      <Normal> { 0.010620 0.999847 0.013459 }
+    }
+    <Vertex> 2862 {
+      -5.24020338058 -50.7472610474 6.05281829834
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.965842 -0.234661 -0.109923 }
+        <Binormal> { 0.104390 0.002961 0.910901 }
+      }
+      <Normal> { 0.598926 0.797601 -0.071230 }
+    }
+    <Vertex> 2863 {
+      -5.10648155212 -50.7948303223 7.75242185593
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.966513 -0.229765 -0.114286 }
+        <Binormal> { 0.084663 -0.101069 0.919184 }
+      }
+      <Normal> { 0.581347 0.812830 0.035829 }
+    }
+    <Vertex> 2864 {
+      -2.48471975327 -51.4161338806 7.35861587524
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.990983 -0.000552 -0.133984 }
+        <Binormal> { 0.133965 -0.012271 0.990892 }
+      }
+      <Normal> { -0.001862 0.999908 0.012635 }
+    }
+    <Vertex> 2865 {
+      -5.10648155212 -50.7948303223 7.75242185593
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.966513 -0.229765 -0.114286 }
+        <Binormal> { 0.084663 -0.101069 0.919184 }
+      }
+      <Normal> { 0.581347 0.812830 0.035829 }
+    }
+    <Vertex> 2866 {
+      -5.22015094757 -50.8244781494 9.15188980103
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.963866 -0.229157 -0.135829 }
+        <Binormal> { 0.097278 -0.136252 0.920176 }
+      }
+      <Normal> { 0.570421 0.819056 0.060976 }
+    }
+    <Vertex> 2867 {
+      -2.58736848831 -51.4389228821 8.47804546356
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.985222 0.008228 -0.171087 }
+        <Binormal> { 0.171058 0.003890 0.985240 }
+      }
+      <Normal> { -0.013245 0.999908 -0.001648 }
+    }
+    <Vertex> 2868 {
+      -2.48471975327 -51.4161338806 7.35861587524
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.990983 -0.000552 -0.133984 }
+        <Binormal> { 0.133965 -0.012271 0.990892 }
+      }
+      <Normal> { -0.001862 0.999908 0.012635 }
+    }
+    <Vertex> 2869 {
+      -2.58736848831 -51.4389228821 8.47804546356
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.985222 0.008228 -0.171087 }
+        <Binormal> { 0.171058 0.003890 0.985240 }
+      }
+      <Normal> { -0.013245 0.999908 -0.001648 }
+    }
+    <Vertex> 2870 {
+      -0.0748328492045 -50.7720985413 7.78572463989
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.957208 0.244647 -0.154598 }
+        <Binormal> { 0.087475 0.223891 0.895908 }
+      }
+      <Normal> { -0.611316 0.779717 -0.135166 }
+    }
+    <Vertex> 2871 {
+      0.110105976462 -50.7769508362 6.91763019562
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.962016 0.237333 -0.134898 }
+        <Binormal> { 0.090328 0.154160 0.915389 }
+      }
+      <Normal> { -0.584979 0.807215 -0.078219 }
+    }
+    <Vertex> 2872 {
+      -6.35178422928 -48.8701400757 7.84871864319
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.105943 0.004565 0.994362 }
+        <Binormal> { -0.501984 0.862913 -0.057445 }
+      }
+      <Normal> { 0.857723 0.505264 0.094638 }
+    }
+    <Vertex> 2873 {
+      -5.10648155212 -50.7948303223 7.75242185593
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.006468 -0.024908 0.999669 }
+        <Binormal> { -0.813453 0.580923 0.019738 }
+      }
+      <Normal> { 0.581347 0.812830 0.035829 }
+    }
+    <Vertex> 2874 {
+      -5.24020338058 -50.7472610474 6.05281829834
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.029470 -0.020659 0.999352 }
+        <Binormal> { -0.795613 0.600637 0.035879 }
+      }
+      <Normal> { 0.598926 0.797601 -0.071230 }
+    }
+    <Vertex> 2875 {
+      -6.32068920135 -48.8457641602 6.068151474
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.017459 -0.013687 0.999754 }
+        <Binormal> { -0.425267 0.900522 0.004901 }
+      }
+      <Normal> { 0.901944 0.426313 -0.068758 }
+    }
+    <Vertex> 2876 {
+      -6.35178422928 -48.8701400757 7.84871864319
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.105943 0.004565 0.994362 }
+        <Binormal> { -0.501984 0.862913 -0.057445 }
+      }
+      <Normal> { 0.857723 0.505264 0.094638 }
+    }
+    <Vertex> 2877 {
+      -6.32068920135 -48.8457641602 6.068151474
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.017459 -0.013687 0.999754 }
+        <Binormal> { -0.425267 0.900522 0.004901 }
+      }
+      <Normal> { 0.901944 0.426313 -0.068758 }
+    }
+    <Vertex> 2878 {
+      -7.12337827682 -46.8284339905 5.819024086
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.172556 -0.727841 0.663681 }
+        <Binormal> { -0.460305 0.493173 0.660528 }
+      }
+      <Normal> { 0.751213 0.659291 0.031251 }
+    }
+    <Vertex> 2879 {
+      -7.38470172882 -46.8359718323 7.40207386017
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.278129 0.064673 0.958364 }
+        <Binormal> { -0.709830 0.658197 -0.250418 }
+      }
+      <Normal> { 0.643544 0.750725 0.149022 }
+    }
+    <Vertex> 2880 {
+      -6.35178422928 -48.8701400757 7.84871864319
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.105943 0.004565 0.994362 }
+        <Binormal> { -0.501984 0.862913 -0.057445 }
+      }
+      <Normal> { 0.857723 0.505264 0.094638 }
+    }
+    <Vertex> 2881 {
+      -7.38470172882 -46.8359718323 7.40207386017
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.278129 0.064673 0.958364 }
+        <Binormal> { -0.709830 0.658197 -0.250418 }
+      }
+      <Normal> { 0.643544 0.750725 0.149022 }
+    }
+    <Vertex> 2882 {
+      -7.951379776 -46.6358985901 8.6721162796
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.277692 0.068203 0.958246 }
+        <Binormal> { -0.822699 0.493711 -0.273551 }
+      }
+      <Normal> { 0.472976 0.868923 0.145787 }
+    }
+    <Vertex> 2883 {
+      -6.58069419861 -48.8748130798 9.32404899597
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.153323 -0.003130 0.988171 }
+        <Binormal> { -0.534970 0.840360 -0.080343 }
+      }
+      <Normal> { 0.835200 0.541063 0.098086 }
+    }
+    <Vertex> 2884 {
+      -6.35178422928 -48.8701400757 7.84871864319
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.105943 0.004565 0.994362 }
+        <Binormal> { -0.501984 0.862913 -0.057445 }
+      }
+      <Normal> { 0.857723 0.505264 0.094638 }
+    }
+    <Vertex> 2885 {
+      -6.58069419861 -48.8748130798 9.32404899597
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.153323 -0.003130 0.988171 }
+        <Binormal> { -0.534970 0.840360 -0.080343 }
+      }
+      <Normal> { 0.835200 0.541063 0.098086 }
+    }
+    <Vertex> 2886 {
+      -5.22015094757 -50.8244781494 9.15188980103
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.118321 -0.011854 0.992905 }
+        <Binormal> { -0.813967 0.573589 -0.090150 }
+      }
+      <Normal> { 0.570421 0.819056 0.060976 }
+    }
+    <Vertex> 2887 {
+      -5.10648155212 -50.7948303223 7.75242185593
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.006468 -0.024908 0.999669 }
+        <Binormal> { -0.813453 0.580923 0.019738 }
+      }
+      <Normal> { 0.581347 0.812830 0.035829 }
+    }
+    <Vertex> 2888 {
+      -15.8238964081 -44.5834503174 5.04812335968
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.998967 0.030720 0.033489 }
+        <Binormal> { 0.028032 -0.996556 0.077981 }
+      }
+      <Normal> { -0.033601 0.077029 0.996460 }
+    }
+    <Vertex> 2889 {
+      -12.9054822922 -44.6285820007 5.08613395691
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.999796 -0.015461 0.013022 }
+        <Binormal> { -0.016893 -0.988443 0.123394 }
+      }
+      <Normal> { 0.075137 0.122257 0.989624 }
+    }
+    <Vertex> 2890 {
+      -12.785610199 -43.4859733582 5.13877391815
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.927850 -0.369078 -0.053629 }
+        <Binormal> { -0.331180 -0.881018 0.333386 }
+      }
+      <Normal> { 0.220771 0.271493 0.936766 }
+    }
+    <Vertex> 2891 {
+      -15.7758388519 -43.2697982788 5.0936756134
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.998995 0.032749 0.030587 }
+        <Binormal> { 0.024435 -0.970239 0.240766 }
+      }
+      <Normal> { -0.032685 0.239937 0.970214 }
+    }
+    <Vertex> 2892 {
+      -15.8238964081 -44.5834503174 5.04812335968
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.998967 0.030720 0.033489 }
+        <Binormal> { 0.028032 -0.996556 0.077981 }
+      }
+      <Normal> { -0.033601 0.077029 0.996460 }
+    }
+    <Vertex> 2893 {
+      -15.7758388519 -43.2697982788 5.0936756134
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.998995 0.032749 0.030587 }
+        <Binormal> { 0.024435 -0.970239 0.240766 }
+      }
+      <Normal> { -0.032685 0.239937 0.970214 }
+    }
+    <Vertex> 2894 {
+      -18.7911338806 -43.6828460693 4.95490074158
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.884564 0.461768 0.065705 }
+        <Binormal> { 0.399179 -0.822266 0.404795 }
+      }
+      <Normal> { -0.218696 0.343455 0.913327 }
+    }
+    <Vertex> 2895 {
+      -18.7574539185 -44.7562904358 4.95203733444
+      <UV>  {
+        0.833333 0.458333
+        <Tangent> { 0.889602 0.454884 0.041083 }
+        <Binormal> { 0.445636 -0.884161 0.140000 }
+      }
+      <Normal> { -0.105441 0.103458 0.989013 }
+    }
+    <Vertex> 2896 {
+      -15.8238964081 -44.5834503174 5.04812335968
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.998967 0.030720 0.033489 }
+        <Binormal> { 0.028032 -0.996556 0.077981 }
+      }
+      <Normal> { -0.033601 0.077029 0.996460 }
+    }
+    <Vertex> 2897 {
+      -18.7574539185 -44.7562904358 4.95203733444
+      <UV>  {
+        0.833333 0.458333
+        <Tangent> { 0.889602 0.454884 0.041083 }
+        <Binormal> { 0.445636 -0.884161 0.140000 }
+      }
+      <Normal> { -0.105441 0.103458 0.989013 }
+    }
+    <Vertex> 2898 {
+      -19.4436321259 -46.0605812073 5.20842695236
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.945582 0.318611 -0.066046 }
+        <Binormal> { 0.115870 -0.149793 0.936310 }
+      }
+      <Normal> { -0.008850 0.987213 0.159032 }
+    }
+    <Vertex> 2899 {
+      -16.0988826752 -45.9154319763 5.16372203827
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.998177 -0.011763 0.059200 }
+        <Binormal> { -0.051042 -0.687762 0.723957 }
+      }
+      <Normal> { -0.017518 0.725486 0.687979 }
+    }
+    <Vertex> 2900 {
+      -15.8238964081 -44.5834503174 5.04812335968
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.998967 0.030720 0.033489 }
+        <Binormal> { 0.028032 -0.996556 0.077981 }
+      }
+      <Normal> { -0.033601 0.077029 0.996460 }
+    }
+    <Vertex> 2901 {
+      -16.0988826752 -45.9154319763 5.16372203827
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.998177 -0.011763 0.059200 }
+        <Binormal> { -0.051042 -0.687762 0.723957 }
+      }
+      <Normal> { -0.017518 0.725486 0.687979 }
+    }
+    <Vertex> 2902 {
+      -12.6800937653 -46.1402893066 5.60956001282
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.996200 -0.042442 0.076060 }
+        <Binormal> { -0.086972 -0.442487 0.892206 }
+      }
+      <Normal> { 0.028260 0.894406 0.446333 }
+    }
+    <Vertex> 2903 {
+      -12.9054822922 -44.6285820007 5.08613395691
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.999796 -0.015461 0.013022 }
+        <Binormal> { -0.016893 -0.988443 0.123394 }
+      }
+      <Normal> { 0.075137 0.122257 0.989624 }
+    }
+    <Vertex> 2904 {
+      10.2804718018 -46.6367454529 7.21623754501
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.927387 0.359016 -0.105170 }
+        <Binormal> { 0.083912 0.074331 0.993673 }
+      }
+      <Normal> { -0.366344 0.929655 -0.038606 }
+    }
+    <Vertex> 2905 {
+      12.8735876083 -45.5389289856 6.88317632675
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.968379 0.212263 0.131096 }
+        <Binormal> { -0.164862 0.150327 0.974399 }
+      }
+      <Normal> { -0.161046 0.970916 -0.177038 }
+    }
+    <Vertex> 2906 {
+      12.2629232407 -45.8080177307 6.12763595581
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.971796 0.202011 0.121671 }
+        <Binormal> { -0.115399 -0.042233 0.991821 }
+      }
+      <Normal> { -0.172826 0.984680 0.021821 }
+    }
+    <Vertex> 2907 {
+      9.7493057251 -46.8299179077 6.38475418091
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.932654 0.353100 -0.074009 }
+        <Binormal> { 0.116715 -0.101237 0.987826 }
+      }
+      <Normal> { -0.325449 0.935942 0.134373 }
+    }
+    <Vertex> 2908 {
+      10.2804718018 -46.6367454529 7.21623754501
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.927387 0.359016 -0.105170 }
+        <Binormal> { 0.083912 0.074331 0.993673 }
+      }
+      <Normal> { -0.366344 0.929655 -0.038606 }
+    }
+    <Vertex> 2909 {
+      9.7493057251 -46.8299179077 6.38475418091
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.932654 0.353100 -0.074009 }
+        <Binormal> { 0.116715 -0.101237 0.987826 }
+      }
+      <Normal> { -0.325449 0.935942 0.134373 }
+    }
+    <Vertex> 2910 {
+      7.21483469009 -47.7228813171 6.93306970596
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.930959 0.332336 -0.151225 }
+        <Binormal> { 0.199900 -0.129079 0.946942 }
+      }
+      <Normal> { -0.094089 0.983581 0.153935 }
+    }
+    <Vertex> 2911 {
+      7.57608127594 -47.6189346313 7.99008893967
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.922959 0.340377 -0.179694 }
+        <Binormal> { 0.141177 0.122748 0.957634 }
+      }
+      <Normal> { -0.146062 0.983703 -0.104556 }
+    }
+    <Vertex> 2912 {
+      10.2804718018 -46.6367454529 7.21623754501
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.927387 0.359016 -0.105170 }
+        <Binormal> { 0.083912 0.074331 0.993673 }
+      }
+      <Normal> { -0.366344 0.929655 -0.038606 }
+    }
+    <Vertex> 2913 {
+      7.57608127594 -47.6189346313 7.99008893967
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.922959 0.340377 -0.179694 }
+        <Binormal> { 0.141177 0.122748 0.957634 }
+      }
+      <Normal> { -0.146062 0.983703 -0.104556 }
+    }
+    <Vertex> 2914 {
+      7.88416528702 -47.3451957703 8.93755340576
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.921814 0.336283 -0.192801 }
+        <Binormal> { 0.166179 0.093601 0.957785 }
+      }
+      <Normal> { -0.141850 0.987274 -0.071871 }
+    }
+    <Vertex> 2915 {
+      10.8057422638 -46.3373565674 8.07565593719
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.929267 0.350611 -0.116342 }
+        <Binormal> { 0.093250 0.082096 0.992230 }
+      }
+      <Normal> { -0.353893 0.934233 -0.044038 }
+    }
+    <Vertex> 2916 {
+      10.2804718018 -46.6367454529 7.21623754501
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.927387 0.359016 -0.105170 }
+        <Binormal> { 0.083912 0.074331 0.993673 }
+      }
+      <Normal> { -0.366344 0.929655 -0.038606 }
+    }
+    <Vertex> 2917 {
+      10.8057422638 -46.3373565674 8.07565593719
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.929267 0.350611 -0.116342 }
+        <Binormal> { 0.093250 0.082096 0.992230 }
+      }
+      <Normal> { -0.353893 0.934233 -0.044038 }
+    }
+    <Vertex> 2918 {
+      13.5316972733 -45.2612876892 7.80175495148
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.965008 0.207324 0.160550 }
+        <Binormal> { -0.166039 0.009403 0.985863 }
+      }
+      <Normal> { -0.184118 0.982055 -0.040376 }
+    }
+    <Vertex> 2919 {
+      12.8735876083 -45.5389289856 6.88317632675
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.968379 0.212263 0.131096 }
+        <Binormal> { -0.164862 0.150327 0.974399 }
+      }
+      <Normal> { -0.161046 0.970916 -0.177038 }
+    }
+    <Vertex> 2920 {
+      15.5914325714 -45.5063819885 7.57914972305
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.924352 -0.060643 0.376691 }
+        <Binormal> { -0.333687 0.350156 0.875196 }
+      }
+      <Normal> { 0.181646 0.934904 -0.304788 }
+    }
+    <Vertex> 2921 {
+      18.3716411591 -46.0064659119 8.78964042664
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.877098 -0.140236 0.459383 }
+        <Binormal> { -0.380051 0.382133 0.842285 }
+      }
+      <Normal> { 0.288308 0.914212 -0.284677 }
+    }
+    <Vertex> 2922 {
+      18.1633930206 -46.2581520081 7.53617238998
+      <UV>  {
+        -0.042124 0.762705
+        <Tangent> { 0.910276 -0.131803 0.392462 }
+        <Binormal> { -0.360343 0.213875 0.907607 }
+      }
+      <Normal> { 0.226356 0.964293 -0.137364 }
+    }
+    <Vertex> 2923 {
+      15.125834465 -45.7836952209 6.63962650299
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.957554 -0.052324 0.283466 }
+        <Binormal> { -0.274340 0.133652 0.951397 }
+      }
+      <Normal> { 0.126957 0.986633 -0.101993 }
+    }
+    <Vertex> 2924 {
+      15.5914325714 -45.5063819885 7.57914972305
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.924352 -0.060643 0.376691 }
+        <Binormal> { -0.333687 0.350156 0.875196 }
+      }
+      <Normal> { 0.181646 0.934904 -0.304788 }
+    }
+    <Vertex> 2925 {
+      15.125834465 -45.7836952209 6.63962650299
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.957554 -0.052324 0.283466 }
+        <Binormal> { -0.274340 0.133652 0.951397 }
+      }
+      <Normal> { 0.126957 0.986633 -0.101993 }
+    }
+    <Vertex> 2926 {
+      12.2629232407 -45.8080177307 6.12763595581
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.971796 0.202011 0.121671 }
+        <Binormal> { -0.115399 -0.042233 0.991821 }
+      }
+      <Normal> { -0.172826 0.984680 0.021821 }
+    }
+    <Vertex> 2927 {
+      12.8735876083 -45.5389289856 6.88317632675
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.968379 0.212263 0.131096 }
+        <Binormal> { -0.164862 0.150327 0.974399 }
+      }
+      <Normal> { -0.161046 0.970916 -0.177038 }
+    }
+    <Vertex> 2928 {
+      15.5914325714 -45.5063819885 7.57914972305
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.924352 -0.060643 0.376691 }
+        <Binormal> { -0.333687 0.350156 0.875196 }
+      }
+      <Normal> { 0.181646 0.934904 -0.304788 }
+    }
+    <Vertex> 2929 {
+      12.8735876083 -45.5389289856 6.88317632675
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.968379 0.212263 0.131096 }
+        <Binormal> { -0.164862 0.150327 0.974399 }
+      }
+      <Normal> { -0.161046 0.970916 -0.177038 }
+    }
+    <Vertex> 2930 {
+      13.5316972733 -45.2612876892 7.80175495148
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.965008 0.207324 0.160550 }
+        <Binormal> { -0.166039 0.009403 0.985863 }
+      }
+      <Normal> { -0.184118 0.982055 -0.040376 }
+    }
+    <Vertex> 2931 {
+      16.0683994293 -45.2562675476 8.64517688751
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.884818 -0.071737 0.460381 }
+        <Binormal> { -0.450584 0.119721 0.884644 }
+      }
+      <Normal> { 0.116520 0.990356 -0.074679 }
+    }
+    <Vertex> 2932 {
+      15.5914325714 -45.5063819885 7.57914972305
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.924352 -0.060643 0.376691 }
+        <Binormal> { -0.333687 0.350156 0.875196 }
+      }
+      <Normal> { 0.181646 0.934904 -0.304788 }
+    }
+    <Vertex> 2933 {
+      16.0683994293 -45.2562675476 8.64517688751
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.884818 -0.071737 0.460381 }
+        <Binormal> { -0.450584 0.119721 0.884644 }
+      }
+      <Normal> { 0.116520 0.990356 -0.074679 }
+    }
+    <Vertex> 2934 {
+      18.5104732513 -45.7867698669 10.0472612381
+      <UV>  {
+        -0.073782 0.891829
+        <Tangent> { 0.855498 -0.148891 0.495938 }
+        <Binormal> { -0.471288 0.172759 0.864843 }
+      }
+      <Normal> { 0.221107 0.972442 -0.073763 }
+    }
+    <Vertex> 2935 {
+      18.3716411591 -46.0064659119 8.78964042664
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.877098 -0.140236 0.459383 }
+        <Binormal> { -0.380051 0.382133 0.842285 }
+      }
+      <Normal> { 0.288308 0.914212 -0.284677 }
+    }
+    <Vertex> 2936 {
+      4.5244178772 -47.3046188354 8.61648464203
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.981111 -0.064393 -0.182414 }
+        <Binormal> { 0.187778 0.090597 0.977977 }
+      }
+      <Normal> { 0.041078 0.994110 -0.099979 }
+    }
+    <Vertex> 2937 {
+      7.57608127594 -47.6189346313 7.99008893967
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.974628 -0.100385 -0.200056 }
+        <Binormal> { 0.207291 0.131124 0.944083 }
+      }
+      <Normal> { -0.146062 0.983703 -0.104556 }
+    }
+    <Vertex> 2938 {
+      7.21483469009 -47.7228813171 6.93306970596
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.980512 -0.111027 -0.162075 }
+        <Binormal> { 0.142323 -0.135686 0.953967 }
+      }
+      <Normal> { -0.094089 0.983581 0.153935 }
+    }
+    <Vertex> 2939 {
+      4.2893652916 -47.3603858948 7.294672966
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.990549 -0.088922 -0.104426 }
+        <Binormal> { 0.094958 -0.104247 0.989511 }
+      }
+      <Normal> { 0.067873 0.992859 0.098086 }
+    }
+    <Vertex> 2940 {
+      4.5244178772 -47.3046188354 8.61648464203
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.981111 -0.064393 -0.182414 }
+        <Binormal> { 0.187778 0.090597 0.977977 }
+      }
+      <Normal> { 0.041078 0.994110 -0.099979 }
+    }
+    <Vertex> 2941 {
+      4.2893652916 -47.3603858948 7.294672966
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.990549 -0.088922 -0.104426 }
+        <Binormal> { 0.094958 -0.104247 0.989511 }
+      }
+      <Normal> { 0.067873 0.992859 0.098086 }
+    }
+    <Vertex> 2942 {
+      1.88778138161 -47.2446708679 7.49466085434
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.992454 -0.041525 -0.115375 }
+        <Binormal> { 0.104575 0.128238 0.853394 }
+      }
+      <Normal> { -0.469893 0.879543 -0.074587 }
+    }
+    <Vertex> 2943 {
+      1.97434282303 -47.2131538391 8.99213886261
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.988701 -0.035462 -0.145647 }
+        <Binormal> { 0.131103 0.094399 0.866988 }
+      }
+      <Normal> { -0.449049 0.893002 -0.029328 }
+    }
+    <Vertex> 2944 {
+      4.5244178772 -47.3046188354 8.61648464203
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.981111 -0.064393 -0.182414 }
+        <Binormal> { 0.187778 0.090597 0.977977 }
+      }
+      <Normal> { 0.041078 0.994110 -0.099979 }
+    }
+    <Vertex> 2945 {
+      1.97434282303 -47.2131538391 8.99213886261
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.988701 -0.035462 -0.145647 }
+        <Binormal> { 0.131103 0.094399 0.866988 }
+      }
+      <Normal> { -0.449049 0.893002 -0.029328 }
+    }
+    <Vertex> 2946 {
+      2.14553070068 -47.1733779907 10.5122842789
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.980626 -0.012073 -0.195515 }
+        <Binormal> { 0.175367 0.113297 0.872578 }
+      }
+      <Normal> { -0.444624 0.895291 -0.026887 }
+    }
+    <Vertex> 2947 {
+      4.76059961319 -47.1455039978 9.8581237793
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.963949 -0.028861 -0.264516 }
+        <Binormal> { 0.265411 0.034712 0.963423 }
+      }
+      <Normal> { 0.030702 0.998535 -0.044435 }
+    }
+    <Vertex> 2948 {
+      4.5244178772 -47.3046188354 8.61648464203
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.981111 -0.064393 -0.182414 }
+        <Binormal> { 0.187778 0.090597 0.977977 }
+      }
+      <Normal> { 0.041078 0.994110 -0.099979 }
+    }
+    <Vertex> 2949 {
+      4.76059961319 -47.1455039978 9.8581237793
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.963949 -0.028861 -0.264516 }
+        <Binormal> { 0.265411 0.034712 0.963423 }
+      }
+      <Normal> { 0.030702 0.998535 -0.044435 }
+    }
+    <Vertex> 2950 {
+      7.88416528702 -47.3451957703 8.93755340576
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.966879 -0.080480 -0.242214 }
+        <Binormal> { 0.244916 0.103849 0.943158 }
+      }
+      <Normal> { -0.141850 0.987274 -0.071871 }
+    }
+    <Vertex> 2951 {
+      7.57608127594 -47.6189346313 7.99008893967
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.974628 -0.100385 -0.200056 }
+        <Binormal> { 0.207291 0.131124 0.944083 }
+      }
+      <Normal> { -0.146062 0.983703 -0.104556 }
+    }
+    <Vertex> 2952 {
+      0.774720609188 -48.8639030457 9.01376724243
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.550335 0.833987 -0.039960 }
+        <Binormal> { -0.019925 0.060962 0.997904 }
+      }
+      <Normal> { -0.835017 0.547868 -0.050142 }
+    }
+    <Vertex> 2953 {
+      1.97434282303 -47.2131538391 8.99213886261
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.587843 0.808906 -0.010598 }
+        <Binormal> { -0.014259 0.022000 0.888183 }
+      }
+      <Normal> { -0.449049 0.893002 -0.029328 }
+    }
+    <Vertex> 2954 {
+      1.88778138161 -47.2446708679 7.49466085434
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.549822 0.835002 -0.021639 }
+        <Binormal> { -0.043248 0.051178 0.875954 }
+      }
+      <Normal> { -0.469893 0.879543 -0.074587 }
+    }
+    <Vertex> 2955 {
+      0.924965977669 -48.8779640198 7.55813837051
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.484939 0.871586 -0.071918 }
+        <Binormal> { -0.138389 0.157633 0.977223 }
+      }
+      <Normal> { -0.847652 0.491653 -0.199347 }
+    }
+    <Vertex> 2956 {
+      0.774720609188 -48.8639030457 9.01376724243
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.550335 0.833987 -0.039960 }
+        <Binormal> { -0.019925 0.060962 0.997904 }
+      }
+      <Normal> { -0.835017 0.547868 -0.050142 }
+    }
+    <Vertex> 2957 {
+      0.924965977669 -48.8779640198 7.55813837051
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.484939 0.871586 -0.071918 }
+        <Binormal> { -0.138389 0.157633 0.977223 }
+      }
+      <Normal> { -0.847652 0.491653 -0.199347 }
+    }
+    <Vertex> 2958 {
+      -0.0748328492045 -50.7720985413 7.78572463989
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.492277 0.866613 -0.081523 }
+        <Binormal> { -0.053572 0.116376 0.913611 }
+      }
+      <Normal> { -0.611316 0.779717 -0.135166 }
+    }
+    <Vertex> 2959 {
+      -0.384465664625 -50.7704811096 9.14371776581
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.518630 0.853020 -0.058141 }
+        <Binormal> { -0.020122 0.075486 0.928013 }
+      }
+      <Normal> { -0.607135 0.790765 -0.077486 }
+    }
+    <Vertex> 2960 {
+      0.774720609188 -48.8639030457 9.01376724243
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.550335 0.833987 -0.039960 }
+        <Binormal> { -0.019925 0.060962 0.997904 }
+      }
+      <Normal> { -0.835017 0.547868 -0.050142 }
+    }
+    <Vertex> 2961 {
+      -0.384465664625 -50.7704811096 9.14371776581
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.518630 0.853020 -0.058141 }
+        <Binormal> { -0.020122 0.075486 0.928013 }
+      }
+      <Normal> { -0.607135 0.790765 -0.077486 }
+    }
+    <Vertex> 2962 {
+      -0.570455491543 -50.7704811096 10.6003293991
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.544753 0.837901 -0.034131 }
+        <Binormal> { 0.033011 0.016640 0.935368 }
+      }
+      <Normal> { -0.592730 0.805353 0.006592 }
+    }
+    <Vertex> 2963 {
+      0.749444842339 -48.8639030457 10.5749530792
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.602460 0.797910 -0.019530 }
+        <Binormal> { 0.007602 0.018718 0.999240 }
+      }
+      <Normal> { -0.817225 0.576250 -0.004578 }
+    }
+    <Vertex> 2964 {
+      0.774720609188 -48.8639030457 9.01376724243
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.550335 0.833987 -0.039960 }
+        <Binormal> { -0.019925 0.060962 0.997904 }
+      }
+      <Normal> { -0.835017 0.547868 -0.050142 }
+    }
+    <Vertex> 2965 {
+      0.749444842339 -48.8639030457 10.5749530792
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.602460 0.797910 -0.019530 }
+        <Binormal> { 0.007602 0.018718 0.999240 }
+      }
+      <Normal> { -0.817225 0.576250 -0.004578 }
+    }
+    <Vertex> 2966 {
+      2.14553070068 -47.1733779907 10.5122842789
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.613368 0.789546 -0.019919 }
+        <Binormal> { -0.003395 0.025348 0.900194 }
+      }
+      <Normal> { -0.444624 0.895291 -0.026887 }
+    }
+    <Vertex> 2967 {
+      1.97434282303 -47.2131538391 8.99213886261
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.587843 0.808906 -0.010598 }
+        <Binormal> { -0.014259 0.022000 0.888183 }
+      }
+      <Normal> { -0.449049 0.893002 -0.029328 }
+    }
+    <Vertex> 2968 {
+      -2.81323337555 -51.4465179443 9.84433937073
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.969482 0.009426 -0.244979 }
+        <Binormal> { 0.244830 0.013927 0.969430 }
+      }
+      <Normal> { -0.016388 0.999786 -0.010224 }
+    }
+    <Vertex> 2969 {
+      -0.384465664625 -50.7704811096 9.14371776581
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.936564 0.262680 -0.232049 }
+        <Binormal> { 0.163142 0.213456 0.900085 }
+      }
+      <Normal> { -0.607135 0.790765 -0.077486 }
+    }
+    <Vertex> 2970 {
+      -0.0748328492045 -50.7720985413 7.78572463989
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.928850 0.251278 -0.272207 }
+        <Binormal> { 0.178280 0.291954 0.877851 }
+      }
+      <Normal> { -0.611316 0.779717 -0.135166 }
+    }
+    <Vertex> 2971 {
+      -2.58736848831 -51.4389228821 8.47804546356
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.954878 0.009896 -0.296833 }
+        <Binormal> { 0.296790 0.005505 0.954922 }
+      }
+      <Normal> { -0.013245 0.999908 -0.001648 }
+    }
+    <Vertex> 2972 {
+      -2.81323337555 -51.4465179443 9.84433937073
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.969482 0.009426 -0.244979 }
+        <Binormal> { 0.244830 0.013927 0.969430 }
+      }
+      <Normal> { -0.016388 0.999786 -0.010224 }
+    }
+    <Vertex> 2973 {
+      -2.58736848831 -51.4389228821 8.47804546356
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.954878 0.009896 -0.296833 }
+        <Binormal> { 0.296790 0.005505 0.954922 }
+      }
+      <Normal> { -0.013245 0.999908 -0.001648 }
+    }
+    <Vertex> 2974 {
+      -5.22015094757 -50.8244781494 9.15188980103
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.937714 -0.222595 -0.266728 }
+        <Binormal> { 0.204892 -0.209325 0.895013 }
+      }
+      <Normal> { 0.570421 0.819056 0.060976 }
+    }
+    <Vertex> 2975 {
+      -5.30595302582 -50.8343544006 10.5706920624
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.940791 -0.231312 -0.247806 }
+        <Binormal> { 0.199692 -0.154910 0.902725 }
+      }
+      <Normal> { 0.574725 0.818232 0.013276 }
+    }
+    <Vertex> 2976 {
+      -2.81323337555 -51.4465179443 9.84433937073
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.969482 0.009426 -0.244979 }
+        <Binormal> { 0.244830 0.013927 0.969430 }
+      }
+      <Normal> { -0.016388 0.999786 -0.010224 }
+    }
+    <Vertex> 2977 {
+      -5.30595302582 -50.8343544006 10.5706920624
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.940791 -0.231312 -0.247806 }
+        <Binormal> { 0.199692 -0.154910 0.902725 }
+      }
+      <Normal> { 0.574725 0.818232 0.013276 }
+    }
+    <Vertex> 2978 {
+      -5.31265878677 -50.8283691406 11.7584466934
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.948768 -0.240978 -0.204375 }
+        <Binormal> { 0.189322 -0.023255 0.906304 }
+      }
+      <Normal> { 0.580889 0.807703 -0.100620 }
+    }
+    <Vertex> 2979 {
+      -2.95696973801 -51.4465179443 11.1426115036
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.991780 0.012266 -0.127364 }
+        <Binormal> { 0.127253 0.009227 0.991807 }
+      }
+      <Normal> { -0.012085 0.999878 -0.007752 }
+    }
+    <Vertex> 2980 {
+      -2.81323337555 -51.4465179443 9.84433937073
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.969482 0.009426 -0.244979 }
+        <Binormal> { 0.244830 0.013927 0.969430 }
+      }
+      <Normal> { -0.016388 0.999786 -0.010224 }
+    }
+    <Vertex> 2981 {
+      -2.95696973801 -51.4465179443 11.1426115036
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.991780 0.012266 -0.127364 }
+        <Binormal> { 0.127253 0.009227 0.991807 }
+      }
+      <Normal> { -0.012085 0.999878 -0.007752 }
+    }
+    <Vertex> 2982 {
+      -0.570455491543 -50.7704811096 10.6003293991
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.946944 0.267989 -0.177423 }
+        <Binormal> { 0.144655 0.098922 0.921469 }
+      }
+      <Normal> { -0.592730 0.805353 0.006592 }
+    }
+    <Vertex> 2983 {
+      -0.384465664625 -50.7704811096 9.14371776581
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.936564 0.262680 -0.232049 }
+        <Binormal> { 0.163142 0.213456 0.900085 }
+      }
+      <Normal> { -0.607135 0.790765 -0.077486 }
+    }
+    <Vertex> 2984 {
+      -6.65699768066 -48.8763694763 10.777838707
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.023902 -0.011461 0.999649 }
+        <Binormal> { -0.533336 0.845545 0.022446 }
+      }
+      <Normal> { 0.845393 0.533738 -0.018769 }
+    }
+    <Vertex> 2985 {
+      -5.30595302582 -50.8343544006 10.5706920624
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.035468 -0.001492 0.999370 }
+        <Binormal> { -0.817736 0.574833 -0.028164 }
+      }
+      <Normal> { 0.574725 0.818232 0.013276 }
+    }
+    <Vertex> 2986 {
+      -5.22015094757 -50.8244781494 9.15188980103
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.056342 -0.003974 0.998404 }
+        <Binormal> { -0.817990 0.572946 -0.043880 }
+      }
+      <Normal> { 0.570421 0.819056 0.060976 }
+    }
+    <Vertex> 2987 {
+      -6.58069419861 -48.8748130798 9.32404899597
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.052414 -0.001069 0.998625 }
+        <Binormal> { -0.540423 0.839193 -0.027466 }
+      }
+      <Normal> { 0.835200 0.541063 0.098086 }
+    }
+    <Vertex> 2988 {
+      -6.65699768066 -48.8763694763 10.777838707
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.023902 -0.011461 0.999649 }
+        <Binormal> { -0.533336 0.845545 0.022446 }
+      }
+      <Normal> { 0.845393 0.533738 -0.018769 }
+    }
+    <Vertex> 2989 {
+      -6.58069419861 -48.8748130798 9.32404899597
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.052414 -0.001069 0.998625 }
+        <Binormal> { -0.540423 0.839193 -0.027466 }
+      }
+      <Normal> { 0.835200 0.541063 0.098086 }
+    }
+    <Vertex> 2990 {
+      -7.951379776 -46.6358985901 8.6721162796
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.008843 -0.078773 0.996853 }
+        <Binormal> { -0.877673 0.470198 0.044941 }
+      }
+      <Normal> { 0.472976 0.868923 0.145787 }
+    }
+    <Vertex> 2991 {
+      -7.84623765945 -46.8912353516 10.4692668915
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.084782 -0.051380 0.995074 }
+        <Binormal> { -0.773305 0.625683 0.098194 }
+      }
+      <Normal> { 0.625172 0.779321 -0.042360 }
+    }
+    <Vertex> 2992 {
+      -6.65699768066 -48.8763694763 10.777838707
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.023902 -0.011461 0.999649 }
+        <Binormal> { -0.533336 0.845545 0.022446 }
+      }
+      <Normal> { 0.845393 0.533738 -0.018769 }
+    }
+    <Vertex> 2993 {
+      -7.84623765945 -46.8912353516 10.4692668915
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.084782 -0.051380 0.995074 }
+        <Binormal> { -0.773305 0.625683 0.098194 }
+      }
+      <Normal> { 0.625172 0.779321 -0.042360 }
+    }
+    <Vertex> 2994 {
+      -7.67086648941 -46.805896759 11.964466095
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.106686 0.039893 0.993492 }
+        <Binormal> { -0.712706 0.674287 0.049458 }
+      }
+      <Normal> { 0.648000 0.705893 -0.285928 }
+    }
+    <Vertex> 2995 {
+      -6.54008340836 -48.8524131775 12.004483223
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.094864 0.019438 0.995300 }
+        <Binormal> { -0.494677 0.857599 0.030400 }
+      }
+      <Normal> { 0.839961 0.492569 -0.227546 }
+    }
+    <Vertex> 2996 {
+      -6.65699768066 -48.8763694763 10.777838707
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.023902 -0.011461 0.999649 }
+        <Binormal> { -0.533336 0.845545 0.022446 }
+      }
+      <Normal> { 0.845393 0.533738 -0.018769 }
+    }
+    <Vertex> 2997 {
+      -6.54008340836 -48.8524131775 12.004483223
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.094864 0.019438 0.995300 }
+        <Binormal> { -0.494677 0.857599 0.030400 }
+      }
+      <Normal> { 0.839961 0.492569 -0.227546 }
+    }
+    <Vertex> 2998 {
+      -5.31265878677 -50.8283691406 11.7584466934
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.045595 0.012387 0.998883 }
+        <Binormal> { -0.808047 0.584828 0.029632 }
+      }
+      <Normal> { 0.580889 0.807703 -0.100620 }
+    }
+    <Vertex> 2999 {
+      -5.30595302582 -50.8343544006 10.5706920624
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.035468 -0.001492 0.999370 }
+        <Binormal> { -0.817736 0.574833 -0.028164 }
+      }
+      <Normal> { 0.574725 0.818232 0.013276 }
+    }
+    <Vertex> 3000 {
+      -9.85354423523 -46.1976165771 9.64846515656
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.181829 0.981994 -0.050661 }
+    }
+    <Vertex> 3001 {
+      -7.84623765945 -46.8912353516 10.4692668915
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.881611 -0.304638 0.360497 }
+        <Binormal> { -0.268038 0.262717 0.877509 }
+      }
+      <Normal> { 0.625172 0.779321 -0.042360 }
+    }
+    <Vertex> 3002 {
+      -7.951379776 -46.6358985901 8.6721162796
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.785497 0.340909 0.516490 }
+        <Binormal> { -0.399095 0.358807 -0.843790 }
+      }
+      <Normal> { 0.472976 0.868923 0.145787 }
+    }
+    <Vertex> 3003 {
+      -10.0612516403 -46.2517166138 7.5200881958
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.999115 0.034240 0.023598 }
+        <Binormal> { -0.018764 0.135227 -0.990637 }
+      }
+      <Normal> { 0.037111 0.990204 0.134465 }
+    }
+    <Vertex> 3004 {
+      -9.85354423523 -46.1976165771 9.64846515656
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.181829 0.981994 -0.050661 }
+    }
+    <Vertex> 3005 {
+      -10.0612516403 -46.2517166138 7.5200881958
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.999115 0.034240 0.023598 }
+        <Binormal> { -0.018764 0.135227 -0.990637 }
+      }
+      <Normal> { 0.037111 0.990204 0.134465 }
+    }
+    <Vertex> 3006 {
+      -12.6800937653 -46.1402893066 5.60956001282
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.981634 0.109079 -0.156430 }
+        <Binormal> { 0.188602 0.433726 -0.881085 }
+      }
+      <Normal> { 0.028260 0.894406 0.446333 }
+    }
+    <Vertex> 3007 {
+      -12.2421474457 -46.1322441101 8.74668216705
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.935240 0.025596 -0.353087 }
+        <Binormal> { 0.350598 -0.070945 -0.933790 }
+      }
+      <Normal> { 0.043703 0.997253 -0.059358 }
+    }
+    <Vertex> 3008 {
+      -9.85354423523 -46.1976165771 9.64846515656
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.181829 0.981994 -0.050661 }
+    }
+    <Vertex> 3009 {
+      -12.2421474457 -46.1322441101 8.74668216705
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.935240 0.025596 -0.353087 }
+        <Binormal> { 0.350598 -0.070945 -0.933790 }
+      }
+      <Normal> { 0.043703 0.997253 -0.059358 }
+    }
+    <Vertex> 3010 {
+      -12.8457536697 -45.8217735291 11.4669027328
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.998558 0.040526 -0.034855 }
+        <Binormal> { 0.023004 -0.262794 -0.964578 }
+      }
+      <Normal> { 0.048250 0.963988 -0.261483 }
+    }
+    <Vertex> 3011 {
+      -9.73663043976 -45.9760322571 11.7221403122
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.240028 0.933012 -0.268014 }
+    }
+    <Vertex> 3012 {
+      -9.85354423523 -46.1976165771 9.64846515656
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.181829 0.981994 -0.050661 }
+    }
+    <Vertex> 3013 {
+      -9.73663043976 -45.9760322571 11.7221403122
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.240028 0.933012 -0.268014 }
+    }
+    <Vertex> 3014 {
+      -7.67086648941 -46.805896759 11.964466095
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.296221 0.579458 0.759227 }
+        <Binormal> { -0.701656 0.407304 -0.584622 }
+      }
+      <Normal> { 0.648000 0.705893 -0.285928 }
+    }
+    <Vertex> 3015 {
+      -7.84623765945 -46.8912353516 10.4692668915
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.881611 -0.304638 0.360497 }
+        <Binormal> { -0.268038 0.262717 0.877509 }
+      }
+      <Normal> { 0.625172 0.779321 -0.042360 }
+    }
+    <Vertex> 3016 {
+      -22.2436599731 -46.884262085 3.22135639191
+      <UV>  {
+        0.500000 0.333333
+        <Tangent> { 0.998777 0.048968 -0.006810 }
+        <Binormal> { 0.021971 -0.316230 0.948418 }
+      }
+      <Normal> { -0.046602 0.947295 0.316935 }
+    }
+    <Vertex> 3017 {
+      -24.1750183105 -46.8337936401 3.65760850906
+      <UV>  {
+        0.708333 0.500000
+        <Tangent> { 0.998328 -0.006093 -0.057482 }
+        <Binormal> { 0.056602 -0.094559 0.993064 }
+      }
+      <Normal> { -0.028840 0.994903 0.096377 }
+    }
+    <Vertex> 3018 {
+      -21.0202560425 -46.4016113281 4.54919958115
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.981449 0.190146 -0.024534 }
+        <Binormal> { -0.079364 0.519229 0.849338 }
+      }
+      <Normal> { -0.224830 0.821833 -0.523423 }
+    }
+    <Vertex> 3019 {
+      -19.8736686707 -46.5422973633 3.62376356125
+      <UV>  {
+        0.291667 0.500000
+        <Tangent> { 0.939136 0.340559 0.045190 }
+        <Binormal> { -0.113471 0.183417 0.975887 }
+      }
+      <Normal> { -0.293313 0.932768 -0.209418 }
+    }
+    <Vertex> 3020 {
+      -22.2436599731 -46.884262085 3.22135639191
+      <UV>  {
+        0.500000 0.333333
+        <Tangent> { 0.998777 0.048968 -0.006810 }
+        <Binormal> { 0.021971 -0.316230 0.948418 }
+      }
+      <Normal> { -0.046602 0.947295 0.316935 }
+    }
+    <Vertex> 3021 {
+      -19.8736686707 -46.5422973633 3.62376356125
+      <UV>  {
+        0.291667 0.500000
+        <Tangent> { 0.939136 0.340559 0.045190 }
+        <Binormal> { -0.113471 0.183417 0.975887 }
+      }
+      <Normal> { -0.293313 0.932768 -0.209418 }
+    }
+    <Vertex> 3022 {
+      -18.8465080261 -46.1818351746 2.73309445381
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.955852 0.292223 0.030863 }
+        <Binormal> { 0.121395 -0.488013 0.860981 }
+      }
+      <Normal> { -0.194037 0.841426 0.504288 }
+    }
+    <Vertex> 3023 {
+      -23.2082595825 -46.142578125 2.60876917839
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.999573 0.028656 -0.005675 }
+        <Binormal> { 0.027543 -0.859778 0.509846 }
+      }
+      <Normal> { -0.014100 0.509659 0.860225 }
+    }
+    <Vertex> 3024 {
+      -22.2436599731 -46.884262085 3.22135639191
+      <UV>  {
+        0.500000 0.333333
+        <Tangent> { 0.998777 0.048968 -0.006810 }
+        <Binormal> { 0.021971 -0.316230 0.948418 }
+      }
+      <Normal> { -0.046602 0.947295 0.316935 }
+    }
+    <Vertex> 3025 {
+      -23.2082595825 -46.142578125 2.60876917839
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.999573 0.028656 -0.005675 }
+        <Binormal> { 0.027543 -0.859778 0.509846 }
+      }
+      <Normal> { -0.014100 0.509659 0.860225 }
+    }
+    <Vertex> 3026 {
+      -27.7901077271 -46.4382362366 2.78387331963
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.998479 0.013581 -0.053425 }
+        <Binormal> { 0.045695 -0.745870 0.664393 }
+      }
+      <Normal> { 0.019471 0.665670 0.745964 }
+    }
+    <Vertex> 3027 {
+      -24.1750183105 -46.8337936401 3.65760850906
+      <UV>  {
+        0.708333 0.500000
+        <Tangent> { 0.998328 -0.006093 -0.057482 }
+        <Binormal> { 0.056602 -0.094559 0.993064 }
+      }
+      <Normal> { -0.028840 0.994903 0.096377 }
+    }
+    <Vertex> 3028 {
+      -26.0610961914 -46.8137702942 4.14958047867
+      <UV>  {
+        0.833333 0.666667
+        <Tangent> { 0.997663 0.031268 -0.060746 }
+        <Binormal> { 0.060241 0.016828 0.998036 }
+      }
+      <Normal> { -0.030427 0.999420 -0.015015 }
+    }
+    <Vertex> 3029 {
+      -29.1712741852 -46.8990974426 3.95841288567
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.997516 0.042652 -0.056059 }
+        <Binormal> { 0.061421 -0.137789 0.988093 }
+      }
+      <Normal> { -0.005341 0.990326 0.138432 }
+    }
+    <Vertex> 3030 {
+      -29.0641727448 -46.7786598206 5.05120182037
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.998375 0.019884 -0.053399 }
+        <Binormal> { 0.049216 0.171143 0.983892 }
+      }
+      <Normal> { -0.043916 0.984619 -0.169073 }
+    }
+    <Vertex> 3031 {
+      -25.0176963806 -46.673992157 4.84775018692
+      <UV>  {
+        0.750000 1.000000
+        <Tangent> { 0.996968 0.046732 -0.062218 }
+        <Binormal> { 0.045012 0.305834 0.950962 }
+      }
+      <Normal> { -0.070284 0.950560 -0.302377 }
+    }
+    <Vertex> 3032 {
+      -26.0610961914 -46.8137702942 4.14958047867
+      <UV>  {
+        0.833333 0.666667
+        <Tangent> { 0.997663 0.031268 -0.060746 }
+        <Binormal> { 0.060241 0.016828 0.998036 }
+      }
+      <Normal> { -0.030427 0.999420 -0.015015 }
+    }
+    <Vertex> 3033 {
+      -25.0176963806 -46.673992157 4.84775018692
+      <UV>  {
+        0.750000 1.000000
+        <Tangent> { 0.996968 0.046732 -0.062218 }
+        <Binormal> { 0.045012 0.305834 0.950962 }
+      }
+      <Normal> { -0.070284 0.950560 -0.302377 }
+    }
+    <Vertex> 3034 {
+      -21.0202560425 -46.4016113281 4.54919958115
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.981449 0.190146 -0.024534 }
+        <Binormal> { -0.079364 0.519229 0.849338 }
+      }
+      <Normal> { -0.224830 0.821833 -0.523423 }
+    }
+    <Vertex> 3035 {
+      -24.1750183105 -46.8337936401 3.65760850906
+      <UV>  {
+        0.708333 0.500000
+        <Tangent> { 0.998328 -0.006093 -0.057482 }
+        <Binormal> { 0.056602 -0.094559 0.993064 }
+      }
+      <Normal> { -0.028840 0.994903 0.096377 }
+    }
+    <Vertex> 3036 {
+      -26.0610961914 -46.8137702942 4.14958047867
+      <UV>  {
+        0.833333 0.666667
+        <Tangent> { 0.997663 0.031268 -0.060746 }
+        <Binormal> { 0.060241 0.016828 0.998036 }
+      }
+      <Normal> { -0.030427 0.999420 -0.015015 }
+    }
+    <Vertex> 3037 {
+      -24.1750183105 -46.8337936401 3.65760850906
+      <UV>  {
+        0.708333 0.500000
+        <Tangent> { 0.998328 -0.006093 -0.057482 }
+        <Binormal> { 0.056602 -0.094559 0.993064 }
+      }
+      <Normal> { -0.028840 0.994903 0.096377 }
+    }
+    <Vertex> 3038 {
+      -27.7901077271 -46.4382362366 2.78387331963
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.998479 0.013581 -0.053425 }
+        <Binormal> { 0.045695 -0.745870 0.664393 }
+      }
+      <Normal> { 0.019471 0.665670 0.745964 }
+    }
+    <Vertex> 3039 {
+      -29.1712741852 -46.8990974426 3.95841288567
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.997516 0.042652 -0.056059 }
+        <Binormal> { 0.061421 -0.137789 0.988093 }
+      }
+      <Normal> { -0.005341 0.990326 0.138432 }
+    }
+    <Vertex> 3040 {
+      -18.8966712952 -45.6477890015 4.01420021057
+      <UV>  {
+        0.166667 0.666667
+        <Tangent> { 0.834777 0.550426 0.013398 }
+        <Binormal> { -0.343968 0.502353 0.793245 }
+      }
+      <Normal> { -0.434370 0.663839 -0.608753 }
+    }
+    <Vertex> 3041 {
+      -19.8736686707 -46.5422973633 3.62376356125
+      <UV>  {
+        0.291667 0.500000
+        <Tangent> { 0.939136 0.340559 0.045190 }
+        <Binormal> { -0.113471 0.183417 0.975887 }
+      }
+      <Normal> { -0.293313 0.932768 -0.209418 }
+    }
+    <Vertex> 3042 {
+      -21.0202560425 -46.4016113281 4.54919958115
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.981449 0.190146 -0.024534 }
+        <Binormal> { -0.079364 0.519229 0.849338 }
+      }
+      <Normal> { -0.224830 0.821833 -0.523423 }
+    }
+    <Vertex> 3043 {
+      -19.1883201599 -45.0733299255 4.62055778503
+      <UV>  {
+        0.250000 1.000000
+        <Tangent> { 0.794757 0.606926 -0.001508 }
+        <Binormal> { -0.476107 0.624990 0.618577 }
+      }
+      <Normal> { -0.380902 0.487442 -0.785668 }
+    }
+    <Vertex> 3044 {
+      -18.8966712952 -45.6477890015 4.01420021057
+      <UV>  {
+        0.166667 0.666667
+        <Tangent> { 0.834777 0.550426 0.013398 }
+        <Binormal> { -0.343968 0.502353 0.793245 }
+      }
+      <Normal> { -0.434370 0.663839 -0.608753 }
+    }
+    <Vertex> 3045 {
+      -19.1883201599 -45.0733299255 4.62055778503
+      <UV>  {
+        0.250000 1.000000
+        <Tangent> { 0.794757 0.606926 -0.001508 }
+        <Binormal> { -0.476107 0.624990 0.618577 }
+      }
+      <Normal> { -0.380902 0.487442 -0.785668 }
+    }
+    <Vertex> 3046 {
+      -17.9432296753 -44.0518035889 4.54336023331
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.795848 0.604461 -0.035385 }
+        <Binormal> { -0.500026 0.687957 0.505835 }
+      }
+      <Normal> { -0.215430 0.471969 -0.854854 }
+    }
+    <Vertex> 3047 {
+      -17.7421188354 -45.2826576233 3.6989300251
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.875518 0.483100 -0.009096 }
+        <Binormal> { -0.311169 0.578000 0.747353 }
+      }
+      <Normal> { -0.276559 0.701010 -0.657308 }
+    }
+    <Vertex> 3048 {
+      -18.8966712952 -45.6477890015 4.01420021057
+      <UV>  {
+        0.166667 0.666667
+        <Tangent> { 0.834777 0.550426 0.013398 }
+        <Binormal> { -0.343968 0.502353 0.793245 }
+      }
+      <Normal> { -0.434370 0.663839 -0.608753 }
+    }
+    <Vertex> 3049 {
+      -17.7421188354 -45.2826576233 3.6989300251
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.875518 0.483100 -0.009096 }
+        <Binormal> { -0.311169 0.578000 0.747353 }
+      }
+      <Normal> { -0.276559 0.701010 -0.657308 }
+    }
+    <Vertex> 3050 {
+      -18.8465080261 -46.1818351746 2.73309445381
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.955852 0.292223 0.030863 }
+        <Binormal> { 0.121395 -0.488013 0.860981 }
+      }
+      <Normal> { -0.194037 0.841426 0.504288 }
+    }
+    <Vertex> 3051 {
+      -19.8736686707 -46.5422973633 3.62376356125
+      <UV>  {
+        0.291667 0.500000
+        <Tangent> { 0.939136 0.340559 0.045190 }
+        <Binormal> { -0.113471 0.183417 0.975887 }
+      }
+      <Normal> { -0.293313 0.932768 -0.209418 }
+    }
+    <Vertex> 3052 {
+      -19.5022716522 -44.7178192139 4.83000040054
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { 0.708920 0.705108 0.015944 }
+        <Binormal> { -0.618588 0.610757 0.494223 }
+      }
+      <Normal> { -0.343608 0.355388 -0.869259 }
+    }
+    <Vertex> 3053 {
+      -18.4063129425 -43.4832763672 4.89034605026
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.663442 0.747335 0.036530 }
+        <Binormal> { -0.573855 0.479521 0.612005 }
+      }
+      <Normal> { -0.269234 0.619190 -0.737602 }
+    }
+    <Vertex> 3054 {
+      -17.9432296753 -44.0518035889 4.54336023331
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.720045 0.693908 -0.005183 }
+        <Binormal> { -0.590743 0.616650 0.489327 }
+      }
+      <Normal> { -0.215430 0.471969 -0.854854 }
+    }
+    <Vertex> 3055 {
+      -19.1883201599 -45.0733299255 4.62055778503
+      <UV>  {
+        0.250000 0.000000
+        <Tangent> { 0.794757 0.606926 -0.001508 }
+        <Binormal> { -0.476107 0.624990 0.618577 }
+      }
+      <Normal> { -0.380902 0.487442 -0.785668 }
+    }
+    <Vertex> 3056 {
+      -19.5022716522 -44.7178192139 4.83000040054
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { 0.708920 0.705108 0.015944 }
+        <Binormal> { -0.618588 0.610757 0.494223 }
+      }
+      <Normal> { -0.343608 0.355388 -0.869259 }
+    }
+    <Vertex> 3057 {
+      -19.1883201599 -45.0733299255 4.62055778503
+      <UV>  {
+        0.250000 0.000000
+        <Tangent> { 0.794757 0.606926 -0.001508 }
+        <Binormal> { -0.476107 0.624990 0.618577 }
+      }
+      <Normal> { -0.380902 0.487442 -0.785668 }
+    }
+    <Vertex> 3058 {
+      -21.0202560425 -46.4016113281 4.54919958115
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.951839 0.301853 -0.053733 }
+        <Binormal> { -0.113837 0.510295 0.850118 }
+      }
+      <Normal> { -0.224830 0.821833 -0.523423 }
+    }
+    <Vertex> 3059 {
+      -20.8018722534 -45.9630012512 4.89860773087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.985920 0.143066 -0.086570 }
+        <Binormal> { -0.041397 0.704498 0.692791 }
+      }
+      <Normal> { -0.306192 0.658254 -0.687674 }
+    }
+    <Vertex> 3060 {
+      -19.5022716522 -44.7178192139 4.83000040054
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { 0.708920 0.705108 0.015944 }
+        <Binormal> { -0.618588 0.610757 0.494223 }
+      }
+      <Normal> { -0.343608 0.355388 -0.869259 }
+    }
+    <Vertex> 3061 {
+      -20.8018722534 -45.9630012512 4.89860773087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.985920 0.143066 -0.086570 }
+        <Binormal> { -0.041397 0.704498 0.692791 }
+      }
+      <Normal> { -0.306192 0.658254 -0.687674 }
+    }
+    <Vertex> 3062 {
+      -20.5276565552 -45.8317489624 4.91219949722
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.982844 0.143361 -0.116036 }
+        <Binormal> { 0.150279 -0.282782 0.923513 }
+      }
+      <Normal> { -0.306925 0.894864 0.323954 }
+    }
+    <Vertex> 3063 {
+      -19.7073421478 -44.6964607239 4.84501171112
+      <UV>  {
+        0.250000 1.000000
+        <Tangent> { 0.628453 0.777694 0.015454 }
+        <Binormal> { 0.158771 -0.147675 0.974913 }
+      }
+      <Normal> { -0.729331 0.648762 0.217048 }
+    }
+    <Vertex> 3064 {
+      -19.5022716522 -44.7178192139 4.83000040054
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { 0.708920 0.705108 0.015944 }
+        <Binormal> { -0.618588 0.610757 0.494223 }
+      }
+      <Normal> { -0.343608 0.355388 -0.869259 }
+    }
+    <Vertex> 3065 {
+      -19.7073421478 -44.6964607239 4.84501171112
+      <UV>  {
+        0.250000 1.000000
+        <Tangent> { 0.628453 0.777694 0.015454 }
+        <Binormal> { 0.158771 -0.147675 0.974913 }
+      }
+      <Normal> { -0.729331 0.648762 0.217048 }
+    }
+    <Vertex> 3066 {
+      -18.7911338806 -43.6828460693 4.95490074158
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.665857 0.743950 0.056333 }
+        <Binormal> { 0.660122 -0.620465 0.391391 }
+      }
+      <Normal> { -0.218696 0.343455 0.913327 }
+    }
+    <Vertex> 3067 {
+      -18.4063129425 -43.4832763672 4.89034605026
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.663442 0.747335 0.036530 }
+        <Binormal> { -0.573855 0.479521 0.612005 }
+      }
+      <Normal> { -0.269234 0.619190 -0.737602 }
+    }
+    <Vertex> 3068 {
+      -24.2030277252 -46.4565391541 5.19725179672
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { 0.991934 0.069003 -0.106331 }
+        <Binormal> { 0.061657 0.470253 0.880348 }
+      }
+      <Normal> { -0.114475 0.879543 -0.461806 }
+    }
+    <Vertex> 3069 {
+      -20.8018722534 -45.9630012512 4.89860773087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.985920 0.143066 -0.086570 }
+        <Binormal> { -0.041397 0.704498 0.692791 }
+      }
+      <Normal> { -0.306192 0.658254 -0.687674 }
+    }
+    <Vertex> 3070 {
+      -21.0202560425 -46.4016113281 4.54919958115
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.951839 0.301853 -0.053733 }
+        <Binormal> { -0.113837 0.510295 0.850118 }
+      }
+      <Normal> { -0.224830 0.821833 -0.523423 }
+    }
+    <Vertex> 3071 {
+      -25.0176963806 -46.673992157 4.84775018692
+      <UV>  {
+        0.750000 0.000000
+        <Tangent> { 0.996968 0.046732 -0.062218 }
+        <Binormal> { 0.045012 0.305834 0.950962 }
+      }
+      <Normal> { -0.070284 0.950560 -0.302377 }
+    }
+    <Vertex> 3072 {
+      -24.2030277252 -46.4565391541 5.19725179672
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { 0.991934 0.069003 -0.106331 }
+        <Binormal> { 0.061657 0.470253 0.880348 }
+      }
+      <Normal> { -0.114475 0.879543 -0.461806 }
+    }
+    <Vertex> 3073 {
+      -25.0176963806 -46.673992157 4.84775018692
+      <UV>  {
+        0.750000 0.000000
+        <Tangent> { 0.996968 0.046732 -0.062218 }
+        <Binormal> { 0.045012 0.305834 0.950962 }
+      }
+      <Normal> { -0.070284 0.950560 -0.302377 }
+    }
+    <Vertex> 3074 {
+      -29.0641727448 -46.7786598206 5.05120182037
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.996355 0.029847 -0.079912 }
+        <Binormal> { 0.073636 0.171966 0.982340 }
+      }
+      <Normal> { -0.043916 0.984619 -0.169073 }
+    }
+    <Vertex> 3075 {
+      -28.439666748 -46.6000061035 5.65814161301
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.993572 0.033646 -0.108087 }
+        <Binormal> { 0.092550 0.308221 0.946687 }
+      }
+      <Normal> { -0.078219 0.950163 -0.301706 }
+    }
+    <Vertex> 3076 {
+      -24.2030277252 -46.4565391541 5.19725179672
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { 0.991934 0.069003 -0.106331 }
+        <Binormal> { 0.061657 0.470253 0.880348 }
+      }
+      <Normal> { -0.114475 0.879543 -0.461806 }
+    }
+    <Vertex> 3077 {
+      -28.439666748 -46.6000061035 5.65814161301
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.993572 0.033646 -0.108087 }
+        <Binormal> { 0.092550 0.308221 0.946687 }
+      }
+      <Normal> { -0.078219 0.950163 -0.301706 }
+    }
+    <Vertex> 3078 {
+      -27.243730545 -46.2700843811 6.11081171036
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.987750 0.015771 -0.155248 }
+        <Binormal> { 0.127525 0.487545 0.860890 }
+      }
+      <Normal> { -0.157964 0.869045 -0.468764 }
+    }
+    <Vertex> 3079 {
+      -23.3327655792 -46.2834587097 5.29111242294
+      <UV>  {
+        0.750000 1.000000
+        <Tangent> { 0.982419 0.064119 -0.175332 }
+        <Binormal> { 0.160685 0.187652 0.968976 }
+      }
+      <Normal> { -0.095218 0.980102 -0.174017 }
+    }
+    <Vertex> 3080 {
+      -24.2030277252 -46.4565391541 5.19725179672
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { 0.991934 0.069003 -0.106331 }
+        <Binormal> { 0.061657 0.470253 0.880348 }
+      }
+      <Normal> { -0.114475 0.879543 -0.461806 }
+    }
+    <Vertex> 3081 {
+      -23.3327655792 -46.2834587097 5.29111242294
+      <UV>  {
+        0.750000 1.000000
+        <Tangent> { 0.982419 0.064119 -0.175332 }
+        <Binormal> { 0.160685 0.187652 0.968976 }
+      }
+      <Normal> { -0.095218 0.980102 -0.174017 }
+    }
+    <Vertex> 3082 {
+      -20.5276565552 -45.8317489624 4.91219949722
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.982844 0.143361 -0.116036 }
+        <Binormal> { 0.150279 -0.282782 0.923513 }
+      }
+      <Normal> { -0.306925 0.894864 0.323954 }
+    }
+    <Vertex> 3083 {
+      -20.8018722534 -45.9630012512 4.89860773087
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.985920 0.143066 -0.086570 }
+        <Binormal> { -0.041397 0.704498 0.692791 }
+      }
+      <Normal> { -0.306192 0.658254 -0.687674 }
+    }
+    <Vertex> 3084 {
+      -19.6723556519 -45.1244697571 4.86807060242
+      <UV>  {
+        0.833333 0.333333
+        <Tangent> { 0.773737 0.632915 0.027377 }
+        <Binormal> { 0.620128 -0.765514 0.171277 }
+      }
+      <Normal> { -0.124851 0.119236 0.984954 }
+    }
+    <Vertex> 3085 {
+      -18.7574539185 -44.7562904358 4.95203733444
+      <UV>  {
+        0.833333 0.458333
+        <Tangent> { 0.889602 0.454884 0.041083 }
+        <Binormal> { 0.445636 -0.884161 0.140000 }
+      }
+      <Normal> { -0.105441 0.103458 0.989013 }
+    }
+    <Vertex> 3086 {
+      -18.7911338806 -43.6828460693 4.95490074158
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.884564 0.461768 0.065705 }
+        <Binormal> { 0.399179 -0.822266 0.404795 }
+      }
+      <Normal> { -0.218696 0.343455 0.913327 }
+    }
+    <Vertex> 3087 {
+      -19.7073421478 -44.6964607239 4.84501171112
+      <UV>  {
+        0.750000 -0.000000
+        <Tangent> { 0.628452 0.777694 0.015454 }
+        <Binormal> { 0.158771 -0.147675 0.974913 }
+      }
+      <Normal> { -0.729331 0.648762 0.217048 }
+    }
+    <Vertex> 3088 {
+      -19.6723556519 -45.1244697571 4.86807060242
+      <UV>  {
+        0.833333 0.333333
+        <Tangent> { 0.773737 0.632915 0.027377 }
+        <Binormal> { 0.620128 -0.765514 0.171277 }
+      }
+      <Normal> { -0.124851 0.119236 0.984954 }
+    }
+    <Vertex> 3089 {
+      -19.7073421478 -44.6964607239 4.84501171112
+      <UV>  {
+        0.750000 -0.000000
+        <Tangent> { 0.628452 0.777694 0.015454 }
+        <Binormal> { 0.158771 -0.147675 0.974913 }
+      }
+      <Normal> { -0.729331 0.648762 0.217048 }
+    }
+    <Vertex> 3090 {
+      -20.5276565552 -45.8317489624 4.91219949722
+      <UV>  {
+        0.500000 -0.000001
+        <Tangent> { 0.903818 0.410448 -0.121016 }
+        <Binormal> { 0.241259 -0.255653 0.934771 }
+      }
+      <Normal> { -0.306925 0.894864 0.323954 }
+    }
+    <Vertex> 3091 {
+      -20.160194397 -45.9718170166 4.93122959137
+      <UV>  {
+        0.708333 0.416666
+        <Tangent> { 0.897275 0.421978 -0.129740 }
+        <Binormal> { 0.422058 -0.734778 0.529074 }
+      }
+      <Normal> { -0.087405 0.548540 0.831538 }
+    }
+    <Vertex> 3092 {
+      -19.6723556519 -45.1244697571 4.86807060242
+      <UV>  {
+        0.833333 0.333333
+        <Tangent> { 0.773737 0.632915 0.027377 }
+        <Binormal> { 0.620128 -0.765514 0.171277 }
+      }
+      <Normal> { -0.124851 0.119236 0.984954 }
+    }
+    <Vertex> 3093 {
+      -20.160194397 -45.9718170166 4.93122959137
+      <UV>  {
+        0.708333 0.416666
+        <Tangent> { 0.897275 0.421978 -0.129740 }
+        <Binormal> { 0.422058 -0.734778 0.529074 }
+      }
+      <Normal> { -0.087405 0.548540 0.831538 }
+    }
+    <Vertex> 3094 {
+      -19.4436321259 -46.0605812073 5.20842695236
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.945582 0.318611 -0.066046 }
+        <Binormal> { 0.115870 -0.149793 0.936310 }
+      }
+      <Normal> { -0.008850 0.987213 0.159032 }
+    }
+    <Vertex> 3095 {
+      -18.7574539185 -44.7562904358 4.95203733444
+      <UV>  {
+        0.833333 0.458333
+        <Tangent> { 0.889602 0.454884 0.041083 }
+        <Binormal> { 0.445636 -0.884161 0.140000 }
+      }
+      <Normal> { -0.105441 0.103458 0.989013 }
+    }
+    <Vertex> 3096 {
+      -22.1225910187 -46.2767868042 5.22235870361
+      <UV>  {
+        0.500000 0.333333
+        <Tangent> { 0.978747 0.042082 -0.200706 }
+        <Binormal> { 0.203425 -0.077082 0.975843 }
+      }
+      <Normal> { -0.044557 0.995117 0.087893 }
+    }
+    <Vertex> 3097 {
+      -20.160194397 -45.9718170166 4.93122959137
+      <UV>  {
+        0.708333 0.416666
+        <Tangent> { 0.897275 0.421978 -0.129740 }
+        <Binormal> { 0.422058 -0.734778 0.529074 }
+      }
+      <Normal> { -0.087405 0.548540 0.831538 }
+    }
+    <Vertex> 3098 {
+      -20.5276565552 -45.8317489624 4.91219949722
+      <UV>  {
+        0.500000 -0.000001
+        <Tangent> { 0.903818 0.410448 -0.121016 }
+        <Binormal> { 0.241259 -0.255653 0.934771 }
+      }
+      <Normal> { -0.306925 0.894864 0.323954 }
+    }
+    <Vertex> 3099 {
+      -23.3327655792 -46.2834587097 5.29111242294
+      <UV>  {
+        0.250000 -0.000000
+        <Tangent> { 0.982419 0.064119 -0.175332 }
+        <Binormal> { 0.160685 0.187652 0.968976 }
+      }
+      <Normal> { -0.095218 0.980102 -0.174017 }
+    }
+    <Vertex> 3100 {
+      -22.1225910187 -46.2767868042 5.22235870361
+      <UV>  {
+        0.500000 0.333333
+        <Tangent> { 0.978747 0.042082 -0.200706 }
+        <Binormal> { 0.203425 -0.077082 0.975843 }
+      }
+      <Normal> { -0.044557 0.995117 0.087893 }
+    }
+    <Vertex> 3101 {
+      -23.3327655792 -46.2834587097 5.29111242294
+      <UV>  {
+        0.250000 -0.000000
+        <Tangent> { 0.982419 0.064119 -0.175332 }
+        <Binormal> { 0.160685 0.187652 0.968976 }
+      }
+      <Normal> { -0.095218 0.980102 -0.174017 }
+    }
+    <Vertex> 3102 {
+      -27.243730545 -46.2700843811 6.11081171036
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.976916 0.019711 -0.212713 }
+        <Binormal> { 0.175618 0.491544 0.852098 }
+      }
+      <Normal> { -0.157964 0.869045 -0.468764 }
+    }
+    <Vertex> 3103 {
+      -23.1062393188 -46.0454788208 5.67135334015
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.963909 -0.082894 -0.252997 }
+        <Binormal> { 0.255021 0.559972 0.788147 }
+      }
+      <Normal> { -0.089022 0.825312 -0.557573 }
+    }
+    <Vertex> 3104 {
+      -22.1225910187 -46.2767868042 5.22235870361
+      <UV>  {
+        0.500000 0.333333
+        <Tangent> { 0.978747 0.042082 -0.200706 }
+        <Binormal> { 0.203425 -0.077082 0.975843 }
+      }
+      <Normal> { -0.044557 0.995117 0.087893 }
+    }
+    <Vertex> 3105 {
+      -23.1062393188 -46.0454788208 5.67135334015
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.963909 -0.082894 -0.252997 }
+        <Binormal> { 0.255021 0.559972 0.788147 }
+      }
+      <Normal> { -0.089022 0.825312 -0.557573 }
+    }
+    <Vertex> 3106 {
+      -19.4436321259 -46.0605812073 5.20842695236
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.945582 0.318611 -0.066046 }
+        <Binormal> { 0.115870 -0.149793 0.936310 }
+      }
+      <Normal> { -0.008850 0.987213 0.159032 }
+    }
+    <Vertex> 3107 {
+      -20.160194397 -45.9718170166 4.93122959137
+      <UV>  {
+        0.708333 0.416666
+        <Tangent> { 0.897275 0.421978 -0.129740 }
+        <Binormal> { 0.422058 -0.734778 0.529074 }
+      }
+      <Normal> { -0.087405 0.548540 0.831538 }
+    }
+    <Vertex> 3108 {
+      -10.4286985397 -46.1465301514 2.49542713165
+      <UV>  {
+        0.333333 0.500000
+        <Tangent> { -0.249828 0.068639 0.965854 }
+        <Binormal> { -0.968093 -0.008349 -0.249813 }
+      }
+      <Normal> { 0.004791 0.998627 -0.051943 }
+    }
+    <Vertex> 3109 {
+      -11.5722103119 -45.8943252563 3.28683233261
+      <UV>  {
+        0.500000 0.708333
+        <Tangent> { -0.173522 0.511122 0.841810 }
+        <Binormal> { -0.968845 0.045209 -0.227157 }
+      }
+      <Normal> { 0.138951 0.899808 -0.413556 }
+    }
+    <Vertex> 3110 {
+      -10.9220352173 -45.3759231567 4.23617744446
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.071506 0.385231 0.920046 }
+        <Binormal> { -0.939125 0.270685 -0.186326 }
+      }
+      <Normal> { 0.313669 0.915891 -0.250404 }
+    }
+    <Vertex> 3111 {
+      -9.41248607635 -45.8731117249 2.84797811508
+      <UV>  {
+        0.500000 0.291667
+        <Tangent> { 0.011100 0.187132 0.982272 }
+        <Binormal> { -0.984719 0.145593 -0.016609 }
+      }
+      <Normal> { 0.147160 0.984619 -0.093814 }
+    }
+    <Vertex> 3112 {
+      -10.4286985397 -46.1465301514 2.49542713165
+      <UV>  {
+        0.333333 0.500000
+        <Tangent> { -0.249828 0.068639 0.965854 }
+        <Binormal> { -0.968093 -0.008349 -0.249813 }
+      }
+      <Normal> { 0.004791 0.998627 -0.051943 }
+    }
+    <Vertex> 3113 {
+      -9.41248607635 -45.8731117249 2.84797811508
+      <UV>  {
+        0.500000 0.291667
+        <Tangent> { 0.011100 0.187132 0.982272 }
+        <Binormal> { -0.984719 0.145593 -0.016609 }
+      }
+      <Normal> { 0.147160 0.984619 -0.093814 }
+    }
+    <Vertex> 3114 {
+      -7.83629846573 -46.1326217651 0.979065775871
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.150715 -0.550489 0.821125 }
+        <Binormal> { -0.639396 0.576823 0.504066 }
+      }
+      <Normal> { 0.761010 0.564898 0.318888 }
+    }
+    <Vertex> 3115 {
+      -10.1550111771 -45.6917610168 1.64354300499
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.272677 -0.453090 0.848738 }
+        <Binormal> { -0.924284 0.348613 -0.110844 }
+      }
+      <Normal> { 0.216010 0.765435 0.606128 }
+    }
+    <Vertex> 3116 {
+      -10.4286985397 -46.1465301514 2.49542713165
+      <UV>  {
+        0.333333 0.500000
+        <Tangent> { -0.249828 0.068639 0.965854 }
+        <Binormal> { -0.968093 -0.008349 -0.249813 }
+      }
+      <Normal> { 0.004791 0.998627 -0.051943 }
+    }
+    <Vertex> 3117 {
+      -10.1550111771 -45.6917610168 1.64354300499
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.272677 -0.453090 0.848738 }
+        <Binormal> { -0.924284 0.348613 -0.110844 }
+      }
+      <Normal> { 0.216010 0.765435 0.606128 }
+    }
+    <Vertex> 3118 {
+      -12.559217453 -46.0444793701 2.51674008369
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.715479 0.197887 0.670023 }
+        <Binormal> { -0.580080 -0.054431 0.635510 }
+      }
+      <Normal> { 0.200201 0.943602 0.263558 }
+    }
+    <Vertex> 3119 {
+      -11.5722103119 -45.8943252563 3.28683233261
+      <UV>  {
+        0.500000 0.708333
+        <Tangent> { -0.173522 0.511122 0.841810 }
+        <Binormal> { -0.968845 0.045209 -0.227157 }
+      }
+      <Normal> { 0.138951 0.899808 -0.413556 }
+    }
+    <Vertex> 3120 {
+      -12.0813589096 -45.1842498779 3.858751297
+      <UV>  {
+        0.666667 0.833333
+        <Tangent> { -0.137993 0.738064 0.660469 }
+        <Binormal> { -0.955473 0.076346 -0.284945 }
+      }
+      <Normal> { 0.260323 0.672567 -0.692709 }
+    }
+    <Vertex> 3121 {
+      -13.103102684 -45.1667747498 3.66006779671
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.154495 0.722779 0.673588 }
+        <Binormal> { -0.978889 -0.019790 -0.203284 }
+      }
+      <Normal> { 0.132847 0.694296 -0.707297 }
+    }
+    <Vertex> 3122 {
+      -13.0206918716 -43.8855476379 4.52873849869
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.077176 0.822198 0.563945 }
+        <Binormal> { -0.983089 0.031227 -0.180063 }
+      }
+      <Normal> { 0.164892 0.576464 -0.800287 }
+    }
+    <Vertex> 3123 {
+      -11.9410953522 -44.4834823608 4.45992517471
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.179180 0.811749 0.555840 }
+        <Binormal> { -0.857392 0.139205 -0.479684 }
+      }
+      <Normal> { 0.444563 0.663076 -0.602191 }
+    }
+    <Vertex> 3124 {
+      -12.0813589096 -45.1842498779 3.858751297
+      <UV>  {
+        0.666667 0.833333
+        <Tangent> { -0.137993 0.738064 0.660469 }
+        <Binormal> { -0.955473 0.076346 -0.284945 }
+      }
+      <Normal> { 0.260323 0.672567 -0.692709 }
+    }
+    <Vertex> 3125 {
+      -11.9410953522 -44.4834823608 4.45992517471
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.179180 0.811749 0.555840 }
+        <Binormal> { -0.857392 0.139205 -0.479684 }
+      }
+      <Normal> { 0.444563 0.663076 -0.602191 }
+    }
+    <Vertex> 3126 {
+      -10.9220352173 -45.3759231567 4.23617744446
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.071506 0.385231 0.920046 }
+        <Binormal> { -0.939125 0.270685 -0.186326 }
+      }
+      <Normal> { 0.313669 0.915891 -0.250404 }
+    }
+    <Vertex> 3127 {
+      -11.5722103119 -45.8943252563 3.28683233261
+      <UV>  {
+        0.500000 0.708333
+        <Tangent> { -0.173522 0.511122 0.841810 }
+        <Binormal> { -0.968845 0.045209 -0.227157 }
+      }
+      <Normal> { 0.138951 0.899808 -0.413556 }
+    }
+    <Vertex> 3128 {
+      -12.0813589096 -45.1842498779 3.858751297
+      <UV>  {
+        0.666667 0.833333
+        <Tangent> { -0.137993 0.738064 0.660469 }
+        <Binormal> { -0.955473 0.076346 -0.284945 }
+      }
+      <Normal> { 0.260323 0.672567 -0.692709 }
+    }
+    <Vertex> 3129 {
+      -11.5722103119 -45.8943252563 3.28683233261
+      <UV>  {
+        0.500000 0.708333
+        <Tangent> { -0.173522 0.511122 0.841810 }
+        <Binormal> { -0.968845 0.045209 -0.227157 }
+      }
+      <Normal> { 0.138951 0.899808 -0.413556 }
+    }
+    <Vertex> 3130 {
+      -12.559217453 -46.0444793701 2.51674008369
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.715479 0.197887 0.670023 }
+        <Binormal> { -0.580080 -0.054431 0.635510 }
+      }
+      <Normal> { 0.200201 0.943602 0.263558 }
+    }
+    <Vertex> 3131 {
+      -13.103102684 -45.1667747498 3.66006779671
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.154495 0.722779 0.673588 }
+        <Binormal> { -0.978889 -0.019790 -0.203284 }
+      }
+      <Normal> { 0.132847 0.694296 -0.707297 }
+    }
+    <Vertex> 3132 {
+      -8.40043735504 -45.9219894409 3.81477618217
+      <UV>  {
+        0.666667 0.166667
+        <Tangent> { 0.125432 -0.059684 0.990305 }
+        <Binormal> { -0.913160 0.383016 0.138744 }
+      }
+      <Normal> { 0.386151 0.922391 -0.004852 }
+    }
+    <Vertex> 3133 {
+      -9.41248607635 -45.8731117249 2.84797811508
+      <UV>  {
+        0.500000 0.291667
+        <Tangent> { 0.011100 0.187132 0.982272 }
+        <Binormal> { -0.984719 0.145593 -0.016609 }
+      }
+      <Normal> { 0.147160 0.984619 -0.093814 }
+    }
+    <Vertex> 3134 {
+      -10.9220352173 -45.3759231567 4.23617744446
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.071506 0.385231 0.920046 }
+        <Binormal> { -0.939125 0.270685 -0.186326 }
+      }
+      <Normal> { 0.313669 0.915891 -0.250404 }
+    }
+    <Vertex> 3135 {
+      -8.86593818665 -45.8452796936 5.18325567245
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { 0.101631 -0.100277 0.989755 }
+        <Binormal> { -0.930738 0.341411 0.130161 }
+      }
+      <Normal> { 0.349620 0.935759 0.045534 }
+    }
+    <Vertex> 3136 {
+      -8.40043735504 -45.9219894409 3.81477618217
+      <UV>  {
+        0.666667 0.166667
+        <Tangent> { 0.125432 -0.059684 0.990305 }
+        <Binormal> { -0.913160 0.383016 0.138744 }
+      }
+      <Normal> { 0.386151 0.922391 -0.004852 }
+    }
+    <Vertex> 3137 {
+      -8.86593818665 -45.8452796936 5.18325567245
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { 0.101631 -0.100277 0.989755 }
+        <Binormal> { -0.930738 0.341411 0.130161 }
+      }
+      <Normal> { 0.349620 0.935759 0.045534 }
+    }
+    <Vertex> 3138 {
+      -7.12337827682 -46.8284339905 5.819024086
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.072365 -0.086180 0.993648 }
+        <Binormal> { -0.657797 0.744180 0.112449 }
+      }
+      <Normal> { 0.751213 0.659291 0.031251 }
+    }
+    <Vertex> 3139 {
+      -7.28152084351 -46.8105506897 3.64229416847
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.144274 -0.140812 0.979468 }
+        <Binormal> { -0.594229 0.778134 0.199397 }
+      }
+      <Normal> { 0.784448 0.616443 -0.067873 }
+    }
+    <Vertex> 3140 {
+      -8.40043735504 -45.9219894409 3.81477618217
+      <UV>  {
+        0.666667 0.166667
+        <Tangent> { 0.125432 -0.059684 0.990305 }
+        <Binormal> { -0.913160 0.383016 0.138744 }
+      }
+      <Normal> { 0.386151 0.922391 -0.004852 }
+    }
+    <Vertex> 3141 {
+      -7.28152084351 -46.8105506897 3.64229416847
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.144274 -0.140812 0.979468 }
+        <Binormal> { -0.594229 0.778134 0.199397 }
+      }
+      <Normal> { 0.784448 0.616443 -0.067873 }
+    }
+    <Vertex> 3142 {
+      -7.83629846573 -46.1326217651 0.979065775871
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.150715 -0.550489 0.821125 }
+        <Binormal> { -0.639396 0.576823 0.504066 }
+      }
+      <Normal> { 0.761010 0.564898 0.318888 }
+    }
+    <Vertex> 3143 {
+      -9.41248607635 -45.8731117249 2.84797811508
+      <UV>  {
+        0.500000 0.291667
+        <Tangent> { 0.011100 0.187132 0.982272 }
+        <Binormal> { -0.984719 0.145593 -0.016609 }
+      }
+      <Normal> { 0.147160 0.984619 -0.093814 }
+    }
+    <Vertex> 3144 {
+      -9.3693113327 -45.88621521 6.1670498848
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.482593 -0.026646 0.875439 }
+        <Binormal> { -0.840104 0.294252 -0.454159 }
+      }
+      <Normal> { 0.228095 0.953673 0.195959 }
+    }
+    <Vertex> 3145 {
+      -7.38470172882 -46.8359718323 7.40207386017
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.278129 0.064673 0.958364 }
+        <Binormal> { -0.709830 0.658197 -0.250418 }
+      }
+      <Normal> { 0.643544 0.750725 0.149022 }
+    }
+    <Vertex> 3146 {
+      -7.12337827682 -46.8284339905 5.819024086
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.285466 -0.018095 0.958218 }
+        <Binormal> { -0.632310 0.728747 -0.174612 }
+      }
+      <Normal> { 0.751213 0.659291 0.031251 }
+    }
+    <Vertex> 3147 {
+      -8.86593818665 -45.8452796936 5.18325567245
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.455190 -0.037017 0.889624 }
+        <Binormal> { -0.834159 0.331757 -0.413006 }
+      }
+      <Normal> { 0.349620 0.935759 0.045534 }
+    }
+    <Vertex> 3148 {
+      -9.3693113327 -45.88621521 6.1670498848
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.482593 -0.026646 0.875439 }
+        <Binormal> { -0.840104 0.294252 -0.454159 }
+      }
+      <Normal> { 0.228095 0.953673 0.195959 }
+    }
+    <Vertex> 3149 {
+      -8.86593818665 -45.8452796936 5.18325567245
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.455190 -0.037017 0.889624 }
+        <Binormal> { -0.834159 0.331757 -0.413006 }
+      }
+      <Normal> { 0.349620 0.935759 0.045534 }
+    }
+    <Vertex> 3150 {
+      -10.9220352173 -45.3759231567 4.23617744446
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.349197 0.145505 0.925683 }
+        <Binormal> { -0.884260 0.202918 -0.365467 }
+      }
+      <Normal> { 0.313669 0.915891 -0.250404 }
+    }
+    <Vertex> 3151 {
+      -11.2332687378 -45.2640304565 5.01299858093
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.550582 -0.075191 0.831388 }
+        <Binormal> { -0.723732 0.538988 -0.430541 }
+      }
+      <Normal> { 0.406720 0.837519 0.364788 }
+    }
+    <Vertex> 3152 {
+      -9.3693113327 -45.88621521 6.1670498848
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.482593 -0.026646 0.875439 }
+        <Binormal> { -0.840104 0.294252 -0.454159 }
+      }
+      <Normal> { 0.228095 0.953673 0.195959 }
+    }
+    <Vertex> 3153 {
+      -11.2332687378 -45.2640304565 5.01299858093
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.550582 -0.075191 0.831388 }
+        <Binormal> { -0.723732 0.538988 -0.430541 }
+      }
+      <Normal> { 0.406720 0.837519 0.364788 }
+    }
+    <Vertex> 3154 {
+      -11.5796804428 -45.4657363892 5.22923469543
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.737404 -0.369321 0.565541 }
+        <Binormal> { -0.617402 0.553255 -0.443728 }
+      }
+      <Normal> { -0.101901 0.550707 0.828425 }
+    }
+    <Vertex> 3155 {
+      -9.95922851563 -45.9980201721 6.59095048904
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { -0.802631 -0.152120 0.576751 }
+        <Binormal> { -0.585585 0.295494 -0.736988 }
+      }
+      <Normal> { -0.072481 0.904477 0.420240 }
+    }
+    <Vertex> 3156 {
+      -9.3693113327 -45.88621521 6.1670498848
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.482593 -0.026646 0.875439 }
+        <Binormal> { -0.840104 0.294252 -0.454159 }
+      }
+      <Normal> { 0.228095 0.953673 0.195959 }
+    }
+    <Vertex> 3157 {
+      -9.95922851563 -45.9980201721 6.59095048904
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { -0.802631 -0.152120 0.576751 }
+        <Binormal> { -0.585585 0.295494 -0.736988 }
+      }
+      <Normal> { -0.072481 0.904477 0.420240 }
+    }
+    <Vertex> 3158 {
+      -7.951379776 -46.6358985901 8.6721162796
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.531419 -0.149597 0.833795 }
+        <Binormal> { -0.746313 0.316891 0.532518 }
+      }
+      <Normal> { 0.472976 0.868923 0.145787 }
+    }
+    <Vertex> 3159 {
+      -7.38470172882 -46.8359718323 7.40207386017
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.278129 0.064673 0.958364 }
+        <Binormal> { -0.709830 0.658197 -0.250418 }
+      }
+      <Normal> { 0.643544 0.750725 0.149022 }
+    }
+    <Vertex> 3160 {
+      -11.9042377472 -44.2125701904 4.80926990509
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.158442 0.205322 0.965784 }
+        <Binormal> { -0.631066 0.702813 -0.252946 }
+      }
+      <Normal> { 0.697562 0.692496 0.183782 }
+    }
+    <Vertex> 3161 {
+      -11.2332687378 -45.2640304565 5.01299858093
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.550582 -0.075191 0.831388 }
+        <Binormal> { -0.723732 0.538988 -0.430541 }
+      }
+      <Normal> { 0.406720 0.837519 0.364788 }
+    }
+    <Vertex> 3162 {
+      -10.9220352173 -45.3759231567 4.23617744446
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.349197 0.145505 0.925683 }
+        <Binormal> { -0.884260 0.202918 -0.365467 }
+      }
+      <Normal> { 0.313669 0.915891 -0.250404 }
+    }
+    <Vertex> 3163 {
+      -11.9410953522 -44.4834823608 4.45992517471
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.083084 0.610693 0.787496 }
+        <Binormal> { -0.889924 0.400124 -0.216401 }
+      }
+      <Normal> { 0.444563 0.663076 -0.602191 }
+    }
+    <Vertex> 3164 {
+      -11.9042377472 -44.2125701904 4.80926990509
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.158442 0.205322 0.965784 }
+        <Binormal> { -0.631066 0.702813 -0.252946 }
+      }
+      <Normal> { 0.697562 0.692496 0.183782 }
+    }
+    <Vertex> 3165 {
+      -11.9410953522 -44.4834823608 4.45992517471
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.083084 0.610693 0.787496 }
+        <Binormal> { -0.889924 0.400124 -0.216401 }
+      }
+      <Normal> { 0.444563 0.663076 -0.602191 }
+    }
+    <Vertex> 3166 {
+      -13.0206918716 -43.8855476379 4.52873849869
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.975725 0.135288 0.172214 }
+        <Binormal> { -0.207544 0.809257 0.540163 }
+      }
+      <Normal> { 0.164892 0.576464 -0.800287 }
+    }
+    <Vertex> 3167 {
+      -12.869436264 -43.2817878723 4.98730802536
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.306814 0.521500 0.796180 }
+        <Binormal> { -0.744482 0.368195 0.045723 }
+      }
+      <Normal> { 0.439589 0.896207 -0.059328 }
+    }
+    <Vertex> 3168 {
+      -11.9042377472 -44.2125701904 4.80926990509
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.158442 0.205322 0.965784 }
+        <Binormal> { -0.631066 0.702813 -0.252946 }
+      }
+      <Normal> { 0.697562 0.692496 0.183782 }
+    }
+    <Vertex> 3169 {
+      -12.869436264 -43.2817878723 4.98730802536
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.306814 0.521500 0.796180 }
+        <Binormal> { -0.744482 0.368195 0.045723 }
+      }
+      <Normal> { 0.439589 0.896207 -0.059328 }
+    }
+    <Vertex> 3170 {
+      -12.785610199 -43.4859733582 5.13877391815
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.092335 -0.747091 0.658278 }
+        <Binormal> { -0.878566 0.058832 0.190004 }
+      }
+      <Normal> { 0.220771 0.271493 0.936766 }
+    }
+    <Vertex> 3171 {
+      -11.94460392 -44.3600196838 4.96763706207
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.183387 -0.669872 0.719473 }
+        <Binormal> { -0.828299 0.352784 0.117337 }
+      }
+      <Normal> { 0.255562 0.293680 0.921079 }
+    }
+    <Vertex> 3172 {
+      -11.9042377472 -44.2125701904 4.80926990509
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.158442 0.205322 0.965784 }
+        <Binormal> { -0.631066 0.702813 -0.252946 }
+      }
+      <Normal> { 0.697562 0.692496 0.183782 }
+    }
+    <Vertex> 3173 {
+      -11.94460392 -44.3600196838 4.96763706207
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.183387 -0.669872 0.719473 }
+        <Binormal> { -0.828299 0.352784 0.117337 }
+      }
+      <Normal> { 0.255562 0.293680 0.921079 }
+    }
+    <Vertex> 3174 {
+      -11.5796804428 -45.4657363892 5.22923469543
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.737404 -0.369321 0.565541 }
+        <Binormal> { -0.617402 0.553255 -0.443728 }
+      }
+      <Normal> { -0.101901 0.550707 0.828425 }
+    }
+    <Vertex> 3175 {
+      -11.2332687378 -45.2640304565 5.01299858093
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.550582 -0.075191 0.831388 }
+        <Binormal> { -0.723732 0.538988 -0.430541 }
+      }
+      <Normal> { 0.406720 0.837519 0.364788 }
+    }
+    <Vertex> 3176 {
+      -10.6843729019 -46.133934021 6.27974700928
+      <UV>  {
+        0.833333 0.333333
+        <Tangent> { 0.668158 -0.177895 0.722439 }
+        <Binormal> { -0.706545 -0.455388 0.541322 }
+      }
+      <Normal> { -0.219977 0.868740 0.443709 }
+    }
+    <Vertex> 3177 {
+      -10.0612516403 -46.2517166138 7.5200881958
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.625095 -0.088758 0.775486 }
+        <Binormal> { -0.779823 -0.055274 0.622265 }
+      }
+      <Normal> { 0.037111 0.990204 0.134465 }
+    }
+    <Vertex> 3178 {
+      -7.951379776 -46.6358985901 8.6721162796
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.531419 -0.149597 0.833795 }
+        <Binormal> { -0.746313 0.316891 0.532518 }
+      }
+      <Normal> { 0.472976 0.868923 0.145787 }
+    }
+    <Vertex> 3179 {
+      -9.95922851563 -45.9980201721 6.59095048904
+      <UV>  {
+        0.750000 -0.000000
+        <Tangent> { 0.706327 -0.227797 0.670231 }
+        <Binormal> { -0.701938 -0.345406 0.622346 }
+      }
+      <Normal> { -0.072481 0.904477 0.420240 }
+    }
+    <Vertex> 3180 {
+      -10.6843729019 -46.133934021 6.27974700928
+      <UV>  {
+        0.833333 0.333333
+        <Tangent> { 0.668158 -0.177895 0.722439 }
+        <Binormal> { -0.706545 -0.455388 0.541322 }
+      }
+      <Normal> { -0.219977 0.868740 0.443709 }
+    }
+    <Vertex> 3181 {
+      -9.95922851563 -45.9980201721 6.59095048904
+      <UV>  {
+        0.750000 -0.000000
+        <Tangent> { 0.706327 -0.227797 0.670231 }
+        <Binormal> { -0.701938 -0.345406 0.622346 }
+      }
+      <Normal> { -0.072481 0.904477 0.420240 }
+    }
+    <Vertex> 3182 {
+      -11.5796804428 -45.4657363892 5.22923469543
+      <UV>  {
+        0.500000 -0.000000
+        <Tangent> { 0.628836 -0.543362 0.556168 }
+        <Binormal> { -0.756420 -0.577618 0.290935 }
+      }
+      <Normal> { -0.101901 0.550707 0.828425 }
+    }
+    <Vertex> 3183 {
+      -11.8340759277 -45.8011474609 5.22124004364
+      <UV>  {
+        0.708333 0.416667
+        <Tangent> { 0.606742 -0.547468 0.576319 }
+        <Binormal> { -0.764145 -0.597349 0.237038 }
+      }
+      <Normal> { -0.180944 0.553941 0.812647 }
+    }
+    <Vertex> 3184 {
+      -10.6843729019 -46.133934021 6.27974700928
+      <UV>  {
+        0.833333 0.333333
+        <Tangent> { 0.668158 -0.177895 0.722439 }
+        <Binormal> { -0.706545 -0.455388 0.541322 }
+      }
+      <Normal> { -0.219977 0.868740 0.443709 }
+    }
+    <Vertex> 3185 {
+      -11.8340759277 -45.8011474609 5.22124004364
+      <UV>  {
+        0.708333 0.416667
+        <Tangent> { 0.606742 -0.547468 0.576319 }
+        <Binormal> { -0.764145 -0.597349 0.237038 }
+      }
+      <Normal> { -0.180944 0.553941 0.812647 }
+    }
+    <Vertex> 3186 {
+      -12.6800937653 -46.1402893066 5.60956001282
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.981634 0.109079 -0.156430 }
+        <Binormal> { 0.188602 0.433726 -0.881085 }
+      }
+      <Normal> { 0.028260 0.894406 0.446333 }
+    }
+    <Vertex> 3187 {
+      -10.0612516403 -46.2517166138 7.5200881958
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.625095 -0.088758 0.775486 }
+        <Binormal> { -0.779823 -0.055274 0.622265 }
+      }
+      <Normal> { 0.037111 0.990204 0.134465 }
+    }
+    <Vertex> 3188 {
+      -12.0360155106 -44.9143371582 4.99587869644
+      <UV>  {
+        0.500000 0.333333
+        <Tangent> { 0.577748 -0.812341 0.079430 }
+        <Binormal> { -0.814728 -0.569013 0.106700 }
+      }
+      <Normal> { 0.022736 0.152715 0.988006 }
+    }
+    <Vertex> 3189 {
+      -11.8340759277 -45.8011474609 5.22124004364
+      <UV>  {
+        0.708333 0.416667
+        <Tangent> { 0.606742 -0.547468 0.576319 }
+        <Binormal> { -0.764145 -0.597349 0.237038 }
+      }
+      <Normal> { -0.180944 0.553941 0.812647 }
+    }
+    <Vertex> 3190 {
+      -11.5796804428 -45.4657363892 5.22923469543
+      <UV>  {
+        0.500000 -0.000000
+        <Tangent> { 0.628836 -0.543362 0.556168 }
+        <Binormal> { -0.756420 -0.577618 0.290935 }
+      }
+      <Normal> { -0.101901 0.550707 0.828425 }
+    }
+    <Vertex> 3191 {
+      -11.94460392 -44.3600196838 4.96763706207
+      <UV>  {
+        0.250000 -0.000000
+        <Tangent> { 0.519821 -0.853385 0.038993 }
+        <Binormal> { -0.797487 -0.468831 0.370754 }
+      }
+      <Normal> { 0.255562 0.293680 0.921079 }
+    }
+    <Vertex> 3192 {
+      -12.0360155106 -44.9143371582 4.99587869644
+      <UV>  {
+        0.500000 0.333333
+        <Tangent> { 0.577748 -0.812341 0.079430 }
+        <Binormal> { -0.814728 -0.569013 0.106700 }
+      }
+      <Normal> { 0.022736 0.152715 0.988006 }
+    }
+    <Vertex> 3193 {
+      -11.94460392 -44.3600196838 4.96763706207
+      <UV>  {
+        0.250000 -0.000000
+        <Tangent> { 0.519821 -0.853385 0.038993 }
+        <Binormal> { -0.797487 -0.468831 0.370754 }
+      }
+      <Normal> { 0.255562 0.293680 0.921079 }
+    }
+    <Vertex> 3194 {
+      -12.785610199 -43.4859733582 5.13877391815
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.927850 -0.369078 -0.053629 }
+        <Binormal> { -0.331180 -0.881018 0.333386 }
+      }
+      <Normal> { 0.220771 0.271493 0.936766 }
+    }
+    <Vertex> 3195 {
+      -12.9054822922 -44.6285820007 5.08613395691
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.772903 -0.634441 -0.010274 }
+        <Binormal> { -0.626602 -0.765655 0.142163 }
+      }
+      <Normal> { 0.075137 0.122257 0.989624 }
+    }
+    <Vertex> 3196 {
+      -12.0360155106 -44.9143371582 4.99587869644
+      <UV>  {
+        0.500000 0.333333
+        <Tangent> { 0.577748 -0.812341 0.079430 }
+        <Binormal> { -0.814728 -0.569013 0.106700 }
+      }
+      <Normal> { 0.022736 0.152715 0.988006 }
+    }
+    <Vertex> 3197 {
+      -12.9054822922 -44.6285820007 5.08613395691
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.772903 -0.634441 -0.010274 }
+        <Binormal> { -0.626602 -0.765655 0.142163 }
+      }
+      <Normal> { 0.075137 0.122257 0.989624 }
+    }
+    <Vertex> 3198 {
+      -12.6800937653 -46.1402893066 5.60956001282
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.981634 0.109079 -0.156430 }
+        <Binormal> { 0.188602 0.433726 -0.881085 }
+      }
+      <Normal> { 0.028260 0.894406 0.446333 }
+    }
+    <Vertex> 3199 {
+      -11.8340759277 -45.8011474609 5.22124004364
+      <UV>  {
+        0.708333 0.416667
+        <Tangent> { 0.606742 -0.547468 0.576319 }
+        <Binormal> { -0.764145 -0.597349 0.237038 }
+      }
+      <Normal> { -0.180944 0.553941 0.812647 }
+    }
+    <Vertex> 3200 {
+      -33.2763633728 -46.7838897705 9.13347148895
+      <UV>  {
+        0.666667 0.500000
+        <Tangent> { 0.974263 0.091730 -0.205904 }
+        <Binormal> { 0.205153 0.017597 0.978546 }
+      }
+      <Normal> { -0.093692 0.995575 0.001740 }
+    }
+    <Vertex> 3201 {
+      -32.0146827698 -46.7259521484 10.0120801926
+      <UV>  {
+        0.500000 0.708333
+        <Tangent> { 0.993686 0.065812 -0.090870 }
+        <Binormal> { 0.094965 -0.062035 0.993538 }
+      }
+      <Normal> { -0.057192 0.996063 0.067660 }
+    }
+    <Vertex> 3202 {
+      -28.2868919373 -46.1725234985 8.11273765564
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.986172 0.094376 -0.136224 }
+        <Binormal> { 0.141294 -0.171257 0.904231 }
+      }
+      <Normal> { -0.421705 0.876553 0.231910 }
+    }
+    <Vertex> 3203 {
+      -31.9434585571 -46.670009613 7.8459353447
+      <UV>  {
+        0.500000 0.291667
+        <Tangent> { 0.970058 0.097949 -0.222246 }
+        <Binormal> { 0.219026 0.042552 0.974760 }
+      }
+      <Normal> { -0.110874 0.993652 -0.018464 }
+    }
+    <Vertex> 3204 {
+      -33.2763633728 -46.7838897705 9.13347148895
+      <UV>  {
+        0.666667 0.500000
+        <Tangent> { 0.974263 0.091730 -0.205904 }
+        <Binormal> { 0.205153 0.017597 0.978546 }
+      }
+      <Normal> { -0.093692 0.995575 0.001740 }
+    }
+    <Vertex> 3205 {
+      -31.9434585571 -46.670009613 7.8459353447
+      <UV>  {
+        0.500000 0.291667
+        <Tangent> { 0.970058 0.097949 -0.222246 }
+        <Binormal> { 0.219026 0.042552 0.974760 }
+      }
+      <Normal> { -0.110874 0.993652 -0.018464 }
+    }
+    <Vertex> 3206 {
+      -35.836479187 -47.0156555176 7.77505731583
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.964528 0.081654 -0.251034 }
+        <Binormal> { 0.247759 0.048129 0.967602 }
+      }
+      <Normal> { -0.086306 0.995880 -0.027436 }
+    }
+    <Vertex> 3207 {
+      -35.836479187 -47.0156555176 9.74517917633
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.968873 0.087711 -0.231500 }
+        <Binormal> { 0.229983 0.026969 0.972743 }
+      }
+      <Normal> { -0.081881 0.996582 -0.008271 }
+    }
+    <Vertex> 3208 {
+      -33.2763633728 -46.7838897705 9.13347148895
+      <UV>  {
+        0.666667 0.500000
+        <Tangent> { 0.974263 0.091730 -0.205904 }
+        <Binormal> { 0.205153 0.017597 0.978546 }
+      }
+      <Normal> { -0.093692 0.995575 0.001740 }
+    }
+    <Vertex> 3209 {
+      -35.836479187 -47.0156555176 9.74517917633
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.968873 0.087711 -0.231500 }
+        <Binormal> { 0.229983 0.026969 0.972743 }
+      }
+      <Normal> { -0.081881 0.996582 -0.008271 }
+    }
+    <Vertex> 3210 {
+      -35.836479187 -46.9374694824 11.6720666885
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.997383 0.045478 -0.056212 }
+        <Binormal> { 0.050311 0.121798 0.991223 }
+      }
+      <Normal> { -0.041932 0.991913 -0.119755 }
+    }
+    <Vertex> 3211 {
+      -32.0146827698 -46.7259521484 10.0120801926
+      <UV>  {
+        0.500000 0.708333
+        <Tangent> { 0.993686 0.065812 -0.090870 }
+        <Binormal> { 0.094965 -0.062035 0.993538 }
+      }
+      <Normal> { -0.057192 0.996063 0.067660 }
+    }
+    <Vertex> 3212 {
+      -30.7897491455 -46.7838897705 10.7839269638
+      <UV>  {
+        0.333333 0.833333
+        <Tangent> { 0.999881 0.015094 0.003303 }
+        <Binormal> { -0.001740 -0.102425 0.994728 }
+      }
+      <Normal> { -0.014435 0.994629 0.102390 }
+    }
+    <Vertex> 3213 {
+      -31.7773551941 -46.8223190308 11.9317550659
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.999656 0.016972 0.020005 }
+        <Binormal> { -0.023447 0.236082 0.971348 }
+      }
+      <Normal> { -0.025361 0.971252 -0.236671 }
+    }
+    <Vertex> 3214 {
+      -28.4814758301 -46.8125953674 11.8192577362
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.932572 -0.260884 -0.249496 }
+        <Binormal> { 0.318840 -0.290416 -0.888099 }
+      }
+      <Normal> { -0.011170 0.949187 -0.314402 }
+    }
+    <Vertex> 3215 {
+      -28.8122997284 -46.727104187 10.2447633743
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.998857 -0.025622 0.040359 }
+        <Binormal> { -0.043795 -0.152053 0.987366 }
+      }
+      <Normal> { 0.014344 0.988128 0.152806 }
+    }
+    <Vertex> 3216 {
+      -30.7897491455 -46.7838897705 10.7839269638
+      <UV>  {
+        0.333333 0.833333
+        <Tangent> { 0.999881 0.015094 0.003303 }
+        <Binormal> { -0.001740 -0.102425 0.994728 }
+      }
+      <Normal> { -0.014435 0.994629 0.102390 }
+    }
+    <Vertex> 3217 {
+      -28.8122997284 -46.727104187 10.2447633743
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.998857 -0.025622 0.040359 }
+        <Binormal> { -0.043795 -0.152053 0.987366 }
+      }
+      <Normal> { 0.014344 0.988128 0.152806 }
+    }
+    <Vertex> 3218 {
+      -28.2868919373 -46.1725234985 8.11273765564
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.986172 0.094376 -0.136224 }
+        <Binormal> { 0.141294 -0.171257 0.904231 }
+      }
+      <Normal> { -0.421705 0.876553 0.231910 }
+    }
+    <Vertex> 3219 {
+      -32.0146827698 -46.7259521484 10.0120801926
+      <UV>  {
+        0.500000 0.708333
+        <Tangent> { 0.993686 0.065812 -0.090870 }
+        <Binormal> { 0.094965 -0.062035 0.993538 }
+      }
+      <Normal> { -0.057192 0.996063 0.067660 }
+    }
+    <Vertex> 3220 {
+      -30.7897491455 -46.7838897705 10.7839269638
+      <UV>  {
+        0.333333 0.833333
+        <Tangent> { 0.999881 0.015094 0.003303 }
+        <Binormal> { -0.001740 -0.102425 0.994728 }
+      }
+      <Normal> { -0.014435 0.994629 0.102390 }
+    }
+    <Vertex> 3221 {
+      -32.0146827698 -46.7259521484 10.0120801926
+      <UV>  {
+        0.500000 0.708333
+        <Tangent> { 0.993686 0.065812 -0.090870 }
+        <Binormal> { 0.094965 -0.062035 0.993538 }
+      }
+      <Normal> { -0.057192 0.996063 0.067660 }
+    }
+    <Vertex> 3222 {
+      -35.836479187 -46.9374694824 11.6720666885
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.997383 0.045478 -0.056212 }
+        <Binormal> { 0.050311 0.121798 0.991223 }
+      }
+      <Normal> { -0.041932 0.991913 -0.119755 }
+    }
+    <Vertex> 3223 {
+      -31.7773551941 -46.8223190308 11.9317550659
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.999656 0.016972 0.020005 }
+        <Binormal> { -0.023447 0.236082 0.971348 }
+      }
+      <Normal> { -0.025361 0.971252 -0.236671 }
+    }
+    <Vertex> 3224 {
+      -30.5048561096 -46.5601272583 7.07071399689
+      <UV>  {
+        0.333333 0.166667
+        <Tangent> { 0.977285 0.107806 -0.182460 }
+        <Binormal> { 0.171466 0.103746 0.979694 }
+      }
+      <Normal> { -0.123325 0.988861 -0.083132 }
+    }
+    <Vertex> 3225 {
+      -31.9434585571 -46.670009613 7.8459353447
+      <UV>  {
+        0.500000 0.291667
+        <Tangent> { 0.970058 0.097949 -0.222246 }
+        <Binormal> { 0.219026 0.042552 0.974760 }
+      }
+      <Normal> { -0.110874 0.993652 -0.018464 }
+    }
+    <Vertex> 3226 {
+      -28.2868919373 -46.1725234985 8.11273765564
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.986172 0.094376 -0.136224 }
+        <Binormal> { 0.141294 -0.171257 0.904231 }
+      }
+      <Normal> { -0.421705 0.876553 0.231910 }
+    }
+    <Vertex> 3227 {
+      -28.4710578918 -46.1985702515 7.0617442131
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { 0.976575 0.152745 -0.151562 }
+        <Binormal> { 0.094859 0.308240 0.921859 }
+      }
+      <Normal> { -0.397290 0.881832 -0.253975 }
+    }
+    <Vertex> 3228 {
+      -30.5048561096 -46.5601272583 7.07071399689
+      <UV>  {
+        0.333333 0.166667
+        <Tangent> { 0.977285 0.107806 -0.182460 }
+        <Binormal> { 0.171466 0.103746 0.979694 }
+      }
+      <Normal> { -0.123325 0.988861 -0.083132 }
+    }
+    <Vertex> 3229 {
+      -28.4710578918 -46.1985702515 7.0617442131
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { 0.976575 0.152745 -0.151562 }
+        <Binormal> { 0.094859 0.308240 0.921859 }
+      }
+      <Normal> { -0.397290 0.881832 -0.253975 }
+    }
+    <Vertex> 3230 {
+      -27.243730545 -46.2700843811 6.11081171036
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.976916 0.019711 -0.212713 }
+        <Binormal> { 0.175618 0.491544 0.852098 }
+      }
+      <Normal> { -0.157964 0.869045 -0.468764 }
+    }
+    <Vertex> 3231 {
+      -31.5272483826 -46.6787719727 6.64657020569
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.978213 0.084877 -0.189461 }
+        <Binormal> { 0.176554 0.139917 0.974258 }
+      }
+      <Normal> { -0.102542 0.987060 -0.123173 }
+    }
+    <Vertex> 3232 {
+      -30.5048561096 -46.5601272583 7.07071399689
+      <UV>  {
+        0.333333 0.166667
+        <Tangent> { 0.977285 0.107806 -0.182460 }
+        <Binormal> { 0.171466 0.103746 0.979694 }
+      }
+      <Normal> { -0.123325 0.988861 -0.083132 }
+    }
+    <Vertex> 3233 {
+      -31.5272483826 -46.6787719727 6.64657020569
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.978213 0.084877 -0.189461 }
+        <Binormal> { 0.176554 0.139917 0.974258 }
+      }
+      <Normal> { -0.102542 0.987060 -0.123173 }
+    }
+    <Vertex> 3234 {
+      -35.836479187 -47.0156555176 7.77505731583
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.964528 0.081654 -0.251034 }
+        <Binormal> { 0.247759 0.048129 0.967602 }
+      }
+      <Normal> { -0.086306 0.995880 -0.027436 }
+    }
+    <Vertex> 3235 {
+      -31.9434585571 -46.670009613 7.8459353447
+      <UV>  {
+        0.500000 0.291667
+        <Tangent> { 0.970058 0.097949 -0.222246 }
+        <Binormal> { 0.219026 0.042552 0.974760 }
+      }
+      <Normal> { -0.110874 0.993652 -0.018464 }
+    }
+    <Vertex> 3236 {
+      -14.5752744675 -46.0318489075 8.19516944885
+      <UV>  {
+        0.333333 0.500000
+        <Tangent> { 0.985506 -0.043827 0.163878 }
+        <Binormal> { -0.160488 0.072077 0.984394 }
+      }
+      <Normal> { 0.054231 0.996460 -0.064119 }
+    }
+    <Vertex> 3237 {
+      -15.7426595688 -46.1190795898 6.58052825928
+      <UV>  {
+        0.500000 0.291667
+        <Tangent> { 0.987755 -0.020751 0.154627 }
+        <Binormal> { -0.153510 0.046369 0.986844 }
+      }
+      <Normal> { 0.047609 0.998077 -0.039491 }
+    }
+    <Vertex> 3238 {
+      -18.9100933075 -45.6639175415 7.62107467651
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.997118 -0.053161 0.054127 }
+        <Binormal> { -0.062212 -0.234690 0.915545 }
+      }
+      <Normal> { 0.355693 0.899228 0.254677 }
+    }
+    <Vertex> 3239 {
+      -15.7426595688 -45.8856658936 9.6216211319
+      <UV>  {
+        0.500000 0.708333
+        <Tangent> { 0.998810 -0.044676 0.019566 }
+        <Binormal> { -0.017277 0.051025 0.998512 }
+      }
+      <Normal> { 0.040407 0.997894 -0.050295 }
+    }
+    <Vertex> 3240 {
+      -14.5752744675 -46.0318489075 8.19516944885
+      <UV>  {
+        0.333333 0.500000
+        <Tangent> { 0.985506 -0.043827 0.163878 }
+        <Binormal> { -0.160488 0.072077 0.984394 }
+      }
+      <Normal> { 0.054231 0.996460 -0.064119 }
+    }
+    <Vertex> 3241 {
+      -15.7426595688 -45.8856658936 9.6216211319
+      <UV>  {
+        0.500000 0.708333
+        <Tangent> { 0.998810 -0.044676 0.019566 }
+        <Binormal> { -0.017277 0.051025 0.998512 }
+      }
+      <Normal> { 0.040407 0.997894 -0.050295 }
+    }
+    <Vertex> 3242 {
+      -12.8457536697 -45.8217735291 11.4669027328
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.999497 -0.031689 0.001147 }
+        <Binormal> { 0.007181 0.261406 0.965032 }
+      }
+      <Normal> { 0.048250 0.963988 -0.261483 }
+    }
+    <Vertex> 3243 {
+      -12.2421474457 -46.1322441101 8.74668216705
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.972328 -0.041840 0.229842 }
+        <Binormal> { -0.226727 0.067761 0.971486 }
+      }
+      <Normal> { 0.043703 0.997253 -0.059358 }
+    }
+    <Vertex> 3244 {
+      -14.5752744675 -46.0318489075 8.19516944885
+      <UV>  {
+        0.333333 0.500000
+        <Tangent> { 0.985506 -0.043827 0.163878 }
+        <Binormal> { -0.160488 0.072077 0.984394 }
+      }
+      <Normal> { 0.054231 0.996460 -0.064119 }
+    }
+    <Vertex> 3245 {
+      -12.2421474457 -46.1322441101 8.74668216705
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.972328 -0.041840 0.229842 }
+        <Binormal> { -0.226727 0.067761 0.971486 }
+      }
+      <Normal> { 0.043703 0.997253 -0.059358 }
+    }
+    <Vertex> 3246 {
+      -12.6800937653 -46.1402893066 5.60956001282
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.980527 -0.013741 0.195902 }
+        <Binormal> { -0.181349 -0.432106 0.877378 }
+      }
+      <Normal> { 0.028260 0.894406 0.446333 }
+    }
+    <Vertex> 3247 {
+      -15.7426595688 -46.1190795898 6.58052825928
+      <UV>  {
+        0.500000 0.291667
+        <Tangent> { 0.987755 -0.020751 0.154627 }
+        <Binormal> { -0.153510 0.046369 0.986844 }
+      }
+      <Normal> { 0.047609 0.998077 -0.039491 }
+    }
+    <Vertex> 3248 {
+      -16.9394226074 -46.2185783386 5.76229476929
+      <UV>  {
+        0.666667 0.166667
+        <Tangent> { 0.997410 -0.041555 0.058709 }
+        <Binormal> { -0.059551 -0.019326 0.998020 }
+      }
+      <Normal> { 0.037385 0.999054 0.021577 }
+    }
+    <Vertex> 3249 {
+      -16.0988826752 -45.9154319763 5.16372203827
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.998177 -0.011763 0.059200 }
+        <Binormal> { -0.051042 -0.687762 0.723957 }
+      }
+      <Normal> { -0.017518 0.725486 0.687979 }
+    }
+    <Vertex> 3250 {
+      -19.4436321259 -46.0605812073 5.20842695236
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.997865 -0.018482 -0.062644 }
+        <Binormal> { 0.058903 -0.158138 0.984941 }
+      }
+      <Normal> { -0.008850 0.987213 0.159032 }
+    }
+    <Vertex> 3251 {
+      -18.6978435516 -45.9387664795 6.17211341858
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { 0.993367 -0.114913 -0.004146 }
+        <Binormal> { 0.026391 0.193999 0.946149 }
+      }
+      <Normal> { 0.363933 0.910367 -0.196814 }
+    }
+    <Vertex> 3252 {
+      -16.9394226074 -46.2185783386 5.76229476929
+      <UV>  {
+        0.666667 0.166667
+        <Tangent> { 0.997410 -0.041555 0.058709 }
+        <Binormal> { -0.059551 -0.019326 0.998020 }
+      }
+      <Normal> { 0.037385 0.999054 0.021577 }
+    }
+    <Vertex> 3253 {
+      -18.6978435516 -45.9387664795 6.17211341858
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { 0.993367 -0.114913 -0.004146 }
+        <Binormal> { 0.026391 0.193999 0.946149 }
+      }
+      <Normal> { 0.363933 0.910367 -0.196814 }
+    }
+    <Vertex> 3254 {
+      -18.9100933075 -45.6639175415 7.62107467651
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.997118 -0.053161 0.054127 }
+        <Binormal> { -0.062212 -0.234690 0.915545 }
+      }
+      <Normal> { 0.355693 0.899228 0.254677 }
+    }
+    <Vertex> 3255 {
+      -15.7426595688 -46.1190795898 6.58052825928
+      <UV>  {
+        0.500000 0.291667
+        <Tangent> { 0.987755 -0.020751 0.154627 }
+        <Binormal> { -0.153510 0.046369 0.986844 }
+      }
+      <Normal> { 0.047609 0.998077 -0.039491 }
+    }
+    <Vertex> 3256 {
+      -16.9394226074 -46.2185783386 5.76229476929
+      <UV>  {
+        0.666667 0.166667
+        <Tangent> { 0.997410 -0.041555 0.058709 }
+        <Binormal> { -0.059551 -0.019326 0.998020 }
+      }
+      <Normal> { 0.037385 0.999054 0.021577 }
+    }
+    <Vertex> 3257 {
+      -15.7426595688 -46.1190795898 6.58052825928
+      <UV>  {
+        0.500000 0.291667
+        <Tangent> { 0.987755 -0.020751 0.154627 }
+        <Binormal> { -0.153510 0.046369 0.986844 }
+      }
+      <Normal> { 0.047609 0.998077 -0.039491 }
+    }
+    <Vertex> 3258 {
+      -12.6800937653 -46.1402893066 5.60956001282
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.980527 -0.013741 0.195902 }
+        <Binormal> { -0.181349 -0.432106 0.877378 }
+      }
+      <Normal> { 0.028260 0.894406 0.446333 }
+    }
+    <Vertex> 3259 {
+      -16.0988826752 -45.9154319763 5.16372203827
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.998177 -0.011763 0.059200 }
+        <Binormal> { -0.051042 -0.687762 0.723957 }
+      }
+      <Normal> { -0.017518 0.725486 0.687979 }
+    }
+    <Vertex> 3260 {
+      -16.9394226074 -45.845123291 10.6280441284
+      <UV>  {
+        0.666667 0.833333
+        <Tangent> { 0.999405 -0.006610 -0.033843 }
+        <Binormal> { 0.034122 0.048082 0.998249 }
+      }
+      <Normal> { 0.005005 0.998810 -0.048280 }
+    }
+    <Vertex> 3261 {
+      -15.7426595688 -45.8856658936 9.6216211319
+      <UV>  {
+        0.500000 0.708333
+        <Tangent> { 0.998810 -0.044676 0.019566 }
+        <Binormal> { -0.017277 0.051025 0.998512 }
+      }
+      <Normal> { 0.040407 0.997894 -0.050295 }
+    }
+    <Vertex> 3262 {
+      -18.9100933075 -45.6639175415 7.62107467651
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.997118 -0.053161 0.054127 }
+        <Binormal> { -0.062212 -0.234690 0.915545 }
+      }
+      <Normal> { 0.355693 0.899228 0.254677 }
+    }
+    <Vertex> 3263 {
+      -19.2525119781 -45.8881149292 10.0453538895
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { 0.998731 0.023114 -0.044741 }
+        <Binormal> { 0.044986 -0.010280 0.998906 }
+      }
+      <Normal> { -0.015473 0.999817 0.010987 }
+    }
+    <Vertex> 3264 {
+      -16.9394226074 -45.845123291 10.6280441284
+      <UV>  {
+        0.666667 0.833333
+        <Tangent> { 0.999405 -0.006610 -0.033843 }
+        <Binormal> { 0.034122 0.048082 0.998249 }
+      }
+      <Normal> { 0.005005 0.998810 -0.048280 }
+    }
+    <Vertex> 3265 {
+      -19.2525119781 -45.8881149292 10.0453538895
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { 0.998731 0.023114 -0.044741 }
+        <Binormal> { 0.044986 -0.010280 0.998906 }
+      }
+      <Normal> { -0.015473 0.999817 0.010987 }
+    }
+    <Vertex> 3266 {
+      -19.092502594 -45.7313919067 11.7471122742
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.941794 0.209259 0.263125 }
+        <Binormal> { -0.321791 0.340239 0.881189 }
+      }
+      <Normal> { -0.034120 0.928068 -0.370800 }
+    }
+    <Vertex> 3267 {
+      -16.0969352722 -45.6721687317 11.8927841187
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.998891 -0.014453 -0.044807 }
+        <Binormal> { 0.046991 0.363707 0.930270 }
+      }
+      <Normal> { 0.004212 0.931242 -0.364299 }
+    }
+    <Vertex> 3268 {
+      -16.9394226074 -45.845123291 10.6280441284
+      <UV>  {
+        0.666667 0.833333
+        <Tangent> { 0.999405 -0.006610 -0.033843 }
+        <Binormal> { 0.034122 0.048082 0.998249 }
+      }
+      <Normal> { 0.005005 0.998810 -0.048280 }
+    }
+    <Vertex> 3269 {
+      -16.0969352722 -45.6721687317 11.8927841187
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.998891 -0.014453 -0.044807 }
+        <Binormal> { 0.046991 0.363707 0.930270 }
+      }
+      <Normal> { 0.004212 0.931242 -0.364299 }
+    }
+    <Vertex> 3270 {
+      -12.8457536697 -45.8217735291 11.4669027328
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.999497 -0.031689 0.001147 }
+        <Binormal> { 0.007181 0.261406 0.965032 }
+      }
+      <Normal> { 0.048250 0.963988 -0.261483 }
+    }
+    <Vertex> 3271 {
+      -15.7426595688 -45.8856658936 9.6216211319
+      <UV>  {
+        0.500000 0.708333
+        <Tangent> { 0.998810 -0.044676 0.019566 }
+        <Binormal> { -0.017277 0.051025 0.998512 }
+      }
+      <Normal> { 0.040407 0.997894 -0.050295 }
+    }
+    <Vertex> 3272 {
+      -23.4180984497 -45.1309356689 6.50823068619
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.995586 0.027073 -0.089869 }
+        <Binormal> { 0.036621 0.769526 0.637521 }
+      }
+      <Normal> { -0.084475 0.638050 -0.765313 }
+    }
+    <Vertex> 3273 {
+      -23.1062393188 -46.0454788208 5.67135334015
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.993021 0.026672 -0.114882 }
+        <Binormal> { 0.079942 0.563909 0.821927 }
+      }
+      <Normal> { -0.089022 0.825312 -0.557573 }
+    }
+    <Vertex> 3274 {
+      -27.243730545 -46.2700843811 6.11081171036
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.976916 0.019711 -0.212713 }
+        <Binormal> { 0.175618 0.491544 0.852098 }
+      }
+      <Normal> { -0.157964 0.869045 -0.468764 }
+    }
+    <Vertex> 3275 {
+      -26.5167827606 -45.2720832825 6.88316249847
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.991746 0.045175 -0.119998 }
+        <Binormal> { 0.041759 0.760983 0.631608 }
+      }
+      <Normal> { -0.260720 0.624989 -0.735771 }
+    }
+    <Vertex> 3276 {
+      -23.4180984497 -45.1309356689 6.50823068619
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.995586 0.027073 -0.089869 }
+        <Binormal> { 0.036621 0.769526 0.637521 }
+      }
+      <Normal> { -0.084475 0.638050 -0.765313 }
+    }
+    <Vertex> 3277 {
+      -26.5167827606 -45.2720832825 6.88316249847
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.991746 0.045175 -0.119998 }
+        <Binormal> { 0.041759 0.760983 0.631608 }
+      }
+      <Normal> { -0.260720 0.624989 -0.735771 }
+    }
+    <Vertex> 3278 {
+      -26.6389160156 -44.1815261841 7.62454938889
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.838084 0.538070 0.089982 }
+        <Binormal> { -0.515886 0.728224 0.450317 }
+      }
+      <Normal> { -0.199042 0.409528 -0.890286 }
+    }
+    <Vertex> 3279 {
+      -23.3979644775 -44.0939979553 7.30324935913
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.997435 0.039778 -0.059512 }
+        <Binormal> { -0.004683 0.865836 0.500248 }
+      }
+      <Normal> { -0.074068 0.498581 -0.863643 }
+    }
+    <Vertex> 3280 {
+      -23.4180984497 -45.1309356689 6.50823068619
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.995586 0.027073 -0.089869 }
+        <Binormal> { 0.036621 0.769526 0.637521 }
+      }
+      <Normal> { -0.084475 0.638050 -0.765313 }
+    }
+    <Vertex> 3281 {
+      -23.3979644775 -44.0939979553 7.30324935913
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.997435 0.039778 -0.059512 }
+        <Binormal> { -0.004683 0.865836 0.500248 }
+      }
+      <Normal> { -0.074068 0.498581 -0.863643 }
+    }
+    <Vertex> 3282 {
+      -20.1864509583 -43.9241981506 7.23956108093
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.877923 0.421779 0.226614 }
+        <Binormal> { -0.476669 0.804149 0.349957 }
+      }
+      <Normal> { 0.087436 0.440626 -0.893399 }
+    }
+    <Vertex> 3283 {
+      -20.361579895 -45.1443328857 6.32796525955
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.998256 -0.004376 -0.058874 }
+        <Binormal> { 0.044115 0.691238 0.696631 }
+      }
+      <Normal> { 0.148839 0.697195 -0.701224 }
+    }
+    <Vertex> 3284 {
+      -23.4180984497 -45.1309356689 6.50823068619
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.995586 0.027073 -0.089869 }
+        <Binormal> { 0.036621 0.769526 0.637521 }
+      }
+      <Normal> { -0.084475 0.638050 -0.765313 }
+    }
+    <Vertex> 3285 {
+      -20.361579895 -45.1443328857 6.32796525955
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.998256 -0.004376 -0.058874 }
+        <Binormal> { 0.044115 0.691238 0.696631 }
+      }
+      <Normal> { 0.148839 0.697195 -0.701224 }
+    }
+    <Vertex> 3286 {
+      -19.4436321259 -46.0605812073 5.20842695236
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.997865 -0.018482 -0.062644 }
+        <Binormal> { 0.058903 -0.158138 0.984941 }
+      }
+      <Normal> { -0.008850 0.987213 0.159032 }
+    }
+    <Vertex> 3287 {
+      -23.1062393188 -46.0454788208 5.67135334015
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.993021 0.026672 -0.114882 }
+        <Binormal> { 0.079942 0.563909 0.821927 }
+      }
+      <Normal> { -0.089022 0.825312 -0.557573 }
+    }
+    <Vertex> 3288 {
+      -27.7012958527 -45.5694389343 7.23361968994
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.694163 -0.090518 -0.714104 }
+        <Binormal> { 0.504608 0.764280 0.393639 }
+      }
+      <Normal> { -0.564928 0.640736 -0.519852 }
+    }
+    <Vertex> 3289 {
+      -26.5167827606 -45.2720832825 6.88316249847
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.873192 -0.040881 -0.485659 }
+        <Binormal> { 0.333610 0.769090 0.535076 }
+      }
+      <Normal> { -0.260720 0.624989 -0.735771 }
+    }
+    <Vertex> 3290 {
+      -27.243730545 -46.2700843811 6.11081171036
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.976916 0.019711 -0.212713 }
+        <Binormal> { 0.175618 0.491544 0.852098 }
+      }
+      <Normal> { -0.157964 0.869045 -0.468764 }
+    }
+    <Vertex> 3291 {
+      -28.4710578918 -46.1985702515 7.0617442131
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.461675 -0.043178 -0.885998 }
+        <Binormal> { 0.792268 0.469252 0.389966 }
+      }
+      <Normal> { -0.397290 0.881832 -0.253975 }
+    }
+    <Vertex> 3292 {
+      -27.7012958527 -45.5694389343 7.23361968994
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.694163 -0.090518 -0.714104 }
+        <Binormal> { 0.504608 0.764280 0.393639 }
+      }
+      <Normal> { -0.564928 0.640736 -0.519852 }
+    }
+    <Vertex> 3293 {
+      -28.4710578918 -46.1985702515 7.0617442131
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.461675 -0.043178 -0.885998 }
+        <Binormal> { 0.792268 0.469252 0.389966 }
+      }
+      <Normal> { -0.397290 0.881832 -0.253975 }
+    }
+    <Vertex> 3294 {
+      -28.2868919373 -46.1725234985 8.11273765564
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.336108 0.716644 -0.611108 }
+        <Binormal> { 0.701865 0.179760 0.596828 }
+      }
+      <Normal> { -0.421705 0.876553 0.231910 }
+    }
+    <Vertex> 3295 {
+      -27.7632770538 -45.0903091431 7.70106744766
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.509703 -0.223018 -0.830942 }
+        <Binormal> { 0.539344 0.817198 0.111506 }
+      }
+      <Normal> { -0.740715 0.542863 -0.395734 }
+    }
+    <Vertex> 3296 {
+      -27.7012958527 -45.5694389343 7.23361968994
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.694163 -0.090518 -0.714104 }
+        <Binormal> { 0.504608 0.764280 0.393639 }
+      }
+      <Normal> { -0.564928 0.640736 -0.519852 }
+    }
+    <Vertex> 3297 {
+      -27.7632770538 -45.0903091431 7.70106744766
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.509703 -0.223018 -0.830942 }
+        <Binormal> { 0.539344 0.817198 0.111506 }
+      }
+      <Normal> { -0.740715 0.542863 -0.395734 }
+    }
+    <Vertex> 3298 {
+      -26.6389160156 -44.1815261841 7.62454938889
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.829935 -0.121028 -0.544574 }
+        <Binormal> { 0.330768 0.847272 0.315792 }
+      }
+      <Normal> { -0.199042 0.409528 -0.890286 }
+    }
+    <Vertex> 3299 {
+      -26.5167827606 -45.2720832825 6.88316249847
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.873192 -0.040881 -0.485659 }
+        <Binormal> { 0.333610 0.769090 0.535076 }
+      }
+      <Normal> { -0.260720 0.624989 -0.735771 }
+    }
+    <Vertex> 3300 {
+      -19.3035697937 -45.3106079102 6.56151103973
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.534392 0.247830 0.808087 }
+        <Binormal> { -0.668992 0.704737 0.226274 }
+      }
+      <Normal> { 0.549333 0.678182 -0.488083 }
+    }
+    <Vertex> 3301 {
+      -18.6978435516 -45.9387664795 6.17211341858
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.213196 0.158502 0.964067 }
+        <Binormal> { -0.908850 0.392816 0.136402 }
+      }
+      <Normal> { 0.363933 0.910367 -0.196814 }
+    }
+    <Vertex> 3302 {
+      -19.4436321259 -46.0605812073 5.20842695236
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.701680 0.123770 0.701659 }
+        <Binormal> { -0.673004 -0.117800 0.693803 }
+      }
+      <Normal> { -0.008850 0.987213 0.159032 }
+    }
+    <Vertex> 3303 {
+      -20.361579895 -45.1443328857 6.32796525955
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.840291 0.170709 0.514558 }
+        <Binormal> { -0.478453 0.665818 0.560439 }
+      }
+      <Normal> { 0.148839 0.697195 -0.701224 }
+    }
+    <Vertex> 3304 {
+      -19.3035697937 -45.3106079102 6.56151103973
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.534392 0.247830 0.808087 }
+        <Binormal> { -0.668992 0.704737 0.226274 }
+      }
+      <Normal> { 0.549333 0.678182 -0.488083 }
+    }
+    <Vertex> 3305 {
+      -20.361579895 -45.1443328857 6.32796525955
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.840291 0.170709 0.514558 }
+        <Binormal> { -0.478453 0.665818 0.560439 }
+      }
+      <Normal> { 0.148839 0.697195 -0.701224 }
+    }
+    <Vertex> 3306 {
+      -20.1864509583 -43.9241981506 7.23956108093
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.877923 0.421779 0.226614 }
+        <Binormal> { -0.476669 0.804149 0.349957 }
+      }
+      <Normal> { 0.087436 0.440626 -0.893399 }
+    }
+    <Vertex> 3307 {
+      -19.2595043182 -44.7078475952 7.19155597687
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.319765 0.389516 0.863729 }
+        <Binormal> { -0.612880 0.775911 -0.123016 }
+      }
+      <Normal> { 0.745109 0.522935 -0.413862 }
+    }
+    <Vertex> 3308 {
+      -19.3035697937 -45.3106079102 6.56151103973
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.534392 0.247830 0.808087 }
+        <Binormal> { -0.668992 0.704737 0.226274 }
+      }
+      <Normal> { 0.549333 0.678182 -0.488083 }
+    }
+    <Vertex> 3309 {
+      -19.2595043182 -44.7078475952 7.19155597687
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.319765 0.389516 0.863729 }
+        <Binormal> { -0.612880 0.775911 -0.123016 }
+      }
+      <Normal> { 0.745109 0.522935 -0.413862 }
+    }
+    <Vertex> 3310 {
+      -18.9100933075 -45.6639175415 7.62107467651
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.010570 0.259472 0.965693 }
+        <Binormal> { -0.802296 0.340798 -0.082788 }
+      }
+      <Normal> { 0.355693 0.899228 0.254677 }
+    }
+    <Vertex> 3311 {
+      -18.6978435516 -45.9387664795 6.17211341858
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.213196 0.158502 0.964067 }
+        <Binormal> { -0.908850 0.392816 0.136402 }
+      }
+      <Normal> { 0.363933 0.910367 -0.196814 }
+    }
+    <Vertex> 3312 {
+      -27.7698802948 -44.427822113 7.90237522125
+      <UV>  {
+        0.333333 0.666667
+        <Tangent> { 0.414487 0.909520 0.031206 }
+        <Binormal> { 0.448669 -0.233969 0.859840 }
+      }
+      <Normal> { -0.761376 0.403760 0.507157 }
+    }
+    <Vertex> 3313 {
+      -27.2743663788 -43.6560668945 7.89144039154
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.478515 0.877223 0.038762 }
+        <Binormal> { 0.081106 -0.082857 0.873885 }
+      }
+      <Normal> { -0.543931 0.829096 0.129093 }
+    }
+    <Vertex> 3314 {
+      -26.6389160156 -44.1815261841 7.62454938889
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.320136 0.939135 0.124655 }
+        <Binormal> { -0.887148 0.260201 0.318032 }
+      }
+      <Normal> { -0.199042 0.409528 -0.890286 }
+    }
+    <Vertex> 3315 {
+      -27.7632770538 -45.0903091431 7.70106744766
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.258550 0.959045 0.115688 }
+        <Binormal> { -0.442329 0.016625 0.850736 }
+      }
+      <Normal> { -0.740715 0.542863 -0.395734 }
+    }
+    <Vertex> 3316 {
+      -27.7698802948 -44.427822113 7.90237522125
+      <UV>  {
+        0.333333 0.666667
+        <Tangent> { 0.414487 0.909520 0.031206 }
+        <Binormal> { 0.448669 -0.233969 0.859840 }
+      }
+      <Normal> { -0.761376 0.403760 0.507157 }
+    }
+    <Vertex> 3317 {
+      -27.7632770538 -45.0903091431 7.70106744766
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.258550 0.959045 0.115688 }
+        <Binormal> { -0.442329 0.016625 0.850736 }
+      }
+      <Normal> { -0.740715 0.542863 -0.395734 }
+    }
+    <Vertex> 3318 {
+      -28.2868919373 -46.1725234985 8.11273765564
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.352662 0.935376 -0.026495 }
+        <Binormal> { 0.240147 -0.070613 0.703579 }
+      }
+      <Normal> { -0.421705 0.876553 0.231910 }
+    }
+    <Vertex> 3319 {
+      -27.346162796 -44.5441093445 7.92701101303
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.509038 0.857742 -0.071831 }
+        <Binormal> { 0.843832 -0.481717 0.227674 }
+      }
+      <Normal> { -0.193060 0.121952 0.973571 }
+    }
+    <Vertex> 3320 {
+      -27.7698802948 -44.427822113 7.90237522125
+      <UV>  {
+        0.333333 0.666667
+        <Tangent> { 0.414487 0.909520 0.031206 }
+        <Binormal> { 0.448669 -0.233969 0.859840 }
+      }
+      <Normal> { -0.761376 0.403760 0.507157 }
+    }
+    <Vertex> 3321 {
+      -27.346162796 -44.5441093445 7.92701101303
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.509038 0.857742 -0.071831 }
+        <Binormal> { 0.843832 -0.481717 0.227674 }
+      }
+      <Normal> { -0.193060 0.121952 0.973571 }
+    }
+    <Vertex> 3322 {
+      -26.8676338196 -43.781036377 7.91246318817
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.608551 0.793467 -0.008727 }
+        <Binormal> { 0.792992 -0.607802 0.034985 }
+      }
+      <Normal> { -0.009217 0.045473 0.998901 }
+    }
+    <Vertex> 3323 {
+      -27.2743663788 -43.6560668945 7.89144039154
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.478515 0.877223 0.038762 }
+        <Binormal> { 0.081106 -0.082857 0.873885 }
+      }
+      <Normal> { -0.543931 0.829096 0.129093 }
+    }
+    <Vertex> 3324 {
+      -19.1860618591 -44.0188026428 7.44241428375
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { -0.312298 0.945529 0.091897 }
+        <Binormal> { 0.430272 0.226385 -0.867061 }
+      }
+      <Normal> { 0.806757 0.333811 0.487503 }
+    }
+    <Vertex> 3325 {
+      -19.6727085114 -44.1639175415 7.51778554916
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.445051 0.894937 -0.031899 }
+        <Binormal> { 0.851812 0.412238 -0.318915 }
+      }
+      <Normal> { 0.295450 0.122471 0.947447 }
+    }
+    <Vertex> 3326 {
+      -18.9100933075 -45.6639175415 7.62107467651
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.264803 0.964122 0.018644 }
+        <Binormal> { 0.228774 0.074071 -0.581050 }
+      }
+      <Normal> { 0.355693 0.899228 0.254677 }
+    }
+    <Vertex> 3327 {
+      -19.2595043182 -44.7078475952 7.19155597687
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.138393 0.972740 0.186076 }
+        <Binormal> { -0.499885 0.081371 -0.797168 }
+      }
+      <Normal> { 0.745109 0.522935 -0.413862 }
+    }
+    <Vertex> 3328 {
+      -19.1860618591 -44.0188026428 7.44241428375
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { -0.312298 0.945529 0.091897 }
+        <Binormal> { 0.430272 0.226385 -0.867061 }
+      }
+      <Normal> { 0.806757 0.333811 0.487503 }
+    }
+    <Vertex> 3329 {
+      -19.2595043182 -44.7078475952 7.19155597687
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.138393 0.972740 0.186076 }
+        <Binormal> { -0.499885 0.081371 -0.797168 }
+      }
+      <Normal> { 0.745109 0.522935 -0.413862 }
+    }
+    <Vertex> 3330 {
+      -20.1864509583 -43.9241981506 7.23956108093
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.877923 0.421779 0.226614 }
+        <Binormal> { -0.476669 0.804149 0.349957 }
+      }
+      <Normal> { 0.087436 0.440626 -0.893399 }
+    }
+    <Vertex> 3331 {
+      -19.5346183777 -43.319568634 7.47237062454
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.377599 0.921020 0.095614 }
+        <Binormal> { 0.010440 0.088545 -0.811700 }
+      }
+      <Normal> { 0.538102 0.837123 0.098239 }
+    }
+    <Vertex> 3332 {
+      -19.1860618591 -44.0188026428 7.44241428375
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { -0.312298 0.945529 0.091897 }
+        <Binormal> { 0.430272 0.226385 -0.867061 }
+      }
+      <Normal> { 0.806757 0.333811 0.487503 }
+    }
+    <Vertex> 3333 {
+      -19.5346183777 -43.319568634 7.47237062454
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.377599 0.921020 0.095614 }
+        <Binormal> { 0.010440 0.088545 -0.811700 }
+      }
+      <Normal> { 0.538102 0.837123 0.098239 }
+    }
+    <Vertex> 3334 {
+      -20.0024223328 -43.4673919678 7.54278326035
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.831711 0.543273 0.114502 }
+        <Binormal> { 0.535048 0.838626 -0.092555 }
+      }
+      <Normal> { 0.110935 0.038820 0.993042 }
+    }
+    <Vertex> 3335 {
+      -19.6727085114 -44.1639175415 7.51778554916
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.445051 0.894937 -0.031899 }
+        <Binormal> { 0.851812 0.412238 -0.318915 }
+      }
+      <Normal> { 0.295450 0.122471 0.947447 }
+    }
+    <Vertex> 3336 {
+      -21.5222396851 -46.0416374207 9.89009284973
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.041107 0.149256 -0.987944 }
+        <Binormal> { 0.994012 0.072781 0.052355 }
+      }
+      <Normal> { -0.077151 0.993500 0.083682 }
+    }
+    <Vertex> 3337 {
+      -23.2547550201 -46.2405586243 9.93703937531
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.041105 0.149257 -0.987944 }
+        <Binormal> { 0.982782 0.171847 0.066852 }
+      }
+      <Normal> { -0.179296 0.975341 0.128636 }
+    }
+    <Vertex> 3338 {
+      -23.8728981018 -46.3093299866 11.7669858932
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.319825 0.035582 -0.946808 }
+        <Binormal> { 0.856484 0.282751 0.299940 }
+      }
+      <Normal> { -0.179052 0.917905 -0.354015 }
+    }
+    <Vertex> 3339 {
+      -21.5924854279 -45.9275436401 11.7082967758
+      <UV>  {
+        0.250000 0.750000
+        <Tangent> { 0.041682 0.406987 -0.912482 }
+        <Binormal> { 0.707395 0.108586 0.080745 }
+      }
+      <Normal> { -0.103030 0.931181 -0.349620 }
+    }
+    <Vertex> 3340 {
+      -21.5222396851 -46.0416374207 9.89009284973
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.041107 0.149256 -0.987944 }
+        <Binormal> { 0.994012 0.072781 0.052355 }
+      }
+      <Normal> { -0.077151 0.993500 0.083682 }
+    }
+    <Vertex> 3341 {
+      -21.5924854279 -45.9275436401 11.7082967758
+      <UV>  {
+        0.250000 0.750000
+        <Tangent> { 0.041682 0.406987 -0.912482 }
+        <Binormal> { 0.707395 0.108586 0.080745 }
+      }
+      <Normal> { -0.103030 0.931181 -0.349620 }
+    }
+    <Vertex> 3342 {
+      -19.092502594 -45.7313919067 11.7471122742
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.747415 0.006673 -0.664324 }
+        <Binormal> { 0.614063 0.299808 0.693880 }
+      }
+      <Normal> { -0.034120 0.928068 -0.370800 }
+    }
+    <Vertex> 3343 {
+      -19.2525119781 -45.8881149292 10.0453538895
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.933055 0.068666 -0.353120 }
+        <Binormal> { 0.353809 -0.004787 0.933947 }
+      }
+      <Normal> { -0.015473 0.999817 0.010987 }
+    }
+    <Vertex> 3344 {
+      -21.5222396851 -46.0416374207 9.89009284973
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.041107 0.149256 -0.987944 }
+        <Binormal> { 0.994012 0.072781 0.052355 }
+      }
+      <Normal> { -0.077151 0.993500 0.083682 }
+    }
+    <Vertex> 3345 {
+      -19.2525119781 -45.8881149292 10.0453538895
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.933055 0.068666 -0.353120 }
+        <Binormal> { 0.353809 -0.004787 0.933947 }
+      }
+      <Normal> { -0.015473 0.999817 0.010987 }
+    }
+    <Vertex> 3346 {
+      -18.9100933075 -45.6639175415 7.62107467651
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.951573 0.028295 -0.306117 }
+        <Binormal> { 0.282475 -0.351227 0.845617 }
+      }
+      <Normal> { 0.355693 0.899228 0.254677 }
+    }
+    <Vertex> 3347 {
+      -21.4220809937 -45.5455703735 8.15752792358
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { 0.994593 0.019354 -0.102031 }
+        <Binormal> { 0.087961 -0.677705 0.728880 }
+      }
+      <Normal> { 0.014008 0.733116 0.679952 }
+    }
+    <Vertex> 3348 {
+      -21.5222396851 -46.0416374207 9.89009284973
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.041107 0.149256 -0.987944 }
+        <Binormal> { 0.994012 0.072781 0.052355 }
+      }
+      <Normal> { -0.077151 0.993500 0.083682 }
+    }
+    <Vertex> 3349 {
+      -21.4220809937 -45.5455703735 8.15752792358
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { 0.994593 0.019354 -0.102031 }
+        <Binormal> { 0.087961 -0.677705 0.728880 }
+      }
+      <Normal> { 0.014008 0.733116 0.679952 }
+    }
+    <Vertex> 3350 {
+      -23.7209339142 -45.7575340271 8.11459732056
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.240033 0.248707 -0.938365 }
+        <Binormal> { 0.921999 -0.070798 -0.254611 }
+      }
+      <Normal> { 0.197668 0.855922 0.477798 }
+    }
+    <Vertex> 3351 {
+      -23.2547550201 -46.2405586243 9.93703937531
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.041105 0.149257 -0.987944 }
+        <Binormal> { 0.982782 0.171847 0.066852 }
+      }
+      <Normal> { -0.179296 0.975341 0.128636 }
+    }
+    <Vertex> 3352 {
+      -23.3856258392 -43.4955024719 7.62666606903
+      <UV>  {
+        0.333333 0.500000
+        <Tangent> { 0.017876 0.919567 0.392525 }
+        <Binormal> { -0.997465 -0.010266 0.069474 }
+      }
+      <Normal> { -0.068087 0.383984 -0.920804 }
+    }
+    <Vertex> 3353 {
+      -25.0885658264 -43.3773536682 7.76327466965
+      <UV>  {
+        0.500000 0.708333
+        <Tangent> { -0.522780 0.805614 0.278725 }
+        <Binormal> { -0.831298 -0.467082 -0.209158 }
+      }
+      <Normal> { -0.074984 0.515641 -0.853481 }
+    }
+    <Vertex> 3354 {
+      -23.396314621 -43.1543655396 7.75679731369
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.049796 0.987442 0.149930 }
+        <Binormal> { -0.072548 -0.009589 0.087246 }
+      }
+      <Normal> { -0.038118 0.996216 0.077792 }
+    }
+    <Vertex> 3355 {
+      -21.6742458344 -43.2343788147 7.57767152786
+      <UV>  {
+        0.500000 0.291667
+        <Tangent> { 0.528020 0.818134 0.227711 }
+        <Binormal> { -0.818185 0.439052 0.319768 }
+      }
+      <Normal> { -0.062136 0.509323 -0.858303 }
+    }
+    <Vertex> 3356 {
+      -23.3856258392 -43.4955024719 7.62666606903
+      <UV>  {
+        0.333333 0.500000
+        <Tangent> { 0.017876 0.919567 0.392525 }
+        <Binormal> { -0.997465 -0.010266 0.069474 }
+      }
+      <Normal> { -0.068087 0.383984 -0.920804 }
+    }
+    <Vertex> 3357 {
+      -21.6742458344 -43.2343788147 7.57767152786
+      <UV>  {
+        0.500000 0.291667
+        <Tangent> { 0.528020 0.818134 0.227711 }
+        <Binormal> { -0.818185 0.439052 0.319768 }
+      }
+      <Normal> { -0.062136 0.509323 -0.858303 }
+    }
+    <Vertex> 3358 {
+      -20.1864509583 -43.9241981506 7.23956108093
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.519114 0.802336 0.294579 }
+        <Binormal> { -0.846606 0.489533 0.158583 }
+      }
+      <Normal> { 0.087436 0.440626 -0.893399 }
+    }
+    <Vertex> 3359 {
+      -23.3979644775 -44.0939979553 7.30324935913
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.018134 0.879620 0.475331 }
+        <Binormal> { -0.996669 -0.019545 0.074193 }
+      }
+      <Normal> { -0.074068 0.498581 -0.863643 }
+    }
+    <Vertex> 3360 {
+      -23.3856258392 -43.4955024719 7.62666606903
+      <UV>  {
+        0.333333 0.500000
+        <Tangent> { 0.017876 0.919567 0.392525 }
+        <Binormal> { -0.997465 -0.010266 0.069474 }
+      }
+      <Normal> { -0.068087 0.383984 -0.920804 }
+    }
+    <Vertex> 3361 {
+      -23.3979644775 -44.0939979553 7.30324935913
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.018134 0.879620 0.475331 }
+        <Binormal> { -0.996669 -0.019545 0.074193 }
+      }
+      <Normal> { -0.074068 0.498581 -0.863643 }
+    }
+    <Vertex> 3362 {
+      -26.6389160156 -44.1815261841 7.62454938889
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.838084 0.538070 0.089982 }
+        <Binormal> { -0.515886 0.728224 0.450317 }
+      }
+      <Normal> { -0.199042 0.409528 -0.890286 }
+    }
+    <Vertex> 3363 {
+      -25.0885658264 -43.3773536682 7.76327466965
+      <UV>  {
+        0.500000 0.708333
+        <Tangent> { -0.522780 0.805614 0.278725 }
+        <Binormal> { -0.831298 -0.467082 -0.209158 }
+      }
+      <Normal> { -0.074984 0.515641 -0.853481 }
+    }
+    <Vertex> 3364 {
+      -26.1740837097 -43.2333526611 7.86632108688
+      <UV>  {
+        0.666667 0.833333
+        <Tangent> { -0.175005 0.897442 0.404934 }
+        <Binormal> { -0.632593 -0.094365 -0.064256 }
+      }
+      <Normal> { -0.114597 0.954833 -0.274056 }
+    }
+    <Vertex> 3365 {
+      -27.2743663788 -43.6560668945 7.89144039154
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.420677 0.736615 0.529556 }
+        <Binormal> { -0.343961 -0.233735 0.051886 }
+      }
+      <Normal> { -0.543931 0.829096 0.129093 }
+    }
+    <Vertex> 3366 {
+      -26.8676338196 -43.781036377 7.91246318817
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.681310 -0.725565 0.096811 }
+        <Binormal> { -0.729170 -0.681454 0.024294 }
+      }
+      <Normal> { -0.009217 0.045473 0.998901 }
+    }
+    <Vertex> 3367 {
+      -25.7503604889 -43.3496398926 7.89095592499
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { 0.978351 -0.186785 -0.089113 }
+        <Binormal> { -0.143005 -0.915575 0.349069 }
+      }
+      <Normal> { 0.010559 0.354778 0.934874 }
+    }
+    <Vertex> 3368 {
+      -26.1740837097 -43.2333526611 7.86632108688
+      <UV>  {
+        0.666667 0.833333
+        <Tangent> { -0.175005 0.897442 0.404934 }
+        <Binormal> { -0.632593 -0.094365 -0.064256 }
+      }
+      <Normal> { -0.114597 0.954833 -0.274056 }
+    }
+    <Vertex> 3369 {
+      -25.7503604889 -43.3496398926 7.89095592499
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { 0.978351 -0.186785 -0.089113 }
+        <Binormal> { -0.143005 -0.915575 0.349069 }
+      }
+      <Normal> { 0.010559 0.354778 0.934874 }
+    }
+    <Vertex> 3370 {
+      -23.396314621 -43.1543655396 7.75679731369
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.049796 0.987442 0.149930 }
+        <Binormal> { -0.072548 -0.009589 0.087246 }
+      }
+      <Normal> { -0.038118 0.996216 0.077792 }
+    }
+    <Vertex> 3371 {
+      -25.0885658264 -43.3773536682 7.76327466965
+      <UV>  {
+        0.500000 0.708333
+        <Tangent> { -0.522780 0.805614 0.278725 }
+        <Binormal> { -0.831298 -0.467082 -0.209158 }
+      }
+      <Normal> { -0.074984 0.515641 -0.853481 }
+    }
+    <Vertex> 3372 {
+      -26.1740837097 -43.2333526611 7.86632108688
+      <UV>  {
+        0.666667 0.833333
+        <Tangent> { -0.175005 0.897442 0.404934 }
+        <Binormal> { -0.632593 -0.094365 -0.064256 }
+      }
+      <Normal> { -0.114597 0.954833 -0.274056 }
+    }
+    <Vertex> 3373 {
+      -25.0885658264 -43.3773536682 7.76327466965
+      <UV>  {
+        0.500000 0.708333
+        <Tangent> { -0.522780 0.805614 0.278725 }
+        <Binormal> { -0.831298 -0.467082 -0.209158 }
+      }
+      <Normal> { -0.074984 0.515641 -0.853481 }
+    }
+    <Vertex> 3374 {
+      -26.6389160156 -44.1815261841 7.62454938889
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.838084 0.538070 0.089982 }
+        <Binormal> { -0.515886 0.728224 0.450317 }
+      }
+      <Normal> { -0.199042 0.409528 -0.890286 }
+    }
+    <Vertex> 3375 {
+      -27.2743663788 -43.6560668945 7.89144039154
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.420677 0.736615 0.529556 }
+        <Binormal> { -0.343961 -0.233735 0.051886 }
+      }
+      <Normal> { -0.543931 0.829096 0.129093 }
+    }
+    <Vertex> 3376 {
+      -20.5802898407 -42.9991073608 7.56224107742
+      <UV>  {
+        0.666667 0.166667
+        <Tangent> { 0.150466 0.900692 0.407571 }
+        <Binormal> { -0.678638 0.049867 0.140336 }
+      }
+      <Normal> { 0.002136 0.945463 -0.325632 }
+    }
+    <Vertex> 3377 {
+      -21.6742458344 -43.2343788147 7.57767152786
+      <UV>  {
+        0.500000 0.291667
+        <Tangent> { 0.528020 0.818134 0.227711 }
+        <Binormal> { -0.818185 0.439052 0.319768 }
+      }
+      <Normal> { -0.062136 0.509323 -0.858303 }
+    }
+    <Vertex> 3378 {
+      -23.396314621 -43.1543655396 7.75679731369
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.049796 0.987442 0.149930 }
+        <Binormal> { -0.072548 -0.009589 0.087246 }
+      }
+      <Normal> { -0.038118 0.996216 0.077792 }
+    }
+    <Vertex> 3379 {
+      -21.0669384003 -43.1442222595 7.63761281967
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { -0.966821 -0.254774 0.018616 }
+        <Binormal> { -0.244687 0.904951 -0.322831 }
+      }
+      <Normal> { 0.060427 0.349834 0.934843 }
+    }
+    <Vertex> 3380 {
+      -20.5802898407 -42.9991073608 7.56224107742
+      <UV>  {
+        0.666667 0.166667
+        <Tangent> { 0.150466 0.900692 0.407571 }
+        <Binormal> { -0.678638 0.049867 0.140336 }
+      }
+      <Normal> { 0.002136 0.945463 -0.325632 }
+    }
+    <Vertex> 3381 {
+      -21.0669384003 -43.1442222595 7.63761281967
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { -0.966821 -0.254774 0.018616 }
+        <Binormal> { -0.244687 0.904951 -0.322831 }
+      }
+      <Normal> { 0.060427 0.349834 0.934843 }
+    }
+    <Vertex> 3382 {
+      -20.0024223328 -43.4673919678 7.54278326035
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.831711 0.543273 0.114502 }
+        <Binormal> { 0.535048 0.838626 -0.092555 }
+      }
+      <Normal> { 0.110935 0.038820 0.993042 }
+    }
+    <Vertex> 3383 {
+      -19.5346183777 -43.319568634 7.47237062454
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.318199 0.789852 0.524294 }
+        <Binormal> { -0.361304 0.250864 -0.158649 }
+      }
+      <Normal> { 0.538102 0.837123 0.098239 }
+    }
+    <Vertex> 3384 {
+      -20.5802898407 -42.9991073608 7.56224107742
+      <UV>  {
+        0.666667 0.166667
+        <Tangent> { 0.150466 0.900692 0.407571 }
+        <Binormal> { -0.678638 0.049867 0.140336 }
+      }
+      <Normal> { 0.002136 0.945463 -0.325632 }
+    }
+    <Vertex> 3385 {
+      -19.5346183777 -43.319568634 7.47237062454
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.318199 0.789852 0.524294 }
+        <Binormal> { -0.361304 0.250864 -0.158649 }
+      }
+      <Normal> { 0.538102 0.837123 0.098239 }
+    }
+    <Vertex> 3386 {
+      -20.1864509583 -43.9241981506 7.23956108093
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.519114 0.802336 0.294579 }
+        <Binormal> { -0.846606 0.489533 0.158583 }
+      }
+      <Normal> { 0.087436 0.440626 -0.893399 }
+    }
+    <Vertex> 3387 {
+      -21.6742458344 -43.2343788147 7.57767152786
+      <UV>  {
+        0.500000 0.291667
+        <Tangent> { 0.528020 0.818134 0.227711 }
+        <Binormal> { -0.818185 0.439052 0.319768 }
+      }
+      <Normal> { -0.062136 0.509323 -0.858303 }
+    }
+    <Vertex> 3388 {
+      -25.7309207916 -44.5087547302 7.85676050186
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.207249 0.974132 -0.090078 }
+        <Binormal> { 0.977744 -0.209237 -0.013185 }
+      }
+      <Normal> { 0.031404 0.083987 0.995941 }
+    }
+    <Vertex> 3389 {
+      -27.346162796 -44.5441093445 7.92701101303
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.509038 0.857742 -0.071831 }
+        <Binormal> { 0.843832 -0.481717 0.227674 }
+      }
+      <Normal> { -0.193060 0.121952 0.973571 }
+    }
+    <Vertex> 3390 {
+      -28.2868919373 -46.1725234985 8.11273765564
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.336108 0.716644 -0.611108 }
+        <Binormal> { 0.701865 0.179760 0.596828 }
+      }
+      <Normal> { -0.421705 0.876553 0.231910 }
+    }
+    <Vertex> 3391 {
+      -25.8366241455 -45.3561325073 8.02838516235
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { 0.074084 0.910205 0.407478 }
+        <Binormal> { -0.171159 -0.038498 0.117113 }
+      }
+      <Normal> { -0.049867 0.968139 0.245369 }
+    }
+    <Vertex> 3392 {
+      -25.7309207916 -44.5087547302 7.85676050186
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.207249 0.974132 -0.090078 }
+        <Binormal> { 0.977744 -0.209237 -0.013185 }
+      }
+      <Normal> { 0.031404 0.083987 0.995941 }
+    }
+    <Vertex> 3393 {
+      -25.8366241455 -45.3561325073 8.02838516235
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { 0.074084 0.910205 0.407478 }
+        <Binormal> { -0.171159 -0.038498 0.117113 }
+      }
+      <Normal> { -0.049867 0.968139 0.245369 }
+    }
+    <Vertex> 3394 {
+      -23.7209339142 -45.7575340271 8.11459732056
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.122214 0.950053 -0.287163 }
+        <Binormal> { 0.699723 -0.115157 -0.083190 }
+      }
+      <Normal> { 0.197668 0.855922 0.477798 }
+    }
+    <Vertex> 3395 {
+      -23.5199260712 -44.3975791931 7.73906564713
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.122607 0.983211 -0.135140 }
+        <Binormal> { 0.991945 -0.125730 -0.014794 }
+      }
+      <Normal> { 0.031495 0.131901 0.990753 }
+    }
+    <Vertex> 3396 {
+      -25.7309207916 -44.5087547302 7.85676050186
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.207249 0.974132 -0.090078 }
+        <Binormal> { 0.977744 -0.209237 -0.013185 }
+      }
+      <Normal> { 0.031404 0.083987 0.995941 }
+    }
+    <Vertex> 3397 {
+      -23.5199260712 -44.3975791931 7.73906564713
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.122607 0.983211 -0.135140 }
+        <Binormal> { 0.991945 -0.125730 -0.014794 }
+      }
+      <Normal> { 0.031495 0.131901 0.990753 }
+    }
+    <Vertex> 3398 {
+      -23.396314621 -43.1543655396 7.75679731369
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.097635 0.995062 0.017853 }
+        <Binormal> { 0.059622 -0.008276 0.135195 }
+      }
+      <Normal> { -0.038118 0.996216 0.077792 }
+    }
+    <Vertex> 3399 {
+      -25.7503604889 -43.3496398926 7.89095592499
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.016762 0.999425 0.029484 }
+        <Binormal> { 0.923875 0.015982 -0.016500 }
+      }
+      <Normal> { 0.010559 0.354778 0.934874 }
+    }
+    <Vertex> 3400 {
+      -25.7309207916 -44.5087547302 7.85676050186
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.207249 0.974132 -0.090078 }
+        <Binormal> { 0.977744 -0.209237 -0.013185 }
+      }
+      <Normal> { 0.031404 0.083987 0.995941 }
+    }
+    <Vertex> 3401 {
+      -25.7503604889 -43.3496398926 7.89095592499
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.016762 0.999425 0.029484 }
+        <Binormal> { 0.923875 0.015982 -0.016500 }
+      }
+      <Normal> { 0.010559 0.354778 0.934874 }
+    }
+    <Vertex> 3402 {
+      -26.8676338196 -43.781036377 7.91246318817
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.232291 0.972595 0.009941 }
+        <Binormal> { 0.971075 -0.232128 0.019527 }
+      }
+      <Normal> { -0.009217 0.045473 0.998901 }
+    }
+    <Vertex> 3403 {
+      -27.346162796 -44.5441093445 7.92701101303
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.509038 0.857742 -0.071831 }
+        <Binormal> { 0.843832 -0.481717 0.227674 }
+      }
+      <Normal> { -0.193060 0.121952 0.973571 }
+    }
+    <Vertex> 3404 {
+      -21.3089256287 -44.2864074707 7.62137126923
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.005911 0.988376 -0.151917 }
+        <Binormal> { 0.997621 -0.004322 -0.066935 }
+      }
+      <Normal> { 0.066897 0.138096 0.988128 }
+    }
+    <Vertex> 3405 {
+      -23.5199260712 -44.3975791931 7.73906564713
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.122607 0.983211 -0.135140 }
+        <Binormal> { 0.991945 -0.125730 -0.014794 }
+      }
+      <Normal> { 0.031495 0.131901 0.990753 }
+    }
+    <Vertex> 3406 {
+      -23.7209339142 -45.7575340271 8.11459732056
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.122214 0.950053 -0.287163 }
+        <Binormal> { 0.699723 -0.115157 -0.083190 }
+      }
+      <Normal> { 0.197668 0.855922 0.477798 }
+    }
+    <Vertex> 3407 {
+      -21.4220809937 -45.5455703735 8.15752792358
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { 0.082401 0.916936 -0.390435 }
+        <Binormal> { 0.909706 -0.061498 0.047565 }
+      }
+      <Normal> { 0.014008 0.733116 0.679952 }
+    }
+    <Vertex> 3408 {
+      -21.3089256287 -44.2864074707 7.62137126923
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.005911 0.988376 -0.151917 }
+        <Binormal> { 0.997621 -0.004322 -0.066935 }
+      }
+      <Normal> { 0.066897 0.138096 0.988128 }
+    }
+    <Vertex> 3409 {
+      -21.4220809937 -45.5455703735 8.15752792358
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { 0.082401 0.916936 -0.390435 }
+        <Binormal> { 0.909706 -0.061498 0.047565 }
+      }
+      <Normal> { 0.014008 0.733116 0.679952 }
+    }
+    <Vertex> 3410 {
+      -18.9100933075 -45.6639175415 7.62107467651
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.223505 0.949537 -0.220058 }
+        <Binormal> { 0.439708 -0.021352 -0.538726 }
+      }
+      <Normal> { 0.355693 0.899228 0.254677 }
+    }
+    <Vertex> 3411 {
+      -19.6727085114 -44.1639175415 7.51778554916
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.445051 0.894937 -0.031899 }
+        <Binormal> { 0.851812 0.412238 -0.318915 }
+      }
+      <Normal> { 0.295450 0.122471 0.947447 }
+    }
+    <Vertex> 3412 {
+      -21.3089256287 -44.2864074707 7.62137126923
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.005911 0.988376 -0.151917 }
+        <Binormal> { 0.997621 -0.004322 -0.066935 }
+      }
+      <Normal> { 0.066897 0.138096 0.988128 }
+    }
+    <Vertex> 3413 {
+      -19.6727085114 -44.1639175415 7.51778554916
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.445051 0.894937 -0.031899 }
+        <Binormal> { 0.851812 0.412238 -0.318915 }
+      }
+      <Normal> { 0.295450 0.122471 0.947447 }
+    }
+    <Vertex> 3414 {
+      -20.0024223328 -43.4673919678 7.54278326035
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.047645 0.998613 0.022397 }
+        <Binormal> { 0.990795 0.049798 -0.112630 }
+      }
+      <Normal> { 0.110935 0.038820 0.993042 }
+    }
+    <Vertex> 3415 {
+      -21.0669384003 -43.1442222595 7.63761281967
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.207242 0.978191 0.013910 }
+        <Binormal> { 0.909589 -0.192899 0.013392 }
+      }
+      <Normal> { 0.060427 0.349834 0.934843 }
+    }
+    <Vertex> 3416 {
+      -21.3089256287 -44.2864074707 7.62137126923
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.005911 0.988376 -0.151917 }
+        <Binormal> { 0.997621 -0.004322 -0.066935 }
+      }
+      <Normal> { 0.066897 0.138096 0.988128 }
+    }
+    <Vertex> 3417 {
+      -21.0669384003 -43.1442222595 7.63761281967
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.207242 0.978191 0.013910 }
+        <Binormal> { 0.909589 -0.192899 0.013392 }
+      }
+      <Normal> { 0.060427 0.349834 0.934843 }
+    }
+    <Vertex> 3418 {
+      -23.396314621 -43.1543655396 7.75679731369
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.097635 0.995062 0.017853 }
+        <Binormal> { 0.059622 -0.008276 0.135195 }
+      }
+      <Normal> { -0.038118 0.996216 0.077792 }
+    }
+    <Vertex> 3419 {
+      -23.5199260712 -44.3975791931 7.73906564713
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.122607 0.983211 -0.135140 }
+        <Binormal> { 0.991945 -0.125730 -0.014794 }
+      }
+      <Normal> { 0.031495 0.131901 0.990753 }
+    }
+    <Vertex> 3420 {
+      -27.9266796112 -46.7885055542 10.0642080307
+      <UV>  {
+        0.500000 0.166667
+        <Tangent> { -0.055250 0.243194 -0.968403 }
+        <Binormal> { 0.985058 0.171567 -0.013115 }
+      }
+      <Normal> { -0.162816 0.954039 0.251503 }
+    }
+    <Vertex> 3421 {
+      -28.8122997284 -46.727104187 10.2447633743
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.051663 0.169942 -0.984099 }
+        <Binormal> { 0.998384 -0.022010 0.048612 }
+      }
+      <Normal> { 0.014344 0.988128 0.152806 }
+    }
+    <Vertex> 3422 {
+      -28.4814758301 -46.8125953674 11.8192577362
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.766322 -0.024209 -0.642000 }
+        <Binormal> { 0.616989 -0.233762 -0.727653 }
+      }
+      <Normal> { -0.011170 0.949187 -0.314402 }
+    }
+    <Vertex> 3423 {
+      -27.3764820099 -46.9113006592 10.867269516
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { -0.293598 0.178125 -0.939187 }
+        <Binormal> { 0.939269 0.235111 -0.249033 }
+      }
+      <Normal> { -0.182684 0.959044 0.216407 }
+    }
+    <Vertex> 3424 {
+      -27.9266796112 -46.7885055542 10.0642080307
+      <UV>  {
+        0.500000 0.166667
+        <Tangent> { -0.055250 0.243194 -0.968403 }
+        <Binormal> { 0.985058 0.171567 -0.013115 }
+      }
+      <Normal> { -0.162816 0.954039 0.251503 }
+    }
+    <Vertex> 3425 {
+      -27.3764820099 -46.9113006592 10.867269516
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { -0.293598 0.178125 -0.939187 }
+        <Binormal> { 0.939269 0.235111 -0.249033 }
+      }
+      <Normal> { -0.182684 0.959044 0.216407 }
+    }
+    <Vertex> 3426 {
+      -27.205078125 -46.3209342957 10.1605672836
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.337866 0.670582 -0.660396 }
+        <Binormal> { 0.613799 0.688927 0.385527 }
+      }
+      <Normal> { -0.713492 0.275094 0.644368 }
+    }
+    <Vertex> 3427 {
+      -27.6871242523 -46.3933029175 9.30745506287
+      <UV>  {
+        0.708333 0.250000
+        <Tangent> { 0.074517 0.717891 -0.692156 }
+        <Binormal> { 0.735005 0.417833 0.512499 }
+      }
+      <Normal> { -0.645955 0.654530 0.392773 }
+    }
+    <Vertex> 3428 {
+      -27.9266796112 -46.7885055542 10.0642080307
+      <UV>  {
+        0.500000 0.166667
+        <Tangent> { -0.055250 0.243194 -0.968403 }
+        <Binormal> { 0.985058 0.171567 -0.013115 }
+      }
+      <Normal> { -0.162816 0.954039 0.251503 }
+    }
+    <Vertex> 3429 {
+      -27.6871242523 -46.3933029175 9.30745506287
+      <UV>  {
+        0.708333 0.250000
+        <Tangent> { 0.074517 0.717891 -0.692156 }
+        <Binormal> { 0.735005 0.417833 0.512499 }
+      }
+      <Normal> { -0.645955 0.654530 0.392773 }
+    }
+    <Vertex> 3430 {
+      -28.2868919373 -46.1725234985 8.11273765564
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.336108 0.716644 -0.611108 }
+        <Binormal> { 0.701865 0.179760 0.596828 }
+      }
+      <Normal> { -0.421705 0.876553 0.231910 }
+    }
+    <Vertex> 3431 {
+      -28.8122997284 -46.727104187 10.2447633743
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.051663 0.169942 -0.984099 }
+        <Binormal> { 0.998384 -0.022010 0.048612 }
+      }
+      <Normal> { 0.014344 0.988128 0.152806 }
+    }
+    <Vertex> 3432 {
+      -23.956199646 -46.4197425842 9.96096420288
+      <UV>  {
+        0.500000 0.166667
+        <Tangent> { -0.153262 -0.217333 0.963990 }
+        <Binormal> { -0.983725 0.123196 -0.128625 }
+      }
+      <Normal> { 0.087191 0.962889 0.255409 }
+    }
+    <Vertex> 3433 {
+      -24.0282783508 -46.1117630005 9.16807079315
+      <UV>  {
+        0.708333 0.250000
+        <Tangent> { 0.004989 -0.696697 0.717348 }
+        <Binormal> { -0.665858 0.518991 0.508682 }
+      }
+      <Normal> { 0.725852 0.597766 0.340251 }
+    }
+    <Vertex> 3434 {
+      -24.3250427246 -46.0732040405 10.0706834793
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.077868 -0.843780 0.531010 }
+        <Binormal> { -0.576034 0.470050 0.662445 }
+      }
+      <Normal> { 0.801447 0.177221 0.571154 }
+    }
+    <Vertex> 3435 {
+      -24.5272598267 -46.6080780029 10.8224811554
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { -0.391053 -0.179621 0.902670 }
+        <Binormal> { -0.917059 0.157784 -0.365889 }
+      }
+      <Normal> { 0.082156 0.973388 0.213843 }
+    }
+    <Vertex> 3436 {
+      -23.956199646 -46.4197425842 9.96096420288
+      <UV>  {
+        0.500000 0.166667
+        <Tangent> { -0.153262 -0.217333 0.963990 }
+        <Binormal> { -0.983725 0.123196 -0.128625 }
+      }
+      <Normal> { 0.087191 0.962889 0.255409 }
+    }
+    <Vertex> 3437 {
+      -24.5272598267 -46.6080780029 10.8224811554
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { -0.391053 -0.179621 0.902670 }
+        <Binormal> { -0.917059 0.157784 -0.365889 }
+      }
+      <Normal> { 0.082156 0.973388 0.213843 }
+    }
+    <Vertex> 3438 {
+      -23.8728981018 -46.3093299866 11.7669858932
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.303697 -0.053432 0.951269 }
+        <Binormal> { -0.854259 -0.277840 -0.288332 }
+      }
+      <Normal> { -0.179052 0.917905 -0.354015 }
+    }
+    <Vertex> 3439 {
+      -23.2547550201 -46.2405586243 9.93703937531
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.041105 -0.149257 0.987944 }
+        <Binormal> { -0.982782 -0.171847 -0.066853 }
+      }
+      <Normal> { -0.179296 0.975341 0.128636 }
+    }
+    <Vertex> 3440 {
+      -23.956199646 -46.4197425842 9.96096420288
+      <UV>  {
+        0.500000 0.166667
+        <Tangent> { -0.153262 -0.217333 0.963990 }
+        <Binormal> { -0.983725 0.123196 -0.128625 }
+      }
+      <Normal> { 0.087191 0.962889 0.255409 }
+    }
+    <Vertex> 3441 {
+      -23.2547550201 -46.2405586243 9.93703937531
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.041105 -0.149257 0.987944 }
+        <Binormal> { -0.982782 -0.171847 -0.066853 }
+      }
+      <Normal> { -0.179296 0.975341 0.128636 }
+    }
+    <Vertex> 3442 {
+      -23.7209339142 -45.7575340271 8.11459732056
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.107820 -0.298262 0.948375 }
+        <Binormal> { -0.954244 0.135948 0.151242 }
+      }
+      <Normal> { 0.197668 0.855922 0.477798 }
+    }
+    <Vertex> 3443 {
+      -24.0282783508 -46.1117630005 9.16807079315
+      <UV>  {
+        0.708333 0.250000
+        <Tangent> { 0.004989 -0.696697 0.717348 }
+        <Binormal> { -0.665858 0.518991 0.508682 }
+      }
+      <Normal> { 0.725852 0.597766 0.340251 }
+    }
+    <Vertex> 3444 {
+      -25.9553489685 -46.8115463257 11.1223039627
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.994592 -0.102381 0.017478 }
+        <Binormal> { -0.038724 0.209398 -0.977029 }
+      }
+      <Normal> { -0.094394 0.972625 0.212195 }
+    }
+    <Vertex> 3445 {
+      -26.0811290741 -46.5522270203 12.0163497925
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.994027 -0.108550 0.011275 }
+        <Binormal> { 0.044611 -0.498444 -0.865749 }
+      }
+      <Normal> { -0.101291 0.859890 -0.500290 }
+    }
+    <Vertex> 3446 {
+      -23.8728981018 -46.3093299866 11.7669858932
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.882725 0.200784 0.424831 }
+        <Binormal> { -0.461035 -0.388565 -0.774308 }
+      }
+      <Normal> { -0.179052 0.917905 -0.354015 }
+    }
+    <Vertex> 3447 {
+      -24.5272598267 -46.6080780029 10.8224811554
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { -0.969287 -0.138100 0.203499 }
+        <Binormal> { -0.227615 0.223994 -0.932146 }
+      }
+      <Normal> { 0.082156 0.973388 0.213843 }
+    }
+    <Vertex> 3448 {
+      -25.9553489685 -46.8115463257 11.1223039627
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.994592 -0.102381 0.017478 }
+        <Binormal> { -0.038724 0.209398 -0.977029 }
+      }
+      <Normal> { -0.094394 0.972625 0.212195 }
+    }
+    <Vertex> 3449 {
+      -24.5272598267 -46.6080780029 10.8224811554
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { -0.969287 -0.138100 0.203499 }
+        <Binormal> { -0.227615 0.223994 -0.932146 }
+      }
+      <Normal> { 0.082156 0.973388 0.213843 }
+    }
+    <Vertex> 3450 {
+      -24.3250427246 -46.0732040405 10.0706834793
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.985591 -0.068312 0.154739 }
+        <Binormal> { -0.066440 0.686939 -0.119919 }
+      }
+      <Normal> { 0.801447 0.177221 0.571154 }
+    }
+    <Vertex> 3451 {
+      -25.7746887207 -46.2349739075 10.4541301727
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.995840 -0.085658 0.031079 }
+        <Binormal> { -0.091120 0.935512 -0.341262 }
+      }
+      <Normal> { -0.004913 0.342265 0.939573 }
+    }
+    <Vertex> 3452 {
+      -25.9553489685 -46.8115463257 11.1223039627
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.994592 -0.102381 0.017478 }
+        <Binormal> { -0.038724 0.209398 -0.977029 }
+      }
+      <Normal> { -0.094394 0.972625 0.212195 }
+    }
+    <Vertex> 3453 {
+      -25.7746887207 -46.2349739075 10.4541301727
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.995840 -0.085658 0.031079 }
+        <Binormal> { -0.091120 0.935512 -0.341262 }
+      }
+      <Normal> { -0.004913 0.342265 0.939573 }
+    }
+    <Vertex> 3454 {
+      -27.205078125 -46.3209342957 10.1605672836
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.991453 -0.036699 -0.125199 }
+        <Binormal> { 0.010794 0.728189 -0.298927 }
+      }
+      <Normal> { -0.713492 0.275094 0.644368 }
+    }
+    <Vertex> 3455 {
+      -27.3764820099 -46.9113006592 10.867269516
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.981935 -0.068925 -0.176217 }
+        <Binormal> { 0.154084 0.244689 -0.954311 }
+      }
+      <Normal> { -0.182684 0.959044 0.216407 }
+    }
+    <Vertex> 3456 {
+      -25.9553489685 -46.8115463257 11.1223039627
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.994592 -0.102381 0.017478 }
+        <Binormal> { -0.038724 0.209398 -0.977029 }
+      }
+      <Normal> { -0.094394 0.972625 0.212195 }
+    }
+    <Vertex> 3457 {
+      -27.3764820099 -46.9113006592 10.867269516
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.981935 -0.068925 -0.176217 }
+        <Binormal> { 0.154084 0.244689 -0.954311 }
+      }
+      <Normal> { -0.182684 0.959044 0.216407 }
+    }
+    <Vertex> 3458 {
+      -28.4814758301 -46.8125953674 11.8192577362
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.766322 -0.024209 -0.642000 }
+        <Binormal> { 0.616989 -0.233762 -0.727653 }
+      }
+      <Normal> { -0.011170 0.949187 -0.314402 }
+    }
+    <Vertex> 3459 {
+      -26.0811290741 -46.5522270203 12.0163497925
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.994027 -0.108550 0.011275 }
+        <Binormal> { 0.044611 -0.498444 -0.865749 }
+      }
+      <Normal> { -0.101291 0.859890 -0.500290 }
+    }
+    <Vertex> 3460 {
+      -25.7883358002 -44.5372123718 8.67048454285
+      <UV>  {
+        0.750000 0.250000
+        <Tangent> { 0.093584 0.834038 0.543712 }
+        <Binormal> { -0.992298 0.039993 0.109447 }
+      }
+      <Normal> { -0.065645 0.584460 -0.808740 }
+    }
+    <Vertex> 3461 {
+      -25.8366241455 -45.3561325073 8.02838516235
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { 0.074084 0.910205 0.407478 }
+        <Binormal> { -0.171159 -0.038498 0.117113 }
+      }
+      <Normal> { -0.049867 0.968139 0.245369 }
+    }
+    <Vertex> 3462 {
+      -28.2868919373 -46.1725234985 8.11273765564
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.445216 0.757264 0.477843 }
+        <Binormal> { -0.243238 -0.304759 0.709597 }
+      }
+      <Normal> { -0.421705 0.876553 0.231910 }
+    }
+    <Vertex> 3463 {
+      -27.0536804199 -44.811756134 8.84604930878
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { 0.463383 0.759179 0.457081 }
+        <Binormal> { -0.576395 -0.133037 0.805309 }
+      }
+      <Normal> { -0.690146 0.607196 -0.393658 }
+    }
+    <Vertex> 3464 {
+      -25.7883358002 -44.5372123718 8.67048454285
+      <UV>  {
+        0.750000 0.250000
+        <Tangent> { 0.093584 0.834038 0.543712 }
+        <Binormal> { -0.992298 0.039993 0.109447 }
+      }
+      <Normal> { -0.065645 0.584460 -0.808740 }
+    }
+    <Vertex> 3465 {
+      -27.0536804199 -44.811756134 8.84604930878
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { 0.463383 0.759179 0.457081 }
+        <Binormal> { -0.576395 -0.133037 0.805309 }
+      }
+      <Normal> { -0.690146 0.607196 -0.393658 }
+    }
+    <Vertex> 3466 {
+      -26.7714557648 -43.6897239685 9.60756111145
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.100658 0.770385 0.629584 }
+        <Binormal> { -0.752129 -0.355257 0.554957 }
+      }
+      <Normal> { -0.650319 0.536088 -0.538194 }
+    }
+    <Vertex> 3467 {
+      -25.6630592346 -43.2317581177 9.50094509125
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.100658 0.770384 0.629584 }
+        <Binormal> { -0.991554 0.027797 0.124516 }
+      }
+      <Normal> { -0.076235 0.653554 -0.752983 }
+    }
+    <Vertex> 3468 {
+      -25.7883358002 -44.5372123718 8.67048454285
+      <UV>  {
+        0.750000 0.250000
+        <Tangent> { 0.093584 0.834038 0.543712 }
+        <Binormal> { -0.992298 0.039993 0.109447 }
+      }
+      <Normal> { -0.065645 0.584460 -0.808740 }
+    }
+    <Vertex> 3469 {
+      -25.6630592346 -43.2317581177 9.50094509125
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.100658 0.770384 0.629584 }
+        <Binormal> { -0.991554 0.027797 0.124516 }
+      }
+      <Normal> { -0.076235 0.653554 -0.752983 }
+    }
+    <Vertex> 3470 {
+      -24.5806159973 -43.5511894226 9.50129127502
+      <UV>  {
+        0.500000 -0.000000
+        <Tangent> { 0.100658 0.770384 0.629584 }
+        <Binormal> { -0.832312 0.411815 -0.370843 }
+      }
+      <Normal> { 0.545976 0.494430 -0.676321 }
+    }
+    <Vertex> 3471 {
+      -24.5228786469 -44.6554489136 8.72046470642
+      <UV>  {
+        0.750000 -0.000000
+        <Tangent> { -0.313287 0.804040 0.505342 }
+        <Binormal> { -0.707158 0.157496 -0.688993 }
+      }
+      <Normal> { 0.639149 0.558885 -0.528245 }
+    }
+    <Vertex> 3472 {
+      -25.7883358002 -44.5372123718 8.67048454285
+      <UV>  {
+        0.750000 0.250000
+        <Tangent> { 0.093584 0.834038 0.543712 }
+        <Binormal> { -0.992298 0.039993 0.109447 }
+      }
+      <Normal> { -0.065645 0.584460 -0.808740 }
+    }
+    <Vertex> 3473 {
+      -24.5228786469 -44.6554489136 8.72046470642
+      <UV>  {
+        0.750000 -0.000000
+        <Tangent> { -0.313287 0.804040 0.505342 }
+        <Binormal> { -0.707158 0.157496 -0.688993 }
+      }
+      <Normal> { 0.639149 0.558885 -0.528245 }
+    }
+    <Vertex> 3474 {
+      -23.7209339142 -45.7575340271 8.11459732056
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.107820 -0.298262 0.948375 }
+        <Binormal> { -0.954244 0.135948 0.151242 }
+      }
+      <Normal> { 0.197668 0.855922 0.477798 }
+    }
+    <Vertex> 3475 {
+      -25.8366241455 -45.3561325073 8.02838516235
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { 0.074084 0.910205 0.407478 }
+        <Binormal> { -0.171159 -0.038498 0.117113 }
+      }
+      <Normal> { -0.049867 0.968139 0.245369 }
+    }
+    <Vertex> 3476 {
+      -25.5377788544 -42.6195678711 10.2376480103
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { 0.143086 0.558617 0.816990 }
+        <Binormal> { -0.986739 0.016987 0.161201 }
+      }
+      <Normal> { -0.076235 0.828974 -0.554003 }
+    }
+    <Vertex> 3477 {
+      -25.6630592346 -43.2317581177 9.50094509125
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.100658 0.770384 0.629584 }
+        <Binormal> { -0.991554 0.027797 0.124516 }
+      }
+      <Normal> { -0.076235 0.653554 -0.752983 }
+    }
+    <Vertex> 3478 {
+      -26.7714557648 -43.6897239685 9.60756111145
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.100658 0.770385 0.629584 }
+        <Binormal> { -0.752129 -0.355257 0.554957 }
+      }
+      <Normal> { -0.650319 0.536088 -0.538194 }
+    }
+    <Vertex> 3479 {
+      -26.8240032196 -43.0539131165 10.2826156616
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.186710 0.535448 0.823672 }
+        <Binormal> { -0.760130 -0.609272 0.223765 }
+      }
+      <Normal> { -0.627216 0.600269 -0.496231 }
+    }
+    <Vertex> 3480 {
+      -25.5377788544 -42.6195678711 10.2376480103
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { 0.143086 0.558617 0.816990 }
+        <Binormal> { -0.986739 0.016987 0.161201 }
+      }
+      <Normal> { -0.076235 0.828974 -0.554003 }
+    }
+    <Vertex> 3481 {
+      -26.8240032196 -43.0539131165 10.2826156616
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.186710 0.535448 0.823672 }
+        <Binormal> { -0.760130 -0.609272 0.223765 }
+      }
+      <Normal> { -0.627216 0.600269 -0.496231 }
+    }
+    <Vertex> 3482 {
+      -27.0399875641 -42.919631958 10.792183876
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.943080 -0.178576 0.280553 }
+        <Binormal> { -0.053920 -0.734811 -0.648972 }
+      }
+      <Normal> { -0.500809 0.593310 -0.630177 }
+    }
+    <Vertex> 3483 {
+      -25.4358348846 -42.3495178223 10.797794342
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { 0.161779 0.428552 0.888915 }
+        <Binormal> { -0.965719 0.027990 0.162263 }
+      }
+      <Normal> { -0.077120 0.798700 -0.596759 }
+    }
+    <Vertex> 3484 {
+      -25.5377788544 -42.6195678711 10.2376480103
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { 0.143086 0.558617 0.816990 }
+        <Binormal> { -0.986739 0.016987 0.161201 }
+      }
+      <Normal> { -0.076235 0.828974 -0.554003 }
+    }
+    <Vertex> 3485 {
+      -25.4358348846 -42.3495178223 10.797794342
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { 0.161779 0.428552 0.888915 }
+        <Binormal> { -0.965719 0.027990 0.162263 }
+      }
+      <Normal> { -0.077120 0.798700 -0.596759 }
+    }
+    <Vertex> 3486 {
+      -23.9059486389 -42.7259712219 10.6367406845
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.397351 0.358765 0.844630 }
+        <Binormal> { -0.737092 0.599719 0.092024 }
+      }
+      <Normal> { 0.355327 0.552416 -0.753990 }
+    }
+    <Vertex> 3487 {
+      -24.2931976318 -42.8976097107 10.1570320129
+      <UV>  {
+        0.250000 -0.000000
+        <Tangent> { 0.433209 0.529879 0.729080 }
+        <Binormal> { -0.757722 0.651520 -0.023282 }
+      }
+      <Normal> { 0.499466 0.557176 -0.663350 }
+    }
+    <Vertex> 3488 {
+      -25.5377788544 -42.6195678711 10.2376480103
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { 0.143086 0.558617 0.816990 }
+        <Binormal> { -0.986739 0.016987 0.161201 }
+      }
+      <Normal> { -0.076235 0.828974 -0.554003 }
+    }
+    <Vertex> 3489 {
+      -24.2931976318 -42.8976097107 10.1570320129
+      <UV>  {
+        0.250000 -0.000000
+        <Tangent> { 0.433209 0.529879 0.729080 }
+        <Binormal> { -0.757722 0.651520 -0.023282 }
+      }
+      <Normal> { 0.499466 0.557176 -0.663350 }
+    }
+    <Vertex> 3490 {
+      -24.5806159973 -43.5511894226 9.50129127502
+      <UV>  {
+        0.500000 -0.000000
+        <Tangent> { 0.100658 0.770384 0.629584 }
+        <Binormal> { -0.832312 0.411815 -0.370843 }
+      }
+      <Normal> { 0.545976 0.494430 -0.676321 }
+    }
+    <Vertex> 3491 {
+      -25.6630592346 -43.2317581177 9.50094509125
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.100658 0.770384 0.629584 }
+        <Binormal> { -0.991554 0.027797 0.124516 }
+      }
+      <Normal> { -0.076235 0.653554 -0.752983 }
+    }
+    <Vertex> 3492 {
+      -27.2513751984 -44.1563987732 10.2386293411
+      <UV>  {
+        0.833333 0.666667
+        <Tangent> { 0.378794 0.875045 -0.301350 }
+        <Binormal> { -0.286423 0.420221 0.860184 }
+      }
+      <Normal> { -0.893460 0.206885 -0.398572 }
+    }
+    <Vertex> 3493 {
+      -27.4673595428 -44.3736534119 10.5467443466
+      <UV>  {
+        0.708333 0.666667
+        <Tangent> { 0.216336 -0.314705 -0.924170 }
+        <Binormal> { 0.183303 0.942880 -0.278167 }
+      }
+      <Normal> { -0.958922 0.109226 -0.261666 }
+    }
+    <Vertex> 3494 {
+      -27.0399875641 -42.919631958 10.792183876
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.487809 -0.794900 -0.360729 }
+        <Binormal> { 0.714988 -0.126756 -0.687550 }
+      }
+      <Normal> { -0.500809 0.593310 -0.630177 }
+    }
+    <Vertex> 3495 {
+      -26.8240032196 -43.0539131165 10.2826156616
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { 0.431821 0.890973 -0.140351 }
+        <Binormal> { -0.357880 0.302313 0.818041 }
+      }
+      <Normal> { -0.627216 0.600269 -0.496231 }
+    }
+    <Vertex> 3496 {
+      -27.2513751984 -44.1563987732 10.2386293411
+      <UV>  {
+        0.833333 0.666667
+        <Tangent> { 0.378794 0.875045 -0.301350 }
+        <Binormal> { -0.286423 0.420221 0.860184 }
+      }
+      <Normal> { -0.893460 0.206885 -0.398572 }
+    }
+    <Vertex> 3497 {
+      -26.8240032196 -43.0539131165 10.2826156616
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { 0.431821 0.890973 -0.140351 }
+        <Binormal> { -0.357880 0.302313 0.818041 }
+      }
+      <Normal> { -0.627216 0.600269 -0.496231 }
+    }
+    <Vertex> 3498 {
+      -26.7714557648 -43.6897239685 9.60756111145
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.378786 0.916196 -0.130791 }
+        <Binormal> { -0.422976 0.288916 0.798882 }
+      }
+      <Normal> { -0.650319 0.536088 -0.538194 }
+    }
+    <Vertex> 3499 {
+      -27.1922225952 -44.8938369751 9.77599620819
+      <UV>  {
+        0.791667 0.500000
+        <Tangent> { 0.186319 0.963540 -0.192030 }
+        <Binormal> { -0.085592 0.210276 0.972044 }
+      }
+      <Normal> { -0.965911 0.221931 -0.133061 }
+    }
+    <Vertex> 3500 {
+      -27.2513751984 -44.1563987732 10.2386293411
+      <UV>  {
+        0.833333 0.666667
+        <Tangent> { 0.378794 0.875045 -0.301350 }
+        <Binormal> { -0.286423 0.420221 0.860184 }
+      }
+      <Normal> { -0.893460 0.206885 -0.398572 }
+    }
+    <Vertex> 3501 {
+      -27.1922225952 -44.8938369751 9.77599620819
+      <UV>  {
+        0.791667 0.500000
+        <Tangent> { 0.186319 0.963540 -0.192030 }
+        <Binormal> { -0.085592 0.210276 0.972044 }
+      }
+      <Normal> { -0.965911 0.221931 -0.133061 }
+    }
+    <Vertex> 3502 {
+      -27.205078125 -46.3209342957 10.1605672836
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.337866 0.670582 -0.660396 }
+        <Binormal> { 0.613799 0.688927 0.385527 }
+      }
+      <Normal> { -0.713492 0.275094 0.644368 }
+    }
+    <Vertex> 3503 {
+      -27.4673595428 -44.3736534119 10.5467443466
+      <UV>  {
+        0.708333 0.666667
+        <Tangent> { 0.216336 -0.314705 -0.924170 }
+        <Binormal> { 0.183303 0.942880 -0.278167 }
+      }
+      <Normal> { -0.958922 0.109226 -0.261666 }
+    }
+    <Vertex> 3504 {
+      -27.4184131622 -45.4348297119 9.1938533783
+      <UV>  {
+        0.833333 0.333333
+        <Tangent> { 0.295210 0.930042 -0.218798 }
+        <Binormal> { 0.275820 0.136286 0.951459 }
+      }
+      <Normal> { -0.915036 0.340220 0.216529 }
+    }
+    <Vertex> 3505 {
+      -27.1922225952 -44.8938369751 9.77599620819
+      <UV>  {
+        0.791667 0.500000
+        <Tangent> { 0.186319 0.963540 -0.192030 }
+        <Binormal> { -0.085592 0.210276 0.972044 }
+      }
+      <Normal> { -0.965911 0.221931 -0.133061 }
+    }
+    <Vertex> 3506 {
+      -26.7714557648 -43.6897239685 9.60756111145
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.378786 0.916196 -0.130791 }
+        <Binormal> { -0.422976 0.288916 0.798882 }
+      }
+      <Normal> { -0.650319 0.536088 -0.538194 }
+    }
+    <Vertex> 3507 {
+      -27.0536804199 -44.811756134 8.84604930878
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { 0.509855 0.856392 -0.081493 }
+        <Binormal> { -0.287644 0.256950 0.900617 }
+      }
+      <Normal> { -0.690146 0.607196 -0.393658 }
+    }
+    <Vertex> 3508 {
+      -27.4184131622 -45.4348297119 9.1938533783
+      <UV>  {
+        0.833333 0.333333
+        <Tangent> { 0.295210 0.930042 -0.218798 }
+        <Binormal> { 0.275820 0.136286 0.951459 }
+      }
+      <Normal> { -0.915036 0.340220 0.216529 }
+    }
+    <Vertex> 3509 {
+      -27.0536804199 -44.811756134 8.84604930878
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { 0.509855 0.856392 -0.081493 }
+        <Binormal> { -0.287644 0.256950 0.900617 }
+      }
+      <Normal> { -0.690146 0.607196 -0.393658 }
+    }
+    <Vertex> 3510 {
+      -28.2868919373 -46.1725234985 8.11273765564
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.336108 0.716644 -0.611108 }
+        <Binormal> { 0.701865 0.179760 0.596828 }
+      }
+      <Normal> { -0.421705 0.876553 0.231910 }
+    }
+    <Vertex> 3511 {
+      -27.6871242523 -46.3933029175 9.30745506287
+      <UV>  {
+        0.708333 0.250000
+        <Tangent> { 0.074517 0.717891 -0.692156 }
+        <Binormal> { 0.735005 0.417833 0.512499 }
+      }
+      <Normal> { -0.645955 0.654530 0.392773 }
+    }
+    <Vertex> 3512 {
+      -27.4184131622 -45.4348297119 9.1938533783
+      <UV>  {
+        0.833333 0.333333
+        <Tangent> { 0.295210 0.930042 -0.218798 }
+        <Binormal> { 0.275820 0.136286 0.951459 }
+      }
+      <Normal> { -0.915036 0.340220 0.216529 }
+    }
+    <Vertex> 3513 {
+      -27.6871242523 -46.3933029175 9.30745506287
+      <UV>  {
+        0.708333 0.250000
+        <Tangent> { 0.074517 0.717891 -0.692156 }
+        <Binormal> { 0.735005 0.417833 0.512499 }
+      }
+      <Normal> { -0.645955 0.654530 0.392773 }
+    }
+    <Vertex> 3514 {
+      -27.205078125 -46.3209342957 10.1605672836
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.337866 0.670582 -0.660396 }
+        <Binormal> { 0.613799 0.688927 0.385527 }
+      }
+      <Normal> { -0.713492 0.275094 0.644368 }
+    }
+    <Vertex> 3515 {
+      -27.1922225952 -44.8938369751 9.77599620819
+      <UV>  {
+        0.791667 0.500000
+        <Tangent> { 0.186319 0.963540 -0.192030 }
+        <Binormal> { -0.085592 0.210276 0.972044 }
+      }
+      <Normal> { -0.965911 0.221931 -0.133061 }
+    }
+    <Vertex> 3516 {
+      -24.1577968597 -45.2107391357 9.04929065704
+      <UV>  {
+        0.833333 0.333333
+        <Tangent> { 0.239211 -0.941971 0.235517 }
+        <Binormal> { -0.110382 0.214600 0.970427 }
+      }
+      <Normal> { 0.964751 0.257759 0.052736 }
+    }
+    <Vertex> 3517 {
+      -24.0282783508 -46.1117630005 9.16807079315
+      <UV>  {
+        0.708333 0.250000
+        <Tangent> { 0.004989 -0.696697 0.717348 }
+        <Binormal> { -0.665858 0.518991 0.508682 }
+      }
+      <Normal> { 0.725852 0.597766 0.340251 }
+    }
+    <Vertex> 3518 {
+      -23.7209339142 -45.7575340271 8.11459732056
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.107820 -0.298262 0.948375 }
+        <Binormal> { -0.954244 0.135948 0.151242 }
+      }
+      <Normal> { 0.197668 0.855922 0.477798 }
+    }
+    <Vertex> 3519 {
+      -24.5228786469 -44.6554489136 8.72046470642
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { 0.480371 -0.872192 0.092330 }
+        <Binormal> { 0.409129 0.312766 0.825933 }
+      }
+      <Normal> { 0.639149 0.558885 -0.528245 }
+    }
+    <Vertex> 3520 {
+      -24.1577968597 -45.2107391357 9.04929065704
+      <UV>  {
+        0.833333 0.333333
+        <Tangent> { 0.239211 -0.941971 0.235517 }
+        <Binormal> { -0.110382 0.214600 0.970427 }
+      }
+      <Normal> { 0.964751 0.257759 0.052736 }
+    }
+    <Vertex> 3521 {
+      -24.5228786469 -44.6554489136 8.72046470642
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { 0.480371 -0.872192 0.092330 }
+        <Binormal> { 0.409129 0.312766 0.825933 }
+      }
+      <Normal> { 0.639149 0.558885 -0.528245 }
+    }
+    <Vertex> 3522 {
+      -24.5806159973 -43.5511894226 9.50129127502
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.348883 -0.929102 0.122678 }
+        <Binormal> { 0.567715 0.302936 0.679766 }
+      }
+      <Normal> { 0.545976 0.494430 -0.676321 }
+    }
+    <Vertex> 3523 {
+      -24.2377128601 -44.6792640686 9.65374946594
+      <UV>  {
+        0.791667 0.500000
+        <Tangent> { 0.128152 -0.970189 0.205696 }
+        <Binormal> { 0.288674 0.234473 0.926070 }
+      }
+      <Normal> { 0.938566 0.120823 -0.323160 }
+    }
+    <Vertex> 3524 {
+      -24.1577968597 -45.2107391357 9.04929065704
+      <UV>  {
+        0.833333 0.333333
+        <Tangent> { 0.239211 -0.941971 0.235517 }
+        <Binormal> { -0.110382 0.214600 0.970427 }
+      }
+      <Normal> { 0.964751 0.257759 0.052736 }
+    }
+    <Vertex> 3525 {
+      -24.2377128601 -44.6792640686 9.65374946594
+      <UV>  {
+        0.791667 0.500000
+        <Tangent> { 0.128152 -0.970189 0.205696 }
+        <Binormal> { 0.288674 0.234473 0.926070 }
+      }
+      <Normal> { 0.938566 0.120823 -0.323160 }
+    }
+    <Vertex> 3526 {
+      -24.3250427246 -46.0732040405 10.0706834793
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.077868 -0.843780 0.531010 }
+        <Binormal> { -0.576034 0.470050 0.662445 }
+      }
+      <Normal> { 0.801447 0.177221 0.571154 }
+    }
+    <Vertex> 3527 {
+      -24.0282783508 -46.1117630005 9.16807079315
+      <UV>  {
+        0.708333 0.250000
+        <Tangent> { 0.004989 -0.696697 0.717348 }
+        <Binormal> { -0.665858 0.518991 0.508682 }
+      }
+      <Normal> { 0.725852 0.597766 0.340251 }
+    }
+    <Vertex> 3528 {
+      -23.9907588959 -43.932308197 10.0940666199
+      <UV>  {
+        0.833333 0.666667
+        <Tangent> { 0.282661 -0.940345 0.189352 }
+        <Binormal> { 0.549350 0.320502 0.771594 }
+      }
+      <Normal> { 0.788903 0.105258 -0.605396 }
+    }
+    <Vertex> 3529 {
+      -24.2377128601 -44.6792640686 9.65374946594
+      <UV>  {
+        0.791667 0.500000
+        <Tangent> { 0.128152 -0.970189 0.205696 }
+        <Binormal> { 0.288674 0.234473 0.926070 }
+      }
+      <Normal> { 0.938566 0.120823 -0.323160 }
+    }
+    <Vertex> 3530 {
+      -24.5806159973 -43.5511894226 9.50129127502
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.348883 -0.929102 0.122678 }
+        <Binormal> { 0.567715 0.302936 0.679766 }
+      }
+      <Normal> { 0.545976 0.494430 -0.676321 }
+    }
+    <Vertex> 3531 {
+      -24.2931976318 -42.8976097107 10.1570320129
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { 0.416349 -0.900331 0.126722 }
+        <Binormal> { 0.526628 0.339478 0.681664 }
+      }
+      <Normal> { 0.499466 0.557176 -0.663350 }
+    }
+    <Vertex> 3532 {
+      -23.9907588959 -43.932308197 10.0940666199
+      <UV>  {
+        0.833333 0.666667
+        <Tangent> { 0.282661 -0.940345 0.189352 }
+        <Binormal> { 0.549350 0.320502 0.771594 }
+      }
+      <Normal> { 0.788903 0.105258 -0.605396 }
+    }
+    <Vertex> 3533 {
+      -24.2931976318 -42.8976097107 10.1570320129
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { 0.416349 -0.900331 0.126722 }
+        <Binormal> { 0.526628 0.339478 0.681664 }
+      }
+      <Normal> { 0.499466 0.557176 -0.663350 }
+    }
+    <Vertex> 3534 {
+      -23.9059486389 -42.7259712219 10.6367406845
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.608641 0.457822 0.648039 }
+        <Binormal> { -0.703180 0.689175 0.173546 }
+      }
+      <Normal> { 0.355327 0.552416 -0.753990 }
+    }
+    <Vertex> 3535 {
+      -23.7013683319 -44.1116523743 10.3821907043
+      <UV>  {
+        0.750000 0.750000
+        <Tangent> { 0.276764 -0.929368 0.244289 }
+        <Binormal> { 0.447053 0.346865 0.813122 }
+      }
+      <Normal> { 0.878201 -0.011017 -0.478133 }
+    }
+    <Vertex> 3536 {
+      -23.9907588959 -43.932308197 10.0940666199
+      <UV>  {
+        0.833333 0.666667
+        <Tangent> { 0.282661 -0.940345 0.189352 }
+        <Binormal> { 0.549350 0.320502 0.771594 }
+      }
+      <Normal> { 0.788903 0.105258 -0.605396 }
+    }
+    <Vertex> 3537 {
+      -23.7013683319 -44.1116523743 10.3821907043
+      <UV>  {
+        0.750000 0.750000
+        <Tangent> { 0.276764 -0.929368 0.244289 }
+        <Binormal> { 0.447053 0.346865 0.813122 }
+      }
+      <Normal> { 0.878201 -0.011017 -0.478133 }
+    }
+    <Vertex> 3538 {
+      -24.3250427246 -46.0732040405 10.0706834793
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.077868 -0.843780 0.531010 }
+        <Binormal> { -0.576034 0.470050 0.662445 }
+      }
+      <Normal> { 0.801447 0.177221 0.571154 }
+    }
+    <Vertex> 3539 {
+      -24.2377128601 -44.6792640686 9.65374946594
+      <UV>  {
+        0.791667 0.500000
+        <Tangent> { 0.128152 -0.970189 0.205696 }
+        <Binormal> { 0.288674 0.234473 0.926070 }
+      }
+      <Normal> { 0.938566 0.120823 -0.323160 }
+    }
+    <Vertex> 3540 {
+      -23.3167247772 -43.5330047607 10.6383447647
+      <UV>  {
+        0.833333 0.666667
+        <Tangent> { -0.171866 0.950237 0.259831 }
+        <Binormal> { 0.598695 0.300922 -0.704506 }
+      }
+      <Normal> { 0.787805 -0.256569 0.559893 }
+    }
+    <Vertex> 3541 {
+      -23.916261673 -44.0623931885 10.5973815918
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { 0.052227 0.968109 0.245024 }
+        <Binormal> { 0.966949 0.012140 -0.254070 }
+      }
+      <Normal> { 0.248085 -0.266091 0.931455 }
+    }
+    <Vertex> 3542 {
+      -24.3250427246 -46.0732040405 10.0706834793
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.985591 -0.068312 0.154739 }
+        <Binormal> { -0.066440 0.686939 -0.119919 }
+      }
+      <Normal> { 0.801447 0.177221 0.571154 }
+    }
+    <Vertex> 3543 {
+      -23.7013683319 -44.1116523743 10.3821907043
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.819742 -0.569952 -0.056372 }
+        <Binormal> { 0.271892 -0.441452 0.509563 }
+      }
+      <Normal> { 0.878201 -0.011017 -0.478133 }
+    }
+    <Vertex> 3544 {
+      -23.3167247772 -43.5330047607 10.6383447647
+      <UV>  {
+        0.833333 0.666667
+        <Tangent> { -0.171866 0.950237 0.259831 }
+        <Binormal> { 0.598695 0.300922 -0.704506 }
+      }
+      <Normal> { 0.787805 -0.256569 0.559893 }
+    }
+    <Vertex> 3545 {
+      -23.7013683319 -44.1116523743 10.3821907043
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.819742 -0.569952 -0.056372 }
+        <Binormal> { 0.271892 -0.441452 0.509563 }
+      }
+      <Normal> { 0.878201 -0.011017 -0.478133 }
+    }
+    <Vertex> 3546 {
+      -23.9059486389 -42.7259712219 10.6367406845
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.608641 0.457822 0.648039 }
+        <Binormal> { -0.703180 0.689175 0.173546 }
+      }
+      <Normal> { 0.355327 0.552416 -0.753990 }
+    }
+    <Vertex> 3547 {
+      -23.5798625946 -42.361038208 10.9165410995
+      <UV>  {
+        0.750000 0.750000
+        <Tangent> { -0.246946 0.933666 0.259393 }
+        <Binormal> { 0.146501 0.261294 -0.801037 }
+      }
+      <Normal> { 0.687704 0.643666 0.335734 }
+    }
+    <Vertex> 3548 {
+      -23.3167247772 -43.5330047607 10.6383447647
+      <UV>  {
+        0.833333 0.666667
+        <Tangent> { -0.171866 0.950237 0.259831 }
+        <Binormal> { 0.598695 0.300922 -0.704506 }
+      }
+      <Normal> { 0.787805 -0.256569 0.559893 }
+    }
+    <Vertex> 3549 {
+      -23.5798625946 -42.361038208 10.9165410995
+      <UV>  {
+        0.750000 0.750000
+        <Tangent> { -0.246946 0.933666 0.259393 }
+        <Binormal> { 0.146501 0.261294 -0.801037 }
+      }
+      <Normal> { 0.687704 0.643666 0.335734 }
+    }
+    <Vertex> 3550 {
+      -24.1516685486 -42.8594169617 10.8840789795
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.311174 0.921187 0.233635 }
+        <Binormal> { 0.944254 0.326535 -0.029844 }
+      }
+      <Normal> { 0.094974 -0.185247 0.978057 }
+    }
+    <Vertex> 3551 {
+      -23.916261673 -44.0623931885 10.5973815918
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { 0.052227 0.968109 0.245024 }
+        <Binormal> { 0.966949 0.012140 -0.254070 }
+      }
+      <Normal> { 0.248085 -0.266091 0.931455 }
+    }
+    <Vertex> 3552 {
+      -27.7157802582 -43.8236351013 10.8422584534
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.694021 -0.154973 0.703055 }
+    }
+    <Vertex> 3553 {
+      -27.2491035461 -42.5838928223 11.1014757156
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.404776 0.183140 -0.895863 }
+        <Binormal> { 0.643866 0.752768 -0.137029 }
+      }
+      <Normal> { -0.649281 0.632282 0.422620 }
+    }
+    <Vertex> 3554 {
+      -27.0399875641 -42.919631958 10.792183876
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.487809 -0.794900 -0.360729 }
+        <Binormal> { 0.714988 -0.126756 -0.687550 }
+      }
+      <Normal> { -0.500809 0.593310 -0.630177 }
+    }
+    <Vertex> 3555 {
+      -27.4673595428 -44.3736534119 10.5467443466
+      <UV>  {
+        0.708333 0.666667
+        <Tangent> { 0.216336 -0.314705 -0.924170 }
+        <Binormal> { 0.183303 0.942880 -0.278167 }
+      }
+      <Normal> { -0.958922 0.109226 -0.261666 }
+    }
+    <Vertex> 3556 {
+      -27.7157802582 -43.8236351013 10.8422584534
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.694021 -0.154973 0.703055 }
+    }
+    <Vertex> 3557 {
+      -27.4673595428 -44.3736534119 10.5467443466
+      <UV>  {
+        0.708333 0.666667
+        <Tangent> { 0.216336 -0.314705 -0.924170 }
+        <Binormal> { 0.183303 0.942880 -0.278167 }
+      }
+      <Normal> { -0.958922 0.109226 -0.261666 }
+    }
+    <Vertex> 3558 {
+      -27.205078125 -46.3209342957 10.1605672836
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.337866 0.670582 -0.660396 }
+        <Binormal> { 0.613799 0.688927 0.385527 }
+      }
+      <Normal> { -0.713492 0.275094 0.644368 }
+    }
+    <Vertex> 3559 {
+      -27.1940593719 -44.28748703 10.7428417206
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { 0.209058 0.941434 0.264453 }
+        <Binormal> { 0.969593 -0.234743 0.069174 }
+      }
+      <Normal> { -0.127201 -0.241951 0.961882 }
+    }
+    <Vertex> 3560 {
+      -27.7157802582 -43.8236351013 10.8422584534
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.694021 -0.154973 0.703055 }
+    }
+    <Vertex> 3561 {
+      -27.1940593719 -44.28748703 10.7428417206
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { 0.209058 0.941434 0.264453 }
+        <Binormal> { 0.969593 -0.234743 0.069174 }
+      }
+      <Normal> { -0.127201 -0.241951 0.961882 }
+    }
+    <Vertex> 3562 {
+      -26.7504558563 -43.0262107849 11.0082626343
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.023804 -0.185858 0.982269 }
+    }
+    <Vertex> 3563 {
+      -27.2491035461 -42.5838928223 11.1014757156
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.404776 0.183140 -0.895863 }
+        <Binormal> { 0.643866 0.752768 -0.137029 }
+      }
+      <Normal> { -0.649281 0.632282 0.422620 }
+    }
+    <Vertex> 3564 {
+      -25.3805599213 -42.0705108643 11.0985784531
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { -0.996878 -0.061482 0.049534 }
+        <Binormal> { -0.071016 0.424110 -0.902798 }
+      }
+      <Normal> { -0.032960 0.903592 0.427076 }
+    }
+    <Vertex> 3565 {
+      -23.5798625946 -42.361038208 10.9165410995
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.982353 0.158494 0.099309 }
+        <Binormal> { -0.010710 0.398104 -0.741304 }
+      }
+      <Normal> { 0.687704 0.643666 0.335734 }
+    }
+    <Vertex> 3566 {
+      -23.9059486389 -42.7259712219 10.6367406845
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.975568 0.195367 0.100496 }
+        <Binormal> { -0.202820 -0.699860 -0.608338 }
+      }
+      <Normal> { 0.355327 0.552416 -0.753990 }
+    }
+    <Vertex> 3567 {
+      -25.4358348846 -42.3495178223 10.797794342
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.996876 -0.061600 0.049443 }
+        <Binormal> { -0.002730 -0.598707 -0.800955 }
+      }
+      <Normal> { -0.077120 0.798700 -0.596759 }
+    }
+    <Vertex> 3568 {
+      -25.3805599213 -42.0705108643 11.0985784531
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { -0.996878 -0.061482 0.049534 }
+        <Binormal> { -0.071016 0.424110 -0.902798 }
+      }
+      <Normal> { -0.032960 0.903592 0.427076 }
+    }
+    <Vertex> 3569 {
+      -25.4358348846 -42.3495178223 10.797794342
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.996876 -0.061600 0.049443 }
+        <Binormal> { -0.002730 -0.598707 -0.800955 }
+      }
+      <Normal> { -0.077120 0.798700 -0.596759 }
+    }
+    <Vertex> 3570 {
+      -27.0399875641 -42.919631958 10.792183876
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.943080 -0.178576 0.280553 }
+        <Binormal> { -0.053920 -0.734811 -0.648972 }
+      }
+      <Normal> { -0.500809 0.593310 -0.630177 }
+    }
+    <Vertex> 3571 {
+      -27.2491035461 -42.5838928223 11.1014757156
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.964266 -0.264932 0.001495 }
+        <Binormal> { -0.112911 0.406548 -0.781704 }
+      }
+      <Normal> { -0.649281 0.632282 0.422620 }
+    }
+    <Vertex> 3572 {
+      -25.3805599213 -42.0705108643 11.0985784531
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { -0.996878 -0.061482 0.049534 }
+        <Binormal> { -0.071016 0.424110 -0.902798 }
+      }
+      <Normal> { -0.032960 0.903592 0.427076 }
+    }
+    <Vertex> 3573 {
+      -27.2491035461 -42.5838928223 11.1014757156
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.964266 -0.264932 0.001495 }
+        <Binormal> { -0.112911 0.406548 -0.781704 }
+      }
+      <Normal> { -0.649281 0.632282 0.422620 }
+    }
+    <Vertex> 3574 {
+      -26.7504558563 -43.0262107849 11.0082626343
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.023804 -0.185858 0.982269 }
+    }
+    <Vertex> 3575 {
+      -25.41147995 -42.4962615967 11.0711631775
+      <UV>  {
+        0.250000 -0.000000
+        <Tangent> { -0.996814 -0.063977 0.047633 }
+        <Binormal> { -0.054519 0.982391 0.178555 }
+      }
+      <Normal> { 0.058687 -0.175359 0.982727 }
+    }
+    <Vertex> 3576 {
+      -25.3805599213 -42.0705108643 11.0985784531
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { -0.996878 -0.061482 0.049534 }
+        <Binormal> { -0.071016 0.424110 -0.902798 }
+      }
+      <Normal> { -0.032960 0.903592 0.427076 }
+    }
+    <Vertex> 3577 {
+      -25.41147995 -42.4962615967 11.0711631775
+      <UV>  {
+        0.250000 -0.000000
+        <Tangent> { -0.996814 -0.063977 0.047633 }
+        <Binormal> { -0.054519 0.982391 0.178555 }
+      }
+      <Normal> { 0.058687 -0.175359 0.982727 }
+    }
+    <Vertex> 3578 {
+      -24.1516685486 -42.8594169617 10.8840789795
+      <UV>  {
+        0.500000 -0.000000
+        <Tangent> { -0.971210 0.207437 0.117136 }
+        <Binormal> { 0.224584 0.961024 0.160213 }
+      }
+      <Normal> { 0.094974 -0.185247 0.978057 }
+    }
+    <Vertex> 3579 {
+      -23.5798625946 -42.361038208 10.9165410995
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.982353 0.158494 0.099309 }
+        <Binormal> { -0.010710 0.398104 -0.741304 }
+      }
+      <Normal> { 0.687704 0.643666 0.335734 }
+    }
+    <Vertex> 3580 {
+      -25.5681304932 -44.3404808044 10.6467151642
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.996556 -0.071606 0.041817 }
+        <Binormal> { -0.061019 0.974703 0.214868 }
+      }
+      <Normal> { 0.055605 -0.211615 0.975738 }
+    }
+    <Vertex> 3581 {
+      -25.7746887207 -46.2349739075 10.4541301727
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.995840 -0.085658 0.031079 }
+        <Binormal> { -0.091120 0.935512 -0.341262 }
+      }
+      <Normal> { -0.004913 0.342265 0.939573 }
+    }
+    <Vertex> 3582 {
+      -24.3250427246 -46.0732040405 10.0706834793
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.985591 -0.068312 0.154739 }
+        <Binormal> { -0.066440 0.686939 -0.119919 }
+      }
+      <Normal> { 0.801447 0.177221 0.571154 }
+    }
+    <Vertex> 3583 {
+      -23.916261673 -44.0623931885 10.5973815918
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.985696 -0.165939 0.029438 }
+        <Binormal> { -0.146732 0.925435 0.303452 }
+      }
+      <Normal> { 0.248085 -0.266091 0.931455 }
+    }
+    <Vertex> 3584 {
+      -25.5681304932 -44.3404808044 10.6467151642
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.996556 -0.071606 0.041817 }
+        <Binormal> { -0.061019 0.974703 0.214868 }
+      }
+      <Normal> { 0.055605 -0.211615 0.975738 }
+    }
+    <Vertex> 3585 {
+      -23.916261673 -44.0623931885 10.5973815918
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.985696 -0.165939 0.029438 }
+        <Binormal> { -0.146732 0.925435 0.303452 }
+      }
+      <Normal> { 0.248085 -0.266091 0.931455 }
+    }
+    <Vertex> 3586 {
+      -24.1516685486 -42.8594169617 10.8840789795
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.996297 0.029108 0.080896 }
+        <Binormal> { 0.043455 0.982119 0.181797 }
+      }
+      <Normal> { 0.094974 -0.185247 0.978057 }
+    }
+    <Vertex> 3587 {
+      -25.41147995 -42.4962615967 11.0711631775
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.996814 -0.063977 0.047633 }
+        <Binormal> { -0.054519 0.982391 0.178555 }
+      }
+      <Normal> { 0.058687 -0.175359 0.982727 }
+    }
+    <Vertex> 3588 {
+      -25.5681304932 -44.3404808044 10.6467151642
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.996556 -0.071606 0.041817 }
+        <Binormal> { -0.061019 0.974703 0.214868 }
+      }
+      <Normal> { 0.055605 -0.211615 0.975738 }
+    }
+    <Vertex> 3589 {
+      -25.41147995 -42.4962615967 11.0711631775
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.996814 -0.063977 0.047633 }
+        <Binormal> { -0.054519 0.982391 0.178555 }
+      }
+      <Normal> { 0.058687 -0.175359 0.982727 }
+    }
+    <Vertex> 3590 {
+      -26.7504558563 -43.0262107849 11.0082626343
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.987246 -0.158815 0.011064 }
+        <Binormal> { -0.153943 0.970005 0.187268 }
+      }
+      <Normal> { 0.023804 -0.185858 0.982269 }
+    }
+    <Vertex> 3591 {
+      -27.1940593719 -44.28748703 10.7428417206
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.997729 0.032519 0.058987 }
+        <Binormal> { 0.045551 0.952195 0.245538 }
+      }
+      <Normal> { -0.127201 -0.241951 0.961882 }
+    }
+    <Vertex> 3592 {
+      -25.5681304932 -44.3404808044 10.6467151642
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.996556 -0.071606 0.041817 }
+        <Binormal> { -0.061019 0.974703 0.214868 }
+      }
+      <Normal> { 0.055605 -0.211615 0.975738 }
+    }
+    <Vertex> 3593 {
+      -27.1940593719 -44.28748703 10.7428417206
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.997729 0.032519 0.058987 }
+        <Binormal> { 0.045551 0.952195 0.245538 }
+      }
+      <Normal> { -0.127201 -0.241951 0.961882 }
+    }
+    <Vertex> 3594 {
+      -27.205078125 -46.3209342957 10.1605672836
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.991453 -0.036699 -0.125199 }
+        <Binormal> { 0.010794 0.728189 -0.298927 }
+      }
+      <Normal> { -0.713492 0.275094 0.644368 }
+    }
+    <Vertex> 3595 {
+      -25.7746887207 -46.2349739075 10.4541301727
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.995840 -0.085658 0.031079 }
+        <Binormal> { -0.091120 0.935512 -0.341262 }
+      }
+      <Normal> { -0.004913 0.342265 0.939573 }
+    }
+    <Vertex> 3596 {
+      -32.1065597534 -46.4740600586 12.5013723373
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.995498 0.058150 0.074850 }
+        <Binormal> { -0.079544 0.083265 0.993236 }
+      }
+      <Normal> { -0.065065 0.993927 -0.088534 }
+    }
+    <Vertex> 3597 {
+      -28.745721817 -46.2258796692 12.5013723373
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.998082 -0.050478 0.035827 }
+        <Binormal> { -0.014578 -0.370695 -0.928399 }
+      }
+      <Normal> { -0.079836 0.926145 -0.368542 }
+    }
+    <Vertex> 3598 {
+      -28.4814758301 -46.8125953674 11.8192577362
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.932572 -0.260884 -0.249496 }
+        <Binormal> { 0.318840 -0.290416 -0.888099 }
+      }
+      <Normal> { -0.011170 0.949187 -0.314402 }
+    }
+    <Vertex> 3599 {
+      -31.7773551941 -46.8223190308 11.9317550659
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.903665 -0.227168 -0.363020 }
+        <Binormal> { 0.406348 -0.204665 -0.883448 }
+      }
+      <Normal> { -0.025361 0.971252 -0.236671 }
+    }
+    <Vertex> 3600 {
+      -32.1065597534 -46.4740600586 12.5013723373
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.995498 0.058150 0.074850 }
+        <Binormal> { -0.079544 0.083265 0.993236 }
+      }
+      <Normal> { -0.065065 0.993927 -0.088534 }
+    }
+    <Vertex> 3601 {
+      -31.7773551941 -46.8223190308 11.9317550659
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.903665 -0.227168 -0.363020 }
+        <Binormal> { 0.406348 -0.204665 -0.883448 }
+      }
+      <Normal> { -0.025361 0.971252 -0.236671 }
+    }
+    <Vertex> 3602 {
+      -35.836479187 -46.9374694824 11.6720666885
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.989677 0.091841 0.110022 }
+        <Binormal> { -0.120130 0.113905 0.985524 }
+      }
+      <Normal> { -0.041932 0.991913 -0.119755 }
+    }
+    <Vertex> 3603 {
+      -35.836479187 -46.7029190063 12.5013723373
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.995498 0.058150 0.074850 }
+        <Binormal> { -0.069195 -0.093779 0.993136 }
+      }
+      <Normal> { -0.055513 0.994385 0.090030 }
+    }
+    <Vertex> 3604 {
+      -32.1065597534 -46.4740600586 12.5013723373
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.995498 0.058150 0.074850 }
+        <Binormal> { -0.079544 0.083265 0.993236 }
+      }
+      <Normal> { -0.065065 0.993927 -0.088534 }
+    }
+    <Vertex> 3605 {
+      -35.836479187 -46.7029190063 12.5013723373
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.995498 0.058150 0.074850 }
+        <Binormal> { -0.069195 -0.093779 0.993136 }
+      }
+      <Normal> { -0.055513 0.994385 0.090030 }
+    }
+    <Vertex> 3606 {
+      -35.836479187 -46.9813995361 12.7938575745
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.998944 0.024002 0.039167 }
+        <Binormal> { -0.002415 -0.823981 0.566539 }
+      }
+      <Normal> { -0.051302 0.565905 0.822840 }
+    }
+    <Vertex> 3607 {
+      -32.1065597534 -46.5808982849 12.7938575745
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.927632 -0.214000 0.306110 }
+        <Binormal> { -0.360967 0.684320 -0.615467 }
+      }
+      <Normal> { -0.061556 0.649281 0.758019 }
+    }
+    <Vertex> 3608 {
+      -32.1065597534 -46.4740600586 12.5013723373
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.995498 0.058150 0.074850 }
+        <Binormal> { -0.079544 0.083265 0.993236 }
+      }
+      <Normal> { -0.065065 0.993927 -0.088534 }
+    }
+    <Vertex> 3609 {
+      -32.1065597534 -46.5808982849 12.7938575745
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.927632 -0.214000 0.306110 }
+        <Binormal> { -0.360967 0.684320 -0.615467 }
+      }
+      <Normal> { -0.061556 0.649281 0.758019 }
+    }
+    <Vertex> 3610 {
+      -28.745721817 -46.2003059387 12.7938575745
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.993125 -0.095348 0.067909 }
+        <Binormal> { -0.111981 0.607717 -0.784393 }
+      }
+      <Normal> { -0.086184 0.781549 0.617817 }
+    }
+    <Vertex> 3611 {
+      -28.745721817 -46.2258796692 12.5013723373
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.998082 -0.050478 0.035827 }
+        <Binormal> { -0.014578 -0.370695 -0.928399 }
+      }
+      <Normal> { -0.079836 0.926145 -0.368542 }
+    }
+    <Vertex> 3612 {
+      10.3085603714 -46.516456604 9.26632499695
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.952756 0.299105 -0.052841 }
+        <Binormal> { 0.028544 0.085023 0.995929 }
+      }
+      <Normal> { -0.307657 0.948729 -0.072176 }
+    }
+    <Vertex> 3613 {
+      13.1305847168 -45.5073661804 9.0889787674
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.964843 0.171031 0.199565 }
+        <Binormal> { -0.176527 -0.140813 0.974138 }
+      }
+      <Normal> { -0.193457 0.975341 0.105930 }
+    }
+    <Vertex> 3614 {
+      13.5316972733 -45.2612876892 7.80175495148
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.963170 0.177964 0.201573 }
+        <Binormal> { -0.205142 0.001776 0.978653 }
+      }
+      <Normal> { -0.184118 0.982055 -0.040376 }
+    }
+    <Vertex> 3615 {
+      10.8057422638 -46.3373565674 8.07565593719
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.933294 0.344728 -0.100620 }
+        <Binormal> { 0.078821 0.076709 0.993911 }
+      }
+      <Normal> { -0.353893 0.934233 -0.044038 }
+    }
+    <Vertex> 3616 {
+      10.3085603714 -46.516456604 9.26632499695
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.952756 0.299105 -0.052841 }
+        <Binormal> { 0.028544 0.085023 0.995929 }
+      }
+      <Normal> { -0.307657 0.948729 -0.072176 }
+    }
+    <Vertex> 3617 {
+      10.8057422638 -46.3373565674 8.07565593719
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.933294 0.344728 -0.100620 }
+        <Binormal> { 0.078821 0.076709 0.993911 }
+      }
+      <Normal> { -0.353893 0.934233 -0.044038 }
+    }
+    <Vertex> 3618 {
+      7.88416528702 -47.3451957703 8.93755340576
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.935579 0.307248 -0.174043 }
+        <Binormal> { 0.149746 0.091929 0.967256 }
+      }
+      <Normal> { -0.141850 0.987274 -0.071871 }
+    }
+    <Vertex> 3619 {
+      7.36824035645 -47.4140510559 9.96523857117
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.938702 0.313014 -0.144431 }
+        <Binormal> { 0.102269 0.138386 0.964586 }
+      }
+      <Normal> { -0.134404 0.982757 -0.126743 }
+    }
+    <Vertex> 3620 {
+      10.3085603714 -46.516456604 9.26632499695
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.952756 0.299105 -0.052841 }
+        <Binormal> { 0.028544 0.085023 0.995929 }
+      }
+      <Normal> { -0.307657 0.948729 -0.072176 }
+    }
+    <Vertex> 3621 {
+      7.36824035645 -47.4140510559 9.96523857117
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.938702 0.313014 -0.144431 }
+        <Binormal> { 0.102269 0.138386 0.964586 }
+      }
+      <Normal> { -0.134404 0.982757 -0.126743 }
+    }
+    <Vertex> 3622 {
+      6.70784902573 -47.0221824646 11.24629879
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.958724 0.264095 -0.105369 }
+        <Binormal> { -0.026307 0.449171 0.886431 }
+      }
+      <Normal> { -0.177618 0.875668 -0.448988 }
+    }
+    <Vertex> 3623 {
+      9.57927322388 -46.501750946 10.7104196548
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.979314 0.202186 -0.008025 }
+        <Binormal> { -0.051084 0.285416 0.957000 }
+      }
+      <Normal> { -0.196509 0.936644 -0.289834 }
+    }
+    <Vertex> 3624 {
+      10.3085603714 -46.516456604 9.26632499695
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.952756 0.299105 -0.052841 }
+        <Binormal> { 0.028544 0.085023 0.995929 }
+      }
+      <Normal> { -0.307657 0.948729 -0.072176 }
+    }
+    <Vertex> 3625 {
+      9.57927322388 -46.501750946 10.7104196548
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.979314 0.202186 -0.008025 }
+        <Binormal> { -0.051084 0.285416 0.957000 }
+      }
+      <Normal> { -0.196509 0.936644 -0.289834 }
+    }
+    <Vertex> 3626 {
+      12.5138368607 -45.9000854492 10.5322751999
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.974898 0.142466 0.171106 }
+        <Binormal> { -0.165060 -0.052757 0.984374 }
+      }
+      <Normal> { -0.119144 0.992309 0.033204 }
+    }
+    <Vertex> 3627 {
+      13.1305847168 -45.5073661804 9.0889787674
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.964843 0.171031 0.199565 }
+        <Binormal> { -0.176527 -0.140813 0.974138 }
+      }
+      <Normal> { -0.193457 0.975341 0.105930 }
+    }
+    <Vertex> 3628 {
+      15.7914123535 -45.4221458435 9.72985172272
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.924572 -0.059601 0.376317 }
+        <Binormal> { -0.380980 -0.155016 0.911476 }
+      }
+      <Normal> { -0.000061 0.985839 0.167638 }
+    }
+    <Vertex> 3629 {
+      18.3716411591 -45.798866272 10.779835701
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.897169 -0.131780 0.421570 }
+        <Binormal> { -0.434871 -0.096692 0.895250 }
+      }
+      <Normal> { 0.072909 0.987152 0.142033 }
+    }
+    <Vertex> 3630 {
+      18.5104732513 -45.7867698669 10.0472612381
+      <UV>  {
+        -0.042124 0.762705
+        <Tangent> { 0.855355 -0.163763 0.491477 }
+        <Binormal> { -0.465853 0.171763 0.867992 }
+      }
+      <Normal> { 0.221107 0.972442 -0.073763 }
+    }
+    <Vertex> 3631 {
+      16.0683994293 -45.2562675476 8.64517688751
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.869040 -0.106434 0.483157 }
+        <Binormal> { -0.470549 0.121196 0.873061 }
+      }
+      <Normal> { 0.116520 0.990356 -0.074679 }
+    }
+    <Vertex> 3632 {
+      15.7914123535 -45.4221458435 9.72985172272
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.924572 -0.059601 0.376317 }
+        <Binormal> { -0.380980 -0.155016 0.911476 }
+      }
+      <Normal> { -0.000061 0.985839 0.167638 }
+    }
+    <Vertex> 3633 {
+      16.0683994293 -45.2562675476 8.64517688751
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.869040 -0.106434 0.483157 }
+        <Binormal> { -0.470549 0.121196 0.873061 }
+      }
+      <Normal> { 0.116520 0.990356 -0.074679 }
+    }
+    <Vertex> 3634 {
+      13.5316972733 -45.2612876892 7.80175495148
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.963170 0.177964 0.201573 }
+        <Binormal> { -0.205142 0.001776 0.978653 }
+      }
+      <Normal> { -0.184118 0.982055 -0.040376 }
+    }
+    <Vertex> 3635 {
+      13.1305847168 -45.5073661804 9.0889787674
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.964843 0.171031 0.199565 }
+        <Binormal> { -0.176527 -0.140813 0.974138 }
+      }
+      <Normal> { -0.193457 0.975341 0.105930 }
+    }
+    <Vertex> 3636 {
+      15.7914123535 -45.4221458435 9.72985172272
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.924572 -0.059601 0.376317 }
+        <Binormal> { -0.380980 -0.155016 0.911476 }
+      }
+      <Normal> { -0.000061 0.985839 0.167638 }
+    }
+    <Vertex> 3637 {
+      13.1305847168 -45.5073661804 9.0889787674
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.964843 0.171031 0.199565 }
+        <Binormal> { -0.176527 -0.140813 0.974138 }
+      }
+      <Normal> { -0.193457 0.975341 0.105930 }
+    }
+    <Vertex> 3638 {
+      12.5138368607 -45.9000854492 10.5322751999
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.974898 0.142466 0.171106 }
+        <Binormal> { -0.165060 -0.052757 0.984374 }
+      }
+      <Normal> { -0.119144 0.992309 0.033204 }
+    }
+    <Vertex> 3639 {
+      15.4297418594 -45.7328224182 10.886013031
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.968360 -0.002345 0.249547 }
+        <Binormal> { -0.247659 -0.131174 0.959802 }
+      }
+      <Normal> { -0.045076 0.991272 0.123844 }
+    }
+    <Vertex> 3640 {
+      15.7914123535 -45.4221458435 9.72985172272
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.924572 -0.059601 0.376317 }
+        <Binormal> { -0.380980 -0.155016 0.911476 }
+      }
+      <Normal> { -0.000061 0.985839 0.167638 }
+    }
+    <Vertex> 3641 {
+      15.4297418594 -45.7328224182 10.886013031
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.968360 -0.002345 0.249547 }
+        <Binormal> { -0.247659 -0.131174 0.959802 }
+      }
+      <Normal> { -0.045076 0.991272 0.123844 }
+    }
+    <Vertex> 3642 {
+      18.3363170624 -45.7827606201 11.505692482
+      <UV>  {
+        -0.073782 0.891829
+        <Tangent> { 0.930692 -0.084195 0.355981 }
+        <Binormal> { -0.360626 -0.065333 0.927383 }
+      }
+      <Normal> { -0.015015 0.997803 0.064455 }
+    }
+    <Vertex> 3643 {
+      18.3716411591 -45.798866272 10.779835701
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.897169 -0.131780 0.421570 }
+        <Binormal> { -0.434871 -0.096692 0.895250 }
+      }
+      <Normal> { 0.072909 0.987152 0.142033 }
+    }
+    <Vertex> 3644 {
+      4.35252714157 -47.1647644043 10.8890647888
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.960233 -0.017907 -0.278624 }
+        <Binormal> { 0.279185 0.061467 0.958216 }
+      }
+      <Normal> { -0.006256 0.998016 -0.062197 }
+    }
+    <Vertex> 3645 {
+      7.36824035645 -47.4140510559 9.96523857117
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.953170 -0.078791 -0.291992 }
+        <Binormal> { 0.296943 0.160053 0.926144 }
+      }
+      <Normal> { -0.134404 0.982757 -0.126743 }
+    }
+    <Vertex> 3646 {
+      7.88416528702 -47.3451957703 8.93755340576
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.955374 -0.069868 -0.287019 }
+        <Binormal> { 0.288388 0.109377 0.933304 }
+      }
+      <Normal> { -0.141850 0.987274 -0.071871 }
+    }
+    <Vertex> 3647 {
+      4.76059961319 -47.1455039978 9.8581237793
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.963949 -0.028861 -0.264516 }
+        <Binormal> { 0.265411 0.034712 0.963423 }
+      }
+      <Normal> { 0.030702 0.998535 -0.044435 }
+    }
+    <Vertex> 3648 {
+      4.35252714157 -47.1647644043 10.8890647888
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.960233 -0.017907 -0.278624 }
+        <Binormal> { 0.279185 0.061467 0.958216 }
+      }
+      <Normal> { -0.006256 0.998016 -0.062197 }
+    }
+    <Vertex> 3649 {
+      4.76059961319 -47.1455039978 9.8581237793
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.963949 -0.028861 -0.264516 }
+        <Binormal> { 0.265411 0.034712 0.963423 }
+      }
+      <Normal> { 0.030702 0.998535 -0.044435 }
+    }
+    <Vertex> 3650 {
+      2.14553070068 -47.1733779907 10.5122842789
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.963804 0.007904 -0.266494 }
+        <Binormal> { 0.238377 0.144403 0.866400 }
+      }
+      <Normal> { -0.444624 0.895291 -0.026887 }
+    }
+    <Vertex> 3651 {
+      1.93137025833 -47.1781921387 11.6274299622
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.956496 0.005305 -0.291697 }
+        <Binormal> { 0.254600 0.139403 0.837389 }
+      }
+      <Normal> { -0.488113 0.872768 0.003113 }
+    }
+    <Vertex> 3652 {
+      4.35252714157 -47.1647644043 10.8890647888
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.960233 -0.017907 -0.278624 }
+        <Binormal> { 0.279185 0.061467 0.958216 }
+      }
+      <Normal> { -0.006256 0.998016 -0.062197 }
+    }
+    <Vertex> 3653 {
+      1.93137025833 -47.1781921387 11.6274299622
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.956496 0.005305 -0.291697 }
+        <Binormal> { 0.254600 0.139403 0.837389 }
+      }
+      <Normal> { -0.488113 0.872768 0.003113 }
+    }
+    <Vertex> 3654 {
+      1.91012883186 -47.2664451599 12.5596075058
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.956305 0.071127 -0.283588 }
+        <Binormal> { 0.238893 -0.008341 0.803495 }
+      }
+      <Normal> { -0.576128 0.797357 0.179571 }
+    }
+    <Vertex> 3655 {
+      3.98136568069 -46.9457435608 11.9657716751
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.963356 0.049047 -0.263705 }
+        <Binormal> { 0.236002 0.305571 0.918986 }
+      }
+      <Normal> { -0.202521 0.943632 -0.261757 }
+    }
+    <Vertex> 3656 {
+      4.35252714157 -47.1647644043 10.8890647888
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.960233 -0.017907 -0.278624 }
+        <Binormal> { 0.279185 0.061467 0.958216 }
+      }
+      <Normal> { -0.006256 0.998016 -0.062197 }
+    }
+    <Vertex> 3657 {
+      3.98136568069 -46.9457435608 11.9657716751
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.963356 0.049047 -0.263705 }
+        <Binormal> { 0.236002 0.305571 0.918986 }
+      }
+      <Normal> { -0.202521 0.943632 -0.261757 }
+    }
+    <Vertex> 3658 {
+      6.70784902573 -47.0221824646 11.24629879
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.959979 -0.054455 -0.274726 }
+        <Binormal> { 0.265019 0.479816 0.830951 }
+      }
+      <Normal> { -0.177618 0.875668 -0.448988 }
+    }
+    <Vertex> 3659 {
+      7.36824035645 -47.4140510559 9.96523857117
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.953170 -0.078791 -0.291992 }
+        <Binormal> { 0.296943 0.160053 0.926144 }
+      }
+      <Normal> { -0.134404 0.982757 -0.126743 }
+    }
+    <Vertex> 3660 {
+      0.774720609188 -48.8639030457 11.7699623108
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.512851 0.857940 -0.030390 }
+        <Binormal> { 0.164669 -0.063569 0.984272 }
+      }
+      <Normal> { -0.839198 0.515336 0.173681 }
+    }
+    <Vertex> 3661 {
+      1.93137025833 -47.1781921387 11.6274299622
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.564402 0.822565 -0.069551 }
+        <Binormal> { 0.063262 0.032192 0.894097 }
+      }
+      <Normal> { -0.488113 0.872768 0.003113 }
+    }
+    <Vertex> 3662 {
+      2.14553070068 -47.1733779907 10.5122842789
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.602396 0.796727 -0.048424 }
+        <Binormal> { 0.021932 0.037727 0.893564 }
+      }
+      <Normal> { -0.444624 0.895291 -0.026887 }
+    }
+    <Vertex> 3663 {
+      0.749444842339 -48.8639030457 10.5749530792
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.602460 0.797910 -0.019530 }
+        <Binormal> { 0.007602 0.018718 0.999240 }
+      }
+      <Normal> { -0.817225 0.576250 -0.004578 }
+    }
+    <Vertex> 3664 {
+      0.774720609188 -48.8639030457 11.7699623108
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.512851 0.857940 -0.030390 }
+        <Binormal> { 0.164669 -0.063569 0.984272 }
+      }
+      <Normal> { -0.839198 0.515336 0.173681 }
+    }
+    <Vertex> 3665 {
+      0.749444842339 -48.8639030457 10.5749530792
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.602460 0.797910 -0.019530 }
+        <Binormal> { 0.007602 0.018718 0.999240 }
+      }
+      <Normal> { -0.817225 0.576250 -0.004578 }
+    }
+    <Vertex> 3666 {
+      -0.570455491543 -50.7704811096 10.6003293991
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.545066 0.838382 -0.004328 }
+        <Binormal> { 0.009013 -0.001027 0.935905 }
+      }
+      <Normal> { -0.592730 0.805353 0.006592 }
+    }
+    <Vertex> 3667 {
+      -0.384465306997 -50.7704811096 11.7642726898
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.519507 0.854462 0.002550 }
+        <Binormal> { 0.337059 -0.207514 0.865993 }
+      }
+      <Normal> { -0.581774 0.710074 0.396588 }
+    }
+    <Vertex> 3668 {
+      0.774720609188 -48.8639030457 11.7699623108
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.512851 0.857940 -0.030390 }
+        <Binormal> { 0.164669 -0.063569 0.984272 }
+      }
+      <Normal> { -0.839198 0.515336 0.173681 }
+    }
+    <Vertex> 3669 {
+      -0.384465306997 -50.7704811096 11.7642726898
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.519507 0.854462 0.002550 }
+        <Binormal> { 0.337059 -0.207514 0.865993 }
+      }
+      <Normal> { -0.581774 0.710074 0.396588 }
+    }
+    <Vertex> 3670 {
+      0.260279417038 -51.5365333557 12.731045723
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.392154 0.919898 -0.001396 }
+        <Binormal> { 0.747501 -0.317781 0.580022 }
+      }
+      <Normal> { -0.508988 0.285104 0.812159 }
+    }
+    <Vertex> 3671 {
+      1.0044438839 -48.978313446 12.718580246
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.360155 0.932142 -0.037424 }
+        <Binormal> { 0.485343 -0.153019 0.859428 }
+      }
+      <Normal> { -0.777795 0.373211 0.505692 }
+    }
+    <Vertex> 3672 {
+      0.774720609188 -48.8639030457 11.7699623108
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.512851 0.857940 -0.030390 }
+        <Binormal> { 0.164669 -0.063569 0.984272 }
+      }
+      <Normal> { -0.839198 0.515336 0.173681 }
+    }
+    <Vertex> 3673 {
+      1.0044438839 -48.978313446 12.718580246
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.360155 0.932142 -0.037424 }
+        <Binormal> { 0.485343 -0.153019 0.859428 }
+      }
+      <Normal> { -0.777795 0.373211 0.505692 }
+    }
+    <Vertex> 3674 {
+      1.91012883186 -47.2664451599 12.5596075058
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.517403 0.852392 -0.075642 }
+        <Binormal> { 0.213379 -0.049331 0.903642 }
+      }
+      <Normal> { -0.576128 0.797357 0.179571 }
+    }
+    <Vertex> 3675 {
+      1.93137025833 -47.1781921387 11.6274299622
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.564402 0.822565 -0.069551 }
+        <Binormal> { 0.063262 0.032192 0.894097 }
+      }
+      <Normal> { -0.488113 0.872768 0.003113 }
+    }
+    <Vertex> 3676 {
+      -2.81323242188 -51.4465179443 12.0579738617
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.989327 -0.010800 -0.145310 }
+        <Binormal> { 0.125207 -0.444858 0.885521 }
+      }
+      <Normal> { 0.027619 0.894772 0.445601 }
+    }
+    <Vertex> 3677 {
+      -0.384465306997 -50.7704811096 11.7642726898
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.963553 0.253851 -0.084415 }
+        <Binormal> { 0.160615 -0.333023 0.831878 }
+      }
+      <Normal> { -0.581774 0.710074 0.396588 }
+    }
+    <Vertex> 3678 {
+      -0.570455491543 -50.7704811096 10.6003293991
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.947111 0.266569 -0.178665 }
+        <Binormal> { 0.145646 0.099657 0.920762 }
+      }
+      <Normal> { -0.592730 0.805353 0.006592 }
+    }
+    <Vertex> 3679 {
+      -2.95696973801 -51.4465179443 11.1426115036
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.962774 0.011817 -0.270050 }
+        <Binormal> { 0.269926 0.010727 0.962799 }
+      }
+      <Normal> { -0.012085 0.999878 -0.007752 }
+    }
+    <Vertex> 3680 {
+      -2.81323242188 -51.4465179443 12.0579738617
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.989327 -0.010800 -0.145310 }
+        <Binormal> { 0.125207 -0.444858 0.885521 }
+      }
+      <Normal> { 0.027619 0.894772 0.445601 }
+    }
+    <Vertex> 3681 {
+      -2.95696973801 -51.4465179443 11.1426115036
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.962774 0.011817 -0.270050 }
+        <Binormal> { 0.269926 0.010727 0.962799 }
+      }
+      <Normal> { -0.012085 0.999878 -0.007752 }
+    }
+    <Vertex> 3682 {
+      -5.31265878677 -50.8283691406 11.7584466934
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.942192 -0.249696 -0.223441 }
+        <Binormal> { 0.205598 -0.034991 0.906057 }
+      }
+      <Normal> { 0.580889 0.807703 -0.100620 }
+    }
+    <Vertex> 3683 {
+      -5.18903923035 -50.8104057312 12.4647741318
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.952942 -0.263387 -0.150097 }
+        <Binormal> { 0.063781 -0.253961 0.850579 }
+      }
+      <Normal> { 0.696646 0.700034 0.156774 }
+    }
+    <Vertex> 3684 {
+      -2.81323242188 -51.4465179443 12.0579738617
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.989327 -0.010800 -0.145310 }
+        <Binormal> { 0.125207 -0.444858 0.885521 }
+      }
+      <Normal> { 0.027619 0.894772 0.445601 }
+    }
+    <Vertex> 3685 {
+      -5.18903923035 -50.8104057312 12.4647741318
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.952942 -0.263387 -0.150097 }
+        <Binormal> { 0.063781 -0.253961 0.850579 }
+      }
+      <Normal> { 0.696646 0.700034 0.156774 }
+    }
+    <Vertex> 3686 {
+      -5.35347032547 -51.5775108337 12.9710607529
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.951476 -0.282957 -0.120950 }
+        <Binormal> { -0.156862 -0.703153 0.411015 }
+      }
+      <Normal> { 0.732780 0.214057 0.645863 }
+    }
+    <Vertex> 3687 {
+      -2.59762811661 -52.2687759399 12.6009054184
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.998510 -0.054565 -0.001236 }
+        <Binormal> { -0.050793 -0.937281 0.344059 }
+      }
+      <Normal> { 0.042787 0.342235 0.938627 }
+    }
+    <Vertex> 3688 {
+      -2.81323242188 -51.4465179443 12.0579738617
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.989327 -0.010800 -0.145310 }
+        <Binormal> { 0.125207 -0.444858 0.885521 }
+      }
+      <Normal> { 0.027619 0.894772 0.445601 }
+    }
+    <Vertex> 3689 {
+      -2.59762811661 -52.2687759399 12.6009054184
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.998510 -0.054565 -0.001236 }
+        <Binormal> { -0.050793 -0.937281 0.344059 }
+      }
+      <Normal> { 0.042787 0.342235 0.938627 }
+    }
+    <Vertex> 3690 {
+      0.260279417038 -51.5365333557 12.731045723
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.976242 0.216612 -0.005454 }
+        <Binormal> { 0.177479 -0.790087 0.388584 }
+      }
+      <Normal> { -0.508988 0.285104 0.812159 }
+    }
+    <Vertex> 3691 {
+      -0.384465306997 -50.7704811096 11.7642726898
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.963553 0.253851 -0.084415 }
+        <Binormal> { 0.160615 -0.333023 0.831878 }
+      }
+      <Normal> { -0.581774 0.710074 0.396588 }
+    }
+    <Vertex> 3692 {
+      -6.18934249878 -48.7805557251 12.7983760834
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.323899 -0.021726 0.945842 }
+        <Binormal> { -0.375021 0.914704 0.149435 }
+      }
+      <Normal> { 0.874233 0.402722 -0.271126 }
+    }
+    <Vertex> 3693 {
+      -5.18903923035 -50.8104057312 12.4647741318
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.028621 -0.525366 0.850395 }
+        <Binormal> { -0.677668 0.596911 0.345959 }
+      }
+      <Normal> { 0.696646 0.700034 0.156774 }
+    }
+    <Vertex> 3694 {
+      -5.31265878677 -50.8283691406 11.7584466934
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.300992 0.056993 0.951922 }
+        <Binormal> { -0.774605 0.583247 0.210005 }
+      }
+      <Normal> { 0.580889 0.807703 -0.100620 }
+    }
+    <Vertex> 3695 {
+      -6.54008340836 -48.8524131775 12.004483223
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.402739 0.082510 0.911589 }
+        <Binormal> { -0.467795 0.857340 0.129071 }
+      }
+      <Normal> { 0.839961 0.492569 -0.227546 }
+    }
+    <Vertex> 3696 {
+      -6.18934249878 -48.7805557251 12.7983760834
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.323899 -0.021726 0.945842 }
+        <Binormal> { -0.375021 0.914704 0.149435 }
+      }
+      <Normal> { 0.874233 0.402722 -0.271126 }
+    }
+    <Vertex> 3697 {
+      -6.54008340836 -48.8524131775 12.004483223
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.402739 0.082510 0.911589 }
+        <Binormal> { -0.467795 0.857340 0.129071 }
+      }
+      <Normal> { 0.839961 0.492569 -0.227546 }
+    }
+    <Vertex> 3698 {
+      -7.67086648941 -46.805896759 11.964466095
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.296221 0.579458 0.759227 }
+        <Binormal> { -0.701656 0.407304 -0.584622 }
+      }
+      <Normal> { 0.648000 0.705893 -0.285928 }
+    }
+    <Vertex> 3699 {
+      -7.14475536346 -46.6199035645 12.9468793869
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.424431 0.137556 0.894951 }
+        <Binormal> { -0.634740 0.750042 0.185743 }
+      }
+      <Normal> { 0.646657 0.647206 -0.403638 }
+    }
+    <Vertex> 3700 {
+      -6.18934249878 -48.7805557251 12.7983760834
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.323899 -0.021726 0.945842 }
+        <Binormal> { -0.375021 0.914704 0.149435 }
+      }
+      <Normal> { 0.874233 0.402722 -0.271126 }
+    }
+    <Vertex> 3701 {
+      -7.14475536346 -46.6199035645 12.9468793869
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.424431 0.137556 0.894951 }
+        <Binormal> { -0.634740 0.750042 0.185743 }
+      }
+      <Normal> { 0.646657 0.647206 -0.403638 }
+    }
+    <Vertex> 3702 {
+      -6.66070270538 -46.4785079956 14.0944881439
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.363436 0.094052 0.926860 }
+        <Binormal> { -0.632943 0.738597 0.173238 }
+      }
+      <Normal> { 0.724326 0.664113 -0.185034 }
+    }
+    <Vertex> 3703 {
+      -5.88519668579 -48.7179756165 13.6608877182
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.331782 0.068266 0.940883 }
+        <Binormal> { -0.248491 0.916240 0.021146 }
+      }
+      <Normal> { 0.964629 0.262215 -0.026032 }
+    }
+    <Vertex> 3704 {
+      -6.18934249878 -48.7805557251 12.7983760834
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.323899 -0.021726 0.945842 }
+        <Binormal> { -0.375021 0.914704 0.149435 }
+      }
+      <Normal> { 0.874233 0.402722 -0.271126 }
+    }
+    <Vertex> 3705 {
+      -5.88519668579 -48.7179756165 13.6608877182
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.331782 0.068266 0.940883 }
+        <Binormal> { -0.248491 0.916240 0.021146 }
+      }
+      <Normal> { 0.964629 0.262215 -0.026032 }
+    }
+    <Vertex> 3706 {
+      -5.35347032547 -51.5775108337 12.9710607529
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.090384 -0.455768 0.885498 }
+        <Binormal> { -0.483911 0.590499 0.353325 }
+      }
+      <Normal> { 0.732780 0.214057 0.645863 }
+    }
+    <Vertex> 3707 {
+      -5.18903923035 -50.8104057312 12.4647741318
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.028621 -0.525366 0.850395 }
+        <Binormal> { -0.677668 0.596911 0.345959 }
+      }
+      <Normal> { 0.696646 0.700034 0.156774 }
+    }
+    <Vertex> 3708 {
+      -15.8161048889 -45.104221344 12.5013723373
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.817368 0.295035 0.494836 }
+        <Binormal> { -0.572741 -0.337168 -0.745022 }
+      }
+      <Normal> { 0.007080 0.908933 -0.416791 }
+    }
+    <Vertex> 3709 {
+      -12.4354410172 -45.2383537292 12.5756235123
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.887778 0.224093 0.402036 }
+        <Binormal> { -0.456219 -0.313498 -0.832682 }
+      }
+      <Normal> { 0.072115 0.919736 -0.385784 }
+    }
+    <Vertex> 3710 {
+      -12.8457536697 -45.8217735291 11.4669027328
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.811572 0.334888 0.478750 }
+        <Binormal> { -0.549077 -0.189112 -0.798504 }
+      }
+      <Normal> { 0.048250 0.963988 -0.261483 }
+    }
+    <Vertex> 3711 {
+      -16.0969352722 -45.6721687317 11.8927841187
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.818328 0.377293 0.433577 }
+        <Binormal> { -0.541213 -0.296290 -0.763650 }
+      }
+      <Normal> { 0.004212 0.931242 -0.364299 }
+    }
+    <Vertex> 3712 {
+      -15.8161048889 -45.104221344 12.5013723373
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.817368 0.295035 0.494836 }
+        <Binormal> { -0.572741 -0.337168 -0.745022 }
+      }
+      <Normal> { 0.007080 0.908933 -0.416791 }
+    }
+    <Vertex> 3713 {
+      -16.0969352722 -45.6721687317 11.8927841187
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.818328 0.377293 0.433577 }
+        <Binormal> { -0.541213 -0.296290 -0.763650 }
+      }
+      <Normal> { 0.004212 0.931242 -0.364299 }
+    }
+    <Vertex> 3714 {
+      -19.092502594 -45.7313919067 11.7471122742
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.941794 0.209259 0.263125 }
+        <Binormal> { -0.321791 0.340239 0.881189 }
+      }
+      <Normal> { -0.034120 0.928068 -0.370800 }
+    }
+    <Vertex> 3715 {
+      -19.0391654968 -45.1548843384 12.5013723373
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.040095 0.491089 0.870186 }
+        <Binormal> { -0.995050 -0.015431 0.054557 }
+      }
+      <Normal> { -0.036958 0.908017 -0.417249 }
+    }
+    <Vertex> 3716 {
+      -15.8161048889 -45.104221344 12.5013723373
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.817368 0.295035 0.494836 }
+        <Binormal> { -0.572741 -0.337168 -0.745022 }
+      }
+      <Normal> { 0.007080 0.908933 -0.416791 }
+    }
+    <Vertex> 3717 {
+      -19.0391654968 -45.1548843384 12.5013723373
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.040095 0.491089 0.870186 }
+        <Binormal> { -0.995050 -0.015431 0.054557 }
+      }
+      <Normal> { -0.036958 0.908017 -0.417249 }
+    }
+    <Vertex> 3718 {
+      -19.0391654968 -45.0781097412 12.9046955109
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.714252 0.114424 0.690471 }
+        <Binormal> { -0.558785 0.301975 -0.628073 }
+      }
+      <Normal> { -0.040681 0.885861 0.462111 }
+    }
+    <Vertex> 3719 {
+      -15.8161048889 -45.0431785583 12.8677501678
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.936717 0.059198 0.345046 }
+        <Binormal> { -0.279153 0.421594 -0.830161 }
+      }
+      <Normal> { -0.025300 0.887845 0.459395 }
+    }
+    <Vertex> 3720 {
+      -15.8161048889 -45.104221344 12.5013723373
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.817368 0.295035 0.494836 }
+        <Binormal> { -0.572741 -0.337168 -0.745022 }
+      }
+      <Normal> { 0.007080 0.908933 -0.416791 }
+    }
+    <Vertex> 3721 {
+      -15.8161048889 -45.0431785583 12.8677501678
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.936717 0.059198 0.345046 }
+        <Binormal> { -0.279153 0.421594 -0.830161 }
+      }
+      <Normal> { -0.025300 0.887845 0.459395 }
+    }
+    <Vertex> 3722 {
+      -12.2202997208 -45.0206985474 13.3239393234
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.944884 0.116599 0.305939 }
+        <Binormal> { -0.260180 0.205760 -0.881978 }
+      }
+      <Normal> { -0.150487 0.951994 0.266488 }
+    }
+    <Vertex> 3723 {
+      -12.4354410172 -45.2383537292 12.5756235123
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.887778 0.224093 0.402036 }
+        <Binormal> { -0.456219 -0.313498 -0.832682 }
+      }
+      <Normal> { 0.072115 0.919736 -0.385784 }
+    }
+    <Vertex> 3724 {
+      -9.38589000702 -45.5913734436 12.7983760834
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.269967 0.891629 -0.363445 }
+    }
+    <Vertex> 3725 {
+      -7.14475536346 -46.6199035645 12.9468793869
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.907215 -0.416351 0.060114 }
+        <Binormal> { 0.129148 0.405059 0.856391 }
+      }
+      <Normal> { 0.646657 0.647206 -0.403638 }
+    }
+    <Vertex> 3726 {
+      -7.67086648941 -46.805896759 11.964466095
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.296221 0.579458 0.759227 }
+        <Binormal> { -0.701656 0.407304 -0.584622 }
+      }
+      <Normal> { 0.648000 0.705893 -0.285928 }
+    }
+    <Vertex> 3727 {
+      -9.73663043976 -45.9760322571 11.7221403122
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.240028 0.933012 -0.268014 }
+    }
+    <Vertex> 3728 {
+      -9.38589000702 -45.5913734436 12.7983760834
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.269967 0.891629 -0.363445 }
+    }
+    <Vertex> 3729 {
+      -9.73663043976 -45.9760322571 11.7221403122
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.240028 0.933012 -0.268014 }
+    }
+    <Vertex> 3730 {
+      -12.8457536697 -45.8217735291 11.4669027328
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.998558 0.040526 -0.034855 }
+        <Binormal> { 0.023004 -0.262794 -0.964578 }
+      }
+      <Normal> { 0.048250 0.963988 -0.261483 }
+    }
+    <Vertex> 3731 {
+      -12.4354410172 -45.2383537292 12.5756235123
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.990762 0.114692 -0.072370 }
+        <Binormal> { 0.022315 -0.387439 -0.919510 }
+      }
+      <Normal> { 0.072115 0.919736 -0.385784 }
+    }
+    <Vertex> 3732 {
+      -9.38589000702 -45.5913734436 12.7983760834
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.269967 0.891629 -0.363445 }
+    }
+    <Vertex> 3733 {
+      -12.4354410172 -45.2383537292 12.5756235123
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.990762 0.114692 -0.072370 }
+        <Binormal> { 0.022315 -0.387439 -0.919510 }
+      }
+      <Normal> { 0.072115 0.919736 -0.385784 }
+    }
+    <Vertex> 3734 {
+      -12.2202997208 -45.0206985474 13.3239393234
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.961608 -0.078414 -0.262899 }
+        <Binormal> { 0.229392 0.295833 -0.927287 }
+      }
+      <Normal> { -0.150487 0.951994 0.266488 }
+    }
+    <Vertex> 3735 {
+      -8.97041320801 -45.338684082 13.9134101868
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.264931 0.957671 -0.112491 }
+    }
+    <Vertex> 3736 {
+      -9.38589000702 -45.5913734436 12.7983760834
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.269967 0.891629 -0.363445 }
+    }
+    <Vertex> 3737 {
+      -8.97041320801 -45.338684082 13.9134101868
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.264931 0.957671 -0.112491 }
+    }
+    <Vertex> 3738 {
+      -6.66070270538 -46.4785079956 14.0944881439
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.192004 0.452094 0.871021 }
+        <Binormal> { -0.662154 0.595417 -0.455007 }
+      }
+      <Normal> { 0.724326 0.664113 -0.185034 }
+    }
+    <Vertex> 3739 {
+      -7.14475536346 -46.6199035645 12.9468793869
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.907215 -0.416351 0.060114 }
+        <Binormal> { 0.129148 0.405059 0.856391 }
+      }
+      <Normal> { 0.646657 0.647206 -0.403638 }
+    }
+    <Vertex> 3740 {
+      -21.6159038544 -45.3562202454 12.5013723373
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.040092 0.491089 0.870186 }
+        <Binormal> { -0.992396 -0.065165 0.082498 }
+      }
+      <Normal> { -0.094668 0.898129 -0.429365 }
+    }
+    <Vertex> 3741 {
+      -19.0391654968 -45.1548843384 12.5013723373
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.040097 0.491090 0.870186 }
+        <Binormal> { -0.995050 -0.015430 0.054558 }
+      }
+      <Normal> { -0.036958 0.908017 -0.417249 }
+    }
+    <Vertex> 3742 {
+      -19.092502594 -45.7313919067 11.7471122742
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.056094 0.606308 0.793249 }
+        <Binormal> { -0.961008 -0.006266 0.072746 }
+      }
+      <Normal> { -0.034120 0.928068 -0.370800 }
+    }
+    <Vertex> 3743 {
+      -21.5924854279 -45.9275436401 11.7082967758
+      <UV>  {
+        0.250000 0.750000
+        <Tangent> { 0.041682 0.406987 -0.912482 }
+        <Binormal> { 0.707395 0.108586 0.080745 }
+      }
+      <Normal> { -0.103030 0.931181 -0.349620 }
+    }
+    <Vertex> 3744 {
+      -21.6159038544 -45.3562202454 12.5013723373
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.040092 0.491089 0.870186 }
+        <Binormal> { -0.992396 -0.065165 0.082498 }
+      }
+      <Normal> { -0.094668 0.898129 -0.429365 }
+    }
+    <Vertex> 3745 {
+      -21.5924854279 -45.9275436401 11.7082967758
+      <UV>  {
+        0.250000 0.750000
+        <Tangent> { 0.041682 0.406987 -0.912482 }
+        <Binormal> { 0.707395 0.108586 0.080745 }
+      }
+      <Normal> { -0.103030 0.931181 -0.349620 }
+    }
+    <Vertex> 3746 {
+      -23.8728981018 -46.3093299866 11.7669858932
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.903707 0.160122 0.397083 }
+        <Binormal> { -0.421170 -0.391024 -0.800847 }
+      }
+      <Normal> { -0.179052 0.917905 -0.354015 }
+    }
+    <Vertex> 3747 {
+      -23.8694820404 -45.6402664185 12.5013723373
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.992475 -0.041673 0.115136 }
+        <Binormal> { -0.079927 -0.491118 -0.866732 }
+      }
+      <Normal> { -0.126133 0.868007 -0.480209 }
+    }
+    <Vertex> 3748 {
+      -21.6159038544 -45.3562202454 12.5013723373
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.040092 0.491089 0.870186 }
+        <Binormal> { -0.992396 -0.065165 0.082498 }
+      }
+      <Normal> { -0.094668 0.898129 -0.429365 }
+    }
+    <Vertex> 3749 {
+      -23.8694820404 -45.6402664185 12.5013723373
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.992475 -0.041673 0.115136 }
+        <Binormal> { -0.079927 -0.491118 -0.866732 }
+      }
+      <Normal> { -0.126133 0.868007 -0.480209 }
+    }
+    <Vertex> 3750 {
+      -23.8694820404 -45.5515060425 12.8123311996
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.993122 -0.114991 0.022048 }
+        <Binormal> { -0.074750 0.478045 -0.873788 }
+      }
+      <Normal> { -0.138035 0.863857 0.484420 }
+    }
+    <Vertex> 3751 {
+      -21.6159038544 -45.2692985535 12.8677501678
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.995052 -0.097520 -0.019027 }
+        <Binormal> { -0.028320 0.461879 -0.886224 }
+      }
+      <Normal> { -0.115940 0.879269 0.461959 }
+    }
+    <Vertex> 3752 {
+      -21.6159038544 -45.3562202454 12.5013723373
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.040092 0.491089 0.870186 }
+        <Binormal> { -0.992396 -0.065165 0.082498 }
+      }
+      <Normal> { -0.094668 0.898129 -0.429365 }
+    }
+    <Vertex> 3753 {
+      -21.6159038544 -45.2692985535 12.8677501678
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.995052 -0.097520 -0.019027 }
+        <Binormal> { -0.028320 0.461879 -0.886224 }
+      }
+      <Normal> { -0.115940 0.879269 0.461959 }
+    }
+    <Vertex> 3754 {
+      -19.0391654968 -45.0781097412 12.9046955109
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.040681 0.885861 0.462111 }
+    }
+    <Vertex> 3755 {
+      -19.0391654968 -45.1548843384 12.5013723373
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.040097 0.491090 0.870186 }
+        <Binormal> { -0.995050 -0.015430 0.054558 }
+      }
+      <Normal> { -0.036958 0.908017 -0.417249 }
+    }
+    <Vertex> 3756 {
+      -26.1230583191 -45.9390525818 12.5013723373
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.076144 0.608715 0.789727 }
+        <Binormal> { -0.981743 -0.123013 0.000160 }
+      }
+      <Normal> { -0.108280 0.863521 -0.492508 }
+    }
+    <Vertex> 3757 {
+      -23.8694820404 -45.6402664185 12.5013723373
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.002646 0.586939 0.809627 }
+        <Binormal> { -0.984615 -0.100850 0.076329 }
+      }
+      <Normal> { -0.126133 0.868007 -0.480209 }
+    }
+    <Vertex> 3758 {
+      -23.8728981018 -46.3093299866 11.7669858932
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.882725 0.200784 0.424831 }
+        <Binormal> { -0.461035 -0.388565 -0.774308 }
+      }
+      <Normal> { -0.179052 0.917905 -0.354015 }
+    }
+    <Vertex> 3759 {
+      -26.0811290741 -46.5522270203 12.0163497925
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { -0.053554 0.783174 0.619492 }
+        <Binormal> { -0.924509 -0.089541 0.033278 }
+      }
+      <Normal> { -0.101291 0.859890 -0.500290 }
+    }
+    <Vertex> 3760 {
+      -26.1230583191 -45.9390525818 12.5013723373
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.076144 0.608715 0.789727 }
+        <Binormal> { -0.981743 -0.123013 0.000160 }
+      }
+      <Normal> { -0.108280 0.863521 -0.492508 }
+    }
+    <Vertex> 3761 {
+      -26.0811290741 -46.5522270203 12.0163497925
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { -0.053554 0.783174 0.619492 }
+        <Binormal> { -0.924509 -0.089541 0.033278 }
+      }
+      <Normal> { -0.101291 0.859890 -0.500290 }
+    }
+    <Vertex> 3762 {
+      -28.4814758301 -46.8125953674 11.8192577362
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.179926 0.705124 0.685877 }
+        <Binormal> { -0.872717 -0.064230 -0.162907 }
+      }
+      <Normal> { -0.011170 0.949187 -0.314402 }
+    }
+    <Vertex> 3763 {
+      -28.745721817 -46.2258796692 12.5013723373
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.223763 0.518486 0.825289 }
+        <Binormal> { -0.955421 -0.148354 -0.165843 }
+      }
+      <Normal> { -0.079836 0.926145 -0.368542 }
+    }
+    <Vertex> 3764 {
+      -26.1230583191 -45.9390525818 12.5013723373
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.076144 0.608715 0.789727 }
+        <Binormal> { -0.981743 -0.123013 0.000160 }
+      }
+      <Normal> { -0.108280 0.863521 -0.492508 }
+    }
+    <Vertex> 3765 {
+      -28.745721817 -46.2258796692 12.5013723373
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.223763 0.518486 0.825289 }
+        <Binormal> { -0.955421 -0.148354 -0.165843 }
+      }
+      <Normal> { -0.079836 0.926145 -0.368542 }
+    }
+    <Vertex> 3766 {
+      -28.745721817 -46.2003059387 12.7938575745
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.000001 0.176865 0.984235 }
+        <Binormal> { -0.659958 -0.084825 0.015242 }
+      }
+      <Normal> { -0.086184 0.781549 0.617817 }
+    }
+    <Vertex> 3767 {
+      -26.1230583191 -45.8595085144 12.7938575745
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.000000 0.262427 0.964952 }
+        <Binormal> { -0.676310 -0.111081 0.030209 }
+      }
+      <Normal> { -0.115116 0.843532 0.524552 }
+    }
+    <Vertex> 3768 {
+      -26.1230583191 -45.9390525818 12.5013723373
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.076144 0.608715 0.789727 }
+        <Binormal> { -0.981743 -0.123013 0.000160 }
+      }
+      <Normal> { -0.108280 0.863521 -0.492508 }
+    }
+    <Vertex> 3769 {
+      -26.1230583191 -45.8595085144 12.7938575745
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.000000 0.262427 0.964952 }
+        <Binormal> { -0.676310 -0.111081 0.030209 }
+      }
+      <Normal> { -0.115116 0.843532 0.524552 }
+    }
+    <Vertex> 3770 {
+      -23.8694820404 -45.5515060425 12.8123311996
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.000000 0.268653 0.963237 }
+        <Binormal> { -0.701958 -0.132961 0.037083 }
+      }
+      <Normal> { -0.138035 0.863857 0.484420 }
+    }
+    <Vertex> 3771 {
+      -23.8694820404 -45.6402664185 12.5013723373
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.002646 0.586939 0.809627 }
+        <Binormal> { -0.984615 -0.100850 0.076329 }
+      }
+      <Normal> { -0.126133 0.868007 -0.480209 }
+    }
+    <Vertex> 3772 {
+      -32.1065597534 -47.9846000671 13.110291481
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.989146 -0.142124 0.037309 }
+        <Binormal> { -0.146212 -0.977164 0.154048 }
+      }
+      <Normal> { -0.018677 0.158422 0.987182 }
+    }
+    <Vertex> 3773 {
+      -28.745721817 -47.5598640442 13.110291481
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.965131 -0.261005 0.019954 }
+        <Binormal> { -0.260786 0.952141 -0.159330 }
+      }
+      <Normal> { -0.019227 0.159886 0.986938 }
+    }
+    <Vertex> 3774 {
+      -28.745721817 -46.2003059387 12.7938575745
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.994968 0.088573 -0.046840 }
+        <Binormal> { 0.091330 0.618744 -0.769982 }
+      }
+      <Normal> { -0.086184 0.781549 0.617817 }
+    }
+    <Vertex> 3775 {
+      -32.1065597534 -46.5808982849 12.7938575745
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.817432 0.557237 -0.145916 }
+        <Binormal> { 0.517136 0.628611 -0.496442 }
+      }
+      <Normal> { -0.061556 0.649281 0.758019 }
+    }
+    <Vertex> 3776 {
+      -32.1065597534 -47.9846000671 13.110291481
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.989146 -0.142124 0.037309 }
+        <Binormal> { -0.146212 -0.977164 0.154048 }
+      }
+      <Normal> { -0.018677 0.158422 0.987182 }
+    }
+    <Vertex> 3777 {
+      -32.1065597534 -46.5808982849 12.7938575745
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.817432 0.557237 -0.145916 }
+        <Binormal> { 0.517136 0.628611 -0.496442 }
+      }
+      <Normal> { -0.061556 0.649281 0.758019 }
+    }
+    <Vertex> 3778 {
+      -35.836479187 -46.9813995361 12.7938575745
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.996446 -0.072863 0.042268 }
+        <Binormal> { -0.083874 -0.822084 0.560155 }
+      }
+      <Normal> { -0.051302 0.565905 0.822840 }
+    }
+    <Vertex> 3779 {
+      -35.836479187 -48.4423141479 13.110291481
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.989146 -0.142123 0.037308 }
+        <Binormal> { -0.146189 -0.977395 0.152547 }
+      }
+      <Normal> { -0.018403 0.156865 0.987426 }
+    }
+    <Vertex> 3780 {
+      -32.1065597534 -47.9846000671 13.110291481
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.989146 -0.142124 0.037309 }
+        <Binormal> { -0.146212 -0.977164 0.154048 }
+      }
+      <Normal> { -0.018677 0.158422 0.987182 }
+    }
+    <Vertex> 3781 {
+      -35.836479187 -48.4423141479 13.110291481
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.989146 -0.142123 0.037308 }
+        <Binormal> { -0.146189 -0.977395 0.152547 }
+      }
+      <Normal> { -0.018403 0.156865 0.987426 }
+    }
+    <Vertex> 3782 {
+      -35.836479187 -50.9559555054 13.356595993
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.977302 -0.209380 0.032268 }
+        <Binormal> { -0.210944 -0.975693 0.057794 }
+      }
+      <Normal> { -0.007447 0.060732 0.998108 }
+    }
+    <Vertex> 3783 {
+      -32.1065597534 -50.4982414246 13.356595993
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.318759 -0.943659 0.088887 }
+        <Binormal> { -0.947260 0.317661 -0.024567 }
+      }
+      <Normal> { -0.005890 0.059633 0.998199 }
+    }
+    <Vertex> 3784 {
+      -32.1065597534 -47.9846000671 13.110291481
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.989146 -0.142124 0.037309 }
+        <Binormal> { -0.146212 -0.977164 0.154048 }
+      }
+      <Normal> { -0.018677 0.158422 0.987182 }
+    }
+    <Vertex> 3785 {
+      -32.1065597534 -50.4982414246 13.356595993
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.318759 -0.943659 0.088887 }
+        <Binormal> { -0.947260 0.317661 -0.024567 }
+      }
+      <Normal> { -0.005890 0.059633 0.998199 }
+    }
+    <Vertex> 3786 {
+      -28.745721817 -50.0735054016 13.3497514725
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.812944 -0.580467 0.046693 }
+        <Binormal> { -0.582131 0.811741 -0.043928 }
+      }
+      <Normal> { 0.000275 0.054231 0.998505 }
+    }
+    <Vertex> 3787 {
+      -28.745721817 -47.5598640442 13.110291481
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.965131 -0.261005 0.019954 }
+        <Binormal> { -0.260786 0.952141 -0.159330 }
+      }
+      <Normal> { -0.019227 0.159886 0.986938 }
+    }
+    <Vertex> 3788 {
+      -15.8161048889 -46.390914917 13.4058609009
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.518184 -0.840232 0.159673 }
+        <Binormal> { -0.851509 0.492299 -0.172809 }
+      }
+      <Normal> { -0.039796 0.268960 0.962310 }
+    }
+    <Vertex> 3789 {
+      -13.0451097488 -46.5156097412 13.8221073151
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.774912 -0.631540 0.025849 }
+        <Binormal> { -0.530066 0.628615 -0.532272 }
+      }
+      <Normal> { -0.475875 0.299051 0.827082 }
+    }
+    <Vertex> 3790 {
+      -12.2202997208 -45.0206985474 13.3239393234
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.377266 -0.666590 0.642906 }
+        <Binormal> { -0.789681 0.003788 -0.459468 }
+      }
+      <Normal> { -0.150487 0.951994 0.266488 }
+    }
+    <Vertex> 3791 {
+      -15.8161048889 -45.0431785583 12.8677501678
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.766283 -0.612270 0.194772 }
+        <Binormal> { -0.454201 0.347099 -0.695831 }
+      }
+      <Normal> { -0.025300 0.887845 0.459395 }
+    }
+    <Vertex> 3792 {
+      -15.8161048889 -46.390914917 13.4058609009
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.518184 -0.840232 0.159673 }
+        <Binormal> { -0.851509 0.492299 -0.172809 }
+      }
+      <Normal> { -0.039796 0.268960 0.962310 }
+    }
+    <Vertex> 3793 {
+      -15.8161048889 -45.0431785583 12.8677501678
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.766283 -0.612270 0.194772 }
+        <Binormal> { -0.454201 0.347099 -0.695831 }
+      }
+      <Normal> { -0.025300 0.887845 0.459395 }
+    }
+    <Vertex> 3794 {
+      -19.0391654968 -45.0781097412 12.9046955109
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.477672 -0.802586 0.357331 }
+        <Binormal> { -0.687429 0.206201 -0.455801 }
+      }
+      <Normal> { -0.040681 0.885861 0.462111 }
+    }
+    <Vertex> 3795 {
+      -19.0391654968 -46.4206085205 13.5536460876
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 -0.960973 0.276641 }
+        <Binormal> { -0.999762 -0.005066 -0.017596 }
+      }
+      <Normal> { -0.018311 0.286935 0.957762 }
+    }
+    <Vertex> 3796 {
+      -15.8161048889 -46.390914917 13.4058609009
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.518184 -0.840232 0.159673 }
+        <Binormal> { -0.851509 0.492299 -0.172809 }
+      }
+      <Normal> { -0.039796 0.268960 0.962310 }
+    }
+    <Vertex> 3797 {
+      -19.0391654968 -46.4206085205 13.5536460876
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 -0.960973 0.276641 }
+        <Binormal> { -0.999762 -0.005066 -0.017596 }
+      }
+      <Normal> { -0.018311 0.286935 0.957762 }
+    }
+    <Vertex> 3798 {
+      -19.0391654968 -48.9342460632 14.0147857666
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.155578 -0.972109 0.175499 }
+        <Binormal> { -0.981143 0.152237 -0.026519 }
+      }
+      <Normal> { -0.017121 0.063478 0.997833 }
+    }
+    <Vertex> 3799 {
+      -15.8161048889 -48.9045562744 13.7999505997
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.280596 -0.948399 0.147666 }
+        <Binormal> { -0.955336 0.276450 -0.039811 }
+      }
+      <Normal> { -0.024018 0.060701 0.997864 }
+    }
+    <Vertex> 3800 {
+      -15.8161048889 -46.390914917 13.4058609009
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.518184 -0.840232 0.159673 }
+        <Binormal> { -0.851509 0.492299 -0.172809 }
+      }
+      <Normal> { -0.039796 0.268960 0.962310 }
+    }
+    <Vertex> 3801 {
+      -15.8161048889 -48.9045562744 13.7999505997
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.280596 -0.948399 0.147666 }
+        <Binormal> { -0.955336 0.276450 -0.039811 }
+      }
+      <Normal> { -0.024018 0.060701 0.997864 }
+    }
+    <Vertex> 3802 {
+      -13.0788087845 -48.8977127075 14.0308132172
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.946011 0.286996 0.150657 }
+        <Binormal> { 0.249684 0.758138 0.123601 }
+      }
+      <Normal> { -0.478957 0.014649 0.877682 }
+    }
+    <Vertex> 3803 {
+      -13.0451097488 -46.5156097412 13.8221073151
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.774912 -0.631540 0.025849 }
+        <Binormal> { -0.530066 0.628615 -0.532272 }
+      }
+      <Normal> { -0.475875 0.299051 0.827082 }
+    }
+    <Vertex> 3804 {
+      -21.6159038544 -46.6084098816 13.4058609009
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.097049 0.253182 0.962523 }
+    }
+    <Vertex> 3805 {
+      -19.0391654968 -46.4206085205 13.5536460876
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.018311 0.286935 0.957762 }
+    }
+    <Vertex> 3806 {
+      -19.0391654968 -45.0781097412 12.9046955109
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.040681 0.885861 0.462111 }
+    }
+    <Vertex> 3807 {
+      -21.6159038544 -45.2692985535 12.8677501678
+      <UV>  {
+        0.250000 0.750000
+        <Tangent> { -0.615624 -0.743014 0.262557 }
+        <Binormal> { -0.574100 0.253952 -0.627444 }
+      }
+      <Normal> { -0.115940 0.879269 0.461959 }
+    }
+    <Vertex> 3808 {
+      -21.6159038544 -46.6084098816 13.4058609009
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.097049 0.253182 0.962523 }
+    }
+    <Vertex> 3809 {
+      -21.6159038544 -45.2692985535 12.8677501678
+      <UV>  {
+        0.250000 0.750000
+        <Tangent> { -0.615624 -0.743014 0.262557 }
+        <Binormal> { -0.574100 0.253952 -0.627444 }
+      }
+      <Normal> { -0.115940 0.879269 0.461959 }
+    }
+    <Vertex> 3810 {
+      -23.8694820404 -45.5515060425 12.8123311996
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.745184 -0.646666 0.162862 }
+        <Binormal> { -0.453948 0.338502 -0.732995 }
+      }
+      <Normal> { -0.138035 0.863857 0.484420 }
+    }
+    <Vertex> 3811 {
+      -23.8694820404 -46.8900108337 13.1841831207
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.875060 -0.483290 -0.026469 }
+        <Binormal> { -0.466943 0.857112 -0.212705 }
+      }
+      <Normal> { -0.085696 0.195746 0.976897 }
+    }
+    <Vertex> 3812 {
+      -21.6159038544 -46.6084098816 13.4058609009
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.097049 0.253182 0.962523 }
+    }
+    <Vertex> 3813 {
+      -23.8694820404 -46.8900108337 13.1841831207
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.875060 -0.483290 -0.026469 }
+        <Binormal> { -0.466943 0.857112 -0.212705 }
+      }
+      <Normal> { -0.085696 0.195746 0.976897 }
+    }
+    <Vertex> 3814 {
+      -23.8694820404 -49.4036445618 13.4263725281
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.923363 -0.372858 -0.091531 }
+        <Binormal> { -0.367298 0.926996 -0.070884 }
+      }
+      <Normal> { -0.086795 0.041719 0.995331 }
+    }
+    <Vertex> 3815 {
+      -21.6159038544 -49.1220550537 13.7725763321
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.988075 -0.096019 -0.120364 }
+        <Binormal> { -0.089126 0.994003 -0.061312 }
+      }
+      <Normal> { -0.111881 0.051180 0.992370 }
+    }
+    <Vertex> 3816 {
+      -21.6159038544 -46.6084098816 13.4058609009
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.097049 0.253182 0.962523 }
+    }
+    <Vertex> 3817 {
+      -21.6159038544 -49.1220550537 13.7725763321
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.988075 -0.096019 -0.120364 }
+        <Binormal> { -0.089126 0.994003 -0.061312 }
+      }
+      <Normal> { -0.111881 0.051180 0.992370 }
+    }
+    <Vertex> 3818 {
+      -19.0391654968 -48.9342460632 14.0147857666
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.017121 0.063478 0.997833 }
+    }
+    <Vertex> 3819 {
+      -19.0391654968 -46.4206085205 13.5536460876
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.018311 0.286935 0.957762 }
+    }
+    <Vertex> 3820 {
+      -26.1230583191 -47.2010803223 13.110291481
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.000000 -0.989628 0.143655 }
+        <Binormal> { -0.999086 -0.005156 -0.035518 }
+      }
+      <Normal> { -0.035890 0.165075 0.985595 }
+    }
+    <Vertex> 3821 {
+      -23.8694820404 -46.8900108337 13.1841831207
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 -0.987532 0.157415 }
+        <Binormal> { -0.995531 -0.013490 -0.084628 }
+      }
+      <Normal> { -0.085696 0.195746 0.976897 }
+    }
+    <Vertex> 3822 {
+      -23.8694820404 -45.5515060425 12.8123311996
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.000000 -0.968569 0.248744 }
+        <Binormal> { -0.684074 -0.034335 -0.133697 }
+      }
+      <Normal> { -0.138035 0.863857 0.484420 }
+    }
+    <Vertex> 3823 {
+      -26.1230583191 -45.8595085144 12.7938575745
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { 0.000000 -0.973292 0.229569 }
+        <Binormal> { -0.704191 -0.026427 -0.112041 }
+      }
+      <Normal> { -0.115116 0.843532 0.524552 }
+    }
+    <Vertex> 3824 {
+      -26.1230583191 -47.2010803223 13.110291481
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.000000 -0.989628 0.143655 }
+        <Binormal> { -0.999086 -0.005156 -0.035518 }
+      }
+      <Normal> { -0.035890 0.165075 0.985595 }
+    }
+    <Vertex> 3825 {
+      -26.1230583191 -45.8595085144 12.7938575745
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { 0.000000 -0.973292 0.229569 }
+        <Binormal> { -0.704191 -0.026427 -0.112041 }
+      }
+      <Normal> { -0.115116 0.843532 0.524552 }
+    }
+    <Vertex> 3826 {
+      -28.745721817 -46.2003059387 12.7938575745
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 -0.973633 0.228120 }
+        <Binormal> { -0.779813 -0.019660 -0.083912 }
+      }
+      <Normal> { -0.086184 0.781549 0.617817 }
+    }
+    <Vertex> 3827 {
+      -28.745721817 -47.5598640442 13.110291481
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.000000 -0.989857 0.142067 }
+        <Binormal> { -0.999642 -0.002731 -0.019032 }
+      }
+      <Normal> { -0.019227 0.159886 0.986938 }
+    }
+    <Vertex> 3828 {
+      -26.1230583191 -47.2010803223 13.110291481
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.000000 -0.989628 0.143655 }
+        <Binormal> { -0.999086 -0.005156 -0.035518 }
+      }
+      <Normal> { -0.035890 0.165075 0.985595 }
+    }
+    <Vertex> 3829 {
+      -28.745721817 -47.5598640442 13.110291481
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.000000 -0.989857 0.142067 }
+        <Binormal> { -0.999642 -0.002731 -0.019032 }
+      }
+      <Normal> { -0.019227 0.159886 0.986938 }
+    }
+    <Vertex> 3830 {
+      -28.745721817 -50.0735054016 13.3497514725
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.000000 -0.995869 0.090804 }
+        <Binormal> { -0.999304 0.000025 0.000274 }
+      }
+      <Normal> { 0.000275 0.054231 0.998505 }
+    }
+    <Vertex> 3831 {
+      -26.1230583191 -49.7147216797 13.3292217255
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.000000 -0.996229 0.086768 }
+        <Binormal> { -0.998974 -0.001406 -0.016144 }
+      }
+      <Normal> { -0.016205 0.044954 0.998840 }
+    }
+    <Vertex> 3832 {
+      -26.1230583191 -47.2010803223 13.110291481
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.000000 -0.989628 0.143655 }
+        <Binormal> { -0.999086 -0.005156 -0.035518 }
+      }
+      <Normal> { -0.035890 0.165075 0.985595 }
+    }
+    <Vertex> 3833 {
+      -26.1230583191 -49.7147216797 13.3292217255
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.000000 -0.996229 0.086768 }
+        <Binormal> { -0.998974 -0.001406 -0.016144 }
+      }
+      <Normal> { -0.016205 0.044954 0.998840 }
+    }
+    <Vertex> 3834 {
+      -23.8694820404 -49.4036445618 13.4263725281
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.000000 -0.995820 0.091340 }
+        <Binormal> { -0.994981 -0.007928 -0.086432 }
+      }
+      <Normal> { -0.086795 0.041719 0.995331 }
+    }
+    <Vertex> 3835 {
+      -23.8694820404 -46.8900108337 13.1841831207
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 -0.987532 0.157415 }
+        <Binormal> { -0.995531 -0.013490 -0.084628 }
+      }
+      <Normal> { -0.085696 0.195746 0.976897 }
+    }
+    <Vertex> 3836 {
+      -8.65929317474 -45.5130157471 16.103477478
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.202704 0.967803 0.149174 }
+    }
+    <Vertex> 3837 {
+      -6.61151027679 -46.5269699097 16.0852737427
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.896131 -0.443717 -0.007966 }
+        <Binormal> { -0.041337 -0.099615 0.898452 }
+      }
+      <Normal> { 0.780786 0.615986 0.104221 }
+    }
+    <Vertex> 3838 {
+      -6.66070270538 -46.4785079956 14.0944881439
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.192004 0.452094 0.871021 }
+        <Binormal> { -0.662154 0.595417 -0.455007 }
+      }
+      <Normal> { 0.724326 0.664113 -0.185034 }
+    }
+    <Vertex> 3839 {
+      -8.97041320801 -45.338684082 13.9134101868
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.264931 0.957671 -0.112491 }
+    }
+    <Vertex> 3840 {
+      -8.65929317474 -45.5130157471 16.103477478
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.202704 0.967803 0.149174 }
+    }
+    <Vertex> 3841 {
+      -8.97041320801 -45.338684082 13.9134101868
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.264931 0.957671 -0.112491 }
+    }
+    <Vertex> 3842 {
+      -12.2202997208 -45.0206985474 13.3239393234
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.961608 -0.078414 -0.262899 }
+        <Binormal> { 0.229392 0.295833 -0.927287 }
+      }
+      <Normal> { -0.150487 0.951994 0.266488 }
+    }
+    <Vertex> 3843 {
+      -10.8105859756 -45.6207695007 15.7587862015
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.986200 -0.049397 -0.158014 }
+        <Binormal> { 0.114522 0.415532 -0.844653 }
+      }
+      <Normal> { -0.420423 0.835414 0.353984 }
+    }
+    <Vertex> 3844 {
+      -8.65929317474 -45.5130157471 16.103477478
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.202704 0.967803 0.149174 }
+    }
+    <Vertex> 3845 {
+      -10.8105859756 -45.6207695007 15.7587862015
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.986200 -0.049397 -0.158014 }
+        <Binormal> { 0.114522 0.415532 -0.844653 }
+      }
+      <Normal> { -0.420423 0.835414 0.353984 }
+    }
+    <Vertex> 3846 {
+      -10.1679496765 -46.2474937439 18.1269989014
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.502015 0.161152 -0.849677 }
+        <Binormal> { 0.666002 0.698815 -0.260955 }
+      }
+      <Normal> { -0.551714 0.696890 0.458144 }
+    }
+    <Vertex> 3847 {
+      -8.49569225311 -45.9391441345 18.4015712738
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.990264 0.122426 0.065880 }
+        <Binormal> { -0.021437 0.333734 -0.942423 }
+      }
+      <Normal> { 0.137364 0.934660 0.327860 }
+    }
+    <Vertex> 3848 {
+      -8.65929317474 -45.5130157471 16.103477478
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.202704 0.967803 0.149174 }
+    }
+    <Vertex> 3849 {
+      -8.49569225311 -45.9391441345 18.4015712738
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.990264 0.122426 0.065880 }
+        <Binormal> { -0.021437 0.333734 -0.942423 }
+      }
+      <Normal> { 0.137364 0.934660 0.327860 }
+    }
+    <Vertex> 3850 {
+      -6.90795135498 -46.8801879883 18.4110374451
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.504379 0.375909 0.777343 }
+        <Binormal> { -0.043620 0.888019 -0.457733 }
+      }
+      <Normal> { 0.862362 0.264779 0.431501 }
+    }
+    <Vertex> 3851 {
+      -6.61151027679 -46.5269699097 16.0852737427
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.896131 -0.443717 -0.007966 }
+        <Binormal> { -0.041337 -0.099615 0.898452 }
+      }
+      <Normal> { 0.780786 0.615986 0.104221 }
+    }
+    <Vertex> 3852 {
+      -11.8245639801 -46.7909736633 15.6619844437
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { 0.306337 -0.389111 0.868764 }
+        <Binormal> { -0.445607 -0.864259 -0.229966 }
+      }
+      <Normal> { -0.828242 0.301340 0.472396 }
+    }
+    <Vertex> 3853 {
+      -10.8105859756 -45.6207695007 15.7587862015
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.127649 -0.507963 0.851868 }
+        <Binormal> { -0.891473 -0.403331 -0.106919 }
+      }
+      <Normal> { -0.420423 0.835414 0.353984 }
+    }
+    <Vertex> 3854 {
+      -12.2202997208 -45.0206985474 13.3239393234
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.377266 -0.666590 0.642906 }
+        <Binormal> { -0.789681 0.003788 -0.459468 }
+      }
+      <Normal> { -0.150487 0.951994 0.266488 }
+    }
+    <Vertex> 3855 {
+      -13.0451097488 -46.5156097412 13.8221073151
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { 0.390737 -0.483457 0.783322 }
+        <Binormal> { -0.634112 -0.695935 -0.113215 }
+      }
+      <Normal> { -0.475875 0.299051 0.827082 }
+    }
+    <Vertex> 3856 {
+      -11.8245639801 -46.7909736633 15.6619844437
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { 0.306337 -0.389111 0.868764 }
+        <Binormal> { -0.445607 -0.864259 -0.229966 }
+      }
+      <Normal> { -0.828242 0.301340 0.472396 }
+    }
+    <Vertex> 3857 {
+      -13.0451097488 -46.5156097412 13.8221073151
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { 0.390737 -0.483457 0.783322 }
+        <Binormal> { -0.634112 -0.695935 -0.113215 }
+      }
+      <Normal> { -0.475875 0.299051 0.827082 }
+    }
+    <Vertex> 3858 {
+      -13.0788087845 -48.8977127075 14.0308132172
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.524382 -0.304084 0.795334 }
+        <Binormal> { -0.278540 -0.841172 -0.137962 }
+      }
+      <Normal> { -0.478957 0.014649 0.877682 }
+    }
+    <Vertex> 3859 {
+      -11.9593639374 -48.778465271 15.6101093292
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.512767 0.053867 0.856836 }
+        <Binormal> { 0.089777 -0.995884 0.008882 }
+      }
+      <Normal> { -0.851070 -0.072085 0.520035 }
+    }
+    <Vertex> 3860 {
+      -11.8245639801 -46.7909736633 15.6619844437
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { 0.306337 -0.389111 0.868764 }
+        <Binormal> { -0.445607 -0.864259 -0.229966 }
+      }
+      <Normal> { -0.828242 0.301340 0.472396 }
+    }
+    <Vertex> 3861 {
+      -11.9593639374 -48.778465271 15.6101093292
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.512767 0.053867 0.856836 }
+        <Binormal> { 0.089777 -0.995884 0.008882 }
+      }
+      <Normal> { -0.851070 -0.072085 0.520035 }
+    }
+    <Vertex> 3862 {
+      -11.3445453644 -48.7155265808 16.9287757874
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.029605 0.704959 0.708630 }
+        <Binormal> { 0.433158 -0.633702 0.612323 }
+      }
+      <Normal> { -0.875118 -0.155370 0.458266 }
+    }
+    <Vertex> 3863 {
+      -11.1838226318 -47.3864440918 17.7142772675
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.228187 -0.417843 0.879397 }
+        <Binormal> { -0.325135 -0.867132 -0.327649 }
+      }
+      <Normal> { -0.856777 0.133000 0.498215 }
+    }
+    <Vertex> 3864 {
+      -11.8245639801 -46.7909736633 15.6619844437
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { 0.306337 -0.389111 0.868764 }
+        <Binormal> { -0.445607 -0.864259 -0.229966 }
+      }
+      <Normal> { -0.828242 0.301340 0.472396 }
+    }
+    <Vertex> 3865 {
+      -11.1838226318 -47.3864440918 17.7142772675
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.228187 -0.417843 0.879397 }
+        <Binormal> { -0.325135 -0.867132 -0.327649 }
+      }
+      <Normal> { -0.856777 0.133000 0.498215 }
+    }
+    <Vertex> 3866 {
+      -10.1679496765 -46.2474937439 18.1269989014
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.619775 0.123273 0.775037 }
+        <Binormal> { -0.483639 -0.711545 0.499927 }
+      }
+      <Normal> { -0.551714 0.696890 0.458144 }
+    }
+    <Vertex> 3867 {
+      -10.8105859756 -45.6207695007 15.7587862015
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.127649 -0.507963 0.851868 }
+        <Binormal> { -0.891473 -0.403331 -0.106919 }
+      }
+      <Normal> { -0.420423 0.835414 0.353984 }
+    }
+    <Vertex> 3868 {
+      -2.52575969696 -54.7355461121 12.7818841934
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.998462 -0.051106 -0.021473 }
+        <Binormal> { -0.050567 -0.998357 0.024794 }
+      }
+      <Normal> { 0.013520 0.024140 0.999603 }
+    }
+    <Vertex> 3869 {
+      -0.0124856652692 -54.6899833679 12.9519500732
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.994453 -0.077298 0.071338 }
+        <Binormal> { -0.077435 -0.959808 0.039441 }
+      }
+      <Normal> { -0.330760 0.065371 0.941435 }
+    }
+    <Vertex> 3870 {
+      0.260279417038 -51.5365333557 12.731045723
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.634189 0.773169 0.003816 }
+        <Binormal> { 0.626848 -0.517004 0.574343 }
+      }
+      <Normal> { -0.508988 0.285104 0.812159 }
+    }
+    <Vertex> 3871 {
+      -2.59762811661 -52.2687759399 12.6009054184
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.995102 0.086174 -0.048432 }
+        <Binormal> { 0.097461 -0.936102 0.336871 }
+      }
+      <Normal> { 0.042787 0.342235 0.938627 }
+    }
+    <Vertex> 3872 {
+      -2.52575969696 -54.7355461121 12.7818841934
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.998462 -0.051106 -0.021473 }
+        <Binormal> { -0.050567 -0.998357 0.024794 }
+      }
+      <Normal> { 0.013520 0.024140 0.999603 }
+    }
+    <Vertex> 3873 {
+      -2.59762811661 -52.2687759399 12.6009054184
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.995102 0.086174 -0.048432 }
+        <Binormal> { 0.097461 -0.936102 0.336871 }
+      }
+      <Normal> { 0.042787 0.342235 0.938627 }
+    }
+    <Vertex> 3874 {
+      -5.35347032547 -51.5775108337 12.9710607529
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.629984 -0.769889 -0.101936 }
+        <Binormal> { -0.475423 -0.481580 0.699012 }
+      }
+      <Normal> { 0.732780 0.214057 0.645863 }
+    }
+    <Vertex> 3875 {
+      -5.0390329361 -54.7811050415 12.9900779724
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.995270 -0.050366 -0.083073 }
+        <Binormal> { -0.048195 -0.940201 -0.007378 }
+      }
+      <Normal> { 0.413160 -0.028321 0.910184 }
+    }
+    <Vertex> 3876 {
+      -2.52575969696 -54.7355461121 12.7818841934
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.998462 -0.051106 -0.021473 }
+        <Binormal> { -0.050567 -0.998357 0.024794 }
+      }
+      <Normal> { 0.013520 0.024140 0.999603 }
+    }
+    <Vertex> 3877 {
+      -5.0390329361 -54.7811050415 12.9900779724
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.995270 -0.050366 -0.083073 }
+        <Binormal> { -0.048195 -0.940201 -0.007378 }
+      }
+      <Normal> { 0.413160 -0.028321 0.910184 }
+    }
+    <Vertex> 3878 {
+      -5.63436937332 -57.9570732117 12.9359388351
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.984037 -0.157863 -0.082165 }
+        <Binormal> { -0.159630 -0.941474 -0.102939 }
+      }
+      <Normal> { 0.335063 -0.158361 0.928770 }
+    }
+    <Vertex> 3879 {
+      -3.14477968216 -57.9915313721 12.7509479523
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.954987 -0.296645 -0.001011 }
+        <Binormal> { -0.296615 -0.954835 -0.016686 }
+      }
+      <Normal> { -0.006928 -0.015320 0.999847 }
+    }
+    <Vertex> 3880 {
+      -2.52575969696 -54.7355461121 12.7818841934
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.998462 -0.051106 -0.021473 }
+        <Binormal> { -0.050567 -0.998357 0.024794 }
+      }
+      <Normal> { 0.013520 0.024140 0.999603 }
+    }
+    <Vertex> 3881 {
+      -3.14477968216 -57.9915313721 12.7509479523
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.954987 -0.296645 -0.001011 }
+        <Binormal> { -0.296615 -0.954835 -0.016686 }
+      }
+      <Normal> { -0.006928 -0.015320 0.999847 }
+    }
+    <Vertex> 3882 {
+      -0.649426758289 -58.0259895325 12.9442148209
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.981642 -0.176698 0.071818 }
+        <Binormal> { -0.174820 -0.950595 0.050717 }
+      }
+      <Normal> { -0.306040 0.106754 0.945982 }
+    }
+    <Vertex> 3883 {
+      -0.0124856652692 -54.6899833679 12.9519500732
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.994453 -0.077298 0.071338 }
+        <Binormal> { -0.077435 -0.959808 0.039441 }
+      }
+      <Normal> { -0.330760 0.065371 0.941435 }
+    }
+    <Vertex> 3884 {
+      -5.87679100037 -54.7962989807 13.6146593094
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { -0.088099 -0.994898 -0.049151 }
+        <Binormal> { -0.681648 0.024235 0.731251 }
+      }
+      <Normal> { 0.726188 -0.099521 0.680227 }
+    }
+    <Vertex> 3885 {
+      -6.45493078232 -57.9455909729 13.5527858734
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { -0.197920 -0.980201 -0.005833 }
+        <Binormal> { -0.748455 0.147363 0.632353 }
+      }
+      <Normal> { 0.592303 -0.261605 0.762017 }
+    }
+    <Vertex> 3886 {
+      -5.63436937332 -57.9570732117 12.9359388351
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.083118 -0.974417 -0.208813 }
+        <Binormal> { -0.938077 -0.147163 0.313328 }
+      }
+      <Normal> { 0.335063 -0.158361 0.928770 }
+    }
+    <Vertex> 3887 {
+      -5.0390329361 -54.7811050415 12.9900779724
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { -0.020391 -0.999525 -0.023128 }
+        <Binormal> { -0.910406 0.009004 0.413541 }
+      }
+      <Normal> { 0.413160 -0.028321 0.910184 }
+    }
+    <Vertex> 3888 {
+      -5.87679100037 -54.7962989807 13.6146593094
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { -0.088099 -0.994898 -0.049151 }
+        <Binormal> { -0.681648 0.024235 0.731251 }
+      }
+      <Normal> { 0.726188 -0.099521 0.680227 }
+    }
+    <Vertex> 3889 {
+      -5.0390329361 -54.7811050415 12.9900779724
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { -0.020391 -0.999525 -0.023128 }
+        <Binormal> { -0.910406 0.009004 0.413541 }
+      }
+      <Normal> { 0.413160 -0.028321 0.910184 }
+    }
+    <Vertex> 3890 {
+      -5.35347032547 -51.5775108337 12.9710607529
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.629984 -0.769889 -0.101936 }
+        <Binormal> { -0.475423 -0.481580 0.699012 }
+      }
+      <Normal> { 0.732780 0.214057 0.645863 }
+    }
+    <Vertex> 3891 {
+      -5.88460969925 -51.6331825256 13.9843406677
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { -0.005851 -0.995028 -0.099423 }
+        <Binormal> { -0.440705 -0.086676 0.893390 }
+      }
+      <Normal> { 0.897519 -0.057039 0.437208 }
+    }
+    <Vertex> 3892 {
+      -5.87679100037 -54.7962989807 13.6146593094
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { -0.088099 -0.994898 -0.049151 }
+        <Binormal> { -0.681648 0.024235 0.731251 }
+      }
+      <Normal> { 0.726188 -0.099521 0.680227 }
+    }
+    <Vertex> 3893 {
+      -5.88460969925 -51.6331825256 13.9843406677
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { -0.005851 -0.995028 -0.099423 }
+        <Binormal> { -0.440705 -0.086676 0.893390 }
+      }
+      <Normal> { 0.897519 -0.057039 0.437208 }
+    }
+    <Vertex> 3894 {
+      -6.33217811584 -51.7258758545 14.9410142899
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { -0.041080 -0.991560 -0.122969 }
+        <Binormal> { -0.662716 -0.063257 0.731461 }
+      }
+      <Normal> { 0.727012 -0.257668 0.636402 }
+    }
+    <Vertex> 3895 {
+      -6.47673654556 -54.7197265625 14.3222208023
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { -0.178619 -0.980221 -0.085216 }
+        <Binormal> { -0.831168 0.104053 0.545288 }
+      }
+      <Normal> { 0.520249 -0.197790 0.830744 }
+    }
+    <Vertex> 3896 {
+      -5.87679100037 -54.7962989807 13.6146593094
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { -0.088099 -0.994898 -0.049151 }
+        <Binormal> { -0.681648 0.024235 0.731251 }
+      }
+      <Normal> { 0.726188 -0.099521 0.680227 }
+    }
+    <Vertex> 3897 {
+      -6.47673654556 -54.7197265625 14.3222208023
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { -0.178619 -0.980221 -0.085216 }
+        <Binormal> { -0.831168 0.104053 0.545288 }
+      }
+      <Normal> { 0.520249 -0.197790 0.830744 }
+    }
+    <Vertex> 3898 {
+      -7.17759752274 -57.8108673096 14.1112775803
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { -0.225194 -0.974242 -0.011841 }
+        <Binormal> { -0.896996 0.202768 0.376022 }
+      }
+      <Normal> { 0.338389 -0.205817 0.918210 }
+    }
+    <Vertex> 3899 {
+      -6.45493078232 -57.9455909729 13.5527858734
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { -0.197920 -0.980201 -0.005833 }
+        <Binormal> { -0.748455 0.147363 0.632353 }
+      }
+      <Normal> { 0.592303 -0.261605 0.762017 }
+    }
+    <Vertex> 3900 {
+      -5.90806627274 -48.7218818665 15.0933885574
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.150008 -0.906177 -0.395399 }
+        <Binormal> { -0.139691 -0.415316 0.898824 }
+      }
+      <Normal> { 0.977508 0.086856 0.192053 }
+    }
+    <Vertex> 3901 {
+      -5.88460969925 -51.6331825256 13.9843406677
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.007529 -0.934463 -0.355980 }
+        <Binormal> { -0.428860 -0.322790 0.838269 }
+      }
+      <Normal> { 0.897519 -0.057039 0.437208 }
+    }
+    <Vertex> 3902 {
+      -5.35347032547 -51.5775108337 12.9710607529
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.091461 -0.950691 -0.296348 }
+        <Binormal> { -0.550581 -0.276229 0.716225 }
+      }
+      <Normal> { 0.732780 0.214057 0.645863 }
+    }
+    <Vertex> 3903 {
+      -5.88519668579 -48.7179756165 13.6608877182
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.242869 -0.947339 -0.208720 }
+        <Binormal> { 0.079391 -0.195015 0.977514 }
+      }
+      <Normal> { 0.964629 0.262215 -0.026032 }
+    }
+    <Vertex> 3904 {
+      -5.90806627274 -48.7218818665 15.0933885574
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.150008 -0.906177 -0.395399 }
+        <Binormal> { -0.139691 -0.415316 0.898824 }
+      }
+      <Normal> { 0.977508 0.086856 0.192053 }
+    }
+    <Vertex> 3905 {
+      -5.88519668579 -48.7179756165 13.6608877182
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.242869 -0.947339 -0.208720 }
+        <Binormal> { 0.079391 -0.195015 0.977514 }
+      }
+      <Normal> { 0.964629 0.262215 -0.026032 }
+    }
+    <Vertex> 3906 {
+      -6.66070270538 -46.4785079956 14.0944881439
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.302628 -0.907378 -0.291688 }
+        <Binormal> { 0.361609 -0.155281 0.858217 }
+      }
+      <Normal> { 0.724326 0.664113 -0.185034 }
+    }
+    <Vertex> 3907 {
+      -6.61151027679 -46.5269699097 16.0852737427
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.280341 -0.874730 -0.395292 }
+        <Binormal> { 0.152329 -0.337856 0.855663 }
+      }
+      <Normal> { 0.780786 0.615986 0.104221 }
+    }
+    <Vertex> 3908 {
+      -5.90806627274 -48.7218818665 15.0933885574
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.150008 -0.906177 -0.395399 }
+        <Binormal> { -0.139691 -0.415316 0.898824 }
+      }
+      <Normal> { 0.977508 0.086856 0.192053 }
+    }
+    <Vertex> 3909 {
+      -6.61151027679 -46.5269699097 16.0852737427
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.280341 -0.874730 -0.395292 }
+        <Binormal> { 0.152329 -0.337856 0.855663 }
+      }
+      <Normal> { 0.780786 0.615986 0.104221 }
+    }
+    <Vertex> 3910 {
+      -6.90795135498 -46.8801879883 18.4110374451
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.241142 -0.796355 -0.554679 }
+        <Binormal> { -0.196761 -0.582387 0.750596 }
+      }
+      <Normal> { 0.862362 0.264779 0.431501 }
+    }
+    <Vertex> 3911 {
+      -6.29688167572 -49.0263748169 16.3792533875
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.096158 -0.809266 -0.579519 }
+        <Binormal> { -0.500182 -0.542439 0.674491 }
+      }
+      <Normal> { 0.857906 -0.205725 0.470748 }
+    }
+    <Vertex> 3912 {
+      -5.90806627274 -48.7218818665 15.0933885574
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.150008 -0.906177 -0.395399 }
+        <Binormal> { -0.139691 -0.415316 0.898824 }
+      }
+      <Normal> { 0.977508 0.086856 0.192053 }
+    }
+    <Vertex> 3913 {
+      -6.29688167572 -49.0263748169 16.3792533875
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.096158 -0.809266 -0.579519 }
+        <Binormal> { -0.500182 -0.542439 0.674491 }
+      }
+      <Normal> { 0.857906 -0.205725 0.470748 }
+    }
+    <Vertex> 3914 {
+      -6.33217811584 -51.7258758545 14.9410142899
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.467095 -0.860673 -0.202642 }
+        <Binormal> { -0.599949 0.149938 0.746075 }
+      }
+      <Normal> { 0.727012 -0.257668 0.636402 }
+    }
+    <Vertex> 3915 {
+      -5.88460969925 -51.6331825256 13.9843406677
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.007529 -0.934463 -0.355980 }
+        <Binormal> { -0.428860 -0.322790 0.838269 }
+      }
+      <Normal> { 0.897519 -0.057039 0.437208 }
+    }
+    <Vertex> 3916 {
+      -32.1065597534 -53.9348945618 13.4386987686
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.940605 -0.339463 0.005176 }
+        <Binormal> { -0.339315 -0.939605 0.038768 }
+      }
+      <Normal> { -0.011963 0.045534 0.998871 }
+    }
+    <Vertex> 3917 {
+      -28.745721817 -53.5101547241 13.411324501
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.927556 -0.373023 0.022232 }
+        <Binormal> { -0.373501 0.926848 -0.031838 }
+      }
+      <Normal> { 0.026734 0.045076 0.998596 }
+    }
+    <Vertex> 3918 {
+      -28.745721817 -50.0735054016 13.3497514725
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.933236 0.359203 -0.006648 }
+        <Binormal> { 0.359026 0.931838 -0.050709 }
+      }
+      <Normal> { 0.000275 0.054231 0.998505 }
+    }
+    <Vertex> 3919 {
+      -32.1065597534 -50.4982414246 13.356595993
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.482612 0.875561 -0.021886 }
+        <Binormal> { 0.875290 0.481872 -0.023623 }
+      }
+      <Normal> { -0.005890 0.059633 0.998199 }
+    }
+    <Vertex> 3920 {
+      -32.1065597534 -53.9348945618 13.4386987686
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.940605 -0.339463 0.005176 }
+        <Binormal> { -0.339315 -0.939605 0.038768 }
+      }
+      <Normal> { -0.011963 0.045534 0.998871 }
+    }
+    <Vertex> 3921 {
+      -32.1065597534 -50.4982414246 13.356595993
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.482612 0.875561 -0.021886 }
+        <Binormal> { 0.875290 0.481872 -0.023623 }
+      }
+      <Normal> { -0.005890 0.059633 0.998199 }
+    }
+    <Vertex> 3922 {
+      -35.836479187 -50.9559555054 13.356595993
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.947305 -0.320164 0.010426 }
+        <Binormal> { -0.320191 -0.945590 0.055147 }
+      }
+      <Normal> { -0.007447 0.060732 0.998108 }
+    }
+    <Vertex> 3923 {
+      -35.836479187 -54.3926048279 13.4386987686
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.940605 -0.339463 0.005176 }
+        <Binormal> { -0.339332 -0.939904 0.022349 }
+      }
+      <Normal> { -0.025239 0.032868 0.999115 }
+    }
+    <Vertex> 3924 {
+      -32.1065597534 -53.9348945618 13.4386987686
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.940605 -0.339463 0.005176 }
+        <Binormal> { -0.339315 -0.939605 0.038768 }
+      }
+      <Normal> { -0.011963 0.045534 0.998871 }
+    }
+    <Vertex> 3925 {
+      -35.836479187 -54.3926048279 13.4386987686
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.940605 -0.339463 0.005176 }
+        <Binormal> { -0.339332 -0.939904 0.022349 }
+      }
+      <Normal> { -0.025239 0.032868 0.999115 }
+    }
+    <Vertex> 3926 {
+      -35.836479187 -58.1712722778 13.4386987686
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.933594 -0.358334 0.000000 }
+        <Binormal> { -0.214419 -0.558640 0.381725 }
+      }
+      <Normal> { -0.520829 0.608783 0.598376 }
+    }
+    <Vertex> 3927 {
+      -31.8782863617 -56.8203735352 13.7292461395
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.223863 -0.971237 0.081143 }
+        <Binormal> { -0.884664 0.191489 -0.148653 }
+      }
+      <Normal> { -0.039705 0.491775 0.869778 }
+    }
+    <Vertex> 3928 {
+      -32.1065597534 -53.9348945618 13.4386987686
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.940605 -0.339463 0.005176 }
+        <Binormal> { -0.339315 -0.939605 0.038768 }
+      }
+      <Normal> { -0.011963 0.045534 0.998871 }
+    }
+    <Vertex> 3929 {
+      -31.8782863617 -56.8203735352 13.7292461395
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.223863 -0.971237 0.081143 }
+        <Binormal> { -0.884664 0.191489 -0.148653 }
+      }
+      <Normal> { -0.039705 0.491775 0.869778 }
+    }
+    <Vertex> 3930 {
+      -28.5103988647 -57.3936233521 13.7695398331
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.753505 -0.654540 0.061706 }
+        <Binormal> { -0.617069 0.703018 -0.077979 }
+      }
+      <Normal> { 0.252113 0.322489 0.912351 }
+    }
+    <Vertex> 3931 {
+      -28.745721817 -53.5101547241 13.411324501
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.927556 -0.373023 0.022232 }
+        <Binormal> { -0.373501 0.926848 -0.031838 }
+      }
+      <Normal> { 0.026734 0.045076 0.998596 }
+    }
+    <Vertex> 3932 {
+      -15.8161048889 -52.3412055969 13.7342691422
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.265032 -0.963478 -0.038324 }
+        <Binormal> { -0.964031 0.265516 -0.008329 }
+      }
+      <Normal> { -0.016419 -0.028260 0.999451 }
+    }
+    <Vertex> 3933 {
+      -12.9572477341 -52.1151008606 14.0029659271
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.380589 -0.921904 -0.072427 }
+        <Binormal> { -0.864742 0.379778 -0.290058 }
+      }
+      <Normal> { -0.353648 -0.094516 0.930570 }
+    }
+    <Vertex> 3934 {
+      -13.0788087845 -48.8977127075 14.0308132172
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.419678 -0.906202 -0.051657 }
+        <Binormal> { -0.794600 0.393085 -0.440180 }
+      }
+      <Normal> { -0.478957 0.014649 0.877682 }
+    }
+    <Vertex> 3935 {
+      -15.8161048889 -48.9045562744 13.7999505997
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.396847 -0.917697 -0.018560 }
+        <Binormal> { -0.914610 0.396445 -0.046130 }
+      }
+      <Normal> { -0.024018 0.060701 0.997864 }
+    }
+    <Vertex> 3936 {
+      -15.8161048889 -52.3412055969 13.7342691422
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.265032 -0.963478 -0.038324 }
+        <Binormal> { -0.964031 0.265516 -0.008329 }
+      }
+      <Normal> { -0.016419 -0.028260 0.999451 }
+    }
+    <Vertex> 3937 {
+      -15.8161048889 -48.9045562744 13.7999505997
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.396847 -0.917697 -0.018560 }
+        <Binormal> { -0.914610 0.396445 -0.046130 }
+      }
+      <Normal> { -0.024018 0.060701 0.997864 }
+    }
+    <Vertex> 3938 {
+      -19.0391654968 -48.9342460632 14.0147857666
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.227774 -0.973570 -0.016730 }
+        <Binormal> { -0.970399 0.227567 -0.031127 }
+      }
+      <Normal> { -0.017121 0.063478 0.997833 }
+    }
+    <Vertex> 3939 {
+      -19.0391654968 -52.3708953857 13.8546791077
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.007267 -0.999222 -0.038775 }
+        <Binormal> { -0.999687 0.008169 -0.023142 }
+      }
+      <Normal> { -0.023408 -0.034028 0.999146 }
+    }
+    <Vertex> 3940 {
+      -15.8161048889 -52.3412055969 13.7342691422
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.265032 -0.963478 -0.038324 }
+        <Binormal> { -0.964031 0.265516 -0.008329 }
+      }
+      <Normal> { -0.016419 -0.028260 0.999451 }
+    }
+    <Vertex> 3941 {
+      -19.0391654968 -52.3708953857 13.8546791077
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.007267 -0.999222 -0.038775 }
+        <Binormal> { -0.999687 0.008169 -0.023142 }
+      }
+      <Normal> { -0.023408 -0.034028 0.999146 }
+    }
+    <Vertex> 3942 {
+      -19.0934810638 -56.4022789001 13.7249898911
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.127324 -0.991586 -0.023338 }
+        <Binormal> { -0.989374 0.127910 -0.036926 }
+      }
+      <Normal> { -0.032228 0.039033 0.998688 }
+    }
+    <Vertex> 3943 {
+      -16.0333709717 -56.3763046265 13.6569356918
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.251205 -0.967717 -0.020492 }
+        <Binormal> { -0.967228 0.250852 0.010689 }
+      }
+      <Normal> { 0.014618 0.013764 0.999786 }
+    }
+    <Vertex> 3944 {
+      -15.8161048889 -52.3412055969 13.7342691422
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.265032 -0.963478 -0.038324 }
+        <Binormal> { -0.964031 0.265516 -0.008329 }
+      }
+      <Normal> { -0.016419 -0.028260 0.999451 }
+    }
+    <Vertex> 3945 {
+      -16.0333709717 -56.3763046265 13.6569356918
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.251205 -0.967717 -0.020492 }
+        <Binormal> { -0.967228 0.250852 0.010689 }
+      }
+      <Normal> { 0.014618 0.013764 0.999786 }
+    }
+    <Vertex> 3946 {
+      -12.3883171082 -56.1570320129 13.7950839996
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.284827 -0.956845 -0.057633 }
+        <Binormal> { -0.947934 0.288555 -0.105932 }
+      }
+      <Normal> { -0.141606 -0.103793 0.984436 }
+    }
+    <Vertex> 3947 {
+      -12.9572477341 -52.1151008606 14.0029659271
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.380589 -0.921904 -0.072427 }
+        <Binormal> { -0.864742 0.379778 -0.290058 }
+      }
+      <Normal> { -0.353648 -0.094516 0.930570 }
+    }
+    <Vertex> 3948 {
+      -21.6159038544 -52.5587043762 13.6247692108
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.104038 -0.033845 0.993988 }
+    }
+    <Vertex> 3949 {
+      -19.0391654968 -52.3708953857 13.8546791077
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.023408 -0.034028 0.999146 }
+    }
+    <Vertex> 3950 {
+      -19.0391654968 -48.9342460632 14.0147857666
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.017121 0.063478 0.997833 }
+    }
+    <Vertex> 3951 {
+      -21.6159038544 -49.1220550537 13.7725763321
+      <UV>  {
+        0.250000 0.750000
+        <Tangent> { -0.320728 -0.943927 -0.078327 }
+        <Binormal> { -0.932717 0.327044 -0.122022 }
+      }
+      <Normal> { -0.111881 0.051180 0.992370 }
+    }
+    <Vertex> 3952 {
+      -21.6159038544 -52.5587043762 13.6247692108
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.104038 -0.033845 0.993988 }
+    }
+    <Vertex> 3953 {
+      -21.6159038544 -49.1220550537 13.7725763321
+      <UV>  {
+        0.250000 0.750000
+        <Tangent> { -0.320728 -0.943927 -0.078327 }
+        <Binormal> { -0.932717 0.327044 -0.122022 }
+      }
+      <Normal> { -0.111881 0.051180 0.992370 }
+    }
+    <Vertex> 3954 {
+      -23.8694820404 -49.4036445618 13.4263725281
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.439767 -0.893242 -0.093401 }
+        <Binormal> { -0.885175 0.445820 -0.095875 }
+      }
+      <Normal> { -0.086795 0.041719 0.995331 }
+    }
+    <Vertex> 3955 {
+      -23.8694820404 -52.8403015137 13.3483409882
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.721245 -0.685245 -0.101218 }
+        <Binormal> { -0.685708 0.725969 -0.028691 }
+      }
+      <Normal> { -0.061464 -0.018616 0.997925 }
+    }
+    <Vertex> 3956 {
+      -21.6159038544 -52.5587043762 13.6247692108
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.104038 -0.033845 0.993988 }
+    }
+    <Vertex> 3957 {
+      -23.8694820404 -52.8403015137 13.3483409882
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.721245 -0.685245 -0.101218 }
+        <Binormal> { -0.685708 0.725969 -0.028691 }
+      }
+      <Normal> { -0.061464 -0.018616 0.997925 }
+    }
+    <Vertex> 3958 {
+      -23.839345932 -56.8130111694 13.2712678909
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.866460 -0.488259 -0.104160 }
+        <Binormal> { -0.484397 0.869645 -0.047053 }
+      }
+      <Normal> { -0.041993 0.030641 0.998627 }
+    }
+    <Vertex> 3959 {
+      -21.6159038544 -56.566608429 13.4926862717
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.991787 -0.085835 -0.094818 }
+        <Binormal> { -0.082056 0.995501 -0.042885 }
+      }
+      <Normal> { -0.117374 0.033082 0.992523 }
+    }
+    <Vertex> 3960 {
+      -21.6159038544 -52.5587043762 13.6247692108
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.104038 -0.033845 0.993988 }
+    }
+    <Vertex> 3961 {
+      -21.6159038544 -56.566608429 13.4926862717
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.991787 -0.085835 -0.094818 }
+        <Binormal> { -0.082056 0.995501 -0.042885 }
+      }
+      <Normal> { -0.117374 0.033082 0.992523 }
+    }
+    <Vertex> 3962 {
+      -19.0934810638 -56.4022789001 13.7249898911
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.032228 0.039033 0.998688 }
+    }
+    <Vertex> 3963 {
+      -19.0391654968 -52.3708953857 13.8546791077
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.023408 -0.034028 0.999146 }
+    }
+    <Vertex> 3964 {
+      -26.1230583191 -53.1513748169 13.3291978836
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.017185 -0.999782 0.011881 }
+        <Binormal> { -0.999529 -0.016884 0.024954 }
+      }
+      <Normal> { 0.024751 0.012146 0.999603 }
+    }
+    <Vertex> 3965 {
+      -23.8694820404 -52.8403015137 13.3483409882
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.004066 -0.999773 -0.020929 }
+        <Binormal> { -0.998088 -0.002772 -0.061526 }
+      }
+      <Normal> { -0.061464 -0.018616 0.997925 }
+    }
+    <Vertex> 3966 {
+      -23.8694820404 -49.4036445618 13.4263725281
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.000000 -0.999936 -0.011356 }
+        <Binormal> { -0.994793 0.000986 -0.086789 }
+      }
+      <Normal> { -0.086795 0.041719 0.995331 }
+    }
+    <Vertex> 3967 {
+      -26.1230583191 -49.7147216797 13.3292217255
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { 0.000000 -1.000000 -0.000007 }
+        <Binormal> { -0.998840 0.000000 -0.016205 }
+      }
+      <Normal> { -0.016205 0.044954 0.998840 }
+    }
+    <Vertex> 3968 {
+      -26.1230583191 -53.1513748169 13.3291978836
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.017185 -0.999782 0.011881 }
+        <Binormal> { -0.999529 -0.016884 0.024954 }
+      }
+      <Normal> { 0.024751 0.012146 0.999603 }
+    }
+    <Vertex> 3969 {
+      -26.1230583191 -49.7147216797 13.3292217255
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { 0.000000 -1.000000 -0.000007 }
+        <Binormal> { -0.998840 0.000000 -0.016205 }
+      }
+      <Normal> { -0.016205 0.044954 0.998840 }
+    }
+    <Vertex> 3970 {
+      -28.745721817 -50.0735054016 13.3497514725
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 -0.999960 0.008954 }
+        <Binormal> { -0.998950 0.000002 0.000275 }
+      }
+      <Normal> { 0.000275 0.054231 0.998505 }
+    }
+    <Vertex> 3971 {
+      -28.745721817 -53.5101547241 13.411324501
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.032078 -0.997846 0.057224 }
+        <Binormal> { -0.999024 -0.030503 0.028123 }
+      }
+      <Normal> { 0.026734 0.045076 0.998596 }
+    }
+    <Vertex> 3972 {
+      -26.1230583191 -53.1513748169 13.3291978836
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.017185 -0.999782 0.011881 }
+        <Binormal> { -0.999529 -0.016884 0.024954 }
+      }
+      <Normal> { 0.024751 0.012146 0.999603 }
+    }
+    <Vertex> 3973 {
+      -28.745721817 -53.5101547241 13.411324501
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.032078 -0.997846 0.057224 }
+        <Binormal> { -0.999024 -0.030503 0.028123 }
+      }
+      <Normal> { 0.026734 0.045076 0.998596 }
+    }
+    <Vertex> 3974 {
+      -28.5103988647 -57.3936233521 13.7695398331
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.045416 -0.997656 0.051177 }
+        <Binormal> { -0.926717 -0.028533 0.266169 }
+      }
+      <Normal> { 0.252113 0.322489 0.912351 }
+    }
+    <Vertex> 3975 {
+      -26.0025138855 -57.0851898193 13.3719873428
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { 0.030627 -0.999472 0.010872 }
+        <Binormal> { -0.991478 -0.029192 0.109372 }
+      }
+      <Normal> { 0.107028 0.078372 0.991150 }
+    }
+    <Vertex> 3976 {
+      -26.1230583191 -53.1513748169 13.3291978836
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.017185 -0.999782 0.011881 }
+        <Binormal> { -0.999529 -0.016884 0.024954 }
+      }
+      <Normal> { 0.024751 0.012146 0.999603 }
+    }
+    <Vertex> 3977 {
+      -26.0025138855 -57.0851898193 13.3719873428
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { 0.030627 -0.999472 0.010872 }
+        <Binormal> { -0.991478 -0.029192 0.109372 }
+      }
+      <Normal> { 0.107028 0.078372 0.991150 }
+    }
+    <Vertex> 3978 {
+      -23.839345932 -56.8130111694 13.2712678909
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.019054 -0.999809 -0.004335 }
+        <Binormal> { -0.998303 -0.018846 -0.041402 }
+      }
+      <Normal> { -0.041993 0.030641 0.998627 }
+    }
+    <Vertex> 3979 {
+      -23.8694820404 -52.8403015137 13.3483409882
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.004066 -0.999773 -0.020929 }
+        <Binormal> { -0.998088 -0.002772 -0.061526 }
+      }
+      <Normal> { -0.061464 -0.018616 0.997925 }
+    }
+    <Vertex> 3980 {
+      0.825271785259 -54.6747970581 13.4621458054
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.114876 0.993310 0.011775 }
+        <Binormal> { 0.529111 -0.071215 0.845523 }
+      }
+      <Normal> { -0.840541 0.092318 0.533769 }
+    }
+    <Vertex> 3981 {
+      1.01708161831 -51.6919631958 13.4817581177
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.075173 0.996759 0.028646 }
+        <Binormal> { 0.483919 -0.061327 0.864028 }
+      }
+      <Normal> { -0.853633 0.175085 0.490524 }
+    }
+    <Vertex> 3982 {
+      0.260279417038 -51.5365333557 12.731045723
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.634189 0.773169 0.003816 }
+        <Binormal> { 0.626848 -0.517004 0.574343 }
+      }
+      <Normal> { -0.508988 0.285104 0.812159 }
+    }
+    <Vertex> 3983 {
+      -0.0124856652692 -54.6899833679 12.9519500732
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.116074 0.992144 -0.046651 }
+        <Binormal> { 0.937089 -0.093846 0.335749 }
+      }
+      <Normal> { -0.330760 0.065371 0.941435 }
+    }
+    <Vertex> 3984 {
+      0.825271785259 -54.6747970581 13.4621458054
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.114876 0.993310 0.011775 }
+        <Binormal> { 0.529111 -0.071215 0.845523 }
+      }
+      <Normal> { -0.840541 0.092318 0.533769 }
+    }
+    <Vertex> 3985 {
+      -0.0124856652692 -54.6899833679 12.9519500732
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.116074 0.992144 -0.046651 }
+        <Binormal> { 0.937089 -0.093846 0.335749 }
+      }
+      <Normal> { -0.330760 0.065371 0.941435 }
+    }
+    <Vertex> 3986 {
+      -0.649426758289 -58.0259895325 12.9442148209
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.400644 0.905865 0.137454 }
+        <Binormal> { 0.842258 -0.421069 0.320001 }
+      }
+      <Normal> { -0.306040 0.106754 0.945982 }
+    }
+    <Vertex> 3987 {
+      0.188428789377 -58.0374794006 13.4621458054
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.197896 0.980162 0.010956 }
+        <Binormal> { 0.703336 -0.149747 0.692675 }
+      }
+      <Normal> { -0.669576 0.183844 0.719626 }
+    }
+    <Vertex> 3988 {
+      0.825271785259 -54.6747970581 13.4621458054
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.114876 0.993310 0.011775 }
+        <Binormal> { 0.529111 -0.071215 0.845523 }
+      }
+      <Normal> { -0.840541 0.092318 0.533769 }
+    }
+    <Vertex> 3989 {
+      0.188428789377 -58.0374794006 13.4621458054
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.197896 0.980162 0.010956 }
+        <Binormal> { 0.703336 -0.149747 0.692675 }
+      }
+      <Normal> { -0.669576 0.183844 0.719626 }
+    }
+    <Vertex> 3990 {
+      0.800136804581 -58.5618629456 14.3294782639
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.098905 0.993480 0.056697 }
+        <Binormal> { 0.548220 -0.101390 0.820290 }
+      }
+      <Normal> { -0.833308 -0.076693 0.547441 }
+    }
+    <Vertex> 3991 {
+      0.761274933815 -54.6630172729 14.5136833191
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.046462 0.994431 0.094597 }
+        <Binormal> { 0.066648 -0.097537 0.992598 }
+      }
+      <Normal> { -0.995025 0.067019 0.073397 }
+    }
+    <Vertex> 3992 {
+      0.825271785259 -54.6747970581 13.4621458054
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.114876 0.993310 0.011775 }
+        <Binormal> { 0.529111 -0.071215 0.845523 }
+      }
+      <Normal> { -0.840541 0.092318 0.533769 }
+    }
+    <Vertex> 3993 {
+      0.761274933815 -54.6630172729 14.5136833191
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.046462 0.994431 0.094597 }
+        <Binormal> { 0.066648 -0.097537 0.992598 }
+      }
+      <Normal> { -0.995025 0.067019 0.073397 }
+    }
+    <Vertex> 3994 {
+      1.14493978024 -51.7748260498 14.5244092941
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.093346 0.994193 0.053534 }
+        <Binormal> { 0.087764 -0.060888 0.977735 }
+      }
+      <Normal> { -0.958464 0.266060 0.102603 }
+    }
+    <Vertex> 3995 {
+      1.01708161831 -51.6919631958 13.4817581177
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.075173 0.996759 0.028646 }
+        <Binormal> { 0.483919 -0.061327 0.864028 }
+      }
+      <Normal> { -0.853633 0.175085 0.490524 }
+    }
+    <Vertex> 3996 {
+      9.40822887421 -45.6209449768 12.3301124573
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.998647 -0.019317 -0.048283 }
+        <Binormal> { 0.051938 0.416419 0.907645 }
+      }
+      <Normal> { -0.007752 0.909024 -0.416608 }
+    }
+    <Vertex> 3997 {
+      12.5250453949 -46.0623397827 11.9190769196
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.996126 -0.042611 0.076927 }
+        <Binormal> { -0.070243 0.139022 0.986584 }
+      }
+      <Normal> { 0.004364 0.990234 -0.139225 }
+    }
+    <Vertex> 3998 {
+      12.5138368607 -45.9000854492 10.5322751999
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.993268 0.044809 0.106820 }
+        <Binormal> { -0.104511 -0.045708 0.990968 }
+      }
+      <Normal> { -0.119144 0.992309 0.033204 }
+    }
+    <Vertex> 3999 {
+      9.57927322388 -46.501750946 10.7104196548
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.966084 0.258153 0.006168 }
+        <Binormal> { -0.080599 0.278792 0.955606 }
+      }
+      <Normal> { -0.196509 0.936644 -0.289834 }
+    }
+    <Vertex> 4000 {
+      9.40822887421 -45.6209449768 12.3301124573
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.998647 -0.019317 -0.048283 }
+        <Binormal> { 0.051938 0.416419 0.907645 }
+      }
+      <Normal> { -0.007752 0.909024 -0.416608 }
+    }
+    <Vertex> 4001 {
+      9.57927322388 -46.501750946 10.7104196548
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.966084 0.258153 0.006168 }
+        <Binormal> { -0.080599 0.278792 0.955606 }
+      }
+      <Normal> { -0.196509 0.936644 -0.289834 }
+    }
+    <Vertex> 4002 {
+      6.70784902573 -47.0221824646 11.24629879
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.986399 0.149586 -0.068122 }
+        <Binormal> { -0.007510 0.454981 0.890327 }
+      }
+      <Normal> { -0.177618 0.875668 -0.448988 }
+    }
+    <Vertex> 4003 {
+      6.58253288269 -45.3662872314 12.9538946152
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.996895 0.023819 -0.075060 }
+        <Binormal> { 0.050609 0.521345 0.837604 }
+      }
+      <Normal> { -0.213660 0.835109 -0.506882 }
+    }
+    <Vertex> 4004 {
+      9.40822887421 -45.6209449768 12.3301124573
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.998647 -0.019317 -0.048283 }
+        <Binormal> { 0.051938 0.416419 0.907645 }
+      }
+      <Normal> { -0.007752 0.909024 -0.416608 }
+    }
+    <Vertex> 4005 {
+      6.58253288269 -45.3662872314 12.9538946152
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.996895 0.023819 -0.075060 }
+        <Binormal> { 0.050609 0.521345 0.837604 }
+      }
+      <Normal> { -0.213660 0.835109 -0.506882 }
+    }
+    <Vertex> 4006 {
+      6.77663993835 -44.2396659851 14.7889242172
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.992891 -0.070774 -0.095698 }
+        <Binormal> { 0.089994 -0.025630 0.952667 }
+      }
+      <Normal> { -0.217261 0.974975 0.046754 }
+    }
+    <Vertex> 4007 {
+      9.54758071899 -44.8330535889 14.0436153412
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.975492 -0.198594 -0.094735 }
+        <Binormal> { 0.122826 0.135422 0.980855 }
+      }
+      <Normal> { 0.116947 0.981689 -0.150182 }
+    }
+    <Vertex> 4008 {
+      9.40822887421 -45.6209449768 12.3301124573
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.998647 -0.019317 -0.048283 }
+        <Binormal> { 0.051938 0.416419 0.907645 }
+      }
+      <Normal> { -0.007752 0.909024 -0.416608 }
+    }
+    <Vertex> 4009 {
+      9.54758071899 -44.8330535889 14.0436153412
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.975492 -0.198594 -0.094735 }
+        <Binormal> { 0.122826 0.135422 0.980855 }
+      }
+      <Normal> { 0.116947 0.981689 -0.150182 }
+    }
+    <Vertex> 4010 {
+      12.7955036163 -45.8432769775 13.4040660858
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.996255 -0.062401 0.059856 }
+        <Binormal> { -0.041655 0.260130 0.964500 }
+      }
+      <Normal> { 0.057772 0.964507 -0.257637 }
+    }
+    <Vertex> 4011 {
+      12.5250453949 -46.0623397827 11.9190769196
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.996126 -0.042611 0.076927 }
+        <Binormal> { -0.070243 0.139022 0.986584 }
+      }
+      <Normal> { 0.004364 0.990234 -0.139225 }
+    }
+    <Vertex> 4012 {
+      15.6526613235 -45.9170722961 12.1665039063
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.977024 -0.036751 0.209939 }
+        <Binormal> { -0.213082 -0.152889 0.964890 }
+      }
+      <Normal> { -0.008881 0.987915 0.154576 }
+    }
+    <Vertex> 4013 {
+      18.7856750488 -45.4784736633 12.7431602478
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.965364 0.073762 0.250265 }
+        <Binormal> { -0.214552 -0.293311 0.914054 }
+      }
+      <Normal> { 0.032991 0.949370 0.312387 }
+    }
+    <Vertex> 4014 {
+      18.3363170624 -45.7827606201 11.505692482
+      <UV>  {
+        -0.042124 0.762705
+        <Tangent> { 0.961103 0.064367 0.268586 }
+        <Binormal> { -0.263847 -0.065981 0.959957 }
+      }
+      <Normal> { -0.015015 0.997803 0.064455 }
+    }
+    <Vertex> 4015 {
+      15.4297418594 -45.7328224182 10.886013031
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.968780 0.006484 0.247836 }
+        <Binormal> { -0.244870 -0.131149 0.960617 }
+      }
+      <Normal> { -0.045076 0.991272 0.123844 }
+    }
+    <Vertex> 4016 {
+      15.6526613235 -45.9170722961 12.1665039063
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.977024 -0.036751 0.209939 }
+        <Binormal> { -0.213082 -0.152889 0.964890 }
+      }
+      <Normal> { -0.008881 0.987915 0.154576 }
+    }
+    <Vertex> 4017 {
+      15.4297418594 -45.7328224182 10.886013031
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.968780 0.006484 0.247836 }
+        <Binormal> { -0.244870 -0.131149 0.960617 }
+      }
+      <Normal> { -0.045076 0.991272 0.123844 }
+    }
+    <Vertex> 4018 {
+      12.5138368607 -45.9000854492 10.5322751999
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.993268 0.044809 0.106820 }
+        <Binormal> { -0.104511 -0.045708 0.990968 }
+      }
+      <Normal> { -0.119144 0.992309 0.033204 }
+    }
+    <Vertex> 4019 {
+      12.5250453949 -46.0623397827 11.9190769196
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.996126 -0.042611 0.076927 }
+        <Binormal> { -0.070243 0.139022 0.986584 }
+      }
+      <Normal> { 0.004364 0.990234 -0.139225 }
+    }
+    <Vertex> 4020 {
+      15.6526613235 -45.9170722961 12.1665039063
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.977024 -0.036751 0.209939 }
+        <Binormal> { -0.213082 -0.152889 0.964890 }
+      }
+      <Normal> { -0.008881 0.987915 0.154576 }
+    }
+    <Vertex> 4021 {
+      12.5250453949 -46.0623397827 11.9190769196
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.996126 -0.042611 0.076927 }
+        <Binormal> { -0.070243 0.139022 0.986584 }
+      }
+      <Normal> { 0.004364 0.990234 -0.139225 }
+    }
+    <Vertex> 4022 {
+      12.7955036163 -45.8432769775 13.4040660858
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.996255 -0.062401 0.059856 }
+        <Binormal> { -0.041655 0.260130 0.964500 }
+      }
+      <Normal> { 0.057772 0.964507 -0.257637 }
+    }
+    <Vertex> 4023 {
+      16.0870494843 -45.7308197021 13.5851392746
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.947982 -0.276335 0.158017 }
+        <Binormal> { -0.131070 0.111263 0.980892 }
+      }
+      <Normal> { 0.202643 0.975646 -0.083590 }
+    }
+    <Vertex> 4024 {
+      15.6526613235 -45.9170722961 12.1665039063
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.977024 -0.036751 0.209939 }
+        <Binormal> { -0.213082 -0.152889 0.964890 }
+      }
+      <Normal> { -0.008881 0.987915 0.154576 }
+    }
+    <Vertex> 4025 {
+      16.0870494843 -45.7308197021 13.5851392746
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.947982 -0.276335 0.158017 }
+        <Binormal> { -0.131070 0.111263 0.980892 }
+      }
+      <Normal> { 0.202643 0.975646 -0.083590 }
+    }
+    <Vertex> 4026 {
+      18.5573348999 -47.6548233032 13.7965936661
+      <UV>  {
+        -0.073782 0.891829
+        <Tangent> { 0.925445 -0.312236 0.214618 }
+        <Binormal> { -0.097020 0.280633 0.826635 }
+      }
+      <Normal> { 0.760674 0.636586 -0.126835 }
+    }
+    <Vertex> 4027 {
+      18.7856750488 -45.4784736633 12.7431602478
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.965364 0.073762 0.250265 }
+        <Binormal> { -0.214552 -0.293311 0.914054 }
+      }
+      <Normal> { 0.032991 0.949370 0.312387 }
+    }
+    <Vertex> 4028 {
+      4.32828092575 -46.0717697144 13.344707489
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.884596 0.446097 -0.135967 }
+        <Binormal> { 0.040873 0.216014 0.974640 }
+      }
+      <Normal> { -0.500259 0.849513 -0.167302 }
+    }
+    <Vertex> 4029 {
+      6.58253288269 -45.3662872314 12.9538946152
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.941555 0.294666 -0.163235 }
+        <Binormal> { -0.013042 0.512134 0.849259 }
+      }
+      <Normal> { -0.213660 0.835109 -0.506882 }
+    }
+    <Vertex> 4030 {
+      6.70784902573 -47.0221824646 11.24629879
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.968711 0.122344 -0.215941 }
+        <Binormal> { 0.134162 0.473295 0.869999 }
+      }
+      <Normal> { -0.177618 0.875668 -0.448988 }
+    }
+    <Vertex> 4031 {
+      3.98136568069 -46.9457435608 11.9657716751
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.963356 0.049047 -0.263705 }
+        <Binormal> { 0.236002 0.305571 0.918986 }
+      }
+      <Normal> { -0.202521 0.943632 -0.261757 }
+    }
+    <Vertex> 4032 {
+      4.32828092575 -46.0717697144 13.344707489
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.884596 0.446097 -0.135967 }
+        <Binormal> { 0.040873 0.216014 0.974640 }
+      }
+      <Normal> { -0.500259 0.849513 -0.167302 }
+    }
+    <Vertex> 4033 {
+      3.98136568069 -46.9457435608 11.9657716751
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.963356 0.049047 -0.263705 }
+        <Binormal> { 0.236002 0.305571 0.918986 }
+      }
+      <Normal> { -0.202521 0.943632 -0.261757 }
+    }
+    <Vertex> 4034 {
+      1.91012883186 -47.2664451599 12.5596075058
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.892101 0.411744 -0.186074 }
+        <Binormal> { 0.222305 -0.052993 0.948540 }
+      }
+      <Normal> { -0.576128 0.797357 0.179571 }
+    }
+    <Vertex> 4035 {
+      2.66007328033 -47.4769859314 13.5308437347
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.762049 0.641913 -0.085028 }
+        <Binormal> { 0.304836 -0.241311 0.910276 }
+      }
+      <Normal> { -0.672018 0.628437 0.391644 }
+    }
+    <Vertex> 4036 {
+      4.32828092575 -46.0717697144 13.344707489
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.884596 0.446097 -0.135967 }
+        <Binormal> { 0.040873 0.216014 0.974640 }
+      }
+      <Normal> { -0.500259 0.849513 -0.167302 }
+    }
+    <Vertex> 4037 {
+      2.66007328033 -47.4769859314 13.5308437347
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.762049 0.641913 -0.085028 }
+        <Binormal> { 0.304836 -0.241311 0.910276 }
+      }
+      <Normal> { -0.672018 0.628437 0.391644 }
+    }
+    <Vertex> 4038 {
+      3.52629995346 -47.7887382507 14.7645540237
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.648294 0.761371 -0.005418 }
+        <Binormal> { 0.286533 -0.237387 0.926130 }
+      }
+      <Normal> { -0.743584 0.555284 0.372387 }
+    }
+    <Vertex> 4039 {
+      4.9160399437 -45.6026344299 14.9251327515
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.675380 0.737453 0.005064 }
+        <Binormal> { 0.188106 -0.178865 0.960069 }
+      }
+      <Normal> { -0.638569 0.724265 0.260048 }
+    }
+    <Vertex> 4040 {
+      4.32828092575 -46.0717697144 13.344707489
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.884596 0.446097 -0.135967 }
+        <Binormal> { 0.040873 0.216014 0.974640 }
+      }
+      <Normal> { -0.500259 0.849513 -0.167302 }
+    }
+    <Vertex> 4041 {
+      4.9160399437 -45.6026344299 14.9251327515
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.675380 0.737453 0.005064 }
+        <Binormal> { 0.188106 -0.178865 0.960069 }
+      }
+      <Normal> { -0.638569 0.724265 0.260048 }
+    }
+    <Vertex> 4042 {
+      6.77663993835 -44.2396659851 14.7889242172
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.887674 0.446216 -0.113691 }
+        <Binormal> { 0.131709 -0.016802 0.962406 }
+      }
+      <Normal> { -0.217261 0.974975 0.046754 }
+    }
+    <Vertex> 4043 {
+      6.58253288269 -45.3662872314 12.9538946152
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.941555 0.294666 -0.163235 }
+        <Binormal> { -0.013042 0.512134 0.849259 }
+      }
+      <Normal> { -0.213660 0.835109 -0.506882 }
+    }
+    <Vertex> 4044 {
+      1.59251117706 -49.3215408325 13.540594101
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.401585 0.915776 0.009159 }
+        <Binormal> { 0.511380 -0.232523 0.827195 }
+      }
+      <Normal> { -0.755364 0.337291 0.561785 }
+    }
+    <Vertex> 4045 {
+      2.66007328033 -47.4769859314 13.5308437347
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.500912 0.865486 -0.004575 }
+        <Binormal> { 0.341837 -0.193105 0.896414 }
+      }
+      <Normal> { -0.672018 0.628437 0.391644 }
+    }
+    <Vertex> 4046 {
+      1.91012883186 -47.2664451599 12.5596075058
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.484748 0.873671 -0.041449 }
+        <Binormal> { 0.189935 -0.063167 0.889864 }
+      }
+      <Normal> { -0.576128 0.797357 0.179571 }
+    }
+    <Vertex> 4047 {
+      1.0044438839 -48.978313446 12.718580246
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.360155 0.932142 -0.037424 }
+        <Binormal> { 0.485343 -0.153019 0.859428 }
+      }
+      <Normal> { -0.777795 0.373211 0.505692 }
+    }
+    <Vertex> 4048 {
+      1.59251117706 -49.3215408325 13.540594101
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.401585 0.915776 0.009159 }
+        <Binormal> { 0.511380 -0.232523 0.827195 }
+      }
+      <Normal> { -0.755364 0.337291 0.561785 }
+    }
+    <Vertex> 4049 {
+      1.0044438839 -48.978313446 12.718580246
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.360155 0.932142 -0.037424 }
+        <Binormal> { 0.485343 -0.153019 0.859428 }
+      }
+      <Normal> { -0.777795 0.373211 0.505692 }
+    }
+    <Vertex> 4050 {
+      0.260279417038 -51.5365333557 12.731045723
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.258620 0.965936 0.009088 }
+        <Binormal> { 0.781903 -0.214666 0.565383 }
+      }
+      <Normal> { -0.508988 0.285104 0.812159 }
+    }
+    <Vertex> 4051 {
+      1.01708161831 -51.6919631958 13.4817581177
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.235834 0.971494 0.024113 }
+        <Binormal> { 0.472319 -0.136266 0.870591 }
+      }
+      <Normal> { -0.853633 0.175085 0.490524 }
+    }
+    <Vertex> 4052 {
+      1.59251117706 -49.3215408325 13.540594101
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.401585 0.915776 0.009159 }
+        <Binormal> { 0.511380 -0.232523 0.827195 }
+      }
+      <Normal> { -0.755364 0.337291 0.561785 }
+    }
+    <Vertex> 4053 {
+      1.01708161831 -51.6919631958 13.4817581177
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.235834 0.971494 0.024113 }
+        <Binormal> { 0.472319 -0.136266 0.870591 }
+      }
+      <Normal> { -0.853633 0.175085 0.490524 }
+    }
+    <Vertex> 4054 {
+      1.14493978024 -51.7748260498 14.5244092941
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.335836 0.941365 0.032342 }
+        <Binormal> { 0.087982 -0.065456 0.991618 }
+      }
+      <Normal> { -0.958464 0.266060 0.102603 }
+    }
+    <Vertex> 4055 {
+      2.16794085503 -49.6647644043 14.6195068359
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.512180 0.857323 0.051650 }
+        <Binormal> { 0.237368 -0.199086 0.950739 }
+      }
+      <Normal> { -0.829096 0.468459 0.305094 }
+    }
+    <Vertex> 4056 {
+      1.59251117706 -49.3215408325 13.540594101
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.401585 0.915776 0.009159 }
+        <Binormal> { 0.511380 -0.232523 0.827195 }
+      }
+      <Normal> { -0.755364 0.337291 0.561785 }
+    }
+    <Vertex> 4057 {
+      2.16794085503 -49.6647644043 14.6195068359
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.512180 0.857323 0.051650 }
+        <Binormal> { 0.237368 -0.199086 0.950739 }
+      }
+      <Normal> { -0.829096 0.468459 0.305094 }
+    }
+    <Vertex> 4058 {
+      3.52629995346 -47.7887382507 14.7645540237
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.545929 0.837278 0.030447 }
+        <Binormal> { 0.294885 -0.225937 0.925732 }
+      }
+      <Normal> { -0.743584 0.555284 0.372387 }
+    }
+    <Vertex> 4059 {
+      2.66007328033 -47.4769859314 13.5308437347
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.500912 0.865486 -0.004575 }
+        <Binormal> { 0.341837 -0.193105 0.896414 }
+      }
+      <Normal> { -0.672018 0.628437 0.391644 }
+    }
+    <Vertex> 4060 {
+      9.74948215485 -45.0970916748 15.7691421509
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.996334 0.051422 -0.068365 }
+        <Binormal> { 0.073624 -0.108525 0.991336 }
+      }
+      <Normal> { -0.041749 0.992828 0.111789 }
+    }
+    <Vertex> 4061 {
+      12.9565048218 -45.0920372009 15.1419229507
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.995951 0.081693 0.037516 }
+        <Binormal> { -0.059594 0.287811 0.955346 }
+      }
+      <Normal> { -0.037233 0.956175 -0.290384 }
+    }
+    <Vertex> 4062 {
+      12.7955036163 -45.8432769775 13.4040660858
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.999229 -0.016708 0.035536 }
+        <Binormal> { -0.029970 0.259492 0.964728 }
+      }
+      <Normal> { 0.057772 0.964507 -0.257637 }
+    }
+    <Vertex> 4063 {
+      9.54758071899 -44.8330535889 14.0436153412
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.958310 -0.270599 -0.091753 }
+        <Binormal> { 0.130711 0.133190 0.972408 }
+      }
+      <Normal> { 0.116947 0.981689 -0.150182 }
+    }
+    <Vertex> 4064 {
+      9.74948215485 -45.0970916748 15.7691421509
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.996334 0.051422 -0.068365 }
+        <Binormal> { 0.073624 -0.108525 0.991336 }
+      }
+      <Normal> { -0.041749 0.992828 0.111789 }
+    }
+    <Vertex> 4065 {
+      9.54758071899 -44.8330535889 14.0436153412
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.958310 -0.270599 -0.091753 }
+        <Binormal> { 0.130711 0.133190 0.972408 }
+      }
+      <Normal> { 0.116947 0.981689 -0.150182 }
+    }
+    <Vertex> 4066 {
+      6.77663993835 -44.2396659851 14.7889242172
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.987850 -0.105352 -0.114249 }
+        <Binormal> { 0.106464 -0.021364 0.940240 }
+      }
+      <Normal> { -0.217261 0.974975 0.046754 }
+    }
+    <Vertex> 4067 {
+      7.07451963425 -45.4356269836 16.452299118
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.994654 0.020223 -0.101268 }
+        <Binormal> { 0.095771 -0.442349 0.852326 }
+      }
+      <Normal> { -0.233100 0.852168 0.468459 }
+    }
+    <Vertex> 4068 {
+      9.74948215485 -45.0970916748 15.7691421509
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.996334 0.051422 -0.068365 }
+        <Binormal> { 0.073624 -0.108525 0.991336 }
+      }
+      <Normal> { -0.041749 0.992828 0.111789 }
+    }
+    <Vertex> 4069 {
+      7.07451963425 -45.4356269836 16.452299118
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.994654 0.020223 -0.101268 }
+        <Binormal> { 0.095771 -0.442349 0.852326 }
+      }
+      <Normal> { -0.233100 0.852168 0.468459 }
+    }
+    <Vertex> 4070 {
+      7.37030935287 -46.6802444458 18.2744445801
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.966028 0.252569 -0.054756 }
+        <Binormal> { 0.068593 -0.049727 0.980773 }
+      }
+      <Normal> { -0.414747 0.906827 0.074984 }
+    }
+    <Vertex> 4071 {
+      9.92436504364 -45.2900428772 17.769361496
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.919205 0.393425 -0.016728 }
+        <Binormal> { -0.027368 0.106129 0.992187 }
+      }
+      <Normal> { -0.337382 0.934996 -0.109317 }
+    }
+    <Vertex> 4072 {
+      9.74948215485 -45.0970916748 15.7691421509
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.996334 0.051422 -0.068365 }
+        <Binormal> { 0.073624 -0.108525 0.991336 }
+      }
+      <Normal> { -0.041749 0.992828 0.111789 }
+    }
+    <Vertex> 4073 {
+      9.92436504364 -45.2900428772 17.769361496
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.919205 0.393425 -0.016728 }
+        <Binormal> { -0.027368 0.106129 0.992187 }
+      }
+      <Normal> { -0.337382 0.934996 -0.109317 }
+    }
+    <Vertex> 4074 {
+      13.0025978088 -44.145488739 17.2435398102
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.988883 0.142706 0.041778 }
+        <Binormal> { -0.079422 0.269431 0.959577 }
+      }
+      <Normal> { -0.142521 0.949797 -0.278481 }
+    }
+    <Vertex> 4075 {
+      12.9565048218 -45.0920372009 15.1419229507
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.995951 0.081693 0.037516 }
+        <Binormal> { -0.059594 0.287811 0.955346 }
+      }
+      <Normal> { -0.037233 0.956175 -0.290384 }
+    }
+    <Vertex> 4076 {
+      16.359790802 -44.9299697876 15.1557321548
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.949994 -0.266312 0.163061 }
+        <Binormal> { -0.022770 0.461691 0.886699 }
+      }
+      <Normal> { 0.306986 0.847316 -0.433302 }
+    }
+    <Vertex> 4077 {
+      18.6675643921 -47.174282074 15.4197187424
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.740955 -0.642195 0.196396 }
+        <Binormal> { 0.271028 0.543395 0.754320 }
+      }
+      <Normal> { 0.775964 0.345500 -0.527696 }
+    }
+    <Vertex> 4078 {
+      18.5573348999 -47.6548233032 13.7965936661
+      <UV>  {
+        -0.042124 0.762705
+        <Tangent> { 0.767067 -0.615386 0.181404 }
+        <Binormal> { -0.037426 0.235280 0.956412 }
+      }
+      <Normal> { 0.760674 0.636586 -0.126835 }
+    }
+    <Vertex> 4079 {
+      16.0870494843 -45.7308197021 13.5851392746
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.955588 -0.239628 0.171555 }
+        <Binormal> { -0.147347 0.114642 0.980874 }
+      }
+      <Normal> { 0.202643 0.975646 -0.083590 }
+    }
+    <Vertex> 4080 {
+      16.359790802 -44.9299697876 15.1557321548
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.949994 -0.266312 0.163061 }
+        <Binormal> { -0.022770 0.461691 0.886699 }
+      }
+      <Normal> { 0.306986 0.847316 -0.433302 }
+    }
+    <Vertex> 4081 {
+      16.0870494843 -45.7308197021 13.5851392746
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.955588 -0.239628 0.171555 }
+        <Binormal> { -0.147347 0.114642 0.980874 }
+      }
+      <Normal> { 0.202643 0.975646 -0.083590 }
+    }
+    <Vertex> 4082 {
+      12.7955036163 -45.8432769775 13.4040660858
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.999229 -0.016708 0.035536 }
+        <Binormal> { -0.029970 0.259492 0.964728 }
+      }
+      <Normal> { 0.057772 0.964507 -0.257637 }
+    }
+    <Vertex> 4083 {
+      12.9565048218 -45.0920372009 15.1419229507
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.995951 0.081693 0.037516 }
+        <Binormal> { -0.059594 0.287811 0.955346 }
+      }
+      <Normal> { -0.037233 0.956175 -0.290384 }
+    }
+    <Vertex> 4084 {
+      16.359790802 -44.9299697876 15.1557321548
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.949994 -0.266312 0.163061 }
+        <Binormal> { -0.022770 0.461691 0.886699 }
+      }
+      <Normal> { 0.306986 0.847316 -0.433302 }
+    }
+    <Vertex> 4085 {
+      12.9565048218 -45.0920372009 15.1419229507
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.995951 0.081693 0.037516 }
+        <Binormal> { -0.059594 0.287811 0.955346 }
+      }
+      <Normal> { -0.037233 0.956175 -0.290384 }
+    }
+    <Vertex> 4086 {
+      13.0025978088 -44.145488739 17.2435398102
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.988883 0.142706 0.041778 }
+        <Binormal> { -0.079422 0.269431 0.959577 }
+      }
+      <Normal> { -0.142521 0.949797 -0.278481 }
+    }
+    <Vertex> 4087 {
+      16.3692874908 -44.0825653076 17.0995540619
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.957885 -0.252221 0.137260 }
+        <Binormal> { -0.045387 0.338986 0.939642 }
+      }
+      <Normal> { 0.292184 0.904019 -0.312021 }
+    }
+    <Vertex> 4088 {
+      16.359790802 -44.9299697876 15.1557321548
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.949994 -0.266312 0.163061 }
+        <Binormal> { -0.022770 0.461691 0.886699 }
+      }
+      <Normal> { 0.306986 0.847316 -0.433302 }
+    }
+    <Vertex> 4089 {
+      16.3692874908 -44.0825653076 17.0995540619
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.957885 -0.252221 0.137260 }
+        <Binormal> { -0.045387 0.338986 0.939642 }
+      }
+      <Normal> { 0.292184 0.904019 -0.312021 }
+    }
+    <Vertex> 4090 {
+      19.5960426331 -46.2401428223 17.3689231873
+      <UV>  {
+        -0.073782 0.891829
+        <Tangent> { 0.803446 -0.564299 0.189844 }
+        <Binormal> { 0.115567 0.446207 0.837229 }
+      }
+      <Normal> { 0.793512 0.484725 -0.367870 }
+    }
+    <Vertex> 4091 {
+      18.6675643921 -47.174282074 15.4197187424
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.740955 -0.642195 0.196396 }
+        <Binormal> { 0.271028 0.543395 0.754320 }
+      }
+      <Normal> { 0.775964 0.345500 -0.527696 }
+    }
+    <Vertex> 4092 {
+      5.26741075516 -46.5981178284 16.606300354
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.778967 0.626848 -0.016501 }
+        <Binormal> { 0.281632 -0.326225 0.902296 }
+      }
+      <Normal> { -0.553880 0.712607 0.430525 }
+    }
+    <Vertex> 4093 {
+      7.07451963425 -45.4356269836 16.452299118
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.838862 0.539630 -0.071488 }
+        <Binormal> { 0.313714 -0.376309 0.840640 }
+      }
+      <Normal> { -0.233100 0.852168 0.468459 }
+    }
+    <Vertex> 4094 {
+      6.77663993835 -44.2396659851 14.7889242172
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.821888 0.565924 -0.065032 }
+        <Binormal> { 0.089864 -0.024298 0.924274 }
+      }
+      <Normal> { -0.217261 0.974975 0.046754 }
+    }
+    <Vertex> 4095 {
+      4.9160399437 -45.6026344299 14.9251327515
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.675380 0.737453 0.005064 }
+        <Binormal> { 0.188106 -0.178865 0.960069 }
+      }
+      <Normal> { -0.638569 0.724265 0.260048 }
+    }
+    <Vertex> 4096 {
+      5.26741075516 -46.5981178284 16.606300354
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.778967 0.626848 -0.016501 }
+        <Binormal> { 0.281632 -0.326225 0.902296 }
+      }
+      <Normal> { -0.553880 0.712607 0.430525 }
+    }
+    <Vertex> 4097 {
+      4.9160399437 -45.6026344299 14.9251327515
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.675380 0.737453 0.005064 }
+        <Binormal> { 0.188106 -0.178865 0.960069 }
+      }
+      <Normal> { -0.638569 0.724265 0.260048 }
+    }
+    <Vertex> 4098 {
+      3.52629995346 -47.7887382507 14.7645540237
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.595755 0.800916 0.060088 }
+        <Binormal> { 0.264884 -0.266532 0.926361 }
+      }
+      <Normal> { -0.743584 0.555284 0.372387 }
+    }
+    <Vertex> 4099 {
+      3.85390496254 -48.1806182861 16.4841423035
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.665061 0.744574 0.057476 }
+        <Binormal> { 0.116268 -0.179201 0.976113 }
+      }
+      <Normal> { -0.711234 0.671438 0.207984 }
+    }
+    <Vertex> 4100 {
+      5.26741075516 -46.5981178284 16.606300354
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.778967 0.626848 -0.016501 }
+        <Binormal> { 0.281632 -0.326225 0.902296 }
+      }
+      <Normal> { -0.553880 0.712607 0.430525 }
+    }
+    <Vertex> 4101 {
+      3.85390496254 -48.1806182861 16.4841423035
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.665061 0.744574 0.057476 }
+        <Binormal> { 0.116268 -0.179201 0.976113 }
+      }
+      <Normal> { -0.711234 0.671438 0.207984 }
+    }
+    <Vertex> 4102 {
+      4.23078632355 -47.966583252 18.5069332123
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.800000 0.599943 -0.008282 }
+        <Binormal> { -0.061620 0.095867 0.992369 }
+      }
+      <Normal> { -0.558916 0.821314 -0.114048 }
+    }
+    <Vertex> 4103 {
+      5.57615709305 -47.4801216125 18.356212616
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.923177 0.378248 -0.068363 }
+        <Binormal> { 0.064659 0.022009 0.994928 }
+      }
+      <Normal> { -0.445998 0.894986 0.009186 }
+    }
+    <Vertex> 4104 {
+      5.26741075516 -46.5981178284 16.606300354
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.778967 0.626848 -0.016501 }
+        <Binormal> { 0.281632 -0.326225 0.902296 }
+      }
+      <Normal> { -0.553880 0.712607 0.430525 }
+    }
+    <Vertex> 4105 {
+      5.57615709305 -47.4801216125 18.356212616
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.923177 0.378248 -0.068363 }
+        <Binormal> { 0.064659 0.022009 0.994928 }
+      }
+      <Normal> { -0.445998 0.894986 0.009186 }
+    }
+    <Vertex> 4106 {
+      7.37030935287 -46.6802444458 18.2744445801
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.876649 0.477696 -0.057393 }
+        <Binormal> { 0.087865 -0.041931 0.993091 }
+      }
+      <Normal> { -0.414747 0.906827 0.074984 }
+    }
+    <Vertex> 4107 {
+      7.07451963425 -45.4356269836 16.452299118
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.838862 0.539630 -0.071488 }
+        <Binormal> { 0.313714 -0.376309 0.840640 }
+      }
+      <Normal> { -0.233100 0.852168 0.468459 }
+    }
+    <Vertex> 4108 {
+      2.35975050926 -49.7791748047 16.3388271332
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.582755 0.812520 0.014420 }
+        <Binormal> { 0.036382 -0.043808 0.998133 }
+      }
+      <Normal> { -0.799493 0.598071 0.055391 }
+    }
+    <Vertex> 4109 {
+      3.85390496254 -48.1806182861 16.4841423035
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.681347 0.728955 0.066265 }
+        <Binormal> { 0.107118 -0.188839 0.975939 }
+      }
+      <Normal> { -0.711234 0.671438 0.207984 }
+    }
+    <Vertex> 4110 {
+      3.52629995346 -47.7887382507 14.7645540237
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.633206 0.771294 0.064455 }
+        <Binormal> { 0.251429 -0.283726 0.925131 }
+      }
+      <Normal> { -0.743584 0.555284 0.372387 }
+    }
+    <Vertex> 4111 {
+      2.16794085503 -49.6647644043 14.6195068359
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.512180 0.857323 0.051650 }
+        <Binormal> { 0.237368 -0.199086 0.950739 }
+      }
+      <Normal> { -0.829096 0.468459 0.305094 }
+    }
+    <Vertex> 4112 {
+      2.35975050926 -49.7791748047 16.3388271332
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.582755 0.812520 0.014420 }
+        <Binormal> { 0.036382 -0.043808 0.998133 }
+      }
+      <Normal> { -0.799493 0.598071 0.055391 }
+    }
+    <Vertex> 4113 {
+      2.16794085503 -49.6647644043 14.6195068359
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.512180 0.857323 0.051650 }
+        <Binormal> { 0.237368 -0.199086 0.950739 }
+      }
+      <Normal> { -0.829096 0.468459 0.305094 }
+    }
+    <Vertex> 4114 {
+      1.14493978024 -51.7748260498 14.5244092941
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.321376 0.946890 0.010821 }
+        <Binormal> { 0.094275 -0.043346 0.993066 }
+      }
+      <Normal> { -0.958464 0.266060 0.102603 }
+    }
+    <Vertex> 4115 {
+      1.14489448071 -51.794593811 16.2526168823
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { 0.346409 0.938064 0.006009 }
+        <Binormal> { -0.024597 0.002681 0.999418 }
+      }
+      <Normal> { -0.929624 0.367687 -0.023865 }
+    }
+    <Vertex> 4116 {
+      2.35975050926 -49.7791748047 16.3388271332
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.582755 0.812520 0.014420 }
+        <Binormal> { 0.036382 -0.043808 0.998133 }
+      }
+      <Normal> { -0.799493 0.598071 0.055391 }
+    }
+    <Vertex> 4117 {
+      1.14489448071 -51.794593811 16.2526168823
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { 0.346409 0.938064 0.006009 }
+        <Binormal> { -0.024597 0.002681 0.999418 }
+      }
+      <Normal> { -0.929624 0.367687 -0.023865 }
+    }
+    <Vertex> 4118 {
+      1.32257354259 -51.0387268066 19.057466507
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.372189 0.928118 -0.008529 }
+        <Binormal> { -0.053408 0.030531 0.991739 }
+      }
+      <Normal> { -0.878842 0.473067 -0.061892 }
+    }
+    <Vertex> 4119 {
+      2.75535011292 -49.244228363 18.3163547516
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.681717 0.720144 -0.129051 }
+        <Binormal> { 0.013669 0.163819 0.986366 }
+      }
+      <Normal> { -0.732566 0.673025 -0.101627 }
+    }
+    <Vertex> 4120 {
+      2.35975050926 -49.7791748047 16.3388271332
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.582755 0.812520 0.014420 }
+        <Binormal> { 0.036382 -0.043808 0.998133 }
+      }
+      <Normal> { -0.799493 0.598071 0.055391 }
+    }
+    <Vertex> 4121 {
+      2.75535011292 -49.244228363 18.3163547516
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.681717 0.720144 -0.129051 }
+        <Binormal> { 0.013669 0.163819 0.986366 }
+      }
+      <Normal> { -0.732566 0.673025 -0.101627 }
+    }
+    <Vertex> 4122 {
+      4.23078632355 -47.966583252 18.5069332123
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.715952 0.693437 0.080982 }
+        <Binormal> { -0.145597 0.036390 0.975595 }
+      }
+      <Normal> { -0.558916 0.821314 -0.114048 }
+    }
+    <Vertex> 4123 {
+      3.85390496254 -48.1806182861 16.4841423035
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.681347 0.728955 0.066265 }
+        <Binormal> { 0.107118 -0.188839 0.975939 }
+      }
+      <Normal> { -0.711234 0.671438 0.207984 }
+    }
+    <Vertex> 4124 {
+      -7.09057235718 -49.8655738831 16.8018665314
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.051210 -0.793418 -0.606519 }
+        <Binormal> { -0.790829 -0.402996 0.460408 }
+      }
+      <Normal> { 0.609149 -0.447218 0.654866 }
+    }
+    <Vertex> 4125 {
+      -6.29688167572 -49.0263748169 16.3792533875
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.096158 -0.809266 -0.579519 }
+        <Binormal> { -0.500182 -0.542439 0.674491 }
+      }
+      <Normal> { 0.857906 -0.205725 0.470748 }
+    }
+    <Vertex> 4126 {
+      -6.90795135498 -46.8801879883 18.4110374451
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.037317 -0.879570 -0.474303 }
+        <Binormal> { -0.253950 -0.392919 0.748627 }
+      }
+      <Normal> { 0.862362 0.264779 0.431501 }
+    }
+    <Vertex> 4127 {
+      -7.63492012024 -49.1231956482 18.0081825256
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.088119 -0.713051 -0.695552 }
+        <Binormal> { -0.758253 -0.500820 0.417357 }
+      }
+      <Normal> { 0.645528 -0.487259 0.588092 }
+    }
+    <Vertex> 4128 {
+      -7.09057235718 -49.8655738831 16.8018665314
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.051210 -0.793418 -0.606519 }
+        <Binormal> { -0.790829 -0.402996 0.460408 }
+      }
+      <Normal> { 0.609149 -0.447218 0.654866 }
+    }
+    <Vertex> 4129 {
+      -7.63492012024 -49.1231956482 18.0081825256
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.088119 -0.713051 -0.695552 }
+        <Binormal> { -0.758253 -0.500820 0.417357 }
+      }
+      <Normal> { 0.645528 -0.487259 0.588092 }
+    }
+    <Vertex> 4130 {
+      -9.07141685486 -51.348236084 16.9455776215
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.801054 0.572461 0.174932 }
+        <Binormal> { 0.553985 0.627851 0.482199 }
+      }
+      <Normal> { 0.040132 -0.630634 0.775018 }
+    }
+    <Vertex> 4131 {
+      -7.58169221878 -51.9853782654 15.703122139
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.013243 -0.835902 -0.548719 }
+        <Binormal> { -0.915261 -0.209134 0.340677 }
+      }
+      <Normal> { 0.400189 -0.465041 0.789666 }
+    }
+    <Vertex> 4132 {
+      -7.09057235718 -49.8655738831 16.8018665314
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.051210 -0.793418 -0.606519 }
+        <Binormal> { -0.790829 -0.402996 0.460408 }
+      }
+      <Normal> { 0.609149 -0.447218 0.654866 }
+    }
+    <Vertex> 4133 {
+      -7.58169221878 -51.9853782654 15.703122139
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.013243 -0.835902 -0.548719 }
+        <Binormal> { -0.915261 -0.209134 0.340677 }
+      }
+      <Normal> { 0.400189 -0.465041 0.789666 }
+    }
+    <Vertex> 4134 {
+      -6.33217811584 -51.7258758545 14.9410142899
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.021922 -0.856120 -0.516313 }
+        <Binormal> { -0.677874 -0.361415 0.628058 }
+      }
+      <Normal> { 0.727012 -0.257668 0.636402 }
+    }
+    <Vertex> 4135 {
+      -6.29688167572 -49.0263748169 16.3792533875
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.096158 -0.809266 -0.579519 }
+        <Binormal> { -0.500182 -0.542439 0.674491 }
+      }
+      <Normal> { 0.857906 -0.205725 0.470748 }
+    }
+    <Vertex> 4136 {
+      -8.05418109894 -48.5377464294 19.2726955414
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { -0.432485 -0.844124 -0.316879 }
+        <Binormal> { -0.738438 0.129964 0.661632 }
+      }
+      <Normal> { 0.519669 -0.515549 0.681265 }
+    }
+    <Vertex> 4137 {
+      -7.63492012024 -49.1231956482 18.0081825256
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.417975 -0.863214 -0.283123 }
+        <Binormal> { -0.645603 0.063044 0.760890 }
+      }
+      <Normal> { 0.645528 -0.487259 0.588092 }
+    }
+    <Vertex> 4138 {
+      -6.90795135498 -46.8801879883 18.4110374451
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.037317 -0.879570 -0.474303 }
+        <Binormal> { -0.253950 -0.392919 0.748627 }
+      }
+      <Normal> { 0.862362 0.264779 0.431501 }
+    }
+    <Vertex> 4139 {
+      -7.9141664505 -47.1285362244 20.036907196
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.263554 -0.911724 -0.315118 }
+        <Binormal> { -0.824797 0.099570 0.401750 }
+      }
+      <Normal> { 0.436415 -0.014649 0.899594 }
+    }
+    <Vertex> 4140 {
+      -8.05418109894 -48.5377464294 19.2726955414
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { -0.432485 -0.844124 -0.316879 }
+        <Binormal> { -0.738438 0.129964 0.661632 }
+      }
+      <Normal> { 0.519669 -0.515549 0.681265 }
+    }
+    <Vertex> 4141 {
+      -7.9141664505 -47.1285362244 20.036907196
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.263554 -0.911724 -0.315118 }
+        <Binormal> { -0.824797 0.099570 0.401750 }
+      }
+      <Normal> { 0.436415 -0.014649 0.899594 }
+    }
+    <Vertex> 4142 {
+      -8.76839542389 -47.7669754028 19.7674293518
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.210935 -0.943470 -0.255679 }
+        <Binormal> { -0.962356 -0.154831 -0.222609 }
+      }
+      <Normal> { -0.173986 -0.277139 0.944914 }
+    }
+    <Vertex> 4143 {
+      -9.01421642303 -49.1529159546 19.1710567474
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.602048 -0.722100 -0.340749 }
+        <Binormal> { -0.786775 0.520507 0.287069 }
+      }
+      <Normal> { -0.070101 -0.560900 0.824885 }
+    }
+    <Vertex> 4144 {
+      -8.05418109894 -48.5377464294 19.2726955414
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { -0.432485 -0.844124 -0.316879 }
+        <Binormal> { -0.738438 0.129964 0.661632 }
+      }
+      <Normal> { 0.519669 -0.515549 0.681265 }
+    }
+    <Vertex> 4145 {
+      -9.01421642303 -49.1529159546 19.1710567474
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.602048 -0.722100 -0.340749 }
+        <Binormal> { -0.786775 0.520507 0.287069 }
+      }
+      <Normal> { -0.070101 -0.560900 0.824885 }
+    }
+    <Vertex> 4146 {
+      -9.07141685486 -51.348236084 16.9455776215
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.514509 -0.751880 -0.412259 }
+        <Binormal> { -0.842705 0.382209 0.354641 }
+      }
+      <Normal> { 0.040132 -0.630634 0.775018 }
+    }
+    <Vertex> 4147 {
+      -7.63492012024 -49.1231956482 18.0081825256
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.417975 -0.863214 -0.283123 }
+        <Binormal> { -0.645603 0.063044 0.760890 }
+      }
+      <Normal> { 0.645528 -0.487259 0.588092 }
+    }
+    <Vertex> 4148 {
+      -8.522772789 -46.4418373108 19.840681076
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.983604 -0.119275 0.135267 }
+        <Binormal> { -0.178941 -0.737646 0.650750 }
+      }
+      <Normal> { -0.003632 0.662038 0.749443 }
+    }
+    <Vertex> 4149 {
+      -8.49569225311 -45.9391441345 18.4015712738
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.978111 -0.189830 0.085221 }
+        <Binormal> { -0.141891 -0.308978 0.940277 }
+      }
+      <Normal> { 0.137364 0.934660 0.327860 }
+    }
+    <Vertex> 4150 {
+      -10.1679496765 -46.2474937439 18.1269989014
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.619775 0.123273 0.775037 }
+        <Binormal> { -0.483639 -0.711545 0.499927 }
+      }
+      <Normal> { -0.551714 0.696890 0.458144 }
+    }
+    <Vertex> 4151 {
+      -9.48280715942 -47.0570068359 19.7390441895
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.916403 0.277942 0.288018 }
+        <Binormal> { 0.177681 -0.915140 0.317790 }
+      }
+      <Normal> { -0.510453 0.191961 0.838191 }
+    }
+    <Vertex> 4152 {
+      -8.522772789 -46.4418373108 19.840681076
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.983604 -0.119275 0.135267 }
+        <Binormal> { -0.178941 -0.737646 0.650750 }
+      }
+      <Normal> { -0.003632 0.662038 0.749443 }
+    }
+    <Vertex> 4153 {
+      -9.48280715942 -47.0570068359 19.7390441895
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.916403 0.277942 0.288018 }
+        <Binormal> { 0.177681 -0.915140 0.317790 }
+      }
+      <Normal> { -0.510453 0.191961 0.838191 }
+    }
+    <Vertex> 4154 {
+      -8.76839542389 -47.7669754028 19.7674293518
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.210935 -0.943470 -0.255679 }
+        <Binormal> { -0.962356 -0.154831 -0.222609 }
+      }
+      <Normal> { -0.173986 -0.277139 0.944914 }
+    }
+    <Vertex> 4155 {
+      -7.9141664505 -47.1285362244 20.036907196
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.862210 -0.505776 -0.028005 }
+        <Binormal> { -0.455403 -0.787861 0.208097 }
+      }
+      <Normal> { 0.436415 -0.014649 0.899594 }
+    }
+    <Vertex> 4156 {
+      -8.522772789 -46.4418373108 19.840681076
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.983604 -0.119275 0.135267 }
+        <Binormal> { -0.178941 -0.737646 0.650750 }
+      }
+      <Normal> { -0.003632 0.662038 0.749443 }
+    }
+    <Vertex> 4157 {
+      -7.9141664505 -47.1285362244 20.036907196
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.862210 -0.505776 -0.028005 }
+        <Binormal> { -0.455403 -0.787861 0.208097 }
+      }
+      <Normal> { 0.436415 -0.014649 0.899594 }
+    }
+    <Vertex> 4158 {
+      -6.90795135498 -46.8801879883 18.4110374451
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.843111 -0.518403 -0.142905 }
+        <Binormal> { -0.185853 -0.487039 0.670289 }
+      }
+      <Normal> { 0.862362 0.264779 0.431501 }
+    }
+    <Vertex> 4159 {
+      -8.49569225311 -45.9391441345 18.4015712738
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.978111 -0.189830 0.085221 }
+        <Binormal> { -0.141891 -0.308978 0.940277 }
+      }
+      <Normal> { 0.137364 0.934660 0.327860 }
+    }
+    <Vertex> 4160 {
+      -10.1522350311 -48.4714546204 18.767780304
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.255744 0.774673 0.578340 }
+        <Binormal> { 0.702565 -0.558975 0.438057 }
+      }
+      <Normal> { -0.651143 -0.259499 0.713187 }
+    }
+    <Vertex> 4161 {
+      -9.48280715942 -47.0570068359 19.7390441895
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.363468 0.767979 0.527351 }
+        <Binormal> { 0.542482 -0.573843 0.461789 }
+      }
+      <Normal> { -0.510453 0.191961 0.838191 }
+    }
+    <Vertex> 4162 {
+      -10.1679496765 -46.2474937439 18.1269989014
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.619775 0.123273 0.775037 }
+        <Binormal> { -0.483639 -0.711545 0.499927 }
+      }
+      <Normal> { -0.551714 0.696890 0.458144 }
+    }
+    <Vertex> 4163 {
+      -11.1838226318 -47.3864440918 17.7142772675
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.394146 0.826762 0.401391 }
+        <Binormal> { 0.358520 -0.540271 0.760771 }
+      }
+      <Normal> { -0.856777 0.133000 0.498215 }
+    }
+    <Vertex> 4164 {
+      -10.1522350311 -48.4714546204 18.767780304
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.255744 0.774673 0.578340 }
+        <Binormal> { 0.702565 -0.558975 0.438057 }
+      }
+      <Normal> { -0.651143 -0.259499 0.713187 }
+    }
+    <Vertex> 4165 {
+      -11.1838226318 -47.3864440918 17.7142772675
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.394146 0.826762 0.401391 }
+        <Binormal> { 0.358520 -0.540271 0.760771 }
+      }
+      <Normal> { -0.856777 0.133000 0.498215 }
+    }
+    <Vertex> 4166 {
+      -11.3445453644 -48.7155265808 16.9287757874
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.196287 0.769703 0.607477 }
+        <Binormal> { 0.447112 -0.621566 0.643084 }
+      }
+      <Normal> { -0.875118 -0.155370 0.458266 }
+    }
+    <Vertex> 4167 {
+      -10.74451828 -50.0951499939 17.2228431702
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.255494 0.700414 0.666440 }
+        <Binormal> { 0.708196 -0.604150 0.363447 }
+      }
+      <Normal> { -0.666463 -0.404523 0.626209 }
+    }
+    <Vertex> 4168 {
+      -10.1522350311 -48.4714546204 18.767780304
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.255744 0.774673 0.578340 }
+        <Binormal> { 0.702565 -0.558975 0.438057 }
+      }
+      <Normal> { -0.651143 -0.259499 0.713187 }
+    }
+    <Vertex> 4169 {
+      -10.74451828 -50.0951499939 17.2228431702
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.255494 0.700414 0.666440 }
+        <Binormal> { 0.708196 -0.604150 0.363447 }
+      }
+      <Normal> { -0.666463 -0.404523 0.626209 }
+    }
+    <Vertex> 4170 {
+      -9.07141685486 -51.348236084 16.9455776215
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.801054 0.572461 0.174932 }
+        <Binormal> { 0.553985 0.627851 0.482199 }
+      }
+      <Normal> { 0.040132 -0.630634 0.775018 }
+    }
+    <Vertex> 4171 {
+      -9.01421642303 -49.1529159546 19.1710567474
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.066314 0.783736 0.617544 }
+        <Binormal> { 0.992872 -0.097992 0.017745 }
+      }
+      <Normal> { -0.070101 -0.560900 0.824885 }
+    }
+    <Vertex> 4172 {
+      -10.1522350311 -48.4714546204 18.767780304
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.255744 0.774673 0.578340 }
+        <Binormal> { 0.702565 -0.558975 0.438057 }
+      }
+      <Normal> { -0.651143 -0.259499 0.713187 }
+    }
+    <Vertex> 4173 {
+      -9.01421642303 -49.1529159546 19.1710567474
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.066314 0.783736 0.617544 }
+        <Binormal> { 0.992872 -0.097992 0.017745 }
+      }
+      <Normal> { -0.070101 -0.560900 0.824885 }
+    }
+    <Vertex> 4174 {
+      -8.76839542389 -47.7669754028 19.7674293518
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.274251 0.839127 0.469737 }
+        <Binormal> { 0.923085 -0.340871 0.069991 }
+      }
+      <Normal> { -0.173986 -0.277139 0.944914 }
+    }
+    <Vertex> 4175 {
+      -9.48280715942 -47.0570068359 19.7390441895
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.363468 0.767979 0.527351 }
+        <Binormal> { 0.542482 -0.573843 0.461789 }
+      }
+      <Normal> { -0.510453 0.191961 0.838191 }
+    }
+    <Vertex> 4176 {
+      -11.4731216431 -51.3380584717 15.4001989365
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.342650 0.936689 0.072151 }
+        <Binormal> { 0.681340 0.194923 0.705177 }
+      }
+      <Normal> { -0.654073 -0.269997 0.706595 }
+    }
+    <Vertex> 4177 {
+      -11.9593639374 -48.778465271 15.6101093292
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.186028 0.979257 0.080308 }
+        <Binormal> { 0.515037 0.028393 0.846826 }
+      }
+      <Normal> { -0.851070 -0.072085 0.520035 }
+    }
+    <Vertex> 4178 {
+      -13.0788087845 -48.8977127075 14.0308132172
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.946011 0.286996 0.150657 }
+        <Binormal> { 0.249684 0.758138 0.123601 }
+      }
+      <Normal> { -0.478957 0.014649 0.877682 }
+    }
+    <Vertex> 4179 {
+      -12.9572477341 -52.1151008606 14.0029659271
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.094641 0.994987 0.032310 }
+        <Binormal> { 0.928959 0.076644 0.360821 }
+      }
+      <Normal> { -0.353648 -0.094516 0.930570 }
+    }
+    <Vertex> 4180 {
+      -11.4731216431 -51.3380584717 15.4001989365
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.342650 0.936689 0.072151 }
+        <Binormal> { 0.681340 0.194923 0.705177 }
+      }
+      <Normal> { -0.654073 -0.269997 0.706595 }
+    }
+    <Vertex> 4181 {
+      -12.9572477341 -52.1151008606 14.0029659271
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.094641 0.994987 0.032310 }
+        <Binormal> { 0.928959 0.076644 0.360821 }
+      }
+      <Normal> { -0.353648 -0.094516 0.930570 }
+    }
+    <Vertex> 4182 {
+      -12.3883171082 -56.1570320129 13.7950839996
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.650465 0.755996 0.073247 }
+        <Binormal> { 0.751832 0.629969 0.174567 }
+      }
+      <Normal> { -0.141606 -0.103793 0.984436 }
+    }
+    <Vertex> 4183 {
+      -10.2756023407 -53.548866272 15.100522995
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.705344 0.695502 0.136995 }
+        <Binormal> { 0.670028 0.591110 0.448791 }
+      }
+      <Normal> { -0.241157 -0.398480 0.884884 }
+    }
+    <Vertex> 4184 {
+      -11.4731216431 -51.3380584717 15.4001989365
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.342650 0.936689 0.072151 }
+        <Binormal> { 0.681340 0.194923 0.705177 }
+      }
+      <Normal> { -0.654073 -0.269997 0.706595 }
+    }
+    <Vertex> 4185 {
+      -10.2756023407 -53.548866272 15.100522995
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.705344 0.695502 0.136995 }
+        <Binormal> { 0.670028 0.591110 0.448791 }
+      }
+      <Normal> { -0.241157 -0.398480 0.884884 }
+    }
+    <Vertex> 4186 {
+      -9.07141685486 -51.348236084 16.9455776215
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.801054 0.572461 0.174932 }
+        <Binormal> { 0.553985 0.627851 0.482199 }
+      }
+      <Normal> { 0.040132 -0.630634 0.775018 }
+    }
+    <Vertex> 4187 {
+      -10.74451828 -50.0951499939 17.2228431702
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.653518 0.756896 -0.004830 }
+        <Binormal> { 0.472021 0.412458 0.768806 }
+      }
+      <Normal> { -0.666463 -0.404523 0.626209 }
+    }
+    <Vertex> 4188 {
+      -11.4731216431 -51.3380584717 15.4001989365
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.342650 0.936689 0.072151 }
+        <Binormal> { 0.681340 0.194923 0.705177 }
+      }
+      <Normal> { -0.654073 -0.269997 0.706595 }
+    }
+    <Vertex> 4189 {
+      -10.74451828 -50.0951499939 17.2228431702
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.653518 0.756896 -0.004830 }
+        <Binormal> { 0.472021 0.412458 0.768806 }
+      }
+      <Normal> { -0.666463 -0.404523 0.626209 }
+    }
+    <Vertex> 4190 {
+      -11.3445453644 -48.7155265808 16.9287757874
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.029605 0.704959 0.708630 }
+        <Binormal> { 0.433158 -0.633702 0.612323 }
+      }
+      <Normal> { -0.875118 -0.155370 0.458266 }
+    }
+    <Vertex> 4191 {
+      -11.9593639374 -48.778465271 15.6101093292
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.186028 0.979257 0.080308 }
+        <Binormal> { 0.515037 0.028393 0.846826 }
+      }
+      <Normal> { -0.851070 -0.072085 0.520035 }
+    }
+    <Vertex> 4192 {
+      -8.2765750885 -54.4900016785 14.7793512344
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.935773 0.299487 0.186109 }
+        <Binormal> { 0.341875 0.898588 0.272970 }
+      }
+      <Normal> { 0.116306 -0.328929 0.937132 }
+    }
+    <Vertex> 4193 {
+      -9.37350463867 -57.4066810608 14.1212005615
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.951553 0.302014 -0.057742 }
+        <Binormal> { 0.291497 0.944537 0.136624 }
+      }
+      <Normal> { -0.034394 -0.132664 0.990539 }
+    }
+    <Vertex> 4194 {
+      -7.17759752274 -57.8108673096 14.1112775803
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.791409 -0.611264 -0.005297 }
+        <Binormal> { -0.562359 0.724888 0.369730 }
+      }
+      <Normal> { 0.338389 -0.205817 0.918210 }
+    }
+    <Vertex> 4195 {
+      -6.47673654556 -54.7197265625 14.3222208023
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.961895 0.122773 0.244306 }
+        <Binormal> { 0.150314 0.926189 0.126381 }
+      }
+      <Normal> { 0.520249 -0.197790 0.830744 }
+    }
+    <Vertex> 4196 {
+      -8.2765750885 -54.4900016785 14.7793512344
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.935773 0.299487 0.186109 }
+        <Binormal> { 0.341875 0.898588 0.272970 }
+      }
+      <Normal> { 0.116306 -0.328929 0.937132 }
+    }
+    <Vertex> 4197 {
+      -6.47673654556 -54.7197265625 14.3222208023
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.961895 0.122773 0.244306 }
+        <Binormal> { 0.150314 0.926189 0.126381 }
+      }
+      <Normal> { 0.520249 -0.197790 0.830744 }
+    }
+    <Vertex> 4198 {
+      -6.33217811584 -51.7258758545 14.9410142899
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.467095 -0.860673 -0.202642 }
+        <Binormal> { -0.599949 0.149938 0.746075 }
+      }
+      <Normal> { 0.727012 -0.257668 0.636402 }
+    }
+    <Vertex> 4199 {
+      -7.58169221878 -51.9853782654 15.703122139
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.802048 0.110573 0.586935 }
+        <Binormal> { 0.360265 0.868235 0.328735 }
+      }
+      <Normal> { 0.400189 -0.465041 0.789666 }
+    }
+    <Vertex> 4200 {
+      -8.2765750885 -54.4900016785 14.7793512344
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.935773 0.299487 0.186109 }
+        <Binormal> { 0.341875 0.898588 0.272970 }
+      }
+      <Normal> { 0.116306 -0.328929 0.937132 }
+    }
+    <Vertex> 4201 {
+      -7.58169221878 -51.9853782654 15.703122139
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.802048 0.110573 0.586935 }
+        <Binormal> { 0.360265 0.868235 0.328735 }
+      }
+      <Normal> { 0.400189 -0.465041 0.789666 }
+    }
+    <Vertex> 4202 {
+      -9.07141685486 -51.348236084 16.9455776215
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.801054 0.572461 0.174932 }
+        <Binormal> { 0.553985 0.627851 0.482199 }
+      }
+      <Normal> { 0.040132 -0.630634 0.775018 }
+    }
+    <Vertex> 4203 {
+      -10.2756023407 -53.548866272 15.100522995
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.705344 0.695502 0.136995 }
+        <Binormal> { 0.670028 0.591110 0.448791 }
+      }
+      <Normal> { -0.241157 -0.398480 0.884884 }
+    }
+    <Vertex> 4204 {
+      -8.2765750885 -54.4900016785 14.7793512344
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.935773 0.299487 0.186109 }
+        <Binormal> { 0.341875 0.898588 0.272970 }
+      }
+      <Normal> { 0.116306 -0.328929 0.937132 }
+    }
+    <Vertex> 4205 {
+      -10.2756023407 -53.548866272 15.100522995
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.705344 0.695502 0.136995 }
+        <Binormal> { 0.670028 0.591110 0.448791 }
+      }
+      <Normal> { -0.241157 -0.398480 0.884884 }
+    }
+    <Vertex> 4206 {
+      -12.3883171082 -56.1570320129 13.7950839996
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.650465 0.755996 0.073247 }
+        <Binormal> { 0.751832 0.629969 0.174567 }
+      }
+      <Normal> { -0.141606 -0.103793 0.984436 }
+    }
+    <Vertex> 4207 {
+      -9.37350463867 -57.4066810608 14.1212005615
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.951553 0.302014 -0.057742 }
+        <Binormal> { 0.291497 0.944537 0.136624 }
+      }
+      <Normal> { -0.034394 -0.132664 0.990539 }
+    }
+    <Vertex> 4208 {
+      0.569283604622 -54.6276931763 16.3077697754
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.052646 0.998585 0.007543 }
+        <Binormal> { -0.081382 -0.003236 0.996437 }
+      }
+      <Normal> { -0.993927 0.074404 -0.080935 }
+    }
+    <Vertex> 4209 {
+      0.761274933815 -54.6630172729 14.5136833191
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.050717 0.998301 0.028672 }
+        <Binormal> { 0.071351 -0.032252 0.996734 }
+      }
+      <Normal> { -0.995025 0.067019 0.073397 }
+    }
+    <Vertex> 4210 {
+      0.800136804581 -58.5618629456 14.3294782639
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.118072 0.990996 0.063128 }
+        <Binormal> { 0.547354 0.012032 0.834860 }
+      }
+      <Normal> { -0.833308 -0.076693 0.547441 }
+    }
+    <Vertex> 4211 {
+      1.02450740337 -57.987613678 16.3203239441
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.317856 0.947742 0.027449 }
+        <Binormal> { -0.061378 -0.049405 0.995070 }
+      }
+      <Normal> { -0.963378 -0.258095 -0.072237 }
+    }
+    <Vertex> 4212 {
+      0.569283604622 -54.6276931763 16.3077697754
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.052646 0.998585 0.007543 }
+        <Binormal> { -0.081382 -0.003236 0.996437 }
+      }
+      <Normal> { -0.993927 0.074404 -0.080935 }
+    }
+    <Vertex> 4213 {
+      1.02450740337 -57.987613678 16.3203239441
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.317856 0.947742 0.027449 }
+        <Binormal> { -0.061378 -0.049405 0.995070 }
+      }
+      <Normal> { -0.963378 -0.258095 -0.072237 }
+    }
+    <Vertex> 4214 {
+      0.142042249441 -57.5461273193 18.6940250397
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.295726 0.953767 0.053610 }
+        <Binormal> { -0.535467 -0.208157 0.749538 }
+      }
+      <Normal> { -0.823267 0.120609 -0.554643 }
+    }
+    <Vertex> 4215 {
+      0.33462780714 -54.513381958 18.5160083771
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.178231 0.982458 0.054871 }
+        <Binormal> { -0.147793 -0.028384 0.988271 }
+      }
+      <Normal> { -0.977050 0.159124 -0.141545 }
+    }
+    <Vertex> 4216 {
+      0.569283604622 -54.6276931763 16.3077697754
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.052646 0.998585 0.007543 }
+        <Binormal> { -0.081382 -0.003236 0.996437 }
+      }
+      <Normal> { -0.993927 0.074404 -0.080935 }
+    }
+    <Vertex> 4217 {
+      0.33462780714 -54.513381958 18.5160083771
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.178231 0.982458 0.054871 }
+        <Binormal> { -0.147793 -0.028384 0.988271 }
+      }
+      <Normal> { -0.977050 0.159124 -0.141545 }
+    }
+    <Vertex> 4218 {
+      1.32257354259 -51.0387268066 19.057466507
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.372189 0.928118 -0.008529 }
+        <Binormal> { -0.053408 0.030531 0.991739 }
+      }
+      <Normal> { -0.878842 0.473067 -0.061892 }
+    }
+    <Vertex> 4219 {
+      1.14489448071 -51.794593811 16.2526168823
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { 0.346409 0.938064 0.006009 }
+        <Binormal> { -0.024597 0.002681 0.999418 }
+      }
+      <Normal> { -0.929624 0.367687 -0.023865 }
+    }
+    <Vertex> 4220 {
+      0.569283604622 -54.6276931763 16.3077697754
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.052646 0.998585 0.007543 }
+        <Binormal> { -0.081382 -0.003236 0.996437 }
+      }
+      <Normal> { -0.993927 0.074404 -0.080935 }
+    }
+    <Vertex> 4221 {
+      1.14489448071 -51.794593811 16.2526168823
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { 0.346409 0.938064 0.006009 }
+        <Binormal> { -0.024597 0.002681 0.999418 }
+      }
+      <Normal> { -0.929624 0.367687 -0.023865 }
+    }
+    <Vertex> 4222 {
+      1.14493978024 -51.7748260498 14.5244092941
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.321376 0.946890 0.010821 }
+        <Binormal> { 0.094275 -0.043346 0.993066 }
+      }
+      <Normal> { -0.958464 0.266060 0.102603 }
+    }
+    <Vertex> 4223 {
+      0.761274933815 -54.6630172729 14.5136833191
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.050717 0.998301 0.028672 }
+        <Binormal> { 0.071351 -0.032252 0.996734 }
+      }
+      <Normal> { -0.995025 0.067019 0.073397 }
+    }
+    <Vertex> 4224 {
+      -5.00184202194 -61.1814346313 12.6581373215
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.988458 -0.149623 0.023725 }
+        <Binormal> { -0.149384 -0.988704 -0.011485 }
+      }
+      <Normal> { -0.028169 -0.007355 0.999573 }
+    }
+    <Vertex> 4225 {
+      -2.56024861336 -61.4559631348 12.9210128784
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.968725 -0.222157 0.110533 }
+        <Binormal> { -0.226847 -0.940422 0.097985 }
+      }
+      <Normal> { -0.308298 0.171850 0.935606 }
+    }
+    <Vertex> 4226 {
+      -0.649426758289 -58.0259895325 12.9442148209
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.995613 -0.027054 0.089574 }
+        <Binormal> { -0.035155 -0.969245 0.098006 }
+      }
+      <Normal> { -0.306040 0.106754 0.945982 }
+    }
+    <Vertex> 4227 {
+      -3.14477968216 -57.9915313721 12.7509479523
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.995507 0.094568 0.004676 }
+        <Binormal> { 0.094625 -0.995388 -0.014596 }
+      }
+      <Normal> { -0.006928 -0.015320 0.999847 }
+    }
+    <Vertex> 4228 {
+      -5.00184202194 -61.1814346313 12.6581373215
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.988458 -0.149623 0.023725 }
+        <Binormal> { -0.149384 -0.988704 -0.011485 }
+      }
+      <Normal> { -0.028169 -0.007355 0.999573 }
+    }
+    <Vertex> 4229 {
+      -3.14477968216 -57.9915313721 12.7509479523
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.995507 0.094568 0.004676 }
+        <Binormal> { 0.094625 -0.995388 -0.014596 }
+      }
+      <Normal> { -0.006928 -0.015320 0.999847 }
+    }
+    <Vertex> 4230 {
+      -5.63436937332 -57.9570732117 12.9359388351
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.998015 -0.014371 -0.061310 }
+        <Binormal> { -0.023056 -0.947469 -0.153231 }
+      }
+      <Normal> { 0.335063 -0.158361 0.928770 }
+    }
+    <Vertex> 4231 {
+      -7.42037725449 -60.9069061279 12.7735214233
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.981219 -0.185757 -0.052002 }
+        <Binormal> { -0.183493 -0.921943 -0.169017 }
+      }
+      <Normal> { 0.307230 -0.230415 0.923307 }
+    }
+    <Vertex> 4232 {
+      -5.00184202194 -61.1814346313 12.6581373215
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.988458 -0.149623 0.023725 }
+        <Binormal> { -0.149384 -0.988704 -0.011485 }
+      }
+      <Normal> { -0.028169 -0.007355 0.999573 }
+    }
+    <Vertex> 4233 {
+      -7.42037725449 -60.9069061279 12.7735214233
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.981219 -0.185757 -0.052002 }
+        <Binormal> { -0.183493 -0.921943 -0.169017 }
+      }
+      <Normal> { 0.307230 -0.230415 0.923307 }
+    }
+    <Vertex> 4234 {
+      -9.46007061005 -64.0183792114 12.6652421951
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.943246 -0.328900 -0.045954 }
+        <Binormal> { -0.315234 -0.897300 -0.048335 }
+      }
+      <Normal> { 0.313150 -0.160436 0.936033 }
+    }
+    <Vertex> 4235 {
+      -7.08890581131 -64.4586486816 12.5962629318
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.864041 -0.500998 0.049338 }
+        <Binormal> { -0.501479 -0.865111 -0.002451 }
+      }
+      <Normal> { -0.038789 0.019654 0.999023 }
+    }
+    <Vertex> 4236 {
+      -5.00184202194 -61.1814346313 12.6581373215
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.988458 -0.149623 0.023725 }
+        <Binormal> { -0.149384 -0.988704 -0.011485 }
+      }
+      <Normal> { -0.028169 -0.007355 0.999573 }
+    }
+    <Vertex> 4237 {
+      -7.08890581131 -64.4586486816 12.5962629318
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.864041 -0.500998 0.049338 }
+        <Binormal> { -0.501479 -0.865111 -0.002451 }
+      }
+      <Normal> { -0.038789 0.019654 0.999023 }
+    }
+    <Vertex> 4238 {
+      -4.65595674515 -64.878578186 12.9149770737
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.931807 -0.341916 0.121779 }
+        <Binormal> { -0.339101 -0.910762 0.037549 }
+      }
+      <Normal> { -0.314768 0.155797 0.936277 }
+    }
+    <Vertex> 4239 {
+      -2.56024861336 -61.4559631348 12.9210128784
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.968725 -0.222157 0.110533 }
+        <Binormal> { -0.226847 -0.940422 0.097985 }
+      }
+      <Normal> { -0.308298 0.171850 0.935606 }
+    }
+    <Vertex> 4240 {
+      -8.18934822083 -60.8153915405 13.3671665192
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.734442 -0.203459 -0.647456 }
+        <Binormal> { -0.397440 -0.902188 -0.167330 }
+      }
+      <Normal> { 0.553758 -0.381237 0.740226 }
+    }
+    <Vertex> 4241 {
+      -7.42037725449 -60.9069061279 12.7735214233
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.678505 -0.339119 -0.651636 }
+        <Binormal> { -0.463257 -0.826671 -0.052150 }
+      }
+      <Normal> { 0.307230 -0.230415 0.923307 }
+    }
+    <Vertex> 4242 {
+      -5.63436937332 -57.9570732117 12.9359388351
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.083118 -0.974417 -0.208813 }
+        <Binormal> { -0.938077 -0.147163 0.313328 }
+      }
+      <Normal> { 0.335063 -0.158361 0.928770 }
+    }
+    <Vertex> 4243 {
+      -6.45493078232 -57.9455909729 13.5527858734
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.839588 0.167600 -0.516722 }
+        <Binormal> { -0.007463 -0.945836 -0.318910 }
+      }
+      <Normal> { 0.592303 -0.261605 0.762017 }
+    }
+    <Vertex> 4244 {
+      -8.18934822083 -60.8153915405 13.3671665192
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.734442 -0.203459 -0.647456 }
+        <Binormal> { -0.397440 -0.902188 -0.167330 }
+      }
+      <Normal> { 0.553758 -0.381237 0.740226 }
+    }
+    <Vertex> 4245 {
+      -6.45493078232 -57.9455909729 13.5527858734
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.839588 0.167600 -0.516722 }
+        <Binormal> { -0.007463 -0.945836 -0.318910 }
+      }
+      <Normal> { 0.592303 -0.261605 0.762017 }
+    }
+    <Vertex> 4246 {
+      -7.17759752274 -57.8108673096 14.1112775803
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.815024 -0.002114 -0.579423 }
+        <Binormal> { -0.121196 -0.944434 -0.167030 }
+      }
+      <Normal> { 0.338389 -0.205817 0.918210 }
+    }
+    <Vertex> 4247 {
+      -8.8817987442 -60.8022117615 13.8965911865
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.722851 -0.219393 -0.655251 }
+        <Binormal> { -0.353938 -0.862990 -0.101503 }
+      }
+      <Normal> { 0.293191 -0.229408 0.928098 }
+    }
+    <Vertex> 4248 {
+      -8.18934822083 -60.8153915405 13.3671665192
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.734442 -0.203459 -0.647456 }
+        <Binormal> { -0.397440 -0.902188 -0.167330 }
+      }
+      <Normal> { 0.553758 -0.381237 0.740226 }
+    }
+    <Vertex> 4249 {
+      -8.8817987442 -60.8022117615 13.8965911865
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.722851 -0.219393 -0.655251 }
+        <Binormal> { -0.353938 -0.862990 -0.101503 }
+      }
+      <Normal> { 0.293191 -0.229408 0.928098 }
+    }
+    <Vertex> 4250 {
+      -10.8337583542 -63.9921989441 13.788312912
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.547779 -0.436726 -0.713588 }
+        <Binormal> { -0.523726 -0.739035 0.050267 }
+      }
+      <Normal> { 0.318857 -0.162450 0.933775 }
+    }
+    <Vertex> 4251 {
+      -10.19465065 -63.8716163635 13.2434186935
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.276912 -0.721581 -0.634539 }
+        <Binormal> { -0.731616 -0.581607 0.342111 }
+      }
+      <Normal> { 0.589099 -0.299631 0.750420 }
+    }
+    <Vertex> 4252 {
+      -8.18934822083 -60.8153915405 13.3671665192
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.734442 -0.203459 -0.647456 }
+        <Binormal> { -0.397440 -0.902188 -0.167330 }
+      }
+      <Normal> { 0.553758 -0.381237 0.740226 }
+    }
+    <Vertex> 4253 {
+      -10.19465065 -63.8716163635 13.2434186935
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.276912 -0.721581 -0.634539 }
+        <Binormal> { -0.731616 -0.581607 0.342111 }
+      }
+      <Normal> { 0.589099 -0.299631 0.750420 }
+    }
+    <Vertex> 4254 {
+      -9.46007061005 -64.0183792114 12.6652421951
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.511872 -0.569327 -0.643315 }
+        <Binormal> { -0.636120 -0.680583 0.096163 }
+      }
+      <Normal> { 0.313150 -0.160436 0.936033 }
+    }
+    <Vertex> 4255 {
+      -7.42037725449 -60.9069061279 12.7735214233
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.678505 -0.339119 -0.651636 }
+        <Binormal> { -0.463257 -0.826671 -0.052150 }
+      }
+      <Normal> { 0.307230 -0.230415 0.923307 }
+    }
+    <Vertex> 4256 {
+      -16.6851654053 -60.6852493286 14.016076088
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.411171 -0.908248 0.077611 }
+        <Binormal> { -0.905719 0.416654 0.077568 }
+      }
+      <Normal> { 0.103793 0.040620 0.993744 }
+    }
+    <Vertex> 4257 {
+      -13.9429864883 -60.7169418335 13.6781978607
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.623542 -0.780970 0.035800 }
+        <Binormal> { -0.780707 0.624225 0.019462 }
+      }
+      <Normal> { 0.024384 -0.000671 0.999695 }
+    }
+    <Vertex> 4258 {
+      -12.3883171082 -56.1570320129 13.7950839996
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.546895 -0.836374 0.037203 }
+        <Binormal> { -0.819495 0.533115 -0.061671 }
+      }
+      <Normal> { -0.141606 -0.103793 0.984436 }
+    }
+    <Vertex> 4259 {
+      -16.0333709717 -56.3763046265 13.6569356918
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.469046 -0.880488 0.068827 }
+        <Binormal> { -0.881247 0.469952 0.006415 }
+      }
+      <Normal> { 0.014618 0.013764 0.999786 }
+    }
+    <Vertex> 4260 {
+      -16.6851654053 -60.6852493286 14.016076088
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.411171 -0.908248 0.077611 }
+        <Binormal> { -0.905719 0.416654 0.077568 }
+      }
+      <Normal> { 0.103793 0.040620 0.993744 }
+    }
+    <Vertex> 4261 {
+      -16.0333709717 -56.3763046265 13.6569356918
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.469046 -0.880488 0.068827 }
+        <Binormal> { -0.881247 0.469952 0.006415 }
+      }
+      <Normal> { 0.014618 0.013764 0.999786 }
+    }
+    <Vertex> 4262 {
+      -19.0934810638 -56.4022789001 13.7249898911
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.261029 -0.959575 0.105263 }
+        <Binormal> { -0.962424 0.257295 -0.041114 }
+      }
+      <Normal> { -0.032228 0.039033 0.998688 }
+    }
+    <Vertex> 4263 {
+      -19.2564296722 -60.7000961304 14.2773895264
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.086084 -0.989272 0.118029 }
+        <Binormal> { -0.995748 0.082502 -0.034739 }
+      }
+      <Normal> { -0.026490 0.099124 0.994720 }
+    }
+    <Vertex> 4264 {
+      -16.6851654053 -60.6852493286 14.016076088
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.411171 -0.908248 0.077611 }
+        <Binormal> { -0.905719 0.416654 0.077568 }
+      }
+      <Normal> { 0.103793 0.040620 0.993744 }
+    }
+    <Vertex> 4265 {
+      -19.2564296722 -60.7000961304 14.2773895264
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.086084 -0.989272 0.118029 }
+        <Binormal> { -0.995748 0.082502 -0.034739 }
+      }
+      <Normal> { -0.026490 0.099124 0.994720 }
+    }
+    <Vertex> 4266 {
+      -19.8271713257 -64.8338394165 14.7309522629
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.250761 -0.963002 0.098724 }
+        <Binormal> { -0.962364 0.249945 -0.006348 }
+      }
+      <Normal> { -0.008118 -0.005860 0.999939 }
+    }
+    <Vertex> 4267 {
+      -17.7514514923 -64.8301315308 14.3047637939
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.358114 -0.929106 0.092287 }
+        <Binormal> { -0.906085 0.368058 0.189439 }
+      }
+      <Normal> { 0.178686 -0.065401 0.981719 }
+    }
+    <Vertex> 4268 {
+      -16.6851654053 -60.6852493286 14.016076088
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.411171 -0.908248 0.077611 }
+        <Binormal> { -0.905719 0.416654 0.077568 }
+      }
+      <Normal> { 0.103793 0.040620 0.993744 }
+    }
+    <Vertex> 4269 {
+      -17.7514514923 -64.8301315308 14.3047637939
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.358114 -0.929106 0.092287 }
+        <Binormal> { -0.906085 0.368058 0.189439 }
+      }
+      <Normal> { 0.178686 -0.065401 0.981719 }
+    }
+    <Vertex> 4270 {
+      -15.5305328369 -64.7141723633 13.7349014282
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.524298 -0.848294 0.074224 }
+        <Binormal> { -0.842592 0.528359 0.086692 }
+      }
+      <Normal> { 0.082522 -0.031831 0.996063 }
+    }
+    <Vertex> 4271 {
+      -13.9429864883 -60.7169418335 13.6781978607
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.623542 -0.780970 0.035800 }
+        <Binormal> { -0.780707 0.624225 0.019462 }
+      }
+      <Normal> { 0.024384 -0.000671 0.999695 }
+    }
+    <Vertex> 4272 {
+      -21.6159038544 -60.7939987183 13.9065761566
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.108965 0.986755 -0.119961 }
+        <Binormal> { 0.979891 0.126925 0.153963 }
+      }
+      <Normal> { -0.167150 0.100772 0.980743 }
+    }
+    <Vertex> 4273 {
+      -19.2564296722 -60.7000961304 14.2773895264
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.097414 0.990077 -0.101256 }
+        <Binormal> { 0.994891 0.099582 0.016571 }
+      }
+      <Normal> { -0.026490 0.099124 0.994720 }
+    }
+    <Vertex> 4274 {
+      -19.0934810638 -56.4022789001 13.7249898911
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.032228 0.039033 0.998688 }
+    }
+    <Vertex> 4275 {
+      -21.6159038544 -56.566608429 13.4926862717
+      <UV>  {
+        0.250000 0.750000
+        <Tangent> { -0.263675 -0.962298 0.066773 }
+        <Binormal> { -0.957312 0.253866 -0.121672 }
+      }
+      <Normal> { -0.117374 0.033082 0.992523 }
+    }
+    <Vertex> 4276 {
+      -21.6159038544 -60.7939987183 13.9065761566
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.108965 0.986755 -0.119961 }
+        <Binormal> { 0.979891 0.126925 0.153963 }
+      }
+      <Normal> { -0.167150 0.100772 0.980743 }
+    }
+    <Vertex> 4277 {
+      -21.6159038544 -56.566608429 13.4926862717
+      <UV>  {
+        0.250000 0.750000
+        <Tangent> { -0.263675 -0.962298 0.066773 }
+        <Binormal> { -0.957312 0.253866 -0.121672 }
+      }
+      <Normal> { -0.117374 0.033082 0.992523 }
+    }
+    <Vertex> 4278 {
+      -23.839345932 -56.8130111694 13.2712678909
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.367567 -0.929549 0.028872 }
+        <Binormal> { -0.929157 0.365850 -0.050297 }
+      }
+      <Normal> { -0.041993 0.030641 0.998627 }
+    }
+    <Vertex> 4279 {
+      -23.7489376068 -60.9347991943 13.5163316727
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.708730 -0.700117 -0.086822 }
+        <Binormal> { -0.690643 0.709768 -0.085703 }
+      }
+      <Normal> { -0.044343 0.077120 0.996033 }
+    }
+    <Vertex> 4280 {
+      -21.6159038544 -60.7939987183 13.9065761566
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.108965 0.986755 -0.119961 }
+        <Binormal> { 0.979891 0.126925 0.153963 }
+      }
+      <Normal> { -0.167150 0.100772 0.980743 }
+    }
+    <Vertex> 4281 {
+      -23.7489376068 -60.9347991943 13.5163316727
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.708730 -0.700117 -0.086822 }
+        <Binormal> { -0.690643 0.709768 -0.085703 }
+      }
+      <Normal> { -0.044343 0.077120 0.996033 }
+    }
+    <Vertex> 4282 {
+      -24.0562496185 -64.8925170898 13.7604618073
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.884114 -0.439038 -0.159960 }
+        <Binormal> { -0.434360 0.890586 -0.043617 }
+      }
+      <Normal> { -0.048891 0.025056 0.998474 }
+    }
+    <Vertex> 4283 {
+      -22.0035934448 -64.8573226929 14.2773885727
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.974577 -0.013523 -0.223646 }
+        <Binormal> { -0.002276 0.998213 -0.050437 }
+      }
+      <Normal> { -0.193060 0.049074 0.979949 }
+    }
+    <Vertex> 4284 {
+      -21.6159038544 -60.7939987183 13.9065761566
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.108965 0.986755 -0.119961 }
+        <Binormal> { 0.979891 0.126925 0.153963 }
+      }
+      <Normal> { -0.167150 0.100772 0.980743 }
+    }
+    <Vertex> 4285 {
+      -22.0035934448 -64.8573226929 14.2773885727
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.974577 -0.013523 -0.223646 }
+        <Binormal> { -0.002276 0.998213 -0.050437 }
+      }
+      <Normal> { -0.193060 0.049074 0.979949 }
+    }
+    <Vertex> 4286 {
+      -19.8271713257 -64.8338394165 14.7309522629
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.008118 -0.005860 0.999939 }
+    }
+    <Vertex> 4287 {
+      -19.2564296722 -60.7000961304 14.2773895264
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.097414 0.990077 -0.101256 }
+        <Binormal> { 0.994891 0.099582 0.016571 }
+      }
+      <Normal> { -0.026490 0.099124 0.994720 }
+    }
+    <Vertex> 4288 {
+      -25.6408748627 -61.0903358459 13.7193555832
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.052513 -0.994694 0.088471 }
+        <Binormal> { -0.971086 -0.030208 0.236762 }
+      }
+      <Normal> { 0.232856 0.097903 0.967559 }
+    }
+    <Vertex> 4289 {
+      -23.7489376068 -60.9347991943 13.5163316727
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.026787 -0.997814 0.060415 }
+        <Binormal> { -0.998514 0.024002 -0.046312 }
+      }
+      <Normal> { -0.044343 0.077120 0.996033 }
+    }
+    <Vertex> 4290 {
+      -23.839345932 -56.8130111694 13.2712678909
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.055391 -0.995822 0.072593 }
+        <Binormal> { -0.996679 -0.058363 -0.040121 }
+      }
+      <Normal> { -0.041993 0.030641 0.998627 }
+    }
+    <Vertex> 4291 {
+      -26.0025138855 -57.0851898193 13.3719873428
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { 0.089594 -0.992253 0.086059 }
+        <Binormal> { -0.990216 -0.079590 0.113221 }
+      }
+      <Normal> { 0.107028 0.078372 0.991150 }
+    }
+    <Vertex> 4292 {
+      -25.6408748627 -61.0903358459 13.7193555832
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.052513 -0.994694 0.088471 }
+        <Binormal> { -0.971086 -0.030208 0.236762 }
+      }
+      <Normal> { 0.232856 0.097903 0.967559 }
+    }
+    <Vertex> 4293 {
+      -26.0025138855 -57.0851898193 13.3719873428
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { 0.089594 -0.992253 0.086059 }
+        <Binormal> { -0.990216 -0.079590 0.113221 }
+      }
+      <Normal> { 0.107028 0.078372 0.991150 }
+    }
+    <Vertex> 4294 {
+      -28.5103988647 -57.3936233521 13.7695398331
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.149438 -0.829646 0.537919 }
+        <Binormal> { -0.930401 0.271956 0.160973 }
+      }
+      <Normal> { 0.252113 0.322489 0.912351 }
+    }
+    <Vertex> 4295 {
+      -27.1535263062 -61.21251297 14.4811506271
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.178704 -0.974583 0.135100 }
+        <Binormal> { -0.800739 -0.064433 0.594377 }
+      }
+      <Normal> { 0.577136 0.178564 0.796869 }
+    }
+    <Vertex> 4296 {
+      -25.6408748627 -61.0903358459 13.7193555832
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.052513 -0.994694 0.088471 }
+        <Binormal> { -0.971086 -0.030208 0.236762 }
+      }
+      <Normal> { 0.232856 0.097903 0.967559 }
+    }
+    <Vertex> 4297 {
+      -27.1535263062 -61.21251297 14.4811506271
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.178704 -0.974583 0.135100 }
+        <Binormal> { -0.800739 -0.064433 0.594377 }
+      }
+      <Normal> { 0.577136 0.178564 0.796869 }
+    }
+    <Vertex> 4298 {
+      -27.1226387024 -64.9619445801 14.8186845779
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.011674 -0.996669 0.080718 }
+        <Binormal> { -0.751613 0.059964 0.631709 }
+      }
+      <Normal> { 0.632344 -0.126072 0.764336 }
+    }
+    <Vertex> 4299 {
+      -25.7606678009 -64.9314041138 13.9965600967
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.031091 -0.996924 0.071947 }
+        <Binormal> { -0.947236 0.050982 0.297085 }
+      }
+      <Normal> { 0.296457 -0.049532 0.953734 }
+    }
+    <Vertex> 4300 {
+      -25.6408748627 -61.0903358459 13.7193555832
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.052513 -0.994694 0.088471 }
+        <Binormal> { -0.971086 -0.030208 0.236762 }
+      }
+      <Normal> { 0.232856 0.097903 0.967559 }
+    }
+    <Vertex> 4301 {
+      -25.7606678009 -64.9314041138 13.9965600967
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.031091 -0.996924 0.071947 }
+        <Binormal> { -0.947236 0.050982 0.297085 }
+      }
+      <Normal> { 0.296457 -0.049532 0.953734 }
+    }
+    <Vertex> 4302 {
+      -24.0562496185 -64.8925170898 13.7604618073
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.054562 -0.996287 0.066600 }
+        <Binormal> { -0.996435 0.051223 -0.050076 }
+      }
+      <Normal> { -0.048891 0.025056 0.998474 }
+    }
+    <Vertex> 4303 {
+      -23.7489376068 -60.9347991943 13.5163316727
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.026787 -0.997814 0.060415 }
+        <Binormal> { -0.998514 0.024002 -0.046312 }
+      }
+      <Normal> { -0.044343 0.077120 0.996033 }
+    }
+    <Vertex> 4304 {
+      -1.72210097313 -61.5474777222 13.4621458054
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.744363 -0.369499 0.556232 }
+        <Binormal> { -0.452766 -0.891347 0.013790 }
+      }
+      <Normal> { -0.478744 0.256172 0.839717 }
+    }
+    <Vertex> 4305 {
+      -0.996917665005 -61.9727554321 13.8902273178
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.610913 -0.673000 0.416962 }
+        <Binormal> { -0.682527 -0.695621 -0.122766 }
+      }
+      <Normal> { -0.258156 0.083438 0.962462 }
+    }
+    <Vertex> 4306 {
+      0.800136804581 -58.5618629456 14.3294782639
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.668999 -0.380404 0.638540 }
+        <Binormal> { -0.159277 -0.898338 -0.368301 }
+      }
+      <Normal> { -0.833308 -0.076693 0.547441 }
+    }
+    <Vertex> 4307 {
+      0.188428789377 -58.0374794006 13.4621458054
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.790706 0.042307 0.610733 }
+        <Binormal> { -0.081834 -0.977945 0.173694 }
+      }
+      <Normal> { -0.669576 0.183844 0.719626 }
+    }
+    <Vertex> 4308 {
+      -1.72210097313 -61.5474777222 13.4621458054
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.744363 -0.369499 0.556232 }
+        <Binormal> { -0.452766 -0.891347 0.013790 }
+      }
+      <Normal> { -0.478744 0.256172 0.839717 }
+    }
+    <Vertex> 4309 {
+      0.188428789377 -58.0374794006 13.4621458054
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.790706 0.042307 0.610733 }
+        <Binormal> { -0.081834 -0.977945 0.173694 }
+      }
+      <Normal> { -0.669576 0.183844 0.719626 }
+    }
+    <Vertex> 4310 {
+      -0.649426758289 -58.0259895325 12.9442148209
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.400644 0.905865 0.137454 }
+        <Binormal> { 0.842258 -0.421069 0.320001 }
+      }
+      <Normal> { -0.306040 0.106754 0.945982 }
+    }
+    <Vertex> 4311 {
+      -2.56024861336 -61.4559631348 12.9210128784
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.768843 -0.291416 0.569172 }
+        <Binormal> { -0.370463 -0.894809 0.042282 }
+      }
+      <Normal> { -0.308298 0.171850 0.935606 }
+    }
+    <Vertex> 4312 {
+      -1.72210097313 -61.5474777222 13.4621458054
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.744363 -0.369499 0.556232 }
+        <Binormal> { -0.452766 -0.891347 0.013790 }
+      }
+      <Normal> { -0.478744 0.256172 0.839717 }
+    }
+    <Vertex> 4313 {
+      -2.56024861336 -61.4559631348 12.9210128784
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.768843 -0.291416 0.569172 }
+        <Binormal> { -0.370463 -0.894809 0.042282 }
+      }
+      <Normal> { -0.308298 0.171850 0.935606 }
+    }
+    <Vertex> 4314 {
+      -4.65595674515 -64.878578186 12.9149770737
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.632819 -0.520570 0.573190 }
+        <Binormal> { -0.576699 -0.772916 -0.065268 }
+      }
+      <Normal> { -0.314768 0.155797 0.936277 }
+    }
+    <Vertex> 4315 {
+      -3.73602843285 -64.9642791748 13.4998779297
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.552057 -0.717170 0.425324 }
+        <Binormal> { -0.723193 -0.665706 -0.183813 }
+      }
+      <Normal> { -0.413373 0.204047 0.887387 }
+    }
+    <Vertex> 4316 {
+      -1.72210097313 -61.5474777222 13.4621458054
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.744363 -0.369499 0.556232 }
+        <Binormal> { -0.452766 -0.891347 0.013790 }
+      }
+      <Normal> { -0.478744 0.256172 0.839717 }
+    }
+    <Vertex> 4317 {
+      -3.73602843285 -64.9642791748 13.4998779297
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.552057 -0.717170 0.425324 }
+        <Binormal> { -0.723193 -0.665706 -0.183813 }
+      }
+      <Normal> { -0.413373 0.204047 0.887387 }
+    }
+    <Vertex> 4318 {
+      -2.4554605484 -65.1486206055 13.9283847809
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.630565 -0.677013 0.379528 }
+        <Binormal> { -0.703589 -0.675102 -0.035293 }
+      }
+      <Normal> { -0.142094 0.096591 0.985107 }
+    }
+    <Vertex> 4319 {
+      -0.996917665005 -61.9727554321 13.8902273178
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.610913 -0.673000 0.416962 }
+        <Binormal> { -0.682527 -0.695621 -0.122766 }
+      }
+      <Normal> { -0.258156 0.083438 0.962462 }
+    }
+    <Vertex> 4320 {
+      -11.0707702637 -60.7626609802 13.8193187714
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.436153 -0.899196 -0.034879 }
+        <Binormal> { -0.898985 0.437087 -0.026716 }
+      }
+      <Normal> { -0.040132 -0.021485 0.998932 }
+    }
+    <Vertex> 4321 {
+      -8.8817987442 -60.8022117615 13.8965911865
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.508582 -0.859841 -0.044925 }
+        <Binormal> { -0.808323 0.458843 0.368770 }
+      }
+      <Normal> { 0.293191 -0.229408 0.928098 }
+    }
+    <Vertex> 4322 {
+      -7.17759752274 -57.8108673096 14.1112775803
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.791409 -0.611264 -0.005297 }
+        <Binormal> { -0.562359 0.724888 0.369730 }
+      }
+      <Normal> { 0.338389 -0.205817 0.918210 }
+    }
+    <Vertex> 4323 {
+      -9.37350463867 -57.4066810608 14.1212005615
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.449862 -0.889506 -0.080014 }
+        <Binormal> { -0.891706 0.448358 0.029087 }
+      }
+      <Normal> { -0.034394 -0.132664 0.990539 }
+    }
+    <Vertex> 4324 {
+      -11.0707702637 -60.7626609802 13.8193187714
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.436153 -0.899196 -0.034879 }
+        <Binormal> { -0.898985 0.437087 -0.026716 }
+      }
+      <Normal> { -0.040132 -0.021485 0.998932 }
+    }
+    <Vertex> 4325 {
+      -9.37350463867 -57.4066810608 14.1212005615
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.449862 -0.889506 -0.080014 }
+        <Binormal> { -0.891706 0.448358 0.029087 }
+      }
+      <Normal> { -0.034394 -0.132664 0.990539 }
+    }
+    <Vertex> 4326 {
+      -12.3883171082 -56.1570320129 13.7950839996
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.379541 -0.923883 -0.048875 }
+        <Binormal> { -0.914576 0.380555 -0.091433 }
+      }
+      <Normal> { -0.141606 -0.103793 0.984436 }
+    }
+    <Vertex> 4327 {
+      -13.9429864883 -60.7169418335 13.6781978607
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.344692 -0.938693 -0.006602 }
+        <Binormal> { -0.938411 0.344426 0.023121 }
+      }
+      <Normal> { 0.024384 -0.000671 0.999695 }
+    }
+    <Vertex> 4328 {
+      -11.0707702637 -60.7626609802 13.8193187714
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.436153 -0.899196 -0.034879 }
+        <Binormal> { -0.898985 0.437087 -0.026716 }
+      }
+      <Normal> { -0.040132 -0.021485 0.998932 }
+    }
+    <Vertex> 4329 {
+      -13.9429864883 -60.7169418335 13.6781978607
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.344692 -0.938693 -0.006602 }
+        <Binormal> { -0.938411 0.344426 0.023121 }
+      }
+      <Normal> { 0.024384 -0.000671 0.999695 }
+    }
+    <Vertex> 4330 {
+      -15.5305328369 -64.7141723633 13.7349014282
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.412405 -0.911000 -0.000621 }
+        <Binormal> { -0.907434 0.410730 0.088305 }
+      }
+      <Normal> { 0.082522 -0.031831 0.996063 }
+    }
+    <Vertex> 4331 {
+      -12.9185094833 -64.3539581299 13.7574453354
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.457448 -0.889104 -0.015318 }
+        <Binormal> { -0.888414 0.457652 -0.032433 }
+      }
+      <Normal> { -0.029695 0.013184 0.999451 }
+    }
+    <Vertex> 4332 {
+      -11.0707702637 -60.7626609802 13.8193187714
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.436153 -0.899196 -0.034879 }
+        <Binormal> { -0.898985 0.437087 -0.026716 }
+      }
+      <Normal> { -0.040132 -0.021485 0.998932 }
+    }
+    <Vertex> 4333 {
+      -12.9185094833 -64.3539581299 13.7574453354
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.457448 -0.889104 -0.015318 }
+        <Binormal> { -0.888414 0.457652 -0.032433 }
+      }
+      <Normal> { -0.029695 0.013184 0.999451 }
+    }
+    <Vertex> 4334 {
+      -10.8337583542 -63.9921989441 13.788312912
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.488700 -0.872178 -0.021884 }
+        <Binormal> { -0.817973 0.449358 0.357490 }
+      }
+      <Normal> { 0.318857 -0.162450 0.933775 }
+    }
+    <Vertex> 4335 {
+      -8.8817987442 -60.8022117615 13.8965911865
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.508582 -0.859841 -0.044925 }
+        <Binormal> { -0.808323 0.458843 0.368770 }
+      }
+      <Normal> { 0.293191 -0.229408 0.928098 }
+    }
+    <Vertex> 4336 {
+      9.9826593399 -44.2888755798 20.3069419861
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.901511 0.428218 0.062513 }
+        <Binormal> { -0.192997 0.268548 0.943678 }
+      }
+      <Normal> { -0.382519 0.865078 -0.324412 }
+    }
+    <Vertex> 4337 {
+      12.9283361435 -43.3405036926 19.8198032379
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.989836 0.119750 0.076716 }
+        <Binormal> { -0.095757 0.162515 0.981834 }
+      }
+      <Normal> { -0.086306 0.981475 -0.170873 }
+    }
+    <Vertex> 4338 {
+      13.0025978088 -44.145488739 17.2435398102
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.980441 0.182194 0.074432 }
+        <Binormal> { -0.121433 0.262426 0.957187 }
+      }
+      <Normal> { -0.142521 0.949797 -0.278481 }
+    }
+    <Vertex> 4339 {
+      9.92436504364 -45.2900428772 17.769361496
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.883393 0.468086 0.022640 }
+        <Binormal> { -0.072338 0.088932 0.983892 }
+      }
+      <Normal> { -0.337382 0.934996 -0.109317 }
+    }
+    <Vertex> 4340 {
+      9.9826593399 -44.2888755798 20.3069419861
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.901511 0.428218 0.062513 }
+        <Binormal> { -0.192997 0.268548 0.943678 }
+      }
+      <Normal> { -0.382519 0.865078 -0.324412 }
+    }
+    <Vertex> 4341 {
+      9.92436504364 -45.2900428772 17.769361496
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.883393 0.468086 0.022640 }
+        <Binormal> { -0.072338 0.088932 0.983892 }
+      }
+      <Normal> { -0.337382 0.934996 -0.109317 }
+    }
+    <Vertex> 4342 {
+      7.37030935287 -46.6802444458 18.2744445801
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.838092 0.542594 0.056519 }
+        <Binormal> { -0.010567 -0.086285 0.985043 }
+      }
+      <Normal> { -0.414747 0.906827 0.074984 }
+    }
+    <Vertex> 4343 {
+      7.55814838409 -45.6996002197 20.5857982635
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.815909 0.572181 0.083068 }
+        <Binormal> { -0.297552 0.293270 0.902532 }
+      }
+      <Normal> { -0.407147 0.820643 -0.400891 }
+    }
+    <Vertex> 4344 {
+      9.9826593399 -44.2888755798 20.3069419861
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.901511 0.428218 0.062513 }
+        <Binormal> { -0.192997 0.268548 0.943678 }
+      }
+      <Normal> { -0.382519 0.865078 -0.324412 }
+    }
+    <Vertex> 4345 {
+      7.55814838409 -45.6996002197 20.5857982635
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.815909 0.572181 0.083068 }
+        <Binormal> { -0.297552 0.293270 0.902532 }
+      }
+      <Normal> { -0.407147 0.820643 -0.400891 }
+    }
+    <Vertex> 4346 {
+      6.66407394409 -44.6763458252 22.7401390076
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.845304 0.514979 0.142328 }
+        <Binormal> { -0.252029 0.149485 0.955957 }
+      }
+      <Normal> { -0.484024 0.836024 -0.258339 }
+    }
+    <Vertex> 4347 {
+      9.52238559723 -43.4835357666 22.7827987671
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.939795 0.319499 0.121264 }
+        <Binormal> { -0.126751 -0.003285 0.990976 }
+      }
+      <Normal> { -0.276620 0.960418 -0.032197 }
+    }
+    <Vertex> 4348 {
+      9.9826593399 -44.2888755798 20.3069419861
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.901511 0.428218 0.062513 }
+        <Binormal> { -0.192997 0.268548 0.943678 }
+      }
+      <Normal> { -0.382519 0.865078 -0.324412 }
+    }
+    <Vertex> 4349 {
+      9.52238559723 -43.4835357666 22.7827987671
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.939795 0.319499 0.121264 }
+        <Binormal> { -0.126751 -0.003285 0.990976 }
+      }
+      <Normal> { -0.276620 0.960418 -0.032197 }
+    }
+    <Vertex> 4350 {
+      12.367231369 -43.1831855774 22.3011569977
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.996682 -0.000604 0.081388 }
+        <Binormal> { -0.078342 -0.258393 0.957462 }
+      }
+      <Normal> { 0.080752 0.960601 0.265847 }
+    }
+    <Vertex> 4351 {
+      12.9283361435 -43.3405036926 19.8198032379
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.989836 0.119750 0.076716 }
+        <Binormal> { -0.095757 0.162515 0.981834 }
+      }
+      <Normal> { -0.086306 0.981475 -0.170873 }
+    }
+    <Vertex> 4352 {
+      16.0139408112 -43.7566413879 19.6378803253
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.924326 -0.337711 0.177687 }
+        <Binormal> { -0.180702 0.022742 0.983233 }
+      }
+      <Normal> { 0.330882 0.942839 0.039003 }
+    }
+    <Vertex> 4353 {
+      18.639831543 -45.105884552 19.8413410187
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.851044 -0.462103 0.249368 }
+        <Binormal> { -0.275812 -0.008071 0.926335 }
+      }
+      <Normal> { 0.644215 0.738670 0.198248 }
+    }
+    <Vertex> 4354 {
+      19.5960426331 -46.2401428223 17.3689231873
+      <UV>  {
+        -0.042124 0.762705
+        <Tangent> { 0.843839 -0.484092 0.231496 }
+        <Binormal> { 0.065871 0.494118 0.793163 }
+      }
+      <Normal> { 0.793512 0.484725 -0.367870 }
+    }
+    <Vertex> 4355 {
+      16.3692874908 -44.0825653076 17.0995540619
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.942090 -0.286151 0.174886 }
+        <Binormal> { -0.068815 0.345051 0.935276 }
+      }
+      <Normal> { 0.292184 0.904019 -0.312021 }
+    }
+    <Vertex> 4356 {
+      16.0139408112 -43.7566413879 19.6378803253
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.924326 -0.337711 0.177687 }
+        <Binormal> { -0.180702 0.022742 0.983233 }
+      }
+      <Normal> { 0.330882 0.942839 0.039003 }
+    }
+    <Vertex> 4357 {
+      16.3692874908 -44.0825653076 17.0995540619
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.942090 -0.286151 0.174886 }
+        <Binormal> { -0.068815 0.345051 0.935276 }
+      }
+      <Normal> { 0.292184 0.904019 -0.312021 }
+    }
+    <Vertex> 4358 {
+      13.0025978088 -44.145488739 17.2435398102
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.980441 0.182194 0.074432 }
+        <Binormal> { -0.121433 0.262426 0.957187 }
+      }
+      <Normal> { -0.142521 0.949797 -0.278481 }
+    }
+    <Vertex> 4359 {
+      12.9283361435 -43.3405036926 19.8198032379
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.989836 0.119750 0.076716 }
+        <Binormal> { -0.095757 0.162515 0.981834 }
+      }
+      <Normal> { -0.086306 0.981475 -0.170873 }
+    }
+    <Vertex> 4360 {
+      16.0139408112 -43.7566413879 19.6378803253
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.924326 -0.337711 0.177687 }
+        <Binormal> { -0.180702 0.022742 0.983233 }
+      }
+      <Normal> { 0.330882 0.942839 0.039003 }
+    }
+    <Vertex> 4361 {
+      12.9283361435 -43.3405036926 19.8198032379
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.989836 0.119750 0.076716 }
+        <Binormal> { -0.095757 0.162515 0.981834 }
+      }
+      <Normal> { -0.086306 0.981475 -0.170873 }
+    }
+    <Vertex> 4362 {
+      12.367231369 -43.1831855774 22.3011569977
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.996682 -0.000604 0.081388 }
+        <Binormal> { -0.078342 -0.258393 0.957462 }
+      }
+      <Normal> { 0.080752 0.960601 0.265847 }
+    }
+    <Vertex> 4363 {
+      15.1503429413 -44.1010856628 22.1357250214
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.852594 -0.497638 0.159497 }
+        <Binormal> { -0.368626 -0.356399 0.858513 }
+      }
+      <Normal> { 0.369640 0.791192 0.487167 }
+    }
+    <Vertex> 4364 {
+      16.0139408112 -43.7566413879 19.6378803253
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.924326 -0.337711 0.177687 }
+        <Binormal> { -0.180702 0.022742 0.983233 }
+      }
+      <Normal> { 0.330882 0.942839 0.039003 }
+    }
+    <Vertex> 4365 {
+      15.1503429413 -44.1010856628 22.1357250214
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.852594 -0.497638 0.159497 }
+        <Binormal> { -0.368626 -0.356399 0.858513 }
+      }
+      <Normal> { 0.369640 0.791192 0.487167 }
+    }
+    <Vertex> 4366 {
+      17.6717739105 -45.9213790894 22.1716346741
+      <UV>  {
+        -0.073782 0.891829
+        <Tangent> { 0.794540 -0.569780 0.209898 }
+        <Binormal> { -0.478439 -0.384142 0.768290 }
+      }
+      <Normal> { 0.501938 0.607013 0.616077 }
+    }
+    <Vertex> 4367 {
+      18.639831543 -45.105884552 19.8413410187
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.851044 -0.462103 0.249368 }
+        <Binormal> { -0.275812 -0.008071 0.926335 }
+      }
+      <Normal> { 0.644215 0.738670 0.198248 }
+    }
+    <Vertex> 4368 {
+      6.03604078293 -46.6705284119 20.142873764
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.939507 0.339729 -0.043716 }
+        <Binormal> { -0.108162 0.415336 0.903156 }
+      }
+      <Normal> { -0.316507 0.846858 -0.427351 }
+    }
+    <Vertex> 4369 {
+      7.55814838409 -45.6996002197 20.5857982635
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.918767 0.356872 -0.168847 }
+        <Binormal> { -0.004504 0.437071 0.899279 }
+      }
+      <Normal> { -0.407147 0.820643 -0.400891 }
+    }
+    <Vertex> 4370 {
+      7.37030935287 -46.6802444458 18.2744445801
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.906385 0.401825 -0.130394 }
+        <Binormal> { 0.148375 -0.013884 0.988590 }
+      }
+      <Normal> { -0.414747 0.906827 0.074984 }
+    }
+    <Vertex> 4371 {
+      5.57615709305 -47.4801216125 18.356212616
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.923177 0.378248 -0.068363 }
+        <Binormal> { 0.064659 0.022009 0.994928 }
+      }
+      <Normal> { -0.445998 0.894986 0.009186 }
+    }
+    <Vertex> 4372 {
+      6.03604078293 -46.6705284119 20.142873764
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.939507 0.339729 -0.043716 }
+        <Binormal> { -0.108162 0.415336 0.903156 }
+      }
+      <Normal> { -0.316507 0.846858 -0.427351 }
+    }
+    <Vertex> 4373 {
+      5.57615709305 -47.4801216125 18.356212616
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.923177 0.378248 -0.068363 }
+        <Binormal> { 0.064659 0.022009 0.994928 }
+      }
+      <Normal> { -0.445998 0.894986 0.009186 }
+    }
+    <Vertex> 4374 {
+      4.23078632355 -47.966583252 18.5069332123
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.955504 0.290663 0.050267 }
+        <Binormal> { -0.074434 0.080878 0.947225 }
+      }
+      <Normal> { -0.558916 0.821314 -0.114048 }
+    }
+    <Vertex> 4375 {
+      5.24484157562 -46.460559845 20.6502380371
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.950280 0.268711 0.157357 }
+        <Binormal> { -0.227392 0.280328 0.894517 }
+      }
+      <Normal> { -0.446730 0.814997 -0.368969 }
+    }
+    <Vertex> 4376 {
+      6.03604078293 -46.6705284119 20.142873764
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.939507 0.339729 -0.043716 }
+        <Binormal> { -0.108162 0.415336 0.903156 }
+      }
+      <Normal> { -0.316507 0.846858 -0.427351 }
+    }
+    <Vertex> 4377 {
+      5.24484157562 -46.460559845 20.6502380371
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.950280 0.268711 0.157357 }
+        <Binormal> { -0.227392 0.280328 0.894517 }
+      }
+      <Normal> { -0.446730 0.814997 -0.368969 }
+    }
+    <Vertex> 4378 {
+      6.66407394409 -44.6763458252 22.7401390076
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.896634 0.410426 -0.166126 }
+        <Binormal> { 0.032857 0.312045 0.948263 }
+      }
+      <Normal> { -0.484024 0.836024 -0.258339 }
+    }
+    <Vertex> 4379 {
+      7.55814838409 -45.6996002197 20.5857982635
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.918767 0.356872 -0.168847 }
+        <Binormal> { -0.004504 0.437071 0.899279 }
+      }
+      <Normal> { -0.407147 0.820643 -0.400891 }
+    }
+    <Vertex> 4380 {
+      3.94214916229 -47.6393699646 20.169883728
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.731050 0.641449 -0.232612 }
+        <Binormal> { 0.044634 0.295183 0.954266 }
+      }
+      <Normal> { -0.669820 0.717612 -0.190649 }
+    }
+    <Vertex> 4381 {
+      5.24484157562 -46.460559845 20.6502380371
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.801461 0.563199 -0.201164 }
+        <Binormal> { -0.043855 0.385580 0.904786 }
+      }
+      <Normal> { -0.446730 0.814997 -0.368969 }
+    }
+    <Vertex> 4382 {
+      4.23078632355 -47.966583252 18.5069332123
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.786024 0.616686 -0.043180 }
+        <Binormal> { -0.034868 0.113778 0.990248 }
+      }
+      <Normal> { -0.558916 0.821314 -0.114048 }
+    }
+    <Vertex> 4383 {
+      2.75535011292 -49.244228363 18.3163547516
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.681717 0.720144 -0.129051 }
+        <Binormal> { 0.013669 0.163819 0.986366 }
+      }
+      <Normal> { -0.732566 0.673025 -0.101627 }
+    }
+    <Vertex> 4384 {
+      3.94214916229 -47.6393699646 20.169883728
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.731050 0.641449 -0.232612 }
+        <Binormal> { 0.044634 0.295183 0.954266 }
+      }
+      <Normal> { -0.669820 0.717612 -0.190649 }
+    }
+    <Vertex> 4385 {
+      2.75535011292 -49.244228363 18.3163547516
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.681717 0.720144 -0.129051 }
+        <Binormal> { 0.013669 0.163819 0.986366 }
+      }
+      <Normal> { -0.732566 0.673025 -0.101627 }
+    }
+    <Vertex> 4386 {
+      1.32257354259 -51.0387268066 19.057466507
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.624334 0.726292 -0.287587 }
+        <Binormal> { 0.091097 0.291385 0.933648 }
+      }
+      <Normal> { -0.878842 0.473067 -0.061892 }
+    }
+    <Vertex> 4387 {
+      3.91500663757 -47.3672142029 21.2607917786
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.705564 0.606234 -0.366959 }
+        <Binormal> { 0.164209 0.363690 0.916563 }
+      }
+      <Normal> { -0.707144 0.691458 -0.147679 }
+    }
+    <Vertex> 4388 {
+      3.94214916229 -47.6393699646 20.169883728
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.731050 0.641449 -0.232612 }
+        <Binormal> { 0.044634 0.295183 0.954266 }
+      }
+      <Normal> { -0.669820 0.717612 -0.190649 }
+    }
+    <Vertex> 4389 {
+      3.91500663757 -47.3672142029 21.2607917786
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.705564 0.606234 -0.366959 }
+        <Binormal> { 0.164209 0.363690 0.916563 }
+      }
+      <Normal> { -0.707144 0.691458 -0.147679 }
+    }
+    <Vertex> 4390 {
+      6.66407394409 -44.6763458252 22.7401390076
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.896634 0.410426 -0.166126 }
+        <Binormal> { 0.032857 0.312045 0.948263 }
+      }
+      <Normal> { -0.484024 0.836024 -0.258339 }
+    }
+    <Vertex> 4391 {
+      5.24484157562 -46.460559845 20.6502380371
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.801461 0.563199 -0.201164 }
+        <Binormal> { -0.043855 0.385580 0.904786 }
+      }
+      <Normal> { -0.446730 0.814997 -0.368969 }
+    }
+    <Vertex> 4392 {
+      8.1415643692 -44.2639694214 24.5978431702
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.985211 0.151042 0.080907 }
+        <Binormal> { 0.002140 -0.482983 0.875604 }
+      }
+      <Normal> { -0.171117 0.862514 0.476180 }
+    }
+    <Vertex> 4393 {
+      10.9527997971 -44.1796150208 24.1180343628
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.951896 -0.306081 0.014435 }
+        <Binormal> { -0.220840 -0.652672 0.723674 }
+      }
+      <Normal> { 0.175390 0.703848 0.688314 }
+    }
+    <Vertex> 4394 {
+      12.367231369 -43.1831855774 22.3011569977
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.967058 -0.252379 0.033209 }
+        <Binormal> { -0.098995 -0.254408 0.949337 }
+      }
+      <Normal> { 0.080752 0.960601 0.265847 }
+    }
+    <Vertex> 4395 {
+      9.52238559723 -43.4835357666 22.7827987671
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.973010 0.217440 0.077278 }
+        <Binormal> { -0.081220 0.009952 0.994644 }
+      }
+      <Normal> { -0.276620 0.960418 -0.032197 }
+    }
+    <Vertex> 4396 {
+      8.1415643692 -44.2639694214 24.5978431702
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.985211 0.151042 0.080907 }
+        <Binormal> { 0.002140 -0.482983 0.875604 }
+      }
+      <Normal> { -0.171117 0.862514 0.476180 }
+    }
+    <Vertex> 4397 {
+      9.52238559723 -43.4835357666 22.7827987671
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.973010 0.217440 0.077278 }
+        <Binormal> { -0.081220 0.009952 0.994644 }
+      }
+      <Normal> { -0.276620 0.960418 -0.032197 }
+    }
+    <Vertex> 4398 {
+      6.66407394409 -44.6763458252 22.7401390076
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.913980 0.361306 0.184657 }
+        <Binormal> { -0.247717 0.146739 0.938990 }
+      }
+      <Normal> { -0.484024 0.836024 -0.258339 }
+    }
+    <Vertex> 4399 {
+      5.61473226547 -45.3035202026 24.4929733276
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.927277 0.328303 0.179928 }
+        <Binormal> { -0.103194 -0.223885 0.940328 }
+      }
+      <Normal> { -0.566424 0.813532 0.131535 }
+    }
+    <Vertex> 4400 {
+      8.1415643692 -44.2639694214 24.5978431702
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.985211 0.151042 0.080907 }
+        <Binormal> { 0.002140 -0.482983 0.875604 }
+      }
+      <Normal> { -0.171117 0.862514 0.476180 }
+    }
+    <Vertex> 4401 {
+      5.61473226547 -45.3035202026 24.4929733276
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.927277 0.328303 0.179928 }
+        <Binormal> { -0.103194 -0.223885 0.940328 }
+      }
+      <Normal> { -0.566424 0.813532 0.131535 }
+    }
+    <Vertex> 4402 {
+      4.32910919189 -46.7539596558 25.6139812469
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.920862 0.314625 0.230271 }
+        <Binormal> { -0.062071 -0.440554 0.850166 }
+      }
+      <Normal> { -0.628071 0.708640 0.321360 }
+    }
+    <Vertex> 4403 {
+      6.71546792984 -45.6681022644 25.9967098236
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.984959 0.125808 0.118441 }
+        <Binormal> { -0.010896 -0.638806 0.769148 }
+      }
+      <Normal> { -0.159734 0.760491 0.629353 }
+    }
+    <Vertex> 4404 {
+      8.1415643692 -44.2639694214 24.5978431702
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.985211 0.151042 0.080907 }
+        <Binormal> { 0.002140 -0.482983 0.875604 }
+      }
+      <Normal> { -0.171117 0.862514 0.476180 }
+    }
+    <Vertex> 4405 {
+      6.71546792984 -45.6681022644 25.9967098236
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.984959 0.125808 0.118441 }
+        <Binormal> { -0.010896 -0.638806 0.769148 }
+      }
+      <Normal> { -0.159734 0.760491 0.629353 }
+    }
+    <Vertex> 4406 {
+      9.35116004944 -45.5462150574 25.4901542664
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.949025 -0.314816 -0.015535 }
+        <Binormal> { -0.230878 -0.727832 0.645241 }
+      }
+      <Normal> { 0.191748 0.616291 0.763787 }
+    }
+    <Vertex> 4407 {
+      10.9527997971 -44.1796150208 24.1180343628
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.951896 -0.306081 0.014435 }
+        <Binormal> { -0.220840 -0.652672 0.723674 }
+      }
+      <Normal> { 0.175390 0.703848 0.688314 }
+    }
+    <Vertex> 4408 {
+      13.6350803375 -45.2647743225 23.9580993652
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.774765 -0.624080 0.101308 }
+        <Binormal> { -0.534375 -0.560751 0.632339 }
+      }
+      <Normal> { 0.329142 0.551042 0.766808 }
+    }
+    <Vertex> 4409 {
+      16.1216907501 -47.2420883179 23.9381656647
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.675450 -0.729452 0.108014 }
+        <Binormal> { -0.631749 -0.497238 0.592553 }
+      }
+      <Normal> { 0.412091 0.432234 0.802057 }
+    }
+    <Vertex> 4410 {
+      17.6717739105 -45.9213790894 22.1716346741
+      <UV>  {
+        -0.042124 0.762705
+        <Tangent> { 0.914994 -0.284435 -0.286152 }
+        <Binormal> { -0.001536 -0.707337 0.698182 }
+      }
+      <Normal> { 0.501938 0.607013 0.616077 }
+    }
+    <Vertex> 4411 {
+      15.1503429413 -44.1010856628 22.1357250214
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.817086 -0.565541 0.111954 }
+        <Binormal> { -0.364090 -0.356675 0.855519 }
+      }
+      <Normal> { 0.369640 0.791192 0.487167 }
+    }
+    <Vertex> 4412 {
+      13.6350803375 -45.2647743225 23.9580993652
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.774765 -0.624080 0.101308 }
+        <Binormal> { -0.534375 -0.560751 0.632339 }
+      }
+      <Normal> { 0.329142 0.551042 0.766808 }
+    }
+    <Vertex> 4413 {
+      15.1503429413 -44.1010856628 22.1357250214
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.817086 -0.565541 0.111954 }
+        <Binormal> { -0.364090 -0.356675 0.855519 }
+      }
+      <Normal> { 0.369640 0.791192 0.487167 }
+    }
+    <Vertex> 4414 {
+      12.367231369 -43.1831855774 22.3011569977
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.967058 -0.252379 0.033209 }
+        <Binormal> { -0.098995 -0.254408 0.949337 }
+      }
+      <Normal> { 0.080752 0.960601 0.265847 }
+    }
+    <Vertex> 4415 {
+      10.9527997971 -44.1796150208 24.1180343628
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.951896 -0.306081 0.014435 }
+        <Binormal> { -0.220840 -0.652672 0.723674 }
+      }
+      <Normal> { 0.175390 0.703848 0.688314 }
+    }
+    <Vertex> 4416 {
+      13.6350803375 -45.2647743225 23.9580993652
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.774765 -0.624080 0.101308 }
+        <Binormal> { -0.534375 -0.560751 0.632339 }
+      }
+      <Normal> { 0.329142 0.551042 0.766808 }
+    }
+    <Vertex> 4417 {
+      10.9527997971 -44.1796150208 24.1180343628
+      <UV>  {
+        0.054499 0.854838
+        <Tangent> { 0.951896 -0.306081 0.014435 }
+        <Binormal> { -0.220840 -0.652672 0.723674 }
+      }
+      <Normal> { 0.175390 0.703848 0.688314 }
+    }
+    <Vertex> 4418 {
+      9.35116004944 -45.5462150574 25.4901542664
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.949025 -0.314816 -0.015535 }
+        <Binormal> { -0.230878 -0.727832 0.645241 }
+      }
+      <Normal> { 0.191748 0.616291 0.763787 }
+    }
+    <Vertex> 4419 {
+      11.881146431 -46.4709625244 25.2588729858
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.728690 -0.675580 0.112264 }
+        <Binormal> { -0.603769 -0.556420 0.570562 }
+      }
+      <Normal> { 0.310495 0.495132 0.811426 }
+    }
+    <Vertex> 4420 {
+      13.6350803375 -45.2647743225 23.9580993652
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.774765 -0.624080 0.101308 }
+        <Binormal> { -0.534375 -0.560751 0.632339 }
+      }
+      <Normal> { 0.329142 0.551042 0.766808 }
+    }
+    <Vertex> 4421 {
+      11.881146431 -46.4709625244 25.2588729858
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.728690 -0.675580 0.112264 }
+        <Binormal> { -0.603769 -0.556420 0.570562 }
+      }
+      <Normal> { 0.310495 0.495132 0.811426 }
+    }
+    <Vertex> 4422 {
+      13.9417600632 -48.6074409485 25.5346794128
+      <UV>  {
+        -0.073782 0.891829
+        <Tangent> { 0.617428 -0.773336 0.143994 }
+        <Binormal> { -0.707192 -0.466314 0.527960 }
+      }
+      <Normal> { 0.378399 0.381146 0.843501 }
+    }
+    <Vertex> 4423 {
+      16.1216907501 -47.2420883179 23.9381656647
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.675450 -0.729452 0.108014 }
+        <Binormal> { -0.631749 -0.497238 0.592553 }
+      }
+      <Normal> { 0.412091 0.432234 0.802057 }
+    }
+    <Vertex> 4424 {
+      6.11936616898 -46.7338752747 27.2240200043
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.986173 0.164445 0.020497 }
+        <Binormal> { 0.090248 -0.636651 0.765686 }
+      }
+      <Normal> { -0.125736 0.755455 0.642964 }
+    }
+    <Vertex> 4425 {
+      8.22842979431 -46.499370575 26.6372184753
+      <UV>  {
+        0.053131 0.854502
+        <Tangent> { 0.984166 -0.004309 -0.177198 }
+        <Binormal> { 0.104845 -0.787960 0.601475 }
+      }
+      <Normal> { 0.220435 0.610187 0.760949 }
+    }
+    <Vertex> 4426 {
+      9.35116004944 -45.5462150574 25.4901542664
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.991960 -0.025425 -0.123970 }
+        <Binormal> { 0.056982 -0.781417 0.616211 }
+      }
+      <Normal> { 0.191748 0.616291 0.763787 }
+    }
+    <Vertex> 4427 {
+      6.71546792984 -45.6681022644 25.9967098236
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.984653 0.148109 0.092312 }
+        <Binormal> { 0.023011 -0.634440 0.772478 }
+      }
+      <Normal> { -0.159734 0.760491 0.629353 }
+    }
+    <Vertex> 4428 {
+      6.11936616898 -46.7338752747 27.2240200043
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.986173 0.164445 0.020497 }
+        <Binormal> { 0.090248 -0.636651 0.765686 }
+      }
+      <Normal> { -0.125736 0.755455 0.642964 }
+    }
+    <Vertex> 4429 {
+      6.71546792984 -45.6681022644 25.9967098236
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.984653 0.148109 0.092312 }
+        <Binormal> { 0.023011 -0.634440 0.772478 }
+      }
+      <Normal> { -0.159734 0.760491 0.629353 }
+    }
+    <Vertex> 4430 {
+      4.32910919189 -46.7539596558 25.6139812469
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.897614 0.354137 0.262443 }
+        <Binormal> { -0.072172 -0.453290 0.858508 }
+      }
+      <Normal> { -0.628071 0.708640 0.321360 }
+    }
+    <Vertex> 4431 {
+      4.06420469284 -47.8142547607 26.9635543823
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.885722 0.383096 0.262172 }
+        <Binormal> { -0.042431 -0.486343 0.854013 }
+      }
+      <Normal> { -0.613788 0.698721 0.367412 }
+    }
+    <Vertex> 4432 {
+      6.11936616898 -46.7338752747 27.2240200043
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.986173 0.164445 0.020497 }
+        <Binormal> { 0.090248 -0.636651 0.765686 }
+      }
+      <Normal> { -0.125736 0.755455 0.642964 }
+    }
+    <Vertex> 4433 {
+      4.06420469284 -47.8142547607 26.9635543823
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.885722 0.383096 0.262172 }
+        <Binormal> { -0.042431 -0.486343 0.854013 }
+      }
+      <Normal> { -0.613788 0.698721 0.367412 }
+    }
+    <Vertex> 4434 {
+      4.35131406784 -48.3970603943 28.6231327057
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.943233 0.309447 0.120638 }
+        <Binormal> { -0.044886 -0.234259 0.951849 }
+      }
+      <Normal> { -0.141240 0.962798 0.230293 }
+    }
+    <Vertex> 4435 {
+      6.05911493301 -47.8354034424 28.232465744
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.982762 0.067049 -0.172286 }
+        <Binormal> { 0.161905 -0.761918 0.627029 }
+      }
+      <Normal> { 0.081759 0.643605 0.760949 }
+    }
+    <Vertex> 4436 {
+      6.11936616898 -46.7338752747 27.2240200043
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.986173 0.164445 0.020497 }
+        <Binormal> { 0.090248 -0.636651 0.765686 }
+      }
+      <Normal> { -0.125736 0.755455 0.642964 }
+    }
+    <Vertex> 4437 {
+      6.05911493301 -47.8354034424 28.232465744
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.982762 0.067049 -0.172286 }
+        <Binormal> { 0.161905 -0.761918 0.627029 }
+      }
+      <Normal> { 0.081759 0.643605 0.760949 }
+    }
+    <Vertex> 4438 {
+      7.93674230576 -47.6438827515 27.5321445465
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.977051 -0.023618 -0.211690 }
+        <Binormal> { 0.085034 -0.863912 0.488858 }
+      }
+      <Normal> { 0.278573 0.493606 0.823847 }
+    }
+    <Vertex> 4439 {
+      8.22842979431 -46.499370575 26.6372184753
+      <UV>  {
+        0.053131 0.854502
+        <Tangent> { 0.984166 -0.004309 -0.177198 }
+        <Binormal> { 0.104845 -0.787960 0.601475 }
+      }
+      <Normal> { 0.220435 0.610187 0.760949 }
+    }
+    <Vertex> 4440 {
+      10.3015356064 -46.9429016113 26.1918983459
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.834455 -0.550813 0.017034 }
+        <Binormal> { -0.447517 -0.659284 0.604124 }
+      }
+      <Normal> { 0.316263 0.515213 0.796533 }
+    }
+    <Vertex> 4441 {
+      11.881146431 -46.4709625244 25.2588729858
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.831954 -0.554786 0.008069 }
+        <Binormal> { -0.454163 -0.672564 0.584186 }
+      }
+      <Normal> { 0.310495 0.495132 0.811426 }
+    }
+    <Vertex> 4442 {
+      9.35116004944 -45.5462150574 25.4901542664
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.924609 -0.376272 -0.059306 }
+        <Binormal> { -0.250842 -0.717576 0.641977 }
+      }
+      <Normal> { 0.191748 0.616291 0.763787 }
+    }
+    <Vertex> 4443 {
+      8.22842979431 -46.499370575 26.6372184753
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.916850 -0.395779 -0.052389 }
+        <Binormal> { -0.269200 -0.709224 0.646694 }
+      }
+      <Normal> { 0.220435 0.610187 0.760949 }
+    }
+    <Vertex> 4444 {
+      10.3015356064 -46.9429016113 26.1918983459
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.834455 -0.550813 0.017034 }
+        <Binormal> { -0.447517 -0.659284 0.604124 }
+      }
+      <Normal> { 0.316263 0.515213 0.796533 }
+    }
+    <Vertex> 4445 {
+      8.22842979431 -46.499370575 26.6372184753
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.916850 -0.395779 -0.052389 }
+        <Binormal> { -0.269200 -0.709224 0.646694 }
+      }
+      <Normal> { 0.220435 0.610187 0.760949 }
+    }
+    <Vertex> 4446 {
+      7.93674230576 -47.6438827515 27.5321445465
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.836839 -0.546838 0.025879 }
+        <Binormal> { -0.463285 -0.682218 0.565403 }
+      }
+      <Normal> { 0.278573 0.493606 0.823847 }
+    }
+    <Vertex> 4447 {
+      10.5679254532 -48.0281295776 26.7095680237
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.709281 -0.697300 0.103412 }
+        <Binormal> { -0.626096 -0.555846 0.546225 }
+      }
+      <Normal> { 0.341044 0.434828 0.833399 }
+    }
+    <Vertex> 4448 {
+      10.3015356064 -46.9429016113 26.1918983459
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.834455 -0.550813 0.017034 }
+        <Binormal> { -0.447517 -0.659284 0.604124 }
+      }
+      <Normal> { 0.316263 0.515213 0.796533 }
+    }
+    <Vertex> 4449 {
+      10.5679254532 -48.0281295776 26.7095680237
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.709281 -0.697300 0.103412 }
+        <Binormal> { -0.626096 -0.555846 0.546225 }
+      }
+      <Normal> { 0.341044 0.434828 0.833399 }
+    }
+    <Vertex> 4450 {
+      13.9417600632 -48.6074409485 25.5346794128
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.712805 -0.696796 0.079901 }
+        <Binormal> { -0.618202 -0.571017 0.535349 }
+      }
+      <Normal> { 0.378399 0.381146 0.843501 }
+    }
+    <Vertex> 4451 {
+      11.881146431 -46.4709625244 25.2588729858
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.831954 -0.554786 0.008069 }
+        <Binormal> { -0.454163 -0.672564 0.584186 }
+      }
+      <Normal> { 0.310495 0.495132 0.811426 }
+    }
+    <Vertex> 4452 {
+      3.78565883636 -47.0839653015 22.8988800049
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.617211 0.709757 0.339552 }
+        <Binormal> { -0.277981 -0.206998 0.937975 }
+      }
+      <Normal> { -0.732109 0.677816 -0.067385 }
+    }
+    <Vertex> 4453 {
+      3.91500663757 -47.3672142029 21.2607917786
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.587818 0.700163 0.405268 }
+        <Binormal> { -0.383625 -0.199775 0.901567 }
+      }
+      <Normal> { -0.707144 0.691458 -0.147679 }
+    }
+    <Vertex> 4454 {
+      1.32257354259 -51.0387268066 19.057466507
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.404186 0.779611 0.478374 }
+        <Binormal> { -0.274554 -0.395399 0.876361 }
+      }
+      <Normal> { -0.878842 0.473067 -0.061892 }
+    }
+    <Vertex> 4455 {
+      2.54712438583 -48.7211151123 23.1774101257
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.572984 0.774446 0.268182 }
+        <Binormal> { -0.113311 -0.249133 0.961531 }
+      }
+      <Normal> { -0.824641 0.563524 0.048830 }
+    }
+    <Vertex> 4456 {
+      3.78565883636 -47.0839653015 22.8988800049
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.617211 0.709757 0.339552 }
+        <Binormal> { -0.277981 -0.206998 0.937975 }
+      }
+      <Normal> { -0.732109 0.677816 -0.067385 }
+    }
+    <Vertex> 4457 {
+      2.54712438583 -48.7211151123 23.1774101257
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.572984 0.774446 0.268182 }
+        <Binormal> { -0.113311 -0.249133 0.961531 }
+      }
+      <Normal> { -0.824641 0.563524 0.048830 }
+    }
+    <Vertex> 4458 {
+      4.32910919189 -46.7539596558 25.6139812469
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.642146 0.715409 0.275388 }
+        <Binormal> { 0.034753 -0.379323 0.904378 }
+      }
+      <Normal> { -0.628071 0.708640 0.321360 }
+    }
+    <Vertex> 4459 {
+      5.61473226547 -45.3035202026 24.4929733276
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.678547 0.650552 0.341110 }
+        <Binormal> { -0.191934 -0.282465 0.920508 }
+      }
+      <Normal> { -0.566424 0.813532 0.131535 }
+    }
+    <Vertex> 4460 {
+      3.78565883636 -47.0839653015 22.8988800049
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.617211 0.709757 0.339552 }
+        <Binormal> { -0.277981 -0.206998 0.937975 }
+      }
+      <Normal> { -0.732109 0.677816 -0.067385 }
+    }
+    <Vertex> 4461 {
+      5.61473226547 -45.3035202026 24.4929733276
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.678547 0.650552 0.341110 }
+        <Binormal> { -0.191934 -0.282465 0.920508 }
+      }
+      <Normal> { -0.566424 0.813532 0.131535 }
+    }
+    <Vertex> 4462 {
+      6.66407394409 -44.6763458252 22.7401390076
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.684055 0.645150 0.340367 }
+        <Binormal> { -0.451223 0.011972 0.884154 }
+      }
+      <Normal> { -0.484024 0.836024 -0.258339 }
+    }
+    <Vertex> 4463 {
+      3.91500663757 -47.3672142029 21.2607917786
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.587818 0.700163 0.405268 }
+        <Binormal> { -0.383625 -0.199775 0.901567 }
+      }
+      <Normal> { -0.707144 0.691458 -0.147679 }
+    }
+    <Vertex> 4464 {
+      0.142636463046 -54.2646751404 20.8099899292
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.266304 0.956070 0.122527 }
+        <Binormal> { -0.158212 -0.082027 0.983919 }
+      }
+      <Normal> { -0.953490 0.271554 -0.130680 }
+    }
+    <Vertex> 4465 {
+      0.730509102345 -52.2979125977 22.3455543518
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.309282 0.916546 0.253551 }
+        <Binormal> { -0.139504 -0.218861 0.961315 }
+      }
+      <Normal> { -0.908078 0.417158 -0.036805 }
+    }
+    <Vertex> 4466 {
+      1.32257354259 -51.0387268066 19.057466507
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.404186 0.779611 0.478374 }
+        <Binormal> { -0.274554 -0.395399 0.876361 }
+      }
+      <Normal> { -0.878842 0.473067 -0.061892 }
+    }
+    <Vertex> 4467 {
+      0.33462780714 -54.513381958 18.5160083771
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.178231 0.982458 0.054871 }
+        <Binormal> { -0.147793 -0.028384 0.988271 }
+      }
+      <Normal> { -0.977050 0.159124 -0.141545 }
+    }
+    <Vertex> 4468 {
+      0.142636463046 -54.2646751404 20.8099899292
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.266304 0.956070 0.122527 }
+        <Binormal> { -0.158212 -0.082027 0.983919 }
+      }
+      <Normal> { -0.953490 0.271554 -0.130680 }
+    }
+    <Vertex> 4469 {
+      0.33462780714 -54.513381958 18.5160083771
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.178231 0.982458 0.054871 }
+        <Binormal> { -0.147793 -0.028384 0.988271 }
+      }
+      <Normal> { -0.977050 0.159124 -0.141545 }
+    }
+    <Vertex> 4470 {
+      0.142042249441 -57.5461273193 18.6940250397
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.130836 0.991381 -0.006794 }
+        <Binormal> { -0.549043 0.078160 0.831951 }
+      }
+      <Normal> { -0.823267 0.120609 -0.554643 }
+    }
+    <Vertex> 4471 {
+      -0.414448976517 -55.2739105225 21.7288970947
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.305814 0.951821 0.022688 }
+        <Binormal> { -0.412710 0.112223 0.854885 }
+      }
+      <Normal> { -0.721366 0.550249 -0.420484 }
+    }
+    <Vertex> 4472 {
+      0.142636463046 -54.2646751404 20.8099899292
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.266304 0.956070 0.122527 }
+        <Binormal> { -0.158212 -0.082027 0.983919 }
+      }
+      <Normal> { -0.953490 0.271554 -0.130680 }
+    }
+    <Vertex> 4473 {
+      -0.414448976517 -55.2739105225 21.7288970947
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.305814 0.951821 0.022688 }
+        <Binormal> { -0.412710 0.112223 0.854885 }
+      }
+      <Normal> { -0.721366 0.550249 -0.420484 }
+    }
+    <Vertex> 4474 {
+      0.20112003386 -53.0143852234 24.4598331451
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.352541 0.916331 0.189873 }
+        <Binormal> { -0.436045 -0.007096 0.843858 }
+      }
+      <Normal> { -0.664418 0.666677 -0.337718 }
+    }
+    <Vertex> 4475 {
+      0.730509102345 -52.2979125977 22.3455543518
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.309282 0.916546 0.253551 }
+        <Binormal> { -0.139504 -0.218861 0.961315 }
+      }
+      <Normal> { -0.908078 0.417158 -0.036805 }
+    }
+    <Vertex> 4476 {
+      2.15280866623 -49.9083518982 24.8670692444
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.458604 0.592803 0.662018 }
+        <Binormal> { -0.284520 -0.607778 0.741331 }
+      }
+      <Normal> { -0.839106 0.531846 0.113987 }
+    }
+    <Vertex> 4477 {
+      2.54712438583 -48.7211151123 23.1774101257
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.358362 0.510720 0.781500 }
+        <Binormal> { -0.415456 -0.661955 0.623106 }
+      }
+      <Normal> { -0.824641 0.563524 0.048830 }
+    }
+    <Vertex> 4478 {
+      1.32257354259 -51.0387268066 19.057466507
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.404186 0.779611 0.478374 }
+        <Binormal> { -0.274554 -0.395399 0.876361 }
+      }
+      <Normal> { -0.878842 0.473067 -0.061892 }
+    }
+    <Vertex> 4479 {
+      0.730509102345 -52.2979125977 22.3455543518
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.378896 0.636572 0.671724 }
+        <Binormal> { -0.303644 -0.596033 0.736117 }
+      }
+      <Normal> { -0.908078 0.417158 -0.036805 }
+    }
+    <Vertex> 4480 {
+      2.15280866623 -49.9083518982 24.8670692444
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.458604 0.592803 0.662018 }
+        <Binormal> { -0.284520 -0.607778 0.741331 }
+      }
+      <Normal> { -0.839106 0.531846 0.113987 }
+    }
+    <Vertex> 4481 {
+      0.730509102345 -52.2979125977 22.3455543518
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.378896 0.636572 0.671724 }
+        <Binormal> { -0.303644 -0.596033 0.736117 }
+      }
+      <Normal> { -0.908078 0.417158 -0.036805 }
+    }
+    <Vertex> 4482 {
+      0.20112003386 -53.0143852234 24.4598331451
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.414104 0.653861 0.633233 }
+        <Binormal> { -0.642982 -0.280881 0.710511 }
+      }
+      <Normal> { -0.664418 0.666677 -0.337718 }
+    }
+    <Vertex> 4483 {
+      1.96249687672 -50.376991272 26.806678772
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.555204 0.617695 0.556957 }
+        <Binormal> { -0.575456 -0.197832 0.793051 }
+      }
+      <Normal> { -0.615009 0.744163 -0.260628 }
+    }
+    <Vertex> 4484 {
+      2.15280866623 -49.9083518982 24.8670692444
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.458604 0.592803 0.662018 }
+        <Binormal> { -0.284520 -0.607778 0.741331 }
+      }
+      <Normal> { -0.839106 0.531846 0.113987 }
+    }
+    <Vertex> 4485 {
+      1.96249687672 -50.376991272 26.806678772
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.555204 0.617695 0.556957 }
+        <Binormal> { -0.575456 -0.197832 0.793051 }
+      }
+      <Normal> { -0.615009 0.744163 -0.260628 }
+    }
+    <Vertex> 4486 {
+      4.35131406784 -48.3970603943 28.6231327057
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.605720 0.573860 0.551169 }
+        <Binormal> { -0.398509 -0.217340 0.664238 }
+      }
+      <Normal> { -0.141240 0.962798 0.230293 }
+    }
+    <Vertex> 4487 {
+      4.06420469284 -47.8142547607 26.9635543823
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.542059 0.593872 0.594549 }
+        <Binormal> { -0.197228 -0.564086 0.743260 }
+      }
+      <Normal> { -0.613788 0.698721 0.367412 }
+    }
+    <Vertex> 4488 {
+      2.15280866623 -49.9083518982 24.8670692444
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.458604 0.592803 0.662018 }
+        <Binormal> { -0.284520 -0.607778 0.741331 }
+      }
+      <Normal> { -0.839106 0.531846 0.113987 }
+    }
+    <Vertex> 4489 {
+      4.06420469284 -47.8142547607 26.9635543823
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.542059 0.593872 0.594549 }
+        <Binormal> { -0.197228 -0.564086 0.743260 }
+      }
+      <Normal> { -0.613788 0.698721 0.367412 }
+    }
+    <Vertex> 4490 {
+      4.32910919189 -46.7539596558 25.6139812469
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.518789 0.570462 0.636734 }
+        <Binormal> { -0.267891 -0.566632 0.725926 }
+      }
+      <Normal> { -0.628071 0.708640 0.321360 }
+    }
+    <Vertex> 4491 {
+      2.54712438583 -48.7211151123 23.1774101257
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.358362 0.510720 0.781500 }
+        <Binormal> { -0.415456 -0.661955 0.623106 }
+      }
+      <Normal> { -0.824641 0.563524 0.048830 }
+    }
+    <Vertex> 4492 {
+      6.70239067078 -65.6521911621 16.3967418671
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.934179 0.291200 -0.206184 }
+        <Binormal> { -0.123577 0.276434 0.950320 }
+      }
+      <Normal> { -0.266610 -0.934172 0.237068 }
+    }
+    <Vertex> 4493 {
+      7.36922883987 -66.1596908569 14.8362121582
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.084658 -0.952727 0.291757 }
+    }
+    <Vertex> 4494 {
+      8.71514415741 -65.9041290283 15.4456949234
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.965541 -0.064603 -0.252105 }
+        <Binormal> { -0.258039 0.148507 0.950213 }
+      }
+      <Normal> { 0.112583 -0.976592 0.183203 }
+    }
+    <Vertex> 4495 {
+      8.7860622406 -65.6782836914 16.6827316284
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.990636 0.012405 -0.135968 }
+        <Binormal> { -0.130063 0.192938 0.965219 }
+      }
+      <Normal> { 0.079653 -0.975341 0.205695 }
+    }
+    <Vertex> 4496 {
+      6.70239067078 -65.6521911621 16.3967418671
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.934179 0.291200 -0.206184 }
+        <Binormal> { -0.123577 0.276434 0.950320 }
+      }
+      <Normal> { -0.266610 -0.934172 0.237068 }
+    }
+    <Vertex> 4497 {
+      8.7860622406 -65.6782836914 16.6827316284
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.990636 0.012405 -0.135968 }
+        <Binormal> { -0.130063 0.192938 0.965219 }
+      }
+      <Normal> { 0.079653 -0.975341 0.205695 }
+    }
+    <Vertex> 4498 {
+      9.66532993317 -65.1976394653 18.6893939972
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.998109 0.030077 -0.053615 }
+        <Binormal> { -0.047840 0.155297 0.977714 }
+      }
+      <Normal> { 0.094729 -0.982421 0.160680 }
+    }
+    <Vertex> 4499 {
+      6.79624557495 -65.0744857788 18.7093372345
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.974061 0.222561 -0.040878 }
+        <Binormal> { -0.020219 0.094234 0.994859 }
+      }
+      <Normal> { -0.195624 -0.976653 0.088534 }
+    }
+    <Vertex> 4500 {
+      6.70239067078 -65.6521911621 16.3967418671
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.934179 0.291200 -0.206184 }
+        <Binormal> { -0.123577 0.276434 0.950320 }
+      }
+      <Normal> { -0.266610 -0.934172 0.237068 }
+    }
+    <Vertex> 4501 {
+      6.79624557495 -65.0744857788 18.7093372345
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.974061 0.222561 -0.040878 }
+        <Binormal> { -0.020219 0.094234 0.994859 }
+      }
+      <Normal> { -0.195624 -0.976653 0.088534 }
+    }
+    <Vertex> 4502 {
+      4.44768333435 -64.0054702759 18.4704265594
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.713112 0.695485 -0.088165 }
+        <Binormal> { -0.347882 -0.252291 0.823620 }
+      }
+      <Normal> { -0.286691 -0.875362 -0.389233 }
+    }
+    <Vertex> 4503 {
+      5.14664411545 -64.4576644897 16.0152683258
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.681663 0.729809 -0.052096 }
+        <Binormal> { 0.053814 0.120502 0.983965 }
+      }
+      <Normal> { -0.642689 -0.755394 0.127659 }
+    }
+    <Vertex> 4504 {
+      6.70239067078 -65.6521911621 16.3967418671
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.934179 0.291200 -0.206184 }
+        <Binormal> { -0.123577 0.276434 0.950320 }
+      }
+      <Normal> { -0.266610 -0.934172 0.237068 }
+    }
+    <Vertex> 4505 {
+      5.14664411545 -64.4576644897 16.0152683258
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.681663 0.729809 -0.052096 }
+        <Binormal> { 0.053814 0.120502 0.983965 }
+      }
+      <Normal> { -0.642689 -0.755394 0.127659 }
+    }
+    <Vertex> 4506 {
+      6.00489807129 -66.2164764404 13.7195005417
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.710103 0.701061 -0.065326 }
+        <Binormal> { 0.542944 0.600404 0.541510 }
+      }
+      <Normal> { -0.257790 -0.508072 0.821802 }
+    }
+    <Vertex> 4507 {
+      7.36922883987 -66.1596908569 14.8362121582
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.084658 -0.952727 0.291757 }
+    }
+    <Vertex> 4508 {
+      12.6143264771 -65.0471191406 16.3052482605
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.903116 -0.412257 0.120111 }
+        <Binormal> { 0.120189 0.025603 0.991576 }
+      }
+      <Normal> { 0.375164 -0.926695 -0.021546 }
+    }
+    <Vertex> 4509 {
+      10.5501489639 -65.6284942627 14.950138092
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.891444 -0.367574 0.264985 }
+        <Binormal> { 0.188948 0.227554 0.951299 }
+      }
+      <Normal> { 0.332774 -0.929929 0.156346 }
+    }
+    <Vertex> 4510 {
+      14.2475652695 -63.6229171753 13.8011636734
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.811940 -0.554510 0.182405 }
+        <Binormal> { -0.001130 0.313165 0.946988 }
+      }
+      <Normal> { 0.640004 -0.729240 0.241920 }
+    }
+    <Vertex> 4511 {
+      16.4580364227 -61.9025306702 15.7600812912
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.769362 -0.629425 0.109121 }
+        <Binormal> { 0.373416 -0.309880 0.845349 }
+      }
+      <Normal> { 0.670095 -0.550554 -0.497818 }
+    }
+    <Vertex> 4512 {
+      12.6143264771 -65.0471191406 16.3052482605
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.903116 -0.412257 0.120111 }
+        <Binormal> { 0.120189 0.025603 0.991576 }
+      }
+      <Normal> { 0.375164 -0.926695 -0.021546 }
+    }
+    <Vertex> 4513 {
+      16.4580364227 -61.9025306702 15.7600812912
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.769362 -0.629425 0.109121 }
+        <Binormal> { 0.373416 -0.309880 0.845349 }
+      }
+      <Normal> { 0.670095 -0.550554 -0.497818 }
+    }
+    <Vertex> 4514 {
+      19.3550624847 -61.0774497986 18.1140480042
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.810954 -0.580497 0.073319 }
+        <Binormal> { 0.152094 -0.096035 0.921904 }
+      }
+      <Normal> { 0.806299 -0.559648 -0.191321 }
+    }
+    <Vertex> 4515 {
+      14.1863203049 -64.3841552734 18.3837013245
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.918890 -0.390723 0.054561 }
+        <Binormal> { 0.029169 0.070625 0.997012 }
+      }
+      <Normal> { 0.384686 -0.921445 0.054018 }
+    }
+    <Vertex> 4516 {
+      12.6143264771 -65.0471191406 16.3052482605
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.903116 -0.412257 0.120111 }
+        <Binormal> { 0.120189 0.025603 0.991576 }
+      }
+      <Normal> { 0.375164 -0.926695 -0.021546 }
+    }
+    <Vertex> 4517 {
+      14.1863203049 -64.3841552734 18.3837013245
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.918890 -0.390723 0.054561 }
+        <Binormal> { 0.029169 0.070625 0.997012 }
+      }
+      <Normal> { 0.384686 -0.921445 0.054018 }
+    }
+    <Vertex> 4518 {
+      9.66532993317 -65.1976394653 18.6893939972
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.982171 -0.169942 0.080366 }
+        <Binormal> { 0.051647 0.165428 0.981005 }
+      }
+      <Normal> { 0.094729 -0.982421 0.160680 }
+    }
+    <Vertex> 4519 {
+      8.7860622406 -65.6782836914 16.6827316284
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.982043 -0.161909 0.096834 }
+        <Binormal> { 0.061142 0.209714 0.970724 }
+      }
+      <Normal> { 0.079653 -0.975341 0.205695 }
+    }
+    <Vertex> 4520 {
+      12.6143264771 -65.0471191406 16.3052482605
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.903116 -0.412257 0.120111 }
+        <Binormal> { 0.120189 0.025603 0.991576 }
+      }
+      <Normal> { 0.375164 -0.926695 -0.021546 }
+    }
+    <Vertex> 4521 {
+      8.7860622406 -65.6782836914 16.6827316284
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.982043 -0.161909 0.096834 }
+        <Binormal> { 0.061142 0.209714 0.970724 }
+      }
+      <Normal> { 0.079653 -0.975341 0.205695 }
+    }
+    <Vertex> 4522 {
+      8.71514415741 -65.9041290283 15.4456949234
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.718440 -0.044750 0.694147 }
+        <Binormal> { 0.669701 0.209769 0.706662 }
+      }
+      <Normal> { 0.112583 -0.976592 0.183203 }
+    }
+    <Vertex> 4523 {
+      10.5501489639 -65.6284942627 14.950138092
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.891444 -0.367574 0.264985 }
+        <Binormal> { 0.188948 0.227554 0.951299 }
+      }
+      <Normal> { 0.332774 -0.929929 0.156346 }
+    }
+    <Vertex> 4524 {
+      2.90215539932 -61.5835418701 16.1063098907
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.544524 0.837641 0.043015 }
+        <Binormal> { 0.026527 -0.034058 0.999028 }
+      }
+      <Normal> { -0.835047 -0.550127 0.003418 }
+    }
+    <Vertex> 4525 {
+      1.02450740337 -57.987613678 16.3203239441
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.317856 0.947742 0.027449 }
+        <Binormal> { -0.061378 -0.049405 0.995070 }
+      }
+      <Normal> { -0.963378 -0.258095 -0.072237 }
+    }
+    <Vertex> 4526 {
+      0.800136804581 -58.5618629456 14.3294782639
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.118072 0.990996 0.063128 }
+        <Binormal> { 0.547354 0.012032 0.834860 }
+      }
+      <Normal> { -0.833308 -0.076693 0.547441 }
+    }
+    <Vertex> 4527 {
+      2.8804795742 -62.3616981506 14.304930687
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.561065 0.825156 0.065755 }
+        <Binormal> { 0.636256 0.379105 0.671588 }
+      }
+      <Normal> { -0.540269 -0.402417 0.739006 }
+    }
+    <Vertex> 4528 {
+      2.90215539932 -61.5835418701 16.1063098907
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.544524 0.837641 0.043015 }
+        <Binormal> { 0.026527 -0.034058 0.999028 }
+      }
+      <Normal> { -0.835047 -0.550127 0.003418 }
+    }
+    <Vertex> 4529 {
+      2.8804795742 -62.3616981506 14.304930687
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.561065 0.825156 0.065755 }
+        <Binormal> { 0.636256 0.379105 0.671588 }
+      }
+      <Normal> { -0.540269 -0.402417 0.739006 }
+    }
+    <Vertex> 4530 {
+      6.00489807129 -66.2164764404 13.7195005417
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.710103 0.701061 -0.065326 }
+        <Binormal> { 0.542944 0.600404 0.541510 }
+      }
+      <Normal> { -0.257790 -0.508072 0.821802 }
+    }
+    <Vertex> 4531 {
+      5.14664411545 -64.4576644897 16.0152683258
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.681663 0.729809 -0.052096 }
+        <Binormal> { 0.053814 0.120502 0.983965 }
+      }
+      <Normal> { -0.642689 -0.755394 0.127659 }
+    }
+    <Vertex> 4532 {
+      2.90215539932 -61.5835418701 16.1063098907
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.544524 0.837641 0.043015 }
+        <Binormal> { 0.026527 -0.034058 0.999028 }
+      }
+      <Normal> { -0.835047 -0.550127 0.003418 }
+    }
+    <Vertex> 4533 {
+      5.14664411545 -64.4576644897 16.0152683258
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.681663 0.729809 -0.052096 }
+        <Binormal> { 0.053814 0.120502 0.983965 }
+      }
+      <Normal> { -0.642689 -0.755394 0.127659 }
+    }
+    <Vertex> 4534 {
+      4.44768333435 -64.0054702759 18.4704265594
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.713112 0.695485 -0.088165 }
+        <Binormal> { -0.347882 -0.252291 0.823620 }
+      }
+      <Normal> { -0.286691 -0.875362 -0.389233 }
+    }
+    <Vertex> 4535 {
+      2.04483437538 -61.165222168 17.7630882263
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.554418 0.831740 0.028792 }
+        <Binormal> { -0.592750 -0.418922 0.687805 }
+      }
+      <Normal> { -0.585315 -0.362499 -0.725211 }
+    }
+    <Vertex> 4536 {
+      2.90215539932 -61.5835418701 16.1063098907
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.544524 0.837641 0.043015 }
+        <Binormal> { 0.026527 -0.034058 0.999028 }
+      }
+      <Normal> { -0.835047 -0.550127 0.003418 }
+    }
+    <Vertex> 4537 {
+      2.04483437538 -61.165222168 17.7630882263
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.554418 0.831740 0.028792 }
+        <Binormal> { -0.592750 -0.418922 0.687805 }
+      }
+      <Normal> { -0.585315 -0.362499 -0.725211 }
+    }
+    <Vertex> 4538 {
+      0.142042249441 -57.5461273193 18.6940250397
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.295726 0.953767 0.053610 }
+        <Binormal> { -0.535467 -0.208157 0.749538 }
+      }
+      <Normal> { -0.823267 0.120609 -0.554643 }
+    }
+    <Vertex> 4539 {
+      1.02450740337 -57.987613678 16.3203239441
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.317856 0.947742 0.027449 }
+        <Binormal> { -0.061378 -0.049405 0.995070 }
+      }
+      <Normal> { -0.963378 -0.258095 -0.072237 }
+    }
+    <Vertex> 4540 {
+      18.5880470276 -54.3883590698 15.5430364609
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.147185 -0.988831 0.023472 }
+        <Binormal> { 0.639468 -0.077027 0.764888 }
+      }
+      <Normal> { 0.755516 -0.121006 -0.643818 }
+    }
+    <Vertex> 4541 {
+      16.4889125824 -55.0806159973 13.9703378677
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.260575 -0.965454 0.000276 }
+        <Binormal> { 0.600673 -0.161897 0.781690 }
+      }
+      <Normal> { 0.765923 -0.162053 -0.622120 }
+    }
+    <Vertex> 4542 {
+      18.5573348999 -47.6548233032 13.7965936661
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.145135 -0.989208 0.020072 }
+        <Binormal> { 0.112688 -0.003140 0.660074 }
+      }
+      <Normal> { 0.760674 0.636586 -0.126835 }
+    }
+    <Vertex> 4543 {
+      18.6675643921 -47.174282074 15.4197187424
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.011020 -0.999793 0.017091 }
+        <Binormal> { 0.521682 0.007446 0.771996 }
+      }
+      <Normal> { 0.775964 0.345500 -0.527696 }
+    }
+    <Vertex> 4544 {
+      18.5880470276 -54.3883590698 15.5430364609
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.147185 -0.988831 0.023472 }
+        <Binormal> { 0.639468 -0.077027 0.764888 }
+      }
+      <Normal> { 0.755516 -0.121006 -0.643818 }
+    }
+    <Vertex> 4545 {
+      18.6675643921 -47.174282074 15.4197187424
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.011020 -0.999793 0.017091 }
+        <Binormal> { 0.521682 0.007446 0.771996 }
+      }
+      <Normal> { 0.775964 0.345500 -0.527696 }
+    }
+    <Vertex> 4546 {
+      19.5960426331 -46.2401428223 17.3689231873
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.042306 -0.999086 -0.006136 }
+        <Binormal> { 0.370508 0.010694 0.813293 }
+      }
+      <Normal> { 0.793512 0.484725 -0.367870 }
+    }
+    <Vertex> 4547 {
+      20.2951412201 -53.6578598022 17.15574646
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.016219 -0.998610 0.050150 }
+        <Binormal> { 0.548625 0.033035 0.835238 }
+      }
+      <Normal> { 0.835475 -0.057009 -0.546525 }
+    }
+    <Vertex> 4548 {
+      18.5880470276 -54.3883590698 15.5430364609
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.147185 -0.988831 0.023472 }
+        <Binormal> { 0.639468 -0.077027 0.764888 }
+      }
+      <Normal> { 0.755516 -0.121006 -0.643818 }
+    }
+    <Vertex> 4549 {
+      20.2951412201 -53.6578598022 17.15574646
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.016219 -0.998610 0.050150 }
+        <Binormal> { 0.548625 0.033035 0.835238 }
+      }
+      <Normal> { 0.835475 -0.057009 -0.546525 }
+    }
+    <Vertex> 4550 {
+      19.3550624847 -61.0774497986 18.1140480042
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.200773 -0.976618 0.076864 }
+        <Binormal> { 0.229864 0.023563 0.899808 }
+      }
+      <Normal> { 0.806299 -0.559648 -0.191321 }
+    }
+    <Vertex> 4551 {
+      16.4580364227 -61.9025306702 15.7600812912
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.272615 -0.961722 0.027779 }
+        <Binormal> { 0.494056 -0.117098 0.794534 }
+      }
+      <Normal> { 0.670095 -0.550554 -0.497818 }
+    }
+    <Vertex> 4552 {
+      18.5880470276 -54.3883590698 15.5430364609
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.147185 -0.988831 0.023472 }
+        <Binormal> { 0.639468 -0.077027 0.764888 }
+      }
+      <Normal> { 0.755516 -0.121006 -0.643818 }
+    }
+    <Vertex> 4553 {
+      16.4580364227 -61.9025306702 15.7600812912
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.272615 -0.961722 0.027779 }
+        <Binormal> { 0.494056 -0.117098 0.794534 }
+      }
+      <Normal> { 0.670095 -0.550554 -0.497818 }
+    }
+    <Vertex> 4554 {
+      14.2475652695 -63.6229171753 13.8011636734
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.262687 -0.964877 0.002877 }
+        <Binormal> { -0.231325 0.065390 0.809086 }
+      }
+      <Normal> { 0.640004 -0.729240 0.241920 }
+    }
+    <Vertex> 4555 {
+      16.4889125824 -55.0806159973 13.9703378677
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.260575 -0.965454 0.000276 }
+        <Binormal> { 0.600673 -0.161897 0.781690 }
+      }
+      <Normal> { 0.765923 -0.162053 -0.622120 }
+    }
+    <Vertex> 4556 {
+      18.3459243774 -49.8342285156 23.8783550262
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.742605 0.294385 -0.601561 }
+        <Binormal> { 0.396408 -0.917123 0.040540 }
+      }
+      <Normal> { 0.544145 0.270302 0.794214 }
+    }
+    <Vertex> 4557 {
+      19.7315807343 -48.3282279968 22.2940330505
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.677678 0.360034 -0.641193 }
+        <Binormal> { 0.461215 -0.862479 0.003171 }
+      }
+      <Normal> { 0.692984 0.372845 0.617023 }
+    }
+    <Vertex> 4558 {
+      17.6717739105 -45.9213790894 22.1716346741
+      <UV>  {
+        -0.042124 0.762705
+        <Tangent> { 0.914994 -0.284435 -0.286152 }
+        <Binormal> { -0.001536 -0.707337 0.698182 }
+      }
+      <Normal> { 0.501938 0.607013 0.616077 }
+    }
+    <Vertex> 4559 {
+      16.1216907501 -47.2420883179 23.9381656647
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.780113 0.266136 -0.566211 }
+        <Binormal> { 0.458192 -0.859026 0.227519 }
+      }
+      <Normal> { 0.412091 0.432234 0.802057 }
+    }
+    <Vertex> 4560 {
+      18.3459243774 -49.8342285156 23.8783550262
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.742605 0.294385 -0.601561 }
+        <Binormal> { 0.396408 -0.917123 0.040540 }
+      }
+      <Normal> { 0.544145 0.270302 0.794214 }
+    }
+    <Vertex> 4561 {
+      16.1216907501 -47.2420883179 23.9381656647
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.780113 0.266136 -0.566211 }
+        <Binormal> { 0.458192 -0.859026 0.227519 }
+      }
+      <Normal> { 0.412091 0.432234 0.802057 }
+    }
+    <Vertex> 4562 {
+      13.9417600632 -48.6074409485 25.5346794128
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.818966 0.276797 -0.502670 }
+        <Binormal> { 0.425069 -0.881009 0.207406 }
+      }
+      <Normal> { 0.378399 0.381146 0.843501 }
+    }
+    <Vertex> 4563 {
+      16.544752121 -51.2660331726 25.2850551605
+      <UV>  {
+        0.053131 0.854502
+        <Tangent> { 0.796239 0.302486 -0.523932 }
+        <Binormal> { 0.385015 -0.921210 0.053271 }
+      }
+      <Normal> { 0.478774 0.248787 0.841914 }
+    }
+    <Vertex> 4564 {
+      18.3459243774 -49.8342285156 23.8783550262
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.742605 0.294385 -0.601561 }
+        <Binormal> { 0.396408 -0.917123 0.040540 }
+      }
+      <Normal> { 0.544145 0.270302 0.794214 }
+    }
+    <Vertex> 4565 {
+      16.544752121 -51.2660331726 25.2850551605
+      <UV>  {
+        0.053131 0.854502
+        <Tangent> { 0.796239 0.302486 -0.523932 }
+        <Binormal> { 0.385015 -0.921210 0.053271 }
+      }
+      <Normal> { 0.478774 0.248787 0.841914 }
+    }
+    <Vertex> 4566 {
+      17.7866420746 -54.2352256775 25.1051540375
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.785403 0.210306 -0.582163 }
+        <Binormal> { 0.176083 -0.976814 -0.115317 }
+      }
+      <Normal> { 0.623096 0.020020 0.781854 }
+    }
+    <Vertex> 4567 {
+      19.6807785034 -53.1965560913 23.4898300171
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.695595 0.250399 -0.673385 }
+        <Binormal> { 0.174197 -0.967130 -0.179686 }
+      }
+      <Normal> { 0.727348 0.003510 0.686239 }
+    }
+    <Vertex> 4568 {
+      18.3459243774 -49.8342285156 23.8783550262
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.742605 0.294385 -0.601561 }
+        <Binormal> { 0.396408 -0.917123 0.040540 }
+      }
+      <Normal> { 0.544145 0.270302 0.794214 }
+    }
+    <Vertex> 4569 {
+      19.6807785034 -53.1965560913 23.4898300171
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.695595 0.250399 -0.673385 }
+        <Binormal> { 0.174197 -0.967130 -0.179686 }
+      }
+      <Normal> { 0.727348 0.003510 0.686239 }
+    }
+    <Vertex> 4570 {
+      20.973526001 -51.46692276 21.6388015747
+      <UV>  {
+        -0.073782 0.891829
+        <Tangent> { 0.617552 0.357358 -0.700660 }
+        <Binormal> { 0.204785 -0.895695 -0.276337 }
+      }
+      <Normal> { 0.900327 0.073519 0.428907 }
+    }
+    <Vertex> 4571 {
+      19.7315807343 -48.3282279968 22.2940330505
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.677678 0.360034 -0.641193 }
+        <Binormal> { 0.461215 -0.862479 0.003171 }
+      }
+      <Normal> { 0.692984 0.372845 0.617023 }
+    }
+    <Vertex> 4572 {
+      20.2063617706 -46.9568443298 20.5103626251
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.418392 -0.353347 -0.836716 }
+        <Binormal> { 0.300290 -0.812302 0.493194 }
+      }
+      <Normal> { 0.819727 0.486496 0.302164 }
+    }
+    <Vertex> 4573 {
+      20.9874038696 -48.8292274475 19.6041164398
+      <UV>  {
+        0.583333 0.416667
+        <Tangent> { 0.163010 -0.949599 -0.267749 }
+        <Binormal> { 0.079211 -0.257263 0.960633 }
+      }
+      <Normal> { 0.969939 0.242805 -0.014954 }
+    }
+    <Vertex> 4574 {
+      19.5960426331 -46.2401428223 17.3689231873
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.169912 -0.945513 -0.277733 }
+        <Binormal> { 0.482450 -0.157879 0.832636 }
+      }
+      <Normal> { 0.793512 0.484725 -0.367870 }
+    }
+    <Vertex> 4575 {
+      18.639831543 -45.105884552 19.8413410187
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.371217 -0.061494 -0.926508 }
+        <Binormal> { 0.672192 -0.670463 0.313822 }
+      }
+      <Normal> { 0.644215 0.738670 0.198248 }
+    }
+    <Vertex> 4576 {
+      20.2063617706 -46.9568443298 20.5103626251
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.418392 -0.353347 -0.836716 }
+        <Binormal> { 0.300290 -0.812302 0.493194 }
+      }
+      <Normal> { 0.819727 0.486496 0.302164 }
+    }
+    <Vertex> 4577 {
+      18.639831543 -45.105884552 19.8413410187
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.371217 -0.061494 -0.926508 }
+        <Binormal> { 0.672192 -0.670463 0.313822 }
+      }
+      <Normal> { 0.644215 0.738670 0.198248 }
+    }
+    <Vertex> 4578 {
+      17.6717739105 -45.9213790894 22.1716346741
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.460870 0.283846 -0.840851 }
+        <Binormal> { 0.685278 -0.705986 0.137281 }
+      }
+      <Normal> { 0.501938 0.607013 0.616077 }
+    }
+    <Vertex> 4579 {
+      19.7315807343 -48.3282279968 22.2940330505
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.469996 0.205008 -0.858531 }
+        <Binormal> { 0.446593 -0.884947 0.033169 }
+      }
+      <Normal> { 0.692984 0.372845 0.617023 }
+    }
+    <Vertex> 4580 {
+      20.2063617706 -46.9568443298 20.5103626251
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.418392 -0.353347 -0.836716 }
+        <Binormal> { 0.300290 -0.812302 0.493194 }
+      }
+      <Normal> { 0.819727 0.486496 0.302164 }
+    }
+    <Vertex> 4581 {
+      19.7315807343 -48.3282279968 22.2940330505
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.469996 0.205008 -0.858531 }
+        <Binormal> { 0.446593 -0.884947 0.033169 }
+      }
+      <Normal> { 0.692984 0.372845 0.617023 }
+    }
+    <Vertex> 4582 {
+      20.973526001 -51.46692276 21.6388015747
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.160867 -0.953322 -0.255536 }
+        <Binormal> { -0.390100 -0.299063 0.870128 }
+      }
+      <Normal> { 0.900327 0.073519 0.428907 }
+    }
+    <Vertex> 4583 {
+      20.9874038696 -48.8292274475 19.6041164398
+      <UV>  {
+        0.583333 0.416667
+        <Tangent> { 0.163010 -0.949599 -0.267749 }
+        <Binormal> { 0.079211 -0.257263 0.960633 }
+      }
+      <Normal> { 0.969939 0.242805 -0.014954 }
+    }
+    <Vertex> 4584 {
+      21.2181434631 -52.8508872986 18.8484764099
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.008243 -0.999841 0.015804 }
+        <Binormal> { 0.256933 0.017387 0.966007 }
+      }
+      <Normal> { 0.966308 -0.017884 -0.256691 }
+    }
+    <Vertex> 4585 {
+      20.2951412201 -53.6578598022 17.15574646
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.016219 -0.998610 0.050150 }
+        <Binormal> { 0.548625 0.033035 0.835238 }
+      }
+      <Normal> { 0.835475 -0.057009 -0.546525 }
+    }
+    <Vertex> 4586 {
+      19.5960426331 -46.2401428223 17.3689231873
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.169912 -0.945513 -0.277733 }
+        <Binormal> { 0.482450 -0.157879 0.832636 }
+      }
+      <Normal> { 0.793512 0.484725 -0.367870 }
+    }
+    <Vertex> 4587 {
+      20.9874038696 -48.8292274475 19.6041164398
+      <UV>  {
+        0.583333 0.416667
+        <Tangent> { 0.163010 -0.949599 -0.267749 }
+        <Binormal> { 0.079211 -0.257263 0.960633 }
+      }
+      <Normal> { 0.969939 0.242805 -0.014954 }
+    }
+    <Vertex> 4588 {
+      21.2181434631 -52.8508872986 18.8484764099
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.008243 -0.999841 0.015804 }
+        <Binormal> { 0.256933 0.017387 0.966007 }
+      }
+      <Normal> { 0.966308 -0.017884 -0.256691 }
+    }
+    <Vertex> 4589 {
+      20.9874038696 -48.8292274475 19.6041164398
+      <UV>  {
+        0.583333 0.416667
+        <Tangent> { 0.163010 -0.949599 -0.267749 }
+        <Binormal> { 0.079211 -0.257263 0.960633 }
+      }
+      <Normal> { 0.969939 0.242805 -0.014954 }
+    }
+    <Vertex> 4590 {
+      20.973526001 -51.46692276 21.6388015747
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.160867 -0.953322 -0.255536 }
+        <Binormal> { -0.390100 -0.299063 0.870128 }
+      }
+      <Normal> { 0.900327 0.073519 0.428907 }
+    }
+    <Vertex> 4591 {
+      21.0316944122 -56.1348190308 20.283498764
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.091612 -0.981140 0.170207 }
+        <Binormal> { -0.111728 0.178432 0.968413 }
+      }
+      <Normal> { 0.968291 -0.200659 0.148686 }
+    }
+    <Vertex> 4592 {
+      21.2181434631 -52.8508872986 18.8484764099
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.008243 -0.999841 0.015804 }
+        <Binormal> { 0.256933 0.017387 0.966007 }
+      }
+      <Normal> { 0.966308 -0.017884 -0.256691 }
+    }
+    <Vertex> 4593 {
+      21.0316944122 -56.1348190308 20.283498764
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.091612 -0.981140 0.170207 }
+        <Binormal> { -0.111728 0.178432 0.968413 }
+      }
+      <Normal> { 0.968291 -0.200659 0.148686 }
+    }
+    <Vertex> 4594 {
+      19.3550624847 -61.0774497986 18.1140480042
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.463189 -0.881636 0.090410 }
+        <Binormal> { 0.219273 -0.015720 0.970085 }
+      }
+      <Normal> { 0.806299 -0.559648 -0.191321 }
+    }
+    <Vertex> 4595 {
+      20.2951412201 -53.6578598022 17.15574646
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.016219 -0.998610 0.050150 }
+        <Binormal> { 0.548625 0.033035 0.835238 }
+      }
+      <Normal> { 0.835475 -0.057009 -0.546525 }
+    }
+    <Vertex> 4596 {
+      19.4992465973 -57.4844169617 22.4837493896
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.207616 -0.950725 -0.230254 }
+        <Binormal> { -0.556879 -0.078633 0.826806 }
+      }
+      <Normal> { 0.805872 -0.292093 0.515000 }
+    }
+    <Vertex> 4597 {
+      17.7023677826 -61.4232521057 21.5405807495
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.405535 -0.888950 -0.212862 }
+        <Binormal> { -0.436388 -0.010732 0.876205 }
+      }
+      <Normal> { 0.698416 -0.629658 0.340129 }
+    }
+    <Vertex> 4598 {
+      19.3550624847 -61.0774497986 18.1140480042
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.346255 -0.885344 -0.310280 }
+        <Binormal> { -0.004263 -0.316424 0.907633 }
+      }
+      <Normal> { 0.806299 -0.559648 -0.191321 }
+    }
+    <Vertex> 4599 {
+      21.0316944122 -56.1348190308 20.283498764
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.156167 -0.927329 -0.340107 }
+        <Binormal> { -0.206127 -0.306103 0.929261 }
+      }
+      <Normal> { 0.968291 -0.200659 0.148686 }
+    }
+    <Vertex> 4600 {
+      19.4992465973 -57.4844169617 22.4837493896
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.207616 -0.950725 -0.230254 }
+        <Binormal> { -0.556879 -0.078633 0.826806 }
+      }
+      <Normal> { 0.805872 -0.292093 0.515000 }
+    }
+    <Vertex> 4601 {
+      21.0316944122 -56.1348190308 20.283498764
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.156167 -0.927329 -0.340107 }
+        <Binormal> { -0.206127 -0.306103 0.929261 }
+      }
+      <Normal> { 0.968291 -0.200659 0.148686 }
+    }
+    <Vertex> 4602 {
+      20.973526001 -51.46692276 21.6388015747
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.013318 -0.966866 -0.254936 }
+        <Binormal> { -0.395953 -0.223813 0.869516 }
+      }
+      <Normal> { 0.900327 0.073519 0.428907 }
+    }
+    <Vertex> 4603 {
+      19.6807785034 -53.1965560913 23.4898300171
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.041182 -0.972734 -0.228237 }
+        <Binormal> { -0.666727 -0.137747 0.707371 }
+      }
+      <Normal> { 0.727348 0.003510 0.686239 }
+    }
+    <Vertex> 4604 {
+      19.4992465973 -57.4844169617 22.4837493896
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.207616 -0.950725 -0.230254 }
+        <Binormal> { -0.556879 -0.078633 0.826806 }
+      }
+      <Normal> { 0.805872 -0.292093 0.515000 }
+    }
+    <Vertex> 4605 {
+      19.6807785034 -53.1965560913 23.4898300171
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.041182 -0.972734 -0.228237 }
+        <Binormal> { -0.666727 -0.137747 0.707371 }
+      }
+      <Normal> { 0.727348 0.003510 0.686239 }
+    }
+    <Vertex> 4606 {
+      17.7866420746 -54.2352256775 25.1051540375
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.057063 -0.982278 -0.178533 }
+        <Binormal> { -0.764423 -0.066629 0.610911 }
+      }
+      <Normal> { 0.623096 0.020020 0.781854 }
+    }
+    <Vertex> 4607 {
+      17.522693634 -57.6158752441 24.7174491882
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.228486 -0.970485 -0.077154 }
+        <Binormal> { -0.641911 0.090598 0.761381 }
+      }
+      <Normal> { 0.731468 -0.225410 0.643513 }
+    }
+    <Vertex> 4608 {
+      19.4992465973 -57.4844169617 22.4837493896
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.207616 -0.950725 -0.230254 }
+        <Binormal> { -0.556879 -0.078633 0.826806 }
+      }
+      <Normal> { 0.805872 -0.292093 0.515000 }
+    }
+    <Vertex> 4609 {
+      17.522693634 -57.6158752441 24.7174491882
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.228486 -0.970485 -0.077154 }
+        <Binormal> { -0.641911 0.090598 0.761381 }
+      }
+      <Normal> { 0.731468 -0.225410 0.643513 }
+    }
+    <Vertex> 4610 {
+      16.1790218353 -61.0635375977 24.562297821
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.275516 -0.958281 0.076084 }
+        <Binormal> { -0.073036 0.098859 0.980658 }
+      }
+      <Normal> { 0.905362 -0.410382 0.108798 }
+    }
+    <Vertex> 4611 {
+      17.7023677826 -61.4232521057 21.5405807495
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.405535 -0.888950 -0.212862 }
+        <Binormal> { -0.436388 -0.010732 0.876205 }
+      }
+      <Normal> { 0.698416 -0.629658 0.340129 }
+    }
+    <Vertex> 4612 {
+      14.1911773682 -63.7384796143 21.3407783508
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.898102 -0.439775 -0.003214 }
+        <Binormal> { -0.075391 0.146754 0.986208 }
+      }
+      <Normal> { 0.423963 -0.890500 0.164922 }
+    }
+    <Vertex> 4613 {
+      10.3039121628 -64.804107666 21.5011901855
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.963656 -0.264170 0.039766 }
+        <Binormal> { 0.028597 0.045363 0.994336 }
+      }
+      <Normal> { 0.176366 -0.983490 0.039796 }
+    }
+    <Vertex> 4614 {
+      9.66532993317 -65.1976394653 18.6893939972
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.974501 -0.217785 0.054021 }
+        <Binormal> { 0.018077 0.161700 0.978001 }
+      }
+      <Normal> { 0.094729 -0.982421 0.160680 }
+    }
+    <Vertex> 4615 {
+      14.1863203049 -64.3841552734 18.3837013245
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.918890 -0.390723 0.054561 }
+        <Binormal> { 0.029169 0.070625 0.997012 }
+      }
+      <Normal> { 0.384686 -0.921445 0.054018 }
+    }
+    <Vertex> 4616 {
+      14.1911773682 -63.7384796143 21.3407783508
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.898102 -0.439775 -0.003214 }
+        <Binormal> { -0.075391 0.146754 0.986208 }
+      }
+      <Normal> { 0.423963 -0.890500 0.164922 }
+    }
+    <Vertex> 4617 {
+      14.1863203049 -64.3841552734 18.3837013245
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.918890 -0.390723 0.054561 }
+        <Binormal> { 0.029169 0.070625 0.997012 }
+      }
+      <Normal> { 0.384686 -0.921445 0.054018 }
+    }
+    <Vertex> 4618 {
+      19.3550624847 -61.0774497986 18.1140480042
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.463189 -0.881636 0.090410 }
+        <Binormal> { 0.219273 -0.015720 0.970085 }
+      }
+      <Normal> { 0.806299 -0.559648 -0.191321 }
+    }
+    <Vertex> 4619 {
+      17.7023677826 -61.4232521057 21.5405807495
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.833905 -0.549865 -0.047453 }
+        <Binormal> { -0.216904 0.250493 0.909109 }
+      }
+      <Normal> { 0.698416 -0.629658 0.340129 }
+    }
+    <Vertex> 4620 {
+      14.1911773682 -63.7384796143 21.3407783508
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.898102 -0.439775 -0.003214 }
+        <Binormal> { -0.075391 0.146754 0.986208 }
+      }
+      <Normal> { 0.423963 -0.890500 0.164922 }
+    }
+    <Vertex> 4621 {
+      17.7023677826 -61.4232521057 21.5405807495
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.833905 -0.549865 -0.047453 }
+        <Binormal> { -0.216904 0.250493 0.909109 }
+      }
+      <Normal> { 0.698416 -0.629658 0.340129 }
+    }
+    <Vertex> 4622 {
+      16.1790218353 -61.0635375977 24.562297821
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.774540 -0.623056 -0.109035 }
+        <Binormal> { -0.112533 -0.014447 0.881949 }
+      }
+      <Normal> { 0.905362 -0.410382 0.108798 }
+    }
+    <Vertex> 4623 {
+      13.820561409 -63.4699745178 23.9358100891
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.817281 -0.568877 -0.091820 }
+        <Binormal> { 0.064220 -0.248001 0.964886 }
+      }
+      <Normal> { 0.524552 -0.815485 -0.244514 }
+    }
+    <Vertex> 4624 {
+      14.1911773682 -63.7384796143 21.3407783508
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.898102 -0.439775 -0.003214 }
+        <Binormal> { -0.075391 0.146754 0.986208 }
+      }
+      <Normal> { 0.423963 -0.890500 0.164922 }
+    }
+    <Vertex> 4625 {
+      13.820561409 -63.4699745178 23.9358100891
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.817281 -0.568877 -0.091820 }
+        <Binormal> { 0.064220 -0.248001 0.964886 }
+      }
+      <Normal> { 0.524552 -0.815485 -0.244514 }
+    }
+    <Vertex> 4626 {
+      10.808093071 -64.8020248413 23.9588832855
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.807090 -0.522825 0.274336 }
+        <Binormal> { 0.432611 -0.217444 0.858331 }
+      }
+      <Normal> { 0.252205 -0.900113 -0.355144 }
+    }
+    <Vertex> 4627 {
+      10.3039121628 -64.804107666 21.5011901855
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.963656 -0.264170 0.039766 }
+        <Binormal> { 0.028597 0.045363 0.994336 }
+      }
+      <Normal> { 0.176366 -0.983490 0.039796 }
+    }
+    <Vertex> 4628 {
+      7.37881088257 -64.9941482544 21.6386623383
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.999876 -0.008470 -0.013244 }
+        <Binormal> { -0.012367 -0.096337 0.995257 }
+      }
+      <Normal> { 0.009369 -0.995300 -0.096225 }
+    }
+    <Vertex> 4629 {
+      5.43875074387 -65.0797805786 21.6685352325
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.998909 -0.044091 0.015381 }
+        <Binormal> { 0.028887 -0.332409 0.923183 }
+      }
+      <Normal> { 0.226081 -0.914212 -0.336253 }
+    }
+    <Vertex> 4630 {
+      4.44768333435 -64.0054702759 18.4704265594
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.666681 0.374301 -0.644543 }
+        <Binormal> { -0.709899 -0.074710 0.690896 }
+      }
+      <Normal> { -0.286691 -0.875362 -0.389233 }
+    }
+    <Vertex> 4631 {
+      6.79624557495 -65.0744857788 18.7093372345
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.974061 0.222561 -0.040878 }
+        <Binormal> { -0.020219 0.094234 0.994859 }
+      }
+      <Normal> { -0.195624 -0.976653 0.088534 }
+    }
+    <Vertex> 4632 {
+      7.37881088257 -64.9941482544 21.6386623383
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.999876 -0.008470 -0.013244 }
+        <Binormal> { -0.012367 -0.096337 0.995257 }
+      }
+      <Normal> { 0.009369 -0.995300 -0.096225 }
+    }
+    <Vertex> 4633 {
+      6.79624557495 -65.0744857788 18.7093372345
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.974061 0.222561 -0.040878 }
+        <Binormal> { -0.020219 0.094234 0.994859 }
+      }
+      <Normal> { -0.195624 -0.976653 0.088534 }
+    }
+    <Vertex> 4634 {
+      9.66532993317 -65.1976394653 18.6893939972
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.999565 -0.011539 0.027156 }
+        <Binormal> { 0.024825 0.163182 0.983087 }
+      }
+      <Normal> { 0.094729 -0.982421 0.160680 }
+    }
+    <Vertex> 4635 {
+      10.3039121628 -64.804107666 21.5011901855
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.996801 -0.064761 0.046847 }
+        <Binormal> { 0.043496 0.047931 0.991765 }
+      }
+      <Normal> { 0.176366 -0.983490 0.039796 }
+    }
+    <Vertex> 4636 {
+      7.37881088257 -64.9941482544 21.6386623383
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.999876 -0.008470 -0.013244 }
+        <Binormal> { -0.012367 -0.096337 0.995257 }
+      }
+      <Normal> { 0.009369 -0.995300 -0.096225 }
+    }
+    <Vertex> 4637 {
+      10.3039121628 -64.804107666 21.5011901855
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.996801 -0.064761 0.046847 }
+        <Binormal> { 0.043496 0.047931 0.991765 }
+      }
+      <Normal> { 0.176366 -0.983490 0.039796 }
+    }
+    <Vertex> 4638 {
+      10.808093071 -64.8020248413 23.9588832855
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.989135 -0.137639 0.051643 }
+        <Binormal> { 0.095366 -0.338261 0.925047 }
+      }
+      <Normal> { 0.252205 -0.900113 -0.355144 }
+    }
+    <Vertex> 4639 {
+      8.01560020447 -65.4075927734 24.11992836
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.980954 -0.176250 -0.081645 }
+        <Binormal> { 0.005334 -0.444421 0.895307 }
+      }
+      <Normal> { 0.166143 -0.882839 -0.439222 }
+    }
+    <Vertex> 4640 {
+      7.37881088257 -64.9941482544 21.6386623383
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.999876 -0.008470 -0.013244 }
+        <Binormal> { -0.012367 -0.096337 0.995257 }
+      }
+      <Normal> { 0.009369 -0.995300 -0.096225 }
+    }
+    <Vertex> 4641 {
+      8.01560020447 -65.4075927734 24.11992836
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.980954 -0.176250 -0.081645 }
+        <Binormal> { 0.005334 -0.444421 0.895307 }
+      }
+      <Normal> { 0.166143 -0.882839 -0.439222 }
+    }
+    <Vertex> 4642 {
+      6.32541418076 -65.6074371338 23.5857906342
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.987499 -0.077655 -0.137170 }
+        <Binormal> { -0.076704 -0.504001 0.837525 }
+      }
+      <Normal> { 0.328166 -0.822321 -0.464797 }
+    }
+    <Vertex> 4643 {
+      5.43875074387 -65.0797805786 21.6685352325
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.998909 -0.044091 0.015381 }
+        <Binormal> { 0.028887 -0.332409 0.923183 }
+      }
+      <Normal> { 0.226081 -0.914212 -0.336253 }
+    }
+    <Vertex> 4644 {
+      16.0039329529 -57.2453651428 26.2528171539
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.091962 -0.994960 -0.039963 }
+        <Binormal> { -0.737800 0.041137 0.673617 }
+      }
+      <Normal> { 0.669729 -0.078982 0.738365 }
+    }
+    <Vertex> 4645 {
+      17.522693634 -57.6158752441 24.7174491882
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.228486 -0.970485 -0.077154 }
+        <Binormal> { -0.641911 0.090598 0.761381 }
+      }
+      <Normal> { 0.731468 -0.225410 0.643513 }
+    }
+    <Vertex> 4646 {
+      17.7866420746 -54.2352256775 25.1051540375
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.039026 -0.994529 -0.096895 }
+        <Binormal> { -0.775636 -0.029862 0.618906 }
+      }
+      <Normal> { 0.623096 0.020020 0.781854 }
+    }
+    <Vertex> 4647 {
+      15.9685983658 -54.8000450134 26.432723999
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.014409 -0.997201 -0.073366 }
+        <Binormal> { -0.822931 -0.052586 0.553124 }
+      }
+      <Normal> { 0.553728 0.065676 0.830073 }
+    }
+    <Vertex> 4648 {
+      16.0039329529 -57.2453651428 26.2528171539
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.091962 -0.994960 -0.039963 }
+        <Binormal> { -0.737800 0.041137 0.673617 }
+      }
+      <Normal> { 0.669729 -0.078982 0.738365 }
+    }
+    <Vertex> 4649 {
+      15.9685983658 -54.8000450134 26.432723999
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.014409 -0.997201 -0.073366 }
+        <Binormal> { -0.822931 -0.052586 0.553124 }
+      }
+      <Normal> { 0.553728 0.065676 0.830073 }
+    }
+    <Vertex> 4650 {
+      14.710641861 -54.9005241394 27.1339435577
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.029688 -0.999553 0.003517 }
+        <Binormal> { -0.858326 0.027254 0.500346 }
+      }
+      <Normal> { 0.503494 0.098453 0.858364 }
+    }
+    <Vertex> 4651 {
+      14.5603275299 -56.3264503479 27.3274726868
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.015881 -0.993617 0.111685 }
+        <Binormal> { -0.805624 0.053439 0.589981 }
+      }
+      <Normal> { 0.592212 0.097598 0.799829 }
+    }
+    <Vertex> 4652 {
+      16.0039329529 -57.2453651428 26.2528171539
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.091962 -0.994960 -0.039963 }
+        <Binormal> { -0.737800 0.041137 0.673617 }
+      }
+      <Normal> { 0.669729 -0.078982 0.738365 }
+    }
+    <Vertex> 4653 {
+      14.5603275299 -56.3264503479 27.3274726868
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.015881 -0.993617 0.111685 }
+        <Binormal> { -0.805624 0.053439 0.589981 }
+      }
+      <Normal> { 0.592212 0.097598 0.799829 }
+    }
+    <Vertex> 4654 {
+      14.753610611 -57.5889358521 27.4361286163
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.029771 -0.999472 0.013030 }
+        <Binormal> { -0.318276 0.001058 0.808391 }
+      }
+      <Normal> { 0.793237 0.523087 0.311624 }
+    }
+    <Vertex> 4655 {
+      15.9059810638 -59.1833648682 26.1858844757
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.050448 -0.998132 -0.034472 }
+        <Binormal> { -0.208833 -0.021862 0.938610 }
+      }
+      <Normal> { 0.951415 0.218574 0.216773 }
+    }
+    <Vertex> 4656 {
+      16.0039329529 -57.2453651428 26.2528171539
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.091962 -0.994960 -0.039963 }
+        <Binormal> { -0.737800 0.041137 0.673617 }
+      }
+      <Normal> { 0.669729 -0.078982 0.738365 }
+    }
+    <Vertex> 4657 {
+      15.9059810638 -59.1833648682 26.1858844757
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.050448 -0.998132 -0.034472 }
+        <Binormal> { -0.208833 -0.021862 0.938610 }
+      }
+      <Normal> { 0.951415 0.218574 0.216773 }
+    }
+    <Vertex> 4658 {
+      16.1790218353 -61.0635375977 24.562297821
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.258370 -0.965226 -0.039802 }
+        <Binormal> { -0.121349 -0.007925 0.979909 }
+      }
+      <Normal> { 0.905362 -0.410382 0.108798 }
+    }
+    <Vertex> 4659 {
+      17.522693634 -57.6158752441 24.7174491882
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.228486 -0.970485 -0.077154 }
+        <Binormal> { -0.641911 0.090598 0.761381 }
+      }
+      <Normal> { 0.731468 -0.225410 0.643513 }
+    }
+    <Vertex> 4660 {
+      14.8234167099 -52.4148025513 26.5358734131
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.699357 -0.694067 -0.170793 }
+        <Binormal> { -0.550329 -0.675335 0.490951 }
+      }
+      <Normal> { 0.457686 0.247780 0.853877 }
+    }
+    <Vertex> 4661 {
+      16.544752121 -51.2660331726 25.2850551605
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.657971 -0.740332 -0.137779 }
+        <Binormal> { -0.589018 -0.619920 0.518146 }
+      }
+      <Normal> { 0.478774 0.248787 0.841914 }
+    }
+    <Vertex> 4662 {
+      13.9417600632 -48.6074409485 25.5346794128
+      <UV>  {
+        -0.042124 0.762705
+        <Tangent> { 0.788032 -0.594287 -0.160713 }
+        <Binormal> { -0.440027 -0.725519 0.525233 }
+      }
+      <Normal> { 0.378399 0.381146 0.843501 }
+    }
+    <Vertex> 4663 {
+      12.8279457092 -50.5107765198 26.8126487732
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.805356 -0.561905 -0.188851 }
+        <Binormal> { -0.417858 -0.763813 0.490681 }
+      }
+      <Normal> { 0.392621 0.335337 0.856349 }
+    }
+    <Vertex> 4664 {
+      14.8234167099 -52.4148025513 26.5358734131
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.699357 -0.694067 -0.170793 }
+        <Binormal> { -0.550329 -0.675335 0.490951 }
+      }
+      <Normal> { 0.457686 0.247780 0.853877 }
+    }
+    <Vertex> 4665 {
+      12.8279457092 -50.5107765198 26.8126487732
+      <UV>  {
+        -0.057953 0.827267
+        <Tangent> { 0.805356 -0.561905 -0.188851 }
+        <Binormal> { -0.417858 -0.763813 0.490681 }
+      }
+      <Normal> { 0.392621 0.335337 0.856349 }
+    }
+    <Vertex> 4666 {
+      11.7197132111 -51.9097290039 27.8682384491
+      <UV>  {
+        -0.073782 0.891829
+        <Tangent> { 0.803784 -0.561502 -0.196589 }
+        <Binormal> { -0.418450 -0.768346 0.483672 }
+      }
+      <Normal> { 0.403333 0.319987 0.857265 }
+    }
+    <Vertex> 4667 {
+      13.4791660309 -53.5178909302 27.5331077576
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.788309 -0.559541 -0.255896 }
+        <Binormal> { -0.427563 -0.797137 0.425869 }
+      }
+      <Normal> { 0.456435 0.216254 0.863033 }
+    }
+    <Vertex> 4668 {
+      14.8234167099 -52.4148025513 26.5358734131
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.699357 -0.694067 -0.170793 }
+        <Binormal> { -0.550329 -0.675335 0.490951 }
+      }
+      <Normal> { 0.457686 0.247780 0.853877 }
+    }
+    <Vertex> 4669 {
+      13.4791660309 -53.5178909302 27.5331077576
+      <UV>  {
+        -0.018240 0.905447
+        <Tangent> { 0.788309 -0.559541 -0.255896 }
+        <Binormal> { -0.427563 -0.797137 0.425869 }
+      }
+      <Normal> { 0.456435 0.216254 0.863033 }
+    }
+    <Vertex> 4670 {
+      14.710641861 -54.9005241394 27.1339435577
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.628780 -0.755265 -0.184959 }
+        <Binormal> { -0.630082 -0.632848 0.442177 }
+      }
+      <Normal> { 0.503494 0.098453 0.858364 }
+    }
+    <Vertex> 4671 {
+      15.9685983658 -54.8000450134 26.432723999
+      <UV>  {
+        0.053131 0.854502
+        <Tangent> { 0.532379 -0.838675 -0.114877 }
+        <Binormal> { -0.688617 -0.505524 0.499362 }
+      }
+      <Normal> { 0.553728 0.065676 0.830073 }
+    }
+    <Vertex> 4672 {
+      14.8234167099 -52.4148025513 26.5358734131
+      <UV>  {
+        -0.002411 0.840885
+        <Tangent> { 0.699357 -0.694067 -0.170793 }
+        <Binormal> { -0.550329 -0.675335 0.490951 }
+      }
+      <Normal> { 0.457686 0.247780 0.853877 }
+    }
+    <Vertex> 4673 {
+      15.9685983658 -54.8000450134 26.432723999
+      <UV>  {
+        0.053131 0.854502
+        <Tangent> { 0.532379 -0.838675 -0.114877 }
+        <Binormal> { -0.688617 -0.505524 0.499362 }
+      }
+      <Normal> { 0.553728 0.065676 0.830073 }
+    }
+    <Vertex> 4674 {
+      17.7866420746 -54.2352256775 25.1051540375
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.526427 -0.838796 -0.138912 }
+        <Binormal> { -0.653034 -0.498144 0.533190 }
+      }
+      <Normal> { 0.623096 0.020020 0.781854 }
+    }
+    <Vertex> 4675 {
+      16.544752121 -51.2660331726 25.2850551605
+      <UV>  {
+        0.013418 0.776323
+        <Tangent> { 0.657971 -0.740332 -0.137779 }
+        <Binormal> { -0.589018 -0.619920 0.518146 }
+      }
+      <Normal> { 0.478774 0.248787 0.841914 }
+    }
+    <Vertex> 4676 {
+      10.2417430878 -49.509098053 27.513420105
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.628230 0.773841 -0.080382 }
+        <Binormal> { 0.694081 0.510783 -0.507300 }
+      }
+      <Normal> { 0.351512 0.374493 0.857997 }
+    }
+    <Vertex> 4677 {
+      10.5679254532 -48.0281295776 26.7095680237
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.697578 0.711327 -0.085673 }
+        <Binormal> { 0.630109 0.552176 -0.545952 }
+      }
+      <Normal> { 0.341044 0.434828 0.833399 }
+    }
+    <Vertex> 4678 {
+      7.93674230576 -47.6438827515 27.5321445465
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.729724 0.666482 -0.152575 }
+        <Binormal> { 0.624407 0.558692 -0.545874 }
+      }
+      <Normal> { 0.278573 0.493606 0.823847 }
+    }
+    <Vertex> 4679 {
+      7.80066585541 -49.1932754517 28.3351364136
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.940699 -0.121706 -0.316658 }
+        <Binormal> { 0.020344 -0.911336 0.410704 }
+      }
+      <Normal> { 0.320780 0.395093 0.860805 }
+    }
+    <Vertex> 4680 {
+      10.2417430878 -49.509098053 27.513420105
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.628230 0.773841 -0.080382 }
+        <Binormal> { 0.694081 0.510783 -0.507300 }
+      }
+      <Normal> { 0.351512 0.374493 0.857997 }
+    }
+    <Vertex> 4681 {
+      7.80066585541 -49.1932754517 28.3351364136
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.940699 -0.121706 -0.316658 }
+        <Binormal> { 0.020344 -0.911336 0.410704 }
+      }
+      <Normal> { 0.320780 0.395093 0.860805 }
+    }
+    <Vertex> 4682 {
+      8.02784633636 -50.3675079346 28.7422962189
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.620951 0.776743 -0.105020 }
+        <Binormal> { 0.710923 0.501698 -0.492836 }
+      }
+      <Normal> { 0.330119 0.380688 0.863735 }
+    }
+    <Vertex> 4683 {
+      9.5509853363 -50.9793167114 28.421415329
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.628251 0.774035 -0.078217 }
+        <Binormal> { 0.693109 0.511214 -0.508193 }
+      }
+      <Normal> { 0.353374 0.373486 0.857662 }
+    }
+    <Vertex> 4684 {
+      10.2417430878 -49.509098053 27.513420105
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.628230 0.773841 -0.080382 }
+        <Binormal> { 0.694081 0.510783 -0.507300 }
+      }
+      <Normal> { 0.351512 0.374493 0.857997 }
+    }
+    <Vertex> 4685 {
+      9.5509853363 -50.9793167114 28.421415329
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.628251 0.774035 -0.078217 }
+        <Binormal> { 0.693109 0.511214 -0.508193 }
+      }
+      <Normal> { 0.353374 0.373486 0.857662 }
+    }
+    <Vertex> 4686 {
+      11.7197132111 -51.9097290039 27.8682384491
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.594661 0.803705 -0.020214 }
+        <Binormal> { 0.695476 0.501643 -0.514458 }
+      }
+      <Normal> { 0.403333 0.319987 0.857265 }
+    }
+    <Vertex> 4687 {
+      12.8279457092 -50.5107765198 26.8126487732
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.904085 0.350167 0.244976 }
+        <Binormal> { 0.217716 0.870395 -0.440656 }
+      }
+      <Normal> { 0.392621 0.335337 0.856349 }
+    }
+    <Vertex> 4688 {
+      10.2417430878 -49.509098053 27.513420105
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.628230 0.773841 -0.080382 }
+        <Binormal> { 0.694081 0.510783 -0.507300 }
+      }
+      <Normal> { 0.351512 0.374493 0.857997 }
+    }
+    <Vertex> 4689 {
+      12.8279457092 -50.5107765198 26.8126487732
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.904085 0.350167 0.244976 }
+        <Binormal> { 0.217716 0.870395 -0.440656 }
+      }
+      <Normal> { 0.392621 0.335337 0.856349 }
+    }
+    <Vertex> 4690 {
+      13.9417600632 -48.6074409485 25.5346794128
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.655505 0.753725 -0.046516 }
+        <Binormal> { 0.653529 0.535343 -0.535077 }
+      }
+      <Normal> { 0.378399 0.381146 0.843501 }
+    }
+    <Vertex> 4691 {
+      10.5679254532 -48.0281295776 26.7095680237
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.697578 0.711327 -0.085673 }
+        <Binormal> { 0.630109 0.552176 -0.545952 }
+      }
+      <Normal> { 0.341044 0.434828 0.833399 }
+    }
+    <Vertex> 4692 {
+      6.24057006836 -49.3468132019 28.9747467041
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.787473 0.358398 -0.501436 }
+        <Binormal> { 0.531024 -0.807083 0.257082 }
+      }
+      <Normal> { 0.330363 0.476821 0.814539 }
+    }
+    <Vertex> 4693 {
+      6.05911493301 -47.8354034424 28.232465744
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.863767 0.358593 -0.354002 }
+        <Binormal> { 0.500708 -0.686225 0.526607 }
+      }
+      <Normal> { 0.081759 0.643605 0.760949 }
+    }
+    <Vertex> 4694 {
+      4.35131406784 -48.3970603943 28.6231327057
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { 0.794697 0.375111 -0.477231 }
+        <Binormal> { 0.545862 -0.115609 0.818113 }
+      }
+      <Normal> { -0.141240 0.962798 0.230293 }
+    }
+    <Vertex> 4695 {
+      5.30085802078 -49.3419837952 29.614818573
+      <UV>  {
+        0.053131 0.854502
+        <Tangent> { 0.407141 0.889569 0.207132 }
+        <Binormal> { 0.239865 -0.046707 -0.270889 }
+      }
+      <Normal> { 0.610370 0.668264 0.425245 }
+    }
+    <Vertex> 4696 {
+      6.24057006836 -49.3468132019 28.9747467041
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.787473 0.358398 -0.501436 }
+        <Binormal> { 0.531024 -0.807083 0.257082 }
+      }
+      <Normal> { 0.330363 0.476821 0.814539 }
+    }
+    <Vertex> 4697 {
+      5.30085802078 -49.3419837952 29.614818573
+      <UV>  {
+        0.053131 0.854502
+        <Tangent> { 0.407141 0.889569 0.207132 }
+        <Binormal> { 0.239865 -0.046707 -0.270889 }
+      }
+      <Normal> { 0.610370 0.668264 0.425245 }
+    }
+    <Vertex> 4698 {
+      6.24800300598 -50.9838409424 30.0005741119
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { 0.611398 0.392102 -0.687349 }
+        <Binormal> { 0.580064 -0.689068 0.122886 }
+      }
+      <Normal> { 0.680166 0.637196 0.362377 }
+    }
+    <Vertex> 4699 {
+      7.01249361038 -50.8763618469 29.3485336304
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.589102 0.548932 -0.592986 }
+        <Binormal> { 0.704961 -0.707111 0.045765 }
+      }
+      <Normal> { 0.411542 0.461165 0.786065 }
+    }
+    <Vertex> 4700 {
+      6.24057006836 -49.3468132019 28.9747467041
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.787473 0.358398 -0.501436 }
+        <Binormal> { 0.531024 -0.807083 0.257082 }
+      }
+      <Normal> { 0.330363 0.476821 0.814539 }
+    }
+    <Vertex> 4701 {
+      7.01249361038 -50.8763618469 29.3485336304
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { 0.589102 0.548932 -0.592986 }
+        <Binormal> { 0.704961 -0.707111 0.045765 }
+      }
+      <Normal> { 0.411542 0.461165 0.786065 }
+    }
+    <Vertex> 4702 {
+      8.02784633636 -50.3675079346 28.7422962189
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.773153 0.425137 -0.470630 }
+        <Binormal> { 0.546369 -0.823163 0.153984 }
+      }
+      <Normal> { 0.330119 0.380688 0.863735 }
+    }
+    <Vertex> 4703 {
+      7.80066585541 -49.1932754517 28.3351364136
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.862292 0.261034 -0.433951 }
+        <Binormal> { 0.396150 -0.881468 0.256951 }
+      }
+      <Normal> { 0.320780 0.395093 0.860805 }
+    }
+    <Vertex> 4704 {
+      6.24057006836 -49.3468132019 28.9747467041
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { 0.787473 0.358398 -0.501436 }
+        <Binormal> { 0.531024 -0.807083 0.257082 }
+      }
+      <Normal> { 0.330363 0.476821 0.814539 }
+    }
+    <Vertex> 4705 {
+      7.80066585541 -49.1932754517 28.3351364136
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.862292 0.261034 -0.433951 }
+        <Binormal> { 0.396150 -0.881468 0.256951 }
+      }
+      <Normal> { 0.320780 0.395093 0.860805 }
+    }
+    <Vertex> 4706 {
+      7.93674230576 -47.6438827515 27.5321445465
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.863839 0.265731 -0.427982 }
+        <Binormal> { 0.430176 -0.830896 0.352371 }
+      }
+      <Normal> { 0.278573 0.493606 0.823847 }
+    }
+    <Vertex> 4707 {
+      6.05911493301 -47.8354034424 28.232465744
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { 0.863767 0.358593 -0.354002 }
+        <Binormal> { 0.500708 -0.686225 0.526607 }
+      }
+      <Normal> { 0.081759 0.643605 0.760949 }
+    }
+    <Vertex> 4708 {
+      12.8092412949 -54.8126602173 28.1790504456
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.260718 -0.868828 0.420908 }
+        <Binormal> { -0.805128 0.435927 0.401119 }
+      }
+      <Normal> { 0.539384 0.258950 0.801233 }
+    }
+    <Vertex> 4709 {
+      12.7377071381 -55.8041267395 28.7273979187
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.063011 -0.873341 0.483016 }
+        <Binormal> { -0.612022 0.349382 0.551876 }
+      }
+      <Normal> { 0.678823 0.650166 0.341197 }
+    }
+    <Vertex> 4710 {
+      14.753610611 -57.5889358521 27.4361286163
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.519338 0.314104 0.794721 }
+        <Binormal> { -0.317840 0.792276 -0.520842 }
+      }
+      <Normal> { 0.793237 0.523087 0.311624 }
+    }
+    <Vertex> 4711 {
+      14.5603275299 -56.3264503479 27.3274726868
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.015881 -0.993617 0.111685 }
+        <Binormal> { -0.805624 0.053439 0.589981 }
+      }
+      <Normal> { 0.592212 0.097598 0.799829 }
+    }
+    <Vertex> 4712 {
+      12.8092412949 -54.8126602173 28.1790504456
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.260718 -0.868828 0.420908 }
+        <Binormal> { -0.805128 0.435927 0.401119 }
+      }
+      <Normal> { 0.539384 0.258950 0.801233 }
+    }
+    <Vertex> 4713 {
+      14.5603275299 -56.3264503479 27.3274726868
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.015881 -0.993617 0.111685 }
+        <Binormal> { -0.805624 0.053439 0.589981 }
+      }
+      <Normal> { 0.592212 0.097598 0.799829 }
+    }
+    <Vertex> 4714 {
+      14.710641861 -54.9005241394 27.1339435577
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.276822 -0.918207 0.283313 }
+        <Binormal> { -0.816048 0.380261 0.435058 }
+      }
+      <Normal> { 0.503494 0.098453 0.858364 }
+    }
+    <Vertex> 4715 {
+      13.4791660309 -53.5178909302 27.5331077576
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.420144 -0.812016 0.405104 }
+        <Binormal> { -0.788402 0.547502 0.279774 }
+      }
+      <Normal> { 0.456435 0.216254 0.863033 }
+    }
+    <Vertex> 4716 {
+      12.8092412949 -54.8126602173 28.1790504456
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.260718 -0.868828 0.420908 }
+        <Binormal> { -0.805128 0.435927 0.401119 }
+      }
+      <Normal> { 0.539384 0.258950 0.801233 }
+    }
+    <Vertex> 4717 {
+      13.4791660309 -53.5178909302 27.5331077576
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.420144 -0.812016 0.405104 }
+        <Binormal> { -0.788402 0.547502 0.279774 }
+      }
+      <Normal> { 0.456435 0.216254 0.863033 }
+    }
+    <Vertex> 4718 {
+      11.7197132111 -51.9097290039 27.8682384491
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.454307 -0.759121 0.466198 }
+        <Binormal> { -0.799945 0.577494 0.160806 }
+      }
+      <Normal> { 0.403333 0.319987 0.857265 }
+    }
+    <Vertex> 4719 {
+      10.8354282379 -53.2119560242 28.8171844482
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.438445 -0.676902 0.591244 }
+        <Binormal> { -0.767870 0.623935 0.144905 }
+      }
+      <Normal> { 0.469863 0.394910 0.789453 }
+    }
+    <Vertex> 4720 {
+      12.8092412949 -54.8126602173 28.1790504456
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.260718 -0.868828 0.420908 }
+        <Binormal> { -0.805128 0.435927 0.401119 }
+      }
+      <Normal> { 0.539384 0.258950 0.801233 }
+    }
+    <Vertex> 4721 {
+      10.8354282379 -53.2119560242 28.8171844482
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.438445 -0.676902 0.591244 }
+        <Binormal> { -0.767870 0.623935 0.144905 }
+      }
+      <Normal> { 0.469863 0.394910 0.789453 }
+    }
+    <Vertex> 4722 {
+      10.3430070877 -54.0351829529 29.7247276306
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.235580 -0.758048 0.608166 }
+        <Binormal> { -0.696210 0.445612 0.285748 }
+      }
+      <Normal> { 0.601825 0.723594 0.337901 }
+    }
+    <Vertex> 4723 {
+      12.7377071381 -55.8041267395 28.7273979187
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.063011 -0.873341 0.483016 }
+        <Binormal> { -0.612022 0.349382 0.551876 }
+      }
+      <Normal> { 0.678823 0.650166 0.341197 }
+    }
+    <Vertex> 4724 {
+      8.72364616394 -52.0322990417 29.2515125275
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.850963 -0.510859 -0.122003 }
+        <Binormal> { -0.337226 -0.709490 0.618692 }
+      }
+      <Normal> { 0.409650 0.481124 0.775018 }
+    }
+    <Vertex> 4725 {
+      9.5509853363 -50.9793167114 28.421415329
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.901467 -0.376574 -0.213424 }
+        <Binormal> { -0.243262 -0.848572 0.469756 }
+      }
+      <Normal> { 0.353374 0.373486 0.857662 }
+    }
+    <Vertex> 4726 {
+      8.02784633636 -50.3675079346 28.7422962189
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.871900 -0.476549 -0.112658 }
+        <Binormal> { -0.368724 -0.790281 0.489239 }
+      }
+      <Normal> { 0.330119 0.380688 0.863735 }
+    }
+    <Vertex> 4727 {
+      7.01249361038 -50.8763618469 29.3485336304
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.827731 -0.559159 -0.046932 }
+        <Binormal> { -0.417892 -0.669965 0.611838 }
+      }
+      <Normal> { 0.411542 0.461165 0.786065 }
+    }
+    <Vertex> 4728 {
+      8.72364616394 -52.0322990417 29.2515125275
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.850963 -0.510859 -0.122003 }
+        <Binormal> { -0.337226 -0.709490 0.618692 }
+      }
+      <Normal> { 0.409650 0.481124 0.775018 }
+    }
+    <Vertex> 4729 {
+      7.01249361038 -50.8763618469 29.3485336304
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.827731 -0.559159 -0.046932 }
+        <Binormal> { -0.417892 -0.669965 0.611838 }
+      }
+      <Normal> { 0.411542 0.461165 0.786065 }
+    }
+    <Vertex> 4730 {
+      6.24800300598 -50.9838409424 30.0005741119
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.797557 -0.603243 -0.001004 }
+        <Binormal> { -0.217961 -0.289699 0.918505 }
+      }
+      <Normal> { 0.680166 0.637196 0.362377 }
+    }
+    <Vertex> 4731 {
+      8.05424594879 -52.4883308411 30.0931663513
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.800700 -0.596632 -0.053937 }
+        <Binormal> { -0.141929 -0.276395 0.950444 }
+      }
+      <Normal> { 0.587115 0.749535 0.305643 }
+    }
+    <Vertex> 4732 {
+      8.72364616394 -52.0322990417 29.2515125275
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.850963 -0.510859 -0.122003 }
+        <Binormal> { -0.337226 -0.709490 0.618692 }
+      }
+      <Normal> { 0.409650 0.481124 0.775018 }
+    }
+    <Vertex> 4733 {
+      8.05424594879 -52.4883308411 30.0931663513
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.800700 -0.596632 -0.053937 }
+        <Binormal> { -0.141929 -0.276395 0.950444 }
+      }
+      <Normal> { 0.587115 0.749535 0.305643 }
+    }
+    <Vertex> 4734 {
+      10.3430070877 -54.0351829529 29.7247276306
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.731103 0.328965 0.597686 }
+        <Binormal> { -0.321338 0.606768 -0.727031 }
+      }
+      <Normal> { 0.601825 0.723594 0.337901 }
+    }
+    <Vertex> 4735 {
+      10.8354282379 -53.2119560242 28.8171844482
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.859282 -0.480001 -0.176728 }
+        <Binormal> { -0.309147 -0.761401 0.564874 }
+      }
+      <Normal> { 0.469863 0.394910 0.789453 }
+    }
+    <Vertex> 4736 {
+      8.72364616394 -52.0322990417 29.2515125275
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.850963 -0.510859 -0.122003 }
+        <Binormal> { -0.337226 -0.709490 0.618692 }
+      }
+      <Normal> { 0.409650 0.481124 0.775018 }
+    }
+    <Vertex> 4737 {
+      10.8354282379 -53.2119560242 28.8171844482
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.859282 -0.480001 -0.176728 }
+        <Binormal> { -0.309147 -0.761401 0.564874 }
+      }
+      <Normal> { 0.469863 0.394910 0.789453 }
+    }
+    <Vertex> 4738 {
+      11.7197132111 -51.9097290039 27.8682384491
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.594661 0.803705 -0.020214 }
+        <Binormal> { 0.695476 0.501643 -0.514458 }
+      }
+      <Normal> { 0.403333 0.319987 0.857265 }
+    }
+    <Vertex> 4739 {
+      9.5509853363 -50.9793167114 28.421415329
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.901467 -0.376574 -0.213424 }
+        <Binormal> { -0.243262 -0.848572 0.469756 }
+      }
+      <Normal> { 0.353374 0.373486 0.857662 }
+    }
+    <Vertex> 4740 {
+      1.10578429699 -63.2485923767 13.813952446
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.450490 0.887709 0.095034 }
+        <Binormal> { 0.891609 -0.452763 0.002745 }
+      }
+      <Normal> { -0.044893 -0.082369 0.995575 }
+    }
+    <Vertex> 4741 {
+      2.8804795742 -62.3616981506 14.304930687
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.375050 0.894043 0.244997 }
+        <Binormal> { 0.759294 -0.409529 0.332097 }
+      }
+      <Normal> { -0.540269 -0.402417 0.739006 }
+    }
+    <Vertex> 4742 {
+      0.800136804581 -58.5618629456 14.3294782639
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.118072 0.990996 0.063128 }
+        <Binormal> { 0.547354 0.012032 0.834860 }
+      }
+      <Normal> { -0.833308 -0.076693 0.547441 }
+    }
+    <Vertex> 4743 {
+      -0.996917665005 -61.9727554321 13.8902273178
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.442436 0.895142 0.054509 }
+        <Binormal> { 0.856992 -0.439900 0.268002 }
+      }
+      <Normal> { -0.258156 0.083438 0.962462 }
+    }
+    <Vertex> 4744 {
+      1.10578429699 -63.2485923767 13.813952446
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.450490 0.887709 0.095034 }
+        <Binormal> { 0.891609 -0.452763 0.002745 }
+      }
+      <Normal> { -0.044893 -0.082369 0.995575 }
+    }
+    <Vertex> 4745 {
+      -0.996917665005 -61.9727554321 13.8902273178
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.442436 0.895142 0.054509 }
+        <Binormal> { 0.856992 -0.439900 0.268002 }
+      }
+      <Normal> { -0.258156 0.083438 0.962462 }
+    }
+    <Vertex> 4746 {
+      -2.4554605484 -65.1486206055 13.9283847809
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.883808 0.467001 -0.028173 }
+        <Binormal> { 0.462767 -0.866642 0.151726 }
+      }
+      <Normal> { -0.142094 0.096591 0.985107 }
+    }
+    <Vertex> 4747 {
+      1.05940437317 -65.8644638062 13.7779159546
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.512864 0.858470 0.000430 }
+        <Binormal> { 0.858290 -0.512747 -0.019814 }
+      }
+      <Normal> { 0.017975 -0.008545 0.999786 }
+    }
+    <Vertex> 4748 {
+      1.10578429699 -63.2485923767 13.813952446
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.450490 0.887709 0.095034 }
+        <Binormal> { 0.891609 -0.452763 0.002745 }
+      }
+      <Normal> { -0.044893 -0.082369 0.995575 }
+    }
+    <Vertex> 4749 {
+      1.05940437317 -65.8644638062 13.7779159546
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.512864 0.858470 0.000430 }
+        <Binormal> { 0.858290 -0.512747 -0.019814 }
+      }
+      <Normal> { 0.017975 -0.008545 0.999786 }
+    }
+    <Vertex> 4750 {
+      6.00489807129 -66.2164764404 13.7195005417
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.457224 0.879453 0.132320 }
+        <Binormal> { 0.789964 -0.409859 -0.005589 }
+      }
+      <Normal> { -0.257790 -0.508072 0.821802 }
+    }
+    <Vertex> 4751 {
+      2.8804795742 -62.3616981506 14.304930687
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.375050 0.894043 0.244997 }
+        <Binormal> { 0.759294 -0.409529 0.332097 }
+      }
+      <Normal> { -0.540269 -0.402417 0.739006 }
+    }
+    <Vertex> 4752 {
+      -8.39793395996 -67.9765930176 12.6581373215
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.986033 -0.161989 0.038702 }
+        <Binormal> { -0.163258 -0.986041 0.032295 }
+      }
+      <Normal> { -0.028199 0.037385 0.998901 }
+    }
+    <Vertex> 4753 {
+      -5.84755802155 -68.1924972534 12.9587469101
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.976901 -0.177350 0.119209 }
+        <Binormal> { -0.178934 -0.958486 0.040375 }
+      }
+      <Normal> { -0.320200 0.099460 0.942076 }
+    }
+    <Vertex> 4754 {
+      -4.65595674515 -64.878578186 12.9149770737
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.987724 -0.098184 0.121496 }
+        <Binormal> { -0.110856 -0.963027 0.122979 }
+      }
+      <Normal> { -0.314768 0.155797 0.936277 }
+    }
+    <Vertex> 4755 {
+      -7.08890581131 -64.4586486816 12.5962629318
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.997872 -0.044933 0.047242 }
+        <Binormal> { -0.045818 -0.998730 0.017869 }
+      }
+      <Normal> { -0.038789 0.019654 0.999023 }
+    }
+    <Vertex> 4756 {
+      -8.39793395996 -67.9765930176 12.6581373215
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.986033 -0.161989 0.038702 }
+        <Binormal> { -0.163258 -0.986041 0.032295 }
+      }
+      <Normal> { -0.028199 0.037385 0.998901 }
+    }
+    <Vertex> 4757 {
+      -7.08890581131 -64.4586486816 12.5962629318
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.997872 -0.044933 0.047242 }
+        <Binormal> { -0.045818 -0.998730 0.017869 }
+      }
+      <Normal> { -0.038789 0.019654 0.999023 }
+    }
+    <Vertex> 4758 {
+      -9.46007061005 -64.0183792114 12.6652421951
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.992760 -0.114440 -0.036492 }
+        <Binormal> { -0.112974 -0.940684 -0.123437 }
+      }
+      <Normal> { 0.313150 -0.160436 0.936033 }
+    }
+    <Vertex> 4759 {
+      -10.8164691925 -67.6792755127 12.7735214233
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.978007 -0.203747 -0.044593 }
+        <Binormal> { -0.194448 -0.934961 0.007263 }
+      }
+      <Normal> { 0.333171 -0.061983 0.940794 }
+    }
+    <Vertex> 4760 {
+      -8.39793395996 -67.9765930176 12.6581373215
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.986033 -0.161989 0.038702 }
+        <Binormal> { -0.163258 -0.986041 0.032295 }
+      }
+      <Normal> { -0.028199 0.037385 0.998901 }
+    }
+    <Vertex> 4761 {
+      -10.8164691925 -67.6792755127 12.7735214233
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.978007 -0.203747 -0.044593 }
+        <Binormal> { -0.194448 -0.934961 0.007263 }
+      }
+      <Normal> { 0.333171 -0.061983 0.940794 }
+    }
+    <Vertex> 4762 {
+      -11.5693979263 -71.223274231 12.9505004883
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.965976 -0.254937 -0.043570 }
+        <Binormal> { -0.241305 -0.927351 0.076240 }
+      }
+      <Normal> { 0.325999 -0.007111 0.945311 }
+    }
+    <Vertex> 4763 {
+      -9.05541038513 -71.3144760132 12.8091955185
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.957057 -0.288871 0.024418 }
+        <Binormal> { -0.289703 -0.955987 0.045265 }
+      }
+      <Normal> { -0.017212 0.052492 0.998444 }
+    }
+    <Vertex> 4764 {
+      -8.39793395996 -67.9765930176 12.6581373215
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.986033 -0.161989 0.038702 }
+        <Binormal> { -0.163258 -0.986041 0.032295 }
+      }
+      <Normal> { -0.028199 0.037385 0.998901 }
+    }
+    <Vertex> 4765 {
+      -9.05541038513 -71.3144760132 12.8091955185
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.957057 -0.288871 0.024418 }
+        <Binormal> { -0.289703 -0.955987 0.045265 }
+      }
+      <Normal> { -0.017212 0.052492 0.998444 }
+    }
+    <Vertex> 4766 {
+      -6.19889211655 -71.3269424438 13.0155086517
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.971709 -0.212725 0.102616 }
+        <Binormal> { -0.207844 -0.956696 -0.015094 }
+      }
+      <Normal> { -0.298746 0.049867 0.953001 }
+    }
+    <Vertex> 4767 {
+      -5.84755802155 -68.1924972534 12.9587469101
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.976901 -0.177350 0.119209 }
+        <Binormal> { -0.178934 -0.958486 0.040375 }
+      }
+      <Normal> { -0.320200 0.099460 0.942076 }
+    }
+    <Vertex> 4768 {
+      -11.5854406357 -67.5801696777 13.3671655655
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.776877 -0.161461 -0.608598 }
+        <Binormal> { -0.218557 -0.975534 -0.020179 }
+      }
+      <Normal> { 0.598804 -0.150426 0.786615 }
+    }
+    <Vertex> 4769 {
+      -10.8164691925 -67.6792755127 12.7735214233
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.709268 -0.373043 -0.598146 }
+        <Binormal> { -0.388031 -0.866559 0.080324 }
+      }
+      <Normal> { 0.333171 -0.061983 0.940794 }
+    }
+    <Vertex> 4770 {
+      -9.46007061005 -64.0183792114 12.6652421951
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.798376 -0.042526 -0.600656 }
+        <Binormal> { -0.136172 -0.935402 -0.114771 }
+      }
+      <Normal> { 0.313150 -0.160436 0.936033 }
+    }
+    <Vertex> 4771 {
+      -10.19465065 -63.8716163635 13.2434186935
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.777711 0.307148 -0.548476 }
+        <Binormal> { 0.066149 -0.906716 -0.413967 }
+      }
+      <Normal> { 0.589099 -0.299631 0.750420 }
+    }
+    <Vertex> 4772 {
+      -11.5854406357 -67.5801696777 13.3671655655
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.776877 -0.161461 -0.608598 }
+        <Binormal> { -0.218557 -0.975534 -0.020179 }
+      }
+      <Normal> { 0.598804 -0.150426 0.786615 }
+    }
+    <Vertex> 4773 {
+      -10.19465065 -63.8716163635 13.2434186935
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.777711 0.307148 -0.548476 }
+        <Binormal> { 0.066149 -0.906716 -0.413967 }
+      }
+      <Normal> { 0.589099 -0.299631 0.750420 }
+    }
+    <Vertex> 4774 {
+      -10.8337583542 -63.9921989441 13.788312912
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.767499 0.241958 -0.593634 }
+        <Binormal> { 0.129499 -0.905956 -0.201830 }
+      }
+      <Normal> { 0.318857 -0.162450 0.933775 }
+    }
+    <Vertex> 4775 {
+      -12.2778902054 -67.6792755127 13.8965911865
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.764351 -0.116733 -0.634145 }
+        <Binormal> { -0.150237 -0.919023 -0.011911 }
+      }
+      <Normal> { 0.303018 -0.061861 0.950957 }
+    }
+    <Vertex> 4776 {
+      -11.5854406357 -67.5801696777 13.3671655655
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.776877 -0.161461 -0.608598 }
+        <Binormal> { -0.218557 -0.975534 -0.020179 }
+      }
+      <Normal> { 0.598804 -0.150426 0.786615 }
+    }
+    <Vertex> 4777 {
+      -12.2778902054 -67.6792755127 13.8965911865
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.764351 -0.116733 -0.634145 }
+        <Binormal> { -0.150237 -0.919023 -0.011911 }
+      }
+      <Normal> { 0.303018 -0.061861 0.950957 }
+    }
+    <Vertex> 4778 {
+      -13.1705560684 -71.2176589966 14.0590105057
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.707063 -0.427775 -0.563090 }
+        <Binormal> { -0.421583 -0.830541 0.101581 }
+      }
+      <Normal> { 0.264046 -0.016083 0.964354 }
+    }
+    <Vertex> 4779 {
+      -12.3980903625 -71.1928863525 13.5527858734
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.557482 -0.692454 -0.457952 }
+        <Binormal> { -0.596413 -0.717690 0.359159 }
+      }
+      <Normal> { 0.569659 -0.063326 0.819422 }
+    }
+    <Vertex> 4780 {
+      -11.5854406357 -67.5801696777 13.3671655655
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.776877 -0.161461 -0.608598 }
+        <Binormal> { -0.218557 -0.975534 -0.020179 }
+      }
+      <Normal> { 0.598804 -0.150426 0.786615 }
+    }
+    <Vertex> 4781 {
+      -12.3980903625 -71.1928863525 13.5527858734
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.557482 -0.692454 -0.457952 }
+        <Binormal> { -0.596413 -0.717690 0.359159 }
+      }
+      <Normal> { 0.569659 -0.063326 0.819422 }
+    }
+    <Vertex> 4782 {
+      -11.5693979263 -71.223274231 12.9505004883
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.652301 -0.528460 -0.543354 }
+        <Binormal> { -0.503422 -0.793760 0.167639 }
+      }
+      <Normal> { 0.325999 -0.007111 0.945311 }
+    }
+    <Vertex> 4783 {
+      -10.8164691925 -67.6792755127 12.7735214233
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.709268 -0.373043 -0.598146 }
+        <Binormal> { -0.388031 -0.866559 0.080324 }
+      }
+      <Normal> { 0.333171 -0.061983 0.940794 }
+    }
+    <Vertex> 4784 {
+      -19.2121963501 -68.373008728 14.016076088
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.530341 -0.845836 -0.057435 }
+        <Binormal> { -0.835728 0.510230 0.202837 }
+      }
+      <Normal> { 0.138524 -0.161534 0.977081 }
+    }
+    <Vertex> 4785 {
+      -17.1218128204 -68.2739028931 13.6781978607
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.634400 -0.772243 0.034320 }
+        <Binormal> { -0.768620 0.634361 0.066103 }
+      }
+      <Normal> { 0.041749 -0.053377 0.997681 }
+    }
+    <Vertex> 4786 {
+      -15.5305328369 -64.7141723633 13.7349014282
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.609412 -0.792648 0.018075 }
+        <Binormal> { -0.788952 0.608504 0.084809 }
+      }
+      <Normal> { 0.082522 -0.031831 0.996063 }
+    }
+    <Vertex> 4787 {
+      -17.7514514923 -64.8301315308 14.3047637939
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.578628 -0.815541 -0.009056 }
+        <Binormal> { -0.801225 0.566432 0.183569 }
+      }
+      <Normal> { 0.178686 -0.065401 0.981719 }
+    }
+    <Vertex> 4788 {
+      -19.2121963501 -68.373008728 14.016076088
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.530341 -0.845836 -0.057435 }
+        <Binormal> { -0.835728 0.510230 0.202837 }
+      }
+      <Normal> { 0.138524 -0.161534 0.977081 }
+    }
+    <Vertex> 4789 {
+      -17.7514514923 -64.8301315308 14.3047637939
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.578628 -0.815541 -0.009056 }
+        <Binormal> { -0.801225 0.566432 0.183569 }
+      }
+      <Normal> { 0.178686 -0.065401 0.981719 }
+    }
+    <Vertex> 4790 {
+      -19.8271713257 -64.8338394165 14.7309522629
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.469499 -0.880726 -0.062385 }
+        <Binormal> { -0.881038 0.469977 -0.004399 }
+      }
+      <Normal> { -0.008118 -0.005860 0.999939 }
+    }
+    <Vertex> 4791 {
+      -21.1048641205 -68.373008728 14.3047637939
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.352012 -0.922897 -0.156040 }
+        <Binormal> { -0.935758 0.347560 0.055342 }
+      }
+      <Normal> { 0.004639 -0.145054 0.989410 }
+    }
+    <Vertex> 4792 {
+      -19.2121963501 -68.373008728 14.016076088
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.530341 -0.845836 -0.057435 }
+        <Binormal> { -0.835728 0.510230 0.202837 }
+      }
+      <Normal> { 0.138524 -0.161534 0.977081 }
+    }
+    <Vertex> 4793 {
+      -21.1048641205 -68.373008728 14.3047637939
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.352012 -0.922897 -0.156040 }
+        <Binormal> { -0.935758 0.347560 0.055342 }
+      }
+      <Normal> { 0.004639 -0.145054 0.989410 }
+    }
+    <Vertex> 4794 {
+      -22.3282394409 -71.3910903931 13.6222763062
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.431241 -0.886899 -0.165655 }
+        <Binormal> { -0.901304 0.423926 0.076663 }
+      }
+      <Normal> { 0.017304 -0.142186 0.989685 }
+    }
+    <Vertex> 4795 {
+      -20.4556751251 -71.3910903931 13.5540771484
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.495895 -0.858596 -0.130004 }
+        <Binormal> { -0.867661 0.487750 0.088371 }
+      }
+      <Normal> { 0.031220 -0.124149 0.991760 }
+    }
+    <Vertex> 4796 {
+      -19.2121963501 -68.373008728 14.016076088
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.530341 -0.845836 -0.057435 }
+        <Binormal> { -0.835728 0.510230 0.202837 }
+      }
+      <Normal> { 0.138524 -0.161534 0.977081 }
+    }
+    <Vertex> 4797 {
+      -20.4556751251 -71.3910903931 13.5540771484
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.495895 -0.858596 -0.130004 }
+        <Binormal> { -0.867661 0.487750 0.088371 }
+      }
+      <Normal> { 0.031220 -0.124149 0.991760 }
+    }
+    <Vertex> 4798 {
+      -18.3166694641 -71.366317749 13.5859012604
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.576322 -0.816012 -0.044478 }
+        <Binormal> { -0.815955 0.577545 -0.023176 }
+      }
+      <Normal> { -0.049654 -0.030091 0.998291 }
+    }
+    <Vertex> 4799 {
+      -17.1218128204 -68.2739028931 13.6781978607
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.634400 -0.772243 0.034320 }
+        <Binormal> { -0.768620 0.634361 0.066103 }
+      }
+      <Normal> { 0.041749 -0.053377 0.997681 }
+    }
+    <Vertex> 4800 {
+      -23.1666622162 -68.373008728 14.016076088
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.029136 0.997768 0.059852 }
+        <Binormal> { 0.990269 -0.036965 0.134169 }
+      }
+      <Normal> { -0.136082 -0.055361 0.989135 }
+    }
+    <Vertex> 4801 {
+      -21.1048641205 -68.373008728 14.3047637939
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.147109 0.978755 0.142803 }
+        <Binormal> { 0.989109 -0.144889 -0.025879 }
+      }
+      <Normal> { 0.004639 -0.145054 0.989410 }
+    }
+    <Vertex> 4802 {
+      -19.8271713257 -64.8338394165 14.7309522629
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.008118 -0.005860 0.999939 }
+    }
+    <Vertex> 4803 {
+      -22.0035934448 -64.8573226929 14.2773885727
+      <UV>  {
+        0.250000 0.750000
+        <Tangent> { -0.528543 -0.840388 -0.119960 }
+        <Binormal> { -0.817651 0.541105 -0.188183 }
+      }
+      <Normal> { -0.193060 0.049074 0.979949 }
+    }
+    <Vertex> 4804 {
+      -23.1666622162 -68.373008728 14.016076088
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.029136 0.997768 0.059852 }
+        <Binormal> { 0.990269 -0.036965 0.134169 }
+      }
+      <Normal> { -0.136082 -0.055361 0.989135 }
+    }
+    <Vertex> 4805 {
+      -22.0035934448 -64.8573226929 14.2773885727
+      <UV>  {
+        0.250000 0.750000
+        <Tangent> { -0.528543 -0.840388 -0.119960 }
+        <Binormal> { -0.817651 0.541105 -0.188183 }
+      }
+      <Normal> { -0.193060 0.049074 0.979949 }
+    }
+    <Vertex> 4806 {
+      -24.0562496185 -64.8925170898 13.7604618073
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.618069 -0.776169 -0.124707 }
+        <Binormal> { -0.771860 0.623223 -0.053434 }
+      }
+      <Normal> { -0.048891 0.025056 0.998474 }
+    }
+    <Vertex> 4807 {
+      -25.2192821503 -68.373008728 13.6805820465
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.845251 -0.519835 -0.123783 }
+        <Binormal> { -0.524811 0.848206 0.021571 }
+      }
+      <Normal> { -0.036164 -0.047761 0.998199 }
+    }
+    <Vertex> 4808 {
+      -23.1666622162 -68.373008728 14.016076088
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.029136 0.997768 0.059852 }
+        <Binormal> { 0.990269 -0.036965 0.134169 }
+      }
+      <Normal> { -0.136082 -0.055361 0.989135 }
+    }
+    <Vertex> 4809 {
+      -25.2192821503 -68.373008728 13.6805820465
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.845251 -0.519835 -0.123783 }
+        <Binormal> { -0.524811 0.848206 0.021571 }
+      }
+      <Normal> { -0.036164 -0.047761 0.998199 }
+    }
+    <Vertex> 4810 {
+      -26.4124526978 -71.3910903931 13.5549955368
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.949019 -0.302648 -0.088127 }
+        <Binormal> { -0.304993 0.949141 0.024835 }
+      }
+      <Normal> { -0.005982 -0.028077 0.999573 }
+    }
+    <Vertex> 4811 {
+      -24.3297290802 -71.3910903931 13.596121788
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.999864 -0.000000 -0.016471 }
+        <Binormal> { -0.001224 0.997180 0.074272 }
+      }
+      <Normal> { -0.024171 -0.074282 0.996918 }
+    }
+    <Vertex> 4812 {
+      -23.1666622162 -68.373008728 14.016076088
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.029136 0.997768 0.059852 }
+        <Binormal> { 0.990269 -0.036965 0.134169 }
+      }
+      <Normal> { -0.136082 -0.055361 0.989135 }
+    }
+    <Vertex> 4813 {
+      -24.3297290802 -71.3910903931 13.596121788
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.999864 -0.000000 -0.016471 }
+        <Binormal> { -0.001224 0.997180 0.074272 }
+      }
+      <Normal> { -0.024171 -0.074282 0.996918 }
+    }
+    <Vertex> 4814 {
+      -22.3282394409 -71.3910903931 13.6222763062
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.145352 0.979675 0.138206 }
+        <Binormal> { 0.989229 -0.141462 -0.037620 }
+      }
+      <Normal> { 0.017304 -0.142186 0.989685 }
+    }
+    <Vertex> 4815 {
+      -21.1048641205 -68.373008728 14.3047637939
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.147109 0.978755 0.142803 }
+        <Binormal> { 0.989109 -0.144889 -0.025879 }
+      }
+      <Normal> { 0.004639 -0.145054 0.989410 }
+    }
+    <Vertex> 4816 {
+      -27.0844173431 -68.373008728 13.8288564682
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.392171 -0.917527 -0.065920 }
+        <Binormal> { -0.889853 0.360238 0.279839 }
+      }
+      <Normal> { 0.231697 -0.171484 0.957518 }
+    }
+    <Vertex> 4817 {
+      -25.2192821503 -68.373008728 13.6805820465
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.340709 -0.939699 -0.029711 }
+        <Binormal> { -0.939426 0.341170 -0.017711 }
+      }
+      <Normal> { -0.036164 -0.047761 0.998199 }
+    }
+    <Vertex> 4818 {
+      -24.0562496185 -64.8925170898 13.7604618073
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.337905 -0.940579 -0.033642 }
+        <Binormal> { -0.938300 0.339035 -0.054452 }
+      }
+      <Normal> { -0.048891 0.025056 0.998474 }
+    }
+    <Vertex> 4819 {
+      -25.7606678009 -64.9314041138 13.9965600967
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { -0.358621 -0.932377 -0.045433 }
+        <Binormal> { -0.891490 0.328561 0.294173 }
+      }
+      <Normal> { 0.296457 -0.049532 0.953734 }
+    }
+    <Vertex> 4820 {
+      -27.0844173431 -68.373008728 13.8288564682
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.392171 -0.917527 -0.065920 }
+        <Binormal> { -0.889853 0.360238 0.279839 }
+      }
+      <Normal> { 0.231697 -0.171484 0.957518 }
+    }
+    <Vertex> 4821 {
+      -25.7606678009 -64.9314041138 13.9965600967
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { -0.358621 -0.932377 -0.045433 }
+        <Binormal> { -0.891490 0.328561 0.294173 }
+      }
+      <Normal> { 0.296457 -0.049532 0.953734 }
+    }
+    <Vertex> 4822 {
+      -27.1226387024 -64.9619445801 14.8186845779
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.639256 -0.642426 0.422658 }
+        <Binormal> { -0.437744 0.755872 0.486826 }
+      }
+      <Normal> { 0.632344 -0.126072 0.764336 }
+    }
+    <Vertex> 4823 {
+      -28.5970687866 -68.373008728 14.5085248947
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.438089 -0.891748 -0.113417 }
+        <Binormal> { -0.710638 0.266323 0.650961 }
+      }
+      <Normal> { 0.557146 -0.351817 0.752159 }
+    }
+    <Vertex> 4824 {
+      -27.0844173431 -68.373008728 13.8288564682
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.392171 -0.917527 -0.065920 }
+        <Binormal> { -0.889853 0.360238 0.279839 }
+      }
+      <Normal> { 0.231697 -0.171484 0.957518 }
+    }
+    <Vertex> 4825 {
+      -28.5970687866 -68.373008728 14.5085248947
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.438089 -0.891748 -0.113417 }
+        <Binormal> { -0.710638 0.266323 0.650961 }
+      }
+      <Normal> { 0.557146 -0.351817 0.752159 }
+    }
+    <Vertex> 4826 {
+      -30.257068634 -71.3422012329 14.0072135925
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.457458 -0.882301 -0.110800 }
+        <Binormal> { -0.762412 0.325406 0.556543 }
+      }
+      <Normal> { 0.480148 -0.290536 0.827631 }
+    }
+    <Vertex> 4827 {
+      -28.5287132263 -71.3910903931 13.5782823563
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.430461 -0.899514 -0.074682 }
+        <Binormal> { -0.894991 0.415111 0.158812 }
+      }
+      <Normal> { 0.127964 -0.101535 0.986541 }
+    }
+    <Vertex> 4828 {
+      -27.0844173431 -68.373008728 13.8288564682
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.392171 -0.917527 -0.065920 }
+        <Binormal> { -0.889853 0.360238 0.279839 }
+      }
+      <Normal> { 0.231697 -0.171484 0.957518 }
+    }
+    <Vertex> 4829 {
+      -28.5287132263 -71.3910903931 13.5782823563
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.430461 -0.899514 -0.074682 }
+        <Binormal> { -0.894991 0.415111 0.158812 }
+      }
+      <Normal> { 0.127964 -0.101535 0.986541 }
+    }
+    <Vertex> 4830 {
+      -26.4124526978 -71.3910903931 13.5549955368
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.399740 -0.914854 -0.057012 }
+        <Binormal> { -0.916064 0.399910 0.005751 }
+      }
+      <Normal> { -0.005982 -0.028077 0.999573 }
+    }
+    <Vertex> 4831 {
+      -25.2192821503 -68.373008728 13.6805820465
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.340709 -0.939699 -0.029711 }
+        <Binormal> { -0.939426 0.341170 -0.017711 }
+      }
+      <Normal> { -0.036164 -0.047761 0.998199 }
+    }
+    <Vertex> 4832 {
+      -4.68306398392 -68.04737854 13.6130781174
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.912370 0.037727 0.407624 }
+        <Binormal> { -0.019239 -0.990573 0.134743 }
+      }
+      <Normal> { -0.420820 0.130284 0.897702 }
+    }
+    <Vertex> 4833 {
+      -3.11658453941 -67.9795455933 14.1249694824
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.943910 -0.068098 0.323105 }
+        <Binormal> { -0.098065 -0.975609 0.080864 }
+      }
+      <Normal> { -0.140812 0.095828 0.985382 }
+    }
+    <Vertex> 4834 {
+      -2.4554605484 -65.1486206055 13.9283847809
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.951313 -0.001955 0.308219 }
+        <Binormal> { -0.031697 -0.980942 0.091611 }
+      }
+      <Normal> { -0.142094 0.096591 0.985107 }
+    }
+    <Vertex> 4835 {
+      -3.73602843285 -64.9642791748 13.4998779297
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.916752 0.110176 0.383962 }
+        <Binormal> { 0.019423 -0.972233 0.232604 }
+      }
+      <Normal> { -0.413373 0.204047 0.887387 }
+    }
+    <Vertex> 4836 {
+      -4.68306398392 -68.04737854 13.6130781174
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.912370 0.037727 0.407624 }
+        <Binormal> { -0.019239 -0.990573 0.134743 }
+      }
+      <Normal> { -0.420820 0.130284 0.897702 }
+    }
+    <Vertex> 4837 {
+      -3.73602843285 -64.9642791748 13.4998779297
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.916752 0.110176 0.383962 }
+        <Binormal> { 0.019423 -0.972233 0.232604 }
+      }
+      <Normal> { -0.413373 0.204047 0.887387 }
+    }
+    <Vertex> 4838 {
+      -4.65595674515 -64.878578186 12.9149770737
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.861184 0.079774 0.501994 }
+        <Binormal> { -0.003518 -0.964319 0.159280 }
+      }
+      <Normal> { -0.314768 0.155797 0.936277 }
+    }
+    <Vertex> 4839 {
+      -5.84755802155 -68.1924972534 12.9587469101
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.862868 -0.022364 0.504935 }
+        <Binormal> { -0.071289 -0.974567 0.078660 }
+      }
+      <Normal> { -0.320200 0.099460 0.942076 }
+    }
+    <Vertex> 4840 {
+      -4.68306398392 -68.04737854 13.6130781174
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.912370 0.037727 0.407624 }
+        <Binormal> { -0.019239 -0.990573 0.134743 }
+      }
+      <Normal> { -0.420820 0.130284 0.897702 }
+    }
+    <Vertex> 4841 {
+      -5.84755802155 -68.1924972534 12.9587469101
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.862868 -0.022364 0.504935 }
+        <Binormal> { -0.071289 -0.974567 0.078660 }
+      }
+      <Normal> { -0.320200 0.099460 0.942076 }
+    }
+    <Vertex> 4842 {
+      -6.19889211655 -71.3269424438 13.0155086517
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.837982 0.204186 0.506057 }
+        <Binormal> { 0.169354 -0.949781 0.102787 }
+      }
+      <Normal> { -0.298746 0.049867 0.953001 }
+    }
+    <Vertex> 4843 {
+      -5.03026485443 -70.2021942139 13.7020301819
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.888490 0.140116 0.436982 }
+        <Binormal> { 0.104377 -0.988895 0.104862 }
+      }
+      <Normal> { -0.437208 0.049074 0.897977 }
+    }
+    <Vertex> 4844 {
+      -4.68306398392 -68.04737854 13.6130781174
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.912370 0.037727 0.407624 }
+        <Binormal> { -0.019239 -0.990573 0.134743 }
+      }
+      <Normal> { -0.420820 0.130284 0.897702 }
+    }
+    <Vertex> 4845 {
+      -5.03026485443 -70.2021942139 13.7020301819
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.888490 0.140116 0.436982 }
+        <Binormal> { 0.104377 -0.988895 0.104862 }
+      }
+      <Normal> { -0.437208 0.049074 0.897977 }
+    }
+    <Vertex> 4846 {
+      -3.48870635033 -69.9984741211 14.2370128632
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.937723 -0.099118 0.332943 }
+        <Binormal> { -0.104816 -0.979684 0.003556 }
+      }
+      <Normal> { -0.165654 0.021302 0.985931 }
+    }
+    <Vertex> 4847 {
+      -3.11658453941 -67.9795455933 14.1249694824
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.943910 -0.068098 0.323105 }
+        <Binormal> { -0.098065 -0.975609 0.080864 }
+      }
+      <Normal> { -0.140812 0.095828 0.985382 }
+    }
+    <Vertex> 4848 {
+      -14.4668617249 -67.9765930176 13.8193187714
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.348420 -0.937225 0.014557 }
+        <Binormal> { -0.935939 0.347016 -0.059631 }
+      }
+      <Normal> { -0.051180 0.033479 0.998108 }
+    }
+    <Vertex> 4849 {
+      -12.2778902054 -67.6792755127 13.8965911865
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.307524 -0.950873 0.035624 }
+        <Binormal> { -0.902036 0.303236 0.307156 }
+      }
+      <Normal> { 0.303018 -0.061861 0.950957 }
+    }
+    <Vertex> 4850 {
+      -10.8337583542 -63.9921989441 13.788312912
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.378778 -0.925237 0.021537 }
+        <Binormal> { -0.860464 0.360561 0.356551 }
+      }
+      <Normal> { 0.318857 -0.162450 0.933775 }
+    }
+    <Vertex> 4851 {
+      -12.9185094833 -64.3539581299 13.7574453354
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.392969 -0.919418 0.015703 }
+        <Binormal> { -0.919120 0.392287 -0.032483 }
+      }
+      <Normal> { -0.029695 0.013184 0.999451 }
+    }
+    <Vertex> 4852 {
+      -14.4668617249 -67.9765930176 13.8193187714
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.348420 -0.937225 0.014557 }
+        <Binormal> { -0.935939 0.347016 -0.059631 }
+      }
+      <Normal> { -0.051180 0.033479 0.998108 }
+    }
+    <Vertex> 4853 {
+      -12.9185094833 -64.3539581299 13.7574453354
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.392969 -0.919418 0.015703 }
+        <Binormal> { -0.919120 0.392287 -0.032483 }
+      }
+      <Normal> { -0.029695 0.013184 0.999451 }
+    }
+    <Vertex> 4854 {
+      -15.5305328369 -64.7141723633 13.7349014282
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.400535 -0.916281 0.000660 }
+        <Binormal> { -0.912653 0.399012 0.088363 }
+      }
+      <Normal> { 0.082522 -0.031831 0.996063 }
+    }
+    <Vertex> 4855 {
+      -17.1218128204 -68.2739028931 13.6781978607
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.386235 -0.922169 -0.020655 }
+        <Binormal> { -0.921133 0.384477 0.059116 }
+      }
+      <Normal> { 0.041749 -0.053377 0.997681 }
+    }
+    <Vertex> 4856 {
+      -14.4668617249 -67.9765930176 13.8193187714
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.348420 -0.937225 0.014557 }
+        <Binormal> { -0.935939 0.347016 -0.059631 }
+      }
+      <Normal> { -0.051180 0.033479 0.998108 }
+    }
+    <Vertex> 4857 {
+      -17.1218128204 -68.2739028931 13.6781978607
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.386235 -0.922169 -0.020655 }
+        <Binormal> { -0.921133 0.384477 0.059116 }
+      }
+      <Normal> { 0.041749 -0.053377 0.997681 }
+    }
+    <Vertex> 4858 {
+      -18.3166694641 -71.366317749 13.5859012604
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.330497 -0.943807 0.000076 }
+        <Binormal> { -0.942192 0.329928 -0.036918 }
+      }
+      <Normal> { -0.049654 -0.030091 0.998291 }
+    }
+    <Vertex> 4859 {
+      -15.5158557892 -71.2919921875 13.9121294022
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.301554 -0.953076 0.026680 }
+        <Binormal> { -0.950046 0.298091 -0.089455 }
+      }
+      <Normal> { -0.084262 0.030335 0.995972 }
+    }
+    <Vertex> 4860 {
+      -14.4668617249 -67.9765930176 13.8193187714
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.348420 -0.937225 0.014557 }
+        <Binormal> { -0.935939 0.347016 -0.059631 }
+      }
+      <Normal> { -0.051180 0.033479 0.998108 }
+    }
+    <Vertex> 4861 {
+      -15.5158557892 -71.2919921875 13.9121294022
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.301554 -0.953076 0.026680 }
+        <Binormal> { -0.950046 0.298091 -0.089455 }
+      }
+      <Normal> { -0.084262 0.030335 0.995972 }
+    }
+    <Vertex> 4862 {
+      -13.1705560684 -71.2176589966 14.0590105057
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.272396 -0.961519 0.035806 }
+        <Binormal> { -0.926669 0.272141 0.258266 }
+      }
+      <Normal> { 0.264046 -0.016083 0.964354 }
+    }
+    <Vertex> 4863 {
+      -12.2778902054 -67.6792755127 13.8965911865
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.307524 -0.950873 0.035624 }
+        <Binormal> { -0.902036 0.303236 0.307156 }
+      }
+      <Normal> { 0.303018 -0.061861 0.950957 }
+    }
+    <Vertex> 4864 {
+      0.639751911163 -68.4273071289 13.9982557297
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.989430 -0.139575 -0.039324 }
+        <Binormal> { -0.136648 -0.988180 0.069215 }
+      }
+      <Normal> { 0.048067 0.063173 0.996826 }
+    }
+    <Vertex> 4865 {
+      5.27937889099 -68.9584579468 13.6979417801
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.991463 -0.113504 -0.064175 }
+        <Binormal> { -0.110313 -0.992017 0.050271 }
+      }
+      <Normal> { 0.035035 0.046693 0.998291 }
+    }
+    <Vertex> 4866 {
+      6.00489807129 -66.2164764404 13.7195005417
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.922978 0.369809 0.106554 }
+        <Binormal> { 0.358047 -0.785974 -0.373606 }
+      }
+      <Normal> { -0.257790 -0.508072 0.821802 }
+    }
+    <Vertex> 4867 {
+      1.05940437317 -65.8644638062 13.7779159546
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.991831 -0.125188 -0.024488 }
+        <Binormal> { -0.125370 -0.992059 -0.006225 }
+      }
+      <Normal> { 0.017975 -0.008545 0.999786 }
+    }
+    <Vertex> 4868 {
+      0.639751911163 -68.4273071289 13.9982557297
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.989430 -0.139575 -0.039324 }
+        <Binormal> { -0.136648 -0.988180 0.069215 }
+      }
+      <Normal> { 0.048067 0.063173 0.996826 }
+    }
+    <Vertex> 4869 {
+      1.05940437317 -65.8644638062 13.7779159546
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.991831 -0.125188 -0.024488 }
+        <Binormal> { -0.125370 -0.992059 -0.006225 }
+      }
+      <Normal> { 0.017975 -0.008545 0.999786 }
+    }
+    <Vertex> 4870 {
+      -2.4554605484 -65.1486206055 13.9283847809
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.883808 0.467001 -0.028173 }
+        <Binormal> { 0.462767 -0.866642 0.151726 }
+      }
+      <Normal> { -0.142094 0.096591 0.985107 }
+    }
+    <Vertex> 4871 {
+      -3.11658453941 -67.9795455933 14.1249694824
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.992414 -0.118297 -0.033477 }
+        <Binormal> { -0.113360 -0.973192 0.078443 }
+      }
+      <Normal> { -0.140812 0.095828 0.985382 }
+    }
+    <Vertex> 4872 {
+      0.639751911163 -68.4273071289 13.9982557297
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.989430 -0.139575 -0.039324 }
+        <Binormal> { -0.136648 -0.988180 0.069215 }
+      }
+      <Normal> { 0.048067 0.063173 0.996826 }
+    }
+    <Vertex> 4873 {
+      -3.11658453941 -67.9795455933 14.1249694824
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.992414 -0.118297 -0.033477 }
+        <Binormal> { -0.113360 -0.973192 0.078443 }
+      }
+      <Normal> { -0.140812 0.095828 0.985382 }
+    }
+    <Vertex> 4874 {
+      -3.48870635033 -69.9984741211 14.2370128632
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.992775 -0.118366 -0.019700 }
+        <Binormal> { -0.116281 -0.975544 0.001540 }
+      }
+      <Normal> { -0.165654 0.021302 0.985931 }
+    }
+    <Vertex> 4875 {
+      -0.150619730353 -70.3965606689 14.2229480743
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.978001 -0.206233 -0.031325 }
+        <Binormal> { -0.205210 -0.978099 0.032607 }
+      }
+      <Normal> { 0.025971 0.027863 0.999268 }
+    }
+    <Vertex> 4876 {
+      0.639751911163 -68.4273071289 13.9982557297
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.989430 -0.139575 -0.039324 }
+        <Binormal> { -0.136648 -0.988180 0.069215 }
+      }
+      <Normal> { 0.048067 0.063173 0.996826 }
+    }
+    <Vertex> 4877 {
+      -0.150619730353 -70.3965606689 14.2229480743
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.978001 -0.206233 -0.031325 }
+        <Binormal> { -0.205210 -0.978099 0.032607 }
+      }
+      <Normal> { 0.025971 0.027863 0.999268 }
+    }
+    <Vertex> 4878 {
+      4.19780635834 -71.6193466187 13.99081707
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.979832 -0.191205 -0.058044 }
+        <Binormal> { -0.187138 -0.979748 0.068378 }
+      }
+      <Normal> { 0.051088 0.059816 0.996887 }
+    }
+    <Vertex> 4879 {
+      5.27937889099 -68.9584579468 13.6979417801
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.991463 -0.113504 -0.064175 }
+        <Binormal> { -0.110313 -0.992017 0.050271 }
+      }
+      <Normal> { 0.035035 0.046693 0.998291 }
+    }
+    <Vertex> 4880 {
+      9.06874370575 -66.0294265747 14.1630878448
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.666164 0.380351 0.641528 }
+        <Binormal> { 0.720643 -0.106785 -0.685006 }
+      }
+      <Normal> { 0.190222 -0.919675 0.343486 }
+    }
+    <Vertex> 4881 {
+      7.36922883987 -66.1596908569 14.8362121582
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.084658 -0.952727 0.291757 }
+    }
+    <Vertex> 4882 {
+      6.00489807129 -66.2164764404 13.7195005417
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.922978 0.369809 0.106554 }
+        <Binormal> { 0.358047 -0.785974 -0.373606 }
+      }
+      <Normal> { -0.257790 -0.508072 0.821802 }
+    }
+    <Vertex> 4883 {
+      9.68840789795 -66.7380523682 13.678355217
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.518092 0.783812 0.342372 }
+        <Binormal> { 0.843485 -0.404794 -0.349678 }
+      }
+      <Normal> { 0.110355 -0.507981 0.854244 }
+    }
+    <Vertex> 4884 {
+      9.06874370575 -66.0294265747 14.1630878448
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.666164 0.380351 0.641528 }
+        <Binormal> { 0.720643 -0.106785 -0.685006 }
+      }
+      <Normal> { 0.190222 -0.919675 0.343486 }
+    }
+    <Vertex> 4885 {
+      9.68840789795 -66.7380523682 13.678355217
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.518092 0.783812 0.342372 }
+        <Binormal> { 0.843485 -0.404794 -0.349678 }
+      }
+      <Normal> { 0.110355 -0.507981 0.854244 }
+    }
+    <Vertex> 4886 {
+      14.2475652695 -63.6229171753 13.8011636734
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.454737 0.585509 0.671114 }
+        <Binormal> { 0.631049 0.319505 -0.706340 }
+      }
+      <Normal> { 0.640004 -0.729240 0.241920 }
+    }
+    <Vertex> 4887 {
+      10.5501489639 -65.6284942627 14.950138092
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.466226 0.017279 0.884497 }
+        <Binormal> { 0.825221 0.221445 -0.439307 }
+      }
+      <Normal> { 0.332774 -0.929929 0.156346 }
+    }
+    <Vertex> 4888 {
+      9.06874370575 -66.0294265747 14.1630878448
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.666164 0.380351 0.641528 }
+        <Binormal> { 0.720643 -0.106785 -0.685006 }
+      }
+      <Normal> { 0.190222 -0.919675 0.343486 }
+    }
+    <Vertex> 4889 {
+      10.5501489639 -65.6284942627 14.950138092
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.466226 0.017279 0.884497 }
+        <Binormal> { 0.825221 0.221445 -0.439307 }
+      }
+      <Normal> { 0.332774 -0.929929 0.156346 }
+    }
+    <Vertex> 4890 {
+      8.71514415741 -65.9041290283 15.4456949234
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.718440 -0.044750 0.694147 }
+        <Binormal> { 0.669701 0.209769 0.706662 }
+      }
+      <Normal> { 0.112583 -0.976592 0.183203 }
+    }
+    <Vertex> 4891 {
+      7.36922883987 -66.1596908569 14.8362121582
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.084658 -0.952727 0.291757 }
+    }
+    <Vertex> 4892 {
+      9.49573326111 -69.1408157349 13.6890363693
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.149430 0.988286 -0.030999 }
+        <Binormal> { 0.988747 -0.149154 0.011022 }
+      }
+      <Normal> { -0.006256 0.032380 0.999451 }
+    }
+    <Vertex> 4893 {
+      9.68840789795 -66.7380523682 13.678355217
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.079931 0.996791 -0.004431 }
+        <Binormal> { 0.849251 -0.068770 -0.150604 }
+      }
+      <Normal> { 0.110355 -0.507981 0.854244 }
+    }
+    <Vertex> 4894 {
+      6.00489807129 -66.2164764404 13.7195005417
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.922978 0.369809 0.106554 }
+        <Binormal> { 0.358047 -0.785974 -0.373606 }
+      }
+      <Normal> { -0.257790 -0.508072 0.821802 }
+    }
+    <Vertex> 4895 {
+      5.27937889099 -68.9584579468 13.6979417801
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.316838 0.947286 -0.047570 }
+        <Binormal> { 0.947888 -0.317963 -0.018394 }
+      }
+      <Normal> { 0.035035 0.046693 0.998291 }
+    }
+    <Vertex> 4896 {
+      9.49573326111 -69.1408157349 13.6890363693
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.149430 0.988286 -0.030999 }
+        <Binormal> { 0.988747 -0.149154 0.011022 }
+      }
+      <Normal> { -0.006256 0.032380 0.999451 }
+    }
+    <Vertex> 4897 {
+      5.27937889099 -68.9584579468 13.6979417801
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.316838 0.947286 -0.047570 }
+        <Binormal> { 0.947888 -0.317963 -0.018394 }
+      }
+      <Normal> { 0.035035 0.046693 0.998291 }
+    }
+    <Vertex> 4898 {
+      4.19780635834 -71.6193466187 13.99081707
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.259113 0.962327 -0.082382 }
+        <Binormal> { 0.964259 -0.262515 -0.033664 }
+      }
+      <Normal> { 0.051088 0.059816 0.996887 }
+    }
+    <Vertex> 4899 {
+      9.04659843445 -72.1648635864 13.8828315735
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.146615 0.987169 -0.063262 }
+        <Binormal> { 0.988894 -0.146896 -0.000383 }
+      }
+      <Normal> { 0.006561 0.041566 0.999084 }
+    }
+    <Vertex> 4900 {
+      9.49573326111 -69.1408157349 13.6890363693
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.149430 0.988286 -0.030999 }
+        <Binormal> { 0.988747 -0.149154 0.011022 }
+      }
+      <Normal> { -0.006256 0.032380 0.999451 }
+    }
+    <Vertex> 4901 {
+      9.04659843445 -72.1648635864 13.8828315735
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.146615 0.987169 -0.063262 }
+        <Binormal> { 0.988894 -0.146896 -0.000383 }
+      }
+      <Normal> { 0.006561 0.041566 0.999084 }
+    }
+    <Vertex> 4902 {
+      13.5004501343 -72.7486724854 13.9170331955
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.067587 0.996791 -0.042886 }
+        <Binormal> { 0.997572 -0.067160 0.011159 }
+      }
+      <Normal> { -0.009095 0.030976 0.999451 }
+    }
+    <Vertex> 4903 {
+      13.5004501343 -69.1487731934 13.8258371353
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.081589 0.996586 -0.012654 }
+        <Binormal> { 0.996249 -0.081216 0.027266 }
+      }
+      <Normal> { -0.025208 0.026276 0.999329 }
+    }
+    <Vertex> 4904 {
+      9.49573326111 -69.1408157349 13.6890363693
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.149430 0.988286 -0.030999 }
+        <Binormal> { 0.988747 -0.149154 0.011022 }
+      }
+      <Normal> { -0.006256 0.032380 0.999451 }
+    }
+    <Vertex> 4905 {
+      13.5004501343 -69.1487731934 13.8258371353
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.081589 0.996586 -0.012654 }
+        <Binormal> { 0.996249 -0.081216 0.027266 }
+      }
+      <Normal> { -0.025208 0.026276 0.999329 }
+    }
+    <Vertex> 4906 {
+      14.2475652695 -63.6229171753 13.8011636734
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.117706 0.993039 -0.004428 }
+        <Binormal> { 0.237007 -0.031309 -0.721384 }
+      }
+      <Normal> { 0.640004 -0.729240 0.241920 }
+    }
+    <Vertex> 4907 {
+      9.68840789795 -66.7380523682 13.678355217
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.079931 0.996791 -0.004431 }
+        <Binormal> { 0.849251 -0.068770 -0.150604 }
+      }
+      <Normal> { 0.110355 -0.507981 0.854244 }
+    }
+    <Vertex> 4908 {
+      -9.18782806396 -74.0515060425 13.0148735046
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.997980 -0.053918 0.033606 }
+        <Binormal> { -0.055725 -0.996873 0.055431 }
+      }
+      <Normal> { -0.035035 0.057436 0.997711 }
+    }
+    <Vertex> 4909 {
+      -6.58286237717 -74.0182876587 13.1800298691
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.995578 -0.062149 0.070446 }
+        <Binormal> { -0.067084 -0.994687 0.070528 }
+      }
+      <Normal> { -0.098636 0.076998 0.992126 }
+    }
+    <Vertex> 4910 {
+      -6.19889211655 -71.3269424438 13.0155086517
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.997459 0.025327 0.066581 }
+        <Binormal> { 0.020816 -0.970471 0.057307 }
+      }
+      <Normal> { -0.298746 0.049867 0.953001 }
+    }
+    <Vertex> 4911 {
+      -9.05541038513 -71.3144760132 12.8091955185
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.997396 0.071929 0.005174 }
+        <Binormal> { 0.071546 -0.995933 0.053593 }
+      }
+      <Normal> { -0.017212 0.052492 0.998444 }
+    }
+    <Vertex> 4912 {
+      -9.18782806396 -74.0515060425 13.0148735046
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.997980 -0.053918 0.033606 }
+        <Binormal> { -0.055725 -0.996873 0.055431 }
+      }
+      <Normal> { -0.035035 0.057436 0.997711 }
+    }
+    <Vertex> 4913 {
+      -9.05541038513 -71.3144760132 12.8091955185
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.997396 0.071929 0.005174 }
+        <Binormal> { 0.071546 -0.995933 0.053593 }
+      }
+      <Normal> { -0.017212 0.052492 0.998444 }
+    }
+    <Vertex> 4914 {
+      -11.5693979263 -71.223274231 12.9505004883
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.999167 -0.000500 -0.040814 }
+        <Binormal> { -0.000763 -0.957828 -0.006942 }
+      }
+      <Normal> { 0.325999 -0.007111 0.945311 }
+    }
+    <Vertex> 4915 {
+      -11.7986879349 -73.9840545654 13.0483255386
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.996762 -0.079592 -0.011451 }
+        <Binormal> { -0.075635 -0.955297 0.056214 }
+      }
+      <Normal> { 0.294656 0.032868 0.955016 }
+    }
+    <Vertex> 4916 {
+      -9.18782806396 -74.0515060425 13.0148735046
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.997980 -0.053918 0.033606 }
+        <Binormal> { -0.055725 -0.996873 0.055431 }
+      }
+      <Normal> { -0.035035 0.057436 0.997711 }
+    }
+    <Vertex> 4917 {
+      -11.7986879349 -73.9840545654 13.0483255386
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.996762 -0.079592 -0.011451 }
+        <Binormal> { -0.075635 -0.955297 0.056214 }
+      }
+      <Normal> { 0.294656 0.032868 0.955016 }
+    }
+    <Vertex> 4918 {
+      -11.4810743332 -76.4500961304 13.0774488449
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.989517 -0.144295 0.005987 }
+        <Binormal> { -0.138816 -0.947677 0.102822 }
+      }
+      <Normal> { 0.274758 0.063845 0.959380 }
+    }
+    <Vertex> 4919 {
+      -8.82142162323 -76.55128479 13.1313676834
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.971608 -0.218906 0.089764 }
+        <Binormal> { -0.217930 -0.975300 -0.019572 }
+      }
+      <Normal> { -0.063265 -0.005890 0.997955 }
+    }
+    <Vertex> 4920 {
+      -9.18782806396 -74.0515060425 13.0148735046
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.997980 -0.053918 0.033606 }
+        <Binormal> { -0.055725 -0.996873 0.055431 }
+      }
+      <Normal> { -0.035035 0.057436 0.997711 }
+    }
+    <Vertex> 4921 {
+      -8.82142162323 -76.55128479 13.1313676834
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.971608 -0.218906 0.089764 }
+        <Binormal> { -0.217930 -0.975300 -0.019572 }
+      }
+      <Normal> { -0.063265 -0.005890 0.997955 }
+    }
+    <Vertex> 4922 {
+      -5.85239982605 -76.681098938 13.5620059967
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.985099 -0.134115 0.107668 }
+        <Binormal> { -0.131043 -0.980590 -0.022498 }
+      }
+      <Normal> { -0.250465 0.011261 0.968047 }
+    }
+    <Vertex> 4923 {
+      -6.58286237717 -74.0182876587 13.1800298691
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.995578 -0.062149 0.070446 }
+        <Binormal> { -0.067084 -0.994687 0.070528 }
+      }
+      <Normal> { -0.098636 0.076998 0.992126 }
+    }
+    <Vertex> 4924 {
+      -12.6689739227 -73.9615707397 13.6146593094
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.839613 -0.102647 -0.533398 }
+        <Binormal> { -0.076702 -0.994512 0.070648 }
+      }
+      <Normal> { 0.541978 0.017884 0.840175 }
+    }
+    <Vertex> 4925 {
+      -11.7986879349 -73.9840545654 13.0483255386
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.823750 -0.202216 -0.529664 }
+        <Binormal> { -0.175710 -0.942763 0.086660 }
+      }
+      <Normal> { 0.294656 0.032868 0.955016 }
+    }
+    <Vertex> 4926 {
+      -11.5693979263 -71.223274231 12.9505004883
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.823009 0.034602 -0.566973 }
+        <Binormal> { 0.028678 -0.962832 -0.017132 }
+      }
+      <Normal> { 0.325999 -0.007111 0.945311 }
+    }
+    <Vertex> 4927 {
+      -12.3980903625 -71.1928863525 13.5527858734
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.803295 0.239917 -0.545122 }
+        <Binormal> { 0.162073 -0.968770 -0.187540 }
+      }
+      <Normal> { 0.569659 -0.063326 0.819422 }
+    }
+    <Vertex> 4928 {
+      -12.6689739227 -73.9615707397 13.6146593094
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.839613 -0.102647 -0.533398 }
+        <Binormal> { -0.076702 -0.994512 0.070648 }
+      }
+      <Normal> { 0.541978 0.017884 0.840175 }
+    }
+    <Vertex> 4929 {
+      -12.3980903625 -71.1928863525 13.5527858734
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.803295 0.239917 -0.545122 }
+        <Binormal> { 0.162073 -0.968770 -0.187540 }
+      }
+      <Normal> { 0.569659 -0.063326 0.819422 }
+    }
+    <Vertex> 4930 {
+      -13.1705560684 -71.2176589966 14.0590105057
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.838497 0.102090 -0.535257 }
+        <Binormal> { 0.089842 -0.949941 -0.040442 }
+      }
+      <Normal> { 0.264046 -0.016083 0.964354 }
+    }
+    <Vertex> 4931 {
+      -13.4681100845 -73.9615707397 14.1131496429
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.839887 -0.147601 -0.522306 }
+        <Binormal> { -0.137340 -0.942059 0.045374 }
+      }
+      <Normal> { 0.244545 0.011048 0.969573 }
+    }
+    <Vertex> 4932 {
+      -12.6689739227 -73.9615707397 13.6146593094
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.839613 -0.102647 -0.533398 }
+        <Binormal> { -0.076702 -0.994512 0.070648 }
+      }
+      <Normal> { 0.541978 0.017884 0.840175 }
+    }
+    <Vertex> 4933 {
+      -13.4681100845 -73.9615707397 14.1131496429
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.839887 -0.147601 -0.522306 }
+        <Binormal> { -0.137340 -0.942059 0.045374 }
+      }
+      <Normal> { 0.244545 0.011048 0.969573 }
+    }
+    <Vertex> 4934 {
+      -13.1667613983 -76.4163742065 14.1131496429
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.820072 -0.297656 -0.488756 }
+        <Binormal> { -0.261672 -0.911902 0.116302 }
+      }
+      <Normal> { 0.239296 0.054964 0.969359 }
+    }
+    <Vertex> 4935 {
+      -12.3676233292 -76.4163742065 13.6146593094
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.770529 -0.461471 -0.439693 }
+        <Binormal> { -0.334355 -0.879762 0.337403 }
+      }
+      <Normal> { 0.528031 0.121647 0.840449 }
+    }
+    <Vertex> 4936 {
+      -12.6689739227 -73.9615707397 13.6146593094
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.839613 -0.102647 -0.533398 }
+        <Binormal> { -0.076702 -0.994512 0.070648 }
+      }
+      <Normal> { 0.541978 0.017884 0.840175 }
+    }
+    <Vertex> 4937 {
+      -12.3676233292 -76.4163742065 13.6146593094
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.770529 -0.461471 -0.439693 }
+        <Binormal> { -0.334355 -0.879762 0.337403 }
+      }
+      <Normal> { 0.528031 0.121647 0.840449 }
+    }
+    <Vertex> 4938 {
+      -11.4810743332 -76.4500961304 13.0774488449
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.812236 -0.319527 -0.488031 }
+        <Binormal> { -0.275390 -0.913334 0.139650 }
+      }
+      <Normal> { 0.274758 0.063845 0.959380 }
+    }
+    <Vertex> 4939 {
+      -11.7986879349 -73.9840545654 13.0483255386
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.823750 -0.202216 -0.529664 }
+        <Binormal> { -0.175710 -0.942763 0.086660 }
+      }
+      <Normal> { 0.294656 0.032868 0.955016 }
+    }
+    <Vertex> 4940 {
+      -20.8701686859 -73.9615707397 13.3228359222
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.326555 -0.943030 -0.063684 }
+        <Binormal> { -0.944273 0.328394 -0.020860 }
+      }
+      <Normal> { -0.039674 -0.050691 0.997894 }
+    }
+    <Vertex> 4941 {
+      -18.7149562836 -73.9615707397 13.5358247757
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.510867 -0.857619 -0.059191 }
+        <Binormal> { -0.853474 0.514175 -0.083697 }
+      }
+      <Normal> { -0.108554 -0.018403 0.993896 }
+    }
+    <Vertex> 4942 {
+      -18.3166694641 -71.366317749 13.5859012604
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.538270 -0.839757 -0.071230 }
+        <Binormal> { -0.840465 0.540887 -0.025500 }
+      }
+      <Normal> { -0.049654 -0.030091 0.998291 }
+    }
+    <Vertex> 4943 {
+      -20.4556751251 -71.3910903931 13.5540771484
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.480606 -0.873696 -0.075326 }
+        <Binormal> { -0.875848 0.474294 0.086944 }
+      }
+      <Normal> { 0.031220 -0.124149 0.991760 }
+    }
+    <Vertex> 4944 {
+      -20.8701686859 -73.9615707397 13.3228359222
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.326555 -0.943030 -0.063684 }
+        <Binormal> { -0.944273 0.328394 -0.020860 }
+      }
+      <Normal> { -0.039674 -0.050691 0.997894 }
+    }
+    <Vertex> 4945 {
+      -20.4556751251 -71.3910903931 13.5540771484
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.480606 -0.873696 -0.075326 }
+        <Binormal> { -0.875848 0.474294 0.086944 }
+      }
+      <Normal> { 0.031220 -0.124149 0.991760 }
+    }
+    <Vertex> 4946 {
+      -22.3282394409 -71.3910903931 13.6222763062
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.322228 -0.941993 -0.093901 }
+        <Binormal> { -0.945628 0.317279 0.062116 }
+      }
+      <Normal> { 0.017304 -0.142186 0.989685 }
+    }
+    <Vertex> 4947 {
+      -22.7360343933 -73.9615707397 13.3069486618
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.073244 -0.994457 -0.075436 }
+        <Binormal> { -0.996339 0.070093 0.043365 }
+      }
+      <Normal> { 0.039399 -0.057131 0.997559 }
+    }
+    <Vertex> 4948 {
+      -20.8701686859 -73.9615707397 13.3228359222
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.326555 -0.943030 -0.063684 }
+        <Binormal> { -0.944273 0.328394 -0.020860 }
+      }
+      <Normal> { -0.039674 -0.050691 0.997894 }
+    }
+    <Vertex> 4949 {
+      -22.7360343933 -73.9615707397 13.3069486618
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.073244 -0.994457 -0.075436 }
+        <Binormal> { -0.996339 0.070093 0.043365 }
+      }
+      <Normal> { 0.039399 -0.057131 0.997559 }
+    }
+    <Vertex> 4950 {
+      -22.6983642578 -76.4163742065 13.2410755157
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.062260 -0.997712 -0.026370 }
+        <Binormal> { -0.996377 0.060824 0.051196 }
+      }
+      <Normal> { 0.051302 -0.000183 0.998657 }
+    }
+    <Vertex> 4951 {
+      -20.7194957733 -76.4163742065 13.2649049759
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.152953 -0.987526 -0.037398 }
+        <Binormal> { -0.986293 0.154778 -0.053212 }
+      }
+      <Normal> { -0.055269 -0.008942 0.998413 }
+    }
+    <Vertex> 4952 {
+      -20.8701686859 -73.9615707397 13.3228359222
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.326555 -0.943030 -0.063684 }
+        <Binormal> { -0.944273 0.328394 -0.020860 }
+      }
+      <Normal> { -0.039674 -0.050691 0.997894 }
+    }
+    <Vertex> 4953 {
+      -20.7194957733 -76.4163742065 13.2649049759
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.152953 -0.987526 -0.037398 }
+        <Binormal> { -0.986293 0.154778 -0.053212 }
+      }
+      <Normal> { -0.055269 -0.008942 0.998413 }
+    }
+    <Vertex> 4954 {
+      -18.4512748718 -76.4163742065 13.5213413239
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.307567 -0.949999 -0.053892 }
+        <Binormal> { -0.944008 0.311738 -0.107726 }
+      }
+      <Normal> { -0.120945 -0.023316 0.992370 }
+    }
+    <Vertex> 4955 {
+      -18.7149562836 -73.9615707397 13.5358247757
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.510867 -0.857619 -0.059191 }
+        <Binormal> { -0.853474 0.514175 -0.083697 }
+      }
+      <Normal> { -0.108554 -0.018403 0.993896 }
+    }
+    <Vertex> 4956 {
+      -24.7174186707 -73.9615707397 13.4910154343
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.071688 -0.017792 0.997253 }
+    }
+    <Vertex> 4957 {
+      -22.7360343933 -73.9615707397 13.3069486618
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.039399 -0.057131 0.997559 }
+    }
+    <Vertex> 4958 {
+      -22.3282394409 -71.3910903931 13.6222763062
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.145352 0.979675 0.138206 }
+        <Binormal> { 0.989229 -0.141462 -0.037620 }
+      }
+      <Normal> { 0.017304 -0.142186 0.989685 }
+    }
+    <Vertex> 4959 {
+      -24.3297290802 -71.3910903931 13.596121788
+      <UV>  {
+        0.250000 0.750000
+        <Tangent> { -0.480188 -0.876181 -0.041560 }
+        <Binormal> { -0.876567 0.479712 0.014491 }
+      }
+      <Normal> { -0.024171 -0.074282 0.996918 }
+    }
+    <Vertex> 4960 {
+      -24.7174186707 -73.9615707397 13.4910154343
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.071688 -0.017792 0.997253 }
+    }
+    <Vertex> 4961 {
+      -24.3297290802 -71.3910903931 13.596121788
+      <UV>  {
+        0.250000 0.750000
+        <Tangent> { -0.480188 -0.876181 -0.041560 }
+        <Binormal> { -0.876567 0.479712 0.014491 }
+      }
+      <Normal> { -0.024171 -0.074282 0.996918 }
+    }
+    <Vertex> 4962 {
+      -26.4124526978 -71.3910903931 13.5549955368
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.625340 -0.780345 -0.003260 }
+        <Binormal> { -0.780103 0.625093 0.012890 }
+      }
+      <Normal> { -0.005982 -0.028077 0.999573 }
+    }
+    <Vertex> 4963 {
+      -26.8101768494 -73.9615707397 13.6620025635
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.864182 -0.495254 0.088954 }
+        <Binormal> { -0.497007 0.865801 -0.008021 }
+      }
+      <Normal> { 0.023530 0.022767 0.999451 }
+    }
+    <Vertex> 4964 {
+      -24.7174186707 -73.9615707397 13.4910154343
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.071688 -0.017792 0.997253 }
+    }
+    <Vertex> 4965 {
+      -26.8101768494 -73.9615707397 13.6620025635
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.864182 -0.495254 0.088954 }
+        <Binormal> { -0.497007 0.865801 -0.008021 }
+      }
+      <Normal> { 0.023530 0.022767 0.999451 }
+    }
+    <Vertex> 4966 {
+      -26.8101768494 -76.4163742065 13.7736520767
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.953754 -0.279688 0.110128 }
+        <Binormal> { -0.279657 0.957021 0.008569 }
+      }
+      <Normal> { 0.035218 0.001343 0.999359 }
+    }
+    <Vertex> 4967 {
+      -24.7174186707 -76.4163742065 13.5171728134
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.991716 -0.000000 0.128451 }
+        <Binormal> { -0.000153 0.999758 -0.001180 }
+      }
+      <Normal> { 0.106906 0.001190 0.994263 }
+    }
+    <Vertex> 4968 {
+      -24.7174186707 -73.9615707397 13.4910154343
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.071688 -0.017792 0.997253 }
+    }
+    <Vertex> 4969 {
+      -24.7174186707 -76.4163742065 13.5171728134
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -0.991716 -0.000000 0.128451 }
+        <Binormal> { -0.000153 0.999758 -0.001180 }
+      }
+      <Normal> { 0.106906 0.001190 0.994263 }
+    }
+    <Vertex> 4970 {
+      -22.6983642578 -76.4163742065 13.2410755157
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.051302 -0.000183 0.998657 }
+    }
+    <Vertex> 4971 {
+      -22.7360343933 -73.9615707397 13.3069486618
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.039399 -0.057131 0.997559 }
+    }
+    <Vertex> 4972 {
+      -29.01014328 -73.9615707397 13.606877327
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.120080 -0.992690 0.012101 }
+        <Binormal> { -0.991541 0.120524 0.047847 }
+      }
+      <Normal> { 0.048524 0.002686 0.998810 }
+    }
+    <Vertex> 4973 {
+      -26.8101768494 -73.9615707397 13.6620025635
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.078824 -0.995946 0.043335 }
+        <Binormal> { -0.996386 0.079800 0.021640 }
+      }
+      <Normal> { 0.023530 0.022767 0.999451 }
+    }
+    <Vertex> 4974 {
+      -26.4124526978 -71.3910903931 13.5549955368
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.168506 -0.985358 0.025991 }
+        <Binormal> { -0.984207 0.168278 -0.001163 }
+      }
+      <Normal> { -0.005982 -0.028077 0.999573 }
+    }
+    <Vertex> 4975 {
+      -28.5287132263 -71.3910903931 13.5782823563
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { -0.184080 -0.982850 0.010934 }
+        <Binormal> { -0.968512 0.183002 0.144460 }
+      }
+      <Normal> { 0.127964 -0.101535 0.986541 }
+    }
+    <Vertex> 4976 {
+      -29.01014328 -73.9615707397 13.606877327
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.120080 -0.992690 0.012101 }
+        <Binormal> { -0.991541 0.120524 0.047847 }
+      }
+      <Normal> { 0.048524 0.002686 0.998810 }
+    }
+    <Vertex> 4977 {
+      -28.5287132263 -71.3910903931 13.5782823563
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { -0.184080 -0.982850 0.010934 }
+        <Binormal> { -0.968512 0.183002 0.144460 }
+      }
+      <Normal> { 0.127964 -0.101535 0.986541 }
+    }
+    <Vertex> 4978 {
+      -30.257068634 -71.3422012329 14.0072135925
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.641737 -0.593145 0.486161 }
+        <Binormal> { -0.349658 0.764551 0.471245 }
+      }
+      <Normal> { 0.480148 -0.290536 0.827631 }
+    }
+    <Vertex> 4979 {
+      -30.7828865051 -73.7660140991 13.7712898254
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.211946 -0.976428 -0.040835 }
+        <Binormal> { -0.854921 0.165056 0.490545 }
+      }
+      <Normal> { 0.479507 -0.105411 0.871151 }
+    }
+    <Vertex> 4980 {
+      -29.01014328 -73.9615707397 13.606877327
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.120080 -0.992690 0.012101 }
+        <Binormal> { -0.991541 0.120524 0.047847 }
+      }
+      <Normal> { 0.048524 0.002686 0.998810 }
+    }
+    <Vertex> 4981 {
+      -30.7828865051 -73.7660140991 13.7712898254
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.211946 -0.976428 -0.040835 }
+        <Binormal> { -0.854921 0.165056 0.490545 }
+      }
+      <Normal> { 0.479507 -0.105411 0.871151 }
+    }
+    <Vertex> 4982 {
+      -31.3029937744 -76.1607513428 13.8057003021
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.150384 -0.736657 -0.659334 }
+        <Binormal> { -0.792083 -0.181711 0.383683 }
+      }
+      <Normal> { 0.468398 -0.256905 0.845302 }
+    }
+    <Vertex> 4983 {
+      -29.01014328 -76.4163742065 13.6909675598
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.000000 -0.999414 0.034235 }
+        <Binormal> { -0.998870 0.000009 0.000275 }
+      }
+      <Normal> { 0.000275 -0.013215 0.999908 }
+    }
+    <Vertex> 4984 {
+      -29.01014328 -73.9615707397 13.606877327
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.120080 -0.992690 0.012101 }
+        <Binormal> { -0.991541 0.120524 0.047847 }
+      }
+      <Normal> { 0.048524 0.002686 0.998810 }
+    }
+    <Vertex> 4985 {
+      -29.01014328 -76.4163742065 13.6909675598
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.000000 -0.999414 0.034235 }
+        <Binormal> { -0.998870 0.000009 0.000275 }
+      }
+      <Normal> { 0.000275 -0.013215 0.999908 }
+    }
+    <Vertex> 4986 {
+      -26.8101768494 -76.4163742065 13.7736520767
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.000000 -0.999206 0.039837 }
+        <Binormal> { -0.998619 0.001403 0.035190 }
+      }
+      <Normal> { 0.035218 0.001343 0.999359 }
+    }
+    <Vertex> 4987 {
+      -26.8101768494 -73.9615707397 13.6620025635
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.078824 -0.995946 0.043335 }
+        <Binormal> { -0.996386 0.079800 0.021640 }
+      }
+      <Normal> { 0.023530 0.022767 0.999451 }
+    }
+    <Vertex> 4988 {
+      -15.8655195236 -73.9615707397 13.943066597
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.011095 -0.999935 0.002510 }
+        <Binormal> { -0.994662 0.010779 -0.102503 }
+      }
+      <Normal> { -0.102481 0.002564 0.994720 }
+    }
+    <Vertex> 4989 {
+      -13.4681100845 -73.9615707397 14.1131496429
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000730 -0.999946 0.010413 }
+        <Binormal> { -0.969635 0.001839 0.244540 }
+      }
+      <Normal> { 0.244545 0.011048 0.969573 }
+    }
+    <Vertex> 4990 {
+      -13.1705560684 -71.2176589966 14.0590105057
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.118697 -0.992808 0.015603 }
+        <Binormal> { -0.957168 0.118585 0.264056 }
+      }
+      <Normal> { 0.264046 -0.016083 0.964354 }
+    }
+    <Vertex> 4991 {
+      -15.5158557892 -71.2919921875 13.9121294022
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.129863 -0.991465 0.011490 }
+        <Binormal> { -0.987820 0.128372 -0.087482 }
+      }
+      <Normal> { -0.084262 0.030335 0.995972 }
+    }
+    <Vertex> 4992 {
+      -15.8655195236 -73.9615707397 13.943066597
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.011095 -0.999935 0.002510 }
+        <Binormal> { -0.994662 0.010779 -0.102503 }
+      }
+      <Normal> { -0.102481 0.002564 0.994720 }
+    }
+    <Vertex> 4993 {
+      -15.5158557892 -71.2919921875 13.9121294022
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.129863 -0.991465 0.011490 }
+        <Binormal> { -0.987820 0.128372 -0.087482 }
+      }
+      <Normal> { -0.084262 0.030335 0.995972 }
+    }
+    <Vertex> 4994 {
+      -18.3166694641 -71.366317749 13.5859012604
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.140652 -0.990053 -0.003599 }
+        <Binormal> { -0.988469 0.140591 -0.044927 }
+      }
+      <Normal> { -0.049654 -0.030091 0.998291 }
+    }
+    <Vertex> 4995 {
+      -18.7149562836 -73.9615707397 13.5358247757
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.026643 -0.999563 -0.012778 }
+        <Binormal> { -0.993698 0.027867 -0.108017 }
+      }
+      <Normal> { -0.108554 -0.018403 0.993896 }
+    }
+    <Vertex> 4996 {
+      -15.8655195236 -73.9615707397 13.943066597
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.011095 -0.999935 0.002510 }
+        <Binormal> { -0.994662 0.010779 -0.102503 }
+      }
+      <Normal> { -0.102481 0.002564 0.994720 }
+    }
+    <Vertex> 4997 {
+      -18.7149562836 -73.9615707397 13.5358247757
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.026643 -0.999563 -0.012778 }
+        <Binormal> { -0.993698 0.027867 -0.108017 }
+      }
+      <Normal> { -0.108554 -0.018403 0.993896 }
+    }
+    <Vertex> 4998 {
+      -18.4512748718 -76.4163742065 13.5213413239
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.114332 -0.993438 -0.002931 }
+        <Binormal> { -0.985927 -0.113105 -0.122817 }
+      }
+      <Normal> { -0.120945 -0.023316 0.992370 }
+    }
+    <Vertex> 4999 {
+      -15.5641689301 -76.4163742065 13.943066597
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.121845 -0.992549 0.000000 }
+        <Binormal> { -0.986673 -0.121124 -0.108080 }
+      }
+      <Normal> { -0.106021 -0.023377 0.994079 }
+    }
+    <Vertex> 5000 {
+      -15.8655195236 -73.9615707397 13.943066597
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.011095 -0.999935 0.002510 }
+        <Binormal> { -0.994662 0.010779 -0.102503 }
+      }
+      <Normal> { -0.102481 0.002564 0.994720 }
+    }
+    <Vertex> 5001 {
+      -15.5641689301 -76.4163742065 13.943066597
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.121845 -0.992549 0.000000 }
+        <Binormal> { -0.986673 -0.121124 -0.108080 }
+      }
+      <Normal> { -0.106021 -0.023377 0.994079 }
+    }
+    <Vertex> 5002 {
+      -13.1667613983 -76.4163742065 14.1131496429
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.121845 -0.992549 0.000000 }
+        <Binormal> { -0.962137 -0.118111 0.244210 }
+      }
+      <Normal> { 0.239296 0.054964 0.969359 }
+    }
+    <Vertex> 5003 {
+      -13.4681100845 -73.9615707397 14.1131496429
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000730 -0.999946 0.010413 }
+        <Binormal> { -0.969635 0.001839 0.244540 }
+      }
+      <Normal> { 0.244545 0.011048 0.969573 }
+    }
+    <Vertex> 5004 {
+      -7.98242902756 -79.1773681641 13.0148735046
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.996137 -0.071641 0.050775 }
+        <Binormal> { -0.067265 -0.994235 -0.083168 }
+      }
+      <Normal> { -0.049959 -0.079897 0.995544 }
+    }
+    <Vertex> 5005 {
+      -5.29207277298 -79.3135147095 13.3596801758
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.986301 -0.117390 0.115888 }
+        <Binormal> { -0.085555 -0.949197 -0.233359 }
+      }
+      <Normal> { -0.327616 -0.197607 0.923887 }
+    }
+    <Vertex> 5006 {
+      -5.85239982605 -76.681098938 13.5620059967
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.990038 -0.025596 0.138457 }
+        <Binormal> { -0.026337 -0.993082 0.004738 }
+      }
+      <Normal> { -0.250465 0.011261 0.968047 }
+    }
+    <Vertex> 5007 {
+      -8.82142162323 -76.55128479 13.1313676834
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.994808 0.043899 0.091810 }
+        <Binormal> { 0.044350 -0.998583 -0.003082 }
+      }
+      <Normal> { -0.063265 -0.005890 0.997955 }
+    }
+    <Vertex> 5008 {
+      -7.98242902756 -79.1773681641 13.0148735046
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.996137 -0.071641 0.050775 }
+        <Binormal> { -0.067265 -0.994235 -0.083168 }
+      }
+      <Normal> { -0.049959 -0.079897 0.995544 }
+    }
+    <Vertex> 5009 {
+      -8.82142162323 -76.55128479 13.1313676834
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.994808 0.043899 0.091810 }
+        <Binormal> { 0.044350 -0.998583 -0.003082 }
+      }
+      <Normal> { -0.063265 -0.005890 0.997955 }
+    }
+    <Vertex> 5010 {
+      -11.4810743332 -76.4500961304 13.0774488449
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.999955 -0.004035 0.008628 }
+        <Binormal> { -0.004422 -0.956966 0.064950 }
+      }
+      <Normal> { 0.274758 0.063845 0.959380 }
+    }
+    <Vertex> 5011 {
+      -10.593287468 -79.109916687 13.0483255386
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.996712 -0.079913 -0.013386 }
+        <Binormal> { -0.074801 -0.951852 0.112830 }
+      }
+      <Normal> { 0.295877 0.089480 0.951018 }
+    }
+    <Vertex> 5012 {
+      -7.98242902756 -79.1773681641 13.0148735046
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.996137 -0.071641 0.050775 }
+        <Binormal> { -0.067265 -0.994235 -0.083168 }
+      }
+      <Normal> { -0.049959 -0.079897 0.995544 }
+    }
+    <Vertex> 5013 {
+      -10.593287468 -79.109916687 13.0483255386
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.996712 -0.079913 -0.013386 }
+        <Binormal> { -0.074801 -0.951852 0.112830 }
+      }
+      <Normal> { 0.295877 0.089480 0.951018 }
+    }
+    <Vertex> 5014 {
+      -9.42041683197 -81.866607666 12.9900779724
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.989462 -0.136403 -0.048562 }
+        <Binormal> { -0.123523 -0.947969 0.145884 }
+      }
+      <Normal> { 0.317698 0.103641 0.942473 }
+    }
+    <Vertex> 5015 {
+      -6.90714359283 -81.866607666 12.7818841934
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.978307 -0.205694 -0.024618 }
+        <Binormal> { -0.207030 -0.972674 -0.100145 }
+      }
+      <Normal> { -0.027467 -0.096591 0.994934 }
+    }
+    <Vertex> 5016 {
+      -7.98242902756 -79.1773681641 13.0148735046
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.996137 -0.071641 0.050775 }
+        <Binormal> { -0.067265 -0.994235 -0.083168 }
+      }
+      <Normal> { -0.049959 -0.079897 0.995544 }
+    }
+    <Vertex> 5017 {
+      -6.90714359283 -81.866607666 12.7818841934
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.978307 -0.205694 -0.024618 }
+        <Binormal> { -0.207030 -0.972674 -0.100145 }
+      }
+      <Normal> { -0.027467 -0.096591 0.994934 }
+    }
+    <Vertex> 5018 {
+      -4.39386940002 -81.866607666 12.9519500732
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.984371 -0.155950 0.081809 }
+        <Binormal> { -0.124840 -0.934004 -0.278323 }
+      }
+      <Normal> { -0.302744 -0.234779 0.923673 }
+    }
+    <Vertex> 5019 {
+      -5.29207277298 -79.3135147095 13.3596801758
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.986301 -0.117390 0.115888 }
+        <Binormal> { -0.085555 -0.949197 -0.233359 }
+      }
+      <Normal> { -0.327616 -0.197607 0.923887 }
+    }
+    <Vertex> 5020 {
+      -11.4635734558 -79.0874252319 13.6146593094
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.850796 -0.119123 -0.511817 }
+        <Binormal> { 0.004953 -0.972068 0.234477 }
+      }
+      <Normal> { 0.531083 0.201239 0.823054 }
+    }
+    <Vertex> 5021 {
+      -10.593287468 -79.109916687 13.0483255386
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.839986 -0.196605 -0.505736 }
+        <Binormal> { -0.141722 -0.948478 0.133333 }
+      }
+      <Normal> { 0.295877 0.089480 0.951018 }
+    }
+    <Vertex> 5022 {
+      -11.4810743332 -76.4500961304 13.0774488449
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.841677 0.031160 -0.539082 }
+        <Binormal> { 0.064311 -0.955605 0.045175 }
+      }
+      <Normal> { 0.274758 0.063845 0.959380 }
+    }
+    <Vertex> 5023 {
+      -12.3676233292 -76.4163742065 13.6146593094
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.803564 0.235903 -0.546474 }
+        <Binormal> { 0.264742 -0.963910 -0.026813 }
+      }
+      <Normal> { 0.528031 0.121647 0.840449 }
+    }
+    <Vertex> 5024 {
+      -11.4635734558 -79.0874252319 13.6146593094
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.850796 -0.119123 -0.511817 }
+        <Binormal> { 0.004953 -0.972068 0.234477 }
+      }
+      <Normal> { 0.531083 0.201239 0.823054 }
+    }
+    <Vertex> 5025 {
+      -12.3676233292 -76.4163742065 13.6146593094
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.803564 0.235903 -0.546474 }
+        <Binormal> { 0.264742 -0.963910 -0.026813 }
+      }
+      <Normal> { 0.528031 0.121647 0.840449 }
+    }
+    <Vertex> 5026 {
+      -13.1667613983 -76.4163742065 14.1131496429
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.837216 0.085101 -0.540210 }
+        <Binormal> { 0.112186 -0.940833 0.025652 }
+      }
+      <Normal> { 0.239296 0.054964 0.969359 }
+    }
+    <Vertex> 5027 {
+      -12.262711525 -79.0874252319 14.1131496429
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.854791 -0.147023 -0.497711 }
+        <Binormal> { -0.096727 -0.944644 0.112923 }
+      }
+      <Normal> { 0.236824 0.091372 0.967223 }
+    }
+    <Vertex> 5028 {
+      -11.4635734558 -79.0874252319 13.6146593094
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.850796 -0.119123 -0.511817 }
+        <Binormal> { 0.004953 -0.972068 0.234477 }
+      }
+      <Normal> { 0.531083 0.201239 0.823054 }
+    }
+    <Vertex> 5029 {
+      -12.262711525 -79.0874252319 14.1131496429
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.854791 -0.147023 -0.497711 }
+        <Binormal> { -0.096727 -0.944644 0.112923 }
+      }
+      <Normal> { 0.236824 0.091372 0.967223 }
+    }
+    <Vertex> 5030 {
+      -11.0573120117 -81.866607666 14.1131496429
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.842820 -0.305500 -0.443086 }
+        <Binormal> { -0.249912 -0.918961 0.158235 }
+      }
+      <Normal> { 0.235817 0.102268 0.966369 }
+    }
+    <Vertex> 5031 {
+      -10.2581758499 -81.866607666 13.6146593094
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.795993 -0.440644 -0.415004 }
+        <Binormal> { -0.263323 -0.869361 0.418008 }
+      }
+      <Normal> { 0.537309 0.227699 0.812037 }
+    }
+    <Vertex> 5032 {
+      -11.4635734558 -79.0874252319 13.6146593094
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.850796 -0.119123 -0.511817 }
+        <Binormal> { 0.004953 -0.972068 0.234477 }
+      }
+      <Normal> { 0.531083 0.201239 0.823054 }
+    }
+    <Vertex> 5033 {
+      -10.2581758499 -81.866607666 13.6146593094
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.795993 -0.440644 -0.415004 }
+        <Binormal> { -0.263323 -0.869361 0.418008 }
+      }
+      <Normal> { 0.537309 0.227699 0.812037 }
+    }
+    <Vertex> 5034 {
+      -9.42041683197 -81.866607666 12.9900779724
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.820068 -0.313530 -0.478735 }
+        <Binormal> { -0.245877 -0.924985 0.184600 }
+      }
+      <Normal> { 0.317698 0.103641 0.942473 }
+    }
+    <Vertex> 5035 {
+      -10.593287468 -79.109916687 13.0483255386
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.839986 -0.196605 -0.505736 }
+        <Binormal> { -0.141722 -0.948478 0.133333 }
+      }
+      <Normal> { 0.295877 0.089480 0.951018 }
+    }
+    <Vertex> 5036 {
+      -33.5501022339 -79.0874252319 13.4386987686
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.863480 -0.504383 0.000000 }
+        <Binormal> { -0.503305 -0.861636 -0.063428 }
+      }
+      <Normal> { -0.019745 -0.061922 0.997864 }
+    }
+    <Vertex> 5037 {
+      -31.2719230652 -79.0874252319 13.4807443619
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.953531 -0.299033 -0.036862 }
+        <Binormal> { -0.300827 0.951432 0.063424 }
+      }
+      <Normal> { -0.002289 -0.067232 0.997711 }
+    }
+    <Vertex> 5038 {
+      -31.3029937744 -76.1607513428 13.8057003021
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.956895 0.272170 0.101364 }
+        <Binormal> { 0.256107 0.856344 0.118347 }
+      }
+      <Normal> { 0.468398 -0.256905 0.845302 }
+    }
+    <Vertex> 5039 {
+      -33.4709510803 -77.003036499 13.8745203018
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.170495 0.299332 -0.938793 }
+        <Binormal> { -0.299899 0.151927 0.102907 }
+      }
+      <Normal> { -0.013825 -0.579302 0.814966 }
+    }
+    <Vertex> 5040 {
+      -33.5501022339 -79.0874252319 13.4386987686
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.863480 -0.504383 0.000000 }
+        <Binormal> { -0.503305 -0.861636 -0.063428 }
+      }
+      <Normal> { -0.019745 -0.061922 0.997864 }
+    }
+    <Vertex> 5041 {
+      -33.4709510803 -77.003036499 13.8745203018
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.170495 0.299332 -0.938793 }
+        <Binormal> { -0.299899 0.151927 0.102907 }
+      }
+      <Normal> { -0.013825 -0.579302 0.814966 }
+    }
+    <Vertex> 5042 {
+      -35.836479187 -76.4163665771 13.4386987686
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.863481 -0.504381 -0.000001 }
+        <Binormal> { -0.384193 -0.657723 -0.606553 }
+      }
+      <Normal> { -0.502518 -0.408918 0.761711 }
+    }
+    <Vertex> 5043 {
+      -35.836479187 -79.0874252319 13.4386987686
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.863481 -0.504381 0.000000 }
+        <Binormal> { -0.503181 -0.861426 -0.064818 }
+      }
+      <Normal> { -0.052126 -0.044618 0.997620 }
+    }
+    <Vertex> 5044 {
+      -33.5501022339 -79.0874252319 13.4386987686
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.863480 -0.504383 0.000000 }
+        <Binormal> { -0.503305 -0.861636 -0.063428 }
+      }
+      <Normal> { -0.019745 -0.061922 0.997864 }
+    }
+    <Vertex> 5045 {
+      -35.836479187 -79.0874252319 13.4386987686
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.863481 -0.504381 0.000000 }
+        <Binormal> { -0.503181 -0.861426 -0.064818 }
+      }
+      <Normal> { -0.052126 -0.044618 0.997620 }
+    }
+    <Vertex> 5046 {
+      -35.2648849487 -81.1718063354 13.4386987686
+      <UV>  {
+        0.750000 0.812500
+        <Tangent> { 0.442622 -0.896708 0.000000 }
+        <Binormal> { -0.896708 -0.442622 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 5047 {
+      -33.5501022339 -81.866607666 13.4386987686
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.232407 -0.972619 0.000000 }
+        <Binormal> { -0.972589 0.232400 -0.003610 }
+      }
+      <Normal> { -0.004608 -0.003754 0.999969 }
+    }
+    <Vertex> 5048 {
+      -33.5501022339 -79.0874252319 13.4386987686
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.863480 -0.504383 0.000000 }
+        <Binormal> { -0.503305 -0.861636 -0.063428 }
+      }
+      <Normal> { -0.019745 -0.061922 0.997864 }
+    }
+    <Vertex> 5049 {
+      -33.5501022339 -81.866607666 13.4386987686
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.232407 -0.972619 0.000000 }
+        <Binormal> { -0.972589 0.232400 -0.003610 }
+      }
+      <Normal> { -0.004608 -0.003754 0.999969 }
+    }
+    <Vertex> 5050 {
+      -31.2719230652 -81.866607666 13.4386987686
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.721853 -0.691899 -0.014274 }
+        <Binormal> { -0.691906 0.721787 0.003551 }
+      }
+      <Normal> { -0.018525 -0.022675 0.999542 }
+    }
+    <Vertex> 5051 {
+      -31.2719230652 -79.0874252319 13.4807443619
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.953531 -0.299033 -0.036862 }
+        <Binormal> { -0.300827 0.951432 0.063424 }
+      }
+      <Normal> { -0.002289 -0.067232 0.997711 }
+    }
+    <Vertex> 5052 {
+      -20.2674694061 -79.0874252319 13.3228359222
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.129098 -0.991613 0.006050 }
+        <Binormal> { -0.990684 0.128710 -0.043761 }
+      }
+      <Normal> { -0.041993 0.016419 0.998962 }
+    }
+    <Vertex> 5053 {
+      -17.6602306366 -79.0874252319 13.5358247757
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.286363 -0.957190 -0.042244 }
+        <Binormal> { -0.952543 0.289146 -0.094571 }
+      }
+      <Normal> { -0.105411 -0.022095 0.994171 }
+    }
+    <Vertex> 5054 {
+      -18.4512748718 -76.4163742065 13.5213413239
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.291526 -0.955908 -0.035393 }
+        <Binormal> { -0.949440 0.293583 -0.108815 }
+      }
+      <Normal> { -0.120945 -0.023316 0.992370 }
+    }
+    <Vertex> 5055 {
+      -20.7194957733 -76.4163742065 13.2649049759
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.222552 -0.974911 -0.004429 }
+        <Binormal> { -0.973403 0.222444 -0.051892 }
+      }
+      <Normal> { -0.055269 -0.008942 0.998413 }
+    }
+    <Vertex> 5056 {
+      -20.2674694061 -79.0874252319 13.3228359222
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.129098 -0.991613 0.006050 }
+        <Binormal> { -0.990684 0.128710 -0.043761 }
+      }
+      <Normal> { -0.041993 0.016419 0.998962 }
+    }
+    <Vertex> 5057 {
+      -20.7194957733 -76.4163742065 13.2649049759
+      <UV>  {
+        1.000000 0.750000
+        <Tangent> { -0.222552 -0.974911 -0.004429 }
+        <Binormal> { -0.973403 0.222444 -0.051892 }
+      }
+      <Normal> { -0.055269 -0.008942 0.998413 }
+    }
+    <Vertex> 5058 {
+      -22.6983642578 -76.4163742065 13.2410755157
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.079177 -0.996642 0.020874 }
+        <Binormal> { -0.995300 0.080142 0.051144 }
+      }
+      <Normal> { 0.051302 -0.000183 0.998657 }
+    }
+    <Vertex> 5059 {
+      -22.5853557587 -79.0874252319 13.3069486618
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.048291 -0.998177 0.036194 }
+        <Binormal> { -0.998121 -0.046986 0.035923 }
+      }
+      <Normal> { 0.034883 0.022858 0.999115 }
+    }
+    <Vertex> 5060 {
+      -20.2674694061 -79.0874252319 13.3228359222
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.129098 -0.991613 0.006050 }
+        <Binormal> { -0.990684 0.128710 -0.043761 }
+      }
+      <Normal> { -0.041993 0.016419 0.998962 }
+    }
+    <Vertex> 5061 {
+      -22.5853557587 -79.0874252319 13.3069486618
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.048291 -0.998177 0.036194 }
+        <Binormal> { -0.998121 -0.046986 0.035923 }
+      }
+      <Normal> { 0.034883 0.022858 0.999115 }
+    }
+    <Vertex> 5062 {
+      -22.4346847534 -81.866607666 13.4386987686
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.010943 -0.998949 0.044501 }
+        <Binormal> { -0.999632 -0.010079 0.019562 }
+      }
+      <Normal> { 0.019257 0.029725 0.999359 }
+    }
+    <Vertex> 5063 {
+      -19.6647701263 -81.866607666 13.4386987686
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.045243 -0.998329 0.035958 }
+        <Binormal> { -0.998415 0.044074 -0.032563 }
+      }
+      <Normal> { -0.031434 0.026124 0.999146 }
+    }
+    <Vertex> 5064 {
+      -20.2674694061 -79.0874252319 13.3228359222
+      <UV>  {
+        0.500000 0.625000
+        <Tangent> { -0.129098 -0.991613 0.006050 }
+        <Binormal> { -0.990684 0.128710 -0.043761 }
+      }
+      <Normal> { -0.041993 0.016419 0.998962 }
+    }
+    <Vertex> 5065 {
+      -19.6647701263 -81.866607666 13.4386987686
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.045243 -0.998329 0.035958 }
+        <Binormal> { -0.998415 0.044074 -0.032563 }
+      }
+      <Normal> { -0.031434 0.026124 0.999146 }
+    }
+    <Vertex> 5066 {
+      -16.6055049896 -81.866607666 13.564789772
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.150390 -0.988614 -0.005102 }
+        <Binormal> { -0.984215 0.150182 -0.089278 }
+      }
+      <Normal> { -0.093204 -0.019044 0.995453 }
+    }
+    <Vertex> 5067 {
+      -17.6602306366 -79.0874252319 13.5358247757
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.286363 -0.957190 -0.042244 }
+        <Binormal> { -0.952543 0.289146 -0.094571 }
+      }
+      <Normal> { -0.105411 -0.022095 0.994171 }
+    }
+    <Vertex> 5068 {
+      -24.7174186707 -79.0874252319 13.4910154343
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.007979 0.999878 0.011958 }
+        <Binormal> { 0.997257 -0.007077 -0.073674 }
+      }
+      <Normal> { 0.073580 -0.012513 0.997192 }
+    }
+    <Vertex> 5069 {
+      -22.5853557587 -79.0874252319 13.3069486618
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.024883 0.999433 -0.021997 }
+        <Binormal> { 0.999082 0.024095 -0.035433 }
+      }
+      <Normal> { 0.034883 0.022858 0.999115 }
+    }
+    <Vertex> 5070 {
+      -22.6983642578 -76.4163742065 13.2410755157
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.051302 -0.000183 0.998657 }
+    }
+    <Vertex> 5071 {
+      -24.7174186707 -76.4163742065 13.5171728134
+      <UV>  {
+        0.250000 0.750000
+        <Tangent> { -0.358919 -0.932621 0.037355 }
+        <Binormal> { -0.927315 0.360853 0.099276 }
+      }
+      <Normal> { 0.106906 0.001190 0.994263 }
+    }
+    <Vertex> 5072 {
+      -24.7174186707 -79.0874252319 13.4910154343
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.007979 0.999878 0.011958 }
+        <Binormal> { 0.997257 -0.007077 -0.073674 }
+      }
+      <Normal> { 0.073580 -0.012513 0.997192 }
+    }
+    <Vertex> 5073 {
+      -24.7174186707 -76.4163742065 13.5171728134
+      <UV>  {
+        0.250000 0.750000
+        <Tangent> { -0.358919 -0.932621 0.037355 }
+        <Binormal> { -0.927315 0.360853 0.099276 }
+      }
+      <Normal> { 0.106906 0.001190 0.994263 }
+    }
+    <Vertex> 5074 {
+      -26.8101768494 -76.4163742065 13.7736520767
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.530658 -0.846619 0.040486 }
+        <Binormal> { -0.846130 0.531744 0.029104 }
+      }
+      <Normal> { 0.035218 0.001343 0.999359 }
+    }
+    <Vertex> 5075 {
+      -26.8101768494 -79.0874252319 13.6620025635
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.837518 -0.545293 0.034917 }
+        <Binormal> { -0.542953 0.837229 0.051607 }
+      }
+      <Normal> { 0.024659 -0.045564 0.998627 }
+    }
+    <Vertex> 5076 {
+      -24.7174186707 -79.0874252319 13.4910154343
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.007979 0.999878 0.011958 }
+        <Binormal> { 0.997257 -0.007077 -0.073674 }
+      }
+      <Normal> { 0.073580 -0.012513 0.997192 }
+    }
+    <Vertex> 5077 {
+      -26.8101768494 -79.0874252319 13.6620025635
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.837518 -0.545293 0.034917 }
+        <Binormal> { -0.542953 0.837229 0.051607 }
+      }
+      <Normal> { 0.024659 -0.045564 0.998627 }
+    }
+    <Vertex> 5078 {
+      -26.8101768494 -81.866607666 13.4386987686
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.948976 -0.315060 0.013453 }
+        <Binormal> { -0.313649 0.947342 0.061274 }
+      }
+      <Normal> { 0.014130 -0.059877 0.998077 }
+    }
+    <Vertex> 5079 {
+      -24.7174186707 -81.866607666 13.4386987686
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -1.000000 -0.000000 -0.000000 }
+        <Binormal> { -0.000000 0.998993 0.017029 }
+      }
+      <Normal> { 0.041231 -0.017029 0.998993 }
+    }
+    <Vertex> 5080 {
+      -24.7174186707 -79.0874252319 13.4910154343
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.007979 0.999878 0.011958 }
+        <Binormal> { 0.997257 -0.007077 -0.073674 }
+      }
+      <Normal> { 0.073580 -0.012513 0.997192 }
+    }
+    <Vertex> 5081 {
+      -24.7174186707 -81.866607666 13.4386987686
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { -1.000000 -0.000000 -0.000000 }
+        <Binormal> { -0.000000 0.998993 0.017029 }
+      }
+      <Normal> { 0.041231 -0.017029 0.998993 }
+    }
+    <Vertex> 5082 {
+      -22.4346847534 -81.866607666 13.4386987686
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.030693 0.999091 -0.029126 }
+        <Binormal> { 0.999343 0.030113 -0.020153 }
+      }
+      <Normal> { 0.019257 0.029725 0.999359 }
+    }
+    <Vertex> 5083 {
+      -22.5853557587 -79.0874252319 13.3069486618
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.024883 0.999433 -0.021997 }
+        <Binormal> { 0.999082 0.024095 -0.035433 }
+      }
+      <Normal> { 0.034883 0.022858 0.999115 }
+    }
+    <Vertex> 5084 {
+      -29.01014328 -79.0874252319 13.606877327
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.001407 -0.998506 -0.054618 }
+        <Binormal> { -0.999801 -0.000337 -0.019579 }
+      }
+      <Normal> { -0.019532 -0.054384 0.998321 }
+    }
+    <Vertex> 5085 {
+      -26.8101768494 -79.0874252319 13.6620025635
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 -0.998117 -0.061341 }
+        <Binormal> { -0.999541 -0.001513 0.024613 }
+      }
+      <Normal> { 0.024659 -0.045564 0.998627 }
+    }
+    <Vertex> 5086 {
+      -26.8101768494 -76.4163742065 13.7736520767
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.000000 -0.999329 -0.036616 }
+        <Binormal> { -0.998640 -0.001290 0.035195 }
+      }
+      <Normal> { 0.035218 0.001343 0.999359 }
+    }
+    <Vertex> 5087 {
+      -29.01014328 -76.4163742065 13.6909675598
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { 0.000000 -0.999505 -0.031466 }
+        <Binormal> { -0.999829 -0.000009 0.000275 }
+      }
+      <Normal> { 0.000275 -0.013215 0.999908 }
+    }
+    <Vertex> 5088 {
+      -29.01014328 -79.0874252319 13.606877327
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.001407 -0.998506 -0.054618 }
+        <Binormal> { -0.999801 -0.000337 -0.019579 }
+      }
+      <Normal> { -0.019532 -0.054384 0.998321 }
+    }
+    <Vertex> 5089 {
+      -29.01014328 -76.4163742065 13.6909675598
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { 0.000000 -0.999505 -0.031466 }
+        <Binormal> { -0.999829 -0.000009 0.000275 }
+      }
+      <Normal> { 0.000275 -0.013215 0.999908 }
+    }
+    <Vertex> 5090 {
+      -31.3029937744 -76.1607513428 13.8057003021
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.005536 -0.997325 -0.072878 }
+        <Binormal> { -0.861764 -0.038815 0.465723 }
+      }
+      <Normal> { 0.468398 -0.256905 0.845302 }
+    }
+    <Vertex> 5091 {
+      -31.2719230652 -79.0874252319 13.4807443619
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.005434 -0.997923 -0.064187 }
+        <Binormal> { -0.999954 -0.005275 -0.002649 }
+      }
+      <Normal> { -0.002289 -0.067232 0.997711 }
+    }
+    <Vertex> 5092 {
+      -29.01014328 -79.0874252319 13.606877327
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.001407 -0.998506 -0.054618 }
+        <Binormal> { -0.999801 -0.000337 -0.019579 }
+      }
+      <Normal> { -0.019532 -0.054384 0.998321 }
+    }
+    <Vertex> 5093 {
+      -31.2719230652 -79.0874252319 13.4807443619
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.005434 -0.997923 -0.064187 }
+        <Binormal> { -0.999954 -0.005275 -0.002649 }
+      }
+      <Normal> { -0.002289 -0.067232 0.997711 }
+    }
+    <Vertex> 5094 {
+      -31.2719230652 -81.866607666 13.4386987686
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.000000 -0.999286 -0.037794 }
+        <Binormal> { -0.999685 0.000700 -0.018512 }
+      }
+      <Normal> { -0.018525 -0.022675 0.999542 }
+    }
+    <Vertex> 5095 {
+      -29.01014328 -81.866607666 13.4386987686
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.000000 -0.998174 -0.060403 }
+        <Binormal> { -0.999761 0.001219 -0.020136 }
+      }
+      <Normal> { -0.020173 -0.054018 0.998321 }
+    }
+    <Vertex> 5096 {
+      -29.01014328 -79.0874252319 13.606877327
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { 0.001407 -0.998506 -0.054618 }
+        <Binormal> { -0.999801 -0.000337 -0.019579 }
+      }
+      <Normal> { -0.019532 -0.054384 0.998321 }
+    }
+    <Vertex> 5097 {
+      -29.01014328 -81.866607666 13.4386987686
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.000000 -0.998174 -0.060403 }
+        <Binormal> { -0.999761 0.001219 -0.020136 }
+      }
+      <Normal> { -0.020173 -0.054018 0.998321 }
+    }
+    <Vertex> 5098 {
+      -26.8101768494 -81.866607666 13.4386987686
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.000000 -0.997529 -0.070257 }
+        <Binormal> { -0.999818 -0.000993 0.014095 }
+      }
+      <Normal> { 0.014130 -0.059877 0.998077 }
+    }
+    <Vertex> 5099 {
+      -26.8101768494 -79.0874252319 13.6620025635
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.000000 -0.998117 -0.061341 }
+        <Binormal> { -0.999541 -0.001513 0.024613 }
+      }
+      <Normal> { 0.024659 -0.045564 0.998627 }
+    }
+    <Vertex> 5100 {
+      -4.18329572678 -79.5420837402 13.9281225204
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.889702 -0.290145 0.352486 }
+        <Binormal> { -0.170144 -0.927160 -0.333726 }
+      }
+      <Normal> { -0.427564 -0.235664 0.872707 }
+    }
+    <Vertex> 5101 {
+      -2.92497515678 -79.6569976807 14.3556995392
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.935714 -0.191107 0.296509 }
+        <Binormal> { -0.140961 -0.959913 -0.173847 }
+      }
+      <Normal> { -0.160009 -0.153111 0.975158 }
+    }
+    <Vertex> 5102 {
+      -3.41103816032 -77.8269882202 14.4683427811
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.959417 -0.057289 0.276110 }
+        <Binormal> { -0.079475 -0.981993 0.072405 }
+      }
+      <Normal> { -0.118137 0.082522 0.989532 }
+    }
+    <Vertex> 5103 {
+      -4.75005340576 -77.705291748 14.1505403519
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.882125 -0.307416 0.356862 }
+        <Binormal> { -0.291320 -0.951380 -0.099448 }
+      }
+      <Normal> { -0.361766 0.013337 0.932157 }
+    }
+    <Vertex> 5104 {
+      -4.18329572678 -79.5420837402 13.9281225204
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.889702 -0.290145 0.352486 }
+        <Binormal> { -0.170144 -0.927160 -0.333726 }
+      }
+      <Normal> { -0.427564 -0.235664 0.872707 }
+    }
+    <Vertex> 5105 {
+      -4.75005340576 -77.705291748 14.1505403519
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.882125 -0.307416 0.356862 }
+        <Binormal> { -0.291320 -0.951380 -0.099448 }
+      }
+      <Normal> { -0.361766 0.013337 0.932157 }
+    }
+    <Vertex> 5106 {
+      -5.85239982605 -76.681098938 13.5620059967
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.778107 -0.467275 0.419767 }
+        <Binormal> { -0.457071 -0.858381 -0.108274 }
+      }
+      <Normal> { -0.250465 0.011261 0.968047 }
+    }
+    <Vertex> 5107 {
+      -5.29207277298 -79.3135147095 13.3596801758
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.865746 -0.277982 0.416185 }
+        <Binormal> { -0.174583 -0.936200 -0.262149 }
+      }
+      <Normal> { -0.327616 -0.197607 0.923887 }
+    }
+    <Vertex> 5108 {
+      -4.18329572678 -79.5420837402 13.9281225204
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.889702 -0.290145 0.352486 }
+        <Binormal> { -0.170144 -0.927160 -0.333726 }
+      }
+      <Normal> { -0.427564 -0.235664 0.872707 }
+    }
+    <Vertex> 5109 {
+      -5.29207277298 -79.3135147095 13.3596801758
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.865746 -0.277982 0.416185 }
+        <Binormal> { -0.174583 -0.936200 -0.262149 }
+      }
+      <Normal> { -0.327616 -0.197607 0.923887 }
+    }
+    <Vertex> 5110 {
+      -4.39386940002 -81.866607666 12.9519500732
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.857618 -0.337512 0.388042 }
+        <Binormal> { -0.220646 -0.909636 -0.303530 }
+      }
+      <Normal> { -0.302744 -0.234779 0.923673 }
+    }
+    <Vertex> 5111 {
+      -3.55611133575 -81.866607666 13.4621458054
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.853263 -0.407571 0.325313 }
+        <Binormal> { -0.259324 -0.872662 -0.413141 }
+      }
+      <Normal> { -0.433851 -0.276955 0.857326 }
+    }
+    <Vertex> 5112 {
+      -4.18329572678 -79.5420837402 13.9281225204
+      <UV>  {
+        0.227151 0.889163
+        <Tangent> { 0.889702 -0.290145 0.352486 }
+        <Binormal> { -0.170144 -0.927160 -0.333726 }
+      }
+      <Normal> { -0.427564 -0.235664 0.872707 }
+    }
+    <Vertex> 5113 {
+      -3.55611133575 -81.866607666 13.4621458054
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.853263 -0.407571 0.325313 }
+        <Binormal> { -0.259324 -0.872662 -0.413141 }
+      }
+      <Normal> { -0.433851 -0.276955 0.857326 }
+    }
+    <Vertex> 5114 {
+      -2.57493185997 -81.866607666 13.947968483
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.912290 -0.283055 0.295985 }
+        <Binormal> { -0.213083 -0.933446 -0.235901 }
+      }
+      <Normal> { -0.191504 -0.199164 0.961058 }
+    }
+    <Vertex> 5115 {
+      -2.92497515678 -79.6569976807 14.3556995392
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.935714 -0.191107 0.296509 }
+        <Binormal> { -0.140961 -0.959913 -0.173847 }
+      }
+      <Normal> { -0.160009 -0.153111 0.975158 }
+    }
+    <Vertex> 5116 {
+      -14.6601190567 -79.0874252319 13.943066597
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.351076 -0.936345 0.001866 }
+        <Binormal> { -0.930792 -0.349209 -0.107890 }
+      }
+      <Normal> { -0.101871 -0.035615 0.994140 }
+    }
+    <Vertex> 5117 {
+      -12.262711525 -79.0874252319 14.1131496429
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.360947 -0.932586 0.000000 }
+        <Binormal> { -0.902019 -0.349116 0.253839 }
+      }
+      <Normal> { 0.236824 0.091372 0.967223 }
+    }
+    <Vertex> 5118 {
+      -13.1667613983 -76.4163742065 14.1131496429
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.320597 -0.947216 0.000000 }
+        <Binormal> { -0.918192 -0.310773 0.244286 }
+      }
+      <Normal> { 0.239296 0.054964 0.969359 }
+    }
+    <Vertex> 5119 {
+      -15.5641689301 -76.4163742065 13.943066597
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.320597 -0.947216 0.000000 }
+        <Binormal> { -0.941608 -0.318699 -0.107920 }
+      }
+      <Normal> { -0.106021 -0.023377 0.994079 }
+    }
+    <Vertex> 5120 {
+      -14.6601190567 -79.0874252319 13.943066597
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.351076 -0.936345 0.001866 }
+        <Binormal> { -0.930792 -0.349209 -0.107890 }
+      }
+      <Normal> { -0.101871 -0.035615 0.994140 }
+    }
+    <Vertex> 5121 {
+      -15.5641689301 -76.4163742065 13.943066597
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.320597 -0.947216 0.000000 }
+        <Binormal> { -0.941608 -0.318699 -0.107920 }
+      }
+      <Normal> { -0.106021 -0.023377 0.994079 }
+    }
+    <Vertex> 5122 {
+      -18.4512748718 -76.4163742065 13.5213413239
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.302447 -0.953163 0.002584 }
+        <Binormal> { -0.945830 -0.300452 -0.122332 }
+      }
+      <Normal> { -0.120945 -0.023316 0.992370 }
+    }
+    <Vertex> 5123 {
+      -17.6602306366 -79.0874252319 13.5358247757
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.320755 -0.947132 0.007550 }
+        <Binormal> { -0.941444 -0.319681 -0.106925 }
+      }
+      <Normal> { -0.105411 -0.022095 0.994171 }
+    }
+    <Vertex> 5124 {
+      -14.6601190567 -79.0874252319 13.943066597
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.351076 -0.936345 0.001866 }
+        <Binormal> { -0.930792 -0.349209 -0.107890 }
+      }
+      <Normal> { -0.101871 -0.035615 0.994140 }
+    }
+    <Vertex> 5125 {
+      -17.6602306366 -79.0874252319 13.5358247757
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.320755 -0.947132 0.007550 }
+        <Binormal> { -0.941444 -0.319681 -0.106925 }
+      }
+      <Normal> { -0.105411 -0.022095 0.994171 }
+    }
+    <Vertex> 5126 {
+      -16.6055049896 -81.866607666 13.564789772
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.376664 -0.926337 0.004827 }
+        <Binormal> { -0.922033 -0.375401 -0.093511 }
+      }
+      <Normal> { -0.093204 -0.019044 0.995453 }
+    }
+    <Vertex> 5127 {
+      -13.4547224045 -81.866607666 13.943066597
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.397909 -0.917425 0.000000 }
+        <Binormal> { -0.912245 -0.395662 -0.105832 }
+      }
+      <Normal> { -0.098666 -0.038484 0.994354 }
+    }
+    <Vertex> 5128 {
+      -14.6601190567 -79.0874252319 13.943066597
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.351076 -0.936345 0.001866 }
+        <Binormal> { -0.930792 -0.349209 -0.107890 }
+      }
+      <Normal> { -0.101871 -0.035615 0.994140 }
+    }
+    <Vertex> 5129 {
+      -13.4547224045 -81.866607666 13.943066597
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.397909 -0.917425 0.000000 }
+        <Binormal> { -0.912245 -0.395662 -0.105832 }
+      }
+      <Normal> { -0.098666 -0.038484 0.994354 }
+    }
+    <Vertex> 5130 {
+      -11.0573120117 -81.866607666 14.1131496429
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.397909 -0.917425 0.000000 }
+        <Binormal> { -0.886571 -0.384527 0.257037 }
+      }
+      <Normal> { 0.235817 0.102268 0.966369 }
+    }
+    <Vertex> 5131 {
+      -12.262711525 -79.0874252319 14.1131496429
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.360947 -0.932586 0.000000 }
+        <Binormal> { -0.902019 -0.349116 0.253839 }
+      }
+      <Normal> { 0.236824 0.091372 0.967223 }
+    }
+    <Vertex> 5132 {
+      0.214008584619 -79.4521484375 14.2779083252
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.997721 0.057351 -0.035544 }
+        <Binormal> { 0.055025 -0.996457 -0.063252 }
+      }
+      <Normal> { 0.034669 -0.061403 0.997497 }
+    }
+    <Vertex> 5133 {
+      4.42438602448 -79.372543335 14.030049324
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.998094 0.018871 -0.058756 }
+        <Binormal> { 0.017683 -0.999274 -0.020555 }
+      }
+      <Normal> { 0.033570 -0.019959 0.999207 }
+    }
+    <Vertex> 5134 {
+      4.07204818726 -76.522354126 14.0548553467
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.990918 0.118250 -0.064021 }
+        <Binormal> { 0.117957 -0.992671 -0.007770 }
+      }
+      <Normal> { 0.040132 -0.003052 0.999176 }
+    }
+    <Vertex> 5135 {
+      -0.251588791609 -77.4611434937 14.3583564758
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.983684 0.171500 -0.054355 }
+        <Binormal> { 0.174603 -0.982471 0.059981 }
+      }
+      <Normal> { 0.018555 0.064211 0.997742 }
+    }
+    <Vertex> 5136 {
+      0.214008584619 -79.4521484375 14.2779083252
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.997721 0.057351 -0.035544 }
+        <Binormal> { 0.055025 -0.996457 -0.063252 }
+      }
+      <Normal> { 0.034669 -0.061403 0.997497 }
+    }
+    <Vertex> 5137 {
+      -0.251588791609 -77.4611434937 14.3583564758
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.983684 0.171500 -0.054355 }
+        <Binormal> { 0.174603 -0.982471 0.059981 }
+      }
+      <Normal> { 0.018555 0.064211 0.997742 }
+    }
+    <Vertex> 5138 {
+      -3.41103816032 -77.8269882202 14.4683427811
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.995481 0.090199 -0.029679 }
+        <Binormal> { 0.091704 -0.981555 0.092805 }
+      }
+      <Normal> { -0.118137 0.082522 0.989532 }
+    }
+    <Vertex> 5139 {
+      -2.92497515678 -79.6569976807 14.3556995392
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.997572 0.065101 -0.024722 }
+        <Binormal> { 0.059699 -0.968835 -0.142323 }
+      }
+      <Normal> { -0.160009 -0.153111 0.975158 }
+    }
+    <Vertex> 5140 {
+      0.214008584619 -79.4521484375 14.2779083252
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.997721 0.057351 -0.035544 }
+        <Binormal> { 0.055025 -0.996457 -0.063252 }
+      }
+      <Normal> { 0.034669 -0.061403 0.997497 }
+    }
+    <Vertex> 5141 {
+      -2.92497515678 -79.6569976807 14.3556995392
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.997572 0.065101 -0.024722 }
+        <Binormal> { 0.059699 -0.968835 -0.142323 }
+      }
+      <Normal> { -0.160009 -0.153111 0.975158 }
+    }
+    <Vertex> 5142 {
+      -2.57493185997 -81.866607666 13.947968483
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.999428 0.033659 0.003148 }
+        <Binormal> { 0.032975 -0.961112 -0.192604 }
+      }
+      <Normal> { -0.191504 -0.199164 0.961058 }
+    }
+    <Vertex> 5143 {
+      0.36860653758 -81.866607666 14.044919014
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.999615 -0.027546 0.003385 }
+        <Binormal> { -0.027086 -0.994698 -0.095799 }
+      }
+      <Normal> { 0.019654 -0.096377 0.995148 }
+    }
+    <Vertex> 5144 {
+      0.214008584619 -79.4521484375 14.2779083252
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.997721 0.057351 -0.035544 }
+        <Binormal> { 0.055025 -0.996457 -0.063252 }
+      }
+      <Normal> { 0.034669 -0.061403 0.997497 }
+    }
+    <Vertex> 5145 {
+      0.36860653758 -81.866607666 14.044919014
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.999615 -0.027546 0.003385 }
+        <Binormal> { -0.027086 -0.994698 -0.095799 }
+      }
+      <Normal> { 0.019654 -0.096377 0.995148 }
+    }
+    <Vertex> 5146 {
+      4.4630355835 -82.060546875 13.9718027115
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.999159 -0.013756 -0.038617 }
+        <Binormal> { -0.015020 -0.999243 -0.032690 }
+      }
+      <Normal> { 0.024262 -0.033052 0.999146 }
+    }
+    <Vertex> 5147 {
+      4.42438602448 -79.372543335 14.030049324
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.998094 0.018871 -0.058756 }
+        <Binormal> { 0.017683 -0.999274 -0.020555 }
+      }
+      <Normal> { 0.033570 -0.019959 0.999207 }
+    }
+    <Vertex> 5148 {
+      8.89688682556 -79.8631820679 13.9474306107
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.989517 -0.144191 -0.008027 }
+        <Binormal> { -0.144210 -0.989519 -0.002273 }
+      }
+      <Normal> { 0.007691 -0.003418 0.999939 }
+    }
+    <Vertex> 5149 {
+      13.5004501343 -80.6389465332 13.9474306107
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.986097 -0.166171 0.000000 }
+        <Binormal> { -0.166171 -0.986097 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 5150 {
+      13.5004501343 -77.9678878784 13.9474306107
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.986097 -0.166171 0.000000 }
+        <Binormal> { -0.166171 -0.986097 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 5151 {
+      8.89688682556 -77.1921234131 13.9474306107
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.988387 -0.151537 -0.011261 }
+        <Binormal> { -0.151535 -0.988446 0.000902 }
+      }
+      <Normal> { 0.010529 -0.000702 0.999939 }
+    }
+    <Vertex> 5152 {
+      8.89688682556 -79.8631820679 13.9474306107
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.989517 -0.144191 -0.008027 }
+        <Binormal> { -0.144210 -0.989519 -0.002273 }
+      }
+      <Normal> { 0.007691 -0.003418 0.999939 }
+    }
+    <Vertex> 5153 {
+      8.89688682556 -77.1921234131 13.9474306107
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.988387 -0.151537 -0.011261 }
+        <Binormal> { -0.151535 -0.988446 0.000902 }
+      }
+      <Normal> { 0.010529 -0.000702 0.999939 }
+    }
+    <Vertex> 5154 {
+      4.07204818726 -76.522354126 14.0548553467
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.940054 0.340469 -0.019495 }
+        <Binormal> { 0.340129 -0.940061 -0.016533 }
+      }
+      <Normal> { 0.040132 -0.003052 0.999176 }
+    }
+    <Vertex> 5155 {
+      4.42438602448 -79.372543335 14.030049324
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.993869 -0.109029 -0.018359 }
+        <Binormal> { -0.109309 -0.993697 -0.016177 }
+      }
+      <Normal> { 0.033570 -0.019959 0.999207 }
+    }
+    <Vertex> 5156 {
+      8.89688682556 -79.8631820679 13.9474306107
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.989517 -0.144191 -0.008027 }
+        <Binormal> { -0.144210 -0.989519 -0.002273 }
+      }
+      <Normal> { 0.007691 -0.003418 0.999939 }
+    }
+    <Vertex> 5157 {
+      4.42438602448 -79.372543335 14.030049324
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.993869 -0.109029 -0.018359 }
+        <Binormal> { -0.109309 -0.993697 -0.016177 }
+      }
+      <Normal> { 0.033570 -0.019959 0.999207 }
+    }
+    <Vertex> 5158 {
+      4.4630355835 -82.060546875 13.9718027115
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.992757 -0.119543 -0.011926 }
+        <Binormal> { -0.119836 -0.992198 -0.029912 }
+      }
+      <Normal> { 0.024262 -0.033052 0.999146 }
+    }
+    <Vertex> 5159 {
+      8.89688682556 -82.6423721313 13.9474306107
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.988901 -0.148550 -0.002667 }
+        <Binormal> { -0.148560 -0.988885 -0.004428 }
+      }
+      <Normal> { 0.005341 -0.005280 0.999969 }
+    }
+    <Vertex> 5160 {
+      8.89688682556 -79.8631820679 13.9474306107
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.989517 -0.144191 -0.008027 }
+        <Binormal> { -0.144210 -0.989519 -0.002273 }
+      }
+      <Normal> { 0.007691 -0.003418 0.999939 }
+    }
+    <Vertex> 5161 {
+      8.89688682556 -82.6423721313 13.9474306107
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.988901 -0.148550 -0.002667 }
+        <Binormal> { -0.148560 -0.988885 -0.004428 }
+      }
+      <Normal> { 0.005341 -0.005280 0.999969 }
+    }
+    <Vertex> 5162 {
+      12.3495597839 -82.5293884277 13.9474306107
+      <UV>  {
+        0.125000 0.875000
+        <Tangent> { 0.986097 -0.166170 0.000000 }
+        <Binormal> { -0.166170 -0.986097 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 5163 {
+      13.5004501343 -80.6389465332 13.9474306107
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.986097 -0.166171 0.000000 }
+        <Binormal> { -0.166171 -0.986097 0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 5164 {
+      -5.73025608063 -73.7387161255 13.2095241547
+      <UV>  {
+        0.227152 0.889163
+        <Tangent> { 0.973239 0.082886 0.214327 }
+        <Binormal> { 0.072854 -0.993907 0.053546 }
+      }
+      <Normal> { -0.156163 0.041719 0.986847 }
+    }
+    <Vertex> 5165 {
+      -5.58489465714 -75.8368453979 13.4196300507
+      <UV>  {
+        0.224230 0.930573
+        <Tangent> { 0.518713 -0.815093 0.257991 }
+        <Binormal> { -0.835623 -0.547032 -0.048194 }
+      }
+      <Normal> { -0.175054 0.182165 0.967528 }
+    }
+    <Vertex> 5166 {
+      -4.83536243439 -75.5830001831 13.4370956421
+      <UV>  {
+        0.169884 0.905942
+        <Tangent> { 0.781414 -0.563960 0.267099 }
+        <Binormal> { -0.593261 -0.802592 0.041003 }
+      }
+      <Normal> { -0.155004 0.164342 0.974120 }
+    }
+    <Vertex> 5167 {
+      -4.98317337036 -73.489692688 13.3641862869
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.950322 -0.256976 0.175648 }
+        <Binormal> { -0.248256 -0.965970 -0.070070 }
+      }
+      <Normal> { -0.204505 -0.018433 0.978668 }
+    }
+    <Vertex> 5168 {
+      -5.73025608063 -73.7387161255 13.2095241547
+      <UV>  {
+        0.227152 0.889163
+        <Tangent> { 0.973239 0.082886 0.214327 }
+        <Binormal> { 0.072854 -0.993907 0.053546 }
+      }
+      <Normal> { -0.156163 0.041719 0.986847 }
+    }
+    <Vertex> 5169 {
+      -4.98317337036 -73.489692688 13.3641862869
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { 0.950322 -0.256976 0.175648 }
+        <Binormal> { -0.248256 -0.965970 -0.070070 }
+      }
+      <Normal> { -0.204505 -0.018433 0.978668 }
+    }
+    <Vertex> 5170 {
+      -4.70174360275 -71.5251693726 13.6122722626
+      <UV>  {
+        0.180437 0.862900
+        <Tangent> { 0.850135 0.409424 0.331122 }
+        <Binormal> { 0.443859 -0.892974 -0.035441 }
+      }
+      <Normal> { -0.225593 -0.150334 0.962523 }
+    }
+    <Vertex> 5171 {
+      -5.62065076828 -71.6907501221 13.2828702927
+      <UV>  {
+        0.221408 0.846962
+        <Tangent> { 0.609218 0.716654 0.339500 }
+        <Binormal> { 0.700623 -0.685143 0.189039 }
+      }
+      <Normal> { -0.329936 -0.077822 0.940764 }
+    }
+    <Vertex> 5172 {
+      -5.73025608063 -73.7387161255 13.2095241547
+      <UV>  {
+        0.227152 0.889163
+        <Tangent> { 0.973239 0.082886 0.214327 }
+        <Binormal> { 0.072854 -0.993907 0.053546 }
+      }
+      <Normal> { -0.156163 0.041719 0.986847 }
+    }
+    <Vertex> 5173 {
+      -5.62065076828 -71.6907501221 13.2828702927
+      <UV>  {
+        0.221408 0.846962
+        <Tangent> { 0.609218 0.716654 0.339500 }
+        <Binormal> { 0.700623 -0.685143 0.189039 }
+      }
+      <Normal> { -0.329936 -0.077822 0.940764 }
+    }
+    <Vertex> 5174 {
+      -6.19889211655 -71.3269424438 13.0155086517
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.626682 0.708587 0.324305 }
+        <Binormal> { 0.659113 -0.694113 0.242938 }
+      }
+      <Normal> { -0.298746 0.049867 0.953001 }
+    }
+    <Vertex> 5175 {
+      -6.58286237717 -74.0182876587 13.1800298691
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.986703 0.154436 0.050664 }
+        <Binormal> { 0.149319 -0.983931 0.091207 }
+      }
+      <Normal> { -0.098636 0.076998 0.992126 }
+    }
+    <Vertex> 5176 {
+      -5.73025608063 -73.7387161255 13.2095241547
+      <UV>  {
+        0.227152 0.889163
+        <Tangent> { 0.973239 0.082886 0.214327 }
+        <Binormal> { 0.072854 -0.993907 0.053546 }
+      }
+      <Normal> { -0.156163 0.041719 0.986847 }
+    }
+    <Vertex> 5177 {
+      -6.58286237717 -74.0182876587 13.1800298691
+      <UV>  {
+        0.279143 0.893905
+        <Tangent> { 0.986703 0.154436 0.050664 }
+        <Binormal> { 0.149319 -0.983931 0.091207 }
+      }
+      <Normal> { -0.098636 0.076998 0.992126 }
+    }
+    <Vertex> 5178 {
+      -5.85239982605 -76.681098938 13.5620059967
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.622501 -0.728498 0.285976 }
+        <Binormal> { -0.708441 -0.674238 -0.175453 }
+      }
+      <Normal> { -0.250465 0.011261 0.968047 }
+    }
+    <Vertex> 5179 {
+      -5.58489465714 -75.8368453979 13.4196300507
+      <UV>  {
+        0.224230 0.930573
+        <Tangent> { 0.518713 -0.815093 0.257991 }
+        <Binormal> { -0.835623 -0.547032 -0.048194 }
+      }
+      <Normal> { -0.175054 0.182165 0.967528 }
+    }
+    <Vertex> 5180 {
+      -5.19595623016 -76.8439483643 13.885840416
+      <UV>  {
+        0.207275 0.945529
+        <Tangent> { 0.747987 -0.577835 0.326532 }
+        <Binormal> { -0.627469 -0.775370 0.065241 }
+      }
+      <Normal> { -0.236122 0.269631 0.933531 }
+    }
+    <Vertex> 5181 {
+      -4.75005340576 -77.705291748 14.1505403519
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.738852 -0.597101 0.312359 }
+        <Binormal> { -0.560758 -0.801727 -0.206157 }
+      }
+      <Normal> { -0.361766 0.013337 0.932157 }
+    }
+    <Vertex> 5182 {
+      -3.41103816032 -77.8269882202 14.4683427811
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { 0.866012 -0.422390 0.267601 }
+        <Binormal> { -0.440052 -0.888560 0.021565 }
+      }
+      <Normal> { -0.118137 0.082522 0.989532 }
+    }
+    <Vertex> 5183 {
+      -4.16913843155 -76.7562179565 13.9908123016
+      <UV>  {
+        0.164607 0.927463
+        <Tangent> { 0.849415 -0.446572 0.281188 }
+        <Binormal> { -0.504651 -0.841877 0.187418 }
+      }
+      <Normal> { -0.121158 0.284341 0.951018 }
+    }
+    <Vertex> 5184 {
+      -5.19595623016 -76.8439483643 13.885840416
+      <UV>  {
+        0.207275 0.945529
+        <Tangent> { 0.747987 -0.577835 0.326532 }
+        <Binormal> { -0.627469 -0.775370 0.065241 }
+      }
+      <Normal> { -0.236122 0.269631 0.933531 }
+    }
+    <Vertex> 5185 {
+      -4.16913843155 -76.7562179565 13.9908123016
+      <UV>  {
+        0.164607 0.927463
+        <Tangent> { 0.849415 -0.446572 0.281188 }
+        <Binormal> { -0.504651 -0.841877 0.187418 }
+      }
+      <Normal> { -0.121158 0.284341 0.951018 }
+    }
+    <Vertex> 5186 {
+      -4.83536243439 -75.5830001831 13.4370956421
+      <UV>  {
+        0.169884 0.905942
+        <Tangent> { 0.781414 -0.563960 0.267099 }
+        <Binormal> { -0.593261 -0.802592 0.041003 }
+      }
+      <Normal> { -0.155004 0.164342 0.974120 }
+    }
+    <Vertex> 5187 {
+      -5.58489465714 -75.8368453979 13.4196300507
+      <UV>  {
+        0.224230 0.930573
+        <Tangent> { 0.518713 -0.815093 0.257991 }
+        <Binormal> { -0.835623 -0.547032 -0.048194 }
+      }
+      <Normal> { -0.175054 0.182165 0.967528 }
+    }
+    <Vertex> 5188 {
+      -5.19595623016 -76.8439483643 13.885840416
+      <UV>  {
+        0.207275 0.945529
+        <Tangent> { 0.747987 -0.577835 0.326532 }
+        <Binormal> { -0.627469 -0.775370 0.065241 }
+      }
+      <Normal> { -0.236122 0.269631 0.933531 }
+    }
+    <Vertex> 5189 {
+      -5.58489465714 -75.8368453979 13.4196300507
+      <UV>  {
+        0.224230 0.930573
+        <Tangent> { 0.518713 -0.815093 0.257991 }
+        <Binormal> { -0.835623 -0.547032 -0.048194 }
+      }
+      <Normal> { -0.175054 0.182165 0.967528 }
+    }
+    <Vertex> 5190 {
+      -5.85239982605 -76.681098938 13.5620059967
+      <UV>  {
+        0.292610 0.981661
+        <Tangent> { 0.622501 -0.728498 0.285976 }
+        <Binormal> { -0.708441 -0.674238 -0.175453 }
+      }
+      <Normal> { -0.250465 0.011261 0.968047 }
+    }
+    <Vertex> 5191 {
+      -4.75005340576 -77.705291748 14.1505403519
+      <UV>  {
+        0.225971 0.965322
+        <Tangent> { 0.738852 -0.597101 0.312359 }
+        <Binormal> { -0.560758 -0.801727 -0.206157 }
+      }
+      <Normal> { -0.361766 0.013337 0.932157 }
+    }
+    <Vertex> 5192 {
+      -5.24468660355 -70.8341598511 13.6670236588
+      <UV>  {
+        0.212367 0.829636
+        <Tangent> { 0.817980 0.451703 0.356192 }
+        <Binormal> { 0.448440 -0.887950 0.096226 }
+      }
+      <Normal> { -0.387280 -0.096225 0.916898 }
+    }
+    <Vertex> 5193 {
+      -5.62065076828 -71.6907501221 13.2828702927
+      <UV>  {
+        0.221408 0.846962
+        <Tangent> { 0.609218 0.716654 0.339500 }
+        <Binormal> { 0.700623 -0.685143 0.189039 }
+      }
+      <Normal> { -0.329936 -0.077822 0.940764 }
+    }
+    <Vertex> 5194 {
+      -4.70174360275 -71.5251693726 13.6122722626
+      <UV>  {
+        0.180437 0.862900
+        <Tangent> { 0.850135 0.409424 0.331122 }
+        <Binormal> { 0.443859 -0.892974 -0.035441 }
+      }
+      <Normal> { -0.225593 -0.150334 0.962523 }
+    }
+    <Vertex> 5195 {
+      -4.08024787903 -70.7383651733 14.0215444565
+      <UV>  {
+        0.185713 0.841380
+        <Tangent> { 0.897801 0.307593 0.315181 }
+        <Binormal> { 0.343834 -0.932497 -0.069373 }
+      }
+      <Normal> { -0.195624 -0.144292 0.969970 }
+    }
+    <Vertex> 5196 {
+      -5.24468660355 -70.8341598511 13.6670236588
+      <UV>  {
+        0.212367 0.829636
+        <Tangent> { 0.817980 0.451703 0.356192 }
+        <Binormal> { 0.448440 -0.887950 0.096226 }
+      }
+      <Normal> { -0.387280 -0.096225 0.916898 }
+    }
+    <Vertex> 5197 {
+      -4.08024787903 -70.7383651733 14.0215444565
+      <UV>  {
+        0.185713 0.841380
+        <Tangent> { 0.897801 0.307593 0.315181 }
+        <Binormal> { 0.343834 -0.932497 -0.069373 }
+      }
+      <Normal> { -0.195624 -0.144292 0.969970 }
+    }
+    <Vertex> 5198 {
+      -3.48870635033 -69.9984741211 14.2370128632
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { 0.911282 0.284730 0.297480 }
+        <Binormal> { 0.274387 -0.947740 0.066579 }
+      }
+      <Normal> { -0.165654 0.021302 0.985931 }
+    }
+    <Vertex> 5199 {
+      -5.03026485443 -70.2021942139 13.7020301819
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.791074 0.506766 0.342622 }
+        <Binormal> { 0.438251 -0.860163 0.260383 }
+      }
+      <Normal> { -0.437208 0.049074 0.897977 }
+    }
+    <Vertex> 5200 {
+      -5.24468660355 -70.8341598511 13.6670236588
+      <UV>  {
+        0.212367 0.829636
+        <Tangent> { 0.817980 0.451703 0.356192 }
+        <Binormal> { 0.448440 -0.887950 0.096226 }
+      }
+      <Normal> { -0.387280 -0.096225 0.916898 }
+    }
+    <Vertex> 5201 {
+      -5.03026485443 -70.2021942139 13.7020301819
+      <UV>  {
+        0.228332 0.813004
+        <Tangent> { 0.791074 0.506766 0.342622 }
+        <Binormal> { 0.438251 -0.860163 0.260383 }
+      }
+      <Normal> { -0.437208 0.049074 0.897977 }
+    }
+    <Vertex> 5202 {
+      -6.19889211655 -71.3269424438 13.0155086517
+      <UV>  {
+        0.265675 0.806150
+        <Tangent> { 0.626682 0.708587 0.324305 }
+        <Binormal> { 0.659113 -0.694113 0.242938 }
+      }
+      <Normal> { -0.298746 0.049867 0.953001 }
+    }
+    <Vertex> 5203 {
+      -5.62065076828 -71.6907501221 13.2828702927
+      <UV>  {
+        0.221408 0.846962
+        <Tangent> { 0.609218 0.716654 0.339500 }
+        <Binormal> { 0.700623 -0.685143 0.189039 }
+      }
+      <Normal> { -0.329936 -0.077822 0.940764 }
+    }
+    <Vertex> 5204 {
+      -1.30915641785 -71.2316970825 14.1999664307
+      <UV>  {
+        0.500000 0.166667
+        <Tangent> { 0.969658 -0.241553 0.037628 }
+        <Binormal> { -0.238471 -0.968472 -0.071813 }
+      }
+      <Normal> { -0.052644 -0.060945 0.996734 }
+    }
+    <Vertex> 5205 {
+      -0.150619730353 -70.3965606689 14.2229480743
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.978001 -0.206233 -0.031325 }
+        <Binormal> { -0.205209 -0.978099 0.032607 }
+      }
+      <Normal> { 0.025971 0.027863 0.999268 }
+    }
+    <Vertex> 5206 {
+      -3.48870635033 -69.9984741211 14.2370128632
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.989171 -0.144335 0.026612 }
+        <Binormal> { -0.142871 -0.979663 -0.002838 }
+      }
+      <Normal> { -0.165654 0.021302 0.985931 }
+    }
+    <Vertex> 5207 {
+      -4.08024787903 -70.7383651733 14.0215444565
+      <UV>  {
+        1.000000 0.166667
+        <Tangent> { 0.982548 -0.174921 0.063263 }
+        <Binormal> { -0.160540 -0.965418 -0.175992 }
+      }
+      <Normal> { -0.195624 -0.144292 0.969970 }
+    }
+    <Vertex> 5208 {
+      -1.30915641785 -71.2316970825 14.1999664307
+      <UV>  {
+        0.500000 0.166667
+        <Tangent> { 0.969658 -0.241553 0.037628 }
+        <Binormal> { -0.238471 -0.968472 -0.071813 }
+      }
+      <Normal> { -0.052644 -0.060945 0.996734 }
+    }
+    <Vertex> 5209 {
+      -4.08024787903 -70.7383651733 14.0215444565
+      <UV>  {
+        1.000000 0.166667
+        <Tangent> { 0.982548 -0.174921 0.063263 }
+        <Binormal> { -0.160540 -0.965418 -0.175992 }
+      }
+      <Normal> { -0.195624 -0.144292 0.969970 }
+    }
+    <Vertex> 5210 {
+      -4.70174360275 -71.5251693726 13.6122722626
+      <UV>  {
+        1.000000 0.333334
+        <Tangent> { 0.977428 -0.138611 0.159440 }
+        <Binormal> { -0.109447 -0.976766 -0.178211 }
+      }
+      <Normal> { -0.225593 -0.150334 0.962523 }
+    }
+    <Vertex> 5211 {
+      -2.32687139511 -71.9448318481 14.0527801514
+      <UV>  {
+        0.500000 0.333334
+        <Tangent> { 0.964382 -0.225047 0.139003 }
+        <Binormal> { -0.212610 -0.971968 -0.098566 }
+      }
+      <Normal> { -0.140324 -0.069460 0.987640 }
+    }
+    <Vertex> 5212 {
+      -1.30915641785 -71.2316970825 14.1999664307
+      <UV>  {
+        0.500000 0.166667
+        <Tangent> { 0.969658 -0.241553 0.037628 }
+        <Binormal> { -0.238471 -0.968472 -0.071813 }
+      }
+      <Normal> { -0.052644 -0.060945 0.996734 }
+    }
+    <Vertex> 5213 {
+      -2.32687139511 -71.9448318481 14.0527801514
+      <UV>  {
+        0.500000 0.333334
+        <Tangent> { 0.964382 -0.225047 0.139003 }
+        <Binormal> { -0.212610 -0.971968 -0.098566 }
+      }
+      <Normal> { -0.140324 -0.069460 0.987640 }
+    }
+    <Vertex> 5214 {
+      -0.191067636013 -72.5777740479 14.2624254227
+      <UV>  {
+        0.000000 0.333334
+        <Tangent> { 0.964356 -0.247316 0.094085 }
+        <Binormal> { -0.248167 -0.968147 -0.001242 }
+      }
+      <Normal> { -0.059999 0.014100 0.998077 }
+    }
+    <Vertex> 5215 {
+      1.38754177094 -72.282951355 14.268406868
+      <UV>  {
+        0.000000 0.166667
+        <Tangent> { 0.931448 -0.363106 0.023640 }
+        <Binormal> { -0.363672 -0.929812 0.047420 }
+      }
+      <Normal> { 0.023499 0.041749 0.998840 }
+    }
+    <Vertex> 5216 {
+      -1.30915641785 -71.2316970825 14.1999664307
+      <UV>  {
+        0.500000 0.166667
+        <Tangent> { 0.969658 -0.241553 0.037628 }
+        <Binormal> { -0.238471 -0.968472 -0.071813 }
+      }
+      <Normal> { -0.052644 -0.060945 0.996734 }
+    }
+    <Vertex> 5217 {
+      1.38754177094 -72.282951355 14.268406868
+      <UV>  {
+        0.000000 0.166667
+        <Tangent> { 0.931448 -0.363106 0.023640 }
+        <Binormal> { -0.363672 -0.929812 0.047420 }
+      }
+      <Normal> { 0.023499 0.041749 0.998840 }
+    }
+    <Vertex> 5218 {
+      4.19780635834 -71.6193466187 13.99081707
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.963402 0.259921 -0.065560 }
+        <Binormal> { 0.263033 -0.963752 0.044348 }
+      }
+      <Normal> { 0.051088 0.059816 0.996887 }
+    }
+    <Vertex> 5219 {
+      -0.150619730353 -70.3965606689 14.2229480743
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.978001 -0.206233 -0.031325 }
+        <Binormal> { -0.205209 -0.978099 0.032607 }
+      }
+      <Normal> { 0.025971 0.027863 0.999268 }
+    }
+    <Vertex> 5220 {
+      -2.69477748871 -73.5481033325 13.9048538208
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.983865 -0.042115 0.173882 }
+        <Binormal> { -0.034447 -0.998302 -0.046886 }
+      }
+      <Normal> { -0.175756 -0.040132 0.983612 }
+    }
+    <Vertex> 5221 {
+      -2.32687139511 -71.9448318481 14.0527801514
+      <UV>  {
+        0.500000 0.333334
+        <Tangent> { 0.964382 -0.225047 0.139003 }
+        <Binormal> { -0.212610 -0.971968 -0.098566 }
+      }
+      <Normal> { -0.140324 -0.069460 0.987640 }
+    }
+    <Vertex> 5222 {
+      -4.70174360275 -71.5251693726 13.6122722626
+      <UV>  {
+        1.000000 0.333334
+        <Tangent> { 0.977428 -0.138611 0.159440 }
+        <Binormal> { -0.109447 -0.976766 -0.178211 }
+      }
+      <Normal> { -0.225593 -0.150334 0.962523 }
+    }
+    <Vertex> 5223 {
+      -4.98317337036 -73.489692688 13.3641862869
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.972906 -0.024833 0.229864 }
+        <Binormal> { -0.020066 -0.999160 -0.023012 }
+      }
+      <Normal> { -0.204505 -0.018433 0.978668 }
+    }
+    <Vertex> 5224 {
+      -2.69477748871 -73.5481033325 13.9048538208
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.983865 -0.042115 0.173882 }
+        <Binormal> { -0.034447 -0.998302 -0.046886 }
+      }
+      <Normal> { -0.175756 -0.040132 0.983612 }
+    }
+    <Vertex> 5225 {
+      -4.98317337036 -73.489692688 13.3641862869
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.972906 -0.024833 0.229864 }
+        <Binormal> { -0.020066 -0.999160 -0.023012 }
+      }
+      <Normal> { -0.204505 -0.018433 0.978668 }
+    }
+    <Vertex> 5226 {
+      -4.83536243439 -75.5830001831 13.4370956421
+      <UV>  {
+        1.000000 0.666666
+        <Tangent> { 0.982830 0.099681 0.155269 }
+        <Binormal> { 0.071584 -0.981462 0.176971 }
+      }
+      <Normal> { -0.155004 0.164342 0.974120 }
+    }
+    <Vertex> 5227 {
+      -2.37738037109 -75.2645187378 13.8879241943
+      <UV>  {
+        0.500000 0.666666
+        <Tangent> { 0.976064 0.149336 0.158105 }
+        <Binormal> { 0.139832 -0.987540 0.069513 }
+      }
+      <Normal> { -0.148320 0.048524 0.987732 }
+    }
+    <Vertex> 5228 {
+      -2.69477748871 -73.5481033325 13.9048538208
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.983865 -0.042115 0.173882 }
+        <Binormal> { -0.034447 -0.998302 -0.046886 }
+      }
+      <Normal> { -0.175756 -0.040132 0.983612 }
+    }
+    <Vertex> 5229 {
+      -2.37738037109 -75.2645187378 13.8879241943
+      <UV>  {
+        0.500000 0.666666
+        <Tangent> { 0.976064 0.149336 0.158105 }
+        <Binormal> { 0.139832 -0.987540 0.069513 }
+      }
+      <Normal> { -0.148320 0.048524 0.987732 }
+    }
+    <Vertex> 5230 {
+      -0.185277283192 -74.8715438843 14.190325737
+      <UV>  {
+        0.000000 0.666666
+        <Tangent> { 0.981664 0.150237 0.117320 }
+        <Binormal> { 0.153906 -0.987395 -0.023361 }
+      }
+      <Normal> { -0.084597 -0.036744 0.995727 }
+    }
+    <Vertex> 5231 {
+      0.0906433984637 -73.7323760986 14.368719101
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.984322 -0.065119 0.163922 }
+        <Binormal> { -0.060744 -0.993089 -0.029754 }
+      }
+      <Normal> { -0.070345 -0.025575 0.997192 }
+    }
+    <Vertex> 5232 {
+      -2.69477748871 -73.5481033325 13.9048538208
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.983865 -0.042115 0.173882 }
+        <Binormal> { -0.034447 -0.998302 -0.046886 }
+      }
+      <Normal> { -0.175756 -0.040132 0.983612 }
+    }
+    <Vertex> 5233 {
+      0.0906433984637 -73.7323760986 14.368719101
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.984322 -0.065119 0.163922 }
+        <Binormal> { -0.060744 -0.993089 -0.029754 }
+      }
+      <Normal> { -0.070345 -0.025575 0.997192 }
+    }
+    <Vertex> 5234 {
+      -0.191067636013 -72.5777740479 14.2624254227
+      <UV>  {
+        0.000000 0.333334
+        <Tangent> { 0.964356 -0.247316 0.094085 }
+        <Binormal> { -0.248167 -0.968147 -0.001242 }
+      }
+      <Normal> { -0.059999 0.014100 0.998077 }
+    }
+    <Vertex> 5235 {
+      -2.32687139511 -71.9448318481 14.0527801514
+      <UV>  {
+        0.500000 0.333334
+        <Tangent> { 0.964382 -0.225047 0.139003 }
+        <Binormal> { -0.212610 -0.971968 -0.098566 }
+      }
+      <Normal> { -0.140324 -0.069460 0.987640 }
+    }
+    <Vertex> 5236 {
+      -1.33918428421 -76.3170700073 14.13372612
+      <UV>  {
+        0.500000 0.833333
+        <Tangent> { 0.979400 0.198631 0.036356 }
+        <Binormal> { 0.190739 -0.969093 0.156296 }
+      }
+      <Normal> { -0.065920 0.146214 0.987030 }
+    }
+    <Vertex> 5237 {
+      -2.37738037109 -75.2645187378 13.8879241943
+      <UV>  {
+        0.500000 0.666666
+        <Tangent> { 0.976064 0.149336 0.158105 }
+        <Binormal> { 0.139832 -0.987540 0.069513 }
+      }
+      <Normal> { -0.148320 0.048524 0.987732 }
+    }
+    <Vertex> 5238 {
+      -4.83536243439 -75.5830001831 13.4370956421
+      <UV>  {
+        1.000000 0.666666
+        <Tangent> { 0.982830 0.099681 0.155269 }
+        <Binormal> { 0.071584 -0.981462 0.176971 }
+      }
+      <Normal> { -0.155004 0.164342 0.974120 }
+    }
+    <Vertex> 5239 {
+      -4.16913843155 -76.7562179565 13.9908123016
+      <UV>  {
+        1.000000 0.833333
+        <Tangent> { 0.986945 0.153153 0.049841 }
+        <Binormal> { 0.131479 -0.944641 0.299185 }
+      }
+      <Normal> { -0.121158 0.284341 0.951018 }
+    }
+    <Vertex> 5240 {
+      -1.33918428421 -76.3170700073 14.13372612
+      <UV>  {
+        0.500000 0.833333
+        <Tangent> { 0.979400 0.198631 0.036356 }
+        <Binormal> { 0.190739 -0.969093 0.156296 }
+      }
+      <Normal> { -0.065920 0.146214 0.987030 }
+    }
+    <Vertex> 5241 {
+      -4.16913843155 -76.7562179565 13.9908123016
+      <UV>  {
+        1.000000 0.833333
+        <Tangent> { 0.986945 0.153153 0.049841 }
+        <Binormal> { 0.131479 -0.944641 0.299185 }
+      }
+      <Normal> { -0.121158 0.284341 0.951018 }
+    }
+    <Vertex> 5242 {
+      -3.41103816032 -77.8269882202 14.4683427811
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.991074 0.133203 0.005449 }
+        <Binormal> { 0.131359 -0.981343 0.097522 }
+      }
+      <Normal> { -0.118137 0.082522 0.989532 }
+    }
+    <Vertex> 5243 {
+      -0.251588791609 -77.4611434937 14.3583564758
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.983684 0.171500 -0.054355 }
+        <Binormal> { 0.174603 -0.982471 0.059981 }
+      }
+      <Normal> { 0.018555 0.064211 0.997742 }
+    }
+    <Vertex> 5244 {
+      -1.33918428421 -76.3170700073 14.13372612
+      <UV>  {
+        0.500000 0.833333
+        <Tangent> { 0.979400 0.198631 0.036356 }
+        <Binormal> { 0.190739 -0.969093 0.156296 }
+      }
+      <Normal> { -0.065920 0.146214 0.987030 }
+    }
+    <Vertex> 5245 {
+      -0.251588791609 -77.4611434937 14.3583564758
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.983684 0.171500 -0.054355 }
+        <Binormal> { 0.174603 -0.982471 0.059981 }
+      }
+      <Normal> { 0.018555 0.064211 0.997742 }
+    }
+    <Vertex> 5246 {
+      4.07204818726 -76.522354126 14.0548553467
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.997954 0.037472 -0.051801 }
+        <Binormal> { 0.037283 -0.999211 -0.004549 }
+      }
+      <Normal> { 0.040132 -0.003052 0.999176 }
+    }
+    <Vertex> 5247 {
+      1.44357275963 -75.3955993652 14.2544813156
+      <UV>  {
+        0.000000 0.833333
+        <Tangent> { 0.948503 0.314083 0.041159 }
+        <Binormal> { 0.314497 -0.948563 -0.009086 }
+      }
+      <Normal> { -0.002869 -0.010529 0.999939 }
+    }
+    <Vertex> 5248 {
+      -1.33918428421 -76.3170700073 14.13372612
+      <UV>  {
+        0.500000 0.833333
+        <Tangent> { 0.979400 0.198631 0.036356 }
+        <Binormal> { 0.190739 -0.969093 0.156296 }
+      }
+      <Normal> { -0.065920 0.146214 0.987030 }
+    }
+    <Vertex> 5249 {
+      1.44357275963 -75.3955993652 14.2544813156
+      <UV>  {
+        0.000000 0.833333
+        <Tangent> { 0.948503 0.314083 0.041159 }
+        <Binormal> { 0.314497 -0.948563 -0.009086 }
+      }
+      <Normal> { -0.002869 -0.010529 0.999939 }
+    }
+    <Vertex> 5250 {
+      -0.185277283192 -74.8715438843 14.190325737
+      <UV>  {
+        0.000000 0.666666
+        <Tangent> { 0.981664 0.150237 0.117320 }
+        <Binormal> { 0.153906 -0.987395 -0.023361 }
+      }
+      <Normal> { -0.084597 -0.036744 0.995727 }
+    }
+    <Vertex> 5251 {
+      -2.37738037109 -75.2645187378 13.8879241943
+      <UV>  {
+        0.500000 0.666666
+        <Tangent> { 0.976064 0.149336 0.158105 }
+        <Binormal> { 0.139832 -0.987540 0.069513 }
+      }
+      <Normal> { -0.148320 0.048524 0.987732 }
+    }
+    <Vertex> 5252 {
+      -35.836479187 -68.373008728 15.2559137344
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.036768 0.961131 0.273633 }
+        <Binormal> { -0.032959 -0.274815 0.960855 }
+      }
+      <Normal> { -0.999146 -0.014832 -0.038514 }
+    }
+    <Vertex> 5253 {
+      -35.836479187 -65.0865631104 15.3079805374
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.005146 -0.993868 0.110456 }
+        <Binormal> { 0.045500 -0.110574 -0.992816 }
+      }
+      <Normal> { -0.998932 0.001892 -0.045991 }
+    }
+    <Vertex> 5254 {
+      -35.836479187 -65.086555481 13.4386987686
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.000000 -0.961859 -0.273545 }
+        <Binormal> { -0.000000 0.273545 -0.961859 }
+      }
+      <Normal> { -1.000000 0.000000 0.000000 }
+    }
+    <Vertex> 5255 {
+      -35.836479187 -68.373008728 13.4386987686
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.000000 -0.655219 -0.755439 }
+        <Binormal> { -0.015498 0.755324 -0.655119 }
+      }
+      <Normal> { -0.999847 -0.008393 0.013977 }
+    }
+    <Vertex> 5256 {
+      -35.836479187 -68.373008728 15.2559137344
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.036768 0.961131 0.273633 }
+        <Binormal> { -0.032959 -0.274815 0.960855 }
+      }
+      <Normal> { -0.999146 -0.014832 -0.038514 }
+    }
+    <Vertex> 5257 {
+      -35.836479187 -68.373008728 13.4386987686
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.000000 -0.655219 -0.755439 }
+        <Binormal> { -0.015498 0.755324 -0.655119 }
+      }
+      <Normal> { -0.999847 -0.008393 0.013977 }
+    }
+    <Vertex> 5258 {
+      -35.836479187 -71.3910903931 13.4386987686
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.016828 0.960980 0.276106 }
+        <Binormal> { 0.135117 -0.271406 0.952859 }
+      }
+      <Normal> { -0.990448 -0.062899 0.122532 }
+    }
+    <Vertex> 5259 {
+      -35.7342033386 -71.1955337524 15.3950242996
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.036768 0.961131 0.273633 }
+        <Binormal> { 0.002504 -0.273028 0.959344 }
+      }
+      <Normal> { -0.994140 -0.104556 -0.027161 }
+    }
+    <Vertex> 5260 {
+      -35.836479187 -68.373008728 15.2559137344
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.036768 0.961131 0.273633 }
+        <Binormal> { -0.032959 -0.274815 0.960855 }
+      }
+      <Normal> { -0.999146 -0.014832 -0.038514 }
+    }
+    <Vertex> 5261 {
+      -35.7342033386 -71.1955337524 15.3950242996
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.036768 0.961131 0.273633 }
+        <Binormal> { 0.002504 -0.273028 0.959344 }
+      }
+      <Normal> { -0.994140 -0.104556 -0.027161 }
+    }
+    <Vertex> 5262 {
+      -35.841381073 -71.8590393066 17.0761871338
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.060125 0.960815 0.270593 }
+        <Binormal> { -0.354598 -0.262923 0.854789 }
+      }
+      <Normal> { -0.876034 -0.217597 -0.430342 }
+    }
+    <Vertex> 5263 {
+      -35.9719848633 -68.40234375 16.6728916168
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.069655 -0.520590 0.850961 }
+        <Binormal> { 0.206660 -0.821457 -0.485625 }
+      }
+      <Normal> { -0.936796 -0.029603 -0.348582 }
+    }
+    <Vertex> 5264 {
+      -35.836479187 -68.373008728 15.2559137344
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.036768 0.961131 0.273633 }
+        <Binormal> { -0.032959 -0.274815 0.960855 }
+      }
+      <Normal> { -0.999146 -0.014832 -0.038514 }
+    }
+    <Vertex> 5265 {
+      -35.9719848633 -68.40234375 16.6728916168
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.069655 -0.520590 0.850961 }
+        <Binormal> { 0.206660 -0.821457 -0.485625 }
+      }
+      <Normal> { -0.936796 -0.029603 -0.348582 }
+    }
+    <Vertex> 5266 {
+      -35.9719848633 -64.9678497314 16.7640094757
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.030701 -0.951269 0.306831 }
+        <Binormal> { 0.311389 -0.299509 -0.897413 }
+      }
+      <Normal> { -0.942839 0.016938 -0.332804 }
+    }
+    <Vertex> 5267 {
+      -35.836479187 -65.0865631104 15.3079805374
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.005146 -0.993868 0.110456 }
+        <Binormal> { 0.045500 -0.110574 -0.992816 }
+      }
+      <Normal> { -0.998932 0.001892 -0.045991 }
+    }
+    <Vertex> 5268 {
+      -35.836479187 -61.7109489441 15.4641838074
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.009554 0.960385 0.278511 }
+        <Binormal> { -0.013428 -0.277221 0.955476 }
+      }
+      <Normal> { -0.995788 0.090518 0.012268 }
+    }
+    <Vertex> 5269 {
+      -35.2973861694 -59.0695304871 15.7247886658
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.155750 -0.982859 0.098642 }
+        <Binormal> { -0.157284 -0.061316 -0.859289 }
+      }
+      <Normal> { -0.775414 0.623859 0.097415 }
+    }
+    <Vertex> 5270 {
+      -35.836479187 -58.1712722778 13.4386987686
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.081529 -0.934785 -0.345732 }
+        <Binormal> { -0.348877 0.228852 -0.536496 }
+      }
+      <Normal> { -0.520829 0.608783 0.598376 }
+    }
+    <Vertex> 5271 {
+      -35.836479187 -61.7109489441 13.4386987686
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.000000 -0.649208 -0.760611 }
+        <Binormal> { -0.015038 0.758104 -0.647068 }
+      }
+      <Normal> { -0.996704 0.040193 0.070254 }
+    }
+    <Vertex> 5272 {
+      -35.836479187 -61.7109489441 15.4641838074
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.009554 0.960385 0.278511 }
+        <Binormal> { -0.013428 -0.277221 0.955476 }
+      }
+      <Normal> { -0.995788 0.090518 0.012268 }
+    }
+    <Vertex> 5273 {
+      -35.836479187 -61.7109489441 13.4386987686
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.000000 -0.649208 -0.760611 }
+        <Binormal> { -0.015038 0.758104 -0.647068 }
+      }
+      <Normal> { -0.996704 0.040193 0.070254 }
+    }
+    <Vertex> 5274 {
+      -35.836479187 -65.086555481 13.4386987686
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.000000 0.951549 0.307497 }
+        <Binormal> { -0.000000 -0.307497 0.951549 }
+      }
+      <Normal> { -1.000000 0.000000 0.000000 }
+    }
+    <Vertex> 5275 {
+      -35.836479187 -65.0865631104 15.3079805374
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.009554 0.960386 0.278511 }
+        <Binormal> { -0.044696 -0.278653 0.959342 }
+      }
+      <Normal> { -0.998932 0.001892 -0.045991 }
+    }
+    <Vertex> 5276 {
+      -35.836479187 -61.7109489441 15.4641838074
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.009554 0.960385 0.278511 }
+        <Binormal> { -0.013428 -0.277221 0.955476 }
+      }
+      <Normal> { -0.995788 0.090518 0.012268 }
+    }
+    <Vertex> 5277 {
+      -35.836479187 -65.0865631104 15.3079805374
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.009554 0.960386 0.278511 }
+        <Binormal> { -0.044696 -0.278653 0.959342 }
+      }
+      <Normal> { -0.998932 0.001892 -0.045991 }
+    }
+    <Vertex> 5278 {
+      -35.9719848633 -64.9678497314 16.7640094757
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.019098 0.968252 0.249244 }
+        <Binormal> { -0.326460 -0.241353 0.912582 }
+      }
+      <Normal> { -0.942839 0.016938 -0.332804 }
+    }
+    <Vertex> 5279 {
+      -35.9719848633 -61.4401893616 17.0373668671
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.169152 -0.343558 0.923773 }
+        <Binormal> { -0.034471 -0.900260 -0.341125 }
+      }
+      <Normal> { -0.903470 0.181677 -0.388165 }
+    }
+    <Vertex> 5280 {
+      -35.836479187 -61.7109489441 15.4641838074
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.009554 0.960385 0.278511 }
+        <Binormal> { -0.013428 -0.277221 0.955476 }
+      }
+      <Normal> { -0.995788 0.090518 0.012268 }
+    }
+    <Vertex> 5281 {
+      -35.9719848633 -61.4401893616 17.0373668671
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.169152 -0.343558 0.923773 }
+        <Binormal> { -0.034471 -0.900260 -0.341125 }
+      }
+      <Normal> { -0.903470 0.181677 -0.388165 }
+    }
+    <Vertex> 5282 {
+      -34.9179916382 -58.4592971802 17.6732330322
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.227569 -0.898801 0.374659 }
+        <Binormal> { 0.156019 -0.286726 -0.593084 }
+      }
+      <Normal> { -0.473006 0.737999 -0.481216 }
+    }
+    <Vertex> 5283 {
+      -35.2973861694 -59.0695304871 15.7247886658
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.155750 -0.982859 0.098642 }
+        <Binormal> { -0.157284 -0.061316 -0.859289 }
+      }
+      <Normal> { -0.775414 0.623859 0.097415 }
+    }
+    <Vertex> 5284 {
+      -31.9765090942 -56.05128479 19.375295639
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.849941 0.418114 0.320593 }
+        <Binormal> { -0.344430 0.031821 0.871636 }
+      }
+      <Normal> { -0.059084 0.996460 -0.059725 }
+    }
+    <Vertex> 5285 {
+      -28.6750202179 -56.7903060913 20.3149032593
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.936082 0.245719 -0.251739 }
+        <Binormal> { 0.247077 0.009840 -0.909140 }
+      }
+      <Normal> { 0.534562 0.830897 0.154271 }
+    }
+    <Vertex> 5286 {
+      -29.1713294983 -58.0324745178 19.7914867401
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.943333 0.019986 -0.331245 }
+        <Binormal> { 0.129289 -0.827433 -0.418117 }
+      }
+      <Normal> { 0.614307 0.430219 -0.661428 }
+    }
+    <Vertex> 5287 {
+      -31.8457717896 -57.3494720459 19.0269432068
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.619076 -0.665990 -0.416176 }
+        <Binormal> { 0.740434 -0.486535 -0.322838 }
+      }
+      <Normal> { 0.193518 0.729667 -0.655812 }
+    }
+    <Vertex> 5288 {
+      -31.9765090942 -56.05128479 19.375295639
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.849941 0.418114 0.320593 }
+        <Binormal> { -0.344430 0.031821 0.871636 }
+      }
+      <Normal> { -0.059084 0.996460 -0.059725 }
+    }
+    <Vertex> 5289 {
+      -31.8457717896 -57.3494720459 19.0269432068
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.619076 -0.665990 -0.416176 }
+        <Binormal> { 0.740434 -0.486535 -0.322838 }
+      }
+      <Normal> { 0.193518 0.729667 -0.655812 }
+    }
+    <Vertex> 5290 {
+      -34.9179916382 -58.4592971802 17.6732330322
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.798520 0.488895 0.351208 }
+        <Binormal> { -0.494455 0.218137 0.820557 }
+      }
+      <Normal> { -0.473006 0.737999 -0.481216 }
+    }
+    <Vertex> 5291 {
+      -35.2779922485 -57.4655342102 18.3315544128
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.849942 0.418114 0.320593 }
+        <Binormal> { -0.210932 -0.249073 0.884052 }
+      }
+      <Normal> { -0.733787 0.679159 0.016266 }
+    }
+    <Vertex> 5292 {
+      -31.9765090942 -56.05128479 19.375295639
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.849941 0.418114 0.320593 }
+        <Binormal> { -0.344430 0.031821 0.871636 }
+      }
+      <Normal> { -0.059084 0.996460 -0.059725 }
+    }
+    <Vertex> 5293 {
+      -35.2779922485 -57.4655342102 18.3315544128
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.849942 0.418114 0.320593 }
+        <Binormal> { -0.210932 -0.249073 0.884052 }
+      }
+      <Normal> { -0.733787 0.679159 0.016266 }
+    }
+    <Vertex> 5294 {
+      -34.4991531372 -57.4138221741 18.6374549866
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.891805 0.347962 0.289148 }
+        <Binormal> { 0.278250 -0.924340 0.254161 }
+      }
+      <Normal> { -0.408643 0.125553 0.903989 }
+    }
+    <Vertex> 5295 {
+      -31.8789730072 -55.9559631348 19.4854335785
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.020364 -0.997580 -0.066485 }
+        <Binormal> { -0.921504 0.038682 -0.298146 }
+      }
+      <Normal> { -0.294992 0.189947 0.936399 }
+    }
+    <Vertex> 5296 {
+      -31.9765090942 -56.05128479 19.375295639
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.849941 0.418114 0.320593 }
+        <Binormal> { -0.344430 0.031821 0.871636 }
+      }
+      <Normal> { -0.059084 0.996460 -0.059725 }
+    }
+    <Vertex> 5297 {
+      -31.8789730072 -55.9559631348 19.4854335785
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.020364 -0.997580 -0.066485 }
+        <Binormal> { -0.921504 0.038682 -0.298146 }
+      }
+      <Normal> { -0.294992 0.189947 0.936399 }
+    }
+    <Vertex> 5298 {
+      -29.3093624115 -56.9753570557 20.1683120728
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.947740 0.140566 -0.286409 }
+        <Binormal> { 0.172315 0.979973 -0.089241 }
+      }
+      <Normal> { -0.226051 0.127689 0.965697 }
+    }
+    <Vertex> 5299 {
+      -28.6750202179 -56.7903060913 20.3149032593
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.936082 0.245719 -0.251739 }
+        <Binormal> { 0.247077 0.009840 -0.909140 }
+      }
+      <Normal> { 0.534562 0.830897 0.154271 }
+    }
+    <Vertex> 5300 {
+      -36.378490448 -60.6279067993 17.7059440613
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.023390 0.989134 0.145144 }
+        <Binormal> { 0.148121 -0.145487 0.967608 }
+      }
+      <Normal> { -0.974853 0.143132 0.170751 }
+    }
+    <Vertex> 5301 {
+      -35.2779922485 -57.4655342102 18.3315544128
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.322776 -0.933608 -0.155540 }
+        <Binormal> { 0.090450 0.119384 -0.904285 }
+      }
+      <Normal> { -0.733787 0.679159 0.016266 }
+    }
+    <Vertex> 5302 {
+      -34.9179916382 -58.4592971802 17.6732330322
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.235356 -0.936523 -0.259870 }
+        <Binormal> { 0.642454 0.009663 -0.616674 }
+      }
+      <Normal> { -0.473006 0.737999 -0.481216 }
+    }
+    <Vertex> 5303 {
+      -35.9719848633 -61.4401893616 17.0373668671
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.054947 -0.937280 -0.344218 }
+        <Binormal> { 0.426356 0.332319 -0.836822 }
+      }
+      <Normal> { -0.903470 0.181677 -0.388165 }
+    }
+    <Vertex> 5304 {
+      -36.378490448 -60.6279067993 17.7059440613
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.023390 0.989134 0.145144 }
+        <Binormal> { 0.148121 -0.145487 0.967608 }
+      }
+      <Normal> { -0.974853 0.143132 0.170751 }
+    }
+    <Vertex> 5305 {
+      -35.9719848633 -61.4401893616 17.0373668671
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.054947 -0.937280 -0.344218 }
+        <Binormal> { 0.426356 0.332319 -0.836822 }
+      }
+      <Normal> { -0.903470 0.181677 -0.388165 }
+    }
+    <Vertex> 5306 {
+      -35.9719848633 -64.9678497314 16.7640094757
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.048235 0.987685 0.148838 }
+        <Binormal> { -0.331227 -0.156383 0.930410 }
+      }
+      <Normal> { -0.942839 0.016938 -0.332804 }
+    }
+    <Vertex> 5307 {
+      -36.378490448 -64.6117324829 17.3935375214
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.023390 0.989134 0.145144 }
+        <Binormal> { 0.181278 -0.146970 0.972370 }
+      }
+      <Normal> { -0.983062 -0.000458 0.183203 }
+    }
+    <Vertex> 5308 {
+      -36.378490448 -60.6279067993 17.7059440613
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.023390 0.989134 0.145144 }
+        <Binormal> { 0.148121 -0.145487 0.967608 }
+      }
+      <Normal> { -0.974853 0.143132 0.170751 }
+    }
+    <Vertex> 5309 {
+      -36.378490448 -64.6117324829 17.3935375214
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.023390 0.989134 0.145144 }
+        <Binormal> { 0.181278 -0.146970 0.972370 }
+      }
+      <Normal> { -0.983062 -0.000458 0.183203 }
+    }
+    <Vertex> 5310 {
+      -35.5778579712 -64.2361602783 17.9600639343
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.811248 0.487327 0.323094 }
+        <Binormal> { 0.437255 -0.868401 0.211930 }
+      }
+      <Normal> { -0.463942 -0.017457 0.885678 }
+    }
+    <Vertex> 5311 {
+      -35.5164909363 -59.7377891541 18.2334213257
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.853283 0.043799 0.519605 }
+        <Binormal> { 0.054989 -0.989308 -0.006909 }
+      }
+      <Normal> { -0.398755 -0.028565 0.916593 }
+    }
+    <Vertex> 5312 {
+      -36.378490448 -60.6279067993 17.7059440613
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.023390 0.989134 0.145144 }
+        <Binormal> { 0.148121 -0.145487 0.967608 }
+      }
+      <Normal> { -0.974853 0.143132 0.170751 }
+    }
+    <Vertex> 5313 {
+      -35.5164909363 -59.7377891541 18.2334213257
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.853283 0.043799 0.519605 }
+        <Binormal> { 0.054989 -0.989308 -0.006909 }
+      }
+      <Normal> { -0.398755 -0.028565 0.916593 }
+    }
+    <Vertex> 5314 {
+      -34.4991531372 -57.4138221741 18.6374549866
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.167040 -0.981984 -0.088352 }
+        <Binormal> { -0.876609 0.187106 -0.422253 }
+      }
+      <Normal> { -0.408643 0.125553 0.903989 }
+    }
+    <Vertex> 5315 {
+      -35.2779922485 -57.4655342102 18.3315544128
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.322776 -0.933608 -0.155540 }
+        <Binormal> { 0.090450 0.119384 -0.904285 }
+      }
+      <Normal> { -0.733787 0.679159 0.016266 }
+    }
+    <Vertex> 5316 {
+      -27.5745201111 -60.0877227783 20.6281032562
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.328937 -0.935947 0.125715 }
+        <Binormal> { -0.456525 -0.047071 0.844073 }
+      }
+      <Normal> { 0.875271 0.075594 0.477615 }
+    }
+    <Vertex> 5317 {
+      -28.0004329681 -64.4766845703 20.6281032562
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.092777 0.995656 0.007856 }
+        <Binormal> { 0.546058 -0.044333 -0.830081 }
+      }
+      <Normal> { 0.816492 -0.184698 0.546983 }
+    }
+    <Vertex> 5318 {
+      -28.5866718292 -64.8482666016 20.1032333374
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.014516 0.996905 -0.077266 }
+        <Binormal> { -0.496421 -0.059160 -0.856560 }
+      }
+      <Normal> { 0.856624 -0.178259 -0.484146 }
+    }
+    <Vertex> 5319 {
+      -28.2396678925 -60.9618644714 20.0788478851
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.615023 0.629043 -0.475449 }
+        <Binormal> { -0.325718 -0.737023 -0.553783 }
+      }
+      <Normal> { 0.827723 0.053835 -0.558489 }
+    }
+    <Vertex> 5320 {
+      -27.5745201111 -60.0877227783 20.6281032562
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.328937 -0.935947 0.125715 }
+        <Binormal> { -0.456525 -0.047071 0.844073 }
+      }
+      <Normal> { 0.875271 0.075594 0.477615 }
+    }
+    <Vertex> 5321 {
+      -28.2396678925 -60.9618644714 20.0788478851
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.615023 0.629043 -0.475449 }
+        <Binormal> { -0.325718 -0.737023 -0.553783 }
+      }
+      <Normal> { 0.827723 0.053835 -0.558489 }
+    }
+    <Vertex> 5322 {
+      -29.1713294983 -58.0324745178 19.7914867401
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.441953 -0.877031 0.188397 }
+        <Binormal> { 0.499041 0.408054 0.728903 }
+      }
+      <Normal> { 0.614307 0.430219 -0.661428 }
+    }
+    <Vertex> 5323 {
+      -28.6750202179 -56.7903060913 20.3149032593
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.328937 -0.935947 0.125715 }
+        <Binormal> { -0.248846 0.016457 0.773635 }
+      }
+      <Normal> { 0.534562 0.830897 0.154271 }
+    }
+    <Vertex> 5324 {
+      -27.5745201111 -60.0877227783 20.6281032562
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.328937 -0.935947 0.125715 }
+        <Binormal> { -0.456525 -0.047071 0.844073 }
+      }
+      <Normal> { 0.875271 0.075594 0.477615 }
+    }
+    <Vertex> 5325 {
+      -28.6750202179 -56.7903060913 20.3149032593
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.328937 -0.935947 0.125715 }
+        <Binormal> { -0.248846 0.016457 0.773635 }
+      }
+      <Normal> { 0.534562 0.830897 0.154271 }
+    }
+    <Vertex> 5326 {
+      -29.3093624115 -56.9753570557 20.1683120728
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.224608 -0.972018 0.068789 }
+        <Binormal> { -0.947459 -0.232454 -0.191045 }
+      }
+      <Normal> { -0.226051 0.127689 0.965697 }
+    }
+    <Vertex> 5327 {
+      -28.2414512634 -59.2914199829 20.4250411987
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.401976 0.907266 -0.123623 }
+        <Binormal> { 0.869887 0.420519 0.257627 }
+      }
+      <Normal> { -0.283364 -0.001343 0.958983 }
+    }
+    <Vertex> 5328 {
+      -27.5745201111 -60.0877227783 20.6281032562
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.328937 -0.935947 0.125715 }
+        <Binormal> { -0.456525 -0.047071 0.844073 }
+      }
+      <Normal> { 0.875271 0.075594 0.477615 }
+    }
+    <Vertex> 5329 {
+      -28.2414512634 -59.2914199829 20.4250411987
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.401976 0.907266 -0.123623 }
+        <Binormal> { 0.869887 0.420519 0.257627 }
+      }
+      <Normal> { -0.283364 -0.001343 0.958983 }
+    }
+    <Vertex> 5330 {
+      -28.6547641754 -64.1245651245 20.3859901428
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.906836 0.289835 -0.306013 }
+        <Binormal> { 0.288853 0.955919 0.049398 }
+      }
+      <Normal> { -0.322642 0.048647 0.945250 }
+    }
+    <Vertex> 5331 {
+      -28.0004329681 -64.4766845703 20.6281032562
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.092777 0.995656 0.007856 }
+        <Binormal> { 0.546058 -0.044333 -0.830081 }
+      }
+      <Normal> { 0.816492 -0.184698 0.546983 }
+    }
+    <Vertex> 5332 {
+      -36.378490448 -68.4903411865 17.2894020081
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.007715 0.999260 -0.037692 }
+        <Binormal> { 0.109941 0.038310 0.993153 }
+      }
+      <Normal> { -0.993927 0.004944 0.109836 }
+    }
+    <Vertex> 5333 {
+      -36.378490448 -64.6117324829 17.3935375214
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.013007 -0.999844 0.011978 }
+        <Binormal> { -0.183168 -0.014158 -0.982914 }
+      }
+      <Normal> { -0.983062 -0.000458 0.183203 }
+    }
+    <Vertex> 5334 {
+      -35.9719848633 -64.9678497314 16.7640094757
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.055824 -0.992198 -0.111477 }
+        <Binormal> { 0.332096 0.123683 -0.934537 }
+      }
+      <Normal> { -0.942839 0.016938 -0.332804 }
+    }
+    <Vertex> 5335 {
+      -35.9719848633 -68.40234375 16.6728916168
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.247226 -0.920321 -0.303132 }
+        <Binormal> { 0.311834 0.370152 -0.869472 }
+      }
+      <Normal> { -0.936796 -0.029603 -0.348582 }
+    }
+    <Vertex> 5336 {
+      -36.378490448 -68.4903411865 17.2894020081
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.007715 0.999260 -0.037692 }
+        <Binormal> { 0.109941 0.038310 0.993153 }
+      }
+      <Normal> { -0.993927 0.004944 0.109836 }
+    }
+    <Vertex> 5337 {
+      -35.9719848633 -68.40234375 16.6728916168
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.247226 -0.920321 -0.303132 }
+        <Binormal> { 0.311834 0.370152 -0.869472 }
+      }
+      <Normal> { -0.936796 -0.029603 -0.348582 }
+    }
+    <Vertex> 5338 {
+      -35.841381073 -71.8590393066 17.0761871338
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.077234 0.996581 -0.029352 }
+        <Binormal> { -0.435257 -0.007524 0.889844 }
+      }
+      <Normal> { -0.876034 -0.217597 -0.430342 }
+    }
+    <Vertex> 5339 {
+      -36.378490448 -72.0522155762 17.7067394257
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.007715 0.999260 -0.037692 }
+        <Binormal> { 0.054089 0.038034 0.997268 }
+      }
+      <Normal> { -0.997711 -0.038301 0.055574 }
+    }
+    <Vertex> 5340 {
+      -36.378490448 -68.4903411865 17.2894020081
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.007715 0.999260 -0.037692 }
+        <Binormal> { 0.109941 0.038310 0.993153 }
+      }
+      <Normal> { -0.993927 0.004944 0.109836 }
+    }
+    <Vertex> 5341 {
+      -36.378490448 -72.0522155762 17.7067394257
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.007715 0.999260 -0.037692 }
+        <Binormal> { 0.054089 0.038034 0.997268 }
+      }
+      <Normal> { -0.997711 -0.038301 0.055574 }
+    }
+    <Vertex> 5342 {
+      -35.9460601807 -72.5480728149 18.2341156006
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.853955 0.362984 0.372833 }
+        <Binormal> { 0.239193 -0.910009 0.338110 }
+      }
+      <Normal> { -0.477065 0.193152 0.857356 }
+    }
+    <Vertex> 5343 {
+      -35.7619590759 -68.5783462524 17.8689460754
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.406227 -0.802473 0.437055 }
+        <Binormal> { -0.700449 -0.576457 -0.407385 }
+      }
+      <Normal> { -0.536088 0.056154 0.842280 }
+    }
+    <Vertex> 5344 {
+      -36.378490448 -68.4903411865 17.2894020081
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.007715 0.999260 -0.037692 }
+        <Binormal> { 0.109941 0.038310 0.993153 }
+      }
+      <Normal> { -0.993927 0.004944 0.109836 }
+    }
+    <Vertex> 5345 {
+      -35.7619590759 -68.5783462524 17.8689460754
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.406227 -0.802473 0.437055 }
+        <Binormal> { -0.700449 -0.576457 -0.407385 }
+      }
+      <Normal> { -0.536088 0.056154 0.842280 }
+    }
+    <Vertex> 5346 {
+      -35.5778579712 -64.2361602783 17.9600639343
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.125596 -0.988133 0.088420 }
+        <Binormal> { -0.873624 -0.152259 -0.460629 }
+      }
+      <Normal> { -0.463942 -0.017457 0.885678 }
+    }
+    <Vertex> 5347 {
+      -36.378490448 -64.6117324829 17.3935375214
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.013007 -0.999844 0.011978 }
+        <Binormal> { -0.183168 -0.014158 -0.982914 }
+      }
+      <Normal> { -0.983062 -0.000458 0.183203 }
+    }
+    <Vertex> 5348 {
+      -29.2781658173 -68.4903411865 20.6281032562
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.319998 -0.947257 0.017471 }
+        <Binormal> { -0.551457 0.201211 0.809005 }
+      }
+      <Normal> { 0.760521 -0.276864 0.587268 }
+    }
+    <Vertex> 5349 {
+      -30.5558986664 -72.0522155762 20.6281032562
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.342274 0.939526 0.011860 }
+        <Binormal> { 0.533936 -0.184196 -0.817466 }
+      }
+      <Normal> { 0.804376 -0.180364 0.566027 }
+    }
+    <Vertex> 5350 {
+      -30.9145450592 -71.507484436 20.0785865784
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.279642 0.956949 -0.077773 }
+        <Binormal> { -0.515089 0.081296 -0.851763 }
+      }
+      <Normal> { 0.822901 -0.229896 -0.519578 }
+    }
+    <Vertex> 5351 {
+      -29.7482376099 -68.40234375 20.0788478851
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.060866 0.953429 -0.295413 }
+        <Binormal> { -0.541580 -0.215594 -0.807404 }
+      }
+      <Normal> { 0.827967 -0.295663 -0.476424 }
+    }
+    <Vertex> 5352 {
+      -29.2781658173 -68.4903411865 20.6281032562
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.319998 -0.947257 0.017471 }
+        <Binormal> { -0.551457 0.201211 0.809005 }
+      }
+      <Normal> { 0.760521 -0.276864 0.587268 }
+    }
+    <Vertex> 5353 {
+      -29.7482376099 -68.40234375 20.0788478851
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.060866 0.953429 -0.295413 }
+        <Binormal> { -0.541580 -0.215594 -0.807404 }
+      }
+      <Normal> { 0.827967 -0.295663 -0.476424 }
+    }
+    <Vertex> 5354 {
+      -28.5866718292 -64.8482666016 20.1032333374
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.248566 -0.966347 0.066252 }
+        <Binormal> { 0.479662 -0.063589 0.872105 }
+      }
+      <Normal> { 0.856624 -0.178259 -0.484146 }
+    }
+    <Vertex> 5355 {
+      -28.0004329681 -64.4766845703 20.6281032562
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.319998 -0.947257 0.017471 }
+        <Binormal> { -0.514907 0.189298 0.832531 }
+      }
+      <Normal> { 0.816492 -0.184698 0.546983 }
+    }
+    <Vertex> 5356 {
+      -29.2781658173 -68.4903411865 20.6281032562
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.319998 -0.947257 0.017471 }
+        <Binormal> { -0.551457 0.201211 0.809005 }
+      }
+      <Normal> { 0.760521 -0.276864 0.587268 }
+    }
+    <Vertex> 5357 {
+      -28.0004329681 -64.4766845703 20.6281032562
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.319998 -0.947257 0.017471 }
+        <Binormal> { -0.514907 0.189298 0.832531 }
+      }
+      <Normal> { 0.816492 -0.184698 0.546983 }
+    }
+    <Vertex> 5358 {
+      -28.6547641754 -64.1245651245 20.3859901428
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.385660 -0.922182 -0.029090 }
+        <Binormal> { -0.870277 0.373931 -0.316295 }
+      }
+      <Normal> { -0.322642 0.048647 0.945250 }
+    }
+    <Vertex> 5359 {
+      -29.8947029114 -68.5783462524 20.3729724884
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.293263 0.923103 -0.248752 }
+        <Binormal> { 0.877721 0.362985 0.312236 }
+      }
+      <Normal> { -0.373150 0.109867 0.921232 }
+    }
+    <Vertex> 5360 {
+      -29.2781658173 -68.4903411865 20.6281032562
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.319998 -0.947257 0.017471 }
+        <Binormal> { -0.551457 0.201211 0.809005 }
+      }
+      <Normal> { 0.760521 -0.276864 0.587268 }
+    }
+    <Vertex> 5361 {
+      -29.8947029114 -68.5783462524 20.3729724884
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.293263 0.923103 -0.248752 }
+        <Binormal> { 0.877721 0.362985 0.312236 }
+      }
+      <Normal> { -0.373150 0.109867 0.921232 }
+    }
+    <Vertex> 5362 {
+      -31.13463974 -72.5480728149 20.4251403809
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.909129 0.072040 -0.410237 }
+        <Binormal> { 0.114827 0.988789 -0.080831 }
+      }
+      <Normal> { -0.354198 0.116977 0.927793 }
+    }
+    <Vertex> 5363 {
+      -30.5558986664 -72.0522155762 20.6281032562
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.342274 0.939526 0.011860 }
+        <Binormal> { 0.533936 -0.184196 -0.817466 }
+      }
+      <Normal> { 0.804376 -0.180364 0.566027 }
+    }
+    <Vertex> 5364 {
+      -36.378490448 -75.0858459473 18.9587535858
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.313309 0.797243 -0.515985 }
+        <Binormal> { -0.710716 0.009554 0.446312 }
+      }
+      <Normal> { -0.531083 -0.073122 -0.844142 }
+    }
+    <Vertex> 5365 {
+      -36.378490448 -72.0522155762 17.7067394257
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.003828 -0.912694 0.408625 }
+        <Binormal> { -0.035072 -0.407477 -0.910459 }
+      }
+      <Normal> { -0.997711 -0.038301 0.055574 }
+    }
+    <Vertex> 5366 {
+      -35.841381073 -71.8590393066 17.0761871338
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.086056 -0.889330 0.449095 }
+        <Binormal> { 0.480437 -0.356389 -0.797809 }
+      }
+      <Normal> { -0.876034 -0.217597 -0.430342 }
+    }
+    <Vertex> 5367 {
+      -35.8697090149 -74.4381942749 18.6451129913
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.772339 -0.494843 0.398274 }
+        <Binormal> { 0.529261 0.311220 -0.639670 }
+      }
+      <Normal> { -0.549699 -0.476028 -0.686422 }
+    }
+    <Vertex> 5368 {
+      -36.378490448 -75.0858459473 18.9587535858
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.313309 0.797243 -0.515985 }
+        <Binormal> { -0.710716 0.009554 0.446312 }
+      }
+      <Normal> { -0.531083 -0.073122 -0.844142 }
+    }
+    <Vertex> 5369 {
+      -35.8697090149 -74.4381942749 18.6451129913
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.772339 -0.494843 0.398274 }
+        <Binormal> { 0.529261 0.311220 -0.639670 }
+      }
+      <Normal> { -0.549699 -0.476028 -0.686422 }
+    }
+    <Vertex> 5370 {
+      -35.2525749207 -76.1308135986 19.6838378906
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.437998 0.759498 -0.480958 }
+        <Binormal> { -0.851718 -0.185139 0.483281 }
+      }
+      <Normal> { -0.242256 -0.683309 -0.688711 }
+    }
+    <Vertex> 5371 {
+      -35.7039070129 -77.162979126 20.2107658386
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.313309 0.797243 -0.515985 }
+        <Binormal> { -0.688396 -0.524193 -0.391927 }
+      }
+      <Normal> { 0.485031 0.016724 -0.874294 }
+    }
+    <Vertex> 5372 {
+      -36.378490448 -75.0858459473 18.9587535858
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.313309 0.797243 -0.515985 }
+        <Binormal> { -0.710716 0.009554 0.446312 }
+      }
+      <Normal> { -0.531083 -0.073122 -0.844142 }
+    }
+    <Vertex> 5373 {
+      -35.7039070129 -77.162979126 20.2107658386
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.313309 0.797243 -0.515985 }
+        <Binormal> { -0.688396 -0.524193 -0.391927 }
+      }
+      <Normal> { 0.485031 0.016724 -0.874294 }
+    }
+    <Vertex> 5374 {
+      -35.3430252075 -77.3430252075 20.0990638733
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.892570 0.438128 -0.106598 }
+        <Binormal> { 0.265693 -0.421169 0.493661 }
+      }
+      <Normal> { 0.464949 0.781304 0.416333 }
+    }
+    <Vertex> 5375 {
+      -36.0074272156 -75.9290618896 19.3296279907
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.274498 -0.886982 0.371369 }
+        <Binormal> { -0.956248 -0.288104 0.018701 }
+      }
+      <Normal> { -0.103275 0.401837 0.909848 }
+    }
+    <Vertex> 5376 {
+      -36.378490448 -75.0858459473 18.9587535858
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.313309 0.797243 -0.515985 }
+        <Binormal> { -0.710716 0.009554 0.446312 }
+      }
+      <Normal> { -0.531083 -0.073122 -0.844142 }
+    }
+    <Vertex> 5377 {
+      -36.0074272156 -75.9290618896 19.3296279907
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.274498 -0.886982 0.371369 }
+        <Binormal> { -0.956248 -0.288104 0.018701 }
+      }
+      <Normal> { -0.103275 0.401837 0.909848 }
+    }
+    <Vertex> 5378 {
+      -35.9460601807 -72.5480728149 18.2341156006
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.074022 -0.918321 0.388854 }
+        <Binormal> { -0.862436 -0.248972 -0.423802 }
+      }
+      <Normal> { -0.477065 0.193152 0.857356 }
+    }
+    <Vertex> 5379 {
+      -36.378490448 -72.0522155762 17.7067394257
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.003828 -0.912694 0.408625 }
+        <Binormal> { -0.035072 -0.407477 -0.910459 }
+      }
+      <Normal> { -0.997711 -0.038301 0.055574 }
+    }
+    <Vertex> 5380 {
+      -33.6801490784 -77.8553619385 20.6281032562
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.365897 -0.803864 0.468958 }
+        <Binormal> { 0.847302 0.433792 0.082489 }
+      }
+      <Normal> { 0.161779 -0.129978 -0.978210 }
+    }
+    <Vertex> 5381 {
+      -35.7039070129 -77.162979126 20.2107658386
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.901590 -0.378076 0.210223 }
+        <Binormal> { 0.327034 0.890220 0.198457 }
+      }
+      <Normal> { 0.485031 0.016724 -0.874294 }
+    }
+    <Vertex> 5382 {
+      -35.2525749207 -76.1308135986 19.6838378906
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.998827 -0.024342 0.041867 }
+        <Binormal> { 0.045373 0.677761 -0.688405 }
+      }
+      <Normal> { -0.242256 -0.683309 -0.688711 }
+    }
+    <Vertex> 5383 {
+      -33.5034637451 -76.695022583 20.0300769806
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.628582 0.713704 -0.309048 }
+        <Binormal> { -0.678136 0.356259 -0.556548 }
+      }
+      <Normal> { 0.084964 -0.788934 -0.608539 }
+    }
+    <Vertex> 5384 {
+      -33.6801490784 -77.8553619385 20.6281032562
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.365897 -0.803864 0.468958 }
+        <Binormal> { 0.847302 0.433792 0.082489 }
+      }
+      <Normal> { 0.161779 -0.129978 -0.978210 }
+    }
+    <Vertex> 5385 {
+      -33.5034637451 -76.695022583 20.0300769806
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.628582 0.713704 -0.309048 }
+        <Binormal> { -0.678136 0.356259 -0.556548 }
+      }
+      <Normal> { 0.084964 -0.788934 -0.608539 }
+    }
+    <Vertex> 5386 {
+      -31.6522140503 -75.8817977905 19.9583129883
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.827529 -0.544501 0.136800 }
+        <Binormal> { 0.298958 -0.258142 0.780980 }
+      }
+      <Normal> { 0.790246 -0.423780 -0.442579 }
+    }
+    <Vertex> 5387 {
+      -31.6563949585 -77.162979126 20.6281032562
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.365891 -0.803866 0.468959 }
+        <Binormal> { 0.795398 0.529671 0.287350 }
+      }
+      <Normal> { 0.503037 -0.319834 -0.802881 }
+    }
+    <Vertex> 5388 {
+      -33.6801490784 -77.8553619385 20.6281032562
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.365897 -0.803864 0.468958 }
+        <Binormal> { 0.847302 0.433792 0.082489 }
+      }
+      <Normal> { 0.161779 -0.129978 -0.978210 }
+    }
+    <Vertex> 5389 {
+      -31.6563949585 -77.162979126 20.6281032562
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.365891 -0.803866 0.468959 }
+        <Binormal> { 0.795398 0.529671 0.287350 }
+      }
+      <Normal> { 0.503037 -0.319834 -0.802881 }
+    }
+    <Vertex> 5390 {
+      -32.1617736816 -77.3430252075 20.6555137634
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.945687 0.325029 -0.005693 }
+        <Binormal> { 0.301826 -0.872086 0.347751 }
+      }
+      <Normal> { -0.264626 0.276772 0.923765 }
+    }
+    <Vertex> 5391 {
+      -33.7776870728 -78.2176055908 20.5816421509
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.026780 -0.975935 0.216412 }
+        <Binormal> { -0.277301 -0.000166 -0.035066 }
+      }
+      <Normal> { -0.008545 0.997986 0.062838 }
+    }
+    <Vertex> 5392 {
+      -33.6801490784 -77.8553619385 20.6281032562
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.365897 -0.803864 0.468958 }
+        <Binormal> { 0.847302 0.433792 0.082489 }
+      }
+      <Normal> { 0.161779 -0.129978 -0.978210 }
+    }
+    <Vertex> 5393 {
+      -33.7776870728 -78.2176055908 20.5816421509
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.026780 -0.975935 0.216412 }
+        <Binormal> { -0.277301 -0.000166 -0.035066 }
+      }
+      <Normal> { -0.008545 0.997986 0.062838 }
+    }
+    <Vertex> 5394 {
+      -35.3430252075 -77.3430252075 20.0990638733
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.886252 -0.431513 0.168387 }
+        <Binormal> { -0.311215 -0.290685 0.893064 }
+      }
+      <Normal> { 0.464949 0.781304 0.416333 }
+    }
+    <Vertex> 5395 {
+      -35.7039070129 -77.162979126 20.2107658386
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.901590 -0.378076 0.210223 }
+        <Binormal> { 0.327034 0.890220 0.198457 }
+      }
+      <Normal> { 0.485031 0.016724 -0.874294 }
+    }
+    <Vertex> 5396 {
+      -30.9818115234 -75.0858459473 20.6281032562
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.144433 -0.989172 0.026019 }
+        <Binormal> { -0.497641 0.095327 0.861668 }
+      }
+      <Normal> { 0.850887 -0.138432 0.506729 }
+    }
+    <Vertex> 5397 {
+      -31.6563949585 -77.162979126 20.6281032562
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.306603 0.950832 0.043740 }
+        <Binormal> { -0.749415 0.268168 -0.576365 }
+      }
+      <Normal> { 0.503037 -0.319834 -0.802881 }
+    }
+    <Vertex> 5398 {
+      -31.6522140503 -75.8817977905 19.9583129883
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.150988 0.987417 -0.047014 }
+        <Binormal> { -0.456934 0.029672 -0.844288 }
+      }
+      <Normal> { 0.790246 -0.423780 -0.442579 }
+    }
+    <Vertex> 5399 {
+      -31.275800705 -74.0470809937 20.1753520966
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.050341 0.979671 -0.194195 }
+        <Binormal> { -0.499565 -0.192167 -0.839942 }
+      }
+      <Normal> { 0.864681 -0.142247 -0.481735 }
+    }
+    <Vertex> 5400 {
+      -30.9818115234 -75.0858459473 20.6281032562
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.144433 -0.989172 0.026019 }
+        <Binormal> { -0.497641 0.095327 0.861668 }
+      }
+      <Normal> { 0.850887 -0.138432 0.506729 }
+    }
+    <Vertex> 5401 {
+      -31.275800705 -74.0470809937 20.1753520966
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.050341 0.979671 -0.194195 }
+        <Binormal> { -0.499565 -0.192167 -0.839942 }
+      }
+      <Normal> { 0.864681 -0.142247 -0.481735 }
+    }
+    <Vertex> 5402 {
+      -30.9145450592 -71.507484436 20.0785865784
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.074128 -0.993822 0.082596 }
+        <Binormal> { 0.535356 0.029453 0.834859 }
+      }
+      <Normal> { 0.822901 -0.229896 -0.519578 }
+    }
+    <Vertex> 5403 {
+      -30.5558986664 -72.0522155762 20.6281032562
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.144433 -0.989173 0.026019 }
+        <Binormal> { -0.555205 0.102682 0.821718 }
+      }
+      <Normal> { 0.804376 -0.180364 0.566027 }
+    }
+    <Vertex> 5404 {
+      -30.9818115234 -75.0858459473 20.6281032562
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.144433 -0.989172 0.026019 }
+        <Binormal> { -0.497641 0.095327 0.861668 }
+      }
+      <Normal> { 0.850887 -0.138432 0.506729 }
+    }
+    <Vertex> 5405 {
+      -30.5558986664 -72.0522155762 20.6281032562
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.144433 -0.989173 0.026019 }
+        <Binormal> { -0.555205 0.102682 0.821718 }
+      }
+      <Normal> { 0.804376 -0.180364 0.566027 }
+    }
+    <Vertex> 5406 {
+      -31.13463974 -72.5480728149 20.4251403809
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.212873 -0.976613 -0.030202 }
+        <Binormal> { -0.902562 0.208199 -0.370816 }
+      }
+      <Normal> { -0.354198 0.116977 0.927793 }
+    }
+    <Vertex> 5407 {
+      -31.547952652 -75.9290618896 20.5816421509
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.863914 -0.481241 -0.148524 }
+        <Binormal> { -0.448417 0.869221 -0.208120 }
+      }
+      <Normal> { -0.225318 0.115390 0.967406 }
+    }
+    <Vertex> 5408 {
+      -30.9818115234 -75.0858459473 20.6281032562
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.144433 -0.989172 0.026019 }
+        <Binormal> { -0.497641 0.095327 0.861668 }
+      }
+      <Normal> { 0.850887 -0.138432 0.506729 }
+    }
+    <Vertex> 5409 {
+      -31.547952652 -75.9290618896 20.5816421509
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.863914 -0.481241 -0.148524 }
+        <Binormal> { -0.448417 0.869221 -0.208120 }
+      }
+      <Normal> { -0.225318 0.115390 0.967406 }
+    }
+    <Vertex> 5410 {
+      -32.1617736816 -77.3430252075 20.6555137634
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.981336 -0.169564 -0.090703 }
+        <Binormal> { -0.131533 0.930526 -0.316478 }
+      }
+      <Normal> { -0.264626 0.276772 0.923765 }
+    }
+    <Vertex> 5411 {
+      -31.6563949585 -77.162979126 20.6281032562
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.306603 0.950832 0.043740 }
+        <Binormal> { -0.749415 0.268168 -0.576365 }
+      }
+      <Normal> { 0.503037 -0.319834 -0.802881 }
+    }
+    <Vertex> 5412 {
+      -31.8464584351 -59.2335319519 19.3832988739
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.909855 -0.321448 0.262367 }
+        <Binormal> { -0.300826 -0.946473 -0.116379 }
+      }
+      <Normal> { -0.295358 -0.023560 0.955077 }
+    }
+    <Vertex> 5413 {
+      -28.2414512634 -59.2914199829 20.4250411987
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.936917 -0.222254 -0.269794 }
+        <Binormal> { -0.213500 0.974938 -0.061721 }
+      }
+      <Normal> { -0.283364 -0.001343 0.958983 }
+    }
+    <Vertex> 5414 {
+      -29.3093624115 -56.9753570557 20.1683120728
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.800499 0.561621 -0.209243 }
+        <Binormal> { 0.569074 0.820340 0.024739 }
+      }
+      <Normal> { -0.226051 0.127689 0.965697 }
+    }
+    <Vertex> 5415 {
+      -31.8789730072 -55.9559631348 19.4854335785
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.385805 0.918983 -0.081393 }
+        <Binormal> { 0.875995 0.385278 0.197810 }
+      }
+      <Normal> { -0.294992 0.189947 0.936399 }
+    }
+    <Vertex> 5416 {
+      -31.8464584351 -59.2335319519 19.3832988739
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.909855 -0.321448 0.262367 }
+        <Binormal> { -0.300826 -0.946473 -0.116379 }
+      }
+      <Normal> { -0.295358 -0.023560 0.955077 }
+    }
+    <Vertex> 5417 {
+      -31.8789730072 -55.9559631348 19.4854335785
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.385805 0.918983 -0.081393 }
+        <Binormal> { 0.875995 0.385278 0.197810 }
+      }
+      <Normal> { -0.294992 0.189947 0.936399 }
+    }
+    <Vertex> 5418 {
+      -34.4991531372 -57.4138221741 18.6374549866
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.939399 -0.195443 0.281657 }
+        <Binormal> { -0.212041 -0.964304 0.038078 }
+      }
+      <Normal> { -0.408643 0.125553 0.903989 }
+    }
+    <Vertex> 5419 {
+      -35.5164909363 -59.7377891541 18.2334213257
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.909855 -0.321447 0.262367 }
+        <Binormal> { -0.287142 -0.938586 -0.154169 }
+      }
+      <Normal> { -0.398755 -0.028565 0.916593 }
+    }
+    <Vertex> 5420 {
+      -31.8464584351 -59.2335319519 19.3832988739
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.909855 -0.321448 0.262367 }
+        <Binormal> { -0.300826 -0.946473 -0.116379 }
+      }
+      <Normal> { -0.295358 -0.023560 0.955077 }
+    }
+    <Vertex> 5421 {
+      -35.5164909363 -59.7377891541 18.2334213257
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.909855 -0.321447 0.262367 }
+        <Binormal> { -0.287142 -0.938586 -0.154169 }
+      }
+      <Normal> { -0.398755 -0.028565 0.916593 }
+    }
+    <Vertex> 5422 {
+      -35.5778579712 -64.2361602783 17.9600639343
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.811248 0.487327 0.323094 }
+        <Binormal> { 0.437255 -0.868401 0.211930 }
+      }
+      <Normal> { -0.463942 -0.017457 0.885678 }
+    }
+    <Vertex> 5423 {
+      -32.0919265747 -64.0590820313 19.2270965576
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.222770 -0.970507 -0.092136 }
+        <Binormal> { -0.913341 0.240715 -0.327250 }
+      }
+      <Normal> { -0.333720 0.015137 0.942534 }
+    }
+    <Vertex> 5424 {
+      -31.8464584351 -59.2335319519 19.3832988739
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.909855 -0.321448 0.262367 }
+        <Binormal> { -0.300826 -0.946473 -0.116379 }
+      }
+      <Normal> { -0.295358 -0.023560 0.955077 }
+    }
+    <Vertex> 5425 {
+      -32.0919265747 -64.0590820313 19.2270965576
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.222770 -0.970507 -0.092136 }
+        <Binormal> { -0.913341 0.240715 -0.327250 }
+      }
+      <Normal> { -0.333720 0.015137 0.942534 }
+    }
+    <Vertex> 5426 {
+      -28.6547641754 -64.1245651245 20.3859901428
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.906836 0.289835 -0.306013 }
+        <Binormal> { 0.288853 0.955919 0.049398 }
+      }
+      <Normal> { -0.322642 0.048647 0.945250 }
+    }
+    <Vertex> 5427 {
+      -28.2414512634 -59.2914199829 20.4250411987
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.936917 -0.222254 -0.269794 }
+        <Binormal> { -0.213500 0.974938 -0.061721 }
+      }
+      <Normal> { -0.283364 -0.001343 0.958983 }
+    }
+    <Vertex> 5428 {
+      -32.8283309937 -68.607673645 19.1750278473
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.748696 -0.555232 0.362177 }
+        <Binormal> { -0.541309 -0.827392 -0.149426 }
+      }
+      <Normal> { -0.379864 0.082125 0.921354 }
+    }
+    <Vertex> 5429 {
+      -29.8947029114 -68.5783462524 20.3729724884
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.895640 -0.298840 -0.329430 }
+        <Binormal> { -0.239107 0.948019 -0.209913 }
+      }
+      <Normal> { -0.373150 0.109867 0.921232 }
+    }
+    <Vertex> 5430 {
+      -28.6547641754 -64.1245651245 20.3859901428
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.739333 0.601601 -0.302427 }
+        <Binormal> { 0.583376 0.796430 0.158136 }
+      }
+      <Normal> { -0.322642 0.048647 0.945250 }
+    }
+    <Vertex> 5431 {
+      -32.0919265747 -64.0590820313 19.2270965576
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.213300 0.969722 -0.118926 }
+        <Binormal> { 0.915795 0.240730 0.320387 }
+      }
+      <Normal> { -0.333720 0.015137 0.942534 }
+    }
+    <Vertex> 5432 {
+      -32.8283309937 -68.607673645 19.1750278473
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.748696 -0.555232 0.362177 }
+        <Binormal> { -0.541309 -0.827392 -0.149426 }
+      }
+      <Normal> { -0.379864 0.082125 0.921354 }
+    }
+    <Vertex> 5433 {
+      -32.0919265747 -64.0590820313 19.2270965576
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.213300 0.969722 -0.118926 }
+        <Binormal> { 0.915795 0.240730 0.320387 }
+      }
+      <Normal> { -0.333720 0.015137 0.942534 }
+    }
+    <Vertex> 5434 {
+      -35.5778579712 -64.2361602783 17.9600639343
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.746098 -0.577752 0.330969 }
+        <Binormal> { -0.505925 -0.814353 -0.281068 }
+      }
+      <Normal> { -0.463942 -0.017457 0.885678 }
+    }
+    <Vertex> 5435 {
+      -35.7619590759 -68.5783462524 17.8689460754
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.748696 -0.555231 0.362177 }
+        <Binormal> { -0.487998 -0.824771 -0.255611 }
+      }
+      <Normal> { -0.536088 0.056154 0.842280 }
+    }
+    <Vertex> 5436 {
+      -32.8283309937 -68.607673645 19.1750278473
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.748696 -0.555232 0.362177 }
+        <Binormal> { -0.541309 -0.827392 -0.149426 }
+      }
+      <Normal> { -0.379864 0.082125 0.921354 }
+    }
+    <Vertex> 5437 {
+      -35.7619590759 -68.5783462524 17.8689460754
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.748696 -0.555231 0.362177 }
+        <Binormal> { -0.487998 -0.824771 -0.255611 }
+      }
+      <Normal> { -0.536088 0.056154 0.842280 }
+    }
+    <Vertex> 5438 {
+      -35.9460601807 -72.5480728149 18.2341156006
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.853955 0.362984 0.372833 }
+        <Binormal> { 0.239193 -0.910009 0.338110 }
+      }
+      <Normal> { -0.477065 0.193152 0.857356 }
+    }
+    <Vertex> 5439 {
+      -33.5647315979 -72.7133560181 19.3836975098
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.309780 -0.950688 -0.015099 }
+        <Binormal> { -0.869006 0.289493 -0.398516 }
+      }
+      <Normal> { -0.368908 0.154302 0.916532 }
+    }
+    <Vertex> 5440 {
+      -32.8283309937 -68.607673645 19.1750278473
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.748696 -0.555232 0.362177 }
+        <Binormal> { -0.541309 -0.827392 -0.149426 }
+      }
+      <Normal> { -0.379864 0.082125 0.921354 }
+    }
+    <Vertex> 5441 {
+      -33.5647315979 -72.7133560181 19.3836975098
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.309780 -0.950688 -0.015099 }
+        <Binormal> { -0.869006 0.289493 -0.398516 }
+      }
+      <Normal> { -0.368908 0.154302 0.916532 }
+    }
+    <Vertex> 5442 {
+      -31.13463974 -72.5480728149 20.4251403809
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.909129 0.072040 -0.410237 }
+        <Binormal> { 0.114827 0.988789 -0.080831 }
+      }
+      <Normal> { -0.354198 0.116977 0.927793 }
+    }
+    <Vertex> 5443 {
+      -29.8947029114 -68.5783462524 20.3729724884
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.895640 -0.298840 -0.329430 }
+        <Binormal> { -0.239107 0.948019 -0.209913 }
+      }
+      <Normal> { -0.373150 0.109867 0.921232 }
+    }
+    <Vertex> 5444 {
+      -33.8101997375 -76.210144043 20.0097026825
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.781926 -0.492810 0.381745 }
+        <Binormal> { -0.548780 -0.834067 0.047332 }
+      }
+      <Normal> { -0.271920 0.231910 0.933927 }
+    }
+    <Vertex> 5445 {
+      -31.547952652 -75.9290618896 20.5816421509
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.917757 -0.338002 -0.208510 }
+        <Binormal> { -0.302925 0.934825 -0.182058 }
+      }
+      <Normal> { -0.225318 0.115390 0.967406 }
+    }
+    <Vertex> 5446 {
+      -31.13463974 -72.5480728149 20.4251403809
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.761573 0.522417 -0.383519 }
+        <Binormal> { 0.529558 0.842424 0.095952 }
+      }
+      <Normal> { -0.354198 0.116977 0.927793 }
+    }
+    <Vertex> 5447 {
+      -33.5647315979 -72.7133560181 19.3836975098
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.251233 0.917611 -0.308013 }
+        <Binormal> { 0.888547 0.343892 0.299748 }
+      }
+      <Normal> { -0.368908 0.154302 0.916532 }
+    }
+    <Vertex> 5448 {
+      -33.8101997375 -76.210144043 20.0097026825
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.781926 -0.492810 0.381745 }
+        <Binormal> { -0.548780 -0.834067 0.047332 }
+      }
+      <Normal> { -0.271920 0.231910 0.933927 }
+    }
+    <Vertex> 5449 {
+      -33.5647315979 -72.7133560181 19.3836975098
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.251233 0.917611 -0.308013 }
+        <Binormal> { 0.888547 0.343892 0.299748 }
+      }
+      <Normal> { -0.368908 0.154302 0.916532 }
+    }
+    <Vertex> 5450 {
+      -35.9460601807 -72.5480728149 18.2341156006
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.682106 -0.620723 0.386566 }
+        <Binormal> { -0.606847 -0.769225 -0.164376 }
+      }
+      <Normal> { -0.477065 0.193152 0.857356 }
+    }
+    <Vertex> 5451 {
+      -36.0074272156 -75.9290618896 19.3296279907
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.781926 -0.492810 0.381745 }
+        <Binormal> { -0.601782 -0.750859 0.263312 }
+      }
+      <Normal> { -0.103275 0.401837 0.909848 }
+    }
+    <Vertex> 5452 {
+      -33.8101997375 -76.210144043 20.0097026825
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.781926 -0.492810 0.381745 }
+        <Binormal> { -0.548780 -0.834067 0.047332 }
+      }
+      <Normal> { -0.271920 0.231910 0.933927 }
+    }
+    <Vertex> 5453 {
+      -36.0074272156 -75.9290618896 19.3296279907
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.781926 -0.492810 0.381745 }
+        <Binormal> { -0.601782 -0.750859 0.263312 }
+      }
+      <Normal> { -0.103275 0.401837 0.909848 }
+    }
+    <Vertex> 5454 {
+      -35.3430252075 -77.3430252075 20.0990638733
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.892570 0.438128 -0.106598 }
+        <Binormal> { 0.265693 -0.421169 0.493661 }
+      }
+      <Normal> { 0.464949 0.781304 0.416333 }
+    }
+    <Vertex> 5455 {
+      -33.7776870728 -78.2176055908 20.5816421509
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.026780 -0.975935 0.216412 }
+        <Binormal> { -0.277301 -0.000166 -0.035066 }
+      }
+      <Normal> { -0.008545 0.997986 0.062838 }
+    }
+    <Vertex> 5456 {
+      -33.8101997375 -76.210144043 20.0097026825
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.781926 -0.492810 0.381745 }
+        <Binormal> { -0.548780 -0.834067 0.047332 }
+      }
+      <Normal> { -0.271920 0.231910 0.933927 }
+    }
+    <Vertex> 5457 {
+      -33.7776870728 -78.2176055908 20.5816421509
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.026780 -0.975935 0.216412 }
+        <Binormal> { -0.277301 -0.000166 -0.035066 }
+      }
+      <Normal> { -0.008545 0.997986 0.062838 }
+    }
+    <Vertex> 5458 {
+      -32.1617736816 -77.3430252075 20.6555137634
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.981336 -0.169564 -0.090703 }
+        <Binormal> { -0.131533 0.930526 -0.316478 }
+      }
+      <Normal> { -0.264626 0.276772 0.923765 }
+    }
+    <Vertex> 5459 {
+      -31.547952652 -75.9290618896 20.5816421509
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.917757 -0.338002 -0.208510 }
+        <Binormal> { -0.302925 0.934825 -0.182058 }
+      }
+      <Normal> { -0.225318 0.115390 0.967406 }
+    }
+    <Vertex> 5460 {
+      -31.5939483643 -73.1793441772 14.6008872986
+      <UV>  {
+        0.833333 0.333333
+        <Tangent> { -0.493288 -0.141798 0.858231 }
+        <Binormal> { 0.081248 0.974705 0.207741 }
+      }
+      <Normal> { 0.860317 -0.173833 0.479141 }
+    }
+    <Vertex> 5461 {
+      -30.7828865051 -73.7660140991 13.7712898254
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { -0.766782 -0.168410 0.619422 }
+        <Binormal> { -0.081417 0.965000 0.161581 }
+      }
+      <Normal> { 0.479507 -0.105411 0.871151 }
+    }
+    <Vertex> 5462 {
+      -30.257068634 -71.3422012329 14.0072135925
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.641737 -0.593145 0.486161 }
+        <Binormal> { -0.349658 0.764551 0.471245 }
+      }
+      <Normal> { 0.480148 -0.290536 0.827631 }
+    }
+    <Vertex> 5463 {
+      -31.176076889 -71.1955413818 15.1830177307
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.455629 -0.166636 0.874434 }
+        <Binormal> { 0.250397 0.917399 0.305295 }
+      }
+      <Normal> { 0.830500 -0.366314 0.419599 }
+    }
+    <Vertex> 5464 {
+      -31.5939483643 -73.1793441772 14.6008872986
+      <UV>  {
+        0.833333 0.333333
+        <Tangent> { -0.493288 -0.141798 0.858231 }
+        <Binormal> { 0.081248 0.974705 0.207741 }
+      }
+      <Normal> { 0.860317 -0.173833 0.479141 }
+    }
+    <Vertex> 5465 {
+      -31.176076889 -71.1955413818 15.1830177307
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.455629 -0.166636 0.874434 }
+        <Binormal> { 0.250397 0.917399 0.305295 }
+      }
+      <Normal> { 0.830500 -0.366314 0.419599 }
+    }
+    <Vertex> 5466 {
+      -31.8001270294 -71.906539917 16.9686164856
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.008525 -0.000000 0.999964 }
+        <Binormal> { 0.179320 0.983595 0.001529 }
+      }
+      <Normal> { 0.983398 -0.179327 0.027314 }
+    }
+    <Vertex> 5467 {
+      -31.6732501984 -73.9615631104 15.1819810867
+      <UV>  {
+        0.750000 0.250000
+        <Tangent> { -0.068578 -0.065740 0.995477 }
+        <Binormal> { 0.041321 0.982880 0.067755 }
+      }
+      <Normal> { 0.971496 -0.056703 0.230079 }
+    }
+    <Vertex> 5468 {
+      -31.5939483643 -73.1793441772 14.6008872986
+      <UV>  {
+        0.833333 0.333333
+        <Tangent> { -0.493288 -0.141798 0.858231 }
+        <Binormal> { 0.081248 0.974705 0.207741 }
+      }
+      <Normal> { 0.860317 -0.173833 0.479141 }
+    }
+    <Vertex> 5469 {
+      -31.6732501984 -73.9615631104 15.1819810867
+      <UV>  {
+        0.750000 0.250000
+        <Tangent> { -0.068578 -0.065740 0.995477 }
+        <Binormal> { 0.041321 0.982880 0.067755 }
+      }
+      <Normal> { 0.971496 -0.056703 0.230079 }
+    }
+    <Vertex> 5470 {
+      -31.3029937744 -76.1607513428 13.8057003021
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.369674 -0.034799 0.928510 }
+        <Binormal> { 0.209123 0.747398 0.111271 }
+      }
+      <Normal> { 0.468398 -0.256905 0.845302 }
+    }
+    <Vertex> 5471 {
+      -30.7828865051 -73.7660140991 13.7712898254
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { -0.766782 -0.168410 0.619422 }
+        <Binormal> { -0.081417 0.965000 0.161581 }
+      }
+      <Normal> { 0.479507 -0.105411 0.871151 }
+    }
+    <Vertex> 5472 {
+      -31.5939483643 -73.1793441772 19.2496433258
+      <UV>  {
+        0.166667 0.333333
+        <Tangent> { 0.264473 0.035885 0.963725 }
+        <Binormal> { 0.114500 0.990951 -0.068321 }
+      }
+      <Normal> { 0.954039 -0.128880 -0.270425 }
+    }
+    <Vertex> 5473 {
+      -31.6732501984 -73.9615631104 18.6685466766
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { 0.016704 0.110188 0.993770 }
+        <Binormal> { 0.041727 0.988166 -0.110268 }
+      }
+      <Normal> { 0.992523 -0.054109 -0.109317 }
+    }
+    <Vertex> 5474 {
+      -31.8001270294 -71.906539917 16.9686164856
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.008525 -0.000000 0.999964 }
+        <Binormal> { 0.179320 0.983595 0.001529 }
+      }
+      <Normal> { 0.983398 -0.179327 0.027314 }
+    }
+    <Vertex> 5475 {
+      -31.2966251373 -71.1955413818 18.8625907898
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { 0.271807 0.122479 0.954526 }
+        <Binormal> { 0.231328 0.954457 -0.188343 }
+      }
+      <Normal> { 0.934507 -0.271828 -0.229743 }
+    }
+    <Vertex> 5476 {
+      -31.5939483643 -73.1793441772 19.2496433258
+      <UV>  {
+        0.166667 0.333333
+        <Tangent> { 0.264473 0.035885 0.963725 }
+        <Binormal> { 0.114500 0.990951 -0.068321 }
+      }
+      <Normal> { 0.954039 -0.128880 -0.270425 }
+    }
+    <Vertex> 5477 {
+      -31.2966251373 -71.1955413818 18.8625907898
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { 0.271807 0.122479 0.954526 }
+        <Binormal> { 0.231328 0.954457 -0.188343 }
+      }
+      <Normal> { 0.934507 -0.271828 -0.229743 }
+    }
+    <Vertex> 5478 {
+      -30.9145450592 -71.507484436 20.0785865784
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.074128 -0.993822 0.082596 }
+        <Binormal> { 0.535356 0.029453 0.834859 }
+      }
+      <Normal> { 0.822901 -0.229896 -0.519578 }
+    }
+    <Vertex> 5479 {
+      -31.275800705 -74.0470809937 20.1753520966
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { 0.418997 -0.131738 0.898380 }
+        <Binormal> { 0.191254 0.978657 0.054310 }
+      }
+      <Normal> { 0.864681 -0.142247 -0.481735 }
+    }
+    <Vertex> 5480 {
+      -31.5939483643 -73.1793441772 19.2496433258
+      <UV>  {
+        0.166667 0.333333
+        <Tangent> { 0.264473 0.035885 0.963725 }
+        <Binormal> { 0.114500 0.990951 -0.068321 }
+      }
+      <Normal> { 0.954039 -0.128880 -0.270425 }
+    }
+    <Vertex> 5481 {
+      -31.275800705 -74.0470809937 20.1753520966
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { 0.418997 -0.131738 0.898380 }
+        <Binormal> { 0.191254 0.978657 0.054310 }
+      }
+      <Normal> { 0.864681 -0.142247 -0.481735 }
+    }
+    <Vertex> 5482 {
+      -31.6522140503 -75.8817977905 19.9583129883
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.139500 0.012867 0.990138 }
+        <Binormal> { 0.413906 0.844193 -0.069285 }
+      }
+      <Normal> { 0.790246 -0.423780 -0.442579 }
+    }
+    <Vertex> 5483 {
+      -31.6732501984 -73.9615631104 18.6685466766
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { 0.016704 0.110188 0.993770 }
+        <Binormal> { 0.041727 0.988166 -0.110268 }
+      }
+      <Normal> { 0.992523 -0.054109 -0.109317 }
+    }
+    <Vertex> 5484 {
+      -29.5922393799 -68.373008728 15.7672195435
+      <UV>  {
+        0.750000 0.250000
+        <Tangent> { -0.478367 -0.044721 0.877021 }
+        <Binormal> { 0.360366 0.900688 0.242488 }
+      }
+      <Normal> { 0.797784 -0.432325 0.420209 }
+    }
+    <Vertex> 5485 {
+      -28.5970687866 -68.373008728 14.5085248947
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { -0.620206 0.000000 0.784439 }
+        <Binormal> { 0.275979 0.903541 0.218199 }
+      }
+      <Normal> { 0.557146 -0.351817 0.752159 }
+    }
+    <Vertex> 5486 {
+      -27.1226387024 -64.9619445801 14.8186845779
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.639256 -0.642426 0.422658 }
+        <Binormal> { -0.437744 0.755872 0.486826 }
+      }
+      <Normal> { 0.632344 -0.126072 0.764336 }
+    }
+    <Vertex> 5487 {
+      -28.1479415894 -64.9721298218 16.0598373413
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.519045 -0.003234 0.854741 }
+        <Binormal> { 0.147904 0.984059 0.093538 }
+      }
+      <Normal> { 0.857295 -0.174871 0.484146 }
+    }
+    <Vertex> 5488 {
+      -29.5922393799 -68.373008728 15.7672195435
+      <UV>  {
+        0.750000 0.250000
+        <Tangent> { -0.478367 -0.044721 0.877021 }
+        <Binormal> { 0.360366 0.900688 0.242488 }
+      }
+      <Normal> { 0.797784 -0.432325 0.420209 }
+    }
+    <Vertex> 5489 {
+      -28.1479415894 -64.9721298218 16.0598373413
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.519045 -0.003234 0.854741 }
+        <Binormal> { 0.147904 0.984059 0.093538 }
+      }
+      <Normal> { 0.857295 -0.174871 0.484146 }
+    }
+    <Vertex> 5490 {
+      -28.7572536469 -64.9721298218 17.5104999542
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.197046 -0.000000 0.980394 }
+        <Binormal> { 0.192895 0.980403 0.038770 }
+      }
+      <Normal> { 0.962218 -0.196753 0.188025 }
+    }
+    <Vertex> 5491 {
+      -30.0810031891 -68.373008728 17.3154220581
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.153870 -0.000000 0.988091 }
+        <Binormal> { 0.404319 0.912284 0.062963 }
+      }
+      <Normal> { 0.903989 -0.409192 0.123875 }
+    }
+    <Vertex> 5492 {
+      -29.5922393799 -68.373008728 15.7672195435
+      <UV>  {
+        0.750000 0.250000
+        <Tangent> { -0.478367 -0.044721 0.877021 }
+        <Binormal> { 0.360366 0.900688 0.242488 }
+      }
+      <Normal> { 0.797784 -0.432325 0.420209 }
+    }
+    <Vertex> 5493 {
+      -30.0810031891 -68.373008728 17.3154220581
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.153870 -0.000000 0.988091 }
+        <Binormal> { 0.404319 0.912284 0.062963 }
+      }
+      <Normal> { 0.903989 -0.409192 0.123875 }
+    }
+    <Vertex> 5494 {
+      -31.8001270294 -71.906539917 16.9686164856
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.088602 -0.000000 0.996067 }
+        <Binormal> { 0.178621 0.981950 0.015889 }
+      }
+      <Normal> { 0.983398 -0.179327 0.027314 }
+    }
+    <Vertex> 5495 {
+      -31.176076889 -71.1955413818 15.1830177307
+      <UV>  {
+        0.750000 0.000000
+        <Tangent> { -0.455629 -0.166636 0.874434 }
+        <Binormal> { 0.250397 0.917399 0.305295 }
+      }
+      <Normal> { 0.830500 -0.366314 0.419599 }
+    }
+    <Vertex> 5496 {
+      -29.5922393799 -68.373008728 15.7672195435
+      <UV>  {
+        0.750000 0.250000
+        <Tangent> { -0.478367 -0.044721 0.877021 }
+        <Binormal> { 0.360366 0.900688 0.242488 }
+      }
+      <Normal> { 0.797784 -0.432325 0.420209 }
+    }
+    <Vertex> 5497 {
+      -31.176076889 -71.1955413818 15.1830177307
+      <UV>  {
+        0.750000 0.000000
+        <Tangent> { -0.455629 -0.166636 0.874434 }
+        <Binormal> { 0.250397 0.917399 0.305295 }
+      }
+      <Normal> { 0.830500 -0.366314 0.419599 }
+    }
+    <Vertex> 5498 {
+      -30.257068634 -71.3422012329 14.0072135925
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.617401 0.047304 0.785225 }
+        <Binormal> { 0.267286 0.888004 0.156664 }
+      }
+      <Normal> { 0.480148 -0.290536 0.827631 }
+    }
+    <Vertex> 5499 {
+      -28.5970687866 -68.373008728 14.5085248947
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { -0.620206 0.000000 0.784439 }
+        <Binormal> { 0.275979 0.903541 0.218199 }
+      }
+      <Normal> { 0.557146 -0.351817 0.752159 }
+    }
+    <Vertex> 5500 {
+      -30.074426651 -68.373008728 18.8636245728
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { 0.151421 0.040830 0.987626 }
+        <Binormal> { 0.351603 0.931475 -0.092415 }
+      }
+      <Normal> { 0.921903 -0.361736 -0.138554 }
+    }
+    <Vertex> 5501 {
+      -30.0810031891 -68.373008728 17.3154220581
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.153870 -0.000000 0.988091 }
+        <Binormal> { 0.404319 0.912284 0.062963 }
+      }
+      <Normal> { 0.903989 -0.409192 0.123875 }
+    }
+    <Vertex> 5502 {
+      -28.7572536469 -64.9721298218 17.5104999542
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.197046 -0.000000 0.980394 }
+        <Binormal> { 0.192895 0.980403 0.038770 }
+      }
+      <Normal> { 0.962218 -0.196753 0.188025 }
+    }
+    <Vertex> 5503 {
+      -28.871219635 -64.9721298218 18.9611644745
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { 0.065576 0.047615 0.996711 }
+        <Binormal> { 0.194299 0.977716 -0.059491 }
+      }
+      <Normal> { 0.973907 -0.200049 -0.106937 }
+    }
+    <Vertex> 5504 {
+      -30.074426651 -68.373008728 18.8636245728
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { 0.151421 0.040830 0.987626 }
+        <Binormal> { 0.351603 0.931475 -0.092415 }
+      }
+      <Normal> { 0.921903 -0.361736 -0.138554 }
+    }
+    <Vertex> 5505 {
+      -28.871219635 -64.9721298218 18.9611644745
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { 0.065576 0.047615 0.996711 }
+        <Binormal> { 0.194299 0.977716 -0.059491 }
+      }
+      <Normal> { 0.973907 -0.200049 -0.106937 }
+    }
+    <Vertex> 5506 {
+      -28.5866718292 -64.8482666016 20.1032333374
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.248566 -0.966347 0.066252 }
+        <Binormal> { 0.479662 -0.063589 0.872105 }
+      }
+      <Normal> { 0.856624 -0.178259 -0.484146 }
+    }
+    <Vertex> 5507 {
+      -29.7482376099 -68.40234375 20.0788478851
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { 0.259172 -0.023308 0.965550 }
+        <Binormal> { 0.296582 0.922919 -0.057329 }
+      }
+      <Normal> { 0.827967 -0.295663 -0.476424 }
+    }
+    <Vertex> 5508 {
+      -30.074426651 -68.373008728 18.8636245728
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { 0.151421 0.040830 0.987626 }
+        <Binormal> { 0.351603 0.931475 -0.092415 }
+      }
+      <Normal> { 0.921903 -0.361736 -0.138554 }
+    }
+    <Vertex> 5509 {
+      -29.7482376099 -68.40234375 20.0788478851
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { 0.259172 -0.023308 0.965550 }
+        <Binormal> { 0.296582 0.922919 -0.057329 }
+      }
+      <Normal> { 0.827967 -0.295663 -0.476424 }
+    }
+    <Vertex> 5510 {
+      -30.9145450592 -71.507484436 20.0785865784
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.277190 -0.133563 0.951487 }
+        <Binormal> { 0.288139 0.927001 0.046185 }
+      }
+      <Normal> { 0.822901 -0.229896 -0.519578 }
+    }
+    <Vertex> 5511 {
+      -31.2966251373 -71.1955413818 18.8625907898
+      <UV>  {
+        0.250000 0.000000
+        <Tangent> { 0.271807 0.122480 0.954526 }
+        <Binormal> { 0.231328 0.954457 -0.188343 }
+      }
+      <Normal> { 0.934507 -0.271828 -0.229743 }
+    }
+    <Vertex> 5512 {
+      -30.074426651 -68.373008728 18.8636245728
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { 0.151421 0.040830 0.987626 }
+        <Binormal> { 0.351603 0.931475 -0.092415 }
+      }
+      <Normal> { 0.921903 -0.361736 -0.138554 }
+    }
+    <Vertex> 5513 {
+      -31.2966251373 -71.1955413818 18.8625907898
+      <UV>  {
+        0.250000 0.000000
+        <Tangent> { 0.271807 0.122480 0.954526 }
+        <Binormal> { 0.231328 0.954457 -0.188343 }
+      }
+      <Normal> { 0.934507 -0.271828 -0.229743 }
+    }
+    <Vertex> 5514 {
+      -31.8001270294 -71.906539917 16.9686164856
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.088602 -0.000000 0.996067 }
+        <Binormal> { 0.178621 0.981950 0.015889 }
+      }
+      <Normal> { 0.983398 -0.179327 0.027314 }
+    }
+    <Vertex> 5515 {
+      -30.0810031891 -68.373008728 17.3154220581
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.153870 -0.000000 0.988091 }
+        <Binormal> { 0.404319 0.912284 0.062963 }
+      }
+      <Normal> { 0.903989 -0.409192 0.123875 }
+    }
+    <Vertex> 5516 {
+      -28.1486968994 -61.253238678 15.7672176361
+      <UV>  {
+        0.750000 0.250000
+        <Tangent> { -0.470459 -0.062929 0.880175 }
+        <Binormal> { -0.224895 0.972984 -0.050643 }
+      }
+      <Normal> { 0.847774 0.221046 0.482070 }
+    }
+    <Vertex> 5517 {
+      -27.1535263062 -61.21251297 14.4811506271
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { -0.611791 -0.025037 0.790623 }
+        <Binormal> { -0.161127 0.943814 -0.094794 }
+      }
+      <Normal> { 0.577136 0.178564 0.796869 }
+    }
+    <Vertex> 5518 {
+      -28.5103988647 -57.3936233521 13.7695398331
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.149438 -0.829646 0.537919 }
+        <Binormal> { -0.930401 0.271956 0.160973 }
+      }
+      <Normal> { 0.252113 0.322489 0.912351 }
+    }
+    <Vertex> 5519 {
+      -29.2715320587 -58.4211006165 15.1830158234
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.430811 -0.208421 0.878045 }
+        <Binormal> { -0.724715 0.658954 -0.199164 }
+      }
+      <Normal> { 0.524644 0.716117 0.460280 }
+    }
+    <Vertex> 5520 {
+      -28.1486968994 -61.253238678 15.7672176361
+      <UV>  {
+        0.750000 0.250000
+        <Tangent> { -0.470459 -0.062929 0.880175 }
+        <Binormal> { -0.224895 0.972984 -0.050643 }
+      }
+      <Normal> { 0.847774 0.221046 0.482070 }
+    }
+    <Vertex> 5521 {
+      -29.2715320587 -58.4211006165 15.1830158234
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.430811 -0.208421 0.878045 }
+        <Binormal> { -0.724715 0.658954 -0.199164 }
+      }
+      <Normal> { 0.524644 0.716117 0.460280 }
+    }
+    <Vertex> 5522 {
+      -30.0074195862 -58.1178627014 16.8206501007
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.091395 -0.000000 0.995815 }
+        <Binormal> { -0.850091 0.520621 -0.078021 }
+      }
+      <Normal> { 0.519700 0.853664 0.033876 }
+    }
+    <Vertex> 5523 {
+      -28.6374607086 -61.253238678 17.3154220581
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.153870 -0.000000 0.988091 }
+        <Binormal> { -0.178036 0.983508 -0.027724 }
+      }
+      <Normal> { 0.973937 0.180181 0.137577 }
+    }
+    <Vertex> 5524 {
+      -28.1486968994 -61.253238678 15.7672176361
+      <UV>  {
+        0.750000 0.250000
+        <Tangent> { -0.470459 -0.062929 0.880175 }
+        <Binormal> { -0.224895 0.972984 -0.050643 }
+      }
+      <Normal> { 0.847774 0.221046 0.482070 }
+    }
+    <Vertex> 5525 {
+      -28.6374607086 -61.253238678 17.3154220581
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.153870 -0.000000 0.988091 }
+        <Binormal> { -0.178036 0.983508 -0.027724 }
+      }
+      <Normal> { 0.973937 0.180181 0.137577 }
+    }
+    <Vertex> 5526 {
+      -28.7572536469 -64.9721298218 17.5104999542
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.197046 -0.000000 0.980394 }
+        <Binormal> { 0.192895 0.980403 0.038769 }
+      }
+      <Normal> { 0.962218 -0.196753 0.188025 }
+    }
+    <Vertex> 5527 {
+      -28.1479415894 -64.9721298218 16.0598373413
+      <UV>  {
+        0.750000 0.000000
+        <Tangent> { -0.519045 -0.003234 0.854741 }
+        <Binormal> { 0.147904 0.984059 0.093539 }
+      }
+      <Normal> { 0.857295 -0.174871 0.484146 }
+    }
+    <Vertex> 5528 {
+      -28.1486968994 -61.253238678 15.7672176361
+      <UV>  {
+        0.750000 0.250000
+        <Tangent> { -0.470459 -0.062929 0.880175 }
+        <Binormal> { -0.224895 0.972984 -0.050643 }
+      }
+      <Normal> { 0.847774 0.221046 0.482070 }
+    }
+    <Vertex> 5529 {
+      -28.1479415894 -64.9721298218 16.0598373413
+      <UV>  {
+        0.750000 0.000000
+        <Tangent> { -0.519045 -0.003234 0.854741 }
+        <Binormal> { 0.147904 0.984059 0.093539 }
+      }
+      <Normal> { 0.857295 -0.174871 0.484146 }
+    }
+    <Vertex> 5530 {
+      -27.1226387024 -64.9619445801 14.8186845779
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.624372 -0.015733 0.780968 }
+        <Binormal> { 0.086433 0.971071 0.088664 }
+      }
+      <Normal> { 0.632344 -0.126072 0.764336 }
+    }
+    <Vertex> 5531 {
+      -27.1535263062 -61.21251297 14.4811506271
+      <UV>  {
+        1.000000 0.250000
+        <Tangent> { -0.611791 -0.025037 0.790623 }
+        <Binormal> { -0.161127 0.943814 -0.094794 }
+      }
+      <Normal> { 0.577136 0.178564 0.796869 }
+    }
+    <Vertex> 5532 {
+      -28.6308841705 -61.253238678 18.8636283875
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { 0.160005 0.070314 0.984609 }
+        <Binormal> { -0.122195 0.991142 -0.050923 }
+      }
+      <Normal> { 0.978332 0.111667 -0.174169 }
+    }
+    <Vertex> 5533 {
+      -28.6374607086 -61.253238678 17.3154220581
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.153870 -0.000000 0.988091 }
+        <Binormal> { -0.178036 0.983508 -0.027724 }
+      }
+      <Normal> { 0.973937 0.180181 0.137577 }
+    }
+    <Vertex> 5534 {
+      -30.0074195862 -58.1178627014 16.8206501007
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.091395 -0.000000 0.995815 }
+        <Binormal> { -0.850091 0.520621 -0.078021 }
+      }
+      <Normal> { 0.519700 0.853664 0.033876 }
+    }
+    <Vertex> 5535 {
+      -29.3920764923 -58.4211006165 18.6537895203
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { 0.270805 0.027656 0.962237 }
+        <Binormal> { -0.667182 0.725572 0.166913 }
+      }
+      <Normal> { 0.687551 0.686575 -0.236274 }
+    }
+    <Vertex> 5536 {
+      -28.6308841705 -61.253238678 18.8636283875
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { 0.160005 0.070314 0.984609 }
+        <Binormal> { -0.122195 0.991142 -0.050923 }
+      }
+      <Normal> { 0.978332 0.111667 -0.174169 }
+    }
+    <Vertex> 5537 {
+      -29.3920764923 -58.4211006165 18.6537895203
+      <UV>  {
+        0.250000 0.500000
+        <Tangent> { 0.270805 0.027656 0.962237 }
+        <Binormal> { -0.667182 0.725572 0.166913 }
+      }
+      <Normal> { 0.687551 0.686575 -0.236274 }
+    }
+    <Vertex> 5538 {
+      -29.1713294983 -58.0324745178 19.7914867401
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.441953 -0.877031 0.188397 }
+        <Binormal> { 0.499041 0.408054 0.728903 }
+      }
+      <Normal> { 0.614307 0.430219 -0.661428 }
+    }
+    <Vertex> 5539 {
+      -28.2396678925 -60.9618644714 20.0788478851
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { 0.298760 0.222513 0.928025 }
+        <Binormal> { -0.174231 0.935002 -0.168096 }
+      }
+      <Normal> { 0.827723 0.053835 -0.558489 }
+    }
+    <Vertex> 5540 {
+      -28.6308841705 -61.253238678 18.8636283875
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { 0.160005 0.070314 0.984609 }
+        <Binormal> { -0.122195 0.991142 -0.050923 }
+      }
+      <Normal> { 0.978332 0.111667 -0.174169 }
+    }
+    <Vertex> 5541 {
+      -28.2396678925 -60.9618644714 20.0788478851
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { 0.298760 0.222513 0.928025 }
+        <Binormal> { -0.174231 0.935002 -0.168096 }
+      }
+      <Normal> { 0.827723 0.053835 -0.558489 }
+    }
+    <Vertex> 5542 {
+      -28.5866718292 -64.8482666016 20.1032333374
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.271703 0.166953 0.947789 }
+        <Binormal> { 0.088122 0.943443 -0.191450 }
+      }
+      <Normal> { 0.856624 -0.178259 -0.484146 }
+    }
+    <Vertex> 5543 {
+      -28.871219635 -64.9721298218 18.9611644745
+      <UV>  {
+        0.250000 0.000000
+        <Tangent> { 0.065576 0.047616 0.996711 }
+        <Binormal> { 0.194299 0.977716 -0.059492 }
+      }
+      <Normal> { 0.973907 -0.200049 -0.106937 }
+    }
+    <Vertex> 5544 {
+      -28.6308841705 -61.253238678 18.8636283875
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { 0.160005 0.070314 0.984609 }
+        <Binormal> { -0.122195 0.991142 -0.050923 }
+      }
+      <Normal> { 0.978332 0.111667 -0.174169 }
+    }
+    <Vertex> 5545 {
+      -28.871219635 -64.9721298218 18.9611644745
+      <UV>  {
+        0.250000 0.000000
+        <Tangent> { 0.065576 0.047616 0.996711 }
+        <Binormal> { 0.194299 0.977716 -0.059492 }
+      }
+      <Normal> { 0.973907 -0.200049 -0.106937 }
+    }
+    <Vertex> 5546 {
+      -28.7572536469 -64.9721298218 17.5104999542
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.197046 -0.000000 0.980394 }
+        <Binormal> { 0.192895 0.980403 0.038769 }
+      }
+      <Normal> { 0.962218 -0.196753 0.188025 }
+    }
+    <Vertex> 5547 {
+      -28.6374607086 -61.253238678 17.3154220581
+      <UV>  {
+        0.500000 0.250000
+        <Tangent> { -0.153870 -0.000000 0.988091 }
+        <Binormal> { -0.178036 0.983508 -0.027724 }
+      }
+      <Normal> { 0.973937 0.180181 0.137577 }
+    }
+    <Vertex> 5548 {
+      -33.6800918579 -57.9856262207 16.090057373
+      <UV>  {
+        0.333333 0.666667
+        <Tangent> { 0.763744 0.451499 0.461349 }
+        <Binormal> { -0.414876 -0.166234 0.849494 }
+      }
+      <Normal> { -0.246193 0.966735 0.068941 }
+    }
+    <Vertex> 5549 {
+      -32.5193405151 -57.8330535889 17.3339939117
+      <UV>  {
+        0.416667 0.666667
+        <Tangent> { 0.520560 0.087847 0.849294 }
+        <Binormal> { -0.851313 -0.017719 0.523631 }
+      }
+      <Normal> { -0.074923 0.993255 -0.088198 }
+    }
+    <Vertex> 5550 {
+      -30.0074195862 -58.1178627014 16.8206501007
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.000000 0.000000 -0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.519700 0.853664 0.033876 }
+    }
+    <Vertex> 5551 {
+      -32.5193405151 -57.8330535889 15.2637271881
+      <UV>  {
+        0.083333 0.583333
+        <Tangent> { 0.700973 0.481919 0.525730 }
+        <Binormal> { -0.410577 -0.195962 0.727068 }
+      }
+      <Normal> { -0.092990 0.973296 0.209815 }
+    }
+    <Vertex> 5552 {
+      -33.6800918579 -57.9856262207 16.090057373
+      <UV>  {
+        0.333333 0.666667
+        <Tangent> { 0.763744 0.451499 0.461349 }
+        <Binormal> { -0.414876 -0.166234 0.849494 }
+      }
+      <Normal> { -0.246193 0.966735 0.068941 }
+    }
+    <Vertex> 5553 {
+      -32.5193405151 -57.8330535889 15.2637271881
+      <UV>  {
+        0.083333 0.583333
+        <Tangent> { 0.700973 0.481919 0.525730 }
+        <Binormal> { -0.410577 -0.195962 0.727068 }
+      }
+      <Normal> { -0.092990 0.973296 0.209815 }
+    }
+    <Vertex> 5554 {
+      -35.836479187 -58.1712722778 13.4386987686
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.000000 0.000000 -0.000000 }
+        <Binormal> { 0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { -0.520829 0.608783 0.598376 }
+    }
+    <Vertex> 5555 {
+      -35.2973861694 -59.0695304871 15.7247886658
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.763744 0.451500 0.461349 }
+        <Binormal> { -0.243834 -0.432137 0.826568 }
+      }
+      <Normal> { -0.775414 0.623859 0.097415 }
+    }
+    <Vertex> 5556 {
+      -33.6800918579 -57.9856262207 16.090057373
+      <UV>  {
+        0.333333 0.666667
+        <Tangent> { 0.763744 0.451499 0.461349 }
+        <Binormal> { -0.414876 -0.166234 0.849494 }
+      }
+      <Normal> { -0.246193 0.966735 0.068941 }
+    }
+    <Vertex> 5557 {
+      -35.2973861694 -59.0695304871 15.7247886658
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { 0.763744 0.451500 0.461349 }
+        <Binormal> { -0.243834 -0.432137 0.826568 }
+      }
+      <Normal> { -0.775414 0.623859 0.097415 }
+    }
+    <Vertex> 5558 {
+      -34.9179916382 -58.4592971802 17.6732330322
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.728619 0.537896 0.424008 }
+        <Binormal> { -0.571761 0.150064 0.792148 }
+      }
+      <Normal> { -0.473006 0.737999 -0.481216 }
+    }
+    <Vertex> 5559 {
+      -32.5193405151 -57.8330535889 17.3339939117
+      <UV>  {
+        0.416667 0.666667
+        <Tangent> { 0.520560 0.087847 0.849294 }
+        <Binormal> { -0.851313 -0.017719 0.523631 }
+      }
+      <Normal> { -0.074923 0.993255 -0.088198 }
+    }
+    <Vertex> 5560 {
+      -31.1934776306 -57.6804847717 18.414434433
+      <UV>  {
+        0.333333 0.500000
+        <Tangent> { -0.574025 0.277212 0.770486 }
+        <Binormal> { -0.802838 -0.007808 -0.595318 }
+      }
+      <Normal> { 0.141270 0.968871 -0.203223 }
+    }
+    <Vertex> 5561 {
+      -31.8457717896 -57.3494720459 19.0269432068
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.683706 0.346953 0.642005 }
+        <Binormal> { -0.695986 -0.324143 -0.566019 }
+      }
+      <Normal> { 0.193518 0.729667 -0.655812 }
+    }
+    <Vertex> 5562 {
+      -29.1713294983 -58.0324745178 19.7914867401
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.720368 0.447231 0.530146 }
+        <Binormal> { -0.523890 -0.150799 -0.584653 }
+      }
+      <Normal> { 0.614307 0.430219 -0.661428 }
+    }
+    <Vertex> 5563 {
+      -29.3920764923 -58.4211006165 18.6537895203
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.684870 0.387800 0.616899 }
+        <Binormal> { -0.515175 0.262333 -0.736847 }
+      }
+      <Normal> { 0.687551 0.686575 -0.236274 }
+    }
+    <Vertex> 5564 {
+      -31.1934776306 -57.6804847717 18.414434433
+      <UV>  {
+        0.333333 0.500000
+        <Tangent> { -0.574025 0.277212 0.770486 }
+        <Binormal> { -0.802838 -0.007808 -0.595318 }
+      }
+      <Normal> { 0.141270 0.968871 -0.203223 }
+    }
+    <Vertex> 5565 {
+      -29.3920764923 -58.4211006165 18.6537895203
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { -0.684870 0.387800 0.616899 }
+        <Binormal> { -0.515175 0.262333 -0.736847 }
+      }
+      <Normal> { 0.687551 0.686575 -0.236274 }
+    }
+    <Vertex> 5566 {
+      -30.0074195862 -58.1178627014 16.8206501007
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.000000 0.000000 -0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.519700 0.853664 0.033876 }
+    }
+    <Vertex> 5567 {
+      -32.5193405151 -57.8330535889 17.3339939117
+      <UV>  {
+        0.416667 0.666667
+        <Tangent> { 0.520560 0.087847 0.849294 }
+        <Binormal> { -0.851313 -0.017719 0.523631 }
+      }
+      <Normal> { -0.074923 0.993255 -0.088198 }
+    }
+    <Vertex> 5568 {
+      -31.1934776306 -57.6804847717 18.414434433
+      <UV>  {
+        0.333333 0.500000
+        <Tangent> { -0.574025 0.277212 0.770486 }
+        <Binormal> { -0.802838 -0.007808 -0.595318 }
+      }
+      <Normal> { 0.141270 0.968871 -0.203223 }
+    }
+    <Vertex> 5569 {
+      -32.5193405151 -57.8330535889 17.3339939117
+      <UV>  {
+        0.416667 0.666667
+        <Tangent> { 0.520560 0.087847 0.849294 }
+        <Binormal> { -0.851313 -0.017719 0.523631 }
+      }
+      <Normal> { -0.074923 0.993255 -0.088198 }
+    }
+    <Vertex> 5570 {
+      -34.9179916382 -58.4592971802 17.6732330322
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.728619 0.537896 0.424008 }
+        <Binormal> { -0.571761 0.150064 0.792148 }
+      }
+      <Normal> { -0.473006 0.737999 -0.481216 }
+    }
+    <Vertex> 5571 {
+      -31.8457717896 -57.3494720459 19.0269432068
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.683706 0.346953 0.642005 }
+        <Binormal> { -0.695986 -0.324143 -0.566019 }
+      }
+      <Normal> { 0.193518 0.729667 -0.655812 }
+    }
+    <Vertex> 5572 {
+      -31.1934776306 -57.6804847717 14.6008872986
+      <UV>  {
+        0.000000 0.666667
+        <Tangent> { -0.000000 0.000000 -0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.029725 0.906308 0.421552 }
+    }
+    <Vertex> 5573 {
+      -32.5193405151 -57.8330535889 15.2637271881
+      <UV>  {
+        0.083333 0.583333
+        <Tangent> { 0.700973 0.481919 0.525730 }
+        <Binormal> { -0.410577 -0.195962 0.727068 }
+      }
+      <Normal> { -0.092990 0.973296 0.209815 }
+    }
+    <Vertex> 5574 {
+      -30.0074195862 -58.1178627014 16.8206501007
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.000000 0.000000 -0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.519700 0.853664 0.033876 }
+    }
+    <Vertex> 5575 {
+      -29.2715320587 -58.4211006165 15.1830158234
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.000000 0.000000 -0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.524644 0.716117 0.460280 }
+    }
+    <Vertex> 5576 {
+      -31.1934776306 -57.6804847717 14.6008872986
+      <UV>  {
+        0.000000 0.666667
+        <Tangent> { -0.000000 0.000000 -0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.029725 0.906308 0.421552 }
+    }
+    <Vertex> 5577 {
+      -29.2715320587 -58.4211006165 15.1830158234
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.000000 0.000000 -0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.524644 0.716117 0.460280 }
+    }
+    <Vertex> 5578 {
+      -28.5103988647 -57.3936233521 13.7695398331
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.000000 0.000000 -0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.252113 0.322489 0.912351 }
+    }
+    <Vertex> 5579 {
+      -31.8782863617 -56.8203735352 13.7292461395
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.000000 0.000000 -0.000000 }
+        <Binormal> { 0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { -0.039705 0.491775 0.869778 }
+    }
+    <Vertex> 5580 {
+      -31.1934776306 -57.6804847717 14.6008872986
+      <UV>  {
+        0.000000 0.666667
+        <Tangent> { -0.000000 0.000000 -0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.029725 0.906308 0.421552 }
+    }
+    <Vertex> 5581 {
+      -31.8782863617 -56.8203735352 13.7292461395
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.000000 0.000000 -0.000000 }
+        <Binormal> { 0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { -0.039705 0.491775 0.869778 }
+    }
+    <Vertex> 5582 {
+      -35.836479187 -58.1712722778 13.4386987686
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.000000 0.000000 -0.000000 }
+        <Binormal> { 0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { -0.520829 0.608783 0.598376 }
+    }
+    <Vertex> 5583 {
+      -32.5193405151 -57.8330535889 15.2637271881
+      <UV>  {
+        0.083333 0.583333
+        <Tangent> { 0.700973 0.481919 0.525730 }
+        <Binormal> { -0.410577 -0.195962 0.727068 }
+      }
+      <Normal> { -0.092990 0.973296 0.209815 }
+    }
+    <Vertex> 5584 {
+      -33.2335014343 -76.3082427979 15.1819810867
+      <UV>  {
+        0.125000 0.687500
+        <Tangent> { 0.650687 -0.599862 -0.465589 }
+        <Binormal> { -0.596082 -0.158351 -0.629040 }
+      }
+      <Normal> { 0.004273 -0.970672 0.240303 }
+    }
+    <Vertex> 5585 {
+      -33.4709510803 -77.003036499 13.8745203018
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.170495 0.299332 -0.938793 }
+        <Binormal> { -0.299899 0.151927 0.102907 }
+      }
+      <Normal> { -0.013825 -0.579302 0.814966 }
+    }
+    <Vertex> 5586 {
+      -31.3029937744 -76.1607513428 13.8057003021
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.150384 -0.736657 -0.659334 }
+        <Binormal> { -0.792083 -0.181711 0.383683 }
+      }
+      <Normal> { 0.468398 -0.256905 0.845302 }
+    }
+    <Vertex> 5587 {
+      -31.8257064819 -75.9171295166 15.327255249
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.776710 -0.288381 -0.559962 }
+        <Binormal> { -0.393214 -0.299344 0.699580 }
+      }
+      <Normal> { 0.770196 -0.614734 0.169866 }
+    }
+    <Vertex> 5588 {
+      -33.2335014343 -76.3082427979 15.1819810867
+      <UV>  {
+        0.125000 0.687500
+        <Tangent> { 0.650687 -0.599862 -0.465589 }
+        <Binormal> { -0.596082 -0.158351 -0.629040 }
+      }
+      <Normal> { 0.004273 -0.970672 0.240303 }
+    }
+    <Vertex> 5589 {
+      -31.8257064819 -75.9171295166 15.327255249
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.776710 -0.288381 -0.559962 }
+        <Binormal> { -0.393214 -0.299344 0.699580 }
+      }
+      <Normal> { 0.770196 -0.614734 0.169866 }
+    }
+    <Vertex> 5590 {
+      -31.8010749817 -75.8193588257 16.9252643585
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.234109 -0.085022 0.968486 }
+        <Binormal> { 0.626691 0.738357 0.216307 }
+      }
+      <Normal> { 0.762383 -0.647084 0.000000 }
+    }
+    <Vertex> 5591 {
+      -33.0752067566 -76.3082427979 16.9252643585
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.368983 -0.017680 0.929268 }
+        <Binormal> { 0.929215 0.000798 -0.368947 }
+      }
+      <Normal> { 0.001404 -0.999969 0.001373 }
+    }
+    <Vertex> 5592 {
+      -33.2335014343 -76.3082427979 15.1819810867
+      <UV>  {
+        0.125000 0.687500
+        <Tangent> { 0.650687 -0.599862 -0.465589 }
+        <Binormal> { -0.596082 -0.158351 -0.629040 }
+      }
+      <Normal> { 0.004273 -0.970672 0.240303 }
+    }
+    <Vertex> 5593 {
+      -33.0752067566 -76.3082427979 16.9252643585
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.368983 -0.017680 0.929268 }
+        <Binormal> { 0.929215 0.000798 -0.368947 }
+      }
+      <Normal> { 0.001404 -0.999969 0.001373 }
+    }
+    <Vertex> 5594 {
+      -34.6582717896 -75.6824569702 16.7026863098
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.730651 -0.261341 0.630753 }
+        <Binormal> { 0.407000 -0.483705 -0.671876 }
+      }
+      <Normal> { -0.762627 -0.646779 0.003662 }
+    }
+    <Vertex> 5595 {
+      -34.7766265869 -75.9171295166 15.0367078781
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.930449 -0.321861 -0.175128 }
+        <Binormal> { -0.223860 -0.209533 -0.804266 }
+      }
+      <Normal> { -0.695761 -0.623707 0.356151 }
+    }
+    <Vertex> 5596 {
+      -33.2335014343 -76.3082427979 15.1819810867
+      <UV>  {
+        0.125000 0.687500
+        <Tangent> { 0.650687 -0.599862 -0.465589 }
+        <Binormal> { -0.596082 -0.158351 -0.629040 }
+      }
+      <Normal> { 0.004273 -0.970672 0.240303 }
+    }
+    <Vertex> 5597 {
+      -34.7766265869 -75.9171295166 15.0367078781
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { 0.930449 -0.321861 -0.175128 }
+        <Binormal> { -0.223860 -0.209533 -0.804266 }
+      }
+      <Normal> { -0.695761 -0.623707 0.356151 }
+    }
+    <Vertex> 5598 {
+      -35.836479187 -76.4163665771 13.4386987686
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.634492 -0.527695 -0.564764 }
+        <Binormal> { -0.632893 -0.199496 -0.524631 }
+      }
+      <Normal> { -0.502518 -0.408918 0.761711 }
+    }
+    <Vertex> 5599 {
+      -33.4709510803 -77.003036499 13.8745203018
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.170495 0.299332 -0.938793 }
+        <Binormal> { -0.299899 0.151927 0.102907 }
+      }
+      <Normal> { -0.013825 -0.579302 0.814966 }
+    }
+    <Vertex> 5600 {
+      -33.233505249 -76.3082427979 18.6685466766
+      <UV>  {
+        0.375000 0.562500
+        <Tangent> { 0.006150 -0.160276 0.987053 }
+        <Binormal> { 0.998956 0.032667 -0.000920 }
+      }
+      <Normal> { 0.032289 -0.991028 -0.129521 }
+    }
+    <Vertex> 5601 {
+      -33.0752067566 -76.3082427979 16.9252643585
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.368983 -0.017680 0.929268 }
+        <Binormal> { 0.929215 0.000798 -0.368947 }
+      }
+      <Normal> { 0.001404 -0.999969 0.001373 }
+    }
+    <Vertex> 5602 {
+      -31.8010749817 -75.8193588257 16.9252643585
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.234109 -0.085022 0.968486 }
+        <Binormal> { 0.626691 0.738357 0.216307 }
+      }
+      <Normal> { 0.762383 -0.647084 0.000000 }
+    }
+    <Vertex> 5603 {
+      -31.8257064819 -75.9171295166 18.523273468
+      <UV>  {
+        0.750000 0.875000
+        <Tangent> { -0.294503 -0.113094 0.948935 }
+        <Binormal> { 0.598965 0.724097 0.272187 }
+      }
+      <Normal> { 0.778832 -0.625141 -0.050813 }
+    }
+    <Vertex> 5604 {
+      -33.233505249 -76.3082427979 18.6685466766
+      <UV>  {
+        0.375000 0.562500
+        <Tangent> { 0.006150 -0.160276 0.987053 }
+        <Binormal> { 0.998956 0.032667 -0.000920 }
+      }
+      <Normal> { 0.032289 -0.991028 -0.129521 }
+    }
+    <Vertex> 5605 {
+      -31.8257064819 -75.9171295166 18.523273468
+      <UV>  {
+        0.750000 0.875000
+        <Tangent> { -0.294503 -0.113094 0.948935 }
+        <Binormal> { 0.598965 0.724097 0.272187 }
+      }
+      <Normal> { 0.778832 -0.625141 -0.050813 }
+    }
+    <Vertex> 5606 {
+      -31.6522140503 -75.8817977905 19.9583129883
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.180804 -0.120414 0.976120 }
+        <Binormal> { 0.466953 0.691355 0.171778 }
+      }
+      <Normal> { 0.790246 -0.423780 -0.442579 }
+    }
+    <Vertex> 5607 {
+      -33.5034637451 -76.695022583 20.0300769806
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.031457 -0.259866 0.965132 }
+        <Binormal> { 0.919564 0.062858 0.046896 }
+      }
+      <Normal> { 0.084964 -0.788934 -0.608539 }
+    }
+    <Vertex> 5608 {
+      -33.233505249 -76.3082427979 18.6685466766
+      <UV>  {
+        0.375000 0.562500
+        <Tangent> { 0.006150 -0.160276 0.987053 }
+        <Binormal> { 0.998956 0.032667 -0.000920 }
+      }
+      <Normal> { 0.032289 -0.991028 -0.129521 }
+    }
+    <Vertex> 5609 {
+      -33.5034637451 -76.695022583 20.0300769806
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.031457 -0.259866 0.965132 }
+        <Binormal> { 0.919564 0.062858 0.046896 }
+      }
+      <Normal> { 0.084964 -0.788934 -0.608539 }
+    }
+    <Vertex> 5610 {
+      -35.2525749207 -76.1308135986 19.6838378906
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.178836 -0.332659 0.925935 }
+        <Binormal> { 0.861806 -0.101147 -0.202789 }
+      }
+      <Normal> { -0.242256 -0.683309 -0.688711 }
+    }
+    <Vertex> 5611 {
+      -34.7766265869 -75.9171295166 18.5355968475
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { 0.486170 -0.278560 0.828277 }
+        <Binormal> { 0.706784 -0.359126 -0.535636 }
+      }
+      <Normal> { -0.588031 -0.764824 -0.263131 }
+    }
+    <Vertex> 5612 {
+      -33.233505249 -76.3082427979 18.6685466766
+      <UV>  {
+        0.375000 0.562500
+        <Tangent> { 0.006150 -0.160276 0.987053 }
+        <Binormal> { 0.998956 0.032667 -0.000920 }
+      }
+      <Normal> { 0.032289 -0.991028 -0.129521 }
+    }
+    <Vertex> 5613 {
+      -34.7766265869 -75.9171295166 18.5355968475
+      <UV>  {
+        0.000000 0.250000
+        <Tangent> { 0.486170 -0.278560 0.828277 }
+        <Binormal> { 0.706784 -0.359126 -0.535636 }
+      }
+      <Normal> { -0.588031 -0.764824 -0.263131 }
+    }
+    <Vertex> 5614 {
+      -34.6582717896 -75.6824569702 16.7026863098
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.730651 -0.261341 0.630753 }
+        <Binormal> { 0.407000 -0.483705 -0.671876 }
+      }
+      <Normal> { -0.762627 -0.646779 0.003662 }
+    }
+    <Vertex> 5615 {
+      -33.0752067566 -76.3082427979 16.9252643585
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { 0.368983 -0.017680 0.929268 }
+        <Binormal> { 0.929215 0.000798 -0.368947 }
+      }
+      <Normal> { 0.001404 -0.999969 0.001373 }
+    }
+    <Vertex> 5616 {
+      -35.4273681641 -73.1793365479 15.8123617172
+      <UV>  {
+        0.166667 0.583333
+        <Tangent> { 0.173093 -0.881607 0.439100 }
+        <Binormal> { 0.109485 -0.425778 -0.898018 }
+      }
+      <Normal> { -0.976012 -0.216987 -0.016114 }
+    }
+    <Vertex> 5617 {
+      -35.3250923157 -73.9615631104 15.1943025589
+      <UV>  {
+        0.208333 0.770833
+        <Tangent> { -0.000662 -0.932901 -0.360132 }
+        <Binormal> { -0.198686 0.350146 -0.906669 }
+      }
+      <Normal> { -0.972015 -0.188360 0.140263 }
+    }
+    <Vertex> 5618 {
+      -34.6582717896 -75.6824569702 16.7026863098
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.294084 -0.313911 0.902759 }
+        <Binormal> { 0.582736 -0.687392 -0.049190 }
+      }
+      <Normal> { -0.762627 -0.646779 0.003662 }
+    }
+    <Vertex> 5619 {
+      -35.3250923157 -73.9615631104 16.9868736267
+      <UV>  {
+        0.291667 0.479167
+        <Tangent> { -0.041238 -0.498101 0.866138 }
+        <Binormal> { 0.343252 -0.820504 -0.455515 }
+      }
+      <Normal> { -0.939116 -0.297281 -0.172185 }
+    }
+    <Vertex> 5620 {
+      -35.4273681641 -73.1793365479 15.8123617172
+      <UV>  {
+        0.166667 0.583333
+        <Tangent> { 0.173093 -0.881607 0.439100 }
+        <Binormal> { 0.109485 -0.425778 -0.898018 }
+      }
+      <Normal> { -0.976012 -0.216987 -0.016114 }
+    }
+    <Vertex> 5621 {
+      -35.3250923157 -73.9615631104 16.9868736267
+      <UV>  {
+        0.291667 0.479167
+        <Tangent> { -0.041238 -0.498101 0.866138 }
+        <Binormal> { 0.343252 -0.820504 -0.455515 }
+      }
+      <Normal> { -0.939116 -0.297281 -0.172185 }
+    }
+    <Vertex> 5622 {
+      -35.841381073 -71.8590393066 17.0761871338
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.110083 -0.634004 0.765455 }
+        <Binormal> { 0.439399 -0.717937 -0.531455 }
+      }
+      <Normal> { -0.876034 -0.217597 -0.430342 }
+    }
+    <Vertex> 5623 {
+      -35.7342033386 -71.1955337524 15.3950242996
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.141274 -0.932584 0.332159 }
+        <Binormal> { 0.060060 -0.326375 -0.941890 }
+      }
+      <Normal> { -0.994140 -0.104556 -0.027161 }
+    }
+    <Vertex> 5624 {
+      -35.4273681641 -73.1793365479 15.8123617172
+      <UV>  {
+        0.166667 0.583333
+        <Tangent> { 0.173093 -0.881607 0.439100 }
+        <Binormal> { 0.109485 -0.425778 -0.898018 }
+      }
+      <Normal> { -0.976012 -0.216987 -0.016114 }
+    }
+    <Vertex> 5625 {
+      -35.7342033386 -71.1955337524 15.3950242996
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.141274 -0.932584 0.332159 }
+        <Binormal> { 0.060060 -0.326375 -0.941890 }
+      }
+      <Normal> { -0.994140 -0.104556 -0.027161 }
+    }
+    <Vertex> 5626 {
+      -35.836479187 -71.3910903931 13.4386987686
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.016145 -0.936680 -0.349815 }
+        <Binormal> { -0.136776 0.348452 -0.926717 }
+      }
+      <Normal> { -0.990448 -0.062899 0.122532 }
+    }
+    <Vertex> 5627 {
+      -35.3250923157 -73.9615631104 15.1943025589
+      <UV>  {
+        0.208333 0.770833
+        <Tangent> { -0.000662 -0.932901 -0.360132 }
+        <Binormal> { -0.198686 0.350146 -0.906669 }
+      }
+      <Normal> { -0.972015 -0.188360 0.140263 }
+    }
+    <Vertex> 5628 {
+      -35.4273681641 -74.7437896729 14.6008872986
+      <UV>  {
+        0.166667 0.750000
+        <Tangent> { -0.350058 0.163466 -0.922355 }
+        <Binormal> { -0.072702 0.976888 0.200723 }
+      }
+      <Normal> { -0.936766 -0.135960 0.322398 }
+    }
+    <Vertex> 5629 {
+      -35.836479187 -73.9615631104 13.4386987686
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.280323 0.535981 -0.796331 }
+        <Binormal> { 0.149686 0.841827 0.513911 }
+      }
+      <Normal> { -0.926389 -0.062014 0.371410 }
+    }
+    <Vertex> 5630 {
+      -35.836479187 -76.4163665771 13.4386987686
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.863481 -0.504381 -0.000001 }
+        <Binormal> { -0.384193 -0.657723 -0.606553 }
+      }
+      <Normal> { -0.502518 -0.408918 0.761711 }
+    }
+    <Vertex> 5631 {
+      -34.7766265869 -75.9171295166 15.0367078781
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.487685 0.317186 -0.813361 }
+        <Binormal> { -0.394333 0.739594 0.524858 }
+      }
+      <Normal> { -0.695761 -0.623707 0.356151 }
+    }
+    <Vertex> 5632 {
+      -35.4273681641 -74.7437896729 14.6008872986
+      <UV>  {
+        0.166667 0.750000
+        <Tangent> { -0.350058 0.163466 -0.922355 }
+        <Binormal> { -0.072702 0.976888 0.200723 }
+      }
+      <Normal> { -0.936766 -0.135960 0.322398 }
+    }
+    <Vertex> 5633 {
+      -34.7766265869 -75.9171295166 15.0367078781
+      <UV>  {
+        0.250000 0.625000
+        <Tangent> { -0.487685 0.317186 -0.813361 }
+        <Binormal> { -0.394333 0.739594 0.524858 }
+      }
+      <Normal> { -0.695761 -0.623707 0.356151 }
+    }
+    <Vertex> 5634 {
+      -34.6582717896 -75.6824569702 16.7026863098
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.294084 -0.313911 0.902759 }
+        <Binormal> { 0.582736 -0.687392 -0.049190 }
+      }
+      <Normal> { -0.762627 -0.646779 0.003662 }
+    }
+    <Vertex> 5635 {
+      -35.3250923157 -73.9615631104 15.1943025589
+      <UV>  {
+        0.208333 0.770833
+        <Tangent> { -0.000662 -0.932901 -0.360132 }
+        <Binormal> { -0.198686 0.350146 -0.906669 }
+      }
+      <Normal> { -0.972015 -0.188360 0.140263 }
+    }
+    <Vertex> 5636 {
+      -35.4273681641 -74.7437896729 14.6008872986
+      <UV>  {
+        0.166667 0.750000
+        <Tangent> { -0.350058 0.163466 -0.922355 }
+        <Binormal> { -0.072702 0.976888 0.200723 }
+      }
+      <Normal> { -0.936766 -0.135960 0.322398 }
+    }
+    <Vertex> 5637 {
+      -35.3250923157 -73.9615631104 15.1943025589
+      <UV>  {
+        0.208333 0.770833
+        <Tangent> { -0.000662 -0.932901 -0.360132 }
+        <Binormal> { -0.198686 0.350146 -0.906669 }
+      }
+      <Normal> { -0.972015 -0.188360 0.140263 }
+    }
+    <Vertex> 5638 {
+      -35.836479187 -71.3910903931 13.4386987686
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.016145 -0.936680 -0.349815 }
+        <Binormal> { -0.136776 0.348452 -0.926717 }
+      }
+      <Normal> { -0.990448 -0.062899 0.122532 }
+    }
+    <Vertex> 5639 {
+      -35.836479187 -73.9615631104 13.4386987686
+      <UV>  {
+        0.000000 0.750000
+        <Tangent> { -0.280323 0.535981 -0.796331 }
+        <Binormal> { 0.149686 0.841827 0.513911 }
+      }
+      <Normal> { -0.926389 -0.062014 0.371410 }
+    }
+    <Vertex> 5640 {
+      -35.4273681641 -74.7437896729 18.1367416382
+      <UV>  {
+        0.500000 0.583333
+        <Tangent> { -0.375373 -0.008444 0.926835 }
+        <Binormal> { 0.379083 -0.913566 0.145207 }
+      }
+      <Normal> { -0.854122 -0.406049 -0.324839 }
+    }
+    <Vertex> 5641 {
+      -35.3250923157 -73.9615631104 16.9868736267
+      <UV>  {
+        0.291667 0.479167
+        <Tangent> { -0.041238 -0.498101 0.866138 }
+        <Binormal> { 0.343252 -0.820504 -0.455515 }
+      }
+      <Normal> { -0.939116 -0.297281 -0.172185 }
+    }
+    <Vertex> 5642 {
+      -34.6582717896 -75.6824569702 16.7026863098
+      <UV>  {
+        0.500000 0.750000
+        <Tangent> { -0.294084 -0.313911 0.902759 }
+        <Binormal> { 0.582736 -0.687392 -0.049190 }
+      }
+      <Normal> { -0.762627 -0.646779 0.003662 }
+    }
+    <Vertex> 5643 {
+      -34.7766265869 -75.9171295166 18.5355968475
+      <UV>  {
+        0.750000 0.875000
+        <Tangent> { -0.392772 0.190018 0.899791 }
+        <Binormal> { 0.638182 -0.632455 0.412138 }
+      }
+      <Normal> { -0.588031 -0.764824 -0.263131 }
+    }
+    <Vertex> 5644 {
+      -35.4273681641 -74.7437896729 18.1367416382
+      <UV>  {
+        0.500000 0.583333
+        <Tangent> { -0.375373 -0.008444 0.926835 }
+        <Binormal> { 0.379083 -0.913566 0.145207 }
+      }
+      <Normal> { -0.854122 -0.406049 -0.324839 }
+    }
+    <Vertex> 5645 {
+      -34.7766265869 -75.9171295166 18.5355968475
+      <UV>  {
+        0.750000 0.875000
+        <Tangent> { -0.392772 0.190018 0.899791 }
+        <Binormal> { 0.638182 -0.632455 0.412138 }
+      }
+      <Normal> { -0.588031 -0.764824 -0.263131 }
+    }
+    <Vertex> 5646 {
+      -35.2525749207 -76.1308135986 19.6838378906
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.524377 0.129229 0.841622 }
+        <Binormal> { 0.486087 -0.565033 0.389619 }
+      }
+      <Normal> { -0.242256 -0.683309 -0.688711 }
+    }
+    <Vertex> 5647 {
+      -35.8697090149 -74.4381942749 18.6451129913
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.475585 -0.060931 0.877557 }
+        <Binormal> { 0.459566 -0.808845 0.192898 }
+      }
+      <Normal> { -0.549699 -0.476028 -0.686422 }
+    }
+    <Vertex> 5648 {
+      -35.4273681641 -74.7437896729 18.1367416382
+      <UV>  {
+        0.500000 0.583333
+        <Tangent> { -0.375373 -0.008444 0.926835 }
+        <Binormal> { 0.379083 -0.913566 0.145207 }
+      }
+      <Normal> { -0.854122 -0.406049 -0.324839 }
+    }
+    <Vertex> 5649 {
+      -35.8697090149 -74.4381942749 18.6451129913
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.475585 -0.060931 0.877557 }
+        <Binormal> { 0.459566 -0.808845 0.192898 }
+      }
+      <Normal> { -0.549699 -0.476028 -0.686422 }
+    }
+    <Vertex> 5650 {
+      -35.841381073 -71.8590393066 17.0761871338
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.110083 -0.634004 0.765455 }
+        <Binormal> { 0.439399 -0.717937 -0.531455 }
+      }
+      <Normal> { -0.876034 -0.217597 -0.430342 }
+    }
+    <Vertex> 5651 {
+      -35.3250923157 -73.9615631104 16.9868736267
+      <UV>  {
+        0.291667 0.479167
+        <Tangent> { -0.041238 -0.498101 0.866138 }
+        <Binormal> { 0.343252 -0.820504 -0.455515 }
+      }
+      <Normal> { -0.939116 -0.297281 -0.172185 }
+    }
+    <Vertex> 5652 {
+      -31.5809307098 -74.7437896729 18.0874519348
+      <UV>  {
+        0.333333 0.166667
+        <Tangent> { 0.020067 0.008951 0.999759 }
+        <Binormal> { 0.051829 0.998574 -0.009981 }
+      }
+      <Normal> { 0.998383 -0.052034 -0.021546 }
+    }
+    <Vertex> 5653 {
+      -31.6732501984 -73.9615631104 18.6685466766
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { 0.016704 0.110188 0.993770 }
+        <Binormal> { 0.041727 0.988166 -0.110268 }
+      }
+      <Normal> { 0.992523 -0.054109 -0.109317 }
+    }
+    <Vertex> 5654 {
+      -31.6522140503 -75.8817977905 19.9583129883
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.139500 0.012867 0.990138 }
+        <Binormal> { 0.413906 0.844193 -0.069285 }
+      }
+      <Normal> { 0.790246 -0.423780 -0.442579 }
+    }
+    <Vertex> 5655 {
+      -31.8257064819 -75.9171295166 18.523273468
+      <UV>  {
+        0.250000 0.000000
+        <Tangent> { 0.049010 -0.020557 0.998587 }
+        <Binormal> { 0.625302 0.780222 -0.014628 }
+      }
+      <Normal> { 0.778832 -0.625141 -0.050813 }
+    }
+    <Vertex> 5656 {
+      -31.5809307098 -74.7437896729 18.0874519348
+      <UV>  {
+        0.333333 0.166667
+        <Tangent> { 0.020067 0.008951 0.999759 }
+        <Binormal> { 0.051829 0.998574 -0.009981 }
+      }
+      <Normal> { 0.998383 -0.052034 -0.021546 }
+    }
+    <Vertex> 5657 {
+      -31.8257064819 -75.9171295166 18.523273468
+      <UV>  {
+        0.250000 0.000000
+        <Tangent> { 0.049010 -0.020557 0.998587 }
+        <Binormal> { 0.625302 0.780222 -0.014628 }
+      }
+      <Normal> { 0.778832 -0.625141 -0.050813 }
+    }
+    <Vertex> 5658 {
+      -31.8010749817 -75.8193588257 16.9252643585
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.000000 0.000000 1.000000 }
+        <Binormal> { 0.647084 0.762383 -0.000000 }
+      }
+      <Normal> { 0.762383 -0.647084 0.000000 }
+    }
+    <Vertex> 5659 {
+      -31.6602325439 -74.3526763916 16.9252643585
+      <UV>  {
+        0.500000 0.208333
+        <Tangent> { -0.000000 0.000000 1.000000 }
+        <Binormal> { 0.039521 0.999207 -0.000000 }
+      }
+      <Normal> { 0.999207 -0.039521 0.000000 }
+    }
+    <Vertex> 5660 {
+      -31.5809307098 -74.7437896729 18.0874519348
+      <UV>  {
+        0.333333 0.166667
+        <Tangent> { 0.020067 0.008951 0.999759 }
+        <Binormal> { 0.051829 0.998574 -0.009981 }
+      }
+      <Normal> { 0.998383 -0.052034 -0.021546 }
+    }
+    <Vertex> 5661 {
+      -31.6602325439 -74.3526763916 16.9252643585
+      <UV>  {
+        0.500000 0.208333
+        <Tangent> { -0.000000 0.000000 1.000000 }
+        <Binormal> { 0.039521 0.999207 -0.000000 }
+      }
+      <Normal> { 0.999207 -0.039521 0.000000 }
+    }
+    <Vertex> 5662 {
+      -31.8001270294 -71.906539917 16.9686164856
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.008525 -0.000000 0.999964 }
+        <Binormal> { 0.179320 0.983595 0.001529 }
+      }
+      <Normal> { 0.983398 -0.179327 0.027314 }
+    }
+    <Vertex> 5663 {
+      -31.6732501984 -73.9615631104 18.6685466766
+      <UV>  {
+        0.250000 0.250000
+        <Tangent> { 0.016704 0.110188 0.993770 }
+        <Binormal> { 0.041727 0.988166 -0.110268 }
+      }
+      <Normal> { 0.992523 -0.054109 -0.109317 }
+    }
+    <Vertex> 5664 {
+      -31.5809307098 -74.7437896729 15.7630748749
+      <UV>  {
+        0.666667 0.166667
+        <Tangent> { -0.072326 0.033254 0.996827 }
+        <Binormal> { 0.049986 0.998275 -0.029675 }
+      }
+      <Normal> { 0.995605 -0.047456 0.080599 }
+    }
+    <Vertex> 5665 {
+      -31.6602325439 -74.3526763916 16.9252643585
+      <UV>  {
+        0.500000 0.208333
+        <Tangent> { -0.000000 0.000000 1.000000 }
+        <Binormal> { 0.039521 0.999207 -0.000000 }
+      }
+      <Normal> { 0.999207 -0.039521 0.000000 }
+    }
+    <Vertex> 5666 {
+      -31.8010749817 -75.8193588257 16.9252643585
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.000000 0.000000 1.000000 }
+        <Binormal> { 0.647084 0.762383 -0.000000 }
+      }
+      <Normal> { 0.762383 -0.647084 0.000000 }
+    }
+    <Vertex> 5667 {
+      -31.8257064819 -75.9171295166 15.327255249
+      <UV>  {
+        0.750000 0.000000
+        <Tangent> { -0.156754 0.107442 0.981776 }
+        <Binormal> { 0.621782 0.782787 0.013611 }
+      }
+      <Normal> { 0.770196 -0.614734 0.169866 }
+    }
+    <Vertex> 5668 {
+      -31.5809307098 -74.7437896729 15.7630748749
+      <UV>  {
+        0.666667 0.166667
+        <Tangent> { -0.072326 0.033254 0.996827 }
+        <Binormal> { 0.049986 0.998275 -0.029675 }
+      }
+      <Normal> { 0.995605 -0.047456 0.080599 }
+    }
+    <Vertex> 5669 {
+      -31.8257064819 -75.9171295166 15.327255249
+      <UV>  {
+        0.750000 0.000000
+        <Tangent> { -0.156754 0.107442 0.981776 }
+        <Binormal> { 0.621782 0.782787 0.013611 }
+      }
+      <Normal> { 0.770196 -0.614734 0.169866 }
+    }
+    <Vertex> 5670 {
+      -31.3029937744 -76.1607513428 13.8057003021
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.369674 -0.034799 0.928510 }
+        <Binormal> { 0.209123 0.747398 0.111271 }
+      }
+      <Normal> { 0.468398 -0.256905 0.845302 }
+    }
+    <Vertex> 5671 {
+      -31.6732501984 -73.9615631104 15.1819810867
+      <UV>  {
+        0.750000 0.250000
+        <Tangent> { -0.068578 -0.065740 0.995477 }
+        <Binormal> { 0.041321 0.982880 0.067755 }
+      }
+      <Normal> { 0.971496 -0.056703 0.230079 }
+    }
+    <Vertex> 5672 {
+      -31.5809307098 -74.7437896729 15.7630748749
+      <UV>  {
+        0.666667 0.166667
+        <Tangent> { -0.072326 0.033254 0.996827 }
+        <Binormal> { 0.049986 0.998275 -0.029675 }
+      }
+      <Normal> { 0.995605 -0.047456 0.080599 }
+    }
+    <Vertex> 5673 {
+      -31.6732501984 -73.9615631104 15.1819810867
+      <UV>  {
+        0.750000 0.250000
+        <Tangent> { -0.068578 -0.065740 0.995477 }
+        <Binormal> { 0.041321 0.982880 0.067755 }
+      }
+      <Normal> { 0.971496 -0.056703 0.230079 }
+    }
+    <Vertex> 5674 {
+      -31.8001270294 -71.906539917 16.9686164856
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.008525 -0.000000 0.999964 }
+        <Binormal> { 0.179320 0.983595 0.001529 }
+      }
+      <Normal> { 0.983398 -0.179327 0.027314 }
+    }
+    <Vertex> 5675 {
+      -31.6602325439 -74.3526763916 16.9252643585
+      <UV>  {
+        0.500000 0.208333
+        <Tangent> { -0.000000 0.000000 1.000000 }
+        <Binormal> { 0.039521 0.999207 -0.000000 }
+      }
+      <Normal> { 0.999207 -0.039521 0.000000 }
+    }
+    <Vertex> 5676 {
+      7.83730220795 -52.1677131653 31.0358257294
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.800653 -0.598501 -0.027419 }
+        <Binormal> { -0.105625 -0.186050 0.976780 }
+      }
+      <Normal> { 0.582965 0.784204 0.212409 }
+    }
+    <Vertex> 5677 {
+      10.41036129 -53.9971542358 30.6561012268
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.809167 -0.575316 -0.119414 }
+        <Binormal> { 0.037684 -0.151991 0.987616 }
+      }
+      <Normal> { 0.580035 0.808130 0.102237 }
+    }
+    <Vertex> 5678 {
+      10.3430070877 -54.0351829529 29.7247276306
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.814884 -0.565897 -0.125399 }
+        <Binormal> { -0.100479 -0.350818 0.930216 }
+      }
+      <Normal> { 0.601825 0.723594 0.337901 }
+    }
+    <Vertex> 5679 {
+      8.05424594879 -52.4883308411 30.0931663513
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.800700 -0.596632 -0.053937 }
+        <Binormal> { -0.141929 -0.276395 0.950444 }
+      }
+      <Normal> { 0.587115 0.749535 0.305643 }
+    }
+    <Vertex> 5680 {
+      7.83730220795 -52.1677131653 31.0358257294
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.800653 -0.598501 -0.027419 }
+        <Binormal> { -0.105625 -0.186050 0.976780 }
+      }
+      <Normal> { 0.582965 0.784204 0.212409 }
+    }
+    <Vertex> 5681 {
+      8.05424594879 -52.4883308411 30.0931663513
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.800700 -0.596632 -0.053937 }
+        <Binormal> { -0.141929 -0.276395 0.950444 }
+      }
+      <Normal> { 0.587115 0.749535 0.305643 }
+    }
+    <Vertex> 5682 {
+      6.24800300598 -50.9838409424 30.0005741119
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.757639 -0.650581 0.052221 }
+        <Binormal> { -0.269031 -0.239032 0.925268 }
+      }
+      <Normal> { 0.680166 0.637196 0.362377 }
+    }
+    <Vertex> 5683 {
+      5.82298278809 -50.3915023804 30.8650798798
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.748535 -0.660052 0.063450 }
+        <Binormal> { -0.299621 -0.251587 0.917514 }
+      }
+      <Normal> { 0.642598 0.659108 0.390576 }
+    }
+    <Vertex> 5684 {
+      7.83730220795 -52.1677131653 31.0358257294
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.800653 -0.598501 -0.027419 }
+        <Binormal> { -0.105625 -0.186050 0.976780 }
+      }
+      <Normal> { 0.582965 0.784204 0.212409 }
+    }
+    <Vertex> 5685 {
+      5.82298278809 -50.3915023804 30.8650798798
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.748535 -0.660052 0.063450 }
+        <Binormal> { -0.299621 -0.251587 0.917514 }
+      }
+      <Normal> { 0.642598 0.659108 0.390576 }
+    }
+    <Vertex> 5686 {
+      5.24601078033 -50.850528717 31.4785003662
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.159039 0.977787 -0.136529 }
+        <Binormal> { 0.977753 0.166541 0.053766 }
+      }
+      <Normal> { -0.093661 0.237770 0.966765 }
+    }
+    <Vertex> 5687 {
+      7.93869447708 -52.8322219849 31.8540382385
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.265236 0.455428 0.849818 }
+    }
+    <Vertex> 5688 {
+      7.83730220795 -52.1677131653 31.0358257294
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.800653 -0.598501 -0.027419 }
+        <Binormal> { -0.105625 -0.186050 0.976780 }
+      }
+      <Normal> { 0.582965 0.784204 0.212409 }
+    }
+    <Vertex> 5689 {
+      7.93869447708 -52.8322219849 31.8540382385
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.265236 0.455428 0.849818 }
+    }
+    <Vertex> 5690 {
+      10.5450992584 -54.4684066772 31.5363960266
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.825957 -0.552655 -0.111207 }
+        <Binormal> { -0.309222 -0.608932 0.729493 }
+      }
+      <Normal> { 0.501450 0.547685 0.669729 }
+    }
+    <Vertex> 5691 {
+      10.41036129 -53.9971542358 30.6561012268
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.809167 -0.575316 -0.119414 }
+        <Binormal> { 0.037684 -0.151991 0.987616 }
+      }
+      <Normal> { 0.580035 0.808130 0.102237 }
+    }
+    <Vertex> 5692 {
+      13.1886310577 -55.9973144531 29.4318370819
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.652028 0.756493 0.050661 }
+    }
+    <Vertex> 5693 {
+      15.4947366714 -58.0524024963 27.8560237885
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.665031 -0.592643 -0.454431 }
+        <Binormal> { 0.230127 -0.407837 0.868656 }
+      }
+      <Normal> { 0.807520 0.586566 0.061464 }
+    }
+    <Vertex> 5694 {
+      14.753610611 -57.5889358521 27.4361286163
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.519338 0.314104 0.794721 }
+        <Binormal> { -0.317840 0.792276 -0.520842 }
+      }
+      <Normal> { 0.793237 0.523087 0.311624 }
+    }
+    <Vertex> 5695 {
+      12.7377071381 -55.8041267395 28.7273979187
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.658428 0.333354 0.674744 }
+        <Binormal> { -0.324978 0.682732 -0.654421 }
+      }
+      <Normal> { 0.678823 0.650166 0.341197 }
+    }
+    <Vertex> 5696 {
+      13.1886310577 -55.9973144531 29.4318370819
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.652028 0.756493 0.050661 }
+    }
+    <Vertex> 5697 {
+      12.7377071381 -55.8041267395 28.7273979187
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.658428 0.333354 0.674744 }
+        <Binormal> { -0.324978 0.682732 -0.654421 }
+      }
+      <Normal> { 0.678823 0.650166 0.341197 }
+    }
+    <Vertex> 5698 {
+      10.3430070877 -54.0351829529 29.7247276306
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.731103 0.328965 0.597686 }
+        <Binormal> { -0.321338 0.606768 -0.727031 }
+      }
+      <Normal> { 0.601825 0.723594 0.337901 }
+    }
+    <Vertex> 5699 {
+      10.41036129 -53.9971542358 30.6561012268
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.764166 0.550146 0.336735 }
+        <Binormal> { -0.215880 0.273444 -0.936649 }
+      }
+      <Normal> { 0.580035 0.808130 0.102237 }
+    }
+    <Vertex> 5700 {
+      13.1886310577 -55.9973144531 29.4318370819
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.652028 0.756493 0.050661 }
+    }
+    <Vertex> 5701 {
+      10.41036129 -53.9971542358 30.6561012268
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.764166 0.550146 0.336735 }
+        <Binormal> { -0.215880 0.273444 -0.936649 }
+      }
+      <Normal> { 0.580035 0.808130 0.102237 }
+    }
+    <Vertex> 5702 {
+      10.5450992584 -54.4684066772 31.5363960266
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.843487 0.481658 0.237662 }
+        <Binormal> { 0.192427 0.684119 -0.703529 }
+      }
+      <Normal> { 0.501450 0.547685 0.669729 }
+    }
+    <Vertex> 5703 {
+      13.3697414398 -56.219078064 30.2896232605
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.711324 0.448301 0.541289 }
+        <Binormal> { 0.022270 0.784148 -0.620174 }
+      }
+      <Normal> { 0.702475 0.429090 0.567766 }
+    }
+    <Vertex> 5704 {
+      13.1886310577 -55.9973144531 29.4318370819
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.652028 0.756493 0.050661 }
+    }
+    <Vertex> 5705 {
+      13.3697414398 -56.219078064 30.2896232605
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.711324 0.448301 0.541289 }
+        <Binormal> { 0.022270 0.784148 -0.620174 }
+      }
+      <Normal> { 0.702475 0.429090 0.567766 }
+    }
+    <Vertex> 5706 {
+      15.4619607925 -58.7914543152 28.5970973969
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.331105 0.795859 0.506867 }
+        <Binormal> { 0.558842 0.598245 -0.574280 }
+      }
+      <Normal> { 0.760277 -0.093112 0.642842 }
+    }
+    <Vertex> 5707 {
+      15.4947366714 -58.0524024963 27.8560237885
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.665031 -0.592643 -0.454431 }
+        <Binormal> { 0.230127 -0.407837 0.868656 }
+      }
+      <Normal> { 0.807520 0.586566 0.061464 }
+    }
+    <Vertex> 5708 {
+      4.72093200684 -48.5510520935 30.4379310608
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { -0.503069 -0.026040 0.863854 }
+        <Binormal> { -0.678461 0.630815 -0.376089 }
+      }
+      <Normal> { 0.526933 0.774865 0.349101 }
+    }
+    <Vertex> 5709 {
+      5.82298278809 -50.3915023804 30.8650798798
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { -0.260102 -0.380961 0.887252 }
+        <Binormal> { -0.733589 0.671735 0.073370 }
+      }
+      <Normal> { 0.642598 0.659108 0.390576 }
+    }
+    <Vertex> 5710 {
+      6.24800300598 -50.9838409424 30.0005741119
+      <UV>  {
+        0.068960 0.789940
+        <Tangent> { -0.260782 0.283539 0.922821 }
+        <Binormal> { -0.485270 0.722173 -0.359023 }
+      }
+      <Normal> { 0.680166 0.637196 0.362377 }
+    }
+    <Vertex> 5711 {
+      5.30085802078 -49.3419837952 29.614818573
+      <UV>  {
+        0.053131 0.854502
+        <Tangent> { 0.407141 0.889569 0.207132 }
+        <Binormal> { 0.239865 -0.046707 -0.270889 }
+      }
+      <Normal> { 0.610370 0.668264 0.425245 }
+    }
+    <Vertex> 5712 {
+      4.72093200684 -48.5510520935 30.4379310608
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { -0.503069 -0.026040 0.863854 }
+        <Binormal> { -0.678461 0.630815 -0.376089 }
+      }
+      <Normal> { 0.526933 0.774865 0.349101 }
+    }
+    <Vertex> 5713 {
+      5.30085802078 -49.3419837952 29.614818573
+      <UV>  {
+        0.053131 0.854502
+        <Tangent> { 0.407141 0.889569 0.207132 }
+        <Binormal> { 0.239865 -0.046707 -0.270889 }
+      }
+      <Normal> { 0.610370 0.668264 0.425245 }
+    }
+    <Vertex> 5714 {
+      4.35131406784 -48.3970603943 28.6231327057
+      <UV>  {
+        0.037302 0.919064
+        <Tangent> { -0.356388 0.355450 0.864085 }
+        <Binormal> { -0.750082 -0.039970 -0.292926 }
+      }
+      <Normal> { -0.141240 0.962798 0.230293 }
+    }
+    <Vertex> 5715 {
+      3.55173397064 -47.9415893555 29.5095386505
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { -0.543129 -0.091059 0.834697 }
+        <Binormal> { -0.797015 -0.100904 -0.529618 }
+      }
+      <Normal> { 0.015320 0.977691 -0.209326 }
+    }
+    <Vertex> 5716 {
+      4.72093200684 -48.5510520935 30.4379310608
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { -0.503069 -0.026040 0.863854 }
+        <Binormal> { -0.678461 0.630815 -0.376089 }
+      }
+      <Normal> { 0.526933 0.774865 0.349101 }
+    }
+    <Vertex> 5717 {
+      3.55173397064 -47.9415893555 29.5095386505
+      <UV>  {
+        0.098316 0.934024
+        <Tangent> { -0.543129 -0.091059 0.834697 }
+        <Binormal> { -0.797015 -0.100904 -0.529618 }
+      }
+      <Normal> { 0.015320 0.977691 -0.209326 }
+    }
+    <Vertex> 5718 {
+      2.84836363792 -48.2757644653 29.6699867249
+      <UV>  {
+        0.159331 0.948983
+        <Tangent> { -0.789456 -0.238422 0.565609 }
+        <Binormal> { -0.553540 -0.026105 -0.783615 }
+      }
+      <Normal> { -0.423261 0.864772 0.270180 }
+    }
+    <Vertex> 5719 {
+      3.79164528847 -48.3936042786 30.6535129547
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { -0.824092 -0.178156 0.537710 }
+        <Binormal> { -0.415348 0.555033 -0.452665 }
+      }
+      <Normal> { -0.244301 0.496475 0.832911 }
+    }
+    <Vertex> 5720 {
+      4.72093200684 -48.5510520935 30.4379310608
+      <UV>  {
+        0.114146 0.869462
+        <Tangent> { -0.503069 -0.026040 0.863854 }
+        <Binormal> { -0.678461 0.630815 -0.376089 }
+      }
+      <Normal> { 0.526933 0.774865 0.349101 }
+    }
+    <Vertex> 5721 {
+      3.79164528847 -48.3936042786 30.6535129547
+      <UV>  {
+        0.175160 0.884421
+        <Tangent> { -0.824092 -0.178156 0.537710 }
+        <Binormal> { -0.415348 0.555033 -0.452665 }
+      }
+      <Normal> { -0.244301 0.496475 0.832911 }
+    }
+    <Vertex> 5722 {
+      5.24601078033 -50.850528717 31.4785003662
+      <UV>  {
+        0.190989 0.819859
+        <Tangent> { -0.470649 -0.668084 0.576327 }
+        <Binormal> { -0.782914 0.401028 -0.174480 }
+      }
+      <Normal> { -0.093661 0.237770 0.966765 }
+    }
+    <Vertex> 5723 {
+      5.82298278809 -50.3915023804 30.8650798798
+      <UV>  {
+        0.129975 0.804899
+        <Tangent> { -0.260102 -0.380961 0.887252 }
+        <Binormal> { -0.733589 0.671735 0.073370 }
+      }
+      <Normal> { 0.642598 0.659108 0.390576 }
+    }
+    <Vertex> 5724 {
+      16.6513004303 -60.0466384888 26.4216499329
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.271257 -0.849768 0.452011 }
+        <Binormal> { -0.052484 0.455585 0.887982 }
+      }
+      <Normal> { 0.969665 0.235908 -0.063723 }
+    }
+    <Vertex> 5725 {
+      16.3459072113 -62.0015106201 25.3664398193
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.024710 -0.741703 0.670273 }
+        <Binormal> { 0.482741 0.575672 0.654818 }
+      }
+      <Normal> { 0.873562 -0.279000 -0.398724 }
+    }
+    <Vertex> 5726 {
+      16.1790218353 -61.0635375977 24.562297821
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.401653 -0.793107 0.457882 }
+        <Binormal> { 0.101618 0.370850 0.553218 }
+      }
+      <Normal> { 0.905362 -0.410382 0.108798 }
+    }
+    <Vertex> 5727 {
+      15.9059810638 -59.1833648682 26.1858844757
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.639971 -0.741252 0.202441 }
+        <Binormal> { -0.204932 0.053877 0.845119 }
+      }
+      <Normal> { 0.951415 0.218574 0.216773 }
+    }
+    <Vertex> 5728 {
+      16.6513004303 -60.0466384888 26.4216499329
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.271257 -0.849768 0.452011 }
+        <Binormal> { -0.052484 0.455585 0.887982 }
+      }
+      <Normal> { 0.969665 0.235908 -0.063723 }
+    }
+    <Vertex> 5729 {
+      15.9059810638 -59.1833648682 26.1858844757
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.639971 -0.741252 0.202441 }
+        <Binormal> { -0.204932 0.053877 0.845119 }
+      }
+      <Normal> { 0.951415 0.218574 0.216773 }
+    }
+    <Vertex> 5730 {
+      14.753610611 -57.5889358521 27.4361286163
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.708663 -0.632524 0.312586 }
+        <Binormal> { -0.360620 0.027118 0.872434 }
+      }
+      <Normal> { 0.793237 0.523087 0.311624 }
+    }
+    <Vertex> 5731 {
+      15.4947366714 -58.0524024963 27.8560237885
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.390191 -0.662400 0.639513 }
+        <Binormal> { -0.415830 0.492437 0.763774 }
+      }
+      <Normal> { 0.807520 0.586566 0.061464 }
+    }
+    <Vertex> 5732 {
+      16.6513004303 -60.0466384888 26.4216499329
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.271257 -0.849768 0.452011 }
+        <Binormal> { -0.052484 0.455585 0.887982 }
+      }
+      <Normal> { 0.969665 0.235908 -0.063723 }
+    }
+    <Vertex> 5733 {
+      15.4947366714 -58.0524024963 27.8560237885
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.390191 -0.662400 0.639513 }
+        <Binormal> { -0.415830 0.492437 0.763774 }
+      }
+      <Normal> { 0.807520 0.586566 0.061464 }
+    }
+    <Vertex> 5734 {
+      15.4619607925 -58.7914543152 28.5970973969
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.665862 -0.208919 0.716227 }
+        <Binormal> { -0.067613 0.972575 0.220836 }
+      }
+      <Normal> { 0.760277 -0.093112 0.642842 }
+    }
+    <Vertex> 5735 {
+      16.5601425171 -61.0067749023 26.6479949951
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.092018 -0.969190 0.228479 }
+        <Binormal> { -0.442995 0.228759 0.791964 }
+      }
+      <Normal> { 0.787408 -0.313150 0.530900 }
+    }
+    <Vertex> 5736 {
+      16.6513004303 -60.0466384888 26.4216499329
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.271257 -0.849768 0.452011 }
+        <Binormal> { -0.052484 0.455585 0.887982 }
+      }
+      <Normal> { 0.969665 0.235908 -0.063723 }
+    }
+    <Vertex> 5737 {
+      16.5601425171 -61.0067749023 26.6479949951
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.092018 -0.969190 0.228479 }
+        <Binormal> { -0.442995 0.228759 0.791964 }
+      }
+      <Normal> { 0.787408 -0.313150 0.530900 }
+    }
+    <Vertex> 5738 {
+      16.134727478 -62.3930854797 25.7638015747
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.199030 -0.889834 0.410588 }
+        <Binormal> { 0.142464 0.363824 0.857545 }
+      }
+      <Normal> { 0.845882 -0.526811 0.082980 }
+    }
+    <Vertex> 5739 {
+      16.3459072113 -62.0015106201 25.3664398193
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.024710 -0.741703 0.670273 }
+        <Binormal> { 0.482741 0.575672 0.654818 }
+      }
+      <Normal> { 0.873562 -0.279000 -0.398724 }
+    }
+    <Vertex> 5740 {
+      4.50660800934 -65.8321990967 21.506155014
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.380497 0.307496 -0.872163 }
+        <Binormal> { -0.866298 -0.448479 0.219819 }
+      }
+      <Normal> { 0.325938 -0.841121 -0.431562 }
+    }
+    <Vertex> 5741 {
+      3.30636048317 -64.2518005371 18.6485347748
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.344986 0.454253 -0.821364 }
+        <Binormal> { -0.847666 -0.390850 0.139875 }
+      }
+      <Normal> { 0.143529 -0.594440 -0.791223 }
+    }
+    <Vertex> 5742 {
+      4.44768333435 -64.0054702759 18.4704265594
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.666681 0.374301 -0.644543 }
+        <Binormal> { -0.709899 -0.074710 0.690896 }
+      }
+      <Normal> { -0.286691 -0.875362 -0.389233 }
+    }
+    <Vertex> 5743 {
+      5.43875074387 -65.0797805786 21.6685352325
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.330603 0.282051 -0.900638 }
+        <Binormal> { -0.918215 -0.314784 0.238475 }
+      }
+      <Normal> { 0.226081 -0.914212 -0.336253 }
+    }
+    <Vertex> 5744 {
+      4.50660800934 -65.8321990967 21.506155014
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.380497 0.307496 -0.872163 }
+        <Binormal> { -0.866298 -0.448479 0.219819 }
+      }
+      <Normal> { 0.325938 -0.841121 -0.431562 }
+    }
+    <Vertex> 5745 {
+      5.43875074387 -65.0797805786 21.6685352325
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.330603 0.282051 -0.900638 }
+        <Binormal> { -0.918215 -0.314784 0.238475 }
+      }
+      <Normal> { 0.226081 -0.914212 -0.336253 }
+    }
+    <Vertex> 5746 {
+      6.32541418076 -65.6074371338 23.5857906342
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.410788 0.207375 -0.887834 }
+        <Binormal> { -0.826472 -0.482290 0.269747 }
+      }
+      <Normal> { 0.328166 -0.822321 -0.464797 }
+    }
+    <Vertex> 5747 {
+      5.81721782684 -66.413772583 24.3378505707
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.412917 0.183229 -0.892147 }
+        <Binormal> { -0.836222 -0.445587 0.295519 }
+      }
+      <Normal> { 0.293130 -0.845759 -0.445784 }
+    }
+    <Vertex> 5748 {
+      4.50660800934 -65.8321990967 21.506155014
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.380497 0.307496 -0.872163 }
+        <Binormal> { -0.866298 -0.448479 0.219819 }
+      }
+      <Normal> { 0.325938 -0.841121 -0.431562 }
+    }
+    <Vertex> 5749 {
+      5.81721782684 -66.413772583 24.3378505707
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.412917 0.183229 -0.892147 }
+        <Binormal> { -0.836222 -0.445587 0.295519 }
+      }
+      <Normal> { 0.293130 -0.845759 -0.445784 }
+    }
+    <Vertex> 5750 {
+      5.78391265869 -66.6214065552 25.1025238037
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.427606 0.172496 -0.887354 }
+        <Binormal> { -0.832828 0.270450 0.453905 }
+      }
+      <Normal> { -0.247780 -0.961547 0.118290 }
+    }
+    <Vertex> 5751 {
+      4.20942115784 -66.0391311646 21.9471530914
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.416082 0.289054 -0.862162 }
+        <Binormal> { -0.784503 0.364123 0.500681 }
+      }
+      <Normal> { -0.444105 -0.894803 -0.045106 }
+    }
+    <Vertex> 5752 {
+      4.50660800934 -65.8321990967 21.506155014
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.380497 0.307496 -0.872163 }
+        <Binormal> { -0.866298 -0.448479 0.219819 }
+      }
+      <Normal> { 0.325938 -0.841121 -0.431562 }
+    }
+    <Vertex> 5753 {
+      4.20942115784 -66.0391311646 21.9471530914
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.416082 0.289054 -0.862162 }
+        <Binormal> { -0.784503 0.364123 0.500681 }
+      }
+      <Normal> { -0.444105 -0.894803 -0.045106 }
+    }
+    <Vertex> 5754 {
+      2.69709229469 -64.4769821167 18.7063312531
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.367692 0.425975 -0.826649 }
+        <Binormal> { -0.814903 0.245954 0.489208 }
+      }
+      <Normal> { -0.481521 -0.772637 -0.413648 }
+    }
+    <Vertex> 5755 {
+      3.30636048317 -64.2518005371 18.6485347748
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.344986 0.454253 -0.821364 }
+        <Binormal> { -0.847666 -0.390850 0.139875 }
+      }
+      <Normal> { 0.143529 -0.594440 -0.791223 }
+    }
+    <Vertex> 5756 {
+      8.27212715149 -66.3112182617 25.088344574
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.064327 -0.593889 0.801971 }
+        <Binormal> { 0.983169 0.172338 0.048761 }
+      }
+      <Normal> { 0.169469 -0.806574 -0.566301 }
+    }
+    <Vertex> 5757 {
+      5.81721782684 -66.413772583 24.3378505707
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.284535 -0.532795 0.796975 }
+        <Binormal> { 0.911561 0.106777 0.396826 }
+      }
+      <Normal> { 0.293130 -0.845759 -0.445784 }
+    }
+    <Vertex> 5758 {
+      6.32541418076 -65.6074371338 23.5857906342
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.103197 -0.701172 0.705484 }
+        <Binormal> { 0.906037 0.183550 0.314962 }
+      }
+      <Normal> { 0.328166 -0.822321 -0.464797 }
+    }
+    <Vertex> 5759 {
+      8.01560020447 -65.4075927734 24.11992836
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.190141 -0.669780 0.717803 }
+        <Binormal> { 0.927887 0.202772 -0.056585 }
+      }
+      <Normal> { 0.166143 -0.882839 -0.439222 }
+    }
+    <Vertex> 5760 {
+      8.27212715149 -66.3112182617 25.088344574
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.064327 -0.593889 0.801971 }
+        <Binormal> { 0.983169 0.172338 0.048761 }
+      }
+      <Normal> { 0.169469 -0.806574 -0.566301 }
+    }
+    <Vertex> 5761 {
+      8.01560020447 -65.4075927734 24.11992836
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.190141 -0.669780 0.717803 }
+        <Binormal> { 0.927887 0.202772 -0.056585 }
+      }
+      <Normal> { 0.166143 -0.882839 -0.439222 }
+    }
+    <Vertex> 5762 {
+      10.808093071 -64.8020248413 23.9588832855
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.807090 -0.522825 0.274336 }
+        <Binormal> { 0.432611 -0.217444 0.858331 }
+      }
+      <Normal> { 0.252205 -0.900113 -0.355144 }
+    }
+    <Vertex> 5763 {
+      11.2841596603 -65.4957351685 24.9032363892
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.271999 -0.590213 0.760042 }
+        <Binormal> { 0.929753 0.361334 -0.052139 }
+      }
+      <Normal> { 0.256661 -0.748619 -0.611255 }
+    }
+    <Vertex> 5764 {
+      8.27212715149 -66.3112182617 25.088344574
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.064327 -0.593889 0.801971 }
+        <Binormal> { 0.983169 0.172338 0.048761 }
+      }
+      <Normal> { 0.169469 -0.806574 -0.566301 }
+    }
+    <Vertex> 5765 {
+      11.2841596603 -65.4957351685 24.9032363892
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.271999 -0.590213 0.760042 }
+        <Binormal> { 0.929753 0.361334 -0.052139 }
+      }
+      <Normal> { 0.256661 -0.748619 -0.611255 }
+    }
+    <Vertex> 5766 {
+      11.3368883133 -65.9494628906 25.4364871979
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.038373 -0.550598 0.833888 }
+        <Binormal> { 0.756683 0.307973 0.168527 }
+      }
+      <Normal> { 0.370769 -0.928190 0.031465 }
+    }
+    <Vertex> 5767 {
+      8.27652549744 -66.6771774292 25.7965221405
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.005518 -0.459080 0.888378 }
+        <Binormal> { 0.842623 0.078807 0.035491 }
+      }
+      <Normal> { 0.089236 -0.992370 0.084902 }
+    }
+    <Vertex> 5768 {
+      8.27212715149 -66.3112182617 25.088344574
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.064327 -0.593889 0.801971 }
+        <Binormal> { 0.983169 0.172338 0.048761 }
+      }
+      <Normal> { 0.169469 -0.806574 -0.566301 }
+    }
+    <Vertex> 5769 {
+      8.27652549744 -66.6771774292 25.7965221405
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.005518 -0.459080 0.888378 }
+        <Binormal> { 0.842623 0.078807 0.035491 }
+      }
+      <Normal> { 0.089236 -0.992370 0.084902 }
+    }
+    <Vertex> 5770 {
+      5.78391265869 -66.6214065552 25.1025238037
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.769603 0.130363 -0.625074 }
+        <Binormal> { -0.585617 0.245917 0.772310 }
+      }
+      <Normal> { -0.247780 -0.961547 0.118290 }
+    }
+    <Vertex> 5771 {
+      5.81721782684 -66.413772583 24.3378505707
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.284535 -0.532795 0.796975 }
+        <Binormal> { 0.911561 0.106777 0.396826 }
+      }
+      <Normal> { 0.293130 -0.845759 -0.445784 }
+    }
+    <Vertex> 5772 {
+      14.2661409378 -63.9385223389 24.9281177521
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.288486 -0.542775 0.788778 }
+        <Binormal> { 0.811973 0.574689 0.098487 }
+      }
+      <Normal> { 0.514298 -0.626240 -0.585894 }
+    }
+    <Vertex> 5773 {
+      11.2841596603 -65.4957351685 24.9032363892
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.271999 -0.590213 0.760042 }
+        <Binormal> { 0.929753 0.361334 -0.052139 }
+      }
+      <Normal> { 0.256661 -0.748619 -0.611255 }
+    }
+    <Vertex> 5774 {
+      10.808093071 -64.8020248413 23.9588832855
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.377809 -0.476442 0.793891 }
+        <Binormal> { 0.883797 0.334400 -0.219909 }
+      }
+      <Normal> { 0.252205 -0.900113 -0.355144 }
+    }
+    <Vertex> 5775 {
+      13.820561409 -63.4699745178 23.9358100891
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.376214 -0.395606 0.837830 }
+        <Binormal> { 0.779969 0.531475 -0.099280 }
+      }
+      <Normal> { 0.524552 -0.815485 -0.244514 }
+    }
+    <Vertex> 5776 {
+      14.2661409378 -63.9385223389 24.9281177521
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.288486 -0.542775 0.788778 }
+        <Binormal> { 0.811973 0.574689 0.098487 }
+      }
+      <Normal> { 0.514298 -0.626240 -0.585894 }
+    }
+    <Vertex> 5777 {
+      13.820561409 -63.4699745178 23.9358100891
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.376214 -0.395606 0.837830 }
+        <Binormal> { 0.779969 0.531475 -0.099280 }
+      }
+      <Normal> { 0.524552 -0.815485 -0.244514 }
+    }
+    <Vertex> 5778 {
+      16.1790218353 -61.0635375977 24.562297821
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.275516 -0.958281 0.076084 }
+        <Binormal> { -0.073036 0.098859 0.980658 }
+      }
+      <Normal> { 0.905362 -0.410382 0.108798 }
+    }
+    <Vertex> 5779 {
+      16.3459072113 -62.0015106201 25.3664398193
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.024710 -0.741703 0.670273 }
+        <Binormal> { 0.482741 0.575672 0.654818 }
+      }
+      <Normal> { 0.873562 -0.279000 -0.398724 }
+    }
+    <Vertex> 5780 {
+      14.2661409378 -63.9385223389 24.9281177521
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.288486 -0.542775 0.788778 }
+        <Binormal> { 0.811973 0.574689 0.098487 }
+      }
+      <Normal> { 0.514298 -0.626240 -0.585894 }
+    }
+    <Vertex> 5781 {
+      16.3459072113 -62.0015106201 25.3664398193
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.024710 -0.741703 0.670273 }
+        <Binormal> { 0.482741 0.575672 0.654818 }
+      }
+      <Normal> { 0.873562 -0.279000 -0.398724 }
+    }
+    <Vertex> 5782 {
+      16.134727478 -62.3930854797 25.7638015747
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.123839 -0.572087 0.810790 }
+        <Binormal> { 0.379661 0.675556 0.418678 }
+      }
+      <Normal> { 0.845882 -0.526811 0.082980 }
+    }
+    <Vertex> 5783 {
+      14.6146345139 -64.1812820435 25.4297657013
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.530197 -0.369334 0.763206 }
+        <Binormal> { 0.569650 0.419215 -0.192866 }
+      }
+      <Normal> { 0.609302 -0.788202 0.086398 }
+    }
+    <Vertex> 5784 {
+      14.2661409378 -63.9385223389 24.9281177521
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.288486 -0.542775 0.788778 }
+        <Binormal> { 0.811973 0.574689 0.098487 }
+      }
+      <Normal> { 0.514298 -0.626240 -0.585894 }
+    }
+    <Vertex> 5785 {
+      14.6146345139 -64.1812820435 25.4297657013
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.530197 -0.369334 0.763206 }
+        <Binormal> { 0.569650 0.419215 -0.192866 }
+      }
+      <Normal> { 0.609302 -0.788202 0.086398 }
+    }
+    <Vertex> 5786 {
+      11.3368883133 -65.9494628906 25.4364871979
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.805595 -0.573685 0.147996 }
+        <Binormal> { 0.119318 0.080220 0.960450 }
+      }
+      <Normal> { 0.370769 -0.928190 0.031465 }
+    }
+    <Vertex> 5787 {
+      11.2841596603 -65.4957351685 24.9032363892
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.271999 -0.590213 0.760042 }
+        <Binormal> { 0.929753 0.361334 -0.052139 }
+      }
+      <Normal> { 0.256661 -0.748619 -0.611255 }
+    }
+    <Vertex> 5788 {
+      1.18253922462 -61.3578720093 17.8202610016
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.552686 0.832675 0.034492 }
+        <Binormal> { -0.830935 -0.553696 0.052250 }
+      }
+      <Normal> { -0.054201 -0.012879 -0.998444 }
+    }
+    <Vertex> 5789 {
+      -0.756666958332 -58.0987281799 18.9326705933
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.490663 0.824638 0.281465 }
+        <Binormal> { -0.839685 -0.464483 -0.102935 }
+      }
+      <Normal> { -0.174322 0.502762 -0.846644 }
+    }
+    <Vertex> 5790 {
+      0.142042249441 -57.5461273193 18.6940250397
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.472037 0.845077 0.251050 }
+        <Binormal> { -0.498995 -0.468494 0.638792 }
+      }
+      <Normal> { -0.823267 0.120609 -0.554643 }
+    }
+    <Vertex> 5791 {
+      2.04483437538 -61.165222168 17.7630882263
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.554418 0.831740 0.028792 }
+        <Binormal> { -0.592750 -0.418922 0.687805 }
+      }
+      <Normal> { -0.585315 -0.362499 -0.725211 }
+    }
+    <Vertex> 5792 {
+      1.18253922462 -61.3578720093 17.8202610016
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.552686 0.832675 0.034492 }
+        <Binormal> { -0.830935 -0.553696 0.052250 }
+      }
+      <Normal> { -0.054201 -0.012879 -0.998444 }
+    }
+    <Vertex> 5793 {
+      2.04483437538 -61.165222168 17.7630882263
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.554418 0.831740 0.028792 }
+        <Binormal> { -0.592750 -0.418922 0.687805 }
+      }
+      <Normal> { -0.585315 -0.362499 -0.725211 }
+    }
+    <Vertex> 5794 {
+      4.44768333435 -64.0054702759 18.4704265594
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.606367 0.768118 -0.205702 }
+        <Binormal> { -0.479041 -0.177045 0.751004 }
+      }
+      <Normal> { -0.286691 -0.875362 -0.389233 }
+    }
+    <Vertex> 5795 {
+      3.30636048317 -64.2518005371 18.6485347748
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.576507 0.785551 -0.224833 }
+        <Binormal> { -0.755195 -0.488415 0.229949 }
+      }
+      <Normal> { 0.143529 -0.594440 -0.791223 }
+    }
+    <Vertex> 5796 {
+      1.18253922462 -61.3578720093 17.8202610016
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.552686 0.832675 0.034492 }
+        <Binormal> { -0.830935 -0.553696 0.052250 }
+      }
+      <Normal> { -0.054201 -0.012879 -0.998444 }
+    }
+    <Vertex> 5797 {
+      3.30636048317 -64.2518005371 18.6485347748
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.576507 0.785551 -0.224833 }
+        <Binormal> { -0.755195 -0.488415 0.229949 }
+      }
+      <Normal> { 0.143529 -0.594440 -0.791223 }
+    }
+    <Vertex> 5798 {
+      2.69709229469 -64.4769821167 18.7063312531
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.584349 0.776847 -0.234618 }
+        <Binormal> { -0.502616 -0.128741 0.825558 }
+      }
+      <Normal> { -0.481521 -0.772637 -0.413648 }
+    }
+    <Vertex> 5799 {
+      0.390968948603 -61.4816398621 17.7559661865
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.554871 0.831300 0.032547 }
+        <Binormal> { -0.602251 -0.428359 0.673616 }
+      }
+      <Normal> { -0.575488 -0.351817 -0.738243 }
+    }
+    <Vertex> 5800 {
+      1.18253922462 -61.3578720093 17.8202610016
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.552686 0.832675 0.034492 }
+        <Binormal> { -0.830935 -0.553696 0.052250 }
+      }
+      <Normal> { -0.054201 -0.012879 -0.998444 }
+    }
+    <Vertex> 5801 {
+      0.390968948603 -61.4816398621 17.7559661865
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.554871 0.831300 0.032547 }
+        <Binormal> { -0.602251 -0.428359 0.673616 }
+      }
+      <Normal> { -0.575488 -0.351817 -0.738243 }
+    }
+    <Vertex> 5802 {
+      -1.57638907433 -58.074508667 18.9569988251
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.484354 0.826516 0.286831 }
+        <Binormal> { -0.590925 -0.526424 0.519053 }
+      }
+      <Normal> { -0.736381 0.184942 -0.650777 }
+    }
+    <Vertex> 5803 {
+      -0.756666958332 -58.0987281799 18.9326705933
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.490663 0.824638 0.281465 }
+        <Binormal> { -0.839685 -0.464483 -0.102935 }
+      }
+      <Normal> { -0.174322 0.502762 -0.846644 }
+    }
+    <Vertex> 5804 {
+      1.33597314358 -49.8583564758 27.8350524902
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.558355 0.625095 0.545432 }
+        <Binormal> { -0.765307 0.134451 0.629352 }
+      }
+      <Normal> { -0.314158 0.775445 -0.547685 }
+    }
+    <Vertex> 5805 {
+      3.55173397064 -47.9415893555 29.5095386505
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.656612 0.568009 0.496212 }
+        <Binormal> { -0.604042 0.145048 0.633261 }
+      }
+      <Normal> { 0.015320 0.977691 -0.209326 }
+    }
+    <Vertex> 5806 {
+      4.35131406784 -48.3970603943 28.6231327057
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.660681 0.559112 0.500893 }
+        <Binormal> { -0.353499 -0.222896 0.715072 }
+      }
+      <Normal> { -0.141240 0.962798 0.230293 }
+    }
+    <Vertex> 5807 {
+      1.96249687672 -50.376991272 26.806678772
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.555204 0.617695 0.556957 }
+        <Binormal> { -0.575456 -0.197832 0.793051 }
+      }
+      <Normal> { -0.615009 0.744163 -0.260628 }
+    }
+    <Vertex> 5808 {
+      1.33597314358 -49.8583564758 27.8350524902
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.558355 0.625095 0.545432 }
+        <Binormal> { -0.765307 0.134451 0.629352 }
+      }
+      <Normal> { -0.314158 0.775445 -0.547685 }
+    }
+    <Vertex> 5809 {
+      1.96249687672 -50.376991272 26.806678772
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.555204 0.617695 0.556957 }
+        <Binormal> { -0.575456 -0.197832 0.793051 }
+      }
+      <Normal> { -0.615009 0.744163 -0.260628 }
+    }
+    <Vertex> 5810 {
+      0.20112003386 -53.0143852234 24.4598331451
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.457046 0.672984 0.581551 }
+        <Binormal> { -0.614985 -0.232041 0.751845 }
+      }
+      <Normal> { -0.664418 0.666677 -0.337718 }
+    }
+    <Vertex> 5811 {
+      -0.71830868721 -52.8393859863 25.3268032074
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.466426 0.676844 0.569499 }
+        <Binormal> { -0.827480 0.110190 0.546755 }
+      }
+      <Normal> { -0.277444 0.769616 -0.574999 }
+    }
+    <Vertex> 5812 {
+      1.33597314358 -49.8583564758 27.8350524902
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.558355 0.625095 0.545432 }
+        <Binormal> { -0.765307 0.134451 0.629352 }
+      }
+      <Normal> { -0.314158 0.775445 -0.547685 }
+    }
+    <Vertex> 5813 {
+      -0.71830868721 -52.8393859863 25.3268032074
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.466426 0.676844 0.569499 }
+        <Binormal> { -0.827480 0.110190 0.546755 }
+      }
+      <Normal> { -0.277444 0.769616 -0.574999 }
+    }
+    <Vertex> 5814 {
+      -1.17684531212 -52.576335907 25.8701553345
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.470475 0.673124 0.570576 }
+        <Binormal> { -0.342647 -0.455293 0.819654 }
+      }
+      <Normal> { -0.839045 0.541734 -0.049837 }
+    }
+    <Vertex> 5815 {
+      1.03062832355 -49.4599380493 28.530418396
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.574234 0.613517 0.542082 }
+        <Binormal> { -0.294722 -0.462324 0.835451 }
+      }
+      <Normal> { -0.741722 0.662435 0.104923 }
+    }
+    <Vertex> 5816 {
+      1.33597314358 -49.8583564758 27.8350524902
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.558355 0.625095 0.545432 }
+        <Binormal> { -0.765307 0.134451 0.629352 }
+      }
+      <Normal> { -0.314158 0.775445 -0.547685 }
+    }
+    <Vertex> 5817 {
+      1.03062832355 -49.4599380493 28.530418396
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.574234 0.613517 0.542082 }
+        <Binormal> { -0.294722 -0.462324 0.835451 }
+      }
+      <Normal> { -0.741722 0.662435 0.104923 }
+    }
+    <Vertex> 5818 {
+      2.84836363792 -48.2757644653 29.6699867249
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.487951 0.852512 0.187423 }
+        <Binormal> { 0.068254 -0.211164 0.782802 }
+      }
+      <Normal> { -0.423261 0.864772 0.270180 }
+    }
+    <Vertex> 5819 {
+      3.55173397064 -47.9415893555 29.5095386505
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.656612 0.568009 0.496212 }
+        <Binormal> { -0.604042 0.145048 0.633261 }
+      }
+      <Normal> { 0.015320 0.977691 -0.209326 }
+    }
+    <Vertex> 5820 {
+      -1.40306890011 -55.422706604 21.8970947266
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.213782 0.760277 -0.613361 }
+    }
+    <Vertex> 5821 {
+      -0.71830868721 -52.8393859863 25.3268032074
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.157488 0.594136 0.788796 }
+        <Binormal> { -0.948698 -0.128291 0.286044 }
+      }
+      <Normal> { -0.277444 0.769616 -0.574999 }
+    }
+    <Vertex> 5822 {
+      0.20112003386 -53.0143852234 24.4598331451
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.415722 -0.705226 -0.574278 }
+        <Binormal> { 0.621048 0.241173 -0.745745 }
+      }
+      <Normal> { -0.664418 0.666677 -0.337718 }
+    }
+    <Vertex> 5823 {
+      -0.414448976517 -55.2739105225 21.7288970947
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.240018 -0.768187 -0.593489 }
+        <Binormal> { 0.649610 0.327216 -0.686248 }
+      }
+      <Normal> { -0.721366 0.550249 -0.420484 }
+    }
+    <Vertex> 5824 {
+      -1.40306890011 -55.422706604 21.8970947266
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.213782 0.760277 -0.613361 }
+    }
+    <Vertex> 5825 {
+      -0.414448976517 -55.2739105225 21.7288970947
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.240018 -0.768187 -0.593489 }
+        <Binormal> { 0.649610 0.327216 -0.686248 }
+      }
+      <Normal> { -0.721366 0.550249 -0.420484 }
+    }
+    <Vertex> 5826 {
+      0.142042249441 -57.5461273193 18.6940250397
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.323305 -0.703492 -0.632865 }
+        <Binormal> { 0.466542 0.700375 -0.540198 }
+      }
+      <Normal> { -0.823267 0.120609 -0.554643 }
+    }
+    <Vertex> 5827 {
+      -0.756666958332 -58.0987281799 18.9326705933
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.159780 -0.661468 -0.732756 }
+        <Binormal> { 0.928430 0.263012 -0.034977 }
+      }
+      <Normal> { -0.174322 0.502762 -0.846644 }
+    }
+    <Vertex> 5828 {
+      -1.40306890011 -55.422706604 21.8970947266
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.213782 0.760277 -0.613361 }
+    }
+    <Vertex> 5829 {
+      -0.756666958332 -58.0987281799 18.9326705933
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.159780 -0.661468 -0.732756 }
+        <Binormal> { 0.928430 0.263012 -0.034977 }
+      }
+      <Normal> { -0.174322 0.502762 -0.846644 }
+    }
+    <Vertex> 5830 {
+      -1.57638907433 -58.074508667 18.9569988251
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.206726 -0.854383 -0.476723 }
+        <Binormal> { 0.644197 0.485597 -0.590936 }
+      }
+      <Normal> { -0.736381 0.184942 -0.650777 }
+    }
+    <Vertex> 5831 {
+      -2.07242298126 -55.276966095 22.1703720093
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.824549 0.478133 -0.302438 }
+    }
+    <Vertex> 5832 {
+      -1.40306890011 -55.422706604 21.8970947266
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.213782 0.760277 -0.613361 }
+    }
+    <Vertex> 5833 {
+      -2.07242298126 -55.276966095 22.1703720093
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.824549 0.478133 -0.302438 }
+    }
+    <Vertex> 5834 {
+      -1.17684531212 -52.576335907 25.8701553345
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.167504 -0.344411 -0.923732 }
+        <Binormal> { 0.517604 0.766738 -0.379735 }
+      }
+      <Normal> { -0.839045 0.541734 -0.049837 }
+    }
+    <Vertex> 5835 {
+      -0.71830868721 -52.8393859863 25.3268032074
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.157488 0.594136 0.788796 }
+        <Binormal> { -0.948698 -0.128291 0.286044 }
+      }
+      <Normal> { -0.277444 0.769616 -0.574999 }
+    }
+    <Vertex> 5836 {
+      4.17422914505 -64.4882965088 23.7871646881
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.495814 0.133005 -0.858183 }
+        <Binormal> { -0.334141 0.882687 0.329852 }
+      }
+      <Normal> { -0.810816 -0.447768 0.376873 }
+    }
+    <Vertex> 5837 {
+      2.04094743729 -63.3960609436 20.147397995
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.489514 0.250630 -0.835201 }
+        <Binormal> { -0.412030 0.776222 0.474424 }
+      }
+      <Normal> { -0.792047 -0.563646 0.234321 }
+    }
+    <Vertex> 5838 {
+      2.69709229469 -64.4769821167 18.7063312531
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.443143 0.322655 -0.836372 }
+        <Binormal> { -0.779677 0.219425 0.497754 }
+      }
+      <Normal> { -0.481521 -0.772637 -0.413648 }
+    }
+    <Vertex> 5839 {
+      4.20942115784 -66.0391311646 21.9471530914
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.416082 0.289054 -0.862162 }
+        <Binormal> { -0.784503 0.364123 0.500681 }
+      }
+      <Normal> { -0.444105 -0.894803 -0.045106 }
+    }
+    <Vertex> 5840 {
+      4.17422914505 -64.4882965088 23.7871646881
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.495814 0.133005 -0.858183 }
+        <Binormal> { -0.334141 0.882687 0.329852 }
+      }
+      <Normal> { -0.810816 -0.447768 0.376873 }
+    }
+    <Vertex> 5841 {
+      4.20942115784 -66.0391311646 21.9471530914
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.416082 0.289054 -0.862162 }
+        <Binormal> { -0.784503 0.364123 0.500681 }
+      }
+      <Normal> { -0.444105 -0.894803 -0.045106 }
+    }
+    <Vertex> 5842 {
+      5.78391265869 -66.6214065552 25.1025238037
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.769603 0.130363 -0.625074 }
+        <Binormal> { -0.585617 0.245917 0.772310 }
+      }
+      <Normal> { -0.247780 -0.961547 0.118290 }
+    }
+    <Vertex> 5843 {
+      6.19608354568 -64.919960022 27.1696968079
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.719927 0.178832 -0.670614 }
+        <Binormal> { -0.279024 0.805058 0.514225 }
+      }
+      <Normal> { -0.561541 -0.574786 0.595172 }
+    }
+    <Vertex> 5844 {
+      4.17422914505 -64.4882965088 23.7871646881
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.495814 0.133005 -0.858183 }
+        <Binormal> { -0.334141 0.882687 0.329852 }
+      }
+      <Normal> { -0.810816 -0.447768 0.376873 }
+    }
+    <Vertex> 5845 {
+      6.19608354568 -64.919960022 27.1696968079
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.719927 0.178832 -0.670614 }
+        <Binormal> { -0.279024 0.805058 0.514225 }
+      }
+      <Normal> { -0.561541 -0.574786 0.595172 }
+    }
+    <Vertex> 5846 {
+      6.95615911484 -61.3759651184 30.5615463257
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.758054 0.338760 -0.557311 }
+        <Binormal> { -0.001578 0.833070 0.508526 }
+      }
+      <Normal> { -0.471633 -0.460067 0.752220 }
+    }
+    <Vertex> 5847 {
+      3.72451853752 -62.1558456421 25.5012397766
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.520744 -0.057968 -0.851743 }
+        <Binormal> { -0.442641 0.870592 0.211374 }
+      }
+      <Normal> { -0.748894 -0.489273 0.446913 }
+    }
+    <Vertex> 5848 {
+      4.17422914505 -64.4882965088 23.7871646881
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.495814 0.133005 -0.858183 }
+        <Binormal> { -0.334141 0.882687 0.329852 }
+      }
+      <Normal> { -0.810816 -0.447768 0.376873 }
+    }
+    <Vertex> 5849 {
+      3.72451853752 -62.1558456421 25.5012397766
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.520744 -0.057968 -0.851743 }
+        <Binormal> { -0.442641 0.870592 0.211374 }
+      }
+      <Normal> { -0.748894 -0.489273 0.446913 }
+    }
+    <Vertex> 5850 {
+      1.91504585743 -61.9371261597 22.3161640167
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.493452 0.164072 -0.854158 }
+        <Binormal> { -0.412977 0.819857 0.396062 }
+      }
+      <Normal> { -0.755943 -0.551286 0.352947 }
+    }
+    <Vertex> 5851 {
+      2.04094743729 -63.3960609436 20.147397995
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.489514 0.250630 -0.835201 }
+        <Binormal> { -0.412030 0.776222 0.474424 }
+      }
+      <Normal> { -0.792047 -0.563646 0.234321 }
+    }
+    <Vertex> 5852 {
+      8.15692710876 -65.4776077271 27.4970588684
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.982037 0.149335 0.115334 }
+        <Binormal> { 0.186098 0.672602 0.713684 }
+      }
+      <Normal> { 0.029695 -0.731254 0.681417 }
+    }
+    <Vertex> 5853 {
+      8.27652549744 -66.6771774292 25.7965221405
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.990993 -0.119916 -0.059600 }
+        <Binormal> { -0.069326 0.078819 0.994133 }
+      }
+      <Normal> { 0.089236 -0.992370 0.084902 }
+    }
+    <Vertex> 5854 {
+      11.3368883133 -65.9494628906 25.4364871979
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.962404 -0.171920 0.210291 }
+        <Binormal> { 0.189781 0.108251 0.957036 }
+      }
+      <Normal> { 0.370769 -0.928190 0.031465 }
+    }
+    <Vertex> 5855 {
+      10.5710554123 -65.2273788452 26.6608848572
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.940424 -0.097477 0.325732 }
+        <Binormal> { 0.149337 0.741374 0.653012 }
+      }
+      <Normal> { 0.342357 -0.658895 0.669759 }
+    }
+    <Vertex> 5856 {
+      8.15692710876 -65.4776077271 27.4970588684
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.982037 0.149335 0.115334 }
+        <Binormal> { 0.186098 0.672602 0.713684 }
+      }
+      <Normal> { 0.029695 -0.731254 0.681417 }
+    }
+    <Vertex> 5857 {
+      10.5710554123 -65.2273788452 26.6608848572
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.940424 -0.097477 0.325732 }
+        <Binormal> { 0.149337 0.741374 0.653012 }
+      }
+      <Normal> { 0.342357 -0.658895 0.669759 }
+    }
+    <Vertex> 5858 {
+      10.5000171661 -63.6280326843 28.0339202881
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.894995 -0.016929 0.445755 }
+        <Binormal> { 0.268194 0.777407 0.568010 }
+      }
+      <Normal> { 0.384991 -0.627369 0.676870 }
+    }
+    <Vertex> 5859 {
+      8.70036315918 -63.4575080872 29.2964324951
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.723091 0.459513 0.515739 }
+        <Binormal> { 0.678545 0.610345 0.407548 }
+      }
+      <Normal> { 0.149541 -0.658650 0.737419 }
+    }
+    <Vertex> 5860 {
+      8.15692710876 -65.4776077271 27.4970588684
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.982037 0.149335 0.115334 }
+        <Binormal> { 0.186098 0.672602 0.713684 }
+      }
+      <Normal> { 0.029695 -0.731254 0.681417 }
+    }
+    <Vertex> 5861 {
+      8.70036315918 -63.4575080872 29.2964324951
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.723091 0.459513 0.515739 }
+        <Binormal> { 0.678545 0.610345 0.407548 }
+      }
+      <Normal> { 0.149541 -0.658650 0.737419 }
+    }
+    <Vertex> 5862 {
+      6.95615911484 -61.3759651184 30.5615463257
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.758054 0.338760 -0.557311 }
+        <Binormal> { -0.001578 0.833070 0.508526 }
+      }
+      <Normal> { -0.471633 -0.460067 0.752220 }
+    }
+    <Vertex> 5863 {
+      6.19608354568 -64.919960022 27.1696968079
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.719927 0.178832 -0.670614 }
+        <Binormal> { -0.279024 0.805058 0.514225 }
+      }
+      <Normal> { -0.561541 -0.574786 0.595172 }
+    }
+    <Vertex> 5864 {
+      8.15692710876 -65.4776077271 27.4970588684
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.982037 0.149335 0.115334 }
+        <Binormal> { 0.186098 0.672602 0.713684 }
+      }
+      <Normal> { 0.029695 -0.731254 0.681417 }
+    }
+    <Vertex> 5865 {
+      6.19608354568 -64.919960022 27.1696968079
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.719927 0.178832 -0.670614 }
+        <Binormal> { -0.279024 0.805058 0.514225 }
+      }
+      <Normal> { -0.561541 -0.574786 0.595172 }
+    }
+    <Vertex> 5866 {
+      5.78391265869 -66.6214065552 25.1025238037
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.769603 0.130363 -0.625074 }
+        <Binormal> { -0.585617 0.245917 0.772310 }
+      }
+      <Normal> { -0.247780 -0.961547 0.118290 }
+    }
+    <Vertex> 5867 {
+      8.27652549744 -66.6771774292 25.7965221405
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.990993 -0.119916 -0.059600 }
+        <Binormal> { -0.069326 0.078819 0.994133 }
+      }
+      <Normal> { 0.089236 -0.992370 0.084902 }
+    }
+    <Vertex> 5868 {
+      13.9527606964 -63.2353973389 26.5528011322
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.790249 -0.611979 -0.031435 }
+        <Binormal> { -0.456198 0.553291 0.696907 }
+      }
+      <Normal> { 0.408338 -0.565661 0.716392 }
+    }
+    <Vertex> 5869 {
+      14.6146345139 -64.1812820435 25.4297657013
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.802159 -0.594597 -0.054724 }
+        <Binormal> { -0.094506 0.035961 0.994552 }
+      }
+      <Normal> { 0.609302 -0.788202 0.086398 }
+    }
+    <Vertex> 5870 {
+      16.134727478 -62.3930854797 25.7638015747
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.714666 -0.695506 -0.074320 }
+        <Binormal> { -0.096866 -0.003563 0.964809 }
+      }
+      <Normal> { 0.845882 -0.526811 0.082980 }
+    }
+    <Vertex> 5871 {
+      16.5601425171 -61.0067749023 26.6479949951
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.759867 -0.649486 -0.027742 }
+        <Binormal> { -0.353500 0.381569 0.749363 }
+      }
+      <Normal> { 0.787408 -0.313150 0.530900 }
+    }
+    <Vertex> 5872 {
+      13.9527606964 -63.2353973389 26.5528011322
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.790249 -0.611979 -0.031435 }
+        <Binormal> { -0.456198 0.553291 0.696907 }
+      }
+      <Normal> { 0.408338 -0.565661 0.716392 }
+    }
+    <Vertex> 5873 {
+      16.5601425171 -61.0067749023 26.6479949951
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.759867 -0.649486 -0.027742 }
+        <Binormal> { -0.353500 0.381569 0.749363 }
+      }
+      <Normal> { 0.787408 -0.313150 0.530900 }
+    }
+    <Vertex> 5874 {
+      15.4619607925 -58.7914543152 28.5970973969
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.331105 0.795859 0.506867 }
+        <Binormal> { 0.558842 0.598245 -0.574280 }
+      }
+      <Normal> { 0.760277 -0.093112 0.642842 }
+    }
+    <Vertex> 5875 {
+      12.5545082092 -61.9969100952 28.2067451477
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.713742 -0.695709 -0.081009 }
+        <Binormal> { -0.522711 0.452210 0.721823 }
+      }
+      <Normal> { 0.440870 -0.581591 0.683615 }
+    }
+    <Vertex> 5876 {
+      13.9527606964 -63.2353973389 26.5528011322
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.790249 -0.611979 -0.031435 }
+        <Binormal> { -0.456198 0.553291 0.696907 }
+      }
+      <Normal> { 0.408338 -0.565661 0.716392 }
+    }
+    <Vertex> 5877 {
+      12.5545082092 -61.9969100952 28.2067451477
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.713742 -0.695709 -0.081009 }
+        <Binormal> { -0.522711 0.452210 0.721823 }
+      }
+      <Normal> { 0.440870 -0.581591 0.683615 }
+    }
+    <Vertex> 5878 {
+      10.5000171661 -63.6280326843 28.0339202881
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.832082 -0.554564 -0.009909 }
+        <Binormal> { -0.381585 0.559396 0.735525 }
+      }
+      <Normal> { 0.384991 -0.627369 0.676870 }
+    }
+    <Vertex> 5879 {
+      10.5710554123 -65.2273788452 26.6608848572
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.861302 -0.507347 0.027528 }
+        <Binormal> { -0.321662 0.586290 0.741201 }
+      }
+      <Normal> { 0.342357 -0.658895 0.669759 }
+    }
+    <Vertex> 5880 {
+      13.9527606964 -63.2353973389 26.5528011322
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.790249 -0.611979 -0.031435 }
+        <Binormal> { -0.456198 0.553291 0.696907 }
+      }
+      <Normal> { 0.408338 -0.565661 0.716392 }
+    }
+    <Vertex> 5881 {
+      10.5710554123 -65.2273788452 26.6608848572
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.861302 -0.507347 0.027528 }
+        <Binormal> { -0.321662 0.586290 0.741201 }
+      }
+      <Normal> { 0.342357 -0.658895 0.669759 }
+    }
+    <Vertex> 5882 {
+      11.3368883133 -65.9494628906 25.4364871979
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.805595 -0.573685 0.147996 }
+        <Binormal> { 0.119318 0.080220 0.960450 }
+      }
+      <Normal> { 0.370769 -0.928190 0.031465 }
+    }
+    <Vertex> 5883 {
+      14.6146345139 -64.1812820435 25.4297657013
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.802159 -0.594597 -0.054724 }
+        <Binormal> { -0.094506 0.035961 0.994552 }
+      }
+      <Normal> { 0.609302 -0.788202 0.086398 }
+    }
+    <Vertex> 5884 {
+      -0.254177510738 -60.8567047119 19.0483417511
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.569642 0.821643 0.020286 }
+        <Binormal> { 0.098895 0.044024 0.993955 }
+      }
+      <Normal> { -0.825861 -0.553667 0.106693 }
+    }
+    <Vertex> 5885 {
+      -1.79658377171 -57.8617210388 20.2230319977
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.432319 0.839460 0.329252 }
+        <Binormal> { 0.234524 -0.244708 0.931844 }
+      }
+      <Normal> { -0.918699 -0.371563 0.133641 }
+    }
+    <Vertex> 5886 {
+      -1.57638907433 -58.074508667 18.9569988251
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.457128 0.833841 0.309425 }
+        <Binormal> { -0.599870 -0.525343 0.529482 }
+      }
+      <Normal> { -0.736381 0.184942 -0.650777 }
+    }
+    <Vertex> 5887 {
+      0.390968948603 -61.4816398621 17.7559661865
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.554871 0.831300 0.032547 }
+        <Binormal> { -0.602251 -0.428359 0.673616 }
+      }
+      <Normal> { -0.575488 -0.351817 -0.738243 }
+    }
+    <Vertex> 5888 {
+      -0.254177510738 -60.8567047119 19.0483417511
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.569642 0.821643 0.020286 }
+        <Binormal> { 0.098895 0.044024 0.993955 }
+      }
+      <Normal> { -0.825861 -0.553667 0.106693 }
+    }
+    <Vertex> 5889 {
+      0.390968948603 -61.4816398621 17.7559661865
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.554871 0.831300 0.032547 }
+        <Binormal> { -0.602251 -0.428359 0.673616 }
+      }
+      <Normal> { -0.575488 -0.351817 -0.738243 }
+    }
+    <Vertex> 5890 {
+      2.69709229469 -64.4769821167 18.7063312531
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.614843 0.739576 -0.273854 }
+        <Binormal> { -0.517514 -0.122462 0.831172 }
+      }
+      <Normal> { -0.481521 -0.772637 -0.413648 }
+    }
+    <Vertex> 5891 {
+      2.04094743729 -63.3960609436 20.147397995
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.638426 0.706362 -0.305720 }
+        <Binormal> { -0.006802 0.391741 0.919318 }
+      }
+      <Normal> { -0.792047 -0.563646 0.234321 }
+    }
+    <Vertex> 5892 {
+      -0.254177510738 -60.8567047119 19.0483417511
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.569642 0.821643 0.020286 }
+        <Binormal> { 0.098895 0.044024 0.993955 }
+      }
+      <Normal> { -0.825861 -0.553667 0.106693 }
+    }
+    <Vertex> 5893 {
+      2.04094743729 -63.3960609436 20.147397995
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.638426 0.706362 -0.305720 }
+        <Binormal> { -0.006802 0.391741 0.919318 }
+      }
+      <Normal> { -0.792047 -0.563646 0.234321 }
+    }
+    <Vertex> 5894 {
+      1.91504585743 -61.9371261597 22.3161640167
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.663412 0.693579 -0.280772 }
+        <Binormal> { 0.090010 0.446397 0.890036 }
+      }
+      <Normal> { -0.755943 -0.551286 0.352947 }
+    }
+    <Vertex> 5895 {
+      0.0693439394236 -60.1473617554 21.6627197266
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.590887 0.806348 0.025615 }
+        <Binormal> { 0.288942 0.181882 0.939765 }
+      }
+      <Normal> { -0.761681 -0.551012 0.340831 }
+    }
+    <Vertex> 5896 {
+      -0.254177510738 -60.8567047119 19.0483417511
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.569642 0.821643 0.020286 }
+        <Binormal> { 0.098895 0.044024 0.993955 }
+      }
+      <Normal> { -0.825861 -0.553667 0.106693 }
+    }
+    <Vertex> 5897 {
+      0.0693439394236 -60.1473617554 21.6627197266
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.590887 0.806348 0.025615 }
+        <Binormal> { 0.288942 0.181882 0.939765 }
+      }
+      <Normal> { -0.761681 -0.551012 0.340831 }
+    }
+    <Vertex> 5898 {
+      -1.13030791283 -57.7813148499 22.448179245
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.433007 0.846578 0.309534 }
+        <Binormal> { 0.452033 -0.091594 0.882862 }
+      }
+      <Normal> { -0.813898 -0.447645 0.370281 }
+    }
+    <Vertex> 5899 {
+      -1.79658377171 -57.8617210388 20.2230319977
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.432319 0.839460 0.329252 }
+        <Binormal> { 0.234524 -0.244708 0.931844 }
+      }
+      <Normal> { -0.918699 -0.371563 0.133641 }
+    }
+    <Vertex> 5900 {
+      1.80385303497 -50.289226532 29.4709873199
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.548766 0.711720 -0.438532 }
+        <Binormal> { 0.550798 0.700809 0.448134 }
+      }
+      <Normal> { -0.663533 0.043947 0.746818 }
+    }
+    <Vertex> 5901 {
+      1.03062832355 -49.4599380493 28.530418396
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.524867 0.562923 -0.638461 }
+        <Binormal> { 0.482002 0.528631 0.069842 }
+      }
+      <Normal> { -0.741722 0.662435 0.104923 }
+    }
+    <Vertex> 5902 {
+      -1.17684531212 -52.576335907 25.8701553345
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.167504 -0.344411 -0.923732 }
+        <Binormal> { 0.517604 0.766738 -0.379735 }
+      }
+      <Normal> { -0.839045 0.541734 -0.049837 }
+    }
+    <Vertex> 5903 {
+      -0.323559612036 -53.0286445618 27.0135822296
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.622999 0.467943 -0.626819 }
+        <Binormal> { 0.180215 0.864179 0.466024 }
+      }
+      <Normal> { -0.796442 -0.149815 0.585803 }
+    }
+    <Vertex> 5904 {
+      1.80385303497 -50.289226532 29.4709873199
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.548766 0.711720 -0.438532 }
+        <Binormal> { 0.550798 0.700809 0.448134 }
+      }
+      <Normal> { -0.663533 0.043947 0.746818 }
+    }
+    <Vertex> 5905 {
+      -0.323559612036 -53.0286445618 27.0135822296
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.622999 0.467943 -0.626819 }
+        <Binormal> { 0.180215 0.864179 0.466024 }
+      }
+      <Normal> { -0.796442 -0.149815 0.585803 }
+    }
+    <Vertex> 5906 {
+      1.05210494995 -54.2505302429 28.1127758026
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.188815 0.966731 0.172571 }
+        <Binormal> { 0.669526 -0.001628 0.741667 }
+      }
+      <Normal> { -0.724906 -0.216498 0.653920 }
+    }
+    <Vertex> 5907 {
+      3.0478978157 -52.4273338318 30.2153244019
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.379627 0.914879 -0.137406 }
+        <Binormal> { 0.727590 0.386952 0.566220 }
+      }
+      <Normal> { -0.576922 -0.101169 0.810480 }
+    }
+    <Vertex> 5908 {
+      1.80385303497 -50.289226532 29.4709873199
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.548766 0.711720 -0.438532 }
+        <Binormal> { 0.550798 0.700809 0.448134 }
+      }
+      <Normal> { -0.663533 0.043947 0.746818 }
+    }
+    <Vertex> 5909 {
+      3.0478978157 -52.4273338318 30.2153244019
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.379627 0.914879 -0.137406 }
+        <Binormal> { 0.727590 0.386952 0.566220 }
+      }
+      <Normal> { -0.576922 -0.101169 0.810480 }
+    }
+    <Vertex> 5910 {
+      5.24601078033 -50.850528717 31.4785003662
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.159039 0.977787 -0.136529 }
+        <Binormal> { 0.977753 0.166541 0.053766 }
+      }
+      <Normal> { -0.093661 0.237770 0.966765 }
+    }
+    <Vertex> 5911 {
+      3.79164528847 -48.3936042786 30.6535129547
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.606100 0.650873 -0.457173 }
+        <Binormal> { 0.769095 0.616515 -0.141905 }
+      }
+      <Normal> { -0.244301 0.496475 0.832911 }
+    }
+    <Vertex> 5912 {
+      1.80385303497 -50.289226532 29.4709873199
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.548766 0.711720 -0.438532 }
+        <Binormal> { 0.550798 0.700809 0.448134 }
+      }
+      <Normal> { -0.663533 0.043947 0.746818 }
+    }
+    <Vertex> 5913 {
+      3.79164528847 -48.3936042786 30.6535129547
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.606100 0.650873 -0.457173 }
+        <Binormal> { 0.769095 0.616515 -0.141905 }
+      }
+      <Normal> { -0.244301 0.496475 0.832911 }
+    }
+    <Vertex> 5914 {
+      2.84836363792 -48.2757644653 29.6699867249
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.487951 0.852512 0.187423 }
+        <Binormal> { 0.068254 -0.211164 0.782802 }
+      }
+      <Normal> { -0.423261 0.864772 0.270180 }
+    }
+    <Vertex> 5915 {
+      1.03062832355 -49.4599380493 28.530418396
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.524867 0.562923 -0.638461 }
+        <Binormal> { 0.482002 0.528631 0.069842 }
+      }
+      <Normal> { -0.741722 0.662435 0.104923 }
+    }
+    <Vertex> 5916 {
+      -1.6717082262 -55.4025840759 23.4045219421
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.901364 -0.254341 0.350475 }
+    }
+    <Vertex> 5917 {
+      -0.323559612036 -53.0286445618 27.0135822296
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.297913 0.524592 0.797528 }
+        <Binormal> { 0.426789 -0.809703 0.373175 }
+      }
+      <Normal> { -0.796442 -0.149815 0.585803 }
+    }
+    <Vertex> 5918 {
+      -1.17684531212 -52.576335907 25.8701553345
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.167504 -0.344411 -0.923732 }
+        <Binormal> { 0.517604 0.766738 -0.379735 }
+      }
+      <Normal> { -0.839045 0.541734 -0.049837 }
+    }
+    <Vertex> 5919 {
+      -2.07242298126 -55.276966095 22.1703720093
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.824549 0.478133 -0.302438 }
+    }
+    <Vertex> 5920 {
+      -1.6717082262 -55.4025840759 23.4045219421
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.901364 -0.254341 0.350475 }
+    }
+    <Vertex> 5921 {
+      -2.07242298126 -55.276966095 22.1703720093
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.824549 0.478133 -0.302438 }
+    }
+    <Vertex> 5922 {
+      -1.57638907433 -58.074508667 18.9569988251
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.206726 -0.854383 -0.476723 }
+        <Binormal> { 0.644197 0.485597 -0.590936 }
+      }
+      <Normal> { -0.736381 0.184942 -0.650777 }
+    }
+    <Vertex> 5923 {
+      -1.79658377171 -57.8617210388 20.2230319977
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.031040 -0.611264 -0.790818 }
+        <Binormal> { -0.375528 0.730672 -0.550034 }
+      }
+      <Normal> { -0.918699 -0.371563 0.133641 }
+    }
+    <Vertex> 5924 {
+      -1.6717082262 -55.4025840759 23.4045219421
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.901364 -0.254341 0.350475 }
+    }
+    <Vertex> 5925 {
+      -1.79658377171 -57.8617210388 20.2230319977
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.031040 -0.611264 -0.790818 }
+        <Binormal> { -0.375528 0.730672 -0.550034 }
+      }
+      <Normal> { -0.918699 -0.371563 0.133641 }
+    }
+    <Vertex> 5926 {
+      -1.13030791283 -57.7813148499 22.448179245
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.412490 -0.003507 -0.910914 }
+        <Binormal> { -0.409096 0.894196 0.181809 }
+      }
+      <Normal> { -0.813898 -0.447645 0.370281 }
+    }
+    <Vertex> 5927 {
+      -0.671230614185 -55.8437271118 24.9683361053
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.578848 0.374223 -0.724449 }
+        <Binormal> { -0.055097 0.868483 0.492649 }
+      }
+      <Normal> { -0.813532 -0.325083 0.482101 }
+    }
+    <Vertex> 5928 {
+      -1.6717082262 -55.4025840759 23.4045219421
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.901364 -0.254341 0.350475 }
+    }
+    <Vertex> 5929 {
+      -0.671230614185 -55.8437271118 24.9683361053
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.578848 0.374223 -0.724449 }
+        <Binormal> { -0.055097 0.868483 0.492649 }
+      }
+      <Normal> { -0.813532 -0.325083 0.482101 }
+    }
+    <Vertex> 5930 {
+      1.05210494995 -54.2505302429 28.1127758026
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.541063 0.766474 -0.346035 }
+        <Binormal> { 0.426309 0.604672 0.672780 }
+      }
+      <Normal> { -0.724906 -0.216498 0.653920 }
+    }
+    <Vertex> 5931 {
+      -0.323559612036 -53.0286445618 27.0135822296
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.297913 0.524592 0.797528 }
+        <Binormal> { 0.426789 -0.809703 0.373175 }
+      }
+      <Normal> { -0.796442 -0.149815 0.585803 }
+    }
+    <Vertex> 5932 {
+      0.458703994751 -56.6445350647 26.2306137085
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.340784 0.485658 0.804986 }
+        <Binormal> { 0.549543 -0.797588 0.248551 }
+      }
+      <Normal> { -0.763939 -0.359355 0.535905 }
+    }
+    <Vertex> 5933 {
+      -0.671230614185 -55.8437271118 24.9683361053
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.310770 0.502774 0.806623 }
+        <Binormal> { 0.504607 -0.806036 0.307997 }
+      }
+      <Normal> { -0.813532 -0.325083 0.482101 }
+    }
+    <Vertex> 5934 {
+      -1.13030791283 -57.7813148499 22.448179245
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.162967 0.804078 0.571751 }
+        <Binormal> { 0.553677 -0.405004 0.727389 }
+      }
+      <Normal> { -0.813898 -0.447645 0.370281 }
+    }
+    <Vertex> 5935 {
+      0.709379971027 -58.1542396545 25.349855423
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.143746 0.637604 0.756835 }
+        <Binormal> { 0.660619 -0.630913 0.406047 }
+      }
+      <Normal> { -0.739921 -0.457259 0.493332 }
+    }
+    <Vertex> 5936 {
+      0.458703994751 -56.6445350647 26.2306137085
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.340784 0.485658 0.804986 }
+        <Binormal> { 0.549543 -0.797588 0.248551 }
+      }
+      <Normal> { -0.763939 -0.359355 0.535905 }
+    }
+    <Vertex> 5937 {
+      0.709379971027 -58.1542396545 25.349855423
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.143746 0.637604 0.756835 }
+        <Binormal> { 0.660619 -0.630913 0.406047 }
+      }
+      <Normal> { -0.739921 -0.457259 0.493332 }
+    }
+    <Vertex> 5938 {
+      2.37877416611 -57.9460144043 27.7202358246
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.367100 0.469970 0.802724 }
+        <Binormal> { 0.613311 -0.770354 0.170540 }
+      }
+      <Normal> { -0.685385 -0.412885 0.599780 }
+    }
+    <Vertex> 5939 {
+      2.16070532799 -56.2962188721 28.5234203339
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.502530 0.327205 0.800250 }
+        <Binormal> { 0.454182 -0.884439 0.076417 }
+      }
+      <Normal> { -0.695273 -0.300638 0.652791 }
+    }
+    <Vertex> 5940 {
+      0.458703994751 -56.6445350647 26.2306137085
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { 0.340784 0.485658 0.804986 }
+        <Binormal> { 0.549543 -0.797588 0.248551 }
+      }
+      <Normal> { -0.763939 -0.359355 0.535905 }
+    }
+    <Vertex> 5941 {
+      2.16070532799 -56.2962188721 28.5234203339
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.502530 0.327205 0.800250 }
+        <Binormal> { 0.454182 -0.884439 0.076417 }
+      }
+      <Normal> { -0.695273 -0.300638 0.652791 }
+    }
+    <Vertex> 5942 {
+      1.05210494995 -54.2505302429 28.1127758026
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.188815 0.966731 0.172571 }
+        <Binormal> { 0.669526 -0.001628 0.741667 }
+      }
+      <Normal> { -0.724906 -0.216498 0.653920 }
+    }
+    <Vertex> 5943 {
+      -0.671230614185 -55.8437271118 24.9683361053
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.310770 0.502774 0.806623 }
+        <Binormal> { 0.504607 -0.806036 0.307997 }
+      }
+      <Normal> { -0.813532 -0.325083 0.482101 }
+    }
+    <Vertex> 5944 {
+      2.18377685547 -60.0179138184 25.5644359589
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.651999 0.744451 -0.143841 }
+        <Binormal> { 0.272669 0.407210 0.871572 }
+      }
+      <Normal> { -0.714743 -0.520676 0.466872 }
+    }
+    <Vertex> 5945 {
+      0.709379971027 -58.1542396545 25.349855423
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.617927 0.781075 -0.089932 }
+        <Binormal> { 0.344207 0.371385 0.860487 }
+      }
+      <Normal> { -0.739921 -0.457259 0.493332 }
+    }
+    <Vertex> 5946 {
+      -1.13030791283 -57.7813148499 22.448179245
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.162967 0.804078 0.571751 }
+        <Binormal> { 0.553677 -0.405004 0.727389 }
+      }
+      <Normal> { -0.813898 -0.447645 0.370281 }
+    }
+    <Vertex> 5947 {
+      0.0693439394236 -60.1473617554 21.6627197266
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.590887 0.806348 0.025615 }
+        <Binormal> { 0.288942 0.181882 0.939765 }
+      }
+      <Normal> { -0.761681 -0.551012 0.340831 }
+    }
+    <Vertex> 5948 {
+      2.18377685547 -60.0179138184 25.5644359589
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.651999 0.744451 -0.143841 }
+        <Binormal> { 0.272669 0.407210 0.871572 }
+      }
+      <Normal> { -0.714743 -0.520676 0.466872 }
+    }
+    <Vertex> 5949 {
+      0.0693439394236 -60.1473617554 21.6627197266
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.590887 0.806348 0.025615 }
+        <Binormal> { 0.288942 0.181882 0.939765 }
+      }
+      <Normal> { -0.761681 -0.551012 0.340831 }
+    }
+    <Vertex> 5950 {
+      1.91504585743 -61.9371261597 22.3161640167
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.648806 0.752504 -0.113085 }
+        <Binormal> { 0.203251 0.314480 0.926529 }
+      }
+      <Normal> { -0.755943 -0.551286 0.352947 }
+    }
+    <Vertex> 5951 {
+      3.72451853752 -62.1558456421 25.5012397766
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.584494 0.811044 0.023974 }
+        <Binormal> { 0.374196 0.243264 0.893363 }
+      }
+      <Normal> { -0.748894 -0.489273 0.446913 }
+    }
+    <Vertex> 5952 {
+      2.18377685547 -60.0179138184 25.5644359589
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.651999 0.744451 -0.143841 }
+        <Binormal> { 0.272669 0.407210 0.871572 }
+      }
+      <Normal> { -0.714743 -0.520676 0.466872 }
+    }
+    <Vertex> 5953 {
+      3.72451853752 -62.1558456421 25.5012397766
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.584494 0.811044 0.023974 }
+        <Binormal> { 0.374196 0.243264 0.893363 }
+      }
+      <Normal> { -0.748894 -0.489273 0.446913 }
+    }
+    <Vertex> 5954 {
+      6.95615911484 -61.3759651184 30.5615463257
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.758054 0.338760 -0.557311 }
+        <Binormal> { -0.001578 0.833070 0.508526 }
+      }
+      <Normal> { -0.471633 -0.460067 0.752220 }
+    }
+    <Vertex> 5955 {
+      4.18153047562 -59.08253479 29.0265140533
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.716705 0.537045 -0.444879 }
+        <Binormal> { 0.165627 0.750441 0.639084 }
+      }
+      <Normal> { -0.655446 -0.400555 0.640217 }
+    }
+    <Vertex> 5956 {
+      2.18377685547 -60.0179138184 25.5644359589
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.651999 0.744451 -0.143841 }
+        <Binormal> { 0.272669 0.407210 0.871572 }
+      }
+      <Normal> { -0.714743 -0.520676 0.466872 }
+    }
+    <Vertex> 5957 {
+      4.18153047562 -59.08253479 29.0265140533
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.716705 0.537045 -0.444879 }
+        <Binormal> { 0.165627 0.750441 0.639084 }
+      }
+      <Normal> { -0.655446 -0.400555 0.640217 }
+    }
+    <Vertex> 5958 {
+      2.37877416611 -57.9460144043 27.7202358246
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.697837 0.638861 -0.323852 }
+        <Binormal> { 0.249463 0.640512 0.725992 }
+      }
+      <Normal> { -0.685385 -0.412885 0.599780 }
+    }
+    <Vertex> 5959 {
+      0.709379971027 -58.1542396545 25.349855423
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.617927 0.781075 -0.089932 }
+        <Binormal> { 0.344207 0.371385 0.860487 }
+      }
+      <Normal> { -0.739921 -0.457259 0.493332 }
+    }
+    <Vertex> 5960 {
+      10.693860054 -61.3618621826 30.3011131287
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.722634 0.300534 0.622478 }
+        <Binormal> { 0.587616 0.740876 0.324465 }
+      }
+      <Normal> { 0.348308 -0.593860 0.725211 }
+    }
+    <Vertex> 5961 {
+      9.03054904938 -59.9156417847 31.9637088776
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.602460 0.523829 0.602201 }
+        <Binormal> { 0.711675 0.566971 0.218798 }
+      }
+      <Normal> { 0.014527 -0.375805 0.926572 }
+    }
+    <Vertex> 5962 {
+      6.95615911484 -61.3759651184 30.5615463257
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.945138 0.310525 0.101433 }
+        <Binormal> { 0.280249 0.663113 0.581280 }
+      }
+      <Normal> { -0.471633 -0.460067 0.752220 }
+    }
+    <Vertex> 5963 {
+      8.70036315918 -63.4575080872 29.2964324951
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.723091 0.459513 0.515739 }
+        <Binormal> { 0.678545 0.610345 0.407548 }
+      }
+      <Normal> { 0.149541 -0.658650 0.737419 }
+    }
+    <Vertex> 5964 {
+      10.693860054 -61.3618621826 30.3011131287
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.722634 0.300534 0.622478 }
+        <Binormal> { 0.587616 0.740876 0.324465 }
+      }
+      <Normal> { 0.348308 -0.593860 0.725211 }
+    }
+    <Vertex> 5965 {
+      8.70036315918 -63.4575080872 29.2964324951
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.723091 0.459513 0.515739 }
+        <Binormal> { 0.678545 0.610345 0.407548 }
+      }
+      <Normal> { 0.149541 -0.658650 0.737419 }
+    }
+    <Vertex> 5966 {
+      10.5000171661 -63.6280326843 28.0339202881
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.727486 0.160108 0.667181 }
+        <Binormal> { 0.526941 0.749272 0.394762 }
+      }
+      <Normal> { 0.384991 -0.627369 0.676870 }
+    }
+    <Vertex> 5967 {
+      12.5545082092 -61.9969100952 28.2067451477
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.647729 0.221073 0.729091 }
+        <Binormal> { 0.575162 0.764232 0.279249 }
+      }
+      <Normal> { 0.440870 -0.581591 0.683615 }
+    }
+    <Vertex> 5968 {
+      10.693860054 -61.3618621826 30.3011131287
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.722634 0.300534 0.622478 }
+        <Binormal> { 0.587616 0.740876 0.324465 }
+      }
+      <Normal> { 0.348308 -0.593860 0.725211 }
+    }
+    <Vertex> 5969 {
+      12.5545082092 -61.9969100952 28.2067451477
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { -0.647729 0.221073 0.729091 }
+        <Binormal> { 0.575162 0.764232 0.279249 }
+      }
+      <Normal> { 0.440870 -0.581591 0.683615 }
+    }
+    <Vertex> 5970 {
+      15.4619607925 -58.7914543152 28.5970973969
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.665862 -0.208919 0.716227 }
+        <Binormal> { -0.067613 0.972575 0.220836 }
+      }
+      <Normal> { 0.760277 -0.093112 0.642842 }
+    }
+    <Vertex> 5971 {
+      12.5018510818 -59.2787475586 30.8540077209
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.830328 -0.000585 0.557274 }
+        <Binormal> { 0.184027 0.943155 0.275186 }
+      }
+      <Normal> { 0.502396 -0.331065 0.798700 }
+    }
+    <Vertex> 5972 {
+      10.693860054 -61.3618621826 30.3011131287
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.722634 0.300534 0.622478 }
+        <Binormal> { 0.587616 0.740876 0.324465 }
+      }
+      <Normal> { 0.348308 -0.593860 0.725211 }
+    }
+    <Vertex> 5973 {
+      12.5018510818 -59.2787475586 30.8540077209
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.830328 -0.000585 0.557274 }
+        <Binormal> { 0.184027 0.943155 0.275186 }
+      }
+      <Normal> { 0.502396 -0.331065 0.798700 }
+    }
+    <Vertex> 5974 {
+      10.6379995346 -58.7948532104 31.8346939087
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.733028 0.401123 0.549336 }
+        <Binormal> { 0.515700 0.828918 0.082871 }
+      }
+      <Normal> { 0.275430 -0.263771 0.924406 }
+    }
+    <Vertex> 5975 {
+      9.03054904938 -59.9156417847 31.9637088776
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.602460 0.523829 0.602201 }
+        <Binormal> { 0.711675 0.566971 0.218798 }
+      }
+      <Normal> { 0.014527 -0.375805 0.926572 }
+    }
+    <Vertex> 5976 {
+      12.4887657166 -57.2962608337 31.2980098724
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { -0.865575 -0.047063 0.498563 }
+        <Binormal> { -0.048400 0.998230 0.010201 }
+      }
+      <Normal> { 0.526017 0.016816 0.850276 }
+    }
+    <Vertex> 5977 {
+      12.5018510818 -59.2787475586 30.8540077209
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.830328 -0.000585 0.557274 }
+        <Binormal> { 0.184027 0.943155 0.275186 }
+      }
+      <Normal> { 0.502396 -0.331065 0.798700 }
+    }
+    <Vertex> 5978 {
+      15.4619607925 -58.7914543152 28.5970973969
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.750775 -0.115114 0.650450 }
+        <Binormal> { -0.013436 0.977152 0.157425 }
+      }
+      <Normal> { 0.760277 -0.093112 0.642842 }
+    }
+    <Vertex> 5979 {
+      13.3697414398 -56.219078064 30.2896232605
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.711324 0.448301 0.541289 }
+        <Binormal> { 0.022270 0.784148 -0.620174 }
+      }
+      <Normal> { 0.702475 0.429090 0.567766 }
+    }
+    <Vertex> 5980 {
+      12.4887657166 -57.2962608337 31.2980098724
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { -0.865575 -0.047063 0.498563 }
+        <Binormal> { -0.048400 0.998230 0.010201 }
+      }
+      <Normal> { 0.526017 0.016816 0.850276 }
+    }
+    <Vertex> 5981 {
+      13.3697414398 -56.219078064 30.2896232605
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.711324 0.448301 0.541289 }
+        <Binormal> { 0.022270 0.784148 -0.620174 }
+      }
+      <Normal> { 0.702475 0.429090 0.567766 }
+    }
+    <Vertex> 5982 {
+      10.5450992584 -54.4684066772 31.5363960266
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.917511 0.043101 0.395367 }
+        <Binormal> { -0.187671 0.812740 -0.524120 }
+      }
+      <Normal> { 0.501450 0.547685 0.669729 }
+    }
+    <Vertex> 5983 {
+      10.2548303604 -56.8194694519 32.2907142639
+      <UV>  {
+        0.791667 0.458333
+        <Tangent> { -0.939603 0.026035 0.341274 }
+        <Binormal> { 0.009671 0.997136 -0.049440 }
+      }
+      <Normal> { 0.288736 0.044618 0.956359 }
+    }
+    <Vertex> 5984 {
+      12.4887657166 -57.2962608337 31.2980098724
+      <UV>  {
+        0.666667 0.333333
+        <Tangent> { -0.865575 -0.047063 0.498563 }
+        <Binormal> { -0.048400 0.998230 0.010201 }
+      }
+      <Normal> { 0.526017 0.016816 0.850276 }
+    }
+    <Vertex> 5985 {
+      10.2548303604 -56.8194694519 32.2907142639
+      <UV>  {
+        0.791667 0.458333
+        <Tangent> { -0.939603 0.026035 0.341274 }
+        <Binormal> { 0.009671 0.997136 -0.049440 }
+      }
+      <Normal> { 0.288736 0.044618 0.956359 }
+    }
+    <Vertex> 5986 {
+      10.6379995346 -58.7948532104 31.8346939087
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.965908 -0.006011 0.258815 }
+        <Binormal> { 0.062712 0.964176 0.256435 }
+      }
+      <Normal> { 0.275430 -0.263771 0.924406 }
+    }
+    <Vertex> 5987 {
+      12.5018510818 -59.2787475586 30.8540077209
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.830328 -0.000585 0.557274 }
+        <Binormal> { 0.184027 0.943155 0.275186 }
+      }
+      <Normal> { 0.502396 -0.331065 0.798700 }
+    }
+    <Vertex> 5988 {
+      4.15501403809 -55.9553909302 30.3219890594
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.211395 0.972508 0.097674 }
+        <Binormal> { 0.780664 0.107888 0.615387 }
+      }
+      <Normal> { -0.584887 -0.220344 0.780602 }
+    }
+    <Vertex> 5989 {
+      2.16070532799 -56.2962188721 28.5234203339
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.336208 0.936519 0.099479 }
+        <Binormal> { 0.641258 0.150309 0.752213 }
+      }
+      <Normal> { -0.695273 -0.300638 0.652791 }
+    }
+    <Vertex> 5990 {
+      2.37877416611 -57.9460144043 27.7202358246
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.046825 0.914536 0.401784 }
+        <Binormal> { 0.714412 -0.247292 0.646143 }
+      }
+      <Normal> { -0.685385 -0.412885 0.599780 }
+    }
+    <Vertex> 5991 {
+      4.18153047562 -59.08253479 29.0265140533
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.007834 0.923833 0.382714 }
+        <Binormal> { 0.744753 -0.245833 0.608661 }
+      }
+      <Normal> { -0.655446 -0.400555 0.640217 }
+    }
+    <Vertex> 5992 {
+      4.15501403809 -55.9553909302 30.3219890594
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.211395 0.972508 0.097674 }
+        <Binormal> { 0.780664 0.107888 0.615387 }
+      }
+      <Normal> { -0.584887 -0.220344 0.780602 }
+    }
+    <Vertex> 5993 {
+      4.18153047562 -59.08253479 29.0265140533
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.007834 0.923833 0.382714 }
+        <Binormal> { 0.744753 -0.245833 0.608661 }
+      }
+      <Normal> { -0.655446 -0.400555 0.640217 }
+    }
+    <Vertex> 5994 {
+      6.95615911484 -61.3759651184 30.5615463257
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.082383 0.962209 0.259551 }
+        <Binormal> { 0.843204 -0.060442 0.491712 }
+      }
+      <Normal> { -0.471633 -0.460067 0.752220 }
+    }
+    <Vertex> 5995 {
+      6.24256706238 -55.8589019775 31.5977973938
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.159785 0.983427 0.085674 }
+        <Binormal> { 0.891729 0.106594 0.439545 }
+      }
+      <Normal> { -0.425398 -0.132664 0.895199 }
+    }
+    <Vertex> 5996 {
+      4.15501403809 -55.9553909302 30.3219890594
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.211395 0.972508 0.097674 }
+        <Binormal> { 0.780664 0.107888 0.615387 }
+      }
+      <Normal> { -0.584887 -0.220344 0.780602 }
+    }
+    <Vertex> 5997 {
+      6.24256706238 -55.8589019775 31.5977973938
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { -0.159785 0.983427 0.085674 }
+        <Binormal> { 0.891729 0.106594 0.439545 }
+      }
+      <Normal> { -0.425398 -0.132664 0.895199 }
+    }
+    <Vertex> 5998 {
+      5.24601078033 -50.850528717 31.4785003662
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.159039 0.977787 -0.136529 }
+        <Binormal> { 0.977753 0.166541 0.053766 }
+      }
+      <Normal> { -0.093661 0.237770 0.966765 }
+    }
+    <Vertex> 5999 {
+      3.0478978157 -52.4273338318 30.2153244019
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.379627 0.914879 -0.137406 }
+        <Binormal> { 0.727590 0.386952 0.566220 }
+      }
+      <Normal> { -0.576922 -0.101169 0.810480 }
+    }
+    <Vertex> 6000 {
+      4.15501403809 -55.9553909302 30.3219890594
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.211395 0.972508 0.097674 }
+        <Binormal> { 0.780664 0.107888 0.615387 }
+      }
+      <Normal> { -0.584887 -0.220344 0.780602 }
+    }
+    <Vertex> 6001 {
+      3.0478978157 -52.4273338318 30.2153244019
+      <UV>  {
+        0.750000 0.500000
+        <Tangent> { -0.379627 0.914879 -0.137406 }
+        <Binormal> { 0.727590 0.386952 0.566220 }
+      }
+      <Normal> { -0.576922 -0.101169 0.810480 }
+    }
+    <Vertex> 6002 {
+      1.05210494995 -54.2505302429 28.1127758026
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.188815 0.966731 0.172571 }
+        <Binormal> { 0.669526 -0.001628 0.741667 }
+      }
+      <Normal> { -0.724906 -0.216498 0.653920 }
+    }
+    <Vertex> 6003 {
+      2.16070532799 -56.2962188721 28.5234203339
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.336208 0.936519 0.099479 }
+        <Binormal> { 0.641258 0.150309 0.752213 }
+      }
+      <Normal> { -0.695273 -0.300638 0.652791 }
+    }
+    <Vertex> 6004 {
+      8.22430229187 -56.2436447144 32.3223419189
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.979148 0.155892 -0.130255 }
+        <Binormal> { 0.151911 0.987011 0.039335 }
+      }
+      <Normal> { -0.101657 -0.023988 0.994507 }
+    }
+    <Vertex> 6005 {
+      6.24256706238 -55.8589019775 31.5977973938
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.923962 0.179382 -0.337811 }
+        <Binormal> { 0.115767 0.970834 0.198885 }
+      }
+      <Normal> { -0.425398 -0.132664 0.895199 }
+    }
+    <Vertex> 6006 {
+      6.95615911484 -61.3759651184 30.5615463257
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { -0.945138 0.310525 0.101433 }
+        <Binormal> { 0.280249 0.663113 0.581280 }
+      }
+      <Normal> { -0.471633 -0.460067 0.752220 }
+    }
+    <Vertex> 6007 {
+      9.03054904938 -59.9156417847 31.9637088776
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.787859 -0.552320 -0.272435 }
+        <Binormal> { -0.614147 0.726051 0.304105 }
+      }
+      <Normal> { 0.014527 -0.375805 0.926572 }
+    }
+    <Vertex> 6008 {
+      8.22430229187 -56.2436447144 32.3223419189
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.979148 0.155892 -0.130255 }
+        <Binormal> { 0.151911 0.987011 0.039335 }
+      }
+      <Normal> { -0.101657 -0.023988 0.994507 }
+    }
+    <Vertex> 6009 {
+      9.03054904938 -59.9156417847 31.9637088776
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { -0.787859 -0.552320 -0.272435 }
+        <Binormal> { -0.614147 0.726051 0.304105 }
+      }
+      <Normal> { 0.014527 -0.375805 0.926572 }
+    }
+    <Vertex> 6010 {
+      10.6379995346 -58.7948532104 31.8346939087
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { -0.965908 -0.006011 0.258815 }
+        <Binormal> { 0.062712 0.964176 0.256435 }
+      }
+      <Normal> { 0.275430 -0.263771 0.924406 }
+    }
+    <Vertex> 6011 {
+      10.2548303604 -56.8194694519 32.2907142639
+      <UV>  {
+        0.791667 0.458333
+        <Tangent> { -0.939603 0.026035 0.341274 }
+        <Binormal> { 0.009671 0.997136 -0.049440 }
+      }
+      <Normal> { 0.288736 0.044618 0.956359 }
+    }
+    <Vertex> 6012 {
+      8.22430229187 -56.2436447144 32.3223419189
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.979148 0.155892 -0.130255 }
+        <Binormal> { 0.151911 0.987011 0.039335 }
+      }
+      <Normal> { -0.101657 -0.023988 0.994507 }
+    }
+    <Vertex> 6013 {
+      10.2548303604 -56.8194694519 32.2907142639
+      <UV>  {
+        0.791667 0.458333
+        <Tangent> { -0.939603 0.026035 0.341274 }
+        <Binormal> { 0.009671 0.997136 -0.049440 }
+      }
+      <Normal> { 0.288736 0.044618 0.956359 }
+    }
+    <Vertex> 6014 {
+      10.5450992584 -54.4684066772 31.5363960266
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { -0.917511 0.043101 0.395367 }
+        <Binormal> { -0.187671 0.812740 -0.524120 }
+      }
+      <Normal> { 0.501450 0.547685 0.669729 }
+    }
+    <Vertex> 6015 {
+      7.93869447708 -52.8322219849 31.8540382385
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.265236 0.455428 0.849818 }
+    }
+    <Vertex> 6016 {
+      8.22430229187 -56.2436447144 32.3223419189
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { -0.979148 0.155892 -0.130255 }
+        <Binormal> { 0.151911 0.987011 0.039335 }
+      }
+      <Normal> { -0.101657 -0.023988 0.994507 }
+    }
+    <Vertex> 6017 {
+      7.93869447708 -52.8322219849 31.8540382385
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.265236 0.455428 0.849818 }
+    }
+    <Vertex> 6018 {
+      5.24601078033 -50.850528717 31.4785003662
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { -0.873145 0.442032 -0.205487 }
+        <Binormal> { 0.476200 0.863373 -0.166206 }
+      }
+      <Normal> { -0.093661 0.237770 0.966765 }
+    }
+    <Vertex> 6019 {
+      6.24256706238 -55.8589019775 31.5977973938
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { -0.923962 0.179382 -0.337811 }
+        <Binormal> { 0.115767 0.970834 0.198885 }
+      }
+      <Normal> { -0.425398 -0.132664 0.895199 }
+    }
+    <Vertex> 6020 {
+      2.328799963 -73.8609008789 14.2929763794
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.995037 -0.080612 -0.058328 }
+        <Binormal> { -0.080604 -0.996618 0.002325 }
+      }
+      <Normal> { 0.044282 -0.001251 0.998993 }
+    }
+    <Vertex> 6021 {
+      4.953083992 -74.1303405762 14.0338163376
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.990005 -0.101645 -0.097768 }
+        <Binormal> { -0.100485 -0.993802 0.015701 }
+      }
+      <Normal> { 0.054598 0.010254 0.998444 }
+    }
+    <Vertex> 6022 {
+      4.19780635834 -71.6193466187 13.99081707
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.963402 0.259921 -0.065560 }
+        <Binormal> { 0.263033 -0.963752 0.044348 }
+      }
+      <Normal> { 0.051088 0.059816 0.996887 }
+    }
+    <Vertex> 6023 {
+      1.38754177094 -72.282951355 14.268406868
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.975195 0.212960 -0.060351 }
+        <Binormal> { 0.215232 -0.975483 0.035709 }
+      }
+      <Normal> { 0.023499 0.041749 0.998840 }
+    }
+    <Vertex> 6024 {
+      2.328799963 -73.8609008789 14.2929763794
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.995037 -0.080612 -0.058328 }
+        <Binormal> { -0.080604 -0.996618 0.002325 }
+      }
+      <Normal> { 0.044282 -0.001251 0.998993 }
+    }
+    <Vertex> 6025 {
+      1.38754177094 -72.282951355 14.268406868
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.975195 0.212960 -0.060351 }
+        <Binormal> { 0.215232 -0.975483 0.035709 }
+      }
+      <Normal> { 0.023499 0.041749 0.998840 }
+    }
+    <Vertex> 6026 {
+      -0.191067636013 -72.5777740479 14.2624254227
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.998886 0.043522 -0.018257 }
+        <Binormal> { 0.043696 -0.995870 0.016695 }
+      }
+      <Normal> { -0.059999 0.014100 0.998077 }
+    }
+    <Vertex> 6027 {
+      0.0906433984637 -73.7323760986 14.368719101
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.997786 -0.057297 -0.033767 }
+        <Binormal> { -0.058000 -0.992609 -0.029548 }
+      }
+      <Normal> { -0.070345 -0.025575 0.997192 }
+    }
+    <Vertex> 6028 {
+      2.328799963 -73.8609008789 14.2929763794
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.995037 -0.080612 -0.058328 }
+        <Binormal> { -0.080604 -0.996618 0.002325 }
+      }
+      <Normal> { 0.044282 -0.001251 0.998993 }
+    }
+    <Vertex> 6029 {
+      0.0906433984637 -73.7323760986 14.368719101
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.997786 -0.057297 -0.033767 }
+        <Binormal> { -0.058000 -0.992609 -0.029548 }
+      }
+      <Normal> { -0.070345 -0.025575 0.997192 }
+    }
+    <Vertex> 6030 {
+      -0.185277283192 -74.8715438843 14.190325737
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.986054 -0.166402 -0.002955 }
+        <Binormal> { -0.165800 -0.981591 -0.050309 }
+      }
+      <Normal> { -0.084597 -0.036744 0.995727 }
+    }
+    <Vertex> 6031 {
+      1.44357275963 -75.3955993652 14.2544813156
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.931950 -0.361371 -0.029655 }
+        <Binormal> { -0.361661 -0.931808 -0.010849 }
+      }
+      <Normal> { -0.002869 -0.010529 0.999939 }
+    }
+    <Vertex> 6032 {
+      2.328799963 -73.8609008789 14.2929763794
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.995037 -0.080612 -0.058328 }
+        <Binormal> { -0.080604 -0.996618 0.002325 }
+      }
+      <Normal> { 0.044282 -0.001251 0.998993 }
+    }
+    <Vertex> 6033 {
+      1.44357275963 -75.3955993652 14.2544813156
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.931950 -0.361371 -0.029655 }
+        <Binormal> { -0.361661 -0.931808 -0.010849 }
+      }
+      <Normal> { -0.002869 -0.010529 0.999939 }
+    }
+    <Vertex> 6034 {
+      4.07204818726 -76.522354126 14.0548553467
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.997954 0.037472 -0.051801 }
+        <Binormal> { 0.037283 -0.999211 -0.004549 }
+      }
+      <Normal> { 0.040132 -0.003052 0.999176 }
+    }
+    <Vertex> 6035 {
+      4.953083992 -74.1303405762 14.0338163376
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.990005 -0.101645 -0.097768 }
+        <Binormal> { -0.100485 -0.993802 0.015701 }
+      }
+      <Normal> { 0.054598 0.010254 0.998444 }
+    }
+    <Vertex> 6036 {
+      8.89688682556 -74.7373199463 13.9474306107
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.021067 0.999717 -0.011081 }
+        <Binormal> { 0.999681 -0.021192 -0.011341 }
+      }
+      <Normal> { 0.011567 0.010559 0.999847 }
+    }
+    <Vertex> 6037 {
+      9.04659843445 -72.1648635864 13.8828315735
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.058081 0.997997 -0.025062 }
+        <Binormal> { 0.998125 -0.058193 -0.004134 }
+      }
+      <Normal> { 0.006561 0.041566 0.999084 }
+    }
+    <Vertex> 6038 {
+      4.19780635834 -71.6193466187 13.99081707
+      <UV>  {
+        0.000000 0.000000
+        <Tangent> { 0.963402 0.259921 -0.065560 }
+        <Binormal> { 0.263033 -0.963752 0.044348 }
+      }
+      <Normal> { 0.051088 0.059816 0.996887 }
+    }
+    <Vertex> 6039 {
+      4.953083992 -74.1303405762 14.0338163376
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.025639 0.999586 -0.013056 }
+        <Binormal> { 0.998164 -0.026311 -0.054312 }
+      }
+      <Normal> { 0.054598 0.010254 0.998444 }
+    }
+    <Vertex> 6040 {
+      8.89688682556 -74.7373199463 13.9474306107
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.021067 0.999717 -0.011081 }
+        <Binormal> { 0.999681 -0.021192 -0.011341 }
+      }
+      <Normal> { 0.011567 0.010559 0.999847 }
+    }
+    <Vertex> 6041 {
+      4.953083992 -74.1303405762 14.0338163376
+      <UV>  {
+        0.500000 0.000000
+        <Tangent> { 0.025639 0.999586 -0.013056 }
+        <Binormal> { 0.998164 -0.026311 -0.054312 }
+      }
+      <Normal> { 0.054598 0.010254 0.998444 }
+    }
+    <Vertex> 6042 {
+      4.07204818726 -76.522354126 14.0548553467
+      <UV>  {
+        1.000000 0.000000
+        <Tangent> { 0.940054 0.340469 -0.019495 }
+        <Binormal> { 0.340129 -0.940061 -0.016533 }
+      }
+      <Normal> { 0.040132 -0.003052 0.999176 }
+    }
+    <Vertex> 6043 {
+      8.89688682556 -77.1921234131 13.9474306107
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { 0.999939 -0.000000 -0.010529 }
+      }
+      <Normal> { 0.010529 -0.000702 0.999939 }
+    }
+    <Vertex> 6044 {
+      8.89688682556 -74.7373199463 13.9474306107
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.021067 0.999717 -0.011081 }
+        <Binormal> { 0.999681 -0.021192 -0.011341 }
+      }
+      <Normal> { 0.011567 0.010559 0.999847 }
+    }
+    <Vertex> 6045 {
+      8.89688682556 -77.1921234131 13.9474306107
+      <UV>  {
+        1.000000 0.500000
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { 0.999939 -0.000000 -0.010529 }
+      }
+      <Normal> { 0.010529 -0.000702 0.999939 }
+    }
+    <Vertex> 6046 {
+      13.5004501343 -77.9678878784 13.9474306107
+      <UV>  {
+        1.000000 1.000000
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { 1.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 6047 {
+      13.5004501343 -75.513092041 13.9474306107
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 0.999983 -0.005824 }
+        <Binormal> { 0.999974 0.000003 0.000549 }
+      }
+      <Normal> { -0.000549 0.008911 0.999939 }
+    }
+    <Vertex> 6048 {
+      8.89688682556 -74.7373199463 13.9474306107
+      <UV>  {
+        0.500000 0.500000
+        <Tangent> { 0.021067 0.999717 -0.011081 }
+        <Binormal> { 0.999681 -0.021192 -0.011341 }
+      }
+      <Normal> { 0.011567 0.010559 0.999847 }
+    }
+    <Vertex> 6049 {
+      13.5004501343 -75.513092041 13.9474306107
+      <UV>  {
+        0.500000 1.000000
+        <Tangent> { 0.000000 0.999983 -0.005824 }
+        <Binormal> { 0.999974 0.000003 0.000549 }
+      }
+      <Normal> { -0.000549 0.008911 0.999939 }
+    }
+    <Vertex> 6050 {
+      13.5004501343 -72.7486724854 13.9170331955
+      <UV>  {
+        0.000000 1.000000
+        <Tangent> { 0.028037 0.999449 -0.017790 }
+        <Binormal> { 0.999451 -0.027860 0.009958 }
+      }
+      <Normal> { -0.009095 0.030976 0.999451 }
+    }
+    <Vertex> 6051 {
+      9.04659843445 -72.1648635864 13.8828315735
+      <UV>  {
+        0.000000 0.500000
+        <Tangent> { 0.058081 0.997997 -0.025062 }
+        <Binormal> { 0.998125 -0.058193 -0.004134 }
+      }
+      <Normal> { 0.006561 0.041566 0.999084 }
+    }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 0 1 2 3 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4 5 6 7 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 8 9 10 11 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 12 13 14 15 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 16 17 18 19 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 20 21 22 23 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 24 25 26 27 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 28 29 30 31 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 32 33 34 35 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 36 37 38 39 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 40 41 42 43 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 44 45 46 47 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 48 49 50 51 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 52 53 54 55 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 56 57 58 59 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 60 61 62 63 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 64 65 66 67 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 68 69 70 71 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 72 73 74 75 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 76 77 78 79 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 80 81 82 83 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 84 85 86 87 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 88 89 90 91 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 92 93 94 95 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 96 97 98 99 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 100 101 102 103 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 104 105 106 107 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 108 109 110 111 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 112 113 114 115 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 116 117 118 119 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 120 121 122 123 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 124 125 126 127 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 128 129 130 131 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 132 133 134 135 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 136 137 138 139 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 140 141 142 143 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 144 145 146 147 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 148 149 150 151 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 152 153 154 155 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 156 157 158 159 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 160 161 162 163 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 164 165 166 167 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 168 169 170 171 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 172 173 174 175 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 176 177 178 179 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 180 181 182 183 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 184 185 186 187 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 188 189 190 191 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 192 193 194 195 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 196 197 198 199 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 200 201 202 203 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 204 205 206 207 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 208 209 210 211 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 212 213 214 215 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 216 217 218 219 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 220 221 222 223 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 224 225 226 227 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 228 229 230 231 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 232 233 234 235 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 236 237 238 239 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 240 241 242 243 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 244 245 246 247 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 248 249 250 251 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 252 253 254 255 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 256 257 258 259 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 260 261 262 263 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 264 265 266 267 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 268 269 270 271 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 272 273 274 275 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 276 277 278 279 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 280 281 282 283 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 284 285 286 287 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 288 289 290 291 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 292 293 294 295 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 296 297 298 299 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 300 301 302 303 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 304 305 306 307 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 308 309 310 311 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 312 313 314 315 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 316 317 318 319 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 320 321 322 323 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 324 325 326 327 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 328 329 330 331 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 332 333 334 335 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 336 337 338 339 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 340 341 342 343 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 344 345 346 347 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 348 349 350 351 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 352 353 354 355 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 356 357 358 359 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 360 361 362 363 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 364 365 366 367 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 368 369 370 371 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 372 373 374 375 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 376 377 378 379 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 380 381 382 383 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 384 385 386 387 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 388 389 390 391 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 392 393 394 395 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 396 397 398 399 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 400 401 402 403 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 404 405 406 407 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 408 409 410 411 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 412 413 414 415 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 416 417 418 419 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 420 421 422 423 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 424 425 426 427 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 428 429 430 431 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 432 433 434 435 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 436 437 438 439 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 440 441 442 443 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 444 445 446 447 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 448 449 450 451 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 452 453 454 455 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 456 457 458 459 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 460 461 462 463 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 464 465 466 467 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 468 469 470 471 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 472 473 474 475 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 476 477 478 479 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 480 481 482 483 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 484 485 486 487 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 488 489 490 491 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 492 493 494 495 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 496 497 498 499 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 500 501 502 503 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 504 505 506 507 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 508 509 510 511 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 512 513 514 515 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 516 517 518 519 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 520 521 522 523 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 524 525 526 527 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 528 529 530 531 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 532 533 534 535 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 536 537 538 539 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 540 541 542 543 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 544 545 546 547 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 548 549 550 551 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 552 553 554 555 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 556 557 558 559 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 560 561 562 563 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 564 565 566 567 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 568 569 570 571 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 572 573 574 575 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 576 577 578 579 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 580 581 582 583 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 584 585 586 587 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 588 589 590 591 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 592 593 594 595 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 596 597 598 599 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 600 601 602 603 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 604 605 606 607 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 608 609 610 611 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 612 613 614 615 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 616 617 618 619 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 620 621 622 623 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 624 625 626 627 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 628 629 630 631 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 632 633 634 635 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 636 637 638 639 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 640 641 642 643 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 644 645 646 647 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 648 649 650 651 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 652 653 654 655 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 656 657 658 659 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 660 661 662 663 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 664 665 666 667 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 668 669 670 671 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 672 673 674 675 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 676 677 678 679 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 680 681 682 683 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 684 685 686 687 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 688 689 690 691 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 692 693 694 695 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 696 697 698 699 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 700 701 702 703 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 704 705 706 707 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 708 709 710 711 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 712 713 714 715 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 716 717 718 719 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 720 721 722 723 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 724 725 726 727 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 728 729 730 731 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 732 733 734 735 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 736 737 738 739 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 740 741 742 743 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 744 745 746 747 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 748 749 750 751 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 752 753 754 755 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 756 757 758 759 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 760 761 762 763 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 764 765 766 767 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 768 769 770 771 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 772 773 774 775 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 776 777 778 779 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 780 781 782 783 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 784 785 786 787 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 788 789 790 791 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 792 793 794 795 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 796 797 798 799 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 800 801 802 803 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 804 805 806 807 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 808 809 810 811 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 812 813 814 815 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 816 817 818 819 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 820 821 822 823 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 824 825 826 827 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 828 829 830 831 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 832 833 834 835 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 836 837 838 839 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 840 841 842 843 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 844 845 846 847 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 848 849 850 851 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 852 853 854 855 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 856 857 858 859 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 860 861 862 863 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 864 865 866 867 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 868 869 870 871 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 872 873 874 875 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 876 877 878 879 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 880 881 882 883 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 884 885 886 887 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 888 889 890 891 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 892 893 894 895 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 896 897 898 899 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 900 901 902 903 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 904 905 906 907 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 908 909 910 911 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 912 913 914 915 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 916 917 918 919 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 920 921 922 923 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 924 925 926 927 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 928 929 930 931 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 932 933 934 935 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 936 937 938 939 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 940 941 942 943 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 944 945 946 947 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 948 949 950 951 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 952 953 954 955 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 956 957 958 959 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 960 961 962 963 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 964 965 966 967 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 968 969 970 971 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 972 973 974 975 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 976 977 978 979 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 980 981 982 983 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 984 985 986 987 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 988 989 990 991 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 992 993 994 995 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 996 997 998 999 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1000 1001 1002 1003 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1004 1005 1006 1007 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1008 1009 1010 1011 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1012 1013 1014 1015 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1016 1017 1018 1019 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1020 1021 1022 1023 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1024 1025 1026 1027 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1028 1029 1030 1031 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1032 1033 1034 1035 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1036 1037 1038 1039 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1040 1041 1042 1043 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1044 1045 1046 1047 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1048 1049 1050 1051 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1052 1053 1054 1055 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1056 1057 1058 1059 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1060 1061 1062 1063 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1064 1065 1066 1067 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1068 1069 1070 1071 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1072 1073 1074 1075 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1076 1077 1078 1079 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1080 1081 1082 1083 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1084 1085 1086 1087 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1088 1089 1090 1091 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1092 1093 1094 1095 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1096 1097 1098 1099 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1100 1101 1102 1103 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1104 1105 1106 1107 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1108 1109 1110 1111 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1112 1113 1114 1115 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1116 1117 1118 1119 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1120 1121 1122 1123 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1124 1125 1126 1127 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1128 1129 1130 1131 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1132 1133 1134 1135 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1136 1137 1138 1139 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1140 1141 1142 1143 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1144 1145 1146 1147 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1148 1149 1150 1151 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1152 1153 1154 1155 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1156 1157 1158 1159 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1160 1161 1162 1163 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1164 1165 1166 1167 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1168 1169 1170 1171 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1172 1173 1174 1175 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1176 1177 1178 1179 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1180 1181 1182 1183 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1184 1185 1186 1187 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1188 1189 1190 1191 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1192 1193 1194 1195 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1196 1197 1198 1199 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1200 1201 1202 1203 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1204 1205 1206 1207 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1208 1209 1210 1211 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1212 1213 1214 1215 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1216 1217 1218 1219 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1220 1221 1222 1223 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1224 1225 1226 1227 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1228 1229 1230 1231 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1232 1233 1234 1235 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1236 1237 1238 1239 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1240 1241 1242 1243 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1244 1245 1246 1247 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1248 1249 1250 1251 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1252 1253 1254 1255 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1256 1257 1258 1259 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1260 1261 1262 1263 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1264 1265 1266 1267 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1268 1269 1270 1271 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1272 1273 1274 1275 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1276 1277 1278 1279 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1280 1281 1282 1283 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1284 1285 1286 1287 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1288 1289 1290 1291 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1292 1293 1294 1295 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1296 1297 1298 1299 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1300 1301 1302 1303 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1304 1305 1306 1307 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1308 1309 1310 1311 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1312 1313 1314 1315 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1316 1317 1318 1319 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1320 1321 1322 1323 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1324 1325 1326 1327 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1328 1329 1330 1331 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1332 1333 1334 1335 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1336 1337 1338 1339 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1340 1341 1342 1343 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1344 1345 1346 1347 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1348 1349 1350 1351 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1352 1353 1354 1355 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1356 1357 1358 1359 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1360 1361 1362 1363 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1364 1365 1366 1367 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1368 1369 1370 1371 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1372 1373 1374 1375 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1376 1377 1378 1379 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1380 1381 1382 1383 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1384 1385 1386 1387 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1388 1389 1390 1391 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1392 1393 1394 1395 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1396 1397 1398 1399 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1400 1401 1402 1403 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1404 1405 1406 1407 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1408 1409 1410 1411 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1412 1413 1414 1415 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1416 1417 1418 1419 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1420 1421 1422 1423 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1424 1425 1426 1427 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1428 1429 1430 1431 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1432 1433 1434 1435 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1436 1437 1438 1439 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1440 1441 1442 1443 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1444 1445 1446 1447 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1448 1449 1450 1451 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1452 1453 1454 1455 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1456 1457 1458 1459 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1460 1461 1462 1463 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1464 1465 1466 1467 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1468 1469 1470 1471 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1472 1473 1474 1475 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1476 1477 1478 1479 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1480 1481 1482 1483 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1484 1485 1486 1487 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1488 1489 1490 1491 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1492 1493 1494 1495 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1496 1497 1498 1499 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1500 1501 1502 1503 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1504 1505 1506 1507 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1508 1509 1510 1511 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1512 1513 1514 1515 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1516 1517 1518 1519 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1520 1521 1522 1523 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1524 1525 1526 1527 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1528 1529 1530 1531 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1532 1533 1534 1535 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1536 1537 1538 1539 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1540 1541 1542 1543 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1544 1545 1546 1547 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1548 1549 1550 1551 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1552 1553 1554 1555 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1556 1557 1558 1559 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1560 1561 1562 1563 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1564 1565 1566 1567 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1568 1569 1570 1571 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1572 1573 1574 1575 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1576 1577 1578 1579 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1580 1581 1582 1583 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1584 1585 1586 1587 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1588 1589 1590 1591 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1592 1593 1594 1595 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1596 1597 1598 1599 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1600 1601 1602 1603 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1604 1605 1606 1607 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1608 1609 1610 1611 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1612 1613 1614 1615 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1616 1617 1618 1619 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1620 1621 1622 1623 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1624 1625 1626 1627 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1628 1629 1630 1631 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1632 1633 1634 1635 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1636 1637 1638 1639 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1640 1641 1642 1643 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1644 1645 1646 1647 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1648 1649 1650 1651 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1652 1653 1654 1655 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1656 1657 1658 1659 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1660 1661 1662 1663 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1664 1665 1666 1667 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1668 1669 1670 1671 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1672 1673 1674 1675 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1676 1677 1678 1679 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1680 1681 1682 1683 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1684 1685 1686 1687 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1688 1689 1690 1691 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1692 1693 1694 1695 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1696 1697 1698 1699 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1700 1701 1702 1703 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1704 1705 1706 1707 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1708 1709 1710 1711 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1712 1713 1714 1715 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1716 1717 1718 1719 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1720 1721 1722 1723 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1724 1725 1726 1727 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1728 1729 1730 1731 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1732 1733 1734 1735 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1736 1737 1738 1739 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1740 1741 1742 1743 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1744 1745 1746 1747 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1748 1749 1750 1751 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1752 1753 1754 1755 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1756 1757 1758 1759 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1760 1761 1762 1763 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1764 1765 1766 1767 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1768 1769 1770 1771 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1772 1773 1774 1775 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1776 1777 1778 1779 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1780 1781 1782 1783 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1784 1785 1786 1787 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1788 1789 1790 1791 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1792 1793 1794 1795 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1796 1797 1798 1799 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1800 1801 1802 1803 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1804 1805 1806 1807 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1808 1809 1810 1811 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1812 1813 1814 1815 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1816 1817 1818 1819 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1820 1821 1822 1823 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1824 1825 1826 1827 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1828 1829 1830 1831 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1832 1833 1834 1835 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1836 1837 1838 1839 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1840 1841 1842 1843 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1844 1845 1846 1847 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1848 1849 1850 1851 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1852 1853 1854 1855 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1856 1857 1858 1859 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1860 1861 1862 1863 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1864 1865 1866 1867 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1868 1869 1870 1871 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1872 1873 1874 1875 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1876 1877 1878 1879 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1880 1881 1882 1883 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1884 1885 1886 1887 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1888 1889 1890 1891 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1892 1893 1894 1895 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1896 1897 1898 1899 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1900 1901 1902 1903 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1904 1905 1906 1907 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1908 1909 1910 1911 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1912 1913 1914 1915 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1916 1917 1918 1919 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1920 1921 1922 1923 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1924 1925 1926 1927 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1928 1929 1930 1931 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1932 1933 1934 1935 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1936 1937 1938 1939 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1940 1941 1942 1943 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1944 1945 1946 1947 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1948 1949 1950 1951 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1952 1953 1954 1955 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1956 1957 1958 1959 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1960 1961 1962 1963 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1964 1965 1966 1967 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1968 1969 1970 1971 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1972 1973 1974 1975 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1976 1977 1978 1979 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1980 1981 1982 1983 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1984 1985 1986 1987 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 1988 1989 1990 1991 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1992 1993 1994 1995 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 1996 1997 1998 1999 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2000 2001 2002 2003 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2004 2005 2006 2007 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2008 2009 2010 2011 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2012 2013 2014 2015 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2016 2017 2018 2019 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2020 2021 2022 2023 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2024 2025 2026 2027 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2028 2029 2030 2031 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2032 2033 2034 2035 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2036 2037 2038 2039 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2040 2041 2042 2043 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2044 2045 2046 2047 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2048 2049 2050 2051 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2052 2053 2054 2055 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2056 2057 2058 2059 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2060 2061 2062 2063 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2064 2065 2066 2067 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2068 2069 2070 2071 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2072 2073 2074 2075 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2076 2077 2078 2079 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2080 2081 2082 2083 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2084 2085 2086 2087 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2088 2089 2090 2091 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2092 2093 2094 2095 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2096 2097 2098 2099 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2100 2101 2102 2103 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2104 2105 2106 2107 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2108 2109 2110 2111 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2112 2113 2114 2115 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2116 2117 2118 2119 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2120 2121 2122 2123 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2124 2125 2126 2127 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2128 2129 2130 2131 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2132 2133 2134 2135 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2136 2137 2138 2139 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2140 2141 2142 2143 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2144 2145 2146 2147 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2148 2149 2150 2151 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2152 2153 2154 2155 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2156 2157 2158 2159 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2160 2161 2162 2163 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2164 2165 2166 2167 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2168 2169 2170 2171 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2172 2173 2174 2175 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2176 2177 2178 2179 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2180 2181 2182 2183 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2184 2185 2186 2187 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2188 2189 2190 2191 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2192 2193 2194 2195 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2196 2197 2198 2199 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2200 2201 2202 2203 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2204 2205 2206 2207 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2208 2209 2210 2211 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2212 2213 2214 2215 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2216 2217 2218 2219 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2220 2221 2222 2223 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2224 2225 2226 2227 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2228 2229 2230 2231 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2232 2233 2234 2235 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2236 2237 2238 2239 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2240 2241 2242 2243 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2244 2245 2246 2247 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2248 2249 2250 2251 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2252 2253 2254 2255 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2256 2257 2258 2259 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2260 2261 2262 2263 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2264 2265 2266 2267 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2268 2269 2270 2271 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2272 2273 2274 2275 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2276 2277 2278 2279 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2280 2281 2282 2283 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2284 2285 2286 2287 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2288 2289 2290 2291 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2292 2293 2294 2295 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2296 2297 2298 2299 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2300 2301 2302 2303 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2304 2305 2306 2307 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2308 2309 2310 2311 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2312 2313 2314 2315 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2316 2317 2318 2319 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2320 2321 2322 2323 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2324 2325 2326 2327 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2328 2329 2330 2331 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2332 2333 2334 2335 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2336 2337 2338 2339 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2340 2341 2342 2343 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2344 2345 2346 2347 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2348 2349 2350 2351 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2352 2353 2354 2355 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2356 2357 2358 2359 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2360 2361 2362 2363 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2364 2365 2366 2367 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2368 2369 2370 2371 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2372 2373 2374 2375 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2376 2377 2378 2379 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2380 2381 2382 2383 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2384 2385 2386 2387 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2388 2389 2390 2391 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2392 2393 2394 2395 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2396 2397 2398 2399 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2400 2401 2402 2403 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2404 2405 2406 2407 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2408 2409 2410 2411 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2412 2413 2414 2415 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2416 2417 2418 2419 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2420 2421 2422 2423 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2424 2425 2426 2427 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2428 2429 2430 2431 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2432 2433 2434 2435 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2436 2437 2438 2439 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2440 2441 2442 2443 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2444 2445 2446 2447 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2448 2449 2450 2451 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2452 2453 2454 2455 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2456 2457 2458 2459 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2460 2461 2462 2463 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2464 2465 2466 2467 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2468 2469 2470 2471 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2472 2473 2474 2475 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2476 2477 2478 2479 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2480 2481 2482 2483 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2484 2485 2486 2487 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2488 2489 2490 2491 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2492 2493 2494 2495 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2496 2497 2498 2499 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2500 2501 2502 2503 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2504 2505 2506 2507 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2508 2509 2510 2511 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2512 2513 2514 2515 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2516 2517 2518 2519 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2520 2521 2522 2523 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2524 2525 2526 2527 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2528 2529 2530 2531 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2532 2533 2534 2535 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2536 2537 2538 2539 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2540 2541 2542 2543 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2544 2545 2546 2547 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2548 2549 2550 2551 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2552 2553 2554 2555 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2556 2557 2558 2559 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2560 2561 2562 2563 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2564 2565 2566 2567 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2568 2569 2570 2571 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2572 2573 2574 2575 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2576 2577 2578 2579 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2580 2581 2582 2583 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2584 2585 2586 2587 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2588 2589 2590 2591 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2592 2593 2594 2595 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2596 2597 2598 2599 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2600 2601 2602 2603 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2604 2605 2606 2607 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2608 2609 2610 2611 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2612 2613 2614 2615 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2616 2617 2618 2619 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2620 2621 2622 2623 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2624 2625 2626 2627 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2628 2629 2630 2631 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2632 2633 2634 2635 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2636 2637 2638 2639 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2640 2641 2642 2643 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2644 2645 2646 2647 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2648 2649 2650 2651 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2652 2653 2654 2655 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2656 2657 2658 2659 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2660 2661 2662 2663 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2664 2665 2666 2667 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2668 2669 2670 2671 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2672 2673 2674 2675 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2676 2677 2678 2679 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2680 2681 2682 2683 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2684 2685 2686 2687 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2688 2689 2690 2691 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2692 2693 2694 2695 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2696 2697 2698 2699 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2700 2701 2702 2703 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2704 2705 2706 2707 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2708 2709 2710 2711 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2712 2713 2714 2715 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2716 2717 2718 2719 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2720 2721 2722 2723 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2724 2725 2726 2727 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2728 2729 2730 2731 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2732 2733 2734 2735 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2736 2737 2738 2739 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2740 2741 2742 2743 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2744 2745 2746 2747 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2748 2749 2750 2751 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2752 2753 2754 2755 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2756 2757 2758 2759 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2760 2761 2762 2763 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2764 2765 2766 2767 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2768 2769 2770 2771 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2772 2773 2774 2775 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2776 2777 2778 2779 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2780 2781 2782 2783 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2784 2785 2786 2787 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2788 2789 2790 2791 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2792 2793 2794 2795 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2796 2797 2798 2799 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2800 2801 2802 2803 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2804 2805 2806 2807 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2808 2809 2810 2811 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2812 2813 2814 2815 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2816 2817 2818 2819 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2820 2821 2822 2823 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2824 2825 2826 2827 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2828 2829 2830 2831 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2832 2833 2834 2835 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2836 2837 2838 2839 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2840 2841 2842 2843 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2844 2845 2846 2847 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2848 2849 2850 2851 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2852 2853 2854 2855 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2856 2857 2858 2859 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2860 2861 2862 2863 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2864 2865 2866 2867 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2868 2869 2870 2871 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2872 2873 2874 2875 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2876 2877 2878 2879 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2880 2881 2882 2883 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2884 2885 2886 2887 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2888 2889 2890 2891 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2892 2893 2894 2895 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2896 2897 2898 2899 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2900 2901 2902 2903 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2904 2905 2906 2907 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2908 2909 2910 2911 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2912 2913 2914 2915 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2916 2917 2918 2919 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2920 2921 2922 2923 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2924 2925 2926 2927 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2928 2929 2930 2931 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2932 2933 2934 2935 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2936 2937 2938 2939 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2940 2941 2942 2943 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2944 2945 2946 2947 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2948 2949 2950 2951 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2952 2953 2954 2955 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2956 2957 2958 2959 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2960 2961 2962 2963 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2964 2965 2966 2967 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2968 2969 2970 2971 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2972 2973 2974 2975 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2976 2977 2978 2979 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 2980 2981 2982 2983 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2984 2985 2986 2987 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2988 2989 2990 2991 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2992 2993 2994 2995 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 2996 2997 2998 2999 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3000 3001 3002 3003 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3004 3005 3006 3007 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3008 3009 3010 3011 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3012 3013 3014 3015 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3016 3017 3018 3019 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3020 3021 3022 3023 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3024 3025 3026 3027 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3028 3029 3030 3031 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3032 3033 3034 3035 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3036 3037 3038 3039 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3040 3041 3042 3043 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3044 3045 3046 3047 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3048 3049 3050 3051 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3052 3053 3054 3055 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3056 3057 3058 3059 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3060 3061 3062 3063 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3064 3065 3066 3067 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3068 3069 3070 3071 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3072 3073 3074 3075 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3076 3077 3078 3079 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3080 3081 3082 3083 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3084 3085 3086 3087 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3088 3089 3090 3091 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3092 3093 3094 3095 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3096 3097 3098 3099 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3100 3101 3102 3103 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3104 3105 3106 3107 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3108 3109 3110 3111 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3112 3113 3114 3115 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3116 3117 3118 3119 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3120 3121 3122 3123 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3124 3125 3126 3127 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3128 3129 3130 3131 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3132 3133 3134 3135 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3136 3137 3138 3139 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3140 3141 3142 3143 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3144 3145 3146 3147 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3148 3149 3150 3151 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3152 3153 3154 3155 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3156 3157 3158 3159 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3160 3161 3162 3163 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3164 3165 3166 3167 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3168 3169 3170 3171 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3172 3173 3174 3175 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3176 3177 3178 3179 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3180 3181 3182 3183 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3184 3185 3186 3187 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3188 3189 3190 3191 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3192 3193 3194 3195 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3196 3197 3198 3199 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3200 3201 3202 3203 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3204 3205 3206 3207 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3208 3209 3210 3211 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3212 3213 3214 3215 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3216 3217 3218 3219 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3220 3221 3222 3223 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3224 3225 3226 3227 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3228 3229 3230 3231 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3232 3233 3234 3235 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3236 3237 3238 3239 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3240 3241 3242 3243 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3244 3245 3246 3247 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3248 3249 3250 3251 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3252 3253 3254 3255 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3256 3257 3258 3259 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3260 3261 3262 3263 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3264 3265 3266 3267 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3268 3269 3270 3271 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3272 3273 3274 3275 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3276 3277 3278 3279 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3280 3281 3282 3283 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3284 3285 3286 3287 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3288 3289 3290 3291 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3292 3293 3294 3295 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3296 3297 3298 3299 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3300 3301 3302 3303 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3304 3305 3306 3307 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3308 3309 3310 3311 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3312 3313 3314 3315 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3316 3317 3318 3319 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3320 3321 3322 3323 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3324 3325 3326 3327 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3328 3329 3330 3331 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3332 3333 3334 3335 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3336 3337 3338 3339 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3340 3341 3342 3343 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3344 3345 3346 3347 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3348 3349 3350 3351 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3352 3353 3354 3355 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3356 3357 3358 3359 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3360 3361 3362 3363 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3364 3365 3366 3367 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3368 3369 3370 3371 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3372 3373 3374 3375 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3376 3377 3378 3379 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3380 3381 3382 3383 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3384 3385 3386 3387 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3388 3389 3390 3391 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3392 3393 3394 3395 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3396 3397 3398 3399 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3400 3401 3402 3403 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3404 3405 3406 3407 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3408 3409 3410 3411 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3412 3413 3414 3415 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3416 3417 3418 3419 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3420 3421 3422 3423 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3424 3425 3426 3427 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3428 3429 3430 3431 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3432 3433 3434 3435 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3436 3437 3438 3439 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3440 3441 3442 3443 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3444 3445 3446 3447 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3448 3449 3450 3451 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3452 3453 3454 3455 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3456 3457 3458 3459 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3460 3461 3462 3463 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3464 3465 3466 3467 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3468 3469 3470 3471 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3472 3473 3474 3475 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3476 3477 3478 3479 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3480 3481 3482 3483 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3484 3485 3486 3487 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3488 3489 3490 3491 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3492 3493 3494 3495 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3496 3497 3498 3499 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3500 3501 3502 3503 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3504 3505 3506 3507 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3508 3509 3510 3511 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3512 3513 3514 3515 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3516 3517 3518 3519 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3520 3521 3522 3523 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3524 3525 3526 3527 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3528 3529 3530 3531 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3532 3533 3534 3535 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3536 3537 3538 3539 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3540 3541 3542 3543 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3544 3545 3546 3547 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3548 3549 3550 3551 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3552 3553 3554 3555 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3556 3557 3558 3559 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3560 3561 3562 3563 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3564 3565 3566 3567 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3568 3569 3570 3571 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3572 3573 3574 3575 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3576 3577 3578 3579 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3580 3581 3582 3583 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3584 3585 3586 3587 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3588 3589 3590 3591 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3592 3593 3594 3595 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3596 3597 3598 3599 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3600 3601 3602 3603 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3604 3605 3606 3607 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3608 3609 3610 3611 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3612 3613 3614 3615 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3616 3617 3618 3619 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3620 3621 3622 3623 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3624 3625 3626 3627 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3628 3629 3630 3631 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3632 3633 3634 3635 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3636 3637 3638 3639 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3640 3641 3642 3643 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3644 3645 3646 3647 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3648 3649 3650 3651 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3652 3653 3654 3655 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3656 3657 3658 3659 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3660 3661 3662 3663 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3664 3665 3666 3667 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3668 3669 3670 3671 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3672 3673 3674 3675 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3676 3677 3678 3679 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3680 3681 3682 3683 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3684 3685 3686 3687 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3688 3689 3690 3691 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3692 3693 3694 3695 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3696 3697 3698 3699 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3700 3701 3702 3703 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3704 3705 3706 3707 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3708 3709 3710 3711 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3712 3713 3714 3715 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3716 3717 3718 3719 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3720 3721 3722 3723 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3724 3725 3726 3727 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3728 3729 3730 3731 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3732 3733 3734 3735 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3736 3737 3738 3739 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3740 3741 3742 3743 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3744 3745 3746 3747 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3748 3749 3750 3751 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3752 3753 3754 3755 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3756 3757 3758 3759 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3760 3761 3762 3763 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3764 3765 3766 3767 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3768 3769 3770 3771 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3772 3773 3774 3775 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3776 3777 3778 3779 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3780 3781 3782 3783 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3784 3785 3786 3787 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3788 3789 3790 3791 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3792 3793 3794 3795 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3796 3797 3798 3799 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3800 3801 3802 3803 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3804 3805 3806 3807 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3808 3809 3810 3811 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3812 3813 3814 3815 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3816 3817 3818 3819 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3820 3821 3822 3823 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3824 3825 3826 3827 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3828 3829 3830 3831 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3832 3833 3834 3835 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3836 3837 3838 3839 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3840 3841 3842 3843 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3844 3845 3846 3847 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3848 3849 3850 3851 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3852 3853 3854 3855 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3856 3857 3858 3859 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3860 3861 3862 3863 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3864 3865 3866 3867 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3868 3869 3870 3871 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3872 3873 3874 3875 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3876 3877 3878 3879 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3880 3881 3882 3883 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3884 3885 3886 3887 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3888 3889 3890 3891 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3892 3893 3894 3895 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3896 3897 3898 3899 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3900 3901 3902 3903 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3904 3905 3906 3907 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3908 3909 3910 3911 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3912 3913 3914 3915 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3916 3917 3918 3919 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3920 3921 3922 3923 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3924 3925 3926 3927 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3928 3929 3930 3931 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3932 3933 3934 3935 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3936 3937 3938 3939 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3940 3941 3942 3943 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3944 3945 3946 3947 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3948 3949 3950 3951 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3952 3953 3954 3955 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3956 3957 3958 3959 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3960 3961 3962 3963 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3964 3965 3966 3967 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3968 3969 3970 3971 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3972 3973 3974 3975 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 3976 3977 3978 3979 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3980 3981 3982 3983 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3984 3985 3986 3987 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3988 3989 3990 3991 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3992 3993 3994 3995 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 3996 3997 3998 3999 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4000 4001 4002 4003 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4004 4005 4006 4007 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4008 4009 4010 4011 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4012 4013 4014 4015 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4016 4017 4018 4019 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4020 4021 4022 4023 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4024 4025 4026 4027 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4028 4029 4030 4031 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4032 4033 4034 4035 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4036 4037 4038 4039 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4040 4041 4042 4043 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4044 4045 4046 4047 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4048 4049 4050 4051 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4052 4053 4054 4055 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4056 4057 4058 4059 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4060 4061 4062 4063 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4064 4065 4066 4067 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4068 4069 4070 4071 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4072 4073 4074 4075 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4076 4077 4078 4079 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4080 4081 4082 4083 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4084 4085 4086 4087 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4088 4089 4090 4091 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4092 4093 4094 4095 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4096 4097 4098 4099 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4100 4101 4102 4103 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4104 4105 4106 4107 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4108 4109 4110 4111 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4112 4113 4114 4115 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4116 4117 4118 4119 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4120 4121 4122 4123 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4124 4125 4126 4127 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4128 4129 4130 4131 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4132 4133 4134 4135 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4136 4137 4138 4139 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4140 4141 4142 4143 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4144 4145 4146 4147 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4148 4149 4150 4151 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4152 4153 4154 4155 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4156 4157 4158 4159 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4160 4161 4162 4163 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4164 4165 4166 4167 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4168 4169 4170 4171 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4172 4173 4174 4175 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4176 4177 4178 4179 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4180 4181 4182 4183 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4184 4185 4186 4187 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4188 4189 4190 4191 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4192 4193 4194 4195 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4196 4197 4198 4199 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4200 4201 4202 4203 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4204 4205 4206 4207 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4208 4209 4210 4211 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4212 4213 4214 4215 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4216 4217 4218 4219 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4220 4221 4222 4223 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4224 4225 4226 4227 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4228 4229 4230 4231 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4232 4233 4234 4235 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4236 4237 4238 4239 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4240 4241 4242 4243 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4244 4245 4246 4247 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4248 4249 4250 4251 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4252 4253 4254 4255 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4256 4257 4258 4259 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4260 4261 4262 4263 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4264 4265 4266 4267 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4268 4269 4270 4271 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4272 4273 4274 4275 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4276 4277 4278 4279 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4280 4281 4282 4283 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4284 4285 4286 4287 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4288 4289 4290 4291 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4292 4293 4294 4295 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4296 4297 4298 4299 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4300 4301 4302 4303 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4304 4305 4306 4307 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4308 4309 4310 4311 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4312 4313 4314 4315 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4316 4317 4318 4319 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4320 4321 4322 4323 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4324 4325 4326 4327 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4328 4329 4330 4331 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4332 4333 4334 4335 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4336 4337 4338 4339 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4340 4341 4342 4343 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4344 4345 4346 4347 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4348 4349 4350 4351 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4352 4353 4354 4355 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4356 4357 4358 4359 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4360 4361 4362 4363 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4364 4365 4366 4367 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4368 4369 4370 4371 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4372 4373 4374 4375 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4376 4377 4378 4379 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4380 4381 4382 4383 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4384 4385 4386 4387 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4388 4389 4390 4391 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4392 4393 4394 4395 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4396 4397 4398 4399 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4400 4401 4402 4403 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4404 4405 4406 4407 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4408 4409 4410 4411 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4412 4413 4414 4415 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4416 4417 4418 4419 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4420 4421 4422 4423 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4424 4425 4426 4427 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4428 4429 4430 4431 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4432 4433 4434 4435 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4436 4437 4438 4439 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4440 4441 4442 4443 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4444 4445 4446 4447 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4448 4449 4450 4451 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4452 4453 4454 4455 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4456 4457 4458 4459 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4460 4461 4462 4463 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4464 4465 4466 4467 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4468 4469 4470 4471 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4472 4473 4474 4475 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4476 4477 4478 4479 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4480 4481 4482 4483 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4484 4485 4486 4487 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4488 4489 4490 4491 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4492 4493 4494 4495 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4496 4497 4498 4499 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4500 4501 4502 4503 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4504 4505 4506 4507 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4508 4509 4510 4511 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4512 4513 4514 4515 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4516 4517 4518 4519 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4520 4521 4522 4523 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4524 4525 4526 4527 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4528 4529 4530 4531 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4532 4533 4534 4535 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4536 4537 4538 4539 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4540 4541 4542 4543 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4544 4545 4546 4547 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4548 4549 4550 4551 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4552 4553 4554 4555 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4556 4557 4558 4559 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4560 4561 4562 4563 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4564 4565 4566 4567 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4568 4569 4570 4571 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4572 4573 4574 4575 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4576 4577 4578 4579 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4580 4581 4582 4583 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4584 4585 4586 4587 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4588 4589 4590 4591 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4592 4593 4594 4595 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4596 4597 4598 4599 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4600 4601 4602 4603 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4604 4605 4606 4607 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4608 4609 4610 4611 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4612 4613 4614 4615 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4616 4617 4618 4619 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4620 4621 4622 4623 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4624 4625 4626 4627 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4628 4629 4630 4631 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4632 4633 4634 4635 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4636 4637 4638 4639 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4640 4641 4642 4643 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4644 4645 4646 4647 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4648 4649 4650 4651 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4652 4653 4654 4655 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4656 4657 4658 4659 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4660 4661 4662 4663 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4664 4665 4666 4667 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4668 4669 4670 4671 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4672 4673 4674 4675 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4676 4677 4678 4679 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4680 4681 4682 4683 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4684 4685 4686 4687 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4688 4689 4690 4691 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4692 4693 4694 4695 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4696 4697 4698 4699 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4700 4701 4702 4703 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4704 4705 4706 4707 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4708 4709 4710 4711 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4712 4713 4714 4715 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4716 4717 4718 4719 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4720 4721 4722 4723 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4724 4725 4726 4727 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4728 4729 4730 4731 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4732 4733 4734 4735 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4736 4737 4738 4739 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4740 4741 4742 4743 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4744 4745 4746 4747 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4748 4749 4750 4751 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4752 4753 4754 4755 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4756 4757 4758 4759 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4760 4761 4762 4763 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4764 4765 4766 4767 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4768 4769 4770 4771 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4772 4773 4774 4775 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4776 4777 4778 4779 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4780 4781 4782 4783 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4784 4785 4786 4787 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4788 4789 4790 4791 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4792 4793 4794 4795 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4796 4797 4798 4799 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4800 4801 4802 4803 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4804 4805 4806 4807 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4808 4809 4810 4811 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4812 4813 4814 4815 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4816 4817 4818 4819 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4820 4821 4822 4823 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4824 4825 4826 4827 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4828 4829 4830 4831 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4832 4833 4834 4835 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4836 4837 4838 4839 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4840 4841 4842 4843 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4844 4845 4846 4847 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4848 4849 4850 4851 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4852 4853 4854 4855 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4856 4857 4858 4859 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4860 4861 4862 4863 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4864 4865 4866 4867 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4868 4869 4870 4871 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4872 4873 4874 4875 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4876 4877 4878 4879 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4880 4881 4882 4883 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4884 4885 4886 4887 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4888 4889 4890 4891 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4892 4893 4894 4895 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4896 4897 4898 4899 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4900 4901 4902 4903 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4904 4905 4906 4907 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4908 4909 4910 4911 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4912 4913 4914 4915 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4916 4917 4918 4919 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4920 4921 4922 4923 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4924 4925 4926 4927 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4928 4929 4930 4931 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4932 4933 4934 4935 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 4936 4937 4938 4939 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4940 4941 4942 4943 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4944 4945 4946 4947 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4948 4949 4950 4951 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4952 4953 4954 4955 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4956 4957 4958 4959 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4960 4961 4962 4963 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4964 4965 4966 4967 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4968 4969 4970 4971 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4972 4973 4974 4975 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4976 4977 4978 4979 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4980 4981 4982 4983 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4984 4985 4986 4987 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4988 4989 4990 4991 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4992 4993 4994 4995 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 4996 4997 4998 4999 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5000 5001 5002 5003 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5004 5005 5006 5007 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5008 5009 5010 5011 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5012 5013 5014 5015 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5016 5017 5018 5019 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5020 5021 5022 5023 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5024 5025 5026 5027 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5028 5029 5030 5031 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5032 5033 5034 5035 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5036 5037 5038 5039 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5040 5041 5042 5043 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5044 5045 5046 5047 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5048 5049 5050 5051 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5052 5053 5054 5055 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5056 5057 5058 5059 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5060 5061 5062 5063 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5064 5065 5066 5067 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5068 5069 5070 5071 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5072 5073 5074 5075 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5076 5077 5078 5079 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5080 5081 5082 5083 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5084 5085 5086 5087 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5088 5089 5090 5091 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5092 5093 5094 5095 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5096 5097 5098 5099 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5100 5101 5102 5103 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5104 5105 5106 5107 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5108 5109 5110 5111 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5112 5113 5114 5115 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5116 5117 5118 5119 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5120 5121 5122 5123 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5124 5125 5126 5127 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5128 5129 5130 5131 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5132 5133 5134 5135 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5136 5137 5138 5139 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5140 5141 5142 5143 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5144 5145 5146 5147 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5148 5149 5150 5151 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5152 5153 5154 5155 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5156 5157 5158 5159 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5160 5161 5162 5163 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5164 5165 5166 5167 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5168 5169 5170 5171 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5172 5173 5174 5175 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5176 5177 5178 5179 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5180 5181 5182 5183 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5184 5185 5186 5187 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5188 5189 5190 5191 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5192 5193 5194 5195 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5196 5197 5198 5199 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5200 5201 5202 5203 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5204 5205 5206 5207 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5208 5209 5210 5211 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5212 5213 5214 5215 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5216 5217 5218 5219 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5220 5221 5222 5223 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5224 5225 5226 5227 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5228 5229 5230 5231 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5232 5233 5234 5235 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5236 5237 5238 5239 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5240 5241 5242 5243 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5244 5245 5246 5247 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5248 5249 5250 5251 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5252 5253 5254 5255 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5256 5257 5258 5259 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5260 5261 5262 5263 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5264 5265 5266 5267 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5268 5269 5270 5271 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5272 5273 5274 5275 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5276 5277 5278 5279 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5280 5281 5282 5283 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5284 5285 5286 5287 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5288 5289 5290 5291 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5292 5293 5294 5295 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5296 5297 5298 5299 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5300 5301 5302 5303 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5304 5305 5306 5307 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5308 5309 5310 5311 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5312 5313 5314 5315 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5316 5317 5318 5319 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5320 5321 5322 5323 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5324 5325 5326 5327 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5328 5329 5330 5331 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5332 5333 5334 5335 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5336 5337 5338 5339 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5340 5341 5342 5343 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5344 5345 5346 5347 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5348 5349 5350 5351 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5352 5353 5354 5355 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5356 5357 5358 5359 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5360 5361 5362 5363 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5364 5365 5366 5367 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5368 5369 5370 5371 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5372 5373 5374 5375 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5376 5377 5378 5379 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5380 5381 5382 5383 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5384 5385 5386 5387 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5388 5389 5390 5391 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5392 5393 5394 5395 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5396 5397 5398 5399 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5400 5401 5402 5403 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5404 5405 5406 5407 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5408 5409 5410 5411 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5412 5413 5414 5415 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5416 5417 5418 5419 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5420 5421 5422 5423 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5424 5425 5426 5427 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5428 5429 5430 5431 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5432 5433 5434 5435 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5436 5437 5438 5439 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5440 5441 5442 5443 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5444 5445 5446 5447 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5448 5449 5450 5451 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5452 5453 5454 5455 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5456 5457 5458 5459 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5460 5461 5462 5463 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5464 5465 5466 5467 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5468 5469 5470 5471 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5472 5473 5474 5475 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5476 5477 5478 5479 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5480 5481 5482 5483 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5484 5485 5486 5487 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5488 5489 5490 5491 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5492 5493 5494 5495 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5496 5497 5498 5499 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5500 5501 5502 5503 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5504 5505 5506 5507 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5508 5509 5510 5511 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5512 5513 5514 5515 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5516 5517 5518 5519 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5520 5521 5522 5523 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5524 5525 5526 5527 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5528 5529 5530 5531 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5532 5533 5534 5535 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5536 5537 5538 5539 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5540 5541 5542 5543 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5544 5545 5546 5547 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5548 5549 5550 5551 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5552 5553 5554 5555 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5556 5557 5558 5559 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5560 5561 5562 5563 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5564 5565 5566 5567 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5568 5569 5570 5571 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5572 5573 5574 5575 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5576 5577 5578 5579 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5580 5581 5582 5583 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5584 5585 5586 5587 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5588 5589 5590 5591 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5592 5593 5594 5595 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5596 5597 5598 5599 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5600 5601 5602 5603 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5604 5605 5606 5607 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5608 5609 5610 5611 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5612 5613 5614 5615 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5616 5617 5618 5619 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5620 5621 5622 5623 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5624 5625 5626 5627 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5628 5629 5630 5631 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5632 5633 5634 5635 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5636 5637 5638 5639 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5640 5641 5642 5643 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5644 5645 5646 5647 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5648 5649 5650 5651 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5652 5653 5654 5655 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5656 5657 5658 5659 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5660 5661 5662 5663 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5664 5665 5666 5667 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5668 5669 5670 5671 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5672 5673 5674 5675 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5676 5677 5678 5679 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5680 5681 5682 5683 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5684 5685 5686 5687 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5688 5689 5690 5691 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5692 5693 5694 5695 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5696 5697 5698 5699 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5700 5701 5702 5703 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5704 5705 5706 5707 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5708 5709 5710 5711 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5712 5713 5714 5715 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5716 5717 5718 5719 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <TRef> { terrain.jpg }
+    <VertexRef> { 5720 5721 5722 5723 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5724 5725 5726 5727 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5728 5729 5730 5731 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5732 5733 5734 5735 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5736 5737 5738 5739 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5740 5741 5742 5743 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5744 5745 5746 5747 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5748 5749 5750 5751 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5752 5753 5754 5755 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5756 5757 5758 5759 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5760 5761 5762 5763 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5764 5765 5766 5767 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5768 5769 5770 5771 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5772 5773 5774 5775 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5776 5777 5778 5779 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5780 5781 5782 5783 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5784 5785 5786 5787 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5788 5789 5790 5791 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5792 5793 5794 5795 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5796 5797 5798 5799 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5800 5801 5802 5803 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5804 5805 5806 5807 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5808 5809 5810 5811 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5812 5813 5814 5815 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5816 5817 5818 5819 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5820 5821 5822 5823 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5824 5825 5826 5827 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5828 5829 5830 5831 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5832 5833 5834 5835 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5836 5837 5838 5839 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5840 5841 5842 5843 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5844 5845 5846 5847 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5848 5849 5850 5851 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5852 5853 5854 5855 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5856 5857 5858 5859 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5860 5861 5862 5863 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5864 5865 5866 5867 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5868 5869 5870 5871 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5872 5873 5874 5875 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5876 5877 5878 5879 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5880 5881 5882 5883 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5884 5885 5886 5887 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5888 5889 5890 5891 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5892 5893 5894 5895 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5896 5897 5898 5899 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5900 5901 5902 5903 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5904 5905 5906 5907 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5908 5909 5910 5911 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5912 5913 5914 5915 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5916 5917 5918 5919 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5920 5921 5922 5923 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5924 5925 5926 5927 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5928 5929 5930 5931 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5932 5933 5934 5935 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5936 5937 5938 5939 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5940 5941 5942 5943 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5944 5945 5946 5947 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5948 5949 5950 5951 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5952 5953 5954 5955 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5956 5957 5958 5959 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5960 5961 5962 5963 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5964 5965 5966 5967 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5968 5969 5970 5971 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5972 5973 5974 5975 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5976 5977 5978 5979 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5980 5981 5982 5983 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5984 5985 5986 5987 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5988 5989 5990 5991 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5992 5993 5994 5995 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 5996 5997 5998 5999 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 6000 6001 6002 6003 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 6004 6005 6006 6007 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 6008 6009 6010 6011 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 6012 6013 6014 6015 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 6016 6017 6018 6019 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 6020 6021 6022 6023 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 6024 6025 6026 6027 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 6028 6029 6030 6031 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 6032 6033 6034 6035 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 6036 6037 6038 6039 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 6040 6041 6042 6043 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 6044 6045 6046 6047 <Ref> { terrain } }
+  }
+  <Polygon> {
+    <VertexRef> { 6048 6049 6050 6051 <Ref> { terrain } }
+  }
+}

=== added file 'bunnyexample/data/levels/terrain.jpg'
Binary files bunnyexample/data/levels/terrain.jpg	1970-01-01 00:00:00 +0000 and bunnyexample/data/levels/terrain.jpg	2010-08-26 12:58:47 +0000 differ
=== added directory 'bunnyexample/data/models'
=== added file 'bunnyexample/data/models/blasterbullet.egg'
--- bunnyexample/data/models/blasterbullet.egg	1970-01-01 00:00:00 +0000
+++ bunnyexample/data/models/blasterbullet.egg	2010-08-26 12:58:47 +0000
@@ -0,0 +1,2001 @@
+<CoordinateSystem> { Z-up }
+
+<Comment> { "Egg laid by Chicken for Blender, version R85" }
+
+<Material> Material {
+  <Scalar> diffr {0.800000011921}
+  <Scalar> diffg {0.800000011921}
+  <Scalar> diffb {0.800000011921}
+  <Scalar> specr {0.25}
+  <Scalar> specg {0.25}
+  <Scalar> specb {0.25}
+  <Scalar> shininess {12.5}
+}
+<Texture> blasterbullet.jpg.001 {
+  "./blasterbullet.jpg"
+  <Scalar> saved-result { 1 }
+  <Scalar> envtype { MODULATE }
+  <Scalar> minfilter { LINEAR }
+  <Scalar> magfilter { LINEAR }
+  <Scalar> wrap { REPEAT }
+}
+<Group> Cube {
+  <Transform> {
+    <Matrix4> {
+      0.096597 0.000000 0.000000 0.000000
+      0.000000 0.154487 0.000000 0.000000
+      0.000000 0.000000 0.096597 0.000000
+      0.000000 0.000000 0.000000 1.000000
+    }
+  }
+  <VertexPool> Cube {
+    <Vertex> 0 {
+      1.86127591117e-09 8.64179217075e-09 -0.0546228997409
+      <UV>  {
+        0.018096 0.019953
+        <Tangent> { 0.000000 0.000000 -1.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 -1.000000 }
+    }
+    <Vertex> 1 {
+      7.35540250929e-09 0.0655183196068 -0.0409671738744
+      <UV>  {
+        0.436419 0.019953
+        <Tangent> { -0.000000 -0.847892 0.530168 }
+        <Binormal> { 0.224657 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.707083 -0.707083 }
+    }
+    <Vertex> 2 {
+      0.0303460620344 0.04853207618 -0.0303460564464
+      <UV>  {
+        0.436419 0.983634
+        <Tangent> { -0.468410 -0.749122 0.468410 }
+        <Binormal> { 0.162069 -0.000000 0.162069 }
+      }
+      <Normal> { 0.577349 0.577349 -0.577349 }
+    }
+    <Vertex> 3 {
+      0.0409671738744 -6.97899071866e-09 -0.0409671738744
+      <UV>  {
+        0.018096 0.983634
+        <Tangent> { 0.707107 0.000000 -0.707107 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.707083 0.000000 -0.707083 }
+    }
+    <Vertex> 4 {
+      1.86127591117e-09 8.64179217075e-09 -0.0546228997409
+      <UV>  {
+        0.018096 0.019953
+        <Tangent> { 0.000000 0.000000 -1.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 -1.000000 }
+    }
+    <Vertex> 5 {
+      0.0409671738744 -6.97899071866e-09 -0.0409671738744
+      <UV>  {
+        0.436419 0.019953
+        <Tangent> { -0.707107 -0.000000 0.707107 }
+        <Binormal> { 0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.707083 0.000000 -0.707083 }
+    }
+    <Vertex> 6 {
+      0.0303460471332 -0.0485320948064 -0.0303460564464
+      <UV>  {
+        0.436419 0.983634
+        <Tangent> { -0.468410 0.749123 0.468410 }
+        <Binormal> { -0.162069 0.000000 -0.162069 }
+      }
+      <Normal> { 0.577349 -0.577349 -0.577349 }
+    }
+    <Vertex> 7 {
+      -6.27817042798e-09 -0.0655183047056 -0.0409671738744
+      <UV>  {
+        0.018096 0.983634
+        <Tangent> { 0.000000 -0.847892 -0.530169 }
+        <Binormal> { 0.224657 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 -0.707083 -0.707083 }
+    }
+    <Vertex> 8 {
+      1.86127591117e-09 8.64179217075e-09 -0.0546228997409
+      <UV>  {
+        0.018096 0.019953
+        <Tangent> { 0.000000 0.000000 -1.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 -1.000000 }
+    }
+    <Vertex> 9 {
+      -6.27817042798e-09 -0.0655183047056 -0.0409671738744
+      <UV>  {
+        0.436419 0.019953
+        <Tangent> { -0.000000 0.847892 0.530169 }
+        <Binormal> { -0.224657 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 -0.707083 -0.707083 }
+    }
+    <Vertex> 10 {
+      -0.0303460583091 -0.04853207618 -0.0303460564464
+      <UV>  {
+        0.436419 0.983634
+        <Tangent> { 0.468410 0.749122 0.468410 }
+        <Binormal> { -0.162069 -0.000000 0.162069 }
+      }
+      <Normal> { -0.577349 -0.577349 -0.577349 }
+    }
+    <Vertex> 11 {
+      -0.0409671701491 1.71030496432e-08 -0.0409671738744
+      <UV>  {
+        0.018096 0.983634
+        <Tangent> { -0.707107 0.000001 -0.707107 }
+        <Binormal> { -0.000000 0.000000 0.000000 }
+      }
+      <Normal> { -0.707083 0.000000 -0.707083 }
+    }
+    <Vertex> 12 {
+      1.86127591117e-09 8.64179217075e-09 -0.0546228997409
+      <UV>  {
+        0.018096 0.019953
+        <Tangent> { 0.000000 0.000000 -1.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 -1.000000 }
+    }
+    <Vertex> 13 {
+      -0.0409671701491 1.71030496432e-08 -0.0409671738744
+      <UV>  {
+        0.436419 0.019953
+        <Tangent> { 0.707107 -0.000000 0.707107 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.707083 0.000000 -0.707083 }
+    }
+    <Vertex> 14 {
+      -0.0303460471332 0.0485320910811 -0.0303460564464
+      <UV>  {
+        0.436419 0.983634
+        <Tangent> { 0.468410 -0.749122 0.468410 }
+        <Binormal> { 0.162069 -0.000000 -0.162069 }
+      }
+      <Normal> { -0.577349 0.577349 -0.577349 }
+    }
+    <Vertex> 15 {
+      7.35540250929e-09 0.0655183196068 -0.0409671738744
+      <UV>  {
+        0.018096 0.983634
+        <Tangent> { 0.000000 0.847892 -0.530168 }
+        <Binormal> { -0.224657 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.707083 -0.707083 }
+    }
+    <Vertex> 16 {
+      -7.90605980683e-09 -1.73928462743e-08 0.0546228997409
+      <UV>  {
+        0.018096 0.019953
+        <Tangent> { -0.000000 -0.000000 1.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 17 {
+      0.0409671701491 -3.69188271065e-08 0.0409671738744
+      <UV>  {
+        0.436419 0.019953
+        <Tangent> { -0.707107 0.000001 -0.707107 }
+        <Binormal> { 0.000001 0.000000 -0.000001 }
+      }
+      <Normal> { 0.707083 0.000000 0.707083 }
+    }
+    <Vertex> 18 {
+      0.0303460620344 0.0485320575535 0.0303460564464
+      <UV>  {
+        0.436419 0.983634
+        <Tangent> { -0.468410 -0.749122 -0.468410 }
+        <Binormal> { -0.162069 0.000000 0.162069 }
+      }
+      <Normal> { 0.577349 0.577349 0.577349 }
+    }
+    <Vertex> 19 {
+      7.35540250929e-09 0.0655182898045 0.0409671738744
+      <UV>  {
+        0.018096 0.983634
+        <Tangent> { 0.000000 0.847892 0.530169 }
+        <Binormal> { 0.224657 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.707083 0.707083 }
+    }
+    <Vertex> 20 {
+      -7.90605980683e-09 -1.73928462743e-08 0.0546228997409
+      <UV>  {
+        0.018096 0.019953
+        <Tangent> { -0.000000 -0.000000 1.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 21 {
+      7.35540250929e-09 0.0655182898045 0.0409671738744
+      <UV>  {
+        0.436419 0.019953
+        <Tangent> { -0.000000 -0.847892 -0.530169 }
+        <Binormal> { -0.224657 0.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.707083 0.707083 }
+    }
+    <Vertex> 22 {
+      -0.0303460508585 0.0485320799053 0.0303460564464
+      <UV>  {
+        0.436419 0.983634
+        <Tangent> { 0.468410 -0.749122 -0.468410 }
+        <Binormal> { -0.162069 0.000000 -0.162069 }
+      }
+      <Normal> { -0.577349 0.577349 0.577349 }
+    }
+    <Vertex> 23 {
+      -0.040967181325 6.68919497571e-09 0.0409671738744
+      <UV>  {
+        0.018096 0.983634
+        <Tangent> { -0.707107 0.000000 0.707107 }
+        <Binormal> { 0.000000 0.000000 0.000000 }
+      }
+      <Normal> { -0.707083 0.000000 0.707083 }
+    }
+    <Vertex> 24 {
+      -7.90605980683e-09 -1.73928462743e-08 0.0546228997409
+      <UV>  {
+        0.018096 0.019953
+        <Tangent> { -0.000000 -0.000000 1.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 25 {
+      -0.040967181325 6.68919497571e-09 0.0409671738744
+      <UV>  {
+        0.436419 0.019953
+        <Tangent> { 0.707107 -0.000000 -0.707107 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.707083 0.000000 0.707083 }
+    }
+    <Vertex> 26 {
+      -0.0303460713476 -0.0485320799053 0.0303460564464
+      <UV>  {
+        0.436419 0.983634
+        <Tangent> { 0.468410 0.749122 -0.468410 }
+        <Binormal> { 0.162069 -0.000000 0.162069 }
+      }
+      <Normal> { -0.577349 -0.577349 0.577349 }
+    }
+    <Vertex> 27 {
+      -2.09291730613e-08 -0.0655183270574 0.0409671738744
+      <UV>  {
+        0.018096 0.983634
+        <Tangent> { -0.000000 -0.847892 0.530168 }
+        <Binormal> { -0.224657 0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 -0.707083 0.707083 }
+    }
+    <Vertex> 28 {
+      -7.90605980683e-09 -1.73928462743e-08 0.0546228997409
+      <UV>  {
+        0.018096 0.019953
+        <Tangent> { -0.000000 -0.000000 1.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 29 {
+      -2.09291730613e-08 -0.0655183270574 0.0409671738744
+      <UV>  {
+        0.436419 0.019953
+        <Tangent> { 0.000000 0.847892 -0.530168 }
+        <Binormal> { 0.224657 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 -0.707083 0.707083 }
+    }
+    <Vertex> 30 {
+      0.0303460415453 -0.0485321134329 0.0303460564464
+      <UV>  {
+        0.436419 0.983634
+        <Tangent> { -0.468410 0.749123 -0.468410 }
+        <Binormal> { 0.162069 -0.000000 -0.162070 }
+      }
+      <Normal> { 0.577349 -0.577349 0.577349 }
+    }
+    <Vertex> 31 {
+      0.0409671701491 -3.69188271065e-08 0.0409671738744
+      <UV>  {
+        0.018096 0.983634
+        <Tangent> { 0.707107 -0.000001 0.707107 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.707083 0.000000 0.707083 }
+    }
+    <Vertex> 32 {
+      0.0546228922904 -2.78067027182e-08 9.62255691794e-11
+      <UV>  {
+        0.018096 0.019953
+        <Tangent> { 1.000000 -0.000000 -0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 1.000000 0.000000 0.000000 }
+    }
+    <Vertex> 33 {
+      0.0409671738744 -6.97899071866e-09 -0.0409671738744
+      <UV>  {
+        0.436419 0.019953
+        <Tangent> { -0.707107 -0.000000 0.707107 }
+        <Binormal> { 0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.707083 0.000000 -0.707083 }
+    }
+    <Vertex> 34 {
+      0.0303460620344 0.04853207618 -0.0303460564464
+      <UV>  {
+        0.436419 0.983634
+        <Tangent> { -0.468410 -0.749122 0.468410 }
+        <Binormal> { 0.162069 -0.000000 0.162069 }
+      }
+      <Normal> { 0.577349 0.577349 -0.577349 }
+    }
+    <Vertex> 35 {
+      0.0409671850502 0.0655182898045 9.62255691794e-11
+      <UV>  {
+        0.018096 0.983634
+        <Tangent> { 0.530169 0.847892 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.224657 }
+      }
+      <Normal> { 0.707083 0.707083 0.000000 }
+    }
+    <Vertex> 36 {
+      0.0546228922904 -2.78067027182e-08 9.62255691794e-11
+      <UV>  {
+        0.018096 0.019953
+        <Tangent> { 1.000000 -0.000000 -0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 1.000000 0.000000 0.000000 }
+    }
+    <Vertex> 37 {
+      0.0409671850502 0.0655182898045 9.62255691794e-11
+      <UV>  {
+        0.436419 0.019953
+        <Tangent> { -0.530169 -0.847892 0.000000 }
+        <Binormal> { -0.000000 0.000000 0.224657 }
+      }
+      <Normal> { 0.707083 0.707083 0.000000 }
+    }
+    <Vertex> 38 {
+      0.0303460620344 0.0485320575535 0.0303460564464
+      <UV>  {
+        0.436419 0.983634
+        <Tangent> { -0.468410 -0.749122 -0.468410 }
+        <Binormal> { -0.162069 0.000000 0.162069 }
+      }
+      <Normal> { 0.577349 0.577349 0.577349 }
+    }
+    <Vertex> 39 {
+      0.0409671701491 -3.69188271065e-08 0.0409671738744
+      <UV>  {
+        0.018096 0.983634
+        <Tangent> { 0.707107 -0.000001 0.707107 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.707083 0.000000 0.707083 }
+    }
+    <Vertex> 40 {
+      0.0546228922904 -2.78067027182e-08 9.62255691794e-11
+      <UV>  {
+        0.018096 0.019953
+        <Tangent> { 1.000000 -0.000000 -0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 1.000000 0.000000 0.000000 }
+    }
+    <Vertex> 41 {
+      0.0409671701491 -3.69188271065e-08 0.0409671738744
+      <UV>  {
+        0.436419 0.019953
+        <Tangent> { -0.707107 0.000001 -0.707107 }
+        <Binormal> { 0.000001 0.000000 -0.000001 }
+      }
+      <Normal> { 0.707083 0.000000 0.707083 }
+    }
+    <Vertex> 42 {
+      0.0303460415453 -0.0485321134329 0.0303460564464
+      <UV>  {
+        0.436419 0.983634
+        <Tangent> { -0.468410 0.749123 -0.468410 }
+        <Binormal> { 0.162069 -0.000000 -0.162070 }
+      }
+      <Normal> { 0.577349 -0.577349 0.577349 }
+    }
+    <Vertex> 43 {
+      0.0409671626985 -0.0655183345079 9.62255691794e-11
+      <UV>  {
+        0.018096 0.983634
+        <Tangent> { 0.530169 -0.847892 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.224657 }
+      }
+      <Normal> { 0.707083 -0.707083 0.000000 }
+    }
+    <Vertex> 44 {
+      0.0546228922904 -2.78067027182e-08 9.62255691794e-11
+      <UV>  {
+        0.018096 0.019953
+        <Tangent> { 1.000000 -0.000000 -0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 1.000000 0.000000 0.000000 }
+    }
+    <Vertex> 45 {
+      0.0409671626985 -0.0655183345079 9.62255691794e-11
+      <UV>  {
+        0.436419 0.019953
+        <Tangent> { -0.530168 0.847892 0.000000 }
+        <Binormal> { 0.000000 0.000000 -0.224657 }
+      }
+      <Normal> { 0.707083 -0.707083 0.000000 }
+    }
+    <Vertex> 46 {
+      0.0303460471332 -0.0485320948064 -0.0303460564464
+      <UV>  {
+        0.436419 0.983634
+        <Tangent> { -0.468410 0.749123 0.468410 }
+        <Binormal> { -0.162069 0.000000 -0.162069 }
+      }
+      <Normal> { 0.577349 -0.577349 -0.577349 }
+    }
+    <Vertex> 47 {
+      0.0409671738744 -6.97899071866e-09 -0.0409671738744
+      <UV>  {
+        0.018096 0.983634
+        <Tangent> { 0.707107 0.000000 -0.707107 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.707083 0.000000 -0.707083 }
+    }
+    <Vertex> 48 {
+      -1.76733951918e-08 -0.0873577445745 9.62255691794e-11
+      <UV>  {
+        0.018096 0.019953
+        <Tangent> { -0.000000 -1.000000 -0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 -1.000000 0.000000 }
+    }
+    <Vertex> 49 {
+      -6.27817042798e-09 -0.0655183047056 -0.0409671738744
+      <UV>  {
+        0.436419 0.019953
+        <Tangent> { -0.000000 0.847892 0.530169 }
+        <Binormal> { -0.224657 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 -0.707083 -0.707083 }
+    }
+    <Vertex> 50 {
+      0.0303460471332 -0.0485320948064 -0.0303460564464
+      <UV>  {
+        0.436419 0.983634
+        <Tangent> { -0.468410 0.749123 0.468410 }
+        <Binormal> { -0.162069 0.000000 -0.162069 }
+      }
+      <Normal> { 0.577349 -0.577349 -0.577349 }
+    }
+    <Vertex> 51 {
+      0.0409671626985 -0.0655183345079 9.62255691794e-11
+      <UV>  {
+        0.018096 0.983634
+        <Tangent> { 0.530169 -0.847892 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.224657 }
+      }
+      <Normal> { 0.707083 -0.707083 0.000000 }
+    }
+    <Vertex> 52 {
+      -1.76733951918e-08 -0.0873577445745 9.62255691794e-11
+      <UV>  {
+        0.018096 0.019953
+        <Tangent> { -0.000000 -1.000000 -0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 -1.000000 0.000000 }
+    }
+    <Vertex> 53 {
+      0.0409671626985 -0.0655183345079 9.62255691794e-11
+      <UV>  {
+        0.436419 0.019953
+        <Tangent> { -0.530168 0.847892 0.000000 }
+        <Binormal> { 0.000000 0.000000 -0.224657 }
+      }
+      <Normal> { 0.707083 -0.707083 0.000000 }
+    }
+    <Vertex> 54 {
+      0.0303460415453 -0.0485321134329 0.0303460564464
+      <UV>  {
+        0.436419 0.983634
+        <Tangent> { -0.468410 0.749123 -0.468410 }
+        <Binormal> { 0.162069 -0.000000 -0.162070 }
+      }
+      <Normal> { 0.577349 -0.577349 0.577349 }
+    }
+    <Vertex> 55 {
+      -2.09291730613e-08 -0.0655183270574 0.0409671738744
+      <UV>  {
+        0.018096 0.983634
+        <Tangent> { -0.000000 -0.847892 0.530168 }
+        <Binormal> { -0.224657 0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 -0.707083 0.707083 }
+    }
+    <Vertex> 56 {
+      -1.76733951918e-08 -0.0873577445745 9.62255691794e-11
+      <UV>  {
+        0.018096 0.019953
+        <Tangent> { -0.000000 -1.000000 -0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 -1.000000 0.000000 }
+    }
+    <Vertex> 57 {
+      -2.09291730613e-08 -0.0655183270574 0.0409671738744
+      <UV>  {
+        0.436419 0.019953
+        <Tangent> { 0.000000 0.847892 -0.530168 }
+        <Binormal> { 0.224657 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 -0.707083 0.707083 }
+    }
+    <Vertex> 58 {
+      -0.0303460713476 -0.0485320799053 0.0303460564464
+      <UV>  {
+        0.436419 0.983634
+        <Tangent> { 0.468410 0.749122 -0.468410 }
+        <Binormal> { 0.162069 -0.000000 0.162069 }
+      }
+      <Normal> { -0.577349 -0.577349 0.577349 }
+    }
+    <Vertex> 59 {
+      -0.0409671850502 -0.0655183047056 9.62255691794e-11
+      <UV>  {
+        0.018096 0.983634
+        <Tangent> { -0.530169 -0.847892 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.224657 }
+      }
+      <Normal> { -0.707083 -0.707083 0.000000 }
+    }
+    <Vertex> 60 {
+      -1.76733951918e-08 -0.0873577445745 9.62255691794e-11
+      <UV>  {
+        0.018096 0.019953
+        <Tangent> { -0.000000 -1.000000 -0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 -1.000000 0.000000 }
+    }
+    <Vertex> 61 {
+      -0.0409671850502 -0.0655183047056 9.62255691794e-11
+      <UV>  {
+        0.436419 0.019953
+        <Tangent> { 0.530169 0.847892 0.000000 }
+        <Binormal> { 0.000000 -0.000000 0.224657 }
+      }
+      <Normal> { -0.707083 -0.707083 0.000000 }
+    }
+    <Vertex> 62 {
+      -0.0303460583091 -0.04853207618 -0.0303460564464
+      <UV>  {
+        0.436419 0.983634
+        <Tangent> { 0.468410 0.749122 0.468410 }
+        <Binormal> { -0.162069 -0.000000 0.162069 }
+      }
+      <Normal> { -0.577349 -0.577349 -0.577349 }
+    }
+    <Vertex> 63 {
+      -6.27817042798e-09 -0.0655183047056 -0.0409671738744
+      <UV>  {
+        0.018096 0.983634
+        <Tangent> { 0.000000 -0.847892 -0.530169 }
+        <Binormal> { 0.224657 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 -0.707083 -0.707083 }
+    }
+    <Vertex> 64 {
+      -0.0546228997409 1.64521836155e-08 9.62255691794e-11
+      <UV>  {
+        0.018096 0.019953
+        <Tangent> { -1.000000 0.000001 -0.000000 }
+        <Binormal> { 0.000000 0.000000 0.000001 }
+      }
+      <Normal> { -1.000000 0.000000 0.000000 }
+    }
+    <Vertex> 65 {
+      -0.0409671701491 1.71030496432e-08 -0.0409671738744
+      <UV>  {
+        0.436419 0.019953
+        <Tangent> { 0.707107 -0.000000 0.707107 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.707083 0.000000 -0.707083 }
+    }
+    <Vertex> 66 {
+      -0.0303460583091 -0.04853207618 -0.0303460564464
+      <UV>  {
+        0.436419 0.983634
+        <Tangent> { 0.468410 0.749122 0.468410 }
+        <Binormal> { -0.162069 -0.000000 0.162069 }
+      }
+      <Normal> { -0.577349 -0.577349 -0.577349 }
+    }
+    <Vertex> 67 {
+      -0.0409671850502 -0.0655183047056 9.62255691794e-11
+      <UV>  {
+        0.018096 0.983634
+        <Tangent> { -0.530169 -0.847892 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.224657 }
+      }
+      <Normal> { -0.707083 -0.707083 0.000000 }
+    }
+    <Vertex> 68 {
+      -0.0546228997409 1.64521836155e-08 9.62255691794e-11
+      <UV>  {
+        0.018096 0.019953
+        <Tangent> { -1.000000 0.000001 -0.000000 }
+        <Binormal> { 0.000000 0.000000 0.000001 }
+      }
+      <Normal> { -1.000000 0.000000 0.000000 }
+    }
+    <Vertex> 69 {
+      -0.0409671850502 -0.0655183047056 9.62255691794e-11
+      <UV>  {
+        0.436419 0.019953
+        <Tangent> { 0.530169 0.847892 0.000000 }
+        <Binormal> { 0.000000 -0.000000 0.224657 }
+      }
+      <Normal> { -0.707083 -0.707083 0.000000 }
+    }
+    <Vertex> 70 {
+      -0.0303460713476 -0.0485320799053 0.0303460564464
+      <UV>  {
+        0.436419 0.983634
+        <Tangent> { 0.468410 0.749122 -0.468410 }
+        <Binormal> { 0.162069 -0.000000 0.162069 }
+      }
+      <Normal> { -0.577349 -0.577349 0.577349 }
+    }
+    <Vertex> 71 {
+      -0.040967181325 6.68919497571e-09 0.0409671738744
+      <UV>  {
+        0.018096 0.983634
+        <Tangent> { -0.707107 0.000000 0.707107 }
+        <Binormal> { 0.000000 0.000000 0.000000 }
+      }
+      <Normal> { -0.707083 0.000000 0.707083 }
+    }
+    <Vertex> 72 {
+      -0.0546228997409 1.64521836155e-08 9.62255691794e-11
+      <UV>  {
+        0.018096 0.019953
+        <Tangent> { -1.000000 0.000001 -0.000000 }
+        <Binormal> { 0.000000 0.000000 0.000001 }
+      }
+      <Normal> { -1.000000 0.000000 0.000000 }
+    }
+    <Vertex> 73 {
+      -0.040967181325 6.68919497571e-09 0.0409671738744
+      <UV>  {
+        0.436419 0.019953
+        <Tangent> { 0.707107 -0.000000 -0.707107 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.707083 0.000000 0.707083 }
+    }
+    <Vertex> 74 {
+      -0.0303460508585 0.0485320799053 0.0303460564464
+      <UV>  {
+        0.436419 0.983634
+        <Tangent> { 0.468410 -0.749122 -0.468410 }
+        <Binormal> { -0.162069 0.000000 -0.162069 }
+      }
+      <Normal> { -0.577349 0.577349 0.577349 }
+    }
+    <Vertex> 75 {
+      -0.0409671626985 0.0655183270574 9.62255691794e-11
+      <UV>  {
+        0.018096 0.983634
+        <Tangent> { -0.530168 0.847893 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.224658 }
+      }
+      <Normal> { -0.707083 0.707083 0.000000 }
+    }
+    <Vertex> 76 {
+      -0.0546228997409 1.64521836155e-08 9.62255691794e-11
+      <UV>  {
+        0.018096 0.019953
+        <Tangent> { -1.000000 0.000001 -0.000000 }
+        <Binormal> { 0.000000 0.000000 0.000001 }
+      }
+      <Normal> { -1.000000 0.000000 0.000000 }
+    }
+    <Vertex> 77 {
+      -0.0409671626985 0.0655183270574 9.62255691794e-11
+      <UV>  {
+        0.436419 0.019953
+        <Tangent> { 0.530168 -0.847892 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.224657 }
+      }
+      <Normal> { -0.707083 0.707083 0.000000 }
+    }
+    <Vertex> 78 {
+      -0.0303460471332 0.0485320910811 -0.0303460564464
+      <UV>  {
+        0.436419 0.983634
+        <Tangent> { 0.468410 -0.749122 0.468410 }
+        <Binormal> { 0.162069 -0.000000 -0.162069 }
+      }
+      <Normal> { -0.577349 0.577349 -0.577349 }
+    }
+    <Vertex> 79 {
+      -0.0409671701491 1.71030496432e-08 -0.0409671738744
+      <UV>  {
+        0.018096 0.983634
+        <Tangent> { -0.707107 0.000001 -0.707107 }
+        <Binormal> { -0.000000 0.000000 0.000000 }
+      }
+      <Normal> { -0.707083 0.000000 -0.707083 }
+    }
+    <Vertex> 80 {
+      1.08146673838e-08 0.0873577445745 9.62255691794e-11
+      <UV>  {
+        0.018096 0.019953
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 1.000000 0.000000 }
+    }
+    <Vertex> 81 {
+      7.35540250929e-09 0.0655182898045 0.0409671738744
+      <UV>  {
+        0.436419 0.019953
+        <Tangent> { -0.000000 -0.847892 -0.530169 }
+        <Binormal> { -0.224657 0.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.707083 0.707083 }
+    }
+    <Vertex> 82 {
+      0.0303460620344 0.0485320575535 0.0303460564464
+      <UV>  {
+        0.436419 0.983634
+        <Tangent> { -0.468410 -0.749122 -0.468410 }
+        <Binormal> { -0.162069 0.000000 0.162069 }
+      }
+      <Normal> { 0.577349 0.577349 0.577349 }
+    }
+    <Vertex> 83 {
+      0.0409671850502 0.0655182898045 9.62255691794e-11
+      <UV>  {
+        0.018096 0.983634
+        <Tangent> { 0.530169 0.847892 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.224657 }
+      }
+      <Normal> { 0.707083 0.707083 0.000000 }
+    }
+    <Vertex> 84 {
+      1.08146673838e-08 0.0873577445745 9.62255691794e-11
+      <UV>  {
+        0.018096 0.019953
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 1.000000 0.000000 }
+    }
+    <Vertex> 85 {
+      0.0409671850502 0.0655182898045 9.62255691794e-11
+      <UV>  {
+        0.436419 0.019953
+        <Tangent> { -0.530169 -0.847892 0.000000 }
+        <Binormal> { -0.000000 0.000000 0.224657 }
+      }
+      <Normal> { 0.707083 0.707083 0.000000 }
+    }
+    <Vertex> 86 {
+      0.0303460620344 0.04853207618 -0.0303460564464
+      <UV>  {
+        0.436419 0.983634
+        <Tangent> { -0.468410 -0.749122 0.468410 }
+        <Binormal> { 0.162069 -0.000000 0.162069 }
+      }
+      <Normal> { 0.577349 0.577349 -0.577349 }
+    }
+    <Vertex> 87 {
+      7.35540250929e-09 0.0655183196068 -0.0409671738744
+      <UV>  {
+        0.018096 0.983634
+        <Tangent> { 0.000000 0.847892 -0.530168 }
+        <Binormal> { -0.224657 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.707083 -0.707083 }
+    }
+    <Vertex> 88 {
+      1.08146673838e-08 0.0873577445745 9.62255691794e-11
+      <UV>  {
+        0.018096 0.019953
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 1.000000 0.000000 }
+    }
+    <Vertex> 89 {
+      7.35540250929e-09 0.0655183196068 -0.0409671738744
+      <UV>  {
+        0.436419 0.019953
+        <Tangent> { -0.000000 -0.847892 0.530168 }
+        <Binormal> { 0.224657 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.707083 -0.707083 }
+    }
+    <Vertex> 90 {
+      -0.0303460471332 0.0485320910811 -0.0303460564464
+      <UV>  {
+        0.436419 0.983634
+        <Tangent> { 0.468410 -0.749122 0.468410 }
+        <Binormal> { 0.162069 -0.000000 -0.162069 }
+      }
+      <Normal> { -0.577349 0.577349 -0.577349 }
+    }
+    <Vertex> 91 {
+      -0.0409671626985 0.0655183270574 9.62255691794e-11
+      <UV>  {
+        0.018096 0.983634
+        <Tangent> { -0.530168 0.847893 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.224658 }
+      }
+      <Normal> { -0.707083 0.707083 0.000000 }
+    }
+    <Vertex> 92 {
+      1.08146673838e-08 0.0873577445745 9.62255691794e-11
+      <UV>  {
+        0.018096 0.019953
+        <Tangent> { 0.000000 1.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 1.000000 0.000000 }
+    }
+    <Vertex> 93 {
+      -0.0409671626985 0.0655183270574 9.62255691794e-11
+      <UV>  {
+        0.436419 0.019953
+        <Tangent> { 0.530168 -0.847892 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.224657 }
+      }
+      <Normal> { -0.707083 0.707083 0.000000 }
+    }
+    <Vertex> 94 {
+      -0.0303460508585 0.0485320799053 0.0303460564464
+      <UV>  {
+        0.436419 0.983634
+        <Tangent> { 0.468410 -0.749122 -0.468410 }
+        <Binormal> { -0.162069 0.000000 -0.162069 }
+      }
+      <Normal> { -0.577349 0.577349 0.577349 }
+    }
+    <Vertex> 95 {
+      7.35540250929e-09 0.0655182898045 0.0409671738744
+      <UV>  {
+        0.018096 0.983634
+        <Tangent> { 0.000000 0.847892 0.530169 }
+        <Binormal> { 0.224657 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.707083 0.707083 }
+    }
+    <Vertex> 96 {
+      1.37128886024e-08 0.105491019785 9.62255691794e-11
+      <UV>  {
+        0.552828 0.027261
+        <Tangent> { -0.000000 -1.000000 0.000000 }
+        <Binormal> { 0.000000 0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 -1.000000 0.000000 }
+    }
+    <Vertex> 97 {
+      9.53556700267e-09 0.0791182592511 0.0494709387422
+      <UV>  {
+        0.552828 0.972739
+        <Tangent> { -0.000000 -0.847892 -0.530168 }
+        <Binormal> { 0.224657 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 -0.707083 -0.707083 }
+    }
+    <Vertex> 98 {
+      -0.036645129323 0.0586061254144 0.0366451404989
+      <UV>  {
+        0.955146 0.972739
+        <Tangent> { -0.468410 0.749122 0.468410 }
+        <Binormal> { -0.162069 0.000000 -0.162069 }
+      }
+      <Normal> { 0.577349 -0.577349 -0.577349 }
+    }
+    <Vertex> 99 {
+      -0.0494709275663 0.079118296504 9.62255691794e-11
+      <UV>  {
+        0.955146 0.027261
+        <Tangent> { -0.530168 0.847892 0.000000 }
+        <Binormal> { 0.000000 0.000000 -0.224657 }
+      }
+      <Normal> { 0.707083 -0.707083 0.000000 }
+    }
+    <Vertex> 100 {
+      1.37128886024e-08 0.105491019785 9.62255691794e-11
+      <UV>  {
+        0.552828 0.027261
+        <Tangent> { -0.000000 -1.000000 0.000000 }
+        <Binormal> { 0.000000 0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 -1.000000 0.000000 }
+    }
+    <Vertex> 101 {
+      -0.0494709275663 0.079118296504 9.62255691794e-11
+      <UV>  {
+        0.552828 0.972739
+        <Tangent> { 0.530168 -0.847892 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.224657 }
+      }
+      <Normal> { 0.707083 -0.707083 0.000000 }
+    }
+    <Vertex> 102 {
+      -0.0366451255977 0.0586061403155 -0.0366451404989
+      <UV>  {
+        0.955146 0.972739
+        <Tangent> { -0.468410 0.749123 -0.468410 }
+        <Binormal> { 0.162069 -0.000000 -0.162069 }
+      }
+      <Normal> { 0.577349 -0.577349 0.577349 }
+    }
+    <Vertex> 103 {
+      9.53556700267e-09 0.0791182890534 -0.0494709387422
+      <UV>  {
+        0.955146 0.027261
+        <Tangent> { 0.000000 0.847892 -0.530168 }
+        <Binormal> { 0.224657 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 -0.707083 0.707083 }
+    }
+    <Vertex> 104 {
+      1.37128886024e-08 0.105491019785 9.62255691794e-11
+      <UV>  {
+        0.552828 0.027261
+        <Tangent> { -0.000000 -1.000000 0.000000 }
+        <Binormal> { 0.000000 0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 -1.000000 0.000000 }
+    }
+    <Vertex> 105 {
+      9.53556700267e-09 0.0791182890534 -0.0494709387422
+      <UV>  {
+        0.552828 0.972739
+        <Tangent> { -0.000000 -0.847892 0.530168 }
+        <Binormal> { -0.224657 0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 -0.707083 0.707083 }
+    }
+    <Vertex> 106 {
+      0.0366451404989 0.0586061216891 -0.0366451404989
+      <UV>  {
+        0.955146 0.972739
+        <Tangent> { 0.468410 0.749122 -0.468410 }
+        <Binormal> { 0.162069 0.000000 0.162069 }
+      }
+      <Normal> { -0.577349 -0.577349 0.577349 }
+    }
+    <Vertex> 107 {
+      0.0494709424675 0.0791182518005 9.62255691794e-11
+      <UV>  {
+        0.955146 0.027261
+        <Tangent> { 0.530169 0.847892 0.000000 }
+        <Binormal> { 0.000000 -0.000000 0.224657 }
+      }
+      <Normal> { -0.707083 -0.707083 0.000000 }
+    }
+    <Vertex> 108 {
+      1.37128886024e-08 0.105491019785 9.62255691794e-11
+      <UV>  {
+        0.552828 0.027261
+        <Tangent> { -0.000000 -1.000000 0.000000 }
+        <Binormal> { 0.000000 0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 -1.000000 0.000000 }
+    }
+    <Vertex> 109 {
+      0.0494709424675 0.0791182518005 9.62255691794e-11
+      <UV>  {
+        0.552828 0.972739
+        <Tangent> { -0.530169 -0.847892 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.224657 }
+      }
+      <Normal> { -0.707083 -0.707083 0.000000 }
+    }
+    <Vertex> 110 {
+      0.0366451404989 0.0586060993373 0.0366451404989
+      <UV>  {
+        0.955146 0.972739
+        <Tangent> { 0.468410 0.749122 0.468410 }
+        <Binormal> { -0.162069 0.000000 0.162069 }
+      }
+      <Normal> { -0.577349 -0.577349 -0.577349 }
+    }
+    <Vertex> 111 {
+      9.53556700267e-09 0.0791182592511 0.0494709387422
+      <UV>  {
+        0.955146 0.027261
+        <Tangent> { 0.000000 0.847892 0.530169 }
+        <Binormal> { -0.224657 0.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 -0.707083 -0.707083 }
+    }
+    <Vertex> 112 {
+      -0.0659612491727 2.06092121147e-08 9.62255691794e-11
+      <UV>  {
+        0.552828 0.027261
+        <Tangent> { 1.000000 -0.000001 -0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000001 }
+      }
+      <Normal> { 1.000000 0.000000 0.000000 }
+    }
+    <Vertex> 113 {
+      -0.0494709312916 2.13951842909e-08 -0.0494709387422
+      <UV>  {
+        0.552828 0.972739
+        <Tangent> { 0.707107 -0.000000 0.707107 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.707083 0.000000 0.707083 }
+    }
+    <Vertex> 114 {
+      -0.0366451255977 0.0586061403155 -0.0366451404989
+      <UV>  {
+        0.955146 0.972739
+        <Tangent> { -0.468410 0.749123 -0.468410 }
+        <Binormal> { 0.162069 -0.000000 -0.162069 }
+      }
+      <Normal> { 0.577349 -0.577349 0.577349 }
+    }
+    <Vertex> 115 {
+      -0.0494709275663 0.079118296504 9.62255691794e-11
+      <UV>  {
+        0.955146 0.027261
+        <Tangent> { -0.530168 0.847892 0.000000 }
+        <Binormal> { 0.000000 0.000000 -0.224657 }
+      }
+      <Normal> { 0.707083 -0.707083 0.000000 }
+    }
+    <Vertex> 116 {
+      -0.0659612491727 2.06092121147e-08 9.62255691794e-11
+      <UV>  {
+        0.552828 0.027261
+        <Tangent> { 1.000000 -0.000001 -0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000001 }
+      }
+      <Normal> { 1.000000 0.000000 0.000000 }
+    }
+    <Vertex> 117 {
+      -0.0494709275663 0.079118296504 9.62255691794e-11
+      <UV>  {
+        0.552828 0.972739
+        <Tangent> { 0.530168 -0.847892 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.224657 }
+      }
+      <Normal> { 0.707083 -0.707083 0.000000 }
+    }
+    <Vertex> 118 {
+      -0.036645129323 0.0586061254144 0.0366451404989
+      <UV>  {
+        0.955146 0.972739
+        <Tangent> { -0.468410 0.749122 0.468410 }
+        <Binormal> { -0.162069 0.000000 -0.162069 }
+      }
+      <Normal> { 0.577349 -0.577349 -0.577349 }
+    }
+    <Vertex> 119 {
+      -0.0494709424675 8.81967121558e-09 0.0494709387422
+      <UV>  {
+        0.955146 0.027261
+        <Tangent> { -0.707107 0.000000 0.707107 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.707083 0.000000 -0.707083 }
+    }
+    <Vertex> 120 {
+      -0.0659612491727 2.06092121147e-08 9.62255691794e-11
+      <UV>  {
+        0.552828 0.027261
+        <Tangent> { 1.000000 -0.000001 -0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000001 }
+      }
+      <Normal> { 1.000000 0.000000 0.000000 }
+    }
+    <Vertex> 121 {
+      -0.0494709424675 8.81967121558e-09 0.0494709387422
+      <UV>  {
+        0.552828 0.972739
+        <Tangent> { 0.707107 -0.000001 -0.707107 }
+        <Binormal> { 0.000000 0.000000 0.000000 }
+      }
+      <Normal> { 0.707083 0.000000 -0.707083 }
+    }
+    <Vertex> 122 {
+      -0.0366451554 -0.0586061254144 0.0366451404989
+      <UV>  {
+        0.955146 0.972739
+        <Tangent> { -0.468410 -0.749122 0.468410 }
+        <Binormal> { 0.162069 -0.000000 0.162069 }
+      }
+      <Normal> { 0.577349 0.577349 -0.577349 }
+    }
+    <Vertex> 123 {
+      -0.049470949918 -0.0791182592511 9.62255691794e-11
+      <UV>  {
+        0.955146 0.027261
+        <Tangent> { -0.530169 -0.847892 0.000000 }
+        <Binormal> { -0.000000 0.000000 0.224657 }
+      }
+      <Normal> { 0.707083 0.707083 0.000000 }
+    }
+    <Vertex> 124 {
+      -0.0659612491727 2.06092121147e-08 9.62255691794e-11
+      <UV>  {
+        0.552828 0.027261
+        <Tangent> { 1.000000 -0.000001 -0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000001 }
+      }
+      <Normal> { 1.000000 0.000000 0.000000 }
+    }
+    <Vertex> 125 {
+      -0.049470949918 -0.0791182592511 9.62255691794e-11
+      <UV>  {
+        0.552828 0.972739
+        <Tangent> { 0.530169 0.847892 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.224657 }
+      }
+      <Normal> { 0.707083 0.707083 0.000000 }
+    }
+    <Vertex> 126 {
+      -0.0366451404989 -0.0586061179638 -0.0366451404989
+      <UV>  {
+        0.955146 0.972739
+        <Tangent> { -0.468410 -0.749122 -0.468410 }
+        <Binormal> { -0.162069 -0.000000 0.162069 }
+      }
+      <Normal> { 0.577349 0.577349 0.577349 }
+    }
+    <Vertex> 127 {
+      -0.0494709312916 2.13951842909e-08 -0.0494709387422
+      <UV>  {
+        0.955146 0.027261
+        <Tangent> { -0.707107 0.000000 -0.707107 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.707083 0.000000 0.707083 }
+    }
+    <Vertex> 128 {
+      -2.06885815146e-08 -0.105491019785 9.62255691794e-11
+      <UV>  {
+        0.552828 0.027261
+        <Tangent> { 0.000000 1.000000 -0.000000 }
+        <Binormal> { 0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 1.000000 0.000000 }
+    }
+    <Vertex> 129 {
+      -6.92799506652e-09 -0.0791182592511 -0.0494709387422
+      <UV>  {
+        0.552828 0.972739
+        <Tangent> { 0.000000 0.847892 0.530169 }
+        <Binormal> { 0.224657 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.707083 0.707083 }
+    }
+    <Vertex> 130 {
+      -0.0366451404989 -0.0586061179638 -0.0366451404989
+      <UV>  {
+        0.955146 0.972739
+        <Tangent> { -0.468410 -0.749122 -0.468410 }
+        <Binormal> { -0.162069 -0.000000 0.162069 }
+      }
+      <Normal> { 0.577349 0.577349 0.577349 }
+    }
+    <Vertex> 131 {
+      -0.049470949918 -0.0791182592511 9.62255691794e-11
+      <UV>  {
+        0.955146 0.027261
+        <Tangent> { -0.530169 -0.847892 0.000000 }
+        <Binormal> { -0.000000 0.000000 0.224657 }
+      }
+      <Normal> { 0.707083 0.707083 0.000000 }
+    }
+    <Vertex> 132 {
+      -2.06885815146e-08 -0.105491019785 9.62255691794e-11
+      <UV>  {
+        0.552828 0.027261
+        <Tangent> { 0.000000 1.000000 -0.000000 }
+        <Binormal> { 0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 1.000000 0.000000 }
+    }
+    <Vertex> 133 {
+      -0.049470949918 -0.0791182592511 9.62255691794e-11
+      <UV>  {
+        0.552828 0.972739
+        <Tangent> { 0.530169 0.847892 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.224657 }
+      }
+      <Normal> { 0.707083 0.707083 0.000000 }
+    }
+    <Vertex> 134 {
+      -0.0366451554 -0.0586061254144 0.0366451404989
+      <UV>  {
+        0.955146 0.972739
+        <Tangent> { -0.468410 -0.749122 0.468410 }
+        <Binormal> { 0.162069 -0.000000 0.162069 }
+      }
+      <Normal> { 0.577349 0.577349 -0.577349 }
+    }
+    <Vertex> 135 {
+      -2.46201796728e-08 -0.0791182890534 0.0494709387422
+      <UV>  {
+        0.955146 0.027261
+        <Tangent> { -0.000000 -0.847892 0.530168 }
+        <Binormal> { 0.224657 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.707083 -0.707083 }
+    }
+    <Vertex> 136 {
+      -2.06885815146e-08 -0.105491019785 9.62255691794e-11
+      <UV>  {
+        0.552828 0.027261
+        <Tangent> { 0.000000 1.000000 -0.000000 }
+        <Binormal> { 0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 1.000000 0.000000 }
+    }
+    <Vertex> 137 {
+      -2.46201796728e-08 -0.0791182890534 0.0494709387422
+      <UV>  {
+        0.552828 0.972739
+        <Tangent> { 0.000000 0.847892 -0.530169 }
+        <Binormal> { -0.224657 0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.707083 -0.707083 }
+    }
+    <Vertex> 138 {
+      0.0366451181471 -0.0586061626673 0.0366451404989
+      <UV>  {
+        0.955146 0.972739
+        <Tangent> { 0.468410 -0.749123 0.468410 }
+        <Binormal> { 0.162069 -0.000000 -0.162069 }
+      }
+      <Normal> { -0.577349 0.577349 -0.577349 }
+    }
+    <Vertex> 139 {
+      0.0494709201157 -0.079118296504 9.62255691794e-11
+      <UV>  {
+        0.955146 0.027261
+        <Tangent> { 0.530168 -0.847892 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.224657 }
+      }
+      <Normal> { -0.707083 0.707083 0.000000 }
+    }
+    <Vertex> 140 {
+      -2.06885815146e-08 -0.105491019785 9.62255691794e-11
+      <UV>  {
+        0.552828 0.027261
+        <Tangent> { 0.000000 1.000000 -0.000000 }
+        <Binormal> { 0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 1.000000 0.000000 }
+    }
+    <Vertex> 141 {
+      0.0494709201157 -0.079118296504 9.62255691794e-11
+      <UV>  {
+        0.552828 0.972739
+        <Tangent> { -0.530168 0.847892 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.224657 }
+      }
+      <Normal> { -0.707083 0.707083 0.000000 }
+    }
+    <Vertex> 142 {
+      0.036645129323 -0.0586061403155 -0.0366451404989
+      <UV>  {
+        0.955146 0.972739
+        <Tangent> { 0.468410 -0.749123 -0.468410 }
+        <Binormal> { -0.162069 0.000000 -0.162069 }
+      }
+      <Normal> { -0.577349 0.577349 0.577349 }
+    }
+    <Vertex> 143 {
+      -6.92799506652e-09 -0.0791182592511 -0.0494709387422
+      <UV>  {
+        0.955146 0.027261
+        <Tangent> { 0.000000 -0.847892 -0.530169 }
+        <Binormal> { -0.224657 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.707083 0.707083 }
+    }
+    <Vertex> 144 {
+      0.0659612417221 -3.28367093516e-08 9.62255691794e-11
+      <UV>  {
+        0.552828 0.027261
+        <Tangent> { -1.000000 0.000001 -0.000000 }
+        <Binormal> { 0.000000 0.000000 0.000001 }
+      }
+      <Normal> { -1.000000 0.000000 0.000000 }
+    }
+    <Vertex> 145 {
+      0.0494709312916 -7.68568675369e-09 -0.0494709387422
+      <UV>  {
+        0.552828 0.972739
+        <Tangent> { -0.707107 0.000000 0.707107 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.707083 0.000000 0.707083 }
+    }
+    <Vertex> 146 {
+      0.036645129323 -0.0586061403155 -0.0366451404989
+      <UV>  {
+        0.955146 0.972739
+        <Tangent> { 0.468410 -0.749123 -0.468410 }
+        <Binormal> { -0.162069 0.000000 -0.162069 }
+      }
+      <Normal> { -0.577349 0.577349 0.577349 }
+    }
+    <Vertex> 147 {
+      0.0494709201157 -0.079118296504 9.62255691794e-11
+      <UV>  {
+        0.955146 0.027261
+        <Tangent> { 0.530168 -0.847892 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.224657 }
+      }
+      <Normal> { -0.707083 0.707083 0.000000 }
+    }
+    <Vertex> 148 {
+      0.0659612417221 -3.28367093516e-08 9.62255691794e-11
+      <UV>  {
+        0.552828 0.027261
+        <Tangent> { -1.000000 0.000001 -0.000000 }
+        <Binormal> { 0.000000 0.000000 0.000001 }
+      }
+      <Normal> { -1.000000 0.000000 0.000000 }
+    }
+    <Vertex> 149 {
+      0.0494709201157 -0.079118296504 9.62255691794e-11
+      <UV>  {
+        0.552828 0.972739
+        <Tangent> { -0.530168 0.847892 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.224657 }
+      }
+      <Normal> { -0.707083 0.707083 0.000000 }
+    }
+    <Vertex> 150 {
+      0.0366451181471 -0.0586061626673 0.0366451404989
+      <UV>  {
+        0.955146 0.972739
+        <Tangent> { 0.468410 -0.749123 0.468410 }
+        <Binormal> { 0.162069 -0.000000 -0.162069 }
+      }
+      <Normal> { -0.577349 0.577349 -0.577349 }
+    }
+    <Vertex> 151 {
+      0.0494709275663 -4.38402771863e-08 0.0494709387422
+      <UV>  {
+        0.955146 0.027261
+        <Tangent> { 0.707107 -0.000001 0.707107 }
+        <Binormal> { 0.000001 -0.000000 -0.000001 }
+      }
+      <Normal> { -0.707083 0.000000 -0.707083 }
+    }
+    <Vertex> 152 {
+      0.0659612417221 -3.28367093516e-08 9.62255691794e-11
+      <UV>  {
+        0.552828 0.027261
+        <Tangent> { -1.000000 0.000001 -0.000000 }
+        <Binormal> { 0.000000 0.000000 0.000001 }
+      }
+      <Normal> { -1.000000 0.000000 0.000000 }
+    }
+    <Vertex> 153 {
+      0.0494709275663 -4.38402771863e-08 0.0494709387422
+      <UV>  {
+        0.552828 0.972739
+        <Tangent> { -0.707107 0.000001 -0.707107 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.707083 0.000000 -0.707083 }
+    }
+    <Vertex> 154 {
+      0.0366451404989 0.0586060993373 0.0366451404989
+      <UV>  {
+        0.955146 0.972739
+        <Tangent> { 0.468410 0.749122 0.468410 }
+        <Binormal> { -0.162069 0.000000 0.162069 }
+      }
+      <Normal> { -0.577349 -0.577349 -0.577349 }
+    }
+    <Vertex> 155 {
+      0.0494709424675 0.0791182518005 9.62255691794e-11
+      <UV>  {
+        0.955146 0.027261
+        <Tangent> { 0.530169 0.847892 0.000000 }
+        <Binormal> { 0.000000 -0.000000 0.224657 }
+      }
+      <Normal> { -0.707083 -0.707083 0.000000 }
+    }
+    <Vertex> 156 {
+      0.0659612417221 -3.28367093516e-08 9.62255691794e-11
+      <UV>  {
+        0.552828 0.027261
+        <Tangent> { -1.000000 0.000001 -0.000000 }
+        <Binormal> { 0.000000 0.000000 0.000001 }
+      }
+      <Normal> { -1.000000 0.000000 0.000000 }
+    }
+    <Vertex> 157 {
+      0.0494709424675 0.0791182518005 9.62255691794e-11
+      <UV>  {
+        0.552828 0.972739
+        <Tangent> { -0.530169 -0.847892 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.224657 }
+      }
+      <Normal> { -0.707083 -0.707083 0.000000 }
+    }
+    <Vertex> 158 {
+      0.0366451404989 0.0586061216891 -0.0366451404989
+      <UV>  {
+        0.955146 0.972739
+        <Tangent> { 0.468410 0.749122 -0.468410 }
+        <Binormal> { 0.162069 0.000000 0.162069 }
+      }
+      <Normal> { -0.577349 -0.577349 0.577349 }
+    }
+    <Vertex> 159 {
+      0.0494709312916 -7.68568675369e-09 -0.0494709387422
+      <UV>  {
+        0.955146 0.027261
+        <Tangent> { 0.707107 0.000000 -0.707107 }
+        <Binormal> { 0.000000 0.000000 0.000000 }
+      }
+      <Normal> { -0.707083 0.000000 0.707083 }
+    }
+    <Vertex> 160 {
+      -8.89379414559e-09 -2.02611989408e-08 0.0659612491727
+      <UV>  {
+        0.552828 0.027261
+        <Tangent> { 0.000000 0.000000 -1.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 -1.000000 }
+    }
+    <Vertex> 161 {
+      0.0494709275663 -4.38402771863e-08 0.0494709387422
+      <UV>  {
+        0.552828 0.972739
+        <Tangent> { -0.707107 0.000001 -0.707107 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.707083 0.000000 -0.707083 }
+    }
+    <Vertex> 162 {
+      0.0366451181471 -0.0586061626673 0.0366451404989
+      <UV>  {
+        0.955146 0.972739
+        <Tangent> { 0.468410 -0.749123 0.468410 }
+        <Binormal> { 0.162069 -0.000000 -0.162069 }
+      }
+      <Normal> { -0.577349 0.577349 -0.577349 }
+    }
+    <Vertex> 163 {
+      -2.46201796728e-08 -0.0791182890534 0.0494709387422
+      <UV>  {
+        0.955146 0.027261
+        <Tangent> { -0.000000 -0.847892 0.530168 }
+        <Binormal> { 0.224657 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.707083 -0.707083 }
+    }
+    <Vertex> 164 {
+      -8.89379414559e-09 -2.02611989408e-08 0.0659612491727
+      <UV>  {
+        0.552828 0.027261
+        <Tangent> { 0.000000 0.000000 -1.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 -1.000000 }
+    }
+    <Vertex> 165 {
+      -2.46201796728e-08 -0.0791182890534 0.0494709387422
+      <UV>  {
+        0.552828 0.972739
+        <Tangent> { 0.000000 0.847892 -0.530169 }
+        <Binormal> { -0.224657 0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.707083 -0.707083 }
+    }
+    <Vertex> 166 {
+      -0.0366451554 -0.0586061254144 0.0366451404989
+      <UV>  {
+        0.955146 0.972739
+        <Tangent> { -0.468410 -0.749122 0.468410 }
+        <Binormal> { 0.162069 -0.000000 0.162069 }
+      }
+      <Normal> { 0.577349 0.577349 -0.577349 }
+    }
+    <Vertex> 167 {
+      -0.0494709424675 8.81967121558e-09 0.0494709387422
+      <UV>  {
+        0.955146 0.027261
+        <Tangent> { -0.707107 0.000000 0.707107 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.707083 0.000000 -0.707083 }
+    }
+    <Vertex> 168 {
+      -8.89379414559e-09 -2.02611989408e-08 0.0659612491727
+      <UV>  {
+        0.552828 0.027261
+        <Tangent> { 0.000000 0.000000 -1.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 -1.000000 }
+    }
+    <Vertex> 169 {
+      -0.0494709424675 8.81967121558e-09 0.0494709387422
+      <UV>  {
+        0.552828 0.972739
+        <Tangent> { 0.707107 -0.000001 -0.707107 }
+        <Binormal> { 0.000000 0.000000 0.000000 }
+      }
+      <Normal> { 0.707083 0.000000 -0.707083 }
+    }
+    <Vertex> 170 {
+      -0.036645129323 0.0586061254144 0.0366451404989
+      <UV>  {
+        0.955146 0.972739
+        <Tangent> { -0.468410 0.749122 0.468410 }
+        <Binormal> { -0.162069 0.000000 -0.162069 }
+      }
+      <Normal> { 0.577349 -0.577349 -0.577349 }
+    }
+    <Vertex> 171 {
+      9.53556700267e-09 0.0791182592511 0.0494709387422
+      <UV>  {
+        0.955146 0.027261
+        <Tangent> { 0.000000 0.847892 0.530169 }
+        <Binormal> { -0.224657 0.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 -0.707083 -0.707083 }
+    }
+    <Vertex> 172 {
+      -8.89379414559e-09 -2.02611989408e-08 0.0659612491727
+      <UV>  {
+        0.552828 0.027261
+        <Tangent> { 0.000000 0.000000 -1.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 -1.000000 }
+    }
+    <Vertex> 173 {
+      9.53556700267e-09 0.0791182592511 0.0494709387422
+      <UV>  {
+        0.552828 0.972739
+        <Tangent> { -0.000000 -0.847892 -0.530168 }
+        <Binormal> { 0.224657 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 -0.707083 -0.707083 }
+    }
+    <Vertex> 174 {
+      0.0366451404989 0.0586060993373 0.0366451404989
+      <UV>  {
+        0.955146 0.972739
+        <Tangent> { 0.468410 0.749122 0.468410 }
+        <Binormal> { -0.162069 0.000000 0.162069 }
+      }
+      <Normal> { -0.577349 -0.577349 -0.577349 }
+    }
+    <Vertex> 175 {
+      0.0494709275663 -4.38402771863e-08 0.0494709387422
+      <UV>  {
+        0.955146 0.027261
+        <Tangent> { 0.707107 -0.000001 0.707107 }
+        <Binormal> { 0.000001 -0.000000 -0.000001 }
+      }
+      <Normal> { -0.707083 0.000000 -0.707083 }
+    }
+    <Vertex> 176 {
+      2.90099633204e-09 1.11775806388e-08 -0.0659612491727
+      <UV>  {
+        0.552828 0.027261
+        <Tangent> { -0.000000 -0.000000 1.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 177 {
+      9.53556700267e-09 0.0791182890534 -0.0494709387422
+      <UV>  {
+        0.552828 0.972739
+        <Tangent> { -0.000000 -0.847892 0.530168 }
+        <Binormal> { -0.224657 0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 -0.707083 0.707083 }
+    }
+    <Vertex> 178 {
+      -0.0366451255977 0.0586061403155 -0.0366451404989
+      <UV>  {
+        0.955146 0.972739
+        <Tangent> { -0.468410 0.749123 -0.468410 }
+        <Binormal> { 0.162069 -0.000000 -0.162069 }
+      }
+      <Normal> { 0.577349 -0.577349 0.577349 }
+    }
+    <Vertex> 179 {
+      -0.0494709312916 2.13951842909e-08 -0.0494709387422
+      <UV>  {
+        0.955146 0.027261
+        <Tangent> { -0.707107 0.000000 -0.707107 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.707083 0.000000 0.707083 }
+    }
+    <Vertex> 180 {
+      2.90099633204e-09 1.11775806388e-08 -0.0659612491727
+      <UV>  {
+        0.552828 0.027261
+        <Tangent> { -0.000000 -0.000000 1.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 181 {
+      -0.0494709312916 2.13951842909e-08 -0.0494709387422
+      <UV>  {
+        0.552828 0.972739
+        <Tangent> { 0.707107 -0.000000 0.707107 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { 0.707083 0.000000 0.707083 }
+    }
+    <Vertex> 182 {
+      -0.0366451404989 -0.0586061179638 -0.0366451404989
+      <UV>  {
+        0.955146 0.972739
+        <Tangent> { -0.468410 -0.749122 -0.468410 }
+        <Binormal> { -0.162069 -0.000000 0.162069 }
+      }
+      <Normal> { 0.577349 0.577349 0.577349 }
+    }
+    <Vertex> 183 {
+      -6.92799506652e-09 -0.0791182592511 -0.0494709387422
+      <UV>  {
+        0.955146 0.027261
+        <Tangent> { 0.000000 -0.847892 -0.530169 }
+        <Binormal> { -0.224657 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.707083 0.707083 }
+    }
+    <Vertex> 184 {
+      2.90099633204e-09 1.11775806388e-08 -0.0659612491727
+      <UV>  {
+        0.552828 0.027261
+        <Tangent> { -0.000000 -0.000000 1.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 185 {
+      -6.92799506652e-09 -0.0791182592511 -0.0494709387422
+      <UV>  {
+        0.552828 0.972739
+        <Tangent> { 0.000000 0.847892 0.530169 }
+        <Binormal> { 0.224657 -0.000000 0.000000 }
+      }
+      <Normal> { 0.000000 0.707083 0.707083 }
+    }
+    <Vertex> 186 {
+      0.036645129323 -0.0586061403155 -0.0366451404989
+      <UV>  {
+        0.955146 0.972739
+        <Tangent> { 0.468410 -0.749123 -0.468410 }
+        <Binormal> { -0.162069 0.000000 -0.162069 }
+      }
+      <Normal> { -0.577349 0.577349 0.577349 }
+    }
+    <Vertex> 187 {
+      0.0494709312916 -7.68568675369e-09 -0.0494709387422
+      <UV>  {
+        0.955146 0.027261
+        <Tangent> { 0.707107 0.000000 -0.707107 }
+        <Binormal> { 0.000000 0.000000 0.000000 }
+      }
+      <Normal> { -0.707083 0.000000 0.707083 }
+    }
+    <Vertex> 188 {
+      2.90099633204e-09 1.11775806388e-08 -0.0659612491727
+      <UV>  {
+        0.552828 0.027261
+        <Tangent> { -0.000000 -0.000000 1.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 189 {
+      0.0494709312916 -7.68568675369e-09 -0.0494709387422
+      <UV>  {
+        0.552828 0.972739
+        <Tangent> { -0.707107 0.000000 0.707107 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.707083 0.000000 0.707083 }
+    }
+    <Vertex> 190 {
+      0.0366451404989 0.0586061216891 -0.0366451404989
+      <UV>  {
+        0.955146 0.972739
+        <Tangent> { 0.468410 0.749122 -0.468410 }
+        <Binormal> { 0.162069 0.000000 0.162069 }
+      }
+      <Normal> { -0.577349 -0.577349 0.577349 }
+    }
+    <Vertex> 191 {
+      9.53556700267e-09 0.0791182890534 -0.0494709387422
+      <UV>  {
+        0.955146 0.027261
+        <Tangent> { 0.000000 0.847892 -0.530168 }
+        <Binormal> { 0.224657 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.000000 -0.707083 0.707083 }
+    }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 0 1 2 3 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 4 5 6 7 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 8 9 10 11 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 12 13 14 15 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 16 17 18 19 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 20 21 22 23 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 24 25 26 27 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 28 29 30 31 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 32 33 34 35 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 36 37 38 39 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 40 41 42 43 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 44 45 46 47 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 48 49 50 51 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 52 53 54 55 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 56 57 58 59 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 60 61 62 63 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 64 65 66 67 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 68 69 70 71 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 72 73 74 75 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 76 77 78 79 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 80 81 82 83 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 84 85 86 87 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 88 89 90 91 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 92 93 94 95 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 96 97 98 99 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 100 101 102 103 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 104 105 106 107 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 108 109 110 111 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 112 113 114 115 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 116 117 118 119 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 120 121 122 123 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 124 125 126 127 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 128 129 130 131 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 132 133 134 135 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 136 137 138 139 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 140 141 142 143 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 144 145 146 147 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 148 149 150 151 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 152 153 154 155 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 156 157 158 159 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 160 161 162 163 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 164 165 166 167 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 168 169 170 171 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 172 173 174 175 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 176 177 178 179 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 180 181 182 183 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 184 185 186 187 <Ref> { Cube } }
+  }
+  <Polygon> {
+    <TRef> { blasterbullet.jpg.001 }
+    <MRef> { Material }
+    <VertexRef> { 188 189 190 191 <Ref> { Cube } }
+  }
+}
\ No newline at end of file

=== added file 'bunnyexample/data/models/blasterbullet.jpg'
Binary files bunnyexample/data/models/blasterbullet.jpg	1970-01-01 00:00:00 +0000 and bunnyexample/data/models/blasterbullet.jpg	2010-08-26 12:58:47 +0000 differ
=== added file 'bunnyexample/data/models/doc_hare.egg'
--- bunnyexample/data/models/doc_hare.egg	1970-01-01 00:00:00 +0000
+++ bunnyexample/data/models/doc_hare.egg	2010-08-26 12:58:47 +0000
@@ -0,0 +1,62077 @@
+<CoordinateSystem> { Z-up }
+
+<Comment> { "Egg laid by Chicken for Blender, version R85" }
+
+<Material> Material.001 {
+  <Scalar> diffr {1.0}
+  <Scalar> diffg {1.0}
+  <Scalar> diffb {1.0}
+  <Scalar> specr {0.0878603905439}
+  <Scalar> specg {0.0878603905439}
+  <Scalar> specb {0.0878603905439}
+  <Scalar> shininess {12.5}
+}
+<Texture> Material.001_00_Tex.001 {
+  "./doc_hare.jpg"
+  <Scalar> saved-result { 1 }
+  <Scalar> envtype { MODULATE }
+  <Scalar> minfilter { LINEAR_MIPMAP_LINEAR }
+  <Scalar> magfilter { LINEAR_MIPMAP_LINEAR }
+  <Scalar> wrap { REPEAT }
+}
+<Group> stand_None {
+  <Transform> {
+    <Matrix4> {
+      -0.000000 -0.326543 0.000000 0.000000
+      0.326543 -0.000000 0.000000 0.000000
+      0.000000 0.000000 0.326543 0.000000
+      -0.837846 0.256342 2.168450 1.000000
+    }
+  }
+  <VertexPool> stand_None {
+    <Vertex> 0 {
+      -0.889337420464 0.860853374004 1.94049906731
+      <UV>  {
+        0.649423 0.795159
+        <Tangent> { 0.961166 0.245060 0.126904 }
+        <Binormal> { 0.073077 -0.278793 -0.015114 }
+      }
+      <Normal> { -0.951933 -0.258431 0.164373 }
+    }
+    <Vertex> 1 {
+      -0.889337420464 0.827808439732 2.08447766304
+      <UV>  {
+        0.649350 0.795621
+        <Tangent> { 0.951054 0.308993 -0.004514 }
+        <Binormal> { 0.044384 -0.136515 0.006581 }
+      }
+      <Normal> { -0.942595 -0.299326 0.148015 }
+    }
+    <Vertex> 2 {
+      -0.797497272491 0.837095499039 2.1598675251
+      <UV>  {
+        0.648925 0.795825
+        <Tangent> { 0.946851 0.191528 0.258439 }
+        <Binormal> { 0.035273 -0.429390 0.188988 }
+      }
+      <Normal> { -0.982665 0.000824 0.185278 }
+    }
+    <Vertex> 3 {
+      -0.797497272491 0.889273703098 1.70570719242
+      <UV>  {
+        0.649330 0.794802
+        <Tangent> { 0.918498 0.114772 0.378404 }
+        <Binormal> { -0.003164 -0.353962 0.115038 }
+      }
+      <Normal> { -0.999634 0.000336 -0.026460 }
+    }
+    <Vertex> 4 {
+      -0.889337420464 0.878551721573 1.65056669712
+      <UV>  {
+        0.649543 0.794800
+        <Tangent> { 0.980944 0.148803 0.124927 }
+        <Binormal> { 0.009370 -0.099224 0.044614 }
+      }
+      <Normal> { -0.994110 -0.105319 -0.025452 }
+    }
+    <Vertex> 5 {
+      -0.889337420464 0.860853374004 1.94049906731
+      <UV>  {
+        0.649423 0.795159
+        <Tangent> { 0.961166 0.245060 0.126904 }
+        <Binormal> { 0.073077 -0.278793 -0.015114 }
+      }
+      <Normal> { -0.951933 -0.258431 0.164373 }
+    }
+    <Vertex> 6 {
+      -0.889337420464 0.860853374004 1.94049906731
+      <UV>  {
+        0.649423 0.795159
+        <Tangent> { 0.961166 0.245060 0.126904 }
+        <Binormal> { 0.073077 -0.278793 -0.015114 }
+      }
+      <Normal> { -0.951933 -0.258431 0.164373 }
+    }
+    <Vertex> 7 {
+      -0.797497272491 0.870299816132 2.00807619095
+      <UV>  {
+        0.649090 0.795267
+        <Tangent> { 0.970651 0.156238 0.182829 }
+        <Binormal> { 0.021396 -0.314771 0.155398 }
+      }
+      <Normal> { -0.990448 0.000671 0.137730 }
+    }
+    <Vertex> 8 {
+      -0.797497272491 0.889273703098 1.70570719242
+      <UV>  {
+        0.649330 0.794802
+        <Tangent> { 0.918498 0.114772 0.378404 }
+        <Binormal> { -0.003164 -0.353962 0.115038 }
+      }
+      <Normal> { -0.999634 0.000336 -0.026460 }
+    }
+    <Vertex> 9 {
+      -0.797497272491 0.837095499039 2.1598675251
+      <UV>  {
+        0.648925 0.795825
+        <Tangent> { 0.946851 0.191528 0.258439 }
+        <Binormal> { 0.035273 -0.429390 0.188988 }
+      }
+      <Normal> { -0.982665 0.000824 0.185278 }
+    }
+    <Vertex> 10 {
+      -0.797497272491 0.870299816132 2.00807619095
+      <UV>  {
+        0.649090 0.795267
+        <Tangent> { 0.970651 0.156238 0.182829 }
+        <Binormal> { 0.021396 -0.314771 0.155398 }
+      }
+      <Normal> { -0.990448 0.000671 0.137730 }
+    }
+    <Vertex> 11 {
+      -0.889337420464 0.860853374004 1.94049906731
+      <UV>  {
+        0.649423 0.795159
+        <Tangent> { 0.961166 0.245060 0.126904 }
+        <Binormal> { 0.073077 -0.278793 -0.015114 }
+      }
+      <Normal> { -0.951933 -0.258431 0.164373 }
+    }
+    <Vertex> 12 {
+      -0.889337420464 0.860853374004 1.94049906731
+      <UV>  {
+        0.649423 0.795159
+        <Tangent> { 0.961166 0.245060 0.126904 }
+        <Binormal> { 0.073077 -0.278793 -0.015114 }
+      }
+      <Normal> { -0.951933 -0.258431 0.164373 }
+    }
+    <Vertex> 13 {
+      -1.09852874279 0.800342738628 1.904327631
+      <UV>  {
+        0.649901 0.795087
+        <Tangent> { 0.791515 0.610880 -0.018155 }
+        <Binormal> { 0.125877 -0.162453 0.021715 }
+      }
+      <Normal> { -0.784722 -0.578204 0.223243 }
+    }
+    <Vertex> 14 {
+      -1.09852874279 0.754539847374 2.02752351761
+      <UV>  {
+        0.650046 0.795370
+        <Tangent> { 0.658886 0.720554 -0.216033 }
+        <Binormal> { -0.056188 0.054828 0.011502 }
+      }
+      <Normal> { -0.676931 -0.722831 0.138737 }
+    }
+    <Vertex> 15 {
+      -0.889337420464 0.860853374004 1.94049906731
+      <UV>  {
+        0.649423 0.795159
+        <Tangent> { 0.961166 0.245060 0.126904 }
+        <Binormal> { 0.073077 -0.278793 -0.015114 }
+      }
+      <Normal> { -0.951933 -0.258431 0.164373 }
+    }
+    <Vertex> 16 {
+      -1.09852874279 0.754539847374 2.02752351761
+      <UV>  {
+        0.650046 0.795370
+        <Tangent> { 0.658886 0.720554 -0.216033 }
+        <Binormal> { -0.056188 0.054828 0.011502 }
+      }
+      <Normal> { -0.676931 -0.722831 0.138737 }
+    }
+    <Vertex> 17 {
+      -0.889337420464 0.827808439732 2.08447766304
+      <UV>  {
+        0.649350 0.795621
+        <Tangent> { 0.951054 0.308993 -0.004514 }
+        <Binormal> { 0.044384 -0.136515 0.006581 }
+      }
+      <Normal> { -0.942595 -0.299326 0.148015 }
+    }
+    <Vertex> 18 {
+      -0.889337420464 0.878551721573 1.65056669712
+      <UV>  {
+        0.649543 0.794800
+        <Tangent> { 0.980944 0.148803 0.124927 }
+        <Binormal> { 0.009370 -0.099224 0.044614 }
+      }
+      <Normal> { -0.994110 -0.105319 -0.025452 }
+    }
+    <Vertex> 19 {
+      -1.09852874279 0.850881814957 1.77086365223
+      <UV>  {
+        0.649874 0.794859
+        <Tangent> { 0.846955 0.531260 0.020753 }
+        <Binormal> { 0.039548 -0.062213 -0.021412 }
+      }
+      <Normal> { -0.834346 -0.548631 0.053011 }
+    }
+    <Vertex> 20 {
+      -1.09852874279 0.800342738628 1.904327631
+      <UV>  {
+        0.649901 0.795087
+        <Tangent> { 0.791515 0.610880 -0.018155 }
+        <Binormal> { 0.125877 -0.162453 0.021715 }
+      }
+      <Normal> { -0.784722 -0.578204 0.223243 }
+    }
+    <Vertex> 21 {
+      -0.889337420464 0.878551721573 1.65056669712
+      <UV>  {
+        0.649543 0.794800
+        <Tangent> { 0.980944 0.148803 0.124927 }
+        <Binormal> { 0.009370 -0.099224 0.044614 }
+      }
+      <Normal> { -0.994110 -0.105319 -0.025452 }
+    }
+    <Vertex> 22 {
+      -1.09852874279 0.800342738628 1.904327631
+      <UV>  {
+        0.649901 0.795087
+        <Tangent> { 0.791515 0.610880 -0.018155 }
+        <Binormal> { 0.125877 -0.162453 0.021715 }
+      }
+      <Normal> { -0.784722 -0.578204 0.223243 }
+    }
+    <Vertex> 23 {
+      -0.889337420464 0.860853374004 1.94049906731
+      <UV>  {
+        0.649423 0.795159
+        <Tangent> { 0.961166 0.245060 0.126904 }
+        <Binormal> { 0.073077 -0.278793 -0.015114 }
+      }
+      <Normal> { -0.951933 -0.258431 0.164373 }
+    }
+    <Vertex> 24 {
+      -0.889337420464 0.827808439732 2.08447766304
+      <UV>  {
+        0.649350 0.795621
+        <Tangent> { 0.951054 0.308993 -0.004514 }
+        <Binormal> { 0.044384 -0.136515 0.006581 }
+      }
+      <Normal> { -0.942595 -0.299326 0.148015 }
+    }
+    <Vertex> 25 {
+      -0.889337420464 0.801260888577 2.25703644753
+      <UV>  {
+        0.649375 0.796439
+        <Tangent> { 0.951074 0.308486 -0.017171 }
+        <Binormal> { 0.064709 -0.200068 -0.010175 }
+      }
+      <Normal> { -0.923154 -0.310129 0.227027 }
+    }
+    <Vertex> 26 {
+      -0.797497272491 0.837095499039 2.1598675251
+      <UV>  {
+        0.648925 0.795825
+        <Tangent> { 0.946851 0.191528 0.258439 }
+        <Binormal> { 0.035273 -0.429390 0.188988 }
+      }
+      <Normal> { -0.982665 0.000824 0.185278 }
+    }
+    <Vertex> 27 {
+      -0.889337420464 0.801260888577 2.25703644753
+      <UV>  {
+        0.649375 0.796439
+        <Tangent> { 0.951074 0.308486 -0.017171 }
+        <Binormal> { 0.064709 -0.200068 -0.010175 }
+      }
+      <Normal> { -0.923154 -0.310129 0.227027 }
+    }
+    <Vertex> 28 {
+      -0.797497272491 0.808634579182 2.34486317635
+      <UV>  {
+        0.648570 0.796917
+        <Tangent> { 0.955543 0.213206 0.203668 }
+        <Binormal> { 0.041821 -0.387910 0.209868 }
+      }
+      <Normal> { -0.980377 0.000885 0.196997 }
+    }
+    <Vertex> 29 {
+      -0.797497272491 0.837095499039 2.1598675251
+      <UV>  {
+        0.648925 0.795825
+        <Tangent> { 0.946851 0.191528 0.258439 }
+        <Binormal> { 0.035273 -0.429390 0.188988 }
+      }
+      <Normal> { -0.982665 0.000824 0.185278 }
+    }
+    <Vertex> 30 {
+      -0.889337420464 0.827808439732 2.08447766304
+      <UV>  {
+        0.649350 0.795621
+        <Tangent> { 0.951054 0.308993 -0.004514 }
+        <Binormal> { 0.044384 -0.136515 0.006581 }
+      }
+      <Normal> { -0.942595 -0.299326 0.148015 }
+    }
+    <Vertex> 31 {
+      -1.09852874279 0.754539847374 2.02752351761
+      <UV>  {
+        0.650046 0.795370
+        <Tangent> { 0.658886 0.720554 -0.216033 }
+        <Binormal> { -0.056188 0.054828 0.011502 }
+      }
+      <Normal> { -0.676931 -0.722831 0.138737 }
+    }
+    <Vertex> 32 {
+      -1.09852874279 0.75163936615 2.16098856926
+      <UV>  {
+        0.650229 0.795781
+        <Tangent> { 0.618414 0.718282 -0.318804 }
+        <Binormal> { -0.146366 0.150081 0.054220 }
+      }
+      <Normal> { -0.690512 -0.714347 0.113285 }
+    }
+    <Vertex> 33 {
+      -0.889337420464 0.827808439732 2.08447766304
+      <UV>  {
+        0.649350 0.795621
+        <Tangent> { 0.951054 0.308993 -0.004514 }
+        <Binormal> { 0.044384 -0.136515 0.006581 }
+      }
+      <Normal> { -0.942595 -0.299326 0.148015 }
+    }
+    <Vertex> 34 {
+      -1.09852874279 0.75163936615 2.16098856926
+      <UV>  {
+        0.650229 0.795781
+        <Tangent> { 0.618414 0.718282 -0.318804 }
+        <Binormal> { -0.146366 0.150081 0.054220 }
+      }
+      <Normal> { -0.690512 -0.714347 0.113285 }
+    }
+    <Vertex> 35 {
+      -0.889337420464 0.801260888577 2.25703644753
+      <UV>  {
+        0.649375 0.796439
+        <Tangent> { 0.951074 0.308486 -0.017171 }
+        <Binormal> { 0.064709 -0.200068 -0.010175 }
+      }
+      <Normal> { -0.923154 -0.310129 0.227027 }
+    }
+    <Vertex> 36 {
+      -0.909666597843 0.697590112686 2.51257276535
+      <UV>  {
+        0.650546 0.798447
+        <Tangent> { 0.896968 0.255673 -0.360665 }
+        <Binormal> { -0.055690 0.125858 -0.049281 }
+      }
+      <Normal> { -0.920103 -0.317209 0.229652 }
+    }
+    <Vertex> 37 {
+      -0.909666597843 0.664598822594 2.64579486847
+      <UV>  {
+        0.651917 0.800182
+        <Tangent> { 0.559986 0.667311 -0.491032 }
+        <Binormal> { 0.100480 0.097882 0.247612 }
+      }
+      <Normal> { -0.750114 -0.451704 0.482955 }
+    }
+    <Vertex> 38 {
+      -0.797497332096 0.680560708046 2.75754570961
+      <UV>  {
+        0.646546 0.805109
+        <Tangent> { 0.793689 0.577571 -0.190969 }
+        <Binormal> { 0.153246 -0.025410 0.560057 }
+      }
+      <Normal> { -0.964476 0.003784 0.264077 }
+    }
+    <Vertex> 39 {
+      -0.909666597843 0.697590112686 2.51257276535
+      <UV>  {
+        0.650546 0.798447
+        <Tangent> { 0.896968 0.255673 -0.360665 }
+        <Binormal> { -0.055690 0.125858 -0.049281 }
+      }
+      <Normal> { -0.920103 -0.317209 0.229652 }
+    }
+    <Vertex> 40 {
+      -0.797497332096 0.761199831963 2.53460216522
+      <UV>  {
+        0.648099 0.798559
+        <Tangent> { 0.909434 0.342338 0.236080 }
+        <Binormal> { 0.103694 -0.501141 0.327247 }
+      }
+      <Normal> { -0.952757 0.001190 0.303720 }
+    }
+    <Vertex> 41 {
+      -0.889337420464 0.801260888577 2.25703644753
+      <UV>  {
+        0.649375 0.796439
+        <Tangent> { 0.951074 0.308486 -0.017171 }
+        <Binormal> { 0.064709 -0.200068 -0.010175 }
+      }
+      <Normal> { -0.923154 -0.310129 0.227027 }
+    }
+    <Vertex> 42 {
+      -0.889337420464 0.801260888577 2.25703644753
+      <UV>  {
+        0.649375 0.796439
+        <Tangent> { 0.951074 0.308486 -0.017171 }
+        <Binormal> { 0.064709 -0.200068 -0.010175 }
+      }
+      <Normal> { -0.923154 -0.310129 0.227027 }
+    }
+    <Vertex> 43 {
+      -0.797497332096 0.761199831963 2.53460216522
+      <UV>  {
+        0.648099 0.798559
+        <Tangent> { 0.909434 0.342338 0.236080 }
+        <Binormal> { 0.103694 -0.501141 0.327247 }
+      }
+      <Normal> { -0.952757 0.001190 0.303720 }
+    }
+    <Vertex> 44 {
+      -0.797497272491 0.808634579182 2.34486317635
+      <UV>  {
+        0.648570 0.796917
+        <Tangent> { 0.955543 0.213206 0.203668 }
+        <Binormal> { 0.041821 -0.387910 0.209868 }
+      }
+      <Normal> { -0.980377 0.000885 0.196997 }
+    }
+    <Vertex> 45 {
+      -0.909666597843 0.697590112686 2.51257276535
+      <UV>  {
+        0.650546 0.798447
+        <Tangent> { 0.896968 0.255673 -0.360665 }
+        <Binormal> { -0.055690 0.125858 -0.049281 }
+      }
+      <Normal> { -0.920103 -0.317209 0.229652 }
+    }
+    <Vertex> 46 {
+      -0.797497332096 0.680560708046 2.75754570961
+      <UV>  {
+        0.646546 0.805109
+        <Tangent> { 0.793689 0.577571 -0.190969 }
+        <Binormal> { 0.153246 -0.025410 0.560057 }
+      }
+      <Normal> { -0.964476 0.003784 0.264077 }
+    }
+    <Vertex> 47 {
+      -0.797497332096 0.761199831963 2.53460216522
+      <UV>  {
+        0.648099 0.798559
+        <Tangent> { 0.909434 0.342338 0.236080 }
+        <Binormal> { 0.103694 -0.501141 0.327247 }
+      }
+      <Normal> { -0.952757 0.001190 0.303720 }
+    }
+    <Vertex> 48 {
+      -1.14994847775 0.604476988316 1.99116516113
+      <UV>  {
+        0.650445 0.795094
+        <Tangent> { -0.010551 0.663007 -0.748538 }
+        <Binormal> { -0.725652 0.059123 0.062595 }
+      }
+      <Normal> { -0.078555 -0.996429 0.030488 }
+    }
+    <Vertex> 49 {
+      -1.14994847775 0.599374771118 2.09831190109
+      <UV>  {
+        0.650611 0.795336
+        <Tangent> { 0.019822 0.790869 -0.611664 }
+        <Binormal> { -0.593965 0.039802 0.032214 }
+      }
+      <Normal> { -0.065737 -0.997620 0.020539 }
+    }
+    <Vertex> 50 {
+      -1.09852874279 0.75163936615 2.16098856926
+      <UV>  {
+        0.650229 0.795781
+        <Tangent> { 0.618414 0.718282 -0.318804 }
+        <Binormal> { -0.146366 0.150081 0.054220 }
+      }
+      <Normal> { -0.690512 -0.714347 0.113285 }
+    }
+    <Vertex> 51 {
+      -1.09852874279 0.800342738628 1.904327631
+      <UV>  {
+        0.649901 0.795087
+        <Tangent> { 0.791515 0.610880 -0.018155 }
+        <Binormal> { 0.125877 -0.162453 0.021715 }
+      }
+      <Normal> { -0.784722 -0.578204 0.223243 }
+    }
+    <Vertex> 52 {
+      -1.09852874279 0.850881814957 1.77086365223
+      <UV>  {
+        0.649874 0.794859
+        <Tangent> { 0.846955 0.531260 0.020753 }
+        <Binormal> { 0.039548 -0.062213 -0.021412 }
+      }
+      <Normal> { -0.834346 -0.548631 0.053011 }
+    }
+    <Vertex> 53 {
+      -1.16968941689 0.61468142271 1.7156226635
+      <UV>  {
+        0.650256 0.794832
+        <Tangent> { -0.009419 0.851436 -0.524374 }
+        <Binormal> { -0.425948 0.016589 0.034587 }
+      }
+      <Normal> { -0.029633 -0.993316 0.111484 }
+    }
+    <Vertex> 54 {
+      -1.09852874279 0.754539847374 2.02752351761
+      <UV>  {
+        0.650046 0.795370
+        <Tangent> { 0.658886 0.720554 -0.216033 }
+        <Binormal> { -0.056188 0.054828 0.011502 }
+      }
+      <Normal> { -0.676931 -0.722831 0.138737 }
+    }
+    <Vertex> 55 {
+      -1.09852874279 0.800342738628 1.904327631
+      <UV>  {
+        0.649901 0.795087
+        <Tangent> { 0.791515 0.610880 -0.018155 }
+        <Binormal> { 0.125877 -0.162453 0.021715 }
+      }
+      <Normal> { -0.784722 -0.578204 0.223243 }
+    }
+    <Vertex> 56 {
+      -1.16968941689 0.61468142271 1.7156226635
+      <UV>  {
+        0.650256 0.794832
+        <Tangent> { -0.009419 0.851436 -0.524374 }
+        <Binormal> { -0.425948 0.016589 0.034587 }
+      }
+      <Normal> { -0.029633 -0.993316 0.111484 }
+    }
+    <Vertex> 57 {
+      -1.09852874279 0.75163936615 2.16098856926
+      <UV>  {
+        0.650229 0.795781
+        <Tangent> { 0.618414 0.718282 -0.318804 }
+        <Binormal> { -0.146366 0.150081 0.054220 }
+      }
+      <Normal> { -0.690512 -0.714347 0.113285 }
+    }
+    <Vertex> 58 {
+      -1.09852874279 0.754539847374 2.02752351761
+      <UV>  {
+        0.650046 0.795370
+        <Tangent> { 0.658886 0.720554 -0.216033 }
+        <Binormal> { -0.056188 0.054828 0.011502 }
+      }
+      <Normal> { -0.676931 -0.722831 0.138737 }
+    }
+    <Vertex> 59 {
+      -1.14994847775 0.604476988316 1.99116516113
+      <UV>  {
+        0.650445 0.795094
+        <Tangent> { -0.010551 0.663007 -0.748538 }
+        <Binormal> { -0.725652 0.059123 0.062595 }
+      }
+      <Normal> { -0.078555 -0.996429 0.030488 }
+    }
+    <Vertex> 60 {
+      -1.09852874279 0.754539847374 2.02752351761
+      <UV>  {
+        0.650046 0.795370
+        <Tangent> { 0.658886 0.720554 -0.216033 }
+        <Binormal> { -0.056188 0.054828 0.011502 }
+      }
+      <Normal> { -0.676931 -0.722831 0.138737 }
+    }
+    <Vertex> 61 {
+      -1.16968941689 0.61468142271 1.7156226635
+      <UV>  {
+        0.650256 0.794832
+        <Tangent> { -0.009419 0.851436 -0.524374 }
+        <Binormal> { -0.425948 0.016589 0.034587 }
+      }
+      <Normal> { -0.029633 -0.993316 0.111484 }
+    }
+    <Vertex> 62 {
+      -1.14994847775 0.604476988316 1.99116516113
+      <UV>  {
+        0.650445 0.795094
+        <Tangent> { -0.010551 0.663007 -0.748538 }
+        <Binormal> { -0.725652 0.059123 0.062595 }
+      }
+      <Normal> { -0.078555 -0.996429 0.030488 }
+    }
+    <Vertex> 63 {
+      -1.09852874279 0.428092598915 1.95565879345
+      <UV>  {
+        0.650699 0.794697
+        <Tangent> { -0.179375 0.534315 -0.826034 }
+        <Binormal> { -0.732083 -0.367092 -0.078477 }
+      }
+      <Normal> { 0.447127 -0.894375 0.012543 }
+    }
+    <Vertex> 64 {
+      -1.10873329639 0.399097323418 2.13361144066
+      <UV>  {
+        0.651191 0.794974
+        <Tangent> { -0.102910 0.687130 -0.719209 }
+        <Binormal> { -0.632891 -0.407013 -0.298300 }
+      }
+      <Normal> { 0.558123 -0.827937 -0.054476 }
+    }
+    <Vertex> 65 {
+      -1.14994847775 0.599374771118 2.09831190109
+      <UV>  {
+        0.650611 0.795336
+        <Tangent> { 0.019822 0.790869 -0.611664 }
+        <Binormal> { -0.593965 0.039802 0.032214 }
+      }
+      <Normal> { -0.065737 -0.997620 0.020539 }
+    }
+    <Vertex> 66 {
+      -1.09852874279 0.383790642023 1.79649817944
+      <UV>  {
+        0.650453 0.794523
+        <Tangent> { -0.200074 0.226707 -0.953192 }
+        <Binormal> { -0.744371 -0.532665 0.029554 }
+      }
+      <Normal> { 0.581378 -0.806482 0.107456 }
+    }
+    <Vertex> 67 {
+      -1.09852874279 0.428092598915 1.95565879345
+      <UV>  {
+        0.650699 0.794697
+        <Tangent> { -0.179375 0.534315 -0.826034 }
+        <Binormal> { -0.732083 -0.367092 -0.078477 }
+      }
+      <Normal> { 0.447127 -0.894375 0.012543 }
+    }
+    <Vertex> 68 {
+      -1.16968941689 0.61468142271 1.7156226635
+      <UV>  {
+        0.650256 0.794832
+        <Tangent> { -0.009419 0.851436 -0.524374 }
+        <Binormal> { -0.425948 0.016589 0.034587 }
+      }
+      <Normal> { -0.029633 -0.993316 0.111484 }
+    }
+    <Vertex> 69 {
+      -1.16968941689 0.61468142271 1.7156226635
+      <UV>  {
+        0.650256 0.794832
+        <Tangent> { -0.009419 0.851436 -0.524374 }
+        <Binormal> { -0.425948 0.016589 0.034587 }
+      }
+      <Normal> { -0.029633 -0.993316 0.111484 }
+    }
+    <Vertex> 70 {
+      -1.09852874279 0.428092598915 1.95565879345
+      <UV>  {
+        0.650699 0.794697
+        <Tangent> { -0.179375 0.534315 -0.826034 }
+        <Binormal> { -0.732083 -0.367092 -0.078477 }
+      }
+      <Normal> { 0.447127 -0.894375 0.012543 }
+    }
+    <Vertex> 71 {
+      -1.14994847775 0.604476988316 1.99116516113
+      <UV>  {
+        0.650445 0.795094
+        <Tangent> { -0.010551 0.663007 -0.748538 }
+        <Binormal> { -0.725652 0.059123 0.062595 }
+      }
+      <Normal> { -0.078555 -0.996429 0.030488 }
+    }
+    <Vertex> 72 {
+      -1.09852874279 0.428092598915 1.95565879345
+      <UV>  {
+        0.650699 0.794697
+        <Tangent> { -0.179375 0.534315 -0.826034 }
+        <Binormal> { -0.732083 -0.367092 -0.078477 }
+      }
+      <Normal> { 0.447127 -0.894375 0.012543 }
+    }
+    <Vertex> 73 {
+      -1.14994847775 0.599374771118 2.09831190109
+      <UV>  {
+        0.650611 0.795336
+        <Tangent> { 0.019822 0.790869 -0.611664 }
+        <Binormal> { -0.593965 0.039802 0.032214 }
+      }
+      <Normal> { -0.065737 -0.997620 0.020539 }
+    }
+    <Vertex> 74 {
+      -1.14994847775 0.604476988316 1.99116516113
+      <UV>  {
+        0.650445 0.795094
+        <Tangent> { -0.010551 0.663007 -0.748538 }
+        <Binormal> { -0.725652 0.059123 0.062595 }
+      }
+      <Normal> { -0.078555 -0.996429 0.030488 }
+    }
+    <Vertex> 75 {
+      -0.797497332096 0.339249521494 2.698969841
+      <UV>  {
+        0.658666 0.788178
+        <Tangent> { -0.615326 -0.523065 -0.589727 }
+        <Binormal> { -0.340530 -0.027125 0.379371 }
+      }
+      <Normal> { 0.743522 0.015503 0.668508 }
+    }
+    <Vertex> 76 {
+      -0.797497332096 0.42441290617 2.76228928566
+      <UV>  {
+        0.671441 0.794732
+        <Tangent> { -0.761562 -0.220702 -0.609355 }
+        <Binormal> { -0.125630 -0.044728 0.173211 }
+      }
+      <Normal> { 0.808618 0.006897 0.588275 }
+    }
+    <Vertex> 77 {
+      -0.986200034618 0.338298797607 2.60819959641
+      <UV>  {
+        0.654942 0.794264
+        <Tangent> { -0.605134 -0.468216 -0.643885 }
+        <Binormal> { -0.506082 -0.086961 0.538860 }
+      }
+      <Normal> { 0.712394 -0.339274 0.614307 }
+    }
+    <Vertex> 78 {
+      -0.797497332096 0.42441290617 2.76228928566
+      <UV>  {
+        0.671441 0.794732
+        <Tangent> { -0.761562 -0.220702 -0.609355 }
+        <Binormal> { -0.125630 -0.044728 0.173211 }
+      }
+      <Normal> { 0.808618 0.006897 0.588275 }
+    }
+    <Vertex> 79 {
+      -0.92505300045 0.538147985935 2.81262397766
+      <UV>  {
+        0.659424 0.809136
+        <Tangent> { 0.191425 0.952089 -0.238499 }
+        <Binormal> { -0.093263 -0.023780 -0.169784 }
+      }
+      <Normal> { -0.020417 -0.988495 0.149663 }
+    }
+    <Vertex> 80 {
+      -0.954630017281 0.540606319904 2.70817780495
+      <UV>  {
+        0.657024 0.801213
+        <Tangent> { -0.525582 0.740851 -0.418214 }
+        <Binormal> { 0.273186 0.333811 0.248013 }
+      }
+      <Normal> { 0.132542 -0.658711 0.740593 }
+    }
+    <Vertex> 81 {
+      -0.986200034618 0.338298797607 2.60819959641
+      <UV>  {
+        0.654942 0.794264
+        <Tangent> { -0.605134 -0.468216 -0.643885 }
+        <Binormal> { -0.506082 -0.086961 0.538860 }
+      }
+      <Normal> { 0.712394 -0.339274 0.614307 }
+    }
+    <Vertex> 82 {
+      -0.797497332096 0.42441290617 2.76228928566
+      <UV>  {
+        0.671441 0.794732
+        <Tangent> { -0.761562 -0.220702 -0.609355 }
+        <Binormal> { -0.125630 -0.044728 0.173211 }
+      }
+      <Normal> { 0.808618 0.006897 0.588275 }
+    }
+    <Vertex> 83 {
+      -0.954630017281 0.540606319904 2.70817780495
+      <UV>  {
+        0.657024 0.801213
+        <Tangent> { -0.525582 0.740851 -0.418214 }
+        <Binormal> { 0.273186 0.333811 0.248013 }
+      }
+      <Normal> { 0.132542 -0.658711 0.740593 }
+    }
+    <Vertex> 84 {
+      -0.92505300045 0.538147985935 2.81262397766
+      <UV>  {
+        0.659424 0.809136
+        <Tangent> { 0.191425 0.952089 -0.238499 }
+        <Binormal> { -0.093263 -0.023780 -0.169784 }
+      }
+      <Normal> { -0.020417 -0.988495 0.149663 }
+    }
+    <Vertex> 85 {
+      -0.909666597843 0.664598822594 2.64579486847
+      <UV>  {
+        0.651917 0.800182
+        <Tangent> { 0.559986 0.667311 -0.491032 }
+        <Binormal> { 0.100480 0.097882 0.247612 }
+      }
+      <Normal> { -0.750114 -0.451704 0.482955 }
+    }
+    <Vertex> 86 {
+      -0.954630017281 0.540606319904 2.70817780495
+      <UV>  {
+        0.657024 0.801213
+        <Tangent> { -0.525582 0.740851 -0.418214 }
+        <Binormal> { 0.273186 0.333811 0.248013 }
+      }
+      <Normal> { 0.132542 -0.658711 0.740593 }
+    }
+    <Vertex> 87 {
+      -0.92505300045 0.538147985935 2.81262397766
+      <UV>  {
+        0.659424 0.809136
+        <Tangent> { 0.191425 0.952089 -0.238499 }
+        <Binormal> { -0.093263 -0.023780 -0.169784 }
+      }
+      <Normal> { -0.020417 -0.988495 0.149663 }
+    }
+    <Vertex> 88 {
+      -0.797497332096 0.680560708046 2.75754570961
+      <UV>  {
+        0.646546 0.805109
+        <Tangent> { 0.793689 0.577571 -0.190969 }
+        <Binormal> { 0.153246 -0.025410 0.560057 }
+      }
+      <Normal> { -0.964476 0.003784 0.264077 }
+    }
+    <Vertex> 89 {
+      -0.909666597843 0.664598822594 2.64579486847
+      <UV>  {
+        0.651917 0.800182
+        <Tangent> { 0.559986 0.667311 -0.491032 }
+        <Binormal> { 0.100480 0.097882 0.247612 }
+      }
+      <Normal> { -0.750114 -0.451704 0.482955 }
+    }
+    <Vertex> 90 {
+      -1.07819962502 0.678654849529 2.42750287056
+      <UV>  {
+        0.651015 0.797031
+        <Tangent> { 0.781728 0.458340 -0.422878 }
+        <Binormal> { -0.301397 0.456042 -0.062873 }
+      }
+      <Normal> { -0.816767 -0.559313 -0.141545 }
+    }
+    <Vertex> 91 {
+      -0.909666597843 0.697590112686 2.51257276535
+      <UV>  {
+        0.650546 0.798447
+        <Tangent> { 0.896968 0.255673 -0.360665 }
+        <Binormal> { -0.055690 0.125858 -0.049281 }
+      }
+      <Normal> { -0.920103 -0.317209 0.229652 }
+    }
+    <Vertex> 92 {
+      -0.889337420464 0.801260888577 2.25703644753
+      <UV>  {
+        0.649375 0.796439
+        <Tangent> { 0.951074 0.308486 -0.017171 }
+        <Binormal> { 0.064709 -0.200068 -0.010175 }
+      }
+      <Normal> { -0.923154 -0.310129 0.227027 }
+    }
+    <Vertex> 93 {
+      -0.889337420464 0.801260888577 2.25703644753
+      <UV>  {
+        0.649375 0.796439
+        <Tangent> { 0.951074 0.308486 -0.017171 }
+        <Binormal> { 0.064709 -0.200068 -0.010175 }
+      }
+      <Normal> { -0.923154 -0.310129 0.227027 }
+    }
+    <Vertex> 94 {
+      -1.09852874279 0.75163936615 2.16098856926
+      <UV>  {
+        0.650229 0.795781
+        <Tangent> { 0.618414 0.718282 -0.318804 }
+        <Binormal> { -0.146366 0.150081 0.054220 }
+      }
+      <Normal> { -0.690512 -0.714347 0.113285 }
+    }
+    <Vertex> 95 {
+      -1.07819962502 0.678654849529 2.42750287056
+      <UV>  {
+        0.651015 0.797031
+        <Tangent> { 0.781728 0.458340 -0.422878 }
+        <Binormal> { -0.301397 0.456042 -0.062873 }
+      }
+      <Normal> { -0.816767 -0.559313 -0.141545 }
+    }
+    <Vertex> 96 {
+      -1.09852874279 0.75163936615 2.16098856926
+      <UV>  {
+        0.650229 0.795781
+        <Tangent> { 0.618414 0.718282 -0.318804 }
+        <Binormal> { -0.146366 0.150081 0.054220 }
+      }
+      <Normal> { -0.690512 -0.714347 0.113285 }
+    }
+    <Vertex> 97 {
+      -1.14994847775 0.599374771118 2.09831190109
+      <UV>  {
+        0.650611 0.795336
+        <Tangent> { 0.019822 0.790869 -0.611664 }
+        <Binormal> { -0.593965 0.039802 0.032214 }
+      }
+      <Normal> { -0.065737 -0.997620 0.020539 }
+    }
+    <Vertex> 98 {
+      -1.07819962502 0.678654849529 2.42750287056
+      <UV>  {
+        0.651015 0.797031
+        <Tangent> { 0.781728 0.458340 -0.422878 }
+        <Binormal> { -0.301397 0.456042 -0.062873 }
+      }
+      <Normal> { -0.816767 -0.559313 -0.141545 }
+    }
+    <Vertex> 99 {
+      -1.14994847775 0.599374771118 2.09831190109
+      <UV>  {
+        0.650611 0.795336
+        <Tangent> { 0.019822 0.790869 -0.611664 }
+        <Binormal> { -0.593965 0.039802 0.032214 }
+      }
+      <Normal> { -0.065737 -0.997620 0.020539 }
+    }
+    <Vertex> 100 {
+      -1.14564466476 0.56683498621 2.38147568703
+      <UV>  {
+        0.651349 0.796230
+        <Tangent> { 0.338384 0.854329 -0.394485 }
+        <Binormal> { -0.861734 0.288848 -0.113630 }
+      }
+      <Normal> { -0.152654 -0.721213 -0.675649 }
+    }
+    <Vertex> 101 {
+      -1.07819962502 0.678654849529 2.42750287056
+      <UV>  {
+        0.651015 0.797031
+        <Tangent> { 0.781728 0.458340 -0.422878 }
+        <Binormal> { -0.301397 0.456042 -0.062873 }
+      }
+      <Normal> { -0.816767 -0.559313 -0.141545 }
+    }
+    <Vertex> 102 {
+      -1.10873329639 0.399097323418 2.13361144066
+      <UV>  {
+        0.651191 0.794974
+        <Tangent> { -0.102910 0.687130 -0.719209 }
+        <Binormal> { -0.632891 -0.407013 -0.298300 }
+      }
+      <Normal> { 0.558123 -0.827937 -0.054476 }
+    }
+    <Vertex> 103 {
+      -1.14564466476 0.56683498621 2.38147568703
+      <UV>  {
+        0.651349 0.796230
+        <Tangent> { 0.338384 0.854329 -0.394485 }
+        <Binormal> { -0.861734 0.288848 -0.113630 }
+      }
+      <Normal> { -0.152654 -0.721213 -0.675649 }
+    }
+    <Vertex> 104 {
+      -1.14994847775 0.599374771118 2.09831190109
+      <UV>  {
+        0.650611 0.795336
+        <Tangent> { 0.019822 0.790869 -0.611664 }
+        <Binormal> { -0.593965 0.039802 0.032214 }
+      }
+      <Normal> { -0.065737 -0.997620 0.020539 }
+    }
+    <Vertex> 105 {
+      -1.10873329639 0.399097323418 2.13361144066
+      <UV>  {
+        0.651191 0.794974
+        <Tangent> { -0.102910 0.687130 -0.719209 }
+        <Binormal> { -0.632891 -0.407013 -0.298300 }
+      }
+      <Normal> { 0.558123 -0.827937 -0.054476 }
+    }
+    <Vertex> 106 {
+      -1.1164662838 0.381648719311 2.40994906425
+      <UV>  {
+        0.652019 0.795588
+        <Tangent> { 0.339534 0.765736 -0.546227 }
+        <Binormal> { -0.531882 -0.319835 -0.778983 }
+      }
+      <Normal> { 0.740959 -0.623218 -0.250038 }
+    }
+    <Vertex> 107 {
+      -1.14564466476 0.56683498621 2.38147568703
+      <UV>  {
+        0.651349 0.796230
+        <Tangent> { 0.338384 0.854329 -0.394485 }
+        <Binormal> { -0.861734 0.288848 -0.113630 }
+      }
+      <Normal> { -0.152654 -0.721213 -0.675649 }
+    }
+    <Vertex> 108 {
+      -0.797497272491 0.84658241272 1.49699413776
+      <UV>  {
+        0.649579 0.794540
+        <Tangent> { 0.986134 -0.055389 0.156437 }
+        <Binormal> { -0.044677 -0.887556 -0.032621 }
+      }
+      <Normal> { -0.591662 0.000153 0.806177 }
+    }
+    <Vertex> 109 {
+      -0.889337420464 0.836657643318 1.45827651024
+      <UV>  {
+        0.649696 0.794560
+        <Tangent> { 0.600947 0.305637 0.738545 }
+        <Binormal> { 0.272203 -0.480920 -0.022466 }
+      }
+      <Normal> { -0.848964 -0.469161 -0.243080 }
+    }
+    <Vertex> 110 {
+      -0.889337420464 0.878551721573 1.65056669712
+      <UV>  {
+        0.649543 0.794800
+        <Tangent> { 0.980944 0.148803 0.124927 }
+        <Binormal> { 0.009370 -0.099224 0.044614 }
+      }
+      <Normal> { -0.994110 -0.105319 -0.025452 }
+    }
+    <Vertex> 111 {
+      -0.797497272491 0.84658241272 1.49699413776
+      <UV>  {
+        0.649579 0.794540
+        <Tangent> { 0.986134 -0.055389 0.156437 }
+        <Binormal> { -0.044677 -0.887556 -0.032621 }
+      }
+      <Normal> { -0.591662 0.000153 0.806177 }
+    }
+    <Vertex> 112 {
+      -0.889337420464 0.878551721573 1.65056669712
+      <UV>  {
+        0.649543 0.794800
+        <Tangent> { 0.980944 0.148803 0.124927 }
+        <Binormal> { 0.009370 -0.099224 0.044614 }
+      }
+      <Normal> { -0.994110 -0.105319 -0.025452 }
+    }
+    <Vertex> 113 {
+      -0.797497272491 0.889273703098 1.70570719242
+      <UV>  {
+        0.649330 0.794802
+        <Tangent> { 0.918498 0.114772 0.378404 }
+        <Binormal> { -0.003164 -0.353962 0.115038 }
+      }
+      <Normal> { -0.999634 0.000336 -0.026460 }
+    }
+    <Vertex> 114 {
+      -1.15355205536 0.420796751976 1.41969335079
+      <UV>  {
+        0.650182 0.794475
+        <Tangent> { -0.225631 0.195915 -0.954310 }
+        <Binormal> { -0.748340 -0.512631 0.071692 }
+      }
+      <Normal> { 0.568743 -0.811579 0.133518 }
+    }
+    <Vertex> 115 {
+      -1.16968941689 0.61468142271 1.7156226635
+      <UV>  {
+        0.650256 0.794832
+        <Tangent> { -0.009419 0.851436 -0.524374 }
+        <Binormal> { -0.425948 0.016589 0.034587 }
+      }
+      <Normal> { -0.029633 -0.993316 0.111484 }
+    }
+    <Vertex> 116 {
+      -1.18649077415 0.609579205513 1.61868023872
+      <UV>  {
+        0.650168 0.794690
+        <Tangent> { -0.081059 0.909698 -0.407282 }
+        <Binormal> { -0.257264 0.009734 0.072943 }
+      }
+      <Normal> { 0.007782 -0.987213 0.159185 }
+    }
+    <Vertex> 117 {
+      -1.15355205536 0.420796751976 1.41969335079
+      <UV>  {
+        0.650182 0.794475
+        <Tangent> { -0.225631 0.195915 -0.954310 }
+        <Binormal> { -0.748340 -0.512631 0.071692 }
+      }
+      <Normal> { 0.568743 -0.811579 0.133518 }
+    }
+    <Vertex> 118 {
+      -1.09852874279 0.383790642023 1.79649817944
+      <UV>  {
+        0.650453 0.794523
+        <Tangent> { -0.200074 0.226707 -0.953192 }
+        <Binormal> { -0.744371 -0.532665 0.029554 }
+      }
+      <Normal> { 0.581378 -0.806482 0.107456 }
+    }
+    <Vertex> 119 {
+      -1.16968941689 0.61468142271 1.7156226635
+      <UV>  {
+        0.650256 0.794832
+        <Tangent> { -0.009419 0.851436 -0.524374 }
+        <Binormal> { -0.425948 0.016589 0.034587 }
+      }
+      <Normal> { -0.029633 -0.993316 0.111484 }
+    }
+    <Vertex> 120 {
+      -1.15355205536 0.420796751976 1.41969335079
+      <UV>  {
+        0.650182 0.794475
+        <Tangent> { -0.225631 0.195915 -0.954310 }
+        <Binormal> { -0.748340 -0.512631 0.071692 }
+      }
+      <Normal> { 0.568743 -0.811579 0.133518 }
+    }
+    <Vertex> 121 {
+      -0.949893414974 0.245635911822 1.39633226395
+      <UV>  {
+        0.650203 0.794295
+        <Tangent> { 0.121847 -0.049685 -0.991305 }
+        <Binormal> { -0.368168 -0.920003 0.000858 }
+      }
+      <Normal> { 0.928404 -0.371532 -0.002686 }
+    }
+    <Vertex> 122 {
+      -1.03437292576 0.309294193983 1.53859758377
+      <UV>  {
+        0.650328 0.794372
+        <Tangent> { -0.148688 0.149187 -0.977566 }
+        <Binormal> { -0.533434 -0.808432 -0.042240 }
+      }
+      <Normal> { 0.833033 -0.551744 0.039766 }
+    }
+    <Vertex> 123 {
+      -1.15355205536 0.420796751976 1.41969335079
+      <UV>  {
+        0.650182 0.794475
+        <Tangent> { -0.225631 0.195915 -0.954310 }
+        <Binormal> { -0.748340 -0.512631 0.071692 }
+      }
+      <Normal> { 0.568743 -0.811579 0.133518 }
+    }
+    <Vertex> 124 {
+      -1.03437292576 0.309294193983 1.53859758377
+      <UV>  {
+        0.650328 0.794372
+        <Tangent> { -0.148688 0.149187 -0.977566 }
+        <Binormal> { -0.533434 -0.808432 -0.042240 }
+      }
+      <Normal> { 0.833033 -0.551744 0.039766 }
+    }
+    <Vertex> 125 {
+      -1.09852874279 0.383790642023 1.79649817944
+      <UV>  {
+        0.650453 0.794523
+        <Tangent> { -0.200074 0.226707 -0.953192 }
+        <Binormal> { -0.744371 -0.532665 0.029554 }
+      }
+      <Normal> { 0.581378 -0.806482 0.107456 }
+    }
+    <Vertex> 126 {
+      -1.16968941689 0.61468142271 1.7156226635
+      <UV>  {
+        0.650256 0.794832
+        <Tangent> { -0.009419 0.851436 -0.524374 }
+        <Binormal> { -0.425948 0.016589 0.034587 }
+      }
+      <Normal> { -0.029633 -0.993316 0.111484 }
+    }
+    <Vertex> 127 {
+      -1.15355205536 0.793259441853 1.42989778519
+      <UV>  {
+        0.649962 0.794617
+        <Tangent> { 0.710931 0.701626 -0.047943 }
+        <Binormal> { -0.018447 0.020673 0.028991 }
+      }
+      <Normal> { -0.731681 -0.681326 0.020264 }
+    }
+    <Vertex> 128 {
+      -1.18649077415 0.609579205513 1.61868023872
+      <UV>  {
+        0.650168 0.794690
+        <Tangent> { -0.081059 0.909698 -0.407282 }
+        <Binormal> { -0.257264 0.009734 0.072943 }
+      }
+      <Normal> { 0.007782 -0.987213 0.159185 }
+    }
+    <Vertex> 129 {
+      -1.15355205536 0.793259441853 1.42989778519
+      <UV>  {
+        0.649962 0.794617
+        <Tangent> { 0.710931 0.701626 -0.047943 }
+        <Binormal> { -0.018447 0.020673 0.028991 }
+      }
+      <Normal> { -0.731681 -0.681326 0.020264 }
+    }
+    <Vertex> 130 {
+      -1.16968941689 0.61468142271 1.7156226635
+      <UV>  {
+        0.650256 0.794832
+        <Tangent> { -0.009419 0.851436 -0.524374 }
+        <Binormal> { -0.425948 0.016589 0.034587 }
+      }
+      <Normal> { -0.029633 -0.993316 0.111484 }
+    }
+    <Vertex> 131 {
+      -1.09852874279 0.850881814957 1.77086365223
+      <UV>  {
+        0.649874 0.794859
+        <Tangent> { 0.846955 0.531260 0.020753 }
+        <Binormal> { 0.039548 -0.062213 -0.021412 }
+      }
+      <Normal> { -0.834346 -0.548631 0.053011 }
+    }
+    <Vertex> 132 {
+      -0.889337420464 0.878551721573 1.65056669712
+      <UV>  {
+        0.649543 0.794800
+        <Tangent> { 0.980944 0.148803 0.124927 }
+        <Binormal> { 0.009370 -0.099224 0.044614 }
+      }
+      <Normal> { -0.994110 -0.105319 -0.025452 }
+    }
+    <Vertex> 133 {
+      -0.889337420464 0.836657643318 1.45827651024
+      <UV>  {
+        0.649696 0.794560
+        <Tangent> { 0.600947 0.305637 0.738545 }
+        <Binormal> { 0.272203 -0.480920 -0.022466 }
+      }
+      <Normal> { -0.848964 -0.469161 -0.243080 }
+    }
+    <Vertex> 134 {
+      -1.09852874279 0.850881814957 1.77086365223
+      <UV>  {
+        0.649874 0.794859
+        <Tangent> { 0.846955 0.531260 0.020753 }
+        <Binormal> { 0.039548 -0.062213 -0.021412 }
+      }
+      <Normal> { -0.834346 -0.548631 0.053011 }
+    }
+    <Vertex> 135 {
+      -1.09852874279 0.850881814957 1.77086365223
+      <UV>  {
+        0.649874 0.794859
+        <Tangent> { 0.846955 0.531260 0.020753 }
+        <Binormal> { 0.039548 -0.062213 -0.021412 }
+      }
+      <Normal> { -0.834346 -0.548631 0.053011 }
+    }
+    <Vertex> 136 {
+      -0.889337420464 0.836657643318 1.45827651024
+      <UV>  {
+        0.649696 0.794560
+        <Tangent> { 0.600947 0.305637 0.738545 }
+        <Binormal> { 0.272203 -0.480920 -0.022466 }
+      }
+      <Normal> { -0.848964 -0.469161 -0.243080 }
+    }
+    <Vertex> 137 {
+      -1.15355205536 0.793259441853 1.42989778519
+      <UV>  {
+        0.649962 0.794617
+        <Tangent> { 0.710931 0.701626 -0.047943 }
+        <Binormal> { -0.018447 0.020673 0.028991 }
+      }
+      <Normal> { -0.731681 -0.681326 0.020264 }
+    }
+    <Vertex> 138 {
+      -0.990280747414 0.772850513458 1.16458189487
+      <UV>  {
+        0.649916 0.794448
+        <Tangent> { 0.536456 0.183594 0.823716 }
+        <Binormal> { -0.447654 -0.479984 0.398521 }
+      }
+      <Normal> { -0.812189 0.464919 -0.352367 }
+    }
+    <Vertex> 139 {
+      -1.15355205536 0.793259441853 1.42989778519
+      <UV>  {
+        0.649962 0.794617
+        <Tangent> { 0.710931 0.701626 -0.047943 }
+        <Binormal> { -0.018447 0.020673 0.028991 }
+      }
+      <Normal> { -0.731681 -0.681326 0.020264 }
+    }
+    <Vertex> 140 {
+      -0.889337420464 0.836657643318 1.45827651024
+      <UV>  {
+        0.649696 0.794560
+        <Tangent> { 0.600947 0.305637 0.738545 }
+        <Binormal> { 0.272203 -0.480920 -0.022466 }
+      }
+      <Normal> { -0.848964 -0.469161 -0.243080 }
+    }
+    <Vertex> 141 {
+      -0.889337420464 0.836657643318 1.45827651024
+      <UV>  {
+        0.649696 0.794560
+        <Tangent> { 0.600947 0.305637 0.738545 }
+        <Binormal> { 0.272203 -0.480920 -0.022466 }
+      }
+      <Normal> { -0.848964 -0.469161 -0.243080 }
+    }
+    <Vertex> 142 {
+      -0.889337420464 0.695588648319 1.23194479942
+      <UV>  {
+        0.649853 0.794382
+        <Tangent> { 0.449774 0.531572 0.717729 }
+        <Binormal> { -0.730632 0.040271 0.428034 }
+      }
+      <Normal> { -0.437178 0.434980 -0.787164 }
+    }
+    <Vertex> 143 {
+      -0.990280747414 0.772850513458 1.16458189487
+      <UV>  {
+        0.649916 0.794448
+        <Tangent> { 0.536456 0.183594 0.823716 }
+        <Binormal> { -0.447654 -0.479984 0.398521 }
+      }
+      <Normal> { -0.812189 0.464919 -0.352367 }
+    }
+    <Vertex> 144 {
+      -0.949893414974 0.245635911822 1.39633226395
+      <UV>  {
+        0.650203 0.794295
+        <Tangent> { 0.121847 -0.049685 -0.991305 }
+        <Binormal> { -0.368168 -0.920003 0.000858 }
+      }
+      <Normal> { 0.928404 -0.371532 -0.002686 }
+    }
+    <Vertex> 145 {
+      -1.15355205536 0.420796751976 1.41969335079
+      <UV>  {
+        0.650182 0.794475
+        <Tangent> { -0.225631 0.195915 -0.954310 }
+        <Binormal> { -0.748340 -0.512631 0.071692 }
+      }
+      <Normal> { 0.568743 -0.811579 0.133518 }
+    }
+    <Vertex> 146 {
+      -0.990280747414 0.257525444031 1.20029759407
+      <UV>  {
+        0.650097 0.794354
+        <Tangent> { 0.299408 0.549863 -0.779747 }
+        <Binormal> { 0.117973 -0.668591 -0.426179 }
+      }
+      <Normal> { 0.934660 0.293100 -0.201086 }
+    }
+    <Vertex> 147 {
+      -0.990280747414 0.257525444031 1.20029759407
+      <UV>  {
+        0.650097 0.794354
+        <Tangent> { 0.299408 0.549863 -0.779747 }
+        <Binormal> { 0.117973 -0.668591 -0.426179 }
+      }
+      <Normal> { 0.934660 0.293100 -0.201086 }
+    }
+    <Vertex> 148 {
+      -0.889337420464 0.263334274292 1.29201555252
+      <UV>  {
+        0.650105 0.794269
+        <Tangent> { 0.225084 0.740274 -0.633507 }
+        <Binormal> { -0.402325 -0.475068 -0.698078 }
+      }
+      <Normal> { 0.897336 -0.150182 -0.414960 }
+    }
+    <Vertex> 149 {
+      -0.949893414974 0.245635911822 1.39633226395
+      <UV>  {
+        0.650203 0.794295
+        <Tangent> { 0.121847 -0.049685 -0.991305 }
+        <Binormal> { -0.368168 -0.920003 0.000858 }
+      }
+      <Normal> { 0.928404 -0.371532 -0.002686 }
+    }
+    <Vertex> 150 {
+      -0.990280747414 0.257525444031 1.20029759407
+      <UV>  {
+        0.650097 0.794354
+        <Tangent> { 0.299408 0.549863 -0.779747 }
+        <Binormal> { 0.117973 -0.668591 -0.426179 }
+      }
+      <Normal> { 0.934660 0.293100 -0.201086 }
+    }
+    <Vertex> 151 {
+      -0.954565107822 0.589170277119 1.0778440237
+      <UV>  {
+        0.649963 0.794393
+        <Tangent> { 0.065151 0.778857 0.623808 }
+        <Binormal> { -0.947735 -0.018165 0.121663 }
+      }
+      <Normal> { -0.086917 0.828333 -0.553392 }
+    }
+    <Vertex> 152 {
+      -0.889337420464 0.263334274292 1.29201555252
+      <UV>  {
+        0.650105 0.794269
+        <Tangent> { 0.225084 0.740274 -0.633507 }
+        <Binormal> { -0.402325 -0.475068 -0.698078 }
+      }
+      <Normal> { 0.897336 -0.150182 -0.414960 }
+    }
+    <Vertex> 153 {
+      -0.869350254536 0.299050122499 1.22716104984
+      <UV>  {
+        0.650045 0.794257
+        <Tangent> { 0.319344 0.947379 0.022180 }
+        <Binormal> { -0.746076 0.265693 -0.606697 }
+      }
+      <Normal> { 0.602405 -0.112705 -0.790155 }
+    }
+    <Vertex> 154 {
+      -0.889337420464 0.263334274292 1.29201555252
+      <UV>  {
+        0.650105 0.794269
+        <Tangent> { 0.225084 0.740274 -0.633507 }
+        <Binormal> { -0.402325 -0.475068 -0.698078 }
+      }
+      <Normal> { 0.897336 -0.150182 -0.414960 }
+    }
+    <Vertex> 155 {
+      -0.954565107822 0.589170277119 1.0778440237
+      <UV>  {
+        0.649963 0.794393
+        <Tangent> { 0.065151 0.778857 0.623808 }
+        <Binormal> { -0.947735 -0.018165 0.121663 }
+      }
+      <Normal> { -0.086917 0.828333 -0.553392 }
+    }
+    <Vertex> 156 {
+      -0.954565107822 0.589170277119 1.0778440237
+      <UV>  {
+        0.649963 0.794393
+        <Tangent> { 0.065151 0.778857 0.623808 }
+        <Binormal> { -0.947735 -0.018165 0.121663 }
+      }
+      <Normal> { -0.086917 0.828333 -0.553392 }
+    }
+    <Vertex> 157 {
+      -0.889337420464 0.695588648319 1.23194479942
+      <UV>  {
+        0.649853 0.794382
+        <Tangent> { 0.449774 0.531572 0.717729 }
+        <Binormal> { -0.730632 0.040271 0.428034 }
+      }
+      <Normal> { -0.437178 0.434980 -0.787164 }
+    }
+    <Vertex> 158 {
+      -0.869350254536 0.299050122499 1.22716104984
+      <UV>  {
+        0.650045 0.794257
+        <Tangent> { 0.319344 0.947379 0.022180 }
+        <Binormal> { -0.746076 0.265693 -0.606697 }
+      }
+      <Normal> { 0.602405 -0.112705 -0.790155 }
+    }
+    <Vertex> 159 {
+      -0.889337420464 0.695588648319 1.23194479942
+      <UV>  {
+        0.649853 0.794382
+        <Tangent> { 0.449774 0.531572 0.717729 }
+        <Binormal> { -0.730632 0.040271 0.428034 }
+      }
+      <Normal> { -0.437178 0.434980 -0.787164 }
+    }
+    <Vertex> 160 {
+      -0.954565107822 0.589170277119 1.0778440237
+      <UV>  {
+        0.649963 0.794393
+        <Tangent> { 0.065151 0.778857 0.623808 }
+        <Binormal> { -0.947735 -0.018165 0.121663 }
+      }
+      <Normal> { -0.086917 0.828333 -0.553392 }
+    }
+    <Vertex> 161 {
+      -0.990280747414 0.772850513458 1.16458189487
+      <UV>  {
+        0.649916 0.794448
+        <Tangent> { 0.536456 0.183594 0.823716 }
+        <Binormal> { -0.447654 -0.479984 0.398521 }
+      }
+      <Normal> { -0.812189 0.464919 -0.352367 }
+    }
+    <Vertex> 162 {
+      -1.07819962502 0.678654849529 2.42750287056
+      <UV>  {
+        0.651015 0.797031
+        <Tangent> { 0.781728 0.458340 -0.422878 }
+        <Binormal> { -0.301397 0.456042 -0.062873 }
+      }
+      <Normal> { -0.816767 -0.559313 -0.141545 }
+    }
+    <Vertex> 163 {
+      -1.18474876881 0.55247682333 2.3861644268
+      <UV>  {
+        0.651560 0.796370
+        <Tangent> { 0.320995 -0.509912 0.798093 }
+        <Binormal> { 0.031603 -0.078516 -0.062876 }
+      }
+      <Normal> { -0.413923 0.461654 -0.784539 }
+    }
+    <Vertex> 164 {
+      -1.23583161831 0.666887700558 2.48887944221
+      <UV>  {
+        0.651628 0.796895
+        <Tangent> { 0.925029 -0.379827 -0.007286 }
+        <Binormal> { 0.009682 0.033612 -0.522988 }
+      }
+      <Normal> { -0.986633 -0.160253 -0.028565 }
+    }
+    <Vertex> 165 {
+      -1.23583161831 0.666887700558 2.48887944221
+      <UV>  {
+        0.651628 0.796895
+        <Tangent> { 0.925029 -0.379827 -0.007286 }
+        <Binormal> { 0.009682 0.033612 -0.522988 }
+      }
+      <Normal> { -0.986633 -0.160253 -0.028565 }
+    }
+    <Vertex> 166 {
+      -0.909666597843 0.697590112686 2.51257276535
+      <UV>  {
+        0.650546 0.798447
+        <Tangent> { 0.896968 0.255673 -0.360665 }
+        <Binormal> { -0.055690 0.125858 -0.049281 }
+      }
+      <Normal> { -0.920103 -0.317209 0.229652 }
+    }
+    <Vertex> 167 {
+      -1.07819962502 0.678654849529 2.42750287056
+      <UV>  {
+        0.651015 0.797031
+        <Tangent> { 0.781728 0.458340 -0.422878 }
+        <Binormal> { -0.301397 0.456042 -0.062873 }
+      }
+      <Normal> { -0.816767 -0.559313 -0.141545 }
+    }
+    <Vertex> 168 {
+      -0.909666597843 0.664598822594 2.64579486847
+      <UV>  {
+        0.651917 0.800182
+        <Tangent> { 0.559986 0.667311 -0.491032 }
+        <Binormal> { 0.100480 0.097882 0.247612 }
+      }
+      <Normal> { -0.750114 -0.451704 0.482955 }
+    }
+    <Vertex> 169 {
+      -0.909666597843 0.697590112686 2.51257276535
+      <UV>  {
+        0.650546 0.798447
+        <Tangent> { 0.896968 0.255673 -0.360665 }
+        <Binormal> { -0.055690 0.125858 -0.049281 }
+      }
+      <Normal> { -0.920103 -0.317209 0.229652 }
+    }
+    <Vertex> 170 {
+      -1.23583161831 0.666887700558 2.48887944221
+      <UV>  {
+        0.651628 0.796895
+        <Tangent> { 0.925029 -0.379827 -0.007286 }
+        <Binormal> { 0.009682 0.033612 -0.522988 }
+      }
+      <Normal> { -0.986633 -0.160253 -0.028565 }
+    }
+    <Vertex> 171 {
+      -1.23583161831 0.666887700558 2.48887944221
+      <UV>  {
+        0.651628 0.796895
+        <Tangent> { 0.925029 -0.379827 -0.007286 }
+        <Binormal> { 0.009682 0.033612 -0.522988 }
+      }
+      <Normal> { -0.986633 -0.160253 -0.028565 }
+    }
+    <Vertex> 172 {
+      -1.29244375229 0.529526770115 2.59199666977
+      <UV>  {
+        0.652025 0.797015
+        <Tangent> { -0.276718 0.956437 -0.093035 }
+        <Binormal> { 0.640661 0.210536 0.258845 }
+      }
+      <Normal> { -0.075808 -0.673391 0.735343 }
+    }
+    <Vertex> 173 {
+      -0.909666597843 0.664598822594 2.64579486847
+      <UV>  {
+        0.651917 0.800182
+        <Tangent> { 0.559986 0.667311 -0.491032 }
+        <Binormal> { 0.100480 0.097882 0.247612 }
+      }
+      <Normal> { -0.750114 -0.451704 0.482955 }
+    }
+    <Vertex> 174 {
+      -1.29244375229 0.529526770115 2.59199666977
+      <UV>  {
+        0.652025 0.797015
+        <Tangent> { -0.276718 0.956437 -0.093035 }
+        <Binormal> { 0.640661 0.210536 0.258845 }
+      }
+      <Normal> { -0.075808 -0.673391 0.735343 }
+    }
+    <Vertex> 175 {
+      -0.954630017281 0.540606319904 2.70817780495
+      <UV>  {
+        0.657024 0.801213
+        <Tangent> { -0.525582 0.740851 -0.418214 }
+        <Binormal> { 0.273186 0.333811 0.248013 }
+      }
+      <Normal> { 0.132542 -0.658711 0.740593 }
+    }
+    <Vertex> 176 {
+      -0.909666597843 0.664598822594 2.64579486847
+      <UV>  {
+        0.651917 0.800182
+        <Tangent> { 0.559986 0.667311 -0.491032 }
+        <Binormal> { 0.100480 0.097882 0.247612 }
+      }
+      <Normal> { -0.750114 -0.451704 0.482955 }
+    }
+    <Vertex> 177 {
+      -1.29244375229 0.529526770115 2.59199666977
+      <UV>  {
+        0.652025 0.797015
+        <Tangent> { -0.276718 0.956437 -0.093035 }
+        <Binormal> { 0.640661 0.210536 0.258845 }
+      }
+      <Normal> { -0.075808 -0.673391 0.735343 }
+    }
+    <Vertex> 178 {
+      -0.986200034618 0.338298797607 2.60819959641
+      <UV>  {
+        0.654942 0.794264
+        <Tangent> { -0.605134 -0.468216 -0.643885 }
+        <Binormal> { -0.506082 -0.086961 0.538860 }
+      }
+      <Normal> { 0.712394 -0.339274 0.614307 }
+    }
+    <Vertex> 179 {
+      -0.954630017281 0.540606319904 2.70817780495
+      <UV>  {
+        0.657024 0.801213
+        <Tangent> { -0.525582 0.740851 -0.418214 }
+        <Binormal> { 0.273186 0.333811 0.248013 }
+      }
+      <Normal> { 0.132542 -0.658711 0.740593 }
+    }
+    <Vertex> 180 {
+      -0.986200034618 0.338298797607 2.60819959641
+      <UV>  {
+        0.654942 0.794264
+        <Tangent> { -0.605134 -0.468216 -0.643885 }
+        <Binormal> { -0.506082 -0.086961 0.538860 }
+      }
+      <Normal> { 0.712394 -0.339274 0.614307 }
+    }
+    <Vertex> 181 {
+      -1.29244375229 0.529526770115 2.59199666977
+      <UV>  {
+        0.652025 0.797015
+        <Tangent> { -0.276718 0.956437 -0.093035 }
+        <Binormal> { 0.640661 0.210536 0.258845 }
+      }
+      <Normal> { -0.075808 -0.673391 0.735343 }
+    }
+    <Vertex> 182 {
+      -1.26368427277 0.379294753075 2.54354286194
+      <UV>  {
+        0.652179 0.796281
+        <Tangent> { -0.191116 -0.124258 -0.973671 }
+        <Binormal> { -0.401466 -0.798753 0.180737 }
+      }
+      <Normal> { 0.878536 -0.374493 0.296426 }
+    }
+    <Vertex> 183 {
+      -1.26368427277 0.379294753075 2.54354286194
+      <UV>  {
+        0.652179 0.796281
+        <Tangent> { -0.191116 -0.124258 -0.973671 }
+        <Binormal> { -0.401466 -0.798753 0.180737 }
+      }
+      <Normal> { 0.878536 -0.374493 0.296426 }
+    }
+    <Vertex> 184 {
+      -1.07293796539 0.359876453876 2.54342770576
+      <UV>  {
+        0.653230 0.795023
+        <Tangent> { 0.321356 0.332413 -0.886697 }
+        <Binormal> { -0.247350 -0.848609 -0.407779 }
+      }
+      <Normal> { 0.961547 -0.274300 -0.012421 }
+    }
+    <Vertex> 185 {
+      -0.986200034618 0.338298797607 2.60819959641
+      <UV>  {
+        0.654942 0.794264
+        <Tangent> { -0.605134 -0.468216 -0.643885 }
+        <Binormal> { -0.506082 -0.086961 0.538860 }
+      }
+      <Normal> { 0.712394 -0.339274 0.614307 }
+    }
+    <Vertex> 186 {
+      -1.26368427277 0.379294753075 2.54354286194
+      <UV>  {
+        0.652179 0.796281
+        <Tangent> { -0.191116 -0.124258 -0.973671 }
+        <Binormal> { -0.401466 -0.798753 0.180737 }
+      }
+      <Normal> { 0.878536 -0.374493 0.296426 }
+    }
+    <Vertex> 187 {
+      -1.21059262753 0.351298213005 2.43934416771
+      <UV>  {
+        0.652044 0.796048
+        <Tangent> { 0.403725 0.583597 -0.704572 }
+        <Binormal> { 0.212770 -0.558568 -0.340743 }
+      }
+      <Normal> { 0.885372 0.435835 -0.161596 }
+    }
+    <Vertex> 188 {
+      -1.07293796539 0.359876453876 2.54342770576
+      <UV>  {
+        0.653230 0.795023
+        <Tangent> { 0.321356 0.332413 -0.886697 }
+        <Binormal> { -0.247350 -0.848609 -0.407779 }
+      }
+      <Normal> { 0.961547 -0.274300 -0.012421 }
+    }
+    <Vertex> 189 {
+      -1.07293796539 0.359876453876 2.54342770576
+      <UV>  {
+        0.653230 0.795023
+        <Tangent> { 0.321356 0.332413 -0.886697 }
+        <Binormal> { -0.247350 -0.848609 -0.407779 }
+      }
+      <Normal> { 0.961547 -0.274300 -0.012421 }
+    }
+    <Vertex> 190 {
+      -1.21059262753 0.351298213005 2.43934416771
+      <UV>  {
+        0.652044 0.796048
+        <Tangent> { 0.403725 0.583597 -0.704572 }
+        <Binormal> { 0.212770 -0.558568 -0.340743 }
+      }
+      <Normal> { 0.885372 0.435835 -0.161596 }
+    }
+    <Vertex> 191 {
+      -1.17998898029 0.444012284279 2.37897276878
+      <UV>  {
+        0.651759 0.796087
+        <Tangent> { 0.382556 0.718014 0.581469 }
+        <Binormal> { -0.829742 0.538154 -0.118630 }
+      }
+      <Normal> { 0.431837 0.500412 -0.750359 }
+    }
+    <Vertex> 192 {
+      -1.1164662838 0.381648719311 2.40994906425
+      <UV>  {
+        0.652019 0.795588
+        <Tangent> { 0.339534 0.765736 -0.546227 }
+        <Binormal> { -0.531882 -0.319835 -0.778983 }
+      }
+      <Normal> { 0.740959 -0.623218 -0.250038 }
+    }
+    <Vertex> 193 {
+      -1.07293796539 0.359876453876 2.54342770576
+      <UV>  {
+        0.653230 0.795023
+        <Tangent> { 0.321356 0.332413 -0.886697 }
+        <Binormal> { -0.247350 -0.848609 -0.407779 }
+      }
+      <Normal> { 0.961547 -0.274300 -0.012421 }
+    }
+    <Vertex> 194 {
+      -1.17998898029 0.444012284279 2.37897276878
+      <UV>  {
+        0.651759 0.796087
+        <Tangent> { 0.382556 0.718014 0.581469 }
+        <Binormal> { -0.829742 0.538154 -0.118630 }
+      }
+      <Normal> { 0.431837 0.500412 -0.750359 }
+    }
+    <Vertex> 195 {
+      -1.17998898029 0.444012284279 2.37897276878
+      <UV>  {
+        0.651759 0.796087
+        <Tangent> { 0.382556 0.718014 0.581469 }
+        <Binormal> { -0.829742 0.538154 -0.118630 }
+      }
+      <Normal> { 0.431837 0.500412 -0.750359 }
+    }
+    <Vertex> 196 {
+      -1.14564466476 0.56683498621 2.38147568703
+      <UV>  {
+        0.651349 0.796230
+        <Tangent> { 0.338384 0.854329 -0.394485 }
+        <Binormal> { -0.861734 0.288848 -0.113630 }
+      }
+      <Normal> { -0.152654 -0.721213 -0.675649 }
+    }
+    <Vertex> 197 {
+      -1.1164662838 0.381648719311 2.40994906425
+      <UV>  {
+        0.652019 0.795588
+        <Tangent> { 0.339534 0.765736 -0.546227 }
+        <Binormal> { -0.531882 -0.319835 -0.778983 }
+      }
+      <Normal> { 0.740959 -0.623218 -0.250038 }
+    }
+    <Vertex> 198 {
+      -1.07819962502 0.678654849529 2.42750287056
+      <UV>  {
+        0.651015 0.797031
+        <Tangent> { 0.781728 0.458340 -0.422878 }
+        <Binormal> { -0.301397 0.456042 -0.062873 }
+      }
+      <Normal> { -0.816767 -0.559313 -0.141545 }
+    }
+    <Vertex> 199 {
+      -1.14564466476 0.56683498621 2.38147568703
+      <UV>  {
+        0.651349 0.796230
+        <Tangent> { 0.338384 0.854329 -0.394485 }
+        <Binormal> { -0.861734 0.288848 -0.113630 }
+      }
+      <Normal> { -0.152654 -0.721213 -0.675649 }
+    }
+    <Vertex> 200 {
+      -1.18474876881 0.55247682333 2.3861644268
+      <UV>  {
+        0.651560 0.796370
+        <Tangent> { 0.320995 -0.509912 0.798093 }
+        <Binormal> { 0.031603 -0.078516 -0.062876 }
+      }
+      <Normal> { -0.413923 0.461654 -0.784539 }
+    }
+    <Vertex> 201 {
+      -1.18474876881 0.55247682333 2.3861644268
+      <UV>  {
+        0.651560 0.796370
+        <Tangent> { 0.320995 -0.509912 0.798093 }
+        <Binormal> { 0.031603 -0.078516 -0.062876 }
+      }
+      <Normal> { -0.413923 0.461654 -0.784539 }
+    }
+    <Vertex> 202 {
+      -1.14564466476 0.56683498621 2.38147568703
+      <UV>  {
+        0.651349 0.796230
+        <Tangent> { 0.338384 0.854329 -0.394485 }
+        <Binormal> { -0.861734 0.288848 -0.113630 }
+      }
+      <Normal> { -0.152654 -0.721213 -0.675649 }
+    }
+    <Vertex> 203 {
+      -1.17998898029 0.444012284279 2.37897276878
+      <UV>  {
+        0.651759 0.796087
+        <Tangent> { 0.382556 0.718014 0.581469 }
+        <Binormal> { -0.829742 0.538154 -0.118630 }
+      }
+      <Normal> { 0.431837 0.500412 -0.750359 }
+    }
+    <Vertex> 204 {
+      -1.43754637241 0.496924132109 2.1538271904
+      <UV>  {
+        0.651767 0.796273
+        <Tangent> { -0.101960 0.955669 0.276228 }
+        <Binormal> { 0.454653 -0.041684 0.312034 }
+      }
+      <Normal> { -0.224769 -0.953612 0.200110 }
+    }
+    <Vertex> 205 {
+      -1.23583161831 0.666887700558 2.48887944221
+      <UV>  {
+        0.651628 0.796895
+        <Tangent> { 0.925029 -0.379827 -0.007286 }
+        <Binormal> { 0.009682 0.033612 -0.522988 }
+      }
+      <Normal> { -0.986633 -0.160253 -0.028565 }
+    }
+    <Vertex> 206 {
+      -1.33470416069 0.602070510387 2.10816645622
+      <UV>  {
+        0.651758 0.796242
+        <Tangent> { -0.807370 0.169119 0.565290 }
+        <Binormal> { -0.124987 -0.781536 0.055302 }
+      }
+      <Normal> { -0.942564 0.128941 -0.308054 }
+    }
+    <Vertex> 207 {
+      -1.23583161831 0.666887700558 2.48887944221
+      <UV>  {
+        0.651628 0.796895
+        <Tangent> { 0.925029 -0.379827 -0.007286 }
+        <Binormal> { 0.009682 0.033612 -0.522988 }
+      }
+      <Normal> { -0.986633 -0.160253 -0.028565 }
+    }
+    <Vertex> 208 {
+      -1.43754637241 0.496924132109 2.1538271904
+      <UV>  {
+        0.651767 0.796273
+        <Tangent> { -0.101960 0.955669 0.276228 }
+        <Binormal> { 0.454653 -0.041684 0.312034 }
+      }
+      <Normal> { -0.224769 -0.953612 0.200110 }
+    }
+    <Vertex> 209 {
+      -1.29244375229 0.529526770115 2.59199666977
+      <UV>  {
+        0.652025 0.797015
+        <Tangent> { -0.276718 0.956437 -0.093035 }
+        <Binormal> { 0.640661 0.210536 0.258845 }
+      }
+      <Normal> { -0.075808 -0.673391 0.735343 }
+    }
+    <Vertex> 210 {
+      -1.43754637241 0.496924132109 2.1538271904
+      <UV>  {
+        0.651767 0.796273
+        <Tangent> { -0.101960 0.955669 0.276228 }
+        <Binormal> { 0.454653 -0.041684 0.312034 }
+      }
+      <Normal> { -0.224769 -0.953612 0.200110 }
+    }
+    <Vertex> 211 {
+      -1.39443159103 0.370380908251 2.18205285072
+      <UV>  {
+        0.651776 0.796304
+        <Tangent> { -0.292794 0.956166 -0.004264 }
+        <Binormal> { 0.274563 0.082494 -0.354761 }
+      }
+      <Normal> { 0.599414 -0.745842 0.290475 }
+    }
+    <Vertex> 212 {
+      -1.29244375229 0.529526770115 2.59199666977
+      <UV>  {
+        0.652025 0.797015
+        <Tangent> { -0.276718 0.956437 -0.093035 }
+        <Binormal> { 0.640661 0.210536 0.258845 }
+      }
+      <Normal> { -0.075808 -0.673391 0.735343 }
+    }
+    <Vertex> 213 {
+      -1.39443159103 0.370380908251 2.18205285072
+      <UV>  {
+        0.651776 0.796304
+        <Tangent> { -0.292794 0.956166 -0.004264 }
+        <Binormal> { 0.274563 0.082494 -0.354761 }
+      }
+      <Normal> { 0.599414 -0.745842 0.290475 }
+    }
+    <Vertex> 214 {
+      -1.26368427277 0.379294753075 2.54354286194
+      <UV>  {
+        0.652179 0.796281
+        <Tangent> { -0.191116 -0.124258 -0.973671 }
+        <Binormal> { -0.401466 -0.798753 0.180737 }
+      }
+      <Normal> { 0.878536 -0.374493 0.296426 }
+    }
+    <Vertex> 215 {
+      -1.29244375229 0.529526770115 2.59199666977
+      <UV>  {
+        0.652025 0.797015
+        <Tangent> { -0.276718 0.956437 -0.093035 }
+        <Binormal> { 0.640661 0.210536 0.258845 }
+      }
+      <Normal> { -0.075808 -0.673391 0.735343 }
+    }
+    <Vertex> 216 {
+      -1.23583161831 0.666887700558 2.48887944221
+      <UV>  {
+        0.651628 0.796895
+        <Tangent> { 0.925029 -0.379827 -0.007286 }
+        <Binormal> { 0.009682 0.033612 -0.522988 }
+      }
+      <Normal> { -0.986633 -0.160253 -0.028565 }
+    }
+    <Vertex> 217 {
+      -1.24247229099 0.499739378691 2.11569976807
+      <UV>  {
+        0.651752 0.796245
+        <Tangent> { 0.425408 -0.783391 -0.453130 }
+        <Binormal> { 0.672543 0.316688 0.083894 }
+      }
+      <Normal> { -0.360057 0.860256 -0.360912 }
+    }
+    <Vertex> 218 {
+      -1.33470416069 0.602070510387 2.10816645622
+      <UV>  {
+        0.651758 0.796242
+        <Tangent> { -0.807370 0.169119 0.565290 }
+        <Binormal> { -0.124987 -0.781536 0.055302 }
+      }
+      <Normal> { -0.942564 0.128941 -0.308054 }
+    }
+    <Vertex> 219 {
+      -1.23583161831 0.666887700558 2.48887944221
+      <UV>  {
+        0.651628 0.796895
+        <Tangent> { 0.925029 -0.379827 -0.007286 }
+        <Binormal> { 0.009682 0.033612 -0.522988 }
+      }
+      <Normal> { -0.986633 -0.160253 -0.028565 }
+    }
+    <Vertex> 220 {
+      -1.18474876881 0.55247682333 2.3861644268
+      <UV>  {
+        0.651560 0.796370
+        <Tangent> { 0.320995 -0.509912 0.798093 }
+        <Binormal> { 0.031603 -0.078516 -0.062876 }
+      }
+      <Normal> { -0.413923 0.461654 -0.784539 }
+    }
+    <Vertex> 221 {
+      -1.24247229099 0.499739378691 2.11569976807
+      <UV>  {
+        0.651752 0.796245
+        <Tangent> { 0.425408 -0.783391 -0.453130 }
+        <Binormal> { 0.672543 0.316688 0.083894 }
+      }
+      <Normal> { -0.360057 0.860256 -0.360912 }
+    }
+    <Vertex> 222 {
+      -1.18474876881 0.55247682333 2.3861644268
+      <UV>  {
+        0.651560 0.796370
+        <Tangent> { 0.320995 -0.509912 0.798093 }
+        <Binormal> { 0.031603 -0.078516 -0.062876 }
+      }
+      <Normal> { -0.413923 0.461654 -0.784539 }
+    }
+    <Vertex> 223 {
+      -1.23836028576 0.41030818224 2.13957762718
+      <UV>  {
+        0.651773 0.796248
+        <Tangent> { 0.073778 0.584802 -0.807814 }
+        <Binormal> { 0.591669 -0.233784 -0.115206 }
+      }
+      <Normal> { 0.312510 0.915586 -0.252998 }
+    }
+    <Vertex> 224 {
+      -1.24247229099 0.499739378691 2.11569976807
+      <UV>  {
+        0.651752 0.796245
+        <Tangent> { 0.425408 -0.783391 -0.453130 }
+        <Binormal> { 0.672543 0.316688 0.083894 }
+      }
+      <Normal> { -0.360057 0.860256 -0.360912 }
+    }
+    <Vertex> 225 {
+      -1.23836028576 0.41030818224 2.13957762718
+      <UV>  {
+        0.651773 0.796248
+        <Tangent> { 0.073778 0.584802 -0.807814 }
+        <Binormal> { 0.591669 -0.233784 -0.115206 }
+      }
+      <Normal> { 0.312510 0.915586 -0.252998 }
+    }
+    <Vertex> 226 {
+      -1.18474876881 0.55247682333 2.3861644268
+      <UV>  {
+        0.651560 0.796370
+        <Tangent> { 0.320995 -0.509912 0.798093 }
+        <Binormal> { 0.031603 -0.078516 -0.062876 }
+      }
+      <Normal> { -0.413923 0.461654 -0.784539 }
+    }
+    <Vertex> 227 {
+      -1.17998898029 0.444012284279 2.37897276878
+      <UV>  {
+        0.651759 0.796087
+        <Tangent> { 0.382556 0.718014 0.581469 }
+        <Binormal> { -0.829742 0.538154 -0.118630 }
+      }
+      <Normal> { 0.431837 0.500412 -0.750359 }
+    }
+    <Vertex> 228 {
+      -1.2975987196 0.339061290026 2.17072725296
+      <UV>  {
+        0.651809 0.796257
+        <Tangent> { -0.135423 0.216872 -0.966761 }
+        <Binormal> { 0.195061 -0.949620 -0.240351 }
+      }
+      <Normal> { 0.976806 0.210517 -0.039003 }
+    }
+    <Vertex> 229 {
+      -1.26368427277 0.379294753075 2.54354286194
+      <UV>  {
+        0.652179 0.796281
+        <Tangent> { -0.191116 -0.124258 -0.973671 }
+        <Binormal> { -0.401466 -0.798753 0.180737 }
+      }
+      <Normal> { 0.878536 -0.374493 0.296426 }
+    }
+    <Vertex> 230 {
+      -1.39443159103 0.370380908251 2.18205285072
+      <UV>  {
+        0.651776 0.796304
+        <Tangent> { -0.292794 0.956166 -0.004264 }
+        <Binormal> { 0.274563 0.082494 -0.354761 }
+      }
+      <Normal> { 0.599414 -0.745842 0.290475 }
+    }
+    <Vertex> 231 {
+      -1.21059262753 0.351298213005 2.43934416771
+      <UV>  {
+        0.652044 0.796048
+        <Tangent> { 0.403725 0.583597 -0.704572 }
+        <Binormal> { 0.212770 -0.558568 -0.340743 }
+      }
+      <Normal> { 0.885372 0.435835 -0.161596 }
+    }
+    <Vertex> 232 {
+      -1.26368427277 0.379294753075 2.54354286194
+      <UV>  {
+        0.652179 0.796281
+        <Tangent> { -0.191116 -0.124258 -0.973671 }
+        <Binormal> { -0.401466 -0.798753 0.180737 }
+      }
+      <Normal> { 0.878536 -0.374493 0.296426 }
+    }
+    <Vertex> 233 {
+      -1.2975987196 0.339061290026 2.17072725296
+      <UV>  {
+        0.651809 0.796257
+        <Tangent> { -0.135423 0.216872 -0.966761 }
+        <Binormal> { 0.195061 -0.949620 -0.240351 }
+      }
+      <Normal> { 0.976806 0.210517 -0.039003 }
+    }
+    <Vertex> 234 {
+      -1.21059262753 0.351298213005 2.43934416771
+      <UV>  {
+        0.652044 0.796048
+        <Tangent> { 0.403725 0.583597 -0.704572 }
+        <Binormal> { 0.212770 -0.558568 -0.340743 }
+      }
+      <Normal> { 0.885372 0.435835 -0.161596 }
+    }
+    <Vertex> 235 {
+      -1.2975987196 0.339061290026 2.17072725296
+      <UV>  {
+        0.651809 0.796257
+        <Tangent> { -0.135423 0.216872 -0.966761 }
+        <Binormal> { 0.195061 -0.949620 -0.240351 }
+      }
+      <Normal> { 0.976806 0.210517 -0.039003 }
+    }
+    <Vertex> 236 {
+      -1.23836028576 0.41030818224 2.13957762718
+      <UV>  {
+        0.651773 0.796248
+        <Tangent> { 0.073778 0.584802 -0.807814 }
+        <Binormal> { 0.591669 -0.233784 -0.115206 }
+      }
+      <Normal> { 0.312510 0.915586 -0.252998 }
+    }
+    <Vertex> 237 {
+      -1.23836028576 0.41030818224 2.13957762718
+      <UV>  {
+        0.651773 0.796248
+        <Tangent> { 0.073778 0.584802 -0.807814 }
+        <Binormal> { 0.591669 -0.233784 -0.115206 }
+      }
+      <Normal> { 0.312510 0.915586 -0.252998 }
+    }
+    <Vertex> 238 {
+      -1.17998898029 0.444012284279 2.37897276878
+      <UV>  {
+        0.651759 0.796087
+        <Tangent> { 0.382556 0.718014 0.581469 }
+        <Binormal> { -0.829742 0.538154 -0.118630 }
+      }
+      <Normal> { 0.431837 0.500412 -0.750359 }
+    }
+    <Vertex> 239 {
+      -1.21059262753 0.351298213005 2.43934416771
+      <UV>  {
+        0.652044 0.796048
+        <Tangent> { 0.403725 0.583597 -0.704572 }
+        <Binormal> { 0.212770 -0.558568 -0.340743 }
+      }
+      <Normal> { 0.885372 0.435835 -0.161596 }
+    }
+    <Vertex> 240 {
+      -1.47124361992 0.488315165043 1.93457531929
+      <UV>  {
+        0.651771 0.796263
+        <Tangent> { -0.013318 0.092065 0.995664 }
+        <Binormal> { 0.746118 -0.661810 0.071175 }
+      }
+      <Normal> { -0.665304 -0.745140 0.045717 }
+    }
+    <Vertex> 241 {
+      -1.33470416069 0.602070510387 2.10816645622
+      <UV>  {
+        0.651758 0.796242
+        <Tangent> { -0.807370 0.169119 0.565290 }
+        <Binormal> { -0.124987 -0.781536 0.055302 }
+      }
+      <Normal> { -0.942564 0.128941 -0.308054 }
+    }
+    <Vertex> 242 {
+      -1.35997009277 0.52386957407 1.9029147625
+      <UV>  {
+        0.651769 0.796259
+        <Tangent> { -0.097430 0.070716 0.992727 }
+        <Binormal> { -0.522119 -0.838392 0.008479 }
+      }
+      <Normal> { -0.817682 0.506455 -0.273598 }
+    }
+    <Vertex> 243 {
+      -1.33470416069 0.602070510387 2.10816645622
+      <UV>  {
+        0.651758 0.796242
+        <Tangent> { -0.807370 0.169119 0.565290 }
+        <Binormal> { -0.124987 -0.781536 0.055302 }
+      }
+      <Normal> { -0.942564 0.128941 -0.308054 }
+    }
+    <Vertex> 244 {
+      -1.47124361992 0.488315165043 1.93457531929
+      <UV>  {
+        0.651771 0.796263
+        <Tangent> { -0.013318 0.092065 0.995664 }
+        <Binormal> { 0.746118 -0.661810 0.071175 }
+      }
+      <Normal> { -0.665304 -0.745140 0.045717 }
+    }
+    <Vertex> 245 {
+      -1.43754637241 0.496924132109 2.1538271904
+      <UV>  {
+        0.651767 0.796273
+        <Tangent> { -0.101960 0.955669 0.276228 }
+        <Binormal> { 0.454653 -0.041684 0.312034 }
+      }
+      <Normal> { -0.224769 -0.953612 0.200110 }
+    }
+    <Vertex> 246 {
+      -1.47124361992 0.488315165043 1.93457531929
+      <UV>  {
+        0.651771 0.796263
+        <Tangent> { -0.013318 0.092065 0.995664 }
+        <Binormal> { 0.746118 -0.661810 0.071175 }
+      }
+      <Normal> { -0.665304 -0.745140 0.045717 }
+    }
+    <Vertex> 247 {
+      -1.41605627537 0.322669476271 2.01843118668
+      <UV>  {
+        0.651775 0.796269
+        <Tangent> { 0.355598 0.407883 0.840941 }
+        <Binormal> { 0.598005 0.537067 -0.513365 }
+      }
+      <Normal> { 0.767907 -0.562853 0.305673 }
+    }
+    <Vertex> 248 {
+      -1.43754637241 0.496924132109 2.1538271904
+      <UV>  {
+        0.651767 0.796273
+        <Tangent> { -0.101960 0.955669 0.276228 }
+        <Binormal> { 0.454653 -0.041684 0.312034 }
+      }
+      <Normal> { -0.224769 -0.953612 0.200110 }
+    }
+    <Vertex> 249 {
+      -1.41605627537 0.322669476271 2.01843118668
+      <UV>  {
+        0.651775 0.796269
+        <Tangent> { 0.355598 0.407883 0.840941 }
+        <Binormal> { 0.598005 0.537067 -0.513365 }
+      }
+      <Normal> { 0.767907 -0.562853 0.305673 }
+    }
+    <Vertex> 250 {
+      -1.39443159103 0.370380908251 2.18205285072
+      <UV>  {
+        0.651776 0.796304
+        <Tangent> { -0.292794 0.956166 -0.004264 }
+        <Binormal> { 0.274563 0.082494 -0.354761 }
+      }
+      <Normal> { 0.599414 -0.745842 0.290475 }
+    }
+    <Vertex> 251 {
+      -1.43754637241 0.496924132109 2.1538271904
+      <UV>  {
+        0.651767 0.796273
+        <Tangent> { -0.101960 0.955669 0.276228 }
+        <Binormal> { 0.454653 -0.041684 0.312034 }
+      }
+      <Normal> { -0.224769 -0.953612 0.200110 }
+    }
+    <Vertex> 252 {
+      -1.33470416069 0.602070510387 2.10816645622
+      <UV>  {
+        0.651758 0.796242
+        <Tangent> { -0.807370 0.169119 0.565290 }
+        <Binormal> { -0.124987 -0.781536 0.055302 }
+      }
+      <Normal> { -0.942564 0.128941 -0.308054 }
+    }
+    <Vertex> 253 {
+      -1.30844664574 0.410751223564 1.95533704758
+      <UV>  {
+        0.651770 0.796259
+        <Tangent> { 0.291372 -0.137634 -0.946657 }
+        <Binormal> { 0.914537 -0.232726 0.315322 }
+      }
+      <Normal> { 0.292825 0.943876 -0.152654 }
+    }
+    <Vertex> 254 {
+      -1.35997009277 0.52386957407 1.9029147625
+      <UV>  {
+        0.651769 0.796259
+        <Tangent> { -0.097430 0.070716 0.992727 }
+        <Binormal> { -0.522119 -0.838392 0.008479 }
+      }
+      <Normal> { -0.817682 0.506455 -0.273598 }
+    }
+    <Vertex> 255 {
+      -1.33470416069 0.602070510387 2.10816645622
+      <UV>  {
+        0.651758 0.796242
+        <Tangent> { -0.807370 0.169119 0.565290 }
+        <Binormal> { -0.124987 -0.781536 0.055302 }
+      }
+      <Normal> { -0.942564 0.128941 -0.308054 }
+    }
+    <Vertex> 256 {
+      -1.24247229099 0.499739378691 2.11569976807
+      <UV>  {
+        0.651752 0.796245
+        <Tangent> { 0.425408 -0.783391 -0.453130 }
+        <Binormal> { 0.672543 0.316688 0.083894 }
+      }
+      <Normal> { -0.360057 0.860256 -0.360912 }
+    }
+    <Vertex> 257 {
+      -1.30844664574 0.410751223564 1.95533704758
+      <UV>  {
+        0.651770 0.796259
+        <Tangent> { 0.291372 -0.137634 -0.946657 }
+        <Binormal> { 0.914537 -0.232726 0.315322 }
+      }
+      <Normal> { 0.292825 0.943876 -0.152654 }
+    }
+    <Vertex> 258 {
+      -1.30844664574 0.410751223564 1.95533704758
+      <UV>  {
+        0.651770 0.796259
+        <Tangent> { 0.291372 -0.137634 -0.946657 }
+        <Binormal> { 0.914537 -0.232726 0.315322 }
+      }
+      <Normal> { 0.292825 0.943876 -0.152654 }
+    }
+    <Vertex> 259 {
+      -1.24247229099 0.499739378691 2.11569976807
+      <UV>  {
+        0.651752 0.796245
+        <Tangent> { 0.425408 -0.783391 -0.453130 }
+        <Binormal> { 0.672543 0.316688 0.083894 }
+      }
+      <Normal> { -0.360057 0.860256 -0.360912 }
+    }
+    <Vertex> 260 {
+      -1.23836028576 0.41030818224 2.13957762718
+      <UV>  {
+        0.651773 0.796248
+        <Tangent> { 0.073778 0.584802 -0.807814 }
+        <Binormal> { 0.591669 -0.233784 -0.115206 }
+      }
+      <Normal> { 0.312510 0.915586 -0.252998 }
+    }
+    <Vertex> 261 {
+      -1.2975987196 0.339061290026 2.17072725296
+      <UV>  {
+        0.651809 0.796257
+        <Tangent> { -0.135423 0.216872 -0.966761 }
+        <Binormal> { 0.195061 -0.949620 -0.240351 }
+      }
+      <Normal> { 0.976806 0.210517 -0.039003 }
+    }
+    <Vertex> 262 {
+      -1.39443159103 0.370380908251 2.18205285072
+      <UV>  {
+        0.651776 0.796304
+        <Tangent> { -0.292794 0.956166 -0.004264 }
+        <Binormal> { 0.274563 0.082494 -0.354761 }
+      }
+      <Normal> { 0.599414 -0.745842 0.290475 }
+    }
+    <Vertex> 263 {
+      -1.41605627537 0.322669476271 2.01843118668
+      <UV>  {
+        0.651775 0.796269
+        <Tangent> { 0.355598 0.407883 0.840941 }
+        <Binormal> { 0.598005 0.537067 -0.513365 }
+      }
+      <Normal> { 0.767907 -0.562853 0.305673 }
+    }
+    <Vertex> 264 {
+      -1.2975987196 0.339061290026 2.17072725296
+      <UV>  {
+        0.651809 0.796257
+        <Tangent> { -0.135423 0.216872 -0.966761 }
+        <Binormal> { 0.195061 -0.949620 -0.240351 }
+      }
+      <Normal> { 0.976806 0.210517 -0.039003 }
+    }
+    <Vertex> 265 {
+      -1.41605627537 0.322669476271 2.01843118668
+      <UV>  {
+        0.651775 0.796269
+        <Tangent> { 0.355598 0.407883 0.840941 }
+        <Binormal> { 0.598005 0.537067 -0.513365 }
+      }
+      <Normal> { 0.767907 -0.562853 0.305673 }
+    }
+    <Vertex> 266 {
+      -1.30844664574 0.410751223564 1.95533704758
+      <UV>  {
+        0.651770 0.796259
+        <Tangent> { 0.291372 -0.137634 -0.946657 }
+        <Binormal> { 0.914537 -0.232726 0.315322 }
+      }
+      <Normal> { 0.292825 0.943876 -0.152654 }
+    }
+    <Vertex> 267 {
+      -1.30844664574 0.410751223564 1.95533704758
+      <UV>  {
+        0.651770 0.796259
+        <Tangent> { 0.291372 -0.137634 -0.946657 }
+        <Binormal> { 0.914537 -0.232726 0.315322 }
+      }
+      <Normal> { 0.292825 0.943876 -0.152654 }
+    }
+    <Vertex> 268 {
+      -1.23836028576 0.41030818224 2.13957762718
+      <UV>  {
+        0.651773 0.796248
+        <Tangent> { 0.073778 0.584802 -0.807814 }
+        <Binormal> { 0.591669 -0.233784 -0.115206 }
+      }
+      <Normal> { 0.312510 0.915586 -0.252998 }
+    }
+    <Vertex> 269 {
+      -1.2975987196 0.339061290026 2.17072725296
+      <UV>  {
+        0.651809 0.796257
+        <Tangent> { -0.135423 0.216872 -0.966761 }
+        <Binormal> { 0.195061 -0.949620 -0.240351 }
+      }
+      <Normal> { 0.976806 0.210517 -0.039003 }
+    }
+    <Vertex> 270 {
+      -1.23309648037 0.609579205513 1.30489325523
+      <UV>  {
+        0.650061 0.794514
+        <Tangent> { 0.006255 0.831915 -0.554868 }
+        <Binormal> { -0.415827 0.025191 0.033082 }
+      }
+      <Normal> { -0.047182 -0.986297 0.157994 }
+    }
+    <Vertex> 271 {
+      -1.15355205536 0.793259441853 1.42989778519
+      <UV>  {
+        0.649962 0.794617
+        <Tangent> { 0.710931 0.701626 -0.047943 }
+        <Binormal> { -0.018447 0.020673 0.028991 }
+      }
+      <Normal> { -0.731681 -0.681326 0.020264 }
+    }
+    <Vertex> 272 {
+      -1.16392529011 0.793259441853 1.11355960369
+      <UV>  {
+        0.649994 0.794479
+        <Tangent> { 0.776191 0.561870 0.286060 }
+        <Binormal> { 0.097211 -0.243409 0.214326 }
+      }
+      <Normal> { -0.920377 -0.390118 -0.025605 }
+    }
+    <Vertex> 273 {
+      -1.15355205536 0.793259441853 1.42989778519
+      <UV>  {
+        0.649962 0.794617
+        <Tangent> { 0.710931 0.701626 -0.047943 }
+        <Binormal> { -0.018447 0.020673 0.028991 }
+      }
+      <Normal> { -0.731681 -0.681326 0.020264 }
+    }
+    <Vertex> 274 {
+      -1.23309648037 0.609579205513 1.30489325523
+      <UV>  {
+        0.650061 0.794514
+        <Tangent> { 0.006255 0.831915 -0.554868 }
+        <Binormal> { -0.415827 0.025191 0.033082 }
+      }
+      <Normal> { -0.047182 -0.986297 0.157994 }
+    }
+    <Vertex> 275 {
+      -1.18649077415 0.609579205513 1.61868023872
+      <UV>  {
+        0.650168 0.794690
+        <Tangent> { -0.081059 0.909698 -0.407282 }
+        <Binormal> { -0.257264 0.009734 0.072943 }
+      }
+      <Normal> { 0.007782 -0.987213 0.159185 }
+    }
+    <Vertex> 276 {
+      -1.15355205536 0.793259441853 1.42989778519
+      <UV>  {
+        0.649962 0.794617
+        <Tangent> { 0.710931 0.701626 -0.047943 }
+        <Binormal> { -0.018447 0.020673 0.028991 }
+      }
+      <Normal> { -0.731681 -0.681326 0.020264 }
+    }
+    <Vertex> 277 {
+      -0.990280747414 0.772850513458 1.16458189487
+      <UV>  {
+        0.649916 0.794448
+        <Tangent> { 0.536456 0.183594 0.823716 }
+        <Binormal> { -0.447654 -0.479984 0.398521 }
+      }
+      <Normal> { -0.812189 0.464919 -0.352367 }
+    }
+    <Vertex> 278 {
+      -1.16392529011 0.793259441853 1.11355960369
+      <UV>  {
+        0.649994 0.794479
+        <Tangent> { 0.776191 0.561870 0.286060 }
+        <Binormal> { 0.097211 -0.243409 0.214326 }
+      }
+      <Normal> { -0.920377 -0.390118 -0.025605 }
+    }
+    <Vertex> 279 {
+      -1.15355205536 0.420796751976 1.41969335079
+      <UV>  {
+        0.650182 0.794475
+        <Tangent> { -0.225631 0.195915 -0.954310 }
+        <Binormal> { -0.748340 -0.512631 0.071692 }
+      }
+      <Normal> { 0.568743 -0.811579 0.133518 }
+    }
+    <Vertex> 280 {
+      -1.18649077415 0.609579205513 1.61868023872
+      <UV>  {
+        0.650168 0.794690
+        <Tangent> { -0.081059 0.909698 -0.407282 }
+        <Binormal> { -0.257264 0.009734 0.072943 }
+      }
+      <Normal> { 0.007782 -0.987213 0.159185 }
+    }
+    <Vertex> 281 {
+      -1.23309648037 0.609579205513 1.30489325523
+      <UV>  {
+        0.650061 0.794514
+        <Tangent> { 0.006255 0.831915 -0.554868 }
+        <Binormal> { -0.415827 0.025191 0.033082 }
+      }
+      <Normal> { -0.047182 -0.986297 0.157994 }
+    }
+    <Vertex> 282 {
+      -1.16392529011 0.303445518017 1.12631523609
+      <UV>  {
+        0.650074 0.794431
+        <Tangent> { -0.122491 0.222650 -0.967173 }
+        <Binormal> { -0.640081 -0.689384 -0.077637 }
+      }
+      <Normal> { 0.724479 -0.683065 0.092349 }
+    }
+    <Vertex> 283 {
+      -1.15355205536 0.420796751976 1.41969335079
+      <UV>  {
+        0.650182 0.794475
+        <Tangent> { -0.225631 0.195915 -0.954310 }
+        <Binormal> { -0.748340 -0.512631 0.071692 }
+      }
+      <Normal> { 0.568743 -0.811579 0.133518 }
+    }
+    <Vertex> 284 {
+      -1.23309648037 0.609579205513 1.30489325523
+      <UV>  {
+        0.650061 0.794514
+        <Tangent> { 0.006255 0.831915 -0.554868 }
+        <Binormal> { -0.415827 0.025191 0.033082 }
+      }
+      <Normal> { -0.047182 -0.986297 0.157994 }
+    }
+    <Vertex> 285 {
+      -1.15355205536 0.420796751976 1.41969335079
+      <UV>  {
+        0.650182 0.794475
+        <Tangent> { -0.225631 0.195915 -0.954310 }
+        <Binormal> { -0.748340 -0.512631 0.071692 }
+      }
+      <Normal> { 0.568743 -0.811579 0.133518 }
+    }
+    <Vertex> 286 {
+      -1.16392529011 0.303445518017 1.12631523609
+      <UV>  {
+        0.650074 0.794431
+        <Tangent> { -0.122491 0.222650 -0.967173 }
+        <Binormal> { -0.640081 -0.689384 -0.077637 }
+      }
+      <Normal> { 0.724479 -0.683065 0.092349 }
+    }
+    <Vertex> 287 {
+      -0.990280747414 0.257525444031 1.20029759407
+      <UV>  {
+        0.650097 0.794354
+        <Tangent> { 0.299408 0.549863 -0.779747 }
+        <Binormal> { 0.117973 -0.668591 -0.426179 }
+      }
+      <Normal> { 0.934660 0.293100 -0.201086 }
+    }
+    <Vertex> 288 {
+      -0.990280747414 0.772850513458 1.16458189487
+      <UV>  {
+        0.649916 0.794448
+        <Tangent> { 0.536456 0.183594 0.823716 }
+        <Binormal> { -0.447654 -0.479984 0.398521 }
+      }
+      <Normal> { -0.812189 0.464919 -0.352367 }
+    }
+    <Vertex> 289 {
+      -0.954565107822 0.589170277119 1.0778440237
+      <UV>  {
+        0.649963 0.794393
+        <Tangent> { 0.065151 0.778857 0.623808 }
+        <Binormal> { -0.947735 -0.018165 0.121663 }
+      }
+      <Normal> { -0.086917 0.828333 -0.553392 }
+    }
+    <Vertex> 290 {
+      -1.05677843094 0.721828222275 0.978350579739
+      <UV>  {
+        0.649986 0.794445
+        <Tangent> { 0.394775 -0.067810 0.916272 }
+        <Binormal> { -0.532084 -0.665861 0.179970 }
+      }
+      <Normal> { -0.791742 0.591876 -0.150945 }
+    }
+    <Vertex> 291 {
+      -1.05677843094 0.721828222275 0.978350579739
+      <UV>  {
+        0.649986 0.794445
+        <Tangent> { 0.394775 -0.067810 0.916272 }
+        <Binormal> { -0.532084 -0.665861 0.179970 }
+      }
+      <Normal> { -0.791742 0.591876 -0.150945 }
+    }
+    <Vertex> 292 {
+      -1.16392529011 0.793259441853 1.11355960369
+      <UV>  {
+        0.649994 0.794479
+        <Tangent> { 0.776191 0.561870 0.286060 }
+        <Binormal> { 0.097211 -0.243409 0.214326 }
+      }
+      <Normal> { -0.920377 -0.390118 -0.025605 }
+    }
+    <Vertex> 293 {
+      -0.990280747414 0.772850513458 1.16458189487
+      <UV>  {
+        0.649916 0.794448
+        <Tangent> { 0.536456 0.183594 0.823716 }
+        <Binormal> { -0.447654 -0.479984 0.398521 }
+      }
+      <Normal> { -0.812189 0.464919 -0.352367 }
+    }
+    <Vertex> 294 {
+      -1.05677843094 0.29324105382 1.01916837692
+      <UV>  {
+        0.650056 0.794410
+        <Tangent> { 0.631721 0.568785 -0.526699 }
+        <Binormal> { 0.034317 -0.248259 -0.226936 }
+      }
+      <Normal> { 0.854335 0.409986 -0.319315 }
+    }
+    <Vertex> 295 {
+      -0.990280747414 0.257525444031 1.20029759407
+      <UV>  {
+        0.650097 0.794354
+        <Tangent> { 0.299408 0.549863 -0.779747 }
+        <Binormal> { 0.117973 -0.668591 -0.426179 }
+      }
+      <Normal> { 0.934660 0.293100 -0.201086 }
+    }
+    <Vertex> 296 {
+      -1.16392529011 0.303445518017 1.12631523609
+      <UV>  {
+        0.650074 0.794431
+        <Tangent> { -0.122491 0.222650 -0.967173 }
+        <Binormal> { -0.640081 -0.689384 -0.077637 }
+      }
+      <Normal> { 0.724479 -0.683065 0.092349 }
+    }
+    <Vertex> 297 {
+      -1.05677843094 0.721828222275 0.978350579739
+      <UV>  {
+        0.649986 0.794445
+        <Tangent> { 0.394775 -0.067810 0.916272 }
+        <Binormal> { -0.532084 -0.665861 0.179970 }
+      }
+      <Normal> { -0.791742 0.591876 -0.150945 }
+    }
+    <Vertex> 298 {
+      -0.954565107822 0.589170277119 1.0778440237
+      <UV>  {
+        0.649963 0.794393
+        <Tangent> { 0.065151 0.778857 0.623808 }
+        <Binormal> { -0.947735 -0.018165 0.121663 }
+      }
+      <Normal> { -0.086917 0.828333 -0.553392 }
+    }
+    <Vertex> 299 {
+      -0.97259169817 0.589170277119 0.922226071358
+      <UV>  {
+        0.649993 0.794421
+        <Tangent> { -0.108391 0.624591 0.773394 }
+        <Binormal> { -0.847013 -0.139036 -0.006424 }
+      }
+      <Normal> { -0.159124 0.976196 -0.147343 }
+    }
+    <Vertex> 300 {
+      -0.97259169817 0.589170277119 0.922226071358
+      <UV>  {
+        0.649993 0.794421
+        <Tangent> { -0.108391 0.624591 0.773394 }
+        <Binormal> { -0.847013 -0.139036 -0.006424 }
+      }
+      <Normal> { -0.159124 0.976196 -0.147343 }
+    }
+    <Vertex> 301 {
+      -0.954565107822 0.589170277119 1.0778440237
+      <UV>  {
+        0.649963 0.794393
+        <Tangent> { 0.065151 0.778857 0.623808 }
+        <Binormal> { -0.947735 -0.018165 0.121663 }
+      }
+      <Normal> { -0.086917 0.828333 -0.553392 }
+    }
+    <Vertex> 302 {
+      -0.990280747414 0.257525444031 1.20029759407
+      <UV>  {
+        0.650097 0.794354
+        <Tangent> { 0.299408 0.549863 -0.779747 }
+        <Binormal> { 0.117973 -0.668591 -0.426179 }
+      }
+      <Normal> { 0.934660 0.293100 -0.201086 }
+    }
+    <Vertex> 303 {
+      -0.990280747414 0.257525444031 1.20029759407
+      <UV>  {
+        0.650097 0.794354
+        <Tangent> { 0.299408 0.549863 -0.779747 }
+        <Binormal> { 0.117973 -0.668591 -0.426179 }
+      }
+      <Normal> { 0.934660 0.293100 -0.201086 }
+    }
+    <Vertex> 304 {
+      -1.05677843094 0.29324105382 1.01916837692
+      <UV>  {
+        0.650056 0.794410
+        <Tangent> { 0.631721 0.568785 -0.526699 }
+        <Binormal> { 0.034317 -0.248259 -0.226936 }
+      }
+      <Normal> { 0.854335 0.409986 -0.319315 }
+    }
+    <Vertex> 305 {
+      -0.97259169817 0.589170277119 0.922226071358
+      <UV>  {
+        0.649993 0.794421
+        <Tangent> { -0.108391 0.624591 0.773394 }
+        <Binormal> { -0.847013 -0.139036 -0.006424 }
+      }
+      <Normal> { -0.159124 0.976196 -0.147343 }
+    }
+    <Vertex> 306 {
+      -1.32661032677 0.609579205513 0.912191033363
+      <UV>  {
+        0.650021 0.794452
+        <Tangent> { 0.204932 0.858527 -0.470036 }
+        <Binormal> { -0.355594 0.014374 -0.128782 }
+      }
+      <Normal> { -0.085879 -0.988189 0.126835 }
+    }
+    <Vertex> 307 {
+      -1.16392529011 0.793259441853 1.11355960369
+      <UV>  {
+        0.649994 0.794479
+        <Tangent> { 0.776191 0.561870 0.286060 }
+        <Binormal> { 0.097211 -0.243409 0.214326 }
+      }
+      <Normal> { -0.920377 -0.390118 -0.025605 }
+    }
+    <Vertex> 308 {
+      -1.22711062431 0.772850513458 0.79374486208
+      <UV>  {
+        0.650008 0.794446
+        <Tangent> { 0.694105 0.702783 0.155934 }
+        <Binormal> { 0.118230 -0.195442 0.354570 }
+      }
+      <Normal> { -0.908994 -0.409528 0.077364 }
+    }
+    <Vertex> 309 {
+      -1.16392529011 0.793259441853 1.11355960369
+      <UV>  {
+        0.649994 0.794479
+        <Tangent> { 0.776191 0.561870 0.286060 }
+        <Binormal> { 0.097211 -0.243409 0.214326 }
+      }
+      <Normal> { -0.920377 -0.390118 -0.025605 }
+    }
+    <Vertex> 310 {
+      -1.32661032677 0.609579205513 0.912191033363
+      <UV>  {
+        0.650021 0.794452
+        <Tangent> { 0.204932 0.858527 -0.470036 }
+        <Binormal> { -0.355594 0.014374 -0.128782 }
+      }
+      <Normal> { -0.085879 -0.988189 0.126835 }
+    }
+    <Vertex> 311 {
+      -1.23309648037 0.609579205513 1.30489325523
+      <UV>  {
+        0.650061 0.794514
+        <Tangent> { 0.006255 0.831915 -0.554868 }
+        <Binormal> { -0.415827 0.025191 0.033082 }
+      }
+      <Normal> { -0.047182 -0.986297 0.157994 }
+    }
+    <Vertex> 312 {
+      -1.16392529011 0.793259441853 1.11355960369
+      <UV>  {
+        0.649994 0.794479
+        <Tangent> { 0.776191 0.561870 0.286060 }
+        <Binormal> { 0.097211 -0.243409 0.214326 }
+      }
+      <Normal> { -0.920377 -0.390118 -0.025605 }
+    }
+    <Vertex> 313 {
+      -1.05677843094 0.721828222275 0.978350579739
+      <UV>  {
+        0.649986 0.794445
+        <Tangent> { 0.394775 -0.067810 0.916272 }
+        <Binormal> { -0.532084 -0.665861 0.179970 }
+      }
+      <Normal> { -0.791742 0.591876 -0.150945 }
+    }
+    <Vertex> 314 {
+      -1.22711062431 0.772850513458 0.79374486208
+      <UV>  {
+        0.650008 0.794446
+        <Tangent> { 0.694105 0.702783 0.155934 }
+        <Binormal> { 0.118230 -0.195442 0.354570 }
+      }
+      <Normal> { -0.908994 -0.409528 0.077364 }
+    }
+    <Vertex> 315 {
+      -1.16392529011 0.303445518017 1.12631523609
+      <UV>  {
+        0.650074 0.794431
+        <Tangent> { -0.122491 0.222650 -0.967173 }
+        <Binormal> { -0.640081 -0.689384 -0.077637 }
+      }
+      <Normal> { 0.724479 -0.683065 0.092349 }
+    }
+    <Vertex> 316 {
+      -1.23309648037 0.609579205513 1.30489325523
+      <UV>  {
+        0.650061 0.794514
+        <Tangent> { 0.006255 0.831915 -0.554868 }
+        <Binormal> { -0.415827 0.025191 0.033082 }
+      }
+      <Normal> { -0.047182 -0.986297 0.157994 }
+    }
+    <Vertex> 317 {
+      -1.32661032677 0.609579205513 0.912191033363
+      <UV>  {
+        0.650021 0.794452
+        <Tangent> { 0.204932 0.858527 -0.470036 }
+        <Binormal> { -0.355594 0.014374 -0.128782 }
+      }
+      <Normal> { -0.085879 -0.988189 0.126835 }
+    }
+    <Vertex> 318 {
+      -1.22599208355 0.385081171989 0.807944178581
+      <UV>  {
+        0.650028 0.794435
+        <Tangent> { 0.184205 0.242998 -0.952376 }
+        <Binormal> { -0.579981 -0.731210 -0.298745 }
+      }
+      <Normal> { 0.805658 -0.559008 -0.195868 }
+    }
+    <Vertex> 319 {
+      -1.16392529011 0.303445518017 1.12631523609
+      <UV>  {
+        0.650074 0.794431
+        <Tangent> { -0.122491 0.222650 -0.967173 }
+        <Binormal> { -0.640081 -0.689384 -0.077637 }
+      }
+      <Normal> { 0.724479 -0.683065 0.092349 }
+    }
+    <Vertex> 320 {
+      -1.32661032677 0.609579205513 0.912191033363
+      <UV>  {
+        0.650021 0.794452
+        <Tangent> { 0.204932 0.858527 -0.470036 }
+        <Binormal> { -0.355594 0.014374 -0.128782 }
+      }
+      <Normal> { -0.085879 -0.988189 0.126835 }
+    }
+    <Vertex> 321 {
+      -1.16392529011 0.303445518017 1.12631523609
+      <UV>  {
+        0.650074 0.794431
+        <Tangent> { -0.122491 0.222650 -0.967173 }
+        <Binormal> { -0.640081 -0.689384 -0.077637 }
+      }
+      <Normal> { 0.724479 -0.683065 0.092349 }
+    }
+    <Vertex> 322 {
+      -1.22599208355 0.385081171989 0.807944178581
+      <UV>  {
+        0.650028 0.794435
+        <Tangent> { 0.184205 0.242998 -0.952376 }
+        <Binormal> { -0.579981 -0.731210 -0.298745 }
+      }
+      <Normal> { 0.805658 -0.559008 -0.195868 }
+    }
+    <Vertex> 323 {
+      -1.05677843094 0.29324105382 1.01916837692
+      <UV>  {
+        0.650056 0.794410
+        <Tangent> { 0.631721 0.568785 -0.526699 }
+        <Binormal> { 0.034317 -0.248259 -0.226936 }
+      }
+      <Normal> { 0.854335 0.409986 -0.319315 }
+    }
+    <Vertex> 324 {
+      -1.05677843094 0.721828222275 0.978350579739
+      <UV>  {
+        0.649986 0.794445
+        <Tangent> { 0.394775 -0.067810 0.916272 }
+        <Binormal> { -0.532084 -0.665861 0.179970 }
+      }
+      <Normal> { -0.791742 0.591876 -0.150945 }
+    }
+    <Vertex> 325 {
+      -0.97259169817 0.589170277119 0.922226071358
+      <UV>  {
+        0.649993 0.794421
+        <Tangent> { -0.108391 0.624591 0.773394 }
+        <Binormal> { -0.847013 -0.139036 -0.006424 }
+      }
+      <Normal> { -0.159124 0.976196 -0.147343 }
+    }
+    <Vertex> 326 {
+      -1.10764122009 0.772850513458 0.757513582706
+      <UV>  {
+        0.650004 0.794442
+        <Tangent> { 0.777258 -0.134116 0.614722 }
+        <Binormal> { -0.315960 -0.531099 0.283630 }
+      }
+      <Normal> { -0.858333 0.513016 0.004456 }
+    }
+    <Vertex> 327 {
+      -1.10764122009 0.772850513458 0.757513582706
+      <UV>  {
+        0.650004 0.794442
+        <Tangent> { 0.777258 -0.134116 0.614722 }
+        <Binormal> { -0.315960 -0.531099 0.283630 }
+      }
+      <Normal> { -0.858333 0.513016 0.004456 }
+    }
+    <Vertex> 328 {
+      -1.22711062431 0.772850513458 0.79374486208
+      <UV>  {
+        0.650008 0.794446
+        <Tangent> { 0.694105 0.702783 0.155934 }
+        <Binormal> { 0.118230 -0.195442 0.354570 }
+      }
+      <Normal> { -0.908994 -0.409528 0.077364 }
+    }
+    <Vertex> 329 {
+      -1.05677843094 0.721828222275 0.978350579739
+      <UV>  {
+        0.649986 0.794445
+        <Tangent> { 0.394775 -0.067810 0.916272 }
+        <Binormal> { -0.532084 -0.665861 0.179970 }
+      }
+      <Normal> { -0.791742 0.591876 -0.150945 }
+    }
+    <Vertex> 330 {
+      -1.11062455177 0.374876707792 0.813192129135
+      <UV>  {
+        0.650029 0.794429
+        <Tangent> { 0.895287 0.341612 -0.285941 }
+        <Binormal> { -0.033292 0.086357 -0.001067 }
+      }
+      <Normal> { 0.867092 0.329661 -0.373394 }
+    }
+    <Vertex> 331 {
+      -1.05677843094 0.29324105382 1.01916837692
+      <UV>  {
+        0.650056 0.794410
+        <Tangent> { 0.631721 0.568785 -0.526699 }
+        <Binormal> { 0.034317 -0.248259 -0.226936 }
+      }
+      <Normal> { 0.854335 0.409986 -0.319315 }
+    }
+    <Vertex> 332 {
+      -1.22599208355 0.385081171989 0.807944178581
+      <UV>  {
+        0.650028 0.794435
+        <Tangent> { 0.184205 0.242998 -0.952376 }
+        <Binormal> { -0.579981 -0.731210 -0.298745 }
+      }
+      <Normal> { 0.805658 -0.559008 -0.195868 }
+    }
+    <Vertex> 333 {
+      -1.10764122009 0.772850513458 0.757513582706
+      <UV>  {
+        0.650004 0.794442
+        <Tangent> { 0.777258 -0.134116 0.614722 }
+        <Binormal> { -0.315960 -0.531099 0.283630 }
+      }
+      <Normal> { -0.858333 0.513016 0.004456 }
+    }
+    <Vertex> 334 {
+      -0.97259169817 0.589170277119 0.922226071358
+      <UV>  {
+        0.649993 0.794421
+        <Tangent> { -0.108391 0.624591 0.773394 }
+        <Binormal> { -0.847013 -0.139036 -0.006424 }
+      }
+      <Normal> { -0.159124 0.976196 -0.147343 }
+    }
+    <Vertex> 335 {
+      -0.987751245499 0.589170277119 0.727677464485
+      <UV>  {
+        0.650006 0.794433
+        <Tangent> { -0.312046 0.677605 0.665942 }
+        <Binormal> { -0.763678 -0.090333 -0.265928 }
+      }
+      <Normal> { -0.061342 0.985412 -0.158574 }
+    }
+    <Vertex> 336 {
+      -0.987751245499 0.589170277119 0.727677464485
+      <UV>  {
+        0.650006 0.794433
+        <Tangent> { -0.312046 0.677605 0.665942 }
+        <Binormal> { -0.763678 -0.090333 -0.265928 }
+      }
+      <Normal> { -0.061342 0.985412 -0.158574 }
+    }
+    <Vertex> 337 {
+      -0.97259169817 0.589170277119 0.922226071358
+      <UV>  {
+        0.649993 0.794421
+        <Tangent> { -0.108391 0.624591 0.773394 }
+        <Binormal> { -0.847013 -0.139036 -0.006424 }
+      }
+      <Normal> { -0.159124 0.976196 -0.147343 }
+    }
+    <Vertex> 338 {
+      -1.05677843094 0.29324105382 1.01916837692
+      <UV>  {
+        0.650056 0.794410
+        <Tangent> { 0.631721 0.568785 -0.526699 }
+        <Binormal> { 0.034317 -0.248259 -0.226936 }
+      }
+      <Normal> { 0.854335 0.409986 -0.319315 }
+    }
+    <Vertex> 339 {
+      -1.05677843094 0.29324105382 1.01916837692
+      <UV>  {
+        0.650056 0.794410
+        <Tangent> { 0.631721 0.568785 -0.526699 }
+        <Binormal> { 0.034317 -0.248259 -0.226936 }
+      }
+      <Normal> { 0.854335 0.409986 -0.319315 }
+    }
+    <Vertex> 340 {
+      -1.11062455177 0.374876707792 0.813192129135
+      <UV>  {
+        0.650029 0.794429
+        <Tangent> { 0.895287 0.341612 -0.285941 }
+        <Binormal> { -0.033292 0.086357 -0.001067 }
+      }
+      <Normal> { 0.867092 0.329661 -0.373394 }
+    }
+    <Vertex> 341 {
+      -0.987751245499 0.589170277119 0.727677464485
+      <UV>  {
+        0.650006 0.794433
+        <Tangent> { -0.312046 0.677605 0.665942 }
+        <Binormal> { -0.763678 -0.090333 -0.265928 }
+      }
+      <Normal> { -0.061342 0.985412 -0.158574 }
+    }
+    <Vertex> 342 {
+      -1.34021735191 0.61468142271 0.536181986332
+      <UV>  {
+        0.650012 0.794439
+        <Tangent> { -0.272937 0.200516 -0.940903 }
+        <Binormal> { -0.827162 0.071699 0.255223 }
+      }
+      <Normal> { 0.016602 -0.947295 0.319926 }
+    }
+    <Vertex> 343 {
+      -1.22711062431 0.772850513458 0.79374486208
+      <UV>  {
+        0.650008 0.794446
+        <Tangent> { 0.694105 0.702783 0.155934 }
+        <Binormal> { 0.118230 -0.195442 0.354570 }
+      }
+      <Normal> { -0.908994 -0.409528 0.077364 }
+    }
+    <Vertex> 344 {
+      -1.24697840214 0.793259441853 0.480154633522
+      <UV>  {
+        0.650010 0.794439
+        <Tangent> { 0.987258 0.105761 0.118897 }
+        <Binormal> { 0.068456 -0.519512 -0.106303 }
+      }
+      <Normal> { -0.884793 -0.202460 0.419660 }
+    }
+    <Vertex> 345 {
+      -1.22711062431 0.772850513458 0.79374486208
+      <UV>  {
+        0.650008 0.794446
+        <Tangent> { 0.694105 0.702783 0.155934 }
+        <Binormal> { 0.118230 -0.195442 0.354570 }
+      }
+      <Normal> { -0.908994 -0.409528 0.077364 }
+    }
+    <Vertex> 346 {
+      -1.34021735191 0.61468142271 0.536181986332
+      <UV>  {
+        0.650012 0.794439
+        <Tangent> { -0.272937 0.200516 -0.940903 }
+        <Binormal> { -0.827162 0.071699 0.255223 }
+      }
+      <Normal> { 0.016602 -0.947295 0.319926 }
+    }
+    <Vertex> 347 {
+      -1.32661032677 0.609579205513 0.912191033363
+      <UV>  {
+        0.650021 0.794452
+        <Tangent> { 0.204932 0.858527 -0.470036 }
+        <Binormal> { -0.355594 0.014374 -0.128782 }
+      }
+      <Normal> { -0.085879 -0.988189 0.126835 }
+    }
+    <Vertex> 348 {
+      -1.22711062431 0.772850513458 0.79374486208
+      <UV>  {
+        0.650008 0.794446
+        <Tangent> { 0.694105 0.702783 0.155934 }
+        <Binormal> { 0.118230 -0.195442 0.354570 }
+      }
+      <Normal> { -0.908994 -0.409528 0.077364 }
+    }
+    <Vertex> 349 {
+      -1.10764122009 0.772850513458 0.757513582706
+      <UV>  {
+        0.650004 0.794442
+        <Tangent> { 0.777258 -0.134116 0.614722 }
+        <Binormal> { -0.315960 -0.531099 0.283630 }
+      }
+      <Normal> { -0.858333 0.513016 0.004456 }
+    }
+    <Vertex> 350 {
+      -1.24697840214 0.793259441853 0.480154633522
+      <UV>  {
+        0.650010 0.794439
+        <Tangent> { 0.987258 0.105761 0.118897 }
+        <Binormal> { 0.068456 -0.519512 -0.106303 }
+      }
+      <Normal> { -0.884793 -0.202460 0.419660 }
+    }
+    <Vertex> 351 {
+      -1.22599208355 0.385081171989 0.807944178581
+      <UV>  {
+        0.650028 0.794435
+        <Tangent> { 0.184205 0.242998 -0.952376 }
+        <Binormal> { -0.579981 -0.731210 -0.298745 }
+      }
+      <Normal> { 0.805658 -0.559008 -0.195868 }
+    }
+    <Vertex> 352 {
+      -1.32661032677 0.609579205513 0.912191033363
+      <UV>  {
+        0.650021 0.794452
+        <Tangent> { 0.204932 0.858527 -0.470036 }
+        <Binormal> { -0.355594 0.014374 -0.128782 }
+      }
+      <Normal> { -0.085879 -0.988189 0.126835 }
+    }
+    <Vertex> 353 {
+      -1.34021735191 0.61468142271 0.536181986332
+      <UV>  {
+        0.650012 0.794439
+        <Tangent> { -0.272937 0.200516 -0.940903 }
+        <Binormal> { -0.827162 0.071699 0.255223 }
+      }
+      <Normal> { 0.016602 -0.947295 0.319926 }
+    }
+    <Vertex> 354 {
+      -1.2454867363 0.512636840343 0.500786542892
+      <UV>  {
+        0.650013 0.794437
+        <Tangent> { 0.037811 -0.679233 -0.732948 }
+        <Binormal> { -0.460892 -0.661630 0.589365 }
+      }
+      <Normal> { 0.887112 -0.348857 0.302103 }
+    }
+    <Vertex> 355 {
+      -1.22599208355 0.385081171989 0.807944178581
+      <UV>  {
+        0.650028 0.794435
+        <Tangent> { 0.184205 0.242998 -0.952376 }
+        <Binormal> { -0.579981 -0.731210 -0.298745 }
+      }
+      <Normal> { 0.805658 -0.559008 -0.195868 }
+    }
+    <Vertex> 356 {
+      -1.34021735191 0.61468142271 0.536181986332
+      <UV>  {
+        0.650012 0.794439
+        <Tangent> { -0.272937 0.200516 -0.940903 }
+        <Binormal> { -0.827162 0.071699 0.255223 }
+      }
+      <Normal> { 0.016602 -0.947295 0.319926 }
+    }
+    <Vertex> 357 {
+      -1.22599208355 0.385081171989 0.807944178581
+      <UV>  {
+        0.650028 0.794435
+        <Tangent> { 0.184205 0.242998 -0.952376 }
+        <Binormal> { -0.579981 -0.731210 -0.298745 }
+      }
+      <Normal> { 0.805658 -0.559008 -0.195868 }
+    }
+    <Vertex> 358 {
+      -1.2454867363 0.512636840343 0.500786542892
+      <UV>  {
+        0.650013 0.794437
+        <Tangent> { 0.037811 -0.679233 -0.732948 }
+        <Binormal> { -0.460892 -0.661630 0.589365 }
+      }
+      <Normal> { 0.887112 -0.348857 0.302103 }
+    }
+    <Vertex> 359 {
+      -1.11062455177 0.374876707792 0.813192129135
+      <UV>  {
+        0.650029 0.794429
+        <Tangent> { 0.895287 0.341612 -0.285941 }
+        <Binormal> { -0.033292 0.086357 -0.001067 }
+      }
+      <Normal> { 0.867092 0.329661 -0.373394 }
+    }
+    <Vertex> 360 {
+      -1.10764122009 0.772850513458 0.757513582706
+      <UV>  {
+        0.650004 0.794442
+        <Tangent> { 0.777258 -0.134116 0.614722 }
+        <Binormal> { -0.315960 -0.531099 0.283630 }
+      }
+      <Normal> { -0.858333 0.513016 0.004456 }
+    }
+    <Vertex> 361 {
+      -0.987751245499 0.589170277119 0.727677464485
+      <UV>  {
+        0.650006 0.794433
+        <Tangent> { -0.312046 0.677605 0.665942 }
+        <Binormal> { -0.763678 -0.090333 -0.265928 }
+      }
+      <Normal> { -0.061342 0.985412 -0.158574 }
+    }
+    <Vertex> 362 {
+      -1.14233851433 0.772850513458 0.46946310997
+      <UV>  {
+        0.650009 0.794439
+        <Tangent> { -0.098031 -0.593124 0.799121 }
+        <Binormal> { -0.631669 -0.559348 -0.492649 }
+      }
+      <Normal> { -0.718314 0.679373 0.149663 }
+    }
+    <Vertex> 363 {
+      -1.14233851433 0.772850513458 0.46946310997
+      <UV>  {
+        0.650009 0.794439
+        <Tangent> { -0.098031 -0.593124 0.799121 }
+        <Binormal> { -0.631669 -0.559348 -0.492649 }
+      }
+      <Normal> { -0.718314 0.679373 0.149663 }
+    }
+    <Vertex> 364 {
+      -1.24697840214 0.793259441853 0.480154633522
+      <UV>  {
+        0.650010 0.794439
+        <Tangent> { 0.987258 0.105761 0.118897 }
+        <Binormal> { 0.068456 -0.519512 -0.106303 }
+      }
+      <Normal> { -0.884793 -0.202460 0.419660 }
+    }
+    <Vertex> 365 {
+      -1.10764122009 0.772850513458 0.757513582706
+      <UV>  {
+        0.650004 0.794442
+        <Tangent> { 0.777258 -0.134116 0.614722 }
+        <Binormal> { -0.315960 -0.531099 0.283630 }
+      }
+      <Normal> { -0.858333 0.513016 0.004456 }
+    }
+    <Vertex> 366 {
+      -1.14830517769 0.502432405949 0.514491260052
+      <UV>  {
+        0.650014 0.794436
+        <Tangent> { 0.932289 0.333662 -0.139667 }
+        <Binormal> { 0.117225 -0.356164 -0.068381 }
+      }
+      <Normal> { 0.934446 0.261086 0.242042 }
+    }
+    <Vertex> 367 {
+      -1.11062455177 0.374876707792 0.813192129135
+      <UV>  {
+        0.650029 0.794429
+        <Tangent> { 0.895287 0.341612 -0.285941 }
+        <Binormal> { -0.033292 0.086357 -0.001067 }
+      }
+      <Normal> { 0.867092 0.329661 -0.373394 }
+    }
+    <Vertex> 368 {
+      -1.2454867363 0.512636840343 0.500786542892
+      <UV>  {
+        0.650013 0.794437
+        <Tangent> { 0.037811 -0.679233 -0.732948 }
+        <Binormal> { -0.460892 -0.661630 0.589365 }
+      }
+      <Normal> { 0.887112 -0.348857 0.302103 }
+    }
+    <Vertex> 369 {
+      -1.14233851433 0.772850513458 0.46946310997
+      <UV>  {
+        0.650009 0.794439
+        <Tangent> { -0.098031 -0.593124 0.799121 }
+        <Binormal> { -0.631669 -0.559348 -0.492649 }
+      }
+      <Normal> { -0.718314 0.679373 0.149663 }
+    }
+    <Vertex> 370 {
+      -0.987751245499 0.589170277119 0.727677464485
+      <UV>  {
+        0.650006 0.794433
+        <Tangent> { -0.312046 0.677605 0.665942 }
+        <Binormal> { -0.763678 -0.090333 -0.265928 }
+      }
+      <Normal> { -0.061342 0.985412 -0.158574 }
+    }
+    <Vertex> 371 {
+      -1.01207470894 0.594272494316 0.461548179388
+      <UV>  {
+        0.650009 0.794437
+        <Tangent> { 0.026867 0.947363 0.319033 }
+        <Binormal> { -0.227259 0.090500 -0.249599 }
+      }
+      <Normal> { 0.290506 0.953398 0.081179 }
+    }
+    <Vertex> 372 {
+      -1.01207470894 0.594272494316 0.461548179388
+      <UV>  {
+        0.650009 0.794437
+        <Tangent> { 0.026867 0.947363 0.319033 }
+        <Binormal> { -0.227259 0.090500 -0.249599 }
+      }
+      <Normal> { 0.290506 0.953398 0.081179 }
+    }
+    <Vertex> 373 {
+      -0.987751245499 0.589170277119 0.727677464485
+      <UV>  {
+        0.650006 0.794433
+        <Tangent> { -0.312046 0.677605 0.665942 }
+        <Binormal> { -0.763678 -0.090333 -0.265928 }
+      }
+      <Normal> { -0.061342 0.985412 -0.158574 }
+    }
+    <Vertex> 374 {
+      -1.11062455177 0.374876707792 0.813192129135
+      <UV>  {
+        0.650029 0.794429
+        <Tangent> { 0.895287 0.341612 -0.285941 }
+        <Binormal> { -0.033292 0.086357 -0.001067 }
+      }
+      <Normal> { 0.867092 0.329661 -0.373394 }
+    }
+    <Vertex> 375 {
+      -1.11062455177 0.374876707792 0.813192129135
+      <UV>  {
+        0.650029 0.794429
+        <Tangent> { 0.895287 0.341612 -0.285941 }
+        <Binormal> { -0.033292 0.086357 -0.001067 }
+      }
+      <Normal> { 0.867092 0.329661 -0.373394 }
+    }
+    <Vertex> 376 {
+      -1.14830517769 0.502432405949 0.514491260052
+      <UV>  {
+        0.650014 0.794436
+        <Tangent> { 0.932289 0.333662 -0.139667 }
+        <Binormal> { 0.117225 -0.356164 -0.068381 }
+      }
+      <Normal> { 0.934446 0.261086 0.242042 }
+    }
+    <Vertex> 377 {
+      -1.01207470894 0.594272494316 0.461548179388
+      <UV>  {
+        0.650009 0.794437
+        <Tangent> { 0.026867 0.947363 0.319033 }
+        <Binormal> { -0.227259 0.090500 -0.249599 }
+      }
+      <Normal> { 0.290506 0.953398 0.081179 }
+    }
+    <Vertex> 378 {
+      -1.31998872757 0.275724738836 1.52523934841
+      <UV>  {
+        0.651770 0.796263
+        <Tangent> { -0.489260 -0.753122 -0.439809 }
+        <Binormal> { 0.817095 -0.233236 -0.509575 }
+      }
+      <Normal> { -0.215125 0.710379 -0.670095 }
+    }
+    <Vertex> 379 {
+      -1.36201274395 0.280835330486 1.51914024353
+      <UV>  {
+        0.651770 0.796263
+        <Tangent> { -0.810869 0.049175 0.583158 }
+        <Binormal> { 0.057356 -0.975795 0.162038 }
+      }
+      <Normal> { -0.467452 -0.171484 -0.867214 }
+    }
+    <Vertex> 380 {
+      -1.37487781048 0.459241390228 1.74789607525
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { -0.847001 0.404036 -0.345463 }
+        <Binormal> { 0.031339 -0.146929 -0.248679 }
+      }
+      <Normal> { -0.659200 0.608051 -0.442335 }
+    }
+    <Vertex> 381 {
+      -1.31998872757 0.275724738836 1.52523934841
+      <UV>  {
+        0.651770 0.796263
+        <Tangent> { -0.489260 -0.753122 -0.439809 }
+        <Binormal> { 0.817095 -0.233236 -0.509575 }
+      }
+      <Normal> { -0.215125 0.710379 -0.670095 }
+    }
+    <Vertex> 382 {
+      -1.37487781048 0.459241390228 1.74789607525
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { -0.847001 0.404036 -0.345463 }
+        <Binormal> { 0.031339 -0.146929 -0.248679 }
+      }
+      <Normal> { -0.659200 0.608051 -0.442335 }
+    }
+    <Vertex> 383 {
+      -1.30133545399 0.303953230381 1.64927744865
+      <UV>  {
+        0.651771 0.796263
+        <Tangent> { -0.318923 0.751118 -0.578023 }
+        <Binormal> { 0.502697 0.059842 -0.199599 }
+      }
+      <Normal> { -0.152226 0.984375 -0.088260 }
+    }
+    <Vertex> 384 {
+      -1.36201274395 0.280835330486 1.51914024353
+      <UV>  {
+        0.651770 0.796263
+        <Tangent> { -0.810869 0.049175 0.583158 }
+        <Binormal> { 0.057356 -0.975795 0.162038 }
+      }
+      <Normal> { -0.467452 -0.171484 -0.867214 }
+    }
+    <Vertex> 385 {
+      -1.41960978508 0.451375544071 1.65302371979
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { -0.288275 -0.820500 -0.493582 }
+        <Binormal> { 0.689299 0.179977 -0.701765 }
+      }
+      <Normal> { -0.664632 0.542528 -0.513688 }
+    }
+    <Vertex> 386 {
+      -1.37487781048 0.459241390228 1.74789607525
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { -0.847001 0.404036 -0.345463 }
+        <Binormal> { 0.031339 -0.146929 -0.248679 }
+      }
+      <Normal> { -0.659200 0.608051 -0.442335 }
+    }
+    <Vertex> 387 {
+      -1.30133545399 0.303953230381 1.64927744865
+      <UV>  {
+        0.651771 0.796263
+        <Tangent> { -0.318923 0.751118 -0.578023 }
+        <Binormal> { 0.502697 0.059842 -0.199599 }
+      }
+      <Normal> { -0.152226 0.984375 -0.088260 }
+    }
+    <Vertex> 388 {
+      -1.37487781048 0.459241390228 1.74789607525
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { -0.847001 0.404036 -0.345463 }
+        <Binormal> { 0.031339 -0.146929 -0.248679 }
+      }
+      <Normal> { -0.659200 0.608051 -0.442335 }
+    }
+    <Vertex> 389 {
+      -1.40811264515 0.49376809597 1.73678743839
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { 0.209421 -0.280589 -0.936665 }
+        <Binormal> { 0.149411 0.955876 -0.252938 }
+      }
+      <Normal> { -0.966308 0.086978 -0.242103 }
+    }
+    <Vertex> 390 {
+      -1.40811264515 0.49376809597 1.73678743839
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { 0.209421 -0.280589 -0.936665 }
+        <Binormal> { 0.149411 0.955876 -0.252938 }
+      }
+      <Normal> { -0.966308 0.086978 -0.242103 }
+    }
+    <Vertex> 391 {
+      -1.35997009277 0.52386957407 1.9029147625
+      <UV>  {
+        0.651769 0.796259
+        <Tangent> { -0.097430 0.070716 0.992727 }
+        <Binormal> { -0.522119 -0.838392 0.008479 }
+      }
+      <Normal> { -0.817682 0.506455 -0.273598 }
+    }
+    <Vertex> 392 {
+      -1.30133545399 0.303953230381 1.64927744865
+      <UV>  {
+        0.651771 0.796263
+        <Tangent> { -0.318923 0.751118 -0.578023 }
+        <Binormal> { 0.502697 0.059842 -0.199599 }
+      }
+      <Normal> { -0.152226 0.984375 -0.088260 }
+    }
+    <Vertex> 393 {
+      -1.41960978508 0.451375544071 1.65302371979
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { -0.288275 -0.820500 -0.493582 }
+        <Binormal> { 0.689299 0.179977 -0.701765 }
+      }
+      <Normal> { -0.664632 0.542528 -0.513688 }
+    }
+    <Vertex> 394 {
+      -1.40811264515 0.49376809597 1.73678743839
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { 0.209421 -0.280589 -0.936665 }
+        <Binormal> { 0.149411 0.955876 -0.252938 }
+      }
+      <Normal> { -0.966308 0.086978 -0.242103 }
+    }
+    <Vertex> 395 {
+      -1.37487781048 0.459241390228 1.74789607525
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { -0.847001 0.404036 -0.345463 }
+        <Binormal> { 0.031339 -0.146929 -0.248679 }
+      }
+      <Normal> { -0.659200 0.608051 -0.442335 }
+    }
+    <Vertex> 396 {
+      -1.41960978508 0.451375544071 1.65302371979
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { -0.288275 -0.820500 -0.493582 }
+        <Binormal> { 0.689299 0.179977 -0.701765 }
+      }
+      <Normal> { -0.664632 0.542528 -0.513688 }
+    }
+    <Vertex> 397 {
+      -1.4917896986 0.450214743614 1.56674301624
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.968291 -0.066469 -0.240730 }
+    }
+    <Vertex> 398 {
+      -1.40811264515 0.49376809597 1.73678743839
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { 0.209421 -0.280589 -0.936665 }
+        <Binormal> { 0.149411 0.955876 -0.252938 }
+      }
+      <Normal> { -0.966308 0.086978 -0.242103 }
+    }
+    <Vertex> 399 {
+      -1.40811264515 0.49376809597 1.73678743839
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { 0.209421 -0.280589 -0.936665 }
+        <Binormal> { 0.149411 0.955876 -0.252938 }
+      }
+      <Normal> { -0.966308 0.086978 -0.242103 }
+    }
+    <Vertex> 400 {
+      -1.47124361992 0.488315165043 1.93457531929
+      <UV>  {
+        0.651771 0.796263
+        <Tangent> { -0.013318 0.092065 0.995664 }
+        <Binormal> { 0.746118 -0.661810 0.071175 }
+      }
+      <Normal> { -0.665304 -0.745140 0.045717 }
+    }
+    <Vertex> 401 {
+      -1.35997009277 0.52386957407 1.9029147625
+      <UV>  {
+        0.651769 0.796259
+        <Tangent> { -0.097430 0.070716 0.992727 }
+        <Binormal> { -0.522119 -0.838392 0.008479 }
+      }
+      <Normal> { -0.817682 0.506455 -0.273598 }
+    }
+    <Vertex> 402 {
+      -1.4917896986 0.450214743614 1.56674301624
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.968291 -0.066469 -0.240730 }
+    }
+    <Vertex> 403 {
+      -1.62834608555 0.413126200438 1.58132708073
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { -0.005633 0.142459 0.989785 }
+        <Binormal> { 0.835431 -0.524326 0.080220 }
+      }
+      <Normal> { -0.529588 -0.847835 -0.026276 }
+    }
+    <Vertex> 404 {
+      -1.40811264515 0.49376809597 1.73678743839
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { 0.209421 -0.280589 -0.936665 }
+        <Binormal> { 0.149411 0.955876 -0.252938 }
+      }
+      <Normal> { -0.966308 0.086978 -0.242103 }
+    }
+    <Vertex> 405 {
+      -1.40811264515 0.49376809597 1.73678743839
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { 0.209421 -0.280589 -0.936665 }
+        <Binormal> { 0.149411 0.955876 -0.252938 }
+      }
+      <Normal> { -0.966308 0.086978 -0.242103 }
+    }
+    <Vertex> 406 {
+      -1.62834608555 0.413126200438 1.58132708073
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { -0.005633 0.142459 0.989785 }
+        <Binormal> { 0.835431 -0.524326 0.080220 }
+      }
+      <Normal> { -0.529588 -0.847835 -0.026276 }
+    }
+    <Vertex> 407 {
+      -1.47124361992 0.488315165043 1.93457531929
+      <UV>  {
+        0.651771 0.796263
+        <Tangent> { -0.013318 0.092065 0.995664 }
+        <Binormal> { 0.746118 -0.661810 0.071175 }
+      }
+      <Normal> { -0.665304 -0.745140 0.045717 }
+    }
+    <Vertex> 408 {
+      -1.50119030476 0.413772165775 1.35133361816
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.572954 0.475478 -0.667531 }
+    }
+    <Vertex> 409 {
+      -1.4917896986 0.450214743614 1.56674301624
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.968291 -0.066469 -0.240730 }
+    }
+    <Vertex> 410 {
+      -1.41960978508 0.451375544071 1.65302371979
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { -0.288275 -0.820500 -0.493582 }
+        <Binormal> { 0.689299 0.179977 -0.701765 }
+      }
+      <Normal> { -0.664632 0.542528 -0.513688 }
+    }
+    <Vertex> 411 {
+      -1.50119030476 0.413772165775 1.35133361816
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.572954 0.475478 -0.667531 }
+    }
+    <Vertex> 412 {
+      -1.58194816113 0.379745304585 1.40964782238
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.353160 -0.715415 -0.602832 }
+    }
+    <Vertex> 413 {
+      -1.4917896986 0.450214743614 1.56674301624
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.968291 -0.066469 -0.240730 }
+    }
+    <Vertex> 414 {
+      -1.4917896986 0.450214743614 1.56674301624
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.968291 -0.066469 -0.240730 }
+    }
+    <Vertex> 415 {
+      -1.58194816113 0.379745304585 1.40964782238
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.353160 -0.715415 -0.602832 }
+    }
+    <Vertex> 416 {
+      -1.62834608555 0.413126200438 1.58132708073
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { -0.005633 0.142459 0.989785 }
+        <Binormal> { 0.835431 -0.524326 0.080220 }
+      }
+      <Normal> { -0.529588 -0.847835 -0.026276 }
+    }
+    <Vertex> 417 {
+      -1.38734400272 0.327904343605 1.76857662201
+      <UV>  {
+        0.651770 0.796264
+        <Tangent> { 0.263412 0.203821 0.942865 }
+        <Binormal> { 0.545439 0.774719 -0.319854 }
+      }
+      <Normal> { 0.795648 -0.598529 -0.092898 }
+    }
+    <Vertex> 418 {
+      -1.37157082558 0.230761393905 1.51753675938
+      <UV>  {
+        0.651770 0.796263
+        <Tangent> { -0.611543 -0.524761 0.592150 }
+        <Binormal> { 0.686958 -0.159813 0.567830 }
+      }
+      <Normal> { 0.462844 -0.531358 -0.709494 }
+    }
+    <Vertex> 419 {
+      -1.32954633236 0.225649893284 1.52363681793
+      <UV>  {
+        0.651770 0.796263
+        <Tangent> { -0.821426 -0.494307 0.284464 }
+        <Binormal> { 0.178655 -0.069677 0.394814 }
+      }
+      <Normal> { 0.913388 0.069002 -0.401135 }
+    }
+    <Vertex> 420 {
+      -1.3162651062 0.213619410992 1.65095174313
+      <UV>  {
+        0.651770 0.796264
+        <Tangent> { -0.434904 0.483454 -0.759691 }
+        <Binormal> { 0.450294 -0.613057 -0.647921 }
+      }
+      <Normal> { 0.796167 0.604755 -0.018891 }
+    }
+    <Vertex> 421 {
+      -1.38734400272 0.327904343605 1.76857662201
+      <UV>  {
+        0.651770 0.796264
+        <Tangent> { 0.263412 0.203821 0.942865 }
+        <Binormal> { 0.545439 0.774719 -0.319854 }
+      }
+      <Normal> { 0.795648 -0.598529 -0.092898 }
+    }
+    <Vertex> 422 {
+      -1.32954633236 0.225649893284 1.52363681793
+      <UV>  {
+        0.651770 0.796263
+        <Tangent> { -0.821426 -0.494307 0.284464 }
+        <Binormal> { 0.178655 -0.069677 0.394814 }
+      }
+      <Normal> { 0.913388 0.069002 -0.401135 }
+    }
+    <Vertex> 423 {
+      -1.38734400272 0.327904343605 1.76857662201
+      <UV>  {
+        0.651770 0.796264
+        <Tangent> { 0.263412 0.203821 0.942865 }
+        <Binormal> { 0.545439 0.774719 -0.319854 }
+      }
+      <Normal> { 0.795648 -0.598529 -0.092898 }
+    }
+    <Vertex> 424 {
+      -1.43453919888 0.361041367054 1.65469765663
+      <UV>  {
+        0.651770 0.796263
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.863002 0.105869 -0.493973 }
+    }
+    <Vertex> 425 {
+      -1.37157082558 0.230761393905 1.51753675938
+      <UV>  {
+        0.651770 0.796263
+        <Tangent> { -0.611543 -0.524761 0.592150 }
+        <Binormal> { 0.686958 -0.159813 0.567830 }
+      }
+      <Normal> { 0.462844 -0.531358 -0.709494 }
+    }
+    <Vertex> 426 {
+      -1.40563189983 0.287208288908 1.81292688847
+      <UV>  {
+        0.651770 0.796264
+        <Tangent> { 0.285889 -0.092352 0.953772 }
+        <Binormal> { -0.261574 0.950023 0.170395 }
+      }
+      <Normal> { 0.921842 0.298196 -0.247444 }
+    }
+    <Vertex> 427 {
+      -1.38734400272 0.327904343605 1.76857662201
+      <UV>  {
+        0.651770 0.796264
+        <Tangent> { 0.263412 0.203821 0.942865 }
+        <Binormal> { 0.545439 0.774719 -0.319854 }
+      }
+      <Normal> { 0.795648 -0.598529 -0.092898 }
+    }
+    <Vertex> 428 {
+      -1.3162651062 0.213619410992 1.65095174313
+      <UV>  {
+        0.651770 0.796264
+        <Tangent> { -0.434904 0.483454 -0.759691 }
+        <Binormal> { 0.450294 -0.613057 -0.647921 }
+      }
+      <Normal> { 0.796167 0.604755 -0.018891 }
+    }
+    <Vertex> 429 {
+      -1.3162651062 0.213619410992 1.65095174313
+      <UV>  {
+        0.651770 0.796264
+        <Tangent> { -0.434904 0.483454 -0.759691 }
+        <Binormal> { 0.450294 -0.613057 -0.647921 }
+      }
+      <Normal> { 0.796167 0.604755 -0.018891 }
+    }
+    <Vertex> 430 {
+      -1.30844664574 0.410751223564 1.95533704758
+      <UV>  {
+        0.651770 0.796259
+        <Tangent> { 0.291372 -0.137634 -0.946657 }
+        <Binormal> { 0.914537 -0.232726 0.315322 }
+      }
+      <Normal> { 0.292825 0.943876 -0.152654 }
+    }
+    <Vertex> 431 {
+      -1.40563189983 0.287208288908 1.81292688847
+      <UV>  {
+        0.651770 0.796264
+        <Tangent> { 0.285889 -0.092352 0.953772 }
+        <Binormal> { -0.261574 0.950023 0.170395 }
+      }
+      <Normal> { 0.921842 0.298196 -0.247444 }
+    }
+    <Vertex> 432 {
+      -1.38734400272 0.327904343605 1.76857662201
+      <UV>  {
+        0.651770 0.796264
+        <Tangent> { 0.263412 0.203821 0.942865 }
+        <Binormal> { 0.545439 0.774719 -0.319854 }
+      }
+      <Normal> { 0.795648 -0.598529 -0.092898 }
+    }
+    <Vertex> 433 {
+      -1.40563189983 0.287208288908 1.81292688847
+      <UV>  {
+        0.651770 0.796264
+        <Tangent> { 0.285889 -0.092352 0.953772 }
+        <Binormal> { -0.261574 0.950023 0.170395 }
+      }
+      <Normal> { 0.921842 0.298196 -0.247444 }
+    }
+    <Vertex> 434 {
+      -1.43453919888 0.361041367054 1.65469765663
+      <UV>  {
+        0.651770 0.796263
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.863002 0.105869 -0.493973 }
+    }
+    <Vertex> 435 {
+      -1.40563189983 0.287208288908 1.81292688847
+      <UV>  {
+        0.651770 0.796264
+        <Tangent> { 0.285889 -0.092352 0.953772 }
+        <Binormal> { -0.261574 0.950023 0.170395 }
+      }
+      <Normal> { 0.921842 0.298196 -0.247444 }
+    }
+    <Vertex> 436 {
+      -1.58230996132 0.327340275049 1.63045990467
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { -0.458557 0.344200 0.819300 }
+        <Binormal> { -0.226058 0.812005 -0.467658 }
+      }
+      <Normal> { 0.948241 0.308084 0.076571 }
+    }
+    <Vertex> 437 {
+      -1.43453919888 0.361041367054 1.65469765663
+      <UV>  {
+        0.651770 0.796263
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.863002 0.105869 -0.493973 }
+    }
+    <Vertex> 438 {
+      -1.30844664574 0.410751223564 1.95533704758
+      <UV>  {
+        0.651770 0.796259
+        <Tangent> { 0.291372 -0.137634 -0.946657 }
+        <Binormal> { 0.914537 -0.232726 0.315322 }
+      }
+      <Normal> { 0.292825 0.943876 -0.152654 }
+    }
+    <Vertex> 439 {
+      -1.41605627537 0.322669476271 2.01843118668
+      <UV>  {
+        0.651775 0.796269
+        <Tangent> { 0.355598 0.407883 0.840941 }
+        <Binormal> { 0.598005 0.537067 -0.513365 }
+      }
+      <Normal> { 0.767907 -0.562853 0.305673 }
+    }
+    <Vertex> 440 {
+      -1.40563189983 0.287208288908 1.81292688847
+      <UV>  {
+        0.651770 0.796264
+        <Tangent> { 0.285889 -0.092352 0.953772 }
+        <Binormal> { -0.261574 0.950023 0.170395 }
+      }
+      <Normal> { 0.921842 0.298196 -0.247444 }
+    }
+    <Vertex> 441 {
+      -1.40563189983 0.287208288908 1.81292688847
+      <UV>  {
+        0.651770 0.796264
+        <Tangent> { 0.285889 -0.092352 0.953772 }
+        <Binormal> { -0.261574 0.950023 0.170395 }
+      }
+      <Normal> { 0.921842 0.298196 -0.247444 }
+    }
+    <Vertex> 442 {
+      -1.63704669476 0.275429964066 1.598269701
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { -0.362182 0.262536 0.894371 }
+        <Binormal> { 0.337229 0.825787 -0.105841 }
+      }
+      <Normal> { 0.925504 -0.378643 -0.005402 }
+    }
+    <Vertex> 443 {
+      -1.58230996132 0.327340275049 1.63045990467
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { -0.458557 0.344200 0.819300 }
+        <Binormal> { -0.226058 0.812005 -0.467658 }
+      }
+      <Normal> { 0.948241 0.308084 0.076571 }
+    }
+    <Vertex> 444 {
+      -1.41605627537 0.322669476271 2.01843118668
+      <UV>  {
+        0.651775 0.796269
+        <Tangent> { 0.355598 0.407883 0.840941 }
+        <Binormal> { 0.598005 0.537067 -0.513365 }
+      }
+      <Normal> { 0.767907 -0.562853 0.305673 }
+    }
+    <Vertex> 445 {
+      -1.63704669476 0.275429964066 1.598269701
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { -0.362182 0.262536 0.894371 }
+        <Binormal> { 0.337229 0.825787 -0.105841 }
+      }
+      <Normal> { 0.925504 -0.378643 -0.005402 }
+    }
+    <Vertex> 446 {
+      -1.40563189983 0.287208288908 1.81292688847
+      <UV>  {
+        0.651770 0.796264
+        <Tangent> { 0.285889 -0.092352 0.953772 }
+        <Binormal> { -0.261574 0.950023 0.170395 }
+      }
+      <Normal> { 0.921842 0.298196 -0.247444 }
+    }
+    <Vertex> 447 {
+      -1.43453919888 0.361041367054 1.65469765663
+      <UV>  {
+        0.651770 0.796263
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.863002 0.105869 -0.493973 }
+    }
+    <Vertex> 448 {
+      -1.58230996132 0.327340275049 1.63045990467
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { -0.458557 0.344200 0.819300 }
+        <Binormal> { -0.226058 0.812005 -0.467658 }
+      }
+      <Normal> { 0.948241 0.308084 0.076571 }
+    }
+    <Vertex> 449 {
+      -1.50970673561 0.177089229226 1.41614663601
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { -0.540613 -0.060222 0.839113 }
+        <Binormal> { 0.147790 0.569351 0.136077 }
+      }
+      <Normal> { 0.916898 -0.149571 -0.370006 }
+    }
+    <Vertex> 450 {
+      -1.58230996132 0.327340275049 1.63045990467
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { -0.458557 0.344200 0.819300 }
+        <Binormal> { -0.226058 0.812005 -0.467658 }
+      }
+      <Normal> { 0.948241 0.308084 0.076571 }
+    }
+    <Vertex> 451 {
+      -1.58728122711 0.231529608369 1.45023477077
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { -0.343695 0.067613 0.936644 }
+        <Binormal> { 0.709964 0.502040 0.224276 }
+      }
+      <Normal> { 0.606281 -0.771813 -0.191534 }
+    }
+    <Vertex> 452 {
+      -1.50970673561 0.177089229226 1.41614663601
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { -0.540613 -0.060222 0.839113 }
+        <Binormal> { 0.147790 0.569351 0.136077 }
+      }
+      <Normal> { 0.916898 -0.149571 -0.370006 }
+    }
+    <Vertex> 453 {
+      -1.63704669476 0.275429964066 1.598269701
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { -0.362182 0.262536 0.894371 }
+        <Binormal> { 0.337229 0.825787 -0.105841 }
+      }
+      <Normal> { 0.925504 -0.378643 -0.005402 }
+    }
+    <Vertex> 454 {
+      -1.58728122711 0.231529608369 1.45023477077
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { -0.343695 0.067613 0.936644 }
+        <Binormal> { 0.709964 0.502040 0.224276 }
+      }
+      <Normal> { 0.606281 -0.771813 -0.191534 }
+    }
+    <Vertex> 455 {
+      -1.58230996132 0.327340275049 1.63045990467
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { -0.458557 0.344200 0.819300 }
+        <Binormal> { -0.226058 0.812005 -0.467658 }
+      }
+      <Normal> { 0.948241 0.308084 0.076571 }
+    }
+    <Vertex> 456 {
+      -1.41605627537 0.322669476271 2.01843118668
+      <UV>  {
+        0.651775 0.796269
+        <Tangent> { 0.355598 0.407883 0.840941 }
+        <Binormal> { 0.598005 0.537067 -0.513365 }
+      }
+      <Normal> { 0.767907 -0.562853 0.305673 }
+    }
+    <Vertex> 457 {
+      -1.47124361992 0.488315165043 1.93457531929
+      <UV>  {
+        0.651771 0.796263
+        <Tangent> { -0.013318 0.092065 0.995664 }
+        <Binormal> { 0.746118 -0.661810 0.071175 }
+      }
+      <Normal> { -0.665304 -0.745140 0.045717 }
+    }
+    <Vertex> 458 {
+      -1.62834608555 0.413126200438 1.58132708073
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { -0.005633 0.142459 0.989785 }
+        <Binormal> { 0.835431 -0.524326 0.080220 }
+      }
+      <Normal> { -0.529588 -0.847835 -0.026276 }
+    }
+    <Vertex> 459 {
+      -1.62834608555 0.413126200438 1.58132708073
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { -0.005633 0.142459 0.989785 }
+        <Binormal> { 0.835431 -0.524326 0.080220 }
+      }
+      <Normal> { -0.529588 -0.847835 -0.026276 }
+    }
+    <Vertex> 460 {
+      -1.63704669476 0.275429964066 1.598269701
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { -0.362182 0.262536 0.894371 }
+        <Binormal> { 0.337229 0.825787 -0.105841 }
+      }
+      <Normal> { 0.925504 -0.378643 -0.005402 }
+    }
+    <Vertex> 461 {
+      -1.41605627537 0.322669476271 2.01843118668
+      <UV>  {
+        0.651775 0.796269
+        <Tangent> { 0.355598 0.407883 0.840941 }
+        <Binormal> { 0.598005 0.537067 -0.513365 }
+      }
+      <Normal> { 0.767907 -0.562853 0.305673 }
+    }
+    <Vertex> 462 {
+      -1.58194816113 0.379745304585 1.40964782238
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.353160 -0.715415 -0.602832 }
+    }
+    <Vertex> 463 {
+      -1.58728122711 0.231529608369 1.45023477077
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { -0.343695 0.067613 0.936644 }
+        <Binormal> { 0.709964 0.502040 0.224276 }
+      }
+      <Normal> { 0.606281 -0.771813 -0.191534 }
+    }
+    <Vertex> 464 {
+      -1.62834608555 0.413126200438 1.58132708073
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { -0.005633 0.142459 0.989785 }
+        <Binormal> { 0.835431 -0.524326 0.080220 }
+      }
+      <Normal> { -0.529588 -0.847835 -0.026276 }
+    }
+    <Vertex> 465 {
+      -1.62834608555 0.413126200438 1.58132708073
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { -0.005633 0.142459 0.989785 }
+        <Binormal> { 0.835431 -0.524326 0.080220 }
+      }
+      <Normal> { -0.529588 -0.847835 -0.026276 }
+    }
+    <Vertex> 466 {
+      -1.58728122711 0.231529608369 1.45023477077
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { -0.343695 0.067613 0.936644 }
+        <Binormal> { 0.709964 0.502040 0.224276 }
+      }
+      <Normal> { 0.606281 -0.771813 -0.191534 }
+    }
+    <Vertex> 467 {
+      -1.63704669476 0.275429964066 1.598269701
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { -0.362182 0.262536 0.894371 }
+        <Binormal> { 0.337229 0.825787 -0.105841 }
+      }
+      <Normal> { 0.925504 -0.378643 -0.005402 }
+    }
+    <Vertex> 468 {
+      -1.35997009277 0.52386957407 1.9029147625
+      <UV>  {
+        0.651769 0.796259
+        <Tangent> { -0.097430 0.070716 0.992727 }
+        <Binormal> { -0.522119 -0.838392 0.008479 }
+      }
+      <Normal> { -0.817682 0.506455 -0.273598 }
+    }
+    <Vertex> 469 {
+      -1.30844664574 0.410751223564 1.95533704758
+      <UV>  {
+        0.651770 0.796259
+        <Tangent> { 0.291372 -0.137634 -0.946657 }
+        <Binormal> { 0.914537 -0.232726 0.315322 }
+      }
+      <Normal> { 0.292825 0.943876 -0.152654 }
+    }
+    <Vertex> 470 {
+      -1.30133545399 0.303953230381 1.64927744865
+      <UV>  {
+        0.651771 0.796263
+        <Tangent> { -0.318923 0.751118 -0.578023 }
+        <Binormal> { 0.502697 0.059842 -0.199599 }
+      }
+      <Normal> { -0.152226 0.984375 -0.088260 }
+    }
+    <Vertex> 471 {
+      -1.30133545399 0.303953230381 1.64927744865
+      <UV>  {
+        0.651771 0.796263
+        <Tangent> { -0.318923 0.751118 -0.578023 }
+        <Binormal> { 0.502697 0.059842 -0.199599 }
+      }
+      <Normal> { -0.152226 0.984375 -0.088260 }
+    }
+    <Vertex> 472 {
+      -1.30844664574 0.410751223564 1.95533704758
+      <UV>  {
+        0.651770 0.796259
+        <Tangent> { 0.291372 -0.137634 -0.946657 }
+        <Binormal> { 0.914537 -0.232726 0.315322 }
+      }
+      <Normal> { 0.292825 0.943876 -0.152654 }
+    }
+    <Vertex> 473 {
+      -1.3162651062 0.213619410992 1.65095174313
+      <UV>  {
+        0.651770 0.796264
+        <Tangent> { -0.434904 0.483454 -0.759691 }
+        <Binormal> { 0.450294 -0.613057 -0.647921 }
+      }
+      <Normal> { 0.796167 0.604755 -0.018891 }
+    }
+    <Vertex> 474 {
+      -1.3162651062 0.213619410992 1.65095174313
+      <UV>  {
+        0.651770 0.796264
+        <Tangent> { -0.434904 0.483454 -0.759691 }
+        <Binormal> { 0.450294 -0.613057 -0.647921 }
+      }
+      <Normal> { 0.796167 0.604755 -0.018891 }
+    }
+    <Vertex> 475 {
+      -1.31998872757 0.275724738836 1.52523934841
+      <UV>  {
+        0.651770 0.796263
+        <Tangent> { -0.489260 -0.753122 -0.439809 }
+        <Binormal> { 0.817095 -0.233236 -0.509575 }
+      }
+      <Normal> { -0.215125 0.710379 -0.670095 }
+    }
+    <Vertex> 476 {
+      -1.30133545399 0.303953230381 1.64927744865
+      <UV>  {
+        0.651771 0.796263
+        <Tangent> { -0.318923 0.751118 -0.578023 }
+        <Binormal> { 0.502697 0.059842 -0.199599 }
+      }
+      <Normal> { -0.152226 0.984375 -0.088260 }
+    }
+    <Vertex> 477 {
+      -1.31998872757 0.275724738836 1.52523934841
+      <UV>  {
+        0.651770 0.796263
+        <Tangent> { -0.489260 -0.753122 -0.439809 }
+        <Binormal> { 0.817095 -0.233236 -0.509575 }
+      }
+      <Normal> { -0.215125 0.710379 -0.670095 }
+    }
+    <Vertex> 478 {
+      -1.3162651062 0.213619410992 1.65095174313
+      <UV>  {
+        0.651770 0.796264
+        <Tangent> { -0.434904 0.483454 -0.759691 }
+        <Binormal> { 0.450294 -0.613057 -0.647921 }
+      }
+      <Normal> { 0.796167 0.604755 -0.018891 }
+    }
+    <Vertex> 479 {
+      -1.32954633236 0.225649893284 1.52363681793
+      <UV>  {
+        0.651770 0.796263
+        <Tangent> { -0.821426 -0.494307 0.284464 }
+        <Binormal> { 0.178655 -0.069677 0.394814 }
+      }
+      <Normal> { 0.913388 0.069002 -0.401135 }
+    }
+    <Vertex> 480 {
+      -1.37157082558 0.230761393905 1.51753675938
+      <UV>  {
+        0.651770 0.796263
+        <Tangent> { -0.611543 -0.524761 0.592150 }
+        <Binormal> { 0.686958 -0.159813 0.567830 }
+      }
+      <Normal> { 0.462844 -0.531358 -0.709494 }
+    }
+    <Vertex> 481 {
+      -1.36201274395 0.280835330486 1.51914024353
+      <UV>  {
+        0.651770 0.796263
+        <Tangent> { -0.810869 0.049175 0.583158 }
+        <Binormal> { 0.057356 -0.975795 0.162038 }
+      }
+      <Normal> { -0.467452 -0.171484 -0.867214 }
+    }
+    <Vertex> 482 {
+      -1.31998872757 0.275724738836 1.52523934841
+      <UV>  {
+        0.651770 0.796263
+        <Tangent> { -0.489260 -0.753122 -0.439809 }
+        <Binormal> { 0.817095 -0.233236 -0.509575 }
+      }
+      <Normal> { -0.215125 0.710379 -0.670095 }
+    }
+    <Vertex> 483 {
+      -1.32954633236 0.225649893284 1.52363681793
+      <UV>  {
+        0.651770 0.796263
+        <Tangent> { -0.821426 -0.494307 0.284464 }
+        <Binormal> { 0.178655 -0.069677 0.394814 }
+      }
+      <Normal> { 0.913388 0.069002 -0.401135 }
+    }
+    <Vertex> 484 {
+      -1.37157082558 0.230761393905 1.51753675938
+      <UV>  {
+        0.651770 0.796263
+        <Tangent> { -0.611543 -0.524761 0.592150 }
+        <Binormal> { 0.686958 -0.159813 0.567830 }
+      }
+      <Normal> { 0.462844 -0.531358 -0.709494 }
+    }
+    <Vertex> 485 {
+      -1.31998872757 0.275724738836 1.52523934841
+      <UV>  {
+        0.651770 0.796263
+        <Tangent> { -0.489260 -0.753122 -0.439809 }
+        <Binormal> { 0.817095 -0.233236 -0.509575 }
+      }
+      <Normal> { -0.215125 0.710379 -0.670095 }
+    }
+    <Vertex> 486 {
+      -1.36201274395 0.280835330486 1.51914024353
+      <UV>  {
+        0.651770 0.796263
+        <Tangent> { -0.810869 0.049175 0.583158 }
+        <Binormal> { 0.057356 -0.975795 0.162038 }
+      }
+      <Normal> { -0.467452 -0.171484 -0.867214 }
+    }
+    <Vertex> 487 {
+      -1.43453919888 0.361041367054 1.65469765663
+      <UV>  {
+        0.651770 0.796263
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.863002 0.105869 -0.493973 }
+    }
+    <Vertex> 488 {
+      -1.41960978508 0.451375544071 1.65302371979
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { -0.288275 -0.820500 -0.493582 }
+        <Binormal> { 0.689299 0.179977 -0.701765 }
+      }
+      <Normal> { -0.664632 0.542528 -0.513688 }
+    }
+    <Vertex> 489 {
+      -1.43453919888 0.361041367054 1.65469765663
+      <UV>  {
+        0.651770 0.796263
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.863002 0.105869 -0.493973 }
+    }
+    <Vertex> 490 {
+      -1.36201274395 0.280835330486 1.51914024353
+      <UV>  {
+        0.651770 0.796263
+        <Tangent> { -0.810869 0.049175 0.583158 }
+        <Binormal> { 0.057356 -0.975795 0.162038 }
+      }
+      <Normal> { -0.467452 -0.171484 -0.867214 }
+    }
+    <Vertex> 491 {
+      -1.37157082558 0.230761393905 1.51753675938
+      <UV>  {
+        0.651770 0.796263
+        <Tangent> { -0.611543 -0.524761 0.592150 }
+        <Binormal> { 0.686958 -0.159813 0.567830 }
+      }
+      <Normal> { 0.462844 -0.531358 -0.709494 }
+    }
+    <Vertex> 492 {
+      -1.50119030476 0.413772165775 1.35133361816
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.572954 0.475478 -0.667531 }
+    }
+    <Vertex> 493 {
+      -1.41960978508 0.451375544071 1.65302371979
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { -0.288275 -0.820500 -0.493582 }
+        <Binormal> { 0.689299 0.179977 -0.701765 }
+      }
+      <Normal> { -0.664632 0.542528 -0.513688 }
+    }
+    <Vertex> 494 {
+      -1.43453919888 0.361041367054 1.65469765663
+      <UV>  {
+        0.651770 0.796263
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.863002 0.105869 -0.493973 }
+    }
+    <Vertex> 495 {
+      -1.43453919888 0.361041367054 1.65469765663
+      <UV>  {
+        0.651770 0.796263
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.863002 0.105869 -0.493973 }
+    }
+    <Vertex> 496 {
+      -1.50970673561 0.177089229226 1.41614663601
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { -0.540613 -0.060222 0.839113 }
+        <Binormal> { 0.147790 0.569351 0.136077 }
+      }
+      <Normal> { 0.916898 -0.149571 -0.370006 }
+    }
+    <Vertex> 497 {
+      -1.50119030476 0.413772165775 1.35133361816
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.572954 0.475478 -0.667531 }
+    }
+    <Vertex> 498 {
+      -1.50970673561 0.177089229226 1.41614663601
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { -0.540613 -0.060222 0.839113 }
+        <Binormal> { 0.147790 0.569351 0.136077 }
+      }
+      <Normal> { 0.916898 -0.149571 -0.370006 }
+    }
+    <Vertex> 499 {
+      -1.58194816113 0.379745304585 1.40964782238
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.353160 -0.715415 -0.602832 }
+    }
+    <Vertex> 500 {
+      -1.50119030476 0.413772165775 1.35133361816
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.572954 0.475478 -0.667531 }
+    }
+    <Vertex> 501 {
+      -1.50970673561 0.177089229226 1.41614663601
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { -0.540613 -0.060222 0.839113 }
+        <Binormal> { 0.147790 0.569351 0.136077 }
+      }
+      <Normal> { 0.916898 -0.149571 -0.370006 }
+    }
+    <Vertex> 502 {
+      -1.58728122711 0.231529608369 1.45023477077
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { -0.343695 0.067613 0.936644 }
+        <Binormal> { 0.709964 0.502040 0.224276 }
+      }
+      <Normal> { 0.606281 -0.771813 -0.191534 }
+    }
+    <Vertex> 503 {
+      -1.58194816113 0.379745304585 1.40964782238
+      <UV>  {
+        0.651770 0.796262
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.353160 -0.715415 -0.602832 }
+    }
+    <Vertex> 504 {
+      -1.25112390518 -0.150652825832 0.284994393587
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.772881 -0.134281 0.620136 }
+    }
+    <Vertex> 505 {
+      -1.31078863144 0.02282294631 0.414554357529
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.264901 -0.166692 0.949736 }
+    }
+    <Vertex> 506 {
+      -1.33092594147 -0.196572870016 0.339524447918
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.664479 0.104282 0.739952 }
+    }
+    <Vertex> 507 {
+      -1.33092594147 -0.196572870016 0.339524447918
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.664479 0.104282 0.739952 }
+    }
+    <Vertex> 508 {
+      -1.31078863144 0.02282294631 0.414554357529
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.264901 -0.166692 0.949736 }
+    }
+    <Vertex> 509 {
+      -1.38221979141 0.0228229500353 0.475781112909
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.258766 -0.437239 0.861293 }
+    }
+    <Vertex> 510 {
+      -1.2039681673 -0.196572884917 0.393934935331
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.566240 -0.635029 0.525437 }
+    }
+    <Vertex> 511 {
+      -1.24445962906 0.0228229444474 0.531905651093
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.206030 -0.648946 0.732383 }
+    }
+    <Vertex> 512 {
+      -1.31078863144 0.02282294631 0.414554357529
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.264901 -0.166692 0.949736 }
+    }
+    <Vertex> 513 {
+      -1.2039681673 -0.196572884917 0.393934935331
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.566240 -0.635029 0.525437 }
+    }
+    <Vertex> 514 {
+      -1.31078863144 0.02282294631 0.414554357529
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.264901 -0.166692 0.949736 }
+    }
+    <Vertex> 515 {
+      -1.25112390518 -0.150652825832 0.284994393587
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.772881 -0.134281 0.620136 }
+    }
+    <Vertex> 516 {
+      -1.1476444006 -0.196572884917 0.422953873873
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.699728 0.167882 0.694388 }
+    }
+    <Vertex> 517 {
+      -1.1424151659 0.0228229388595 0.572723448277
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.234596 -0.094821 0.967437 }
+    }
+    <Vertex> 518 {
+      -1.2039681673 -0.196572884917 0.393934935331
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.566240 -0.635029 0.525437 }
+    }
+    <Vertex> 519 {
+      -1.1424151659 0.0228229388595 0.572723448277
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.234596 -0.094821 0.967437 }
+    }
+    <Vertex> 520 {
+      -1.24445962906 0.0228229444474 0.531905651093
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.206030 -0.648946 0.732383 }
+    }
+    <Vertex> 521 {
+      -1.2039681673 -0.196572884917 0.393934935331
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.566240 -0.635029 0.525437 }
+    }
+    <Vertex> 522 {
+      -1.38221979141 0.0228229500353 0.475781112909
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.258766 -0.437239 0.861293 }
+    }
+    <Vertex> 523 {
+      -1.35902810097 -0.196572870016 0.254739761353
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.540269 -0.819147 0.192450 }
+    }
+    <Vertex> 524 {
+      -1.33092594147 -0.196572870016 0.339524447918
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.664479 0.104282 0.739952 }
+    }
+    <Vertex> 525 {
+      -1.38221979141 0.0228229500353 0.475781112909
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.258766 -0.437239 0.861293 }
+    }
+    <Vertex> 526 {
+      -1.47916221619 0.0228229537606 0.343123167753
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.265297 -0.910672 0.316660 }
+    }
+    <Vertex> 527 {
+      -1.35902810097 -0.196572870016 0.254739761353
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.540269 -0.819147 0.192450 }
+    }
+    <Vertex> 528 {
+      -1.3662828207 -0.196572870016 0.0951356887817
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.461959 -0.502152 -0.731010 }
+    }
+    <Vertex> 529 {
+      -1.35902810097 -0.196572870016 0.254739761353
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.540269 -0.819147 0.192450 }
+    }
+    <Vertex> 530 {
+      -1.48936665058 0.0228229556233 0.118625126779
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.900106 -0.020449 0.435114 }
+        <Binormal> { 0.393475 0.466754 -0.792034 }
+      }
+      <Normal> { 0.186895 -0.884121 -0.428175 }
+    }
+    <Vertex> 531 {
+      -1.35902810097 -0.196572870016 0.254739761353
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.540269 -0.819147 0.192450 }
+    }
+    <Vertex> 532 {
+      -1.47916221619 0.0228229537606 0.343123167753
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.265297 -0.910672 0.316660 }
+    }
+    <Vertex> 533 {
+      -1.48936665058 0.0228229556233 0.118625126779
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.900106 -0.020449 0.435114 }
+        <Binormal> { 0.393475 0.466754 -0.792034 }
+      }
+      <Normal> { 0.186895 -0.884121 -0.428175 }
+    }
+    <Vertex> 534 {
+      -1.11523723602 -0.196572884917 0.393934935331
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.545671 0.759880 0.353191 }
+    }
+    <Vertex> 535 {
+      -1.07608616352 0.0228229369968 0.531905651093
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.192785 0.697226 0.690390 }
+    }
+    <Vertex> 536 {
+      -1.1476444006 -0.196572884917 0.422953873873
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.699728 0.167882 0.694388 }
+    }
+    <Vertex> 537 {
+      -1.07608616352 0.0228229369968 0.531905651093
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.192785 0.697226 0.690390 }
+    }
+    <Vertex> 538 {
+      -1.1424151659 0.0228229388595 0.572723448277
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.234596 -0.094821 0.967437 }
+    }
+    <Vertex> 539 {
+      -1.1476444006 -0.196572884917 0.422953873873
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.699728 0.167882 0.694388 }
+    }
+    <Vertex> 540 {
+      -1.11523723602 -0.196572884917 0.393934935331
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.545671 0.759880 0.353191 }
+    }
+    <Vertex> 541 {
+      -1.02506446838 0.0228229351342 0.414554357529
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.255104 0.208258 0.944182 }
+    }
+    <Vertex> 542 {
+      -1.07608616352 0.0228229369968 0.531905651093
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.192785 0.697226 0.690390 }
+    }
+    <Vertex> 543 {
+      -1.11523723602 -0.196572884917 0.393934935331
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.545671 0.759880 0.353191 }
+    }
+    <Vertex> 544 {
+      -1.07896363735 -0.150652825832 0.284994393587
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.833491 0.097690 0.543779 }
+    }
+    <Vertex> 545 {
+      -1.02506446838 0.0228229351342 0.414554357529
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.255104 0.208258 0.944182 }
+    }
+    <Vertex> 546 {
+      -1.07896363735 -0.150652825832 0.284994393587
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.833491 0.097690 0.543779 }
+    }
+    <Vertex> 547 {
+      -0.988279461861 -0.196572884917 0.361288636923
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.672689 -0.125767 0.729148 }
+    }
+    <Vertex> 548 {
+      -1.02506446838 0.0228229351342 0.414554357529
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.255104 0.208258 0.944182 }
+    }
+    <Vertex> 549 {
+      -0.988279461861 -0.196572884917 0.361288636923
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.672689 -0.125767 0.729148 }
+    }
+    <Vertex> 550 {
+      -0.94342815876 0.0228229314089 0.485985577106
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.241340 0.353679 0.903684 }
+    }
+    <Vertex> 551 {
+      -1.02506446838 0.0228229351342 0.414554357529
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.255104 0.208258 0.944182 }
+    }
+    <Vertex> 552 {
+      -0.94342815876 0.0228229314089 0.485985577106
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.241340 0.353679 0.903684 }
+    }
+    <Vertex> 553 {
+      -0.988279461861 -0.196572884917 0.361288636923
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.672689 -0.125767 0.729148 }
+    }
+    <Vertex> 554 {
+      -0.958024859428 -0.196572884917 0.281486600637
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.526048 0.821925 0.218299 }
+    }
+    <Vertex> 555 {
+      -0.8362814188 0.0228229258209 0.373736530542
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.288461 0.883267 0.369579 }
+    }
+    <Vertex> 556 {
+      -0.94342815876 0.0228229314089 0.485985577106
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.241340 0.353679 0.903684 }
+    }
+    <Vertex> 557 {
+      -0.958024859428 -0.196572884917 0.281486600637
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.526048 0.821925 0.218299 }
+    }
+    <Vertex> 558 {
+      -0.958024859428 -0.196572884917 0.281486600637
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.526048 0.821925 0.218299 }
+    }
+    <Vertex> 559 {
+      -0.950770139694 -0.196572884917 0.100118331611
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.426283 0.486038 -0.762871 }
+    }
+    <Vertex> 560 {
+      -0.826076924801 0.0228229258209 0.118625126779
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.214484 0.875729 -0.432508 }
+    }
+    <Vertex> 561 {
+      -0.958024859428 -0.196572884917 0.281486600637
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.526048 0.821925 0.218299 }
+    }
+    <Vertex> 562 {
+      -0.826076924801 0.0228229258209 0.118625126779
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.214484 0.875729 -0.432508 }
+    }
+    <Vertex> 563 {
+      -0.8362814188 0.0228229258209 0.373736530542
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.288461 0.883267 0.369579 }
+    }
+    <Vertex> 564 {
+      -1.35736322403 0.242218777537 0.455372184515
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.216885 -0.936218 0.276507 }
+        <Binormal> { -0.950187 -0.263229 -0.145957 }
+      }
+      <Normal> { -0.191900 0.155400 0.969024 }
+    }
+    <Vertex> 565 {
+      -1.31078863144 0.02282294631 0.414554357529
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.264901 -0.166692 0.949736 }
+    }
+    <Vertex> 566 {
+      -1.29468786716 0.242218777537 0.397329360247
+      <UV>  {
+        0.650012 0.794437
+        <Tangent> { 0.324790 -0.703698 0.631918 }
+        <Binormal> { -0.548258 -0.451346 -0.220824 }
+      }
+      <Normal> { -0.223487 -0.195685 0.954833 }
+    }
+    <Vertex> 567 {
+      -1.38221979141 0.0228229500353 0.475781112909
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.258766 -0.437239 0.861293 }
+    }
+    <Vertex> 568 {
+      -1.31078863144 0.02282294631 0.414554357529
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.264901 -0.166692 0.949736 }
+    }
+    <Vertex> 569 {
+      -1.35736322403 0.242218777537 0.455372184515
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.216885 -0.936218 0.276507 }
+        <Binormal> { -0.950187 -0.263229 -0.145957 }
+      }
+      <Normal> { -0.191900 0.155400 0.969024 }
+    }
+    <Vertex> 570 {
+      -1.31078863144 0.02282294631 0.414554357529
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.264901 -0.166692 0.949736 }
+    }
+    <Vertex> 571 {
+      -1.24445962906 0.0228229444474 0.531905651093
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.206030 -0.648946 0.732383 }
+    }
+    <Vertex> 572 {
+      -1.23353338242 0.242218777537 0.505527496338
+      <UV>  {
+        0.650012 0.794437
+        <Tangent> { 0.749986 0.366654 0.550489 }
+        <Binormal> { 0.623099 -0.670890 -0.402062 }
+      }
+      <Normal> { -0.221900 -0.644551 0.731620 }
+    }
+    <Vertex> 573 {
+      -1.29468786716 0.242218777537 0.397329360247
+      <UV>  {
+        0.650012 0.794437
+        <Tangent> { 0.324790 -0.703698 0.631918 }
+        <Binormal> { -0.548258 -0.451346 -0.220824 }
+      }
+      <Normal> { -0.223487 -0.195685 0.954833 }
+    }
+    <Vertex> 574 {
+      -1.31078863144 0.02282294631 0.414554357529
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.264901 -0.166692 0.949736 }
+    }
+    <Vertex> 575 {
+      -1.23353338242 0.242218777537 0.505527496338
+      <UV>  {
+        0.650012 0.794437
+        <Tangent> { 0.749986 0.366654 0.550489 }
+        <Binormal> { 0.623099 -0.670890 -0.402062 }
+      }
+      <Normal> { -0.221900 -0.644551 0.731620 }
+    }
+    <Vertex> 576 {
+      -1.23353338242 0.242218777537 0.505527496338
+      <UV>  {
+        0.650012 0.794437
+        <Tangent> { 0.749986 0.366654 0.550489 }
+        <Binormal> { 0.623099 -0.670890 -0.402062 }
+      }
+      <Normal> { -0.221900 -0.644551 0.731620 }
+    }
+    <Vertex> 577 {
+      -1.1424151659 0.0228229388595 0.572723448277
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.234596 -0.094821 0.967437 }
+    }
+    <Vertex> 578 {
+      -1.14382576942 0.242218762636 0.543161392212
+      <UV>  {
+        0.650012 0.794437
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.249336 0.186377 0.950285 }
+    }
+    <Vertex> 579 {
+      -1.23353338242 0.242218777537 0.505527496338
+      <UV>  {
+        0.650012 0.794437
+        <Tangent> { 0.749986 0.366654 0.550489 }
+        <Binormal> { 0.623099 -0.670890 -0.402062 }
+      }
+      <Normal> { -0.221900 -0.644551 0.731620 }
+    }
+    <Vertex> 580 {
+      -1.24445962906 0.0228229444474 0.531905651093
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.206030 -0.648946 0.732383 }
+    }
+    <Vertex> 581 {
+      -1.1424151659 0.0228229388595 0.572723448277
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.234596 -0.094821 0.967437 }
+    }
+    <Vertex> 582 {
+      -1.35736322403 0.242218777537 0.455372184515
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.216885 -0.936218 0.276507 }
+        <Binormal> { -0.950187 -0.263229 -0.145957 }
+      }
+      <Normal> { -0.191900 0.155400 0.969024 }
+    }
+    <Vertex> 583 {
+      -1.47225570679 0.247321009636 0.33425655961
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.165258 -0.920560 0.353862 }
+    }
+    <Vertex> 584 {
+      -1.38221979141 0.0228229500353 0.475781112909
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.258766 -0.437239 0.861293 }
+    }
+    <Vertex> 585 {
+      -1.47225570679 0.247321009636 0.33425655961
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.165258 -0.920560 0.353862 }
+    }
+    <Vertex> 586 {
+      -1.47916221619 0.0228229537606 0.343123167753
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.265297 -0.910672 0.316660 }
+    }
+    <Vertex> 587 {
+      -1.38221979141 0.0228229500353 0.475781112909
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.258766 -0.437239 0.861293 }
+    }
+    <Vertex> 588 {
+      -1.48936665058 0.0228229556233 0.118625126779
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.900106 -0.020449 0.435114 }
+        <Binormal> { 0.393475 0.466754 -0.792034 }
+      }
+      <Normal> { 0.186895 -0.884121 -0.428175 }
+    }
+    <Vertex> 589 {
+      -1.47225570679 0.247321009636 0.33425655961
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.165258 -0.920560 0.353862 }
+    }
+    <Vertex> 590 {
+      -1.4816634655 0.247321009636 0.127270013094
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.115221 -0.983781 -0.137472 }
+        <Binormal> { 0.591881 0.091064 -0.155593 }
+      }
+      <Normal> { -0.075076 -0.709372 -0.700766 }
+    }
+    <Vertex> 591 {
+      -1.48936665058 0.0228229556233 0.118625126779
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.900106 -0.020449 0.435114 }
+        <Binormal> { 0.393475 0.466754 -0.792034 }
+      }
+      <Normal> { 0.186895 -0.884121 -0.428175 }
+    }
+    <Vertex> 592 {
+      -1.47916221619 0.0228229537606 0.343123167753
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.265297 -0.910672 0.316660 }
+    }
+    <Vertex> 593 {
+      -1.47225570679 0.247321009636 0.33425655961
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.165258 -0.920560 0.353862 }
+    }
+    <Vertex> 594 {
+      -1.14382576942 0.242218762636 0.543161392212
+      <UV>  {
+        0.650012 0.794437
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.249336 0.186377 0.950285 }
+    }
+    <Vertex> 595 {
+      -1.07608616352 0.0228229369968 0.531905651093
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.192785 0.697226 0.690390 }
+    }
+    <Vertex> 596 {
+      -1.08665120602 0.242218762636 0.505527496338
+      <UV>  {
+        0.650012 0.794437
+        <Tangent> { -0.766141 0.218842 -0.604240 }
+        <Binormal> { 0.598524 0.585406 -0.546872 }
+      }
+      <Normal> { -0.234046 0.780633 0.579485 }
+    }
+    <Vertex> 597 {
+      -1.14382576942 0.242218762636 0.543161392212
+      <UV>  {
+        0.650012 0.794437
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.249336 0.186377 0.950285 }
+    }
+    <Vertex> 598 {
+      -1.1424151659 0.0228229388595 0.572723448277
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.234596 -0.094821 0.967437 }
+    }
+    <Vertex> 599 {
+      -1.07608616352 0.0228229369968 0.531905651093
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.192785 0.697226 0.690390 }
+    }
+    <Vertex> 600 {
+      -1.07608616352 0.0228229369968 0.531905651093
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.192785 0.697226 0.690390 }
+    }
+    <Vertex> 601 {
+      -1.02506446838 0.0228229351342 0.414554357529
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.255104 0.208258 0.944182 }
+    }
+    <Vertex> 602 {
+      -1.08665120602 0.242218762636 0.505527496338
+      <UV>  {
+        0.650012 0.794437
+        <Tangent> { -0.766141 0.218842 -0.604240 }
+        <Binormal> { 0.598524 0.585406 -0.546872 }
+      }
+      <Normal> { -0.234046 0.780633 0.579485 }
+    }
+    <Vertex> 603 {
+      -1.02506446838 0.0228229351342 0.414554357529
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.255104 0.208258 0.944182 }
+    }
+    <Vertex> 604 {
+      -1.03960883617 0.242218762636 0.397329360247
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { -0.202378 0.947951 -0.245796 }
+        <Binormal> { 0.966212 0.234190 0.107652 }
+      }
+      <Normal> { -0.159612 0.215705 0.963317 }
+    }
+    <Vertex> 605 {
+      -1.08665120602 0.242218762636 0.505527496338
+      <UV>  {
+        0.650012 0.794437
+        <Tangent> { -0.766141 0.218842 -0.604240 }
+        <Binormal> { 0.598524 0.585406 -0.546872 }
+      }
+      <Normal> { -0.234046 0.780633 0.579485 }
+    }
+    <Vertex> 606 {
+      -1.02506446838 0.0228229351342 0.414554357529
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.255104 0.208258 0.944182 }
+    }
+    <Vertex> 607 {
+      -0.967922210693 0.242218762636 0.463189959526
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.694103 -0.638742 0.332009 }
+        <Binormal> { -0.551455 -0.717107 -0.226739 }
+      }
+      <Normal> { -0.132450 -0.204779 0.969787 }
+    }
+    <Vertex> 608 {
+      -1.03960883617 0.242218762636 0.397329360247
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { -0.202378 0.947951 -0.245796 }
+        <Binormal> { 0.966212 0.234190 0.107652 }
+      }
+      <Normal> { -0.159612 0.215705 0.963317 }
+    }
+    <Vertex> 609 {
+      -1.02506446838 0.0228229351342 0.414554357529
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.255104 0.208258 0.944182 }
+    }
+    <Vertex> 610 {
+      -0.94342815876 0.0228229314089 0.485985577106
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.241340 0.353679 0.903684 }
+    }
+    <Vertex> 611 {
+      -0.967922210693 0.242218762636 0.463189959526
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.694103 -0.638742 0.332009 }
+        <Binormal> { -0.551455 -0.717107 -0.226739 }
+      }
+      <Normal> { -0.132450 -0.204779 0.969787 }
+    }
+    <Vertex> 612 {
+      -0.833418250084 0.237116530538 0.35969543457
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.147221 0.904996 0.399091 }
+    }
+    <Vertex> 613 {
+      -0.967922210693 0.242218762636 0.463189959526
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.694103 -0.638742 0.332009 }
+        <Binormal> { -0.551455 -0.717107 -0.226739 }
+      }
+      <Normal> { -0.132450 -0.204779 0.969787 }
+    }
+    <Vertex> 614 {
+      -0.94342815876 0.0228229314089 0.485985577106
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.241340 0.353679 0.903684 }
+    }
+    <Vertex> 615 {
+      -0.833418250084 0.237116530538 0.35969543457
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.147221 0.904996 0.399091 }
+    }
+    <Vertex> 616 {
+      -0.94342815876 0.0228229314089 0.485985577106
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.241340 0.353679 0.903684 }
+    }
+    <Vertex> 617 {
+      -0.8362814188 0.0228229258209 0.373736530542
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.288461 0.883267 0.369579 }
+    }
+    <Vertex> 618 {
+      -0.826076924801 0.0228229258209 0.118625126779
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.214484 0.875729 -0.432508 }
+    }
+    <Vertex> 619 {
+      -0.824009776115 0.237116530538 0.124484717846
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.032807 0.703879 -0.709525 }
+    }
+    <Vertex> 620 {
+      -0.833418250084 0.237116530538 0.35969543457
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.147221 0.904996 0.399091 }
+    }
+    <Vertex> 621 {
+      -0.8362814188 0.0228229258209 0.373736530542
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.288461 0.883267 0.369579 }
+    }
+    <Vertex> 622 {
+      -0.826076924801 0.0228229258209 0.118625126779
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.214484 0.875729 -0.432508 }
+    }
+    <Vertex> 623 {
+      -0.833418250084 0.237116530538 0.35969543457
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.147221 0.904996 0.399091 }
+    }
+    <Vertex> 624 {
+      -1.3662828207 -0.196572870016 0.0951356887817
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.461959 -0.502152 -0.731010 }
+    }
+    <Vertex> 625 {
+      -1.2903803587 -0.298617452383 0.174749642611
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.993316 -0.055727 0.100803 }
+    }
+    <Vertex> 626 {
+      -1.35902810097 -0.196572870016 0.254739761353
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.540269 -0.819147 0.192450 }
+    }
+    <Vertex> 627 {
+      -1.2903803587 -0.298617452383 0.174749642611
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.993316 -0.055727 0.100803 }
+    }
+    <Vertex> 628 {
+      -1.33092594147 -0.196572870016 0.339524447918
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.664479 0.104282 0.739952 }
+    }
+    <Vertex> 629 {
+      -1.35902810097 -0.196572870016 0.254739761353
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.540269 -0.819147 0.192450 }
+    }
+    <Vertex> 630 {
+      -1.2903803587 -0.298617452383 0.174749642611
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.993316 -0.055727 0.100803 }
+    }
+    <Vertex> 631 {
+      -1.25112390518 -0.150652825832 0.284994393587
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.772881 -0.134281 0.620136 }
+    }
+    <Vertex> 632 {
+      -1.33092594147 -0.196572870016 0.339524447918
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.664479 0.104282 0.739952 }
+    }
+    <Vertex> 633 {
+      -1.25112390518 -0.150652825832 0.284994393587
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.772881 -0.134281 0.620136 }
+    }
+    <Vertex> 634 {
+      -1.18323349953 -0.349639743567 0.174749642611
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.971282 -0.004944 0.237831 }
+    }
+    <Vertex> 635 {
+      -1.2039681673 -0.196572884917 0.393934935331
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.566240 -0.635029 0.525437 }
+    }
+    <Vertex> 636 {
+      -1.18323349953 -0.349639743567 0.174749642611
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.971282 -0.004944 0.237831 }
+    }
+    <Vertex> 637 {
+      -1.1476444006 -0.196572884917 0.422953873873
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.699728 0.167882 0.694388 }
+    }
+    <Vertex> 638 {
+      -1.2039681673 -0.196572884917 0.393934935331
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.566240 -0.635029 0.525437 }
+    }
+    <Vertex> 639 {
+      -1.11523723602 -0.196572884917 0.393934935331
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.545671 0.759880 0.353191 }
+    }
+    <Vertex> 640 {
+      -1.1476444006 -0.196572884917 0.422953873873
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.699728 0.167882 0.694388 }
+    }
+    <Vertex> 641 {
+      -1.18323349953 -0.349639743567 0.174749642611
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.971282 -0.004944 0.237831 }
+    }
+    <Vertex> 642 {
+      -1.07896363735 -0.150652825832 0.284994393587
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.833491 0.097690 0.543779 }
+    }
+    <Vertex> 643 {
+      -1.11523723602 -0.196572884917 0.393934935331
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.545671 0.759880 0.353191 }
+    }
+    <Vertex> 644 {
+      -1.18323349953 -0.349639743567 0.174749642611
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.971282 -0.004944 0.237831 }
+    }
+    <Vertex> 645 {
+      -1.07896363735 -0.150652825832 0.284994393587
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.833491 0.097690 0.543779 }
+    }
+    <Vertex> 646 {
+      -1.00975775719 -0.298617452383 0.169647410512
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.994751 0.083773 0.058229 }
+    }
+    <Vertex> 647 {
+      -0.988279461861 -0.196572884917 0.361288636923
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.672689 -0.125767 0.729148 }
+    }
+    <Vertex> 648 {
+      -1.00975775719 -0.298617452383 0.169647410512
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.994751 0.083773 0.058229 }
+    }
+    <Vertex> 649 {
+      -0.958024859428 -0.196572884917 0.281486600637
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.526048 0.821925 0.218299 }
+    }
+    <Vertex> 650 {
+      -0.988279461861 -0.196572884917 0.361288636923
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.672689 -0.125767 0.729148 }
+    }
+    <Vertex> 651 {
+      -1.00975775719 -0.298617452383 0.169647410512
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.994751 0.083773 0.058229 }
+    }
+    <Vertex> 652 {
+      -0.950770139694 -0.196572884917 0.100118331611
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.426283 0.486038 -0.762871 }
+    }
+    <Vertex> 653 {
+      -0.958024859428 -0.196572884917 0.281486600637
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.526048 0.821925 0.218299 }
+    }
+    <Vertex> 654 {
+      -1.00975775719 -0.298617452383 0.169647410512
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.994751 0.083773 0.058229 }
+    }
+    <Vertex> 655 {
+      -1.06588232517 -0.242492944002 0.118625126779
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.593951 -0.003754 -0.804468 }
+    }
+    <Vertex> 656 {
+      -0.950770139694 -0.196572884917 0.100118331611
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.426283 0.486038 -0.762871 }
+    }
+    <Vertex> 657 {
+      -1.00975775719 -0.298617452383 0.169647410512
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.994751 0.083773 0.058229 }
+    }
+    <Vertex> 658 {
+      -1.07896363735 -0.150652825832 0.284994393587
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.833491 0.097690 0.543779 }
+    }
+    <Vertex> 659 {
+      -1.06588232517 -0.242492944002 0.118625126779
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.593951 -0.003754 -0.804468 }
+    }
+    <Vertex> 660 {
+      -1.07896363735 -0.150652825832 0.284994393587
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.833491 0.097690 0.543779 }
+    }
+    <Vertex> 661 {
+      -1.18323349953 -0.349639743567 0.174749642611
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.971282 -0.004944 0.237831 }
+    }
+    <Vertex> 662 {
+      -1.06588232517 -0.242492944002 0.118625126779
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.593951 -0.003754 -0.804468 }
+    }
+    <Vertex> 663 {
+      -1.18323349953 -0.349639743567 0.174749642611
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.971282 -0.004944 0.237831 }
+    }
+    <Vertex> 664 {
+      -1.24956250191 -0.242492929101 0.108420670033
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.528703 0.011658 -0.848720 }
+    }
+    <Vertex> 665 {
+      -1.06588232517 -0.242492944002 0.118625126779
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.593951 -0.003754 -0.804468 }
+    }
+    <Vertex> 666 {
+      -1.18323349953 -0.349639743567 0.174749642611
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.971282 -0.004944 0.237831 }
+    }
+    <Vertex> 667 {
+      -1.25112390518 -0.150652825832 0.284994393587
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.772881 -0.134281 0.620136 }
+    }
+    <Vertex> 668 {
+      -1.24956250191 -0.242492929101 0.108420670033
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.528703 0.011658 -0.848720 }
+    }
+    <Vertex> 669 {
+      -1.25112390518 -0.150652825832 0.284994393587
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.772881 -0.134281 0.620136 }
+    }
+    <Vertex> 670 {
+      -1.2903803587 -0.298617452383 0.174749642611
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.993316 -0.055727 0.100803 }
+    }
+    <Vertex> 671 {
+      -1.24956250191 -0.242492929101 0.108420670033
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.528703 0.011658 -0.848720 }
+    }
+    <Vertex> 672 {
+      -1.2903803587 -0.298617452383 0.174749642611
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.993316 -0.055727 0.100803 }
+    }
+    <Vertex> 673 {
+      -1.3662828207 -0.196572870016 0.0951356887817
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.461959 -0.502152 -0.731010 }
+    }
+    <Vertex> 674 {
+      -1.24956250191 -0.242492929101 0.108420670033
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.528703 0.011658 -0.848720 }
+    }
+    <Vertex> 675 {
+      -0.833418250084 0.237116530538 0.35969543457
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.147221 0.904996 0.399091 }
+    }
+    <Vertex> 676 {
+      -0.824009776115 0.237116530538 0.124484717846
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.032807 0.703879 -0.709525 }
+    }
+    <Vertex> 677 {
+      -0.858424842358 0.431001186371 0.105976678431
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.296484 0.381318 0.875610 }
+        <Binormal> { -0.913989 -0.067540 0.338892 }
+      }
+      <Normal> { -0.251381 0.819727 -0.514603 }
+    }
+    <Vertex> 678 {
+      -0.858424842358 0.431001186371 0.105976678431
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.296484 0.381318 0.875610 }
+        <Binormal> { -0.913989 -0.067540 0.338892 }
+      }
+      <Normal> { -0.251381 0.819727 -0.514603 }
+    }
+    <Vertex> 679 {
+      -0.865186929703 0.431001186371 0.275035321712
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { -0.368346 0.906406 0.206759 }
+        <Binormal> { 0.080275 0.037291 -0.020465 }
+      }
+      <Normal> { -0.340556 0.893582 0.292398 }
+    }
+    <Vertex> 680 {
+      -0.833418250084 0.237116530538 0.35969543457
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.147221 0.904996 0.399091 }
+    }
+    <Vertex> 681 {
+      -0.865186929703 0.431001186371 0.275035321712
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { -0.368346 0.906406 0.206759 }
+        <Binormal> { 0.080275 0.037291 -0.020465 }
+      }
+      <Normal> { -0.340556 0.893582 0.292398 }
+    }
+    <Vertex> 682 {
+      -0.977009296417 0.46671679616 0.410647988319
+      <UV>  {
+        0.650011 0.794437
+        <Tangent> { 0.415119 -0.045712 0.908618 }
+        <Binormal> { -0.610560 -0.513121 0.253131 }
+      }
+      <Normal> { -0.227363 0.634816 0.738426 }
+    }
+    <Vertex> 683 {
+      -0.833418250084 0.237116530538 0.35969543457
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.147221 0.904996 0.399091 }
+    }
+    <Vertex> 684 {
+      -0.967922210693 0.242218762636 0.463189959526
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.694103 -0.638742 0.332009 }
+        <Binormal> { -0.551455 -0.717107 -0.226739 }
+      }
+      <Normal> { -0.132450 -0.204779 0.969787 }
+    }
+    <Vertex> 685 {
+      -0.833418250084 0.237116530538 0.35969543457
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.147221 0.904996 0.399091 }
+    }
+    <Vertex> 686 {
+      -0.977009296417 0.46671679616 0.410647988319
+      <UV>  {
+        0.650011 0.794437
+        <Tangent> { 0.415119 -0.045712 0.908618 }
+        <Binormal> { -0.610560 -0.513121 0.253131 }
+      }
+      <Normal> { -0.227363 0.634816 0.738426 }
+    }
+    <Vertex> 687 {
+      -0.977009296417 0.46671679616 0.410647988319
+      <UV>  {
+        0.650011 0.794437
+        <Tangent> { 0.415119 -0.045712 0.908618 }
+        <Binormal> { -0.610560 -0.513121 0.253131 }
+      }
+      <Normal> { -0.227363 0.634816 0.738426 }
+    }
+    <Vertex> 688 {
+      -1.03960883617 0.242218762636 0.397329360247
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { -0.202378 0.947951 -0.245796 }
+        <Binormal> { 0.966212 0.234190 0.107652 }
+      }
+      <Normal> { -0.159612 0.215705 0.963317 }
+    }
+    <Vertex> 689 {
+      -0.967922210693 0.242218762636 0.463189959526
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.694103 -0.638742 0.332009 }
+        <Binormal> { -0.551455 -0.717107 -0.226739 }
+      }
+      <Normal> { -0.132450 -0.204779 0.969787 }
+    }
+    <Vertex> 690 {
+      -0.977009296417 0.46671679616 0.410647988319
+      <UV>  {
+        0.650011 0.794437
+        <Tangent> { 0.415119 -0.045712 0.908618 }
+        <Binormal> { -0.610560 -0.513121 0.253131 }
+      }
+      <Normal> { -0.227363 0.634816 0.738426 }
+    }
+    <Vertex> 691 {
+      -1.15781080723 0.420796751976 0.463025540113
+      <UV>  {
+        0.650012 0.794437
+        <Tangent> { -0.090021 0.993060 -0.075300 }
+        <Binormal> { 0.994090 0.084993 -0.067539 }
+      }
+      <Normal> { 0.060671 0.080935 0.994842 }
+    }
+    <Vertex> 692 {
+      -1.03960883617 0.242218762636 0.397329360247
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { -0.202378 0.947951 -0.245796 }
+        <Binormal> { 0.966212 0.234190 0.107652 }
+      }
+      <Normal> { -0.159612 0.215705 0.963317 }
+    }
+    <Vertex> 693 {
+      -1.03960883617 0.242218762636 0.397329360247
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { -0.202378 0.947951 -0.245796 }
+        <Binormal> { 0.966212 0.234190 0.107652 }
+      }
+      <Normal> { -0.159612 0.215705 0.963317 }
+    }
+    <Vertex> 694 {
+      -1.15781080723 0.420796751976 0.463025540113
+      <UV>  {
+        0.650012 0.794437
+        <Tangent> { -0.090021 0.993060 -0.075300 }
+        <Binormal> { 0.994090 0.084993 -0.067539 }
+      }
+      <Normal> { 0.060671 0.080935 0.994842 }
+    }
+    <Vertex> 695 {
+      -1.08665120602 0.242218762636 0.505527496338
+      <UV>  {
+        0.650012 0.794437
+        <Tangent> { -0.766141 0.218842 -0.604240 }
+        <Binormal> { 0.598524 0.585406 -0.546872 }
+      }
+      <Normal> { -0.234046 0.780633 0.579485 }
+    }
+    <Vertex> 696 {
+      -1.15781080723 0.420796751976 0.463025540113
+      <UV>  {
+        0.650012 0.794437
+        <Tangent> { -0.090021 0.993060 -0.075300 }
+        <Binormal> { 0.994090 0.084993 -0.067539 }
+      }
+      <Normal> { 0.060671 0.080935 0.994842 }
+    }
+    <Vertex> 697 {
+      -1.14382576942 0.242218762636 0.543161392212
+      <UV>  {
+        0.650012 0.794437
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.249336 0.186377 0.950285 }
+    }
+    <Vertex> 698 {
+      -1.08665120602 0.242218762636 0.505527496338
+      <UV>  {
+        0.650012 0.794437
+        <Tangent> { -0.766141 0.218842 -0.604240 }
+        <Binormal> { 0.598524 0.585406 -0.546872 }
+      }
+      <Normal> { -0.234046 0.780633 0.579485 }
+    }
+    <Vertex> 699 {
+      -1.15781080723 0.420796751976 0.463025540113
+      <UV>  {
+        0.650012 0.794437
+        <Tangent> { -0.090021 0.993060 -0.075300 }
+        <Binormal> { 0.994090 0.084993 -0.067539 }
+      }
+      <Normal> { 0.060671 0.080935 0.994842 }
+    }
+    <Vertex> 700 {
+      -1.23353338242 0.242218777537 0.505527496338
+      <UV>  {
+        0.650012 0.794437
+        <Tangent> { 0.749986 0.366654 0.550489 }
+        <Binormal> { 0.623099 -0.670890 -0.402062 }
+      }
+      <Normal> { -0.221900 -0.644551 0.731620 }
+    }
+    <Vertex> 701 {
+      -1.14382576942 0.242218762636 0.543161392212
+      <UV>  {
+        0.650012 0.794437
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.249336 0.186377 0.950285 }
+    }
+    <Vertex> 702 {
+      -1.29468786716 0.242218777537 0.397329360247
+      <UV>  {
+        0.650012 0.794437
+        <Tangent> { 0.324790 -0.703698 0.631918 }
+        <Binormal> { -0.548258 -0.451346 -0.220824 }
+      }
+      <Normal> { -0.223487 -0.195685 0.954833 }
+    }
+    <Vertex> 703 {
+      -1.23353338242 0.242218777537 0.505527496338
+      <UV>  {
+        0.650012 0.794437
+        <Tangent> { 0.749986 0.366654 0.550489 }
+        <Binormal> { 0.623099 -0.670890 -0.402062 }
+      }
+      <Normal> { -0.221900 -0.644551 0.731620 }
+    }
+    <Vertex> 704 {
+      -1.15781080723 0.420796751976 0.463025540113
+      <UV>  {
+        0.650012 0.794437
+        <Tangent> { -0.090021 0.993060 -0.075300 }
+        <Binormal> { 0.994090 0.084993 -0.067539 }
+      }
+      <Normal> { 0.060671 0.080935 0.994842 }
+    }
+    <Vertex> 705 {
+      -1.36055958271 0.415694534779 0.38525891304
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { -0.374615 -0.897986 -0.230836 }
+        <Binormal> { -0.897271 0.304472 0.271708 }
+      }
+      <Normal> { 0.110660 -0.460036 0.880947 }
+    }
+    <Vertex> 706 {
+      -1.35736322403 0.242218777537 0.455372184515
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.216885 -0.936218 0.276507 }
+        <Binormal> { -0.950187 -0.263229 -0.145957 }
+      }
+      <Normal> { -0.191900 0.155400 0.969024 }
+    }
+    <Vertex> 707 {
+      -1.29468786716 0.242218777537 0.397329360247
+      <UV>  {
+        0.650012 0.794437
+        <Tangent> { 0.324790 -0.703698 0.631918 }
+        <Binormal> { -0.548258 -0.451346 -0.220824 }
+      }
+      <Normal> { -0.223487 -0.195685 0.954833 }
+    }
+    <Vertex> 708 {
+      -1.29468786716 0.242218777537 0.397329360247
+      <UV>  {
+        0.650012 0.794437
+        <Tangent> { 0.324790 -0.703698 0.631918 }
+        <Binormal> { -0.548258 -0.451346 -0.220824 }
+      }
+      <Normal> { -0.223487 -0.195685 0.954833 }
+    }
+    <Vertex> 709 {
+      -1.15781080723 0.420796751976 0.463025540113
+      <UV>  {
+        0.650012 0.794437
+        <Tangent> { -0.090021 0.993060 -0.075300 }
+        <Binormal> { 0.994090 0.084993 -0.067539 }
+      }
+      <Normal> { 0.060671 0.080935 0.994842 }
+    }
+    <Vertex> 710 {
+      -1.36055958271 0.415694534779 0.38525891304
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { -0.374615 -0.897986 -0.230836 }
+        <Binormal> { -0.897271 0.304472 0.271708 }
+      }
+      <Normal> { 0.110660 -0.460036 0.880947 }
+    }
+    <Vertex> 711 {
+      -1.36055958271 0.415694534779 0.38525891304
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { -0.374615 -0.897986 -0.230836 }
+        <Binormal> { -0.897271 0.304472 0.271708 }
+      }
+      <Normal> { 0.110660 -0.460036 0.880947 }
+    }
+    <Vertex> 712 {
+      -1.47225570679 0.247321009636 0.33425655961
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.165258 -0.920560 0.353862 }
+    }
+    <Vertex> 713 {
+      -1.35736322403 0.242218777537 0.455372184515
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.216885 -0.936218 0.276507 }
+        <Binormal> { -0.950187 -0.263229 -0.145957 }
+      }
+      <Normal> { -0.191900 0.155400 0.969024 }
+    }
+    <Vertex> 714 {
+      -1.44010818005 0.425898998976 0.266795277596
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { -0.204279 -0.384030 -0.900439 }
+        <Binormal> { -0.939187 0.238698 0.111267 }
+      }
+      <Normal> { -0.217200 -0.953001 0.211097 }
+    }
+    <Vertex> 715 {
+      -1.47225570679 0.247321009636 0.33425655961
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.165258 -0.920560 0.353862 }
+    }
+    <Vertex> 716 {
+      -1.36055958271 0.415694534779 0.38525891304
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { -0.374615 -0.897986 -0.230836 }
+        <Binormal> { -0.897271 0.304472 0.271708 }
+      }
+      <Normal> { 0.110660 -0.460036 0.880947 }
+    }
+    <Vertex> 717 {
+      -1.44010818005 0.425898998976 0.266795277596
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { -0.204279 -0.384030 -0.900439 }
+        <Binormal> { -0.939187 0.238698 0.111267 }
+      }
+      <Normal> { -0.217200 -0.953001 0.211097 }
+    }
+    <Vertex> 718 {
+      -1.44687020779 0.425898998976 0.118023470044
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.398255 -0.281887 -0.872887 }
+        <Binormal> { -0.611590 0.410206 -0.411509 }
+      }
+      <Normal> { -0.260231 -0.849086 -0.459639 }
+    }
+    <Vertex> 719 {
+      -1.47225570679 0.247321009636 0.33425655961
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.165258 -0.920560 0.353862 }
+    }
+    <Vertex> 720 {
+      -1.44687020779 0.425898998976 0.118023470044
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.398255 -0.281887 -0.872887 }
+        <Binormal> { -0.611590 0.410206 -0.411509 }
+      }
+      <Normal> { -0.260231 -0.849086 -0.459639 }
+    }
+    <Vertex> 721 {
+      -1.4816634655 0.247321009636 0.127270013094
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.115221 -0.983781 -0.137472 }
+        <Binormal> { 0.591881 0.091064 -0.155593 }
+      }
+      <Normal> { -0.075076 -0.709372 -0.700766 }
+    }
+    <Vertex> 722 {
+      -1.47225570679 0.247321009636 0.33425655961
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.165258 -0.920560 0.353862 }
+    }
+    <Vertex> 723 {
+      -0.858424842358 0.431001186371 0.105976678431
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.296484 0.381318 0.875610 }
+        <Binormal> { -0.913989 -0.067540 0.338892 }
+      }
+      <Normal> { -0.251381 0.819727 -0.514603 }
+    }
+    <Vertex> 724 {
+      -0.948530375957 0.655499219894 0.215567469597
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { -0.080609 0.255089 0.963552 }
+        <Binormal> { -0.829825 -0.461963 0.052878 }
+      }
+      <Normal> { -0.483474 0.873989 0.048250 }
+    }
+    <Vertex> 725 {
+      -0.865186929703 0.431001186371 0.275035321712
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { -0.368346 0.906406 0.206759 }
+        <Binormal> { 0.080275 0.037291 -0.020465 }
+      }
+      <Normal> { -0.340556 0.893582 0.292398 }
+    }
+    <Vertex> 726 {
+      -0.977009296417 0.46671679616 0.410647988319
+      <UV>  {
+        0.650011 0.794437
+        <Tangent> { 0.415119 -0.045712 0.908618 }
+        <Binormal> { -0.610560 -0.513121 0.253131 }
+      }
+      <Normal> { -0.227363 0.634816 0.738426 }
+    }
+    <Vertex> 727 {
+      -0.865186929703 0.431001186371 0.275035321712
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { -0.368346 0.906406 0.206759 }
+        <Binormal> { 0.080275 0.037291 -0.020465 }
+      }
+      <Normal> { -0.340556 0.893582 0.292398 }
+    }
+    <Vertex> 728 {
+      -0.948530375957 0.655499219894 0.215567469597
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { -0.080609 0.255089 0.963552 }
+        <Binormal> { -0.829825 -0.461963 0.052878 }
+      }
+      <Normal> { -0.483474 0.873989 0.048250 }
+    }
+    <Vertex> 729 {
+      -1.10992825031 0.852014780045 0.123727351427
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.909420 0.119938 0.398208 }
+        <Binormal> { -0.250061 0.470247 0.429450 }
+      }
+      <Normal> { -0.527451 0.402661 -0.748039 }
+    }
+    <Vertex> 730 {
+      -0.948530375957 0.655499219894 0.215567469597
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { -0.080609 0.255089 0.963552 }
+        <Binormal> { -0.829825 -0.461963 0.052878 }
+      }
+      <Normal> { -0.483474 0.873989 0.048250 }
+    }
+    <Vertex> 731 {
+      -0.858424842358 0.431001186371 0.105976678431
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.296484 0.381318 0.875610 }
+        <Binormal> { -0.913989 -0.067540 0.338892 }
+      }
+      <Normal> { -0.251381 0.819727 -0.514603 }
+    }
+    <Vertex> 732 {
+      -0.948530375957 0.655499219894 0.215567469597
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { -0.080609 0.255089 0.963552 }
+        <Binormal> { -0.829825 -0.461963 0.052878 }
+      }
+      <Normal> { -0.483474 0.873989 0.048250 }
+    }
+    <Vertex> 733 {
+      -1.04547274113 0.844281733036 0.389043241739
+      <UV>  {
+        0.650010 0.794438
+        <Tangent> { 0.306276 -0.421575 0.853505 }
+        <Binormal> { -0.655566 -0.743291 -0.131890 }
+      }
+      <Normal> { -0.684805 0.511979 0.518509 }
+    }
+    <Vertex> 734 {
+      -0.977009296417 0.46671679616 0.410647988319
+      <UV>  {
+        0.650011 0.794437
+        <Tangent> { 0.415119 -0.045712 0.908618 }
+        <Binormal> { -0.610560 -0.513121 0.253131 }
+      }
+      <Normal> { -0.227363 0.634816 0.738426 }
+    }
+    <Vertex> 735 {
+      -0.948530375957 0.655499219894 0.215567469597
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { -0.080609 0.255089 0.963552 }
+        <Binormal> { -0.829825 -0.461963 0.052878 }
+      }
+      <Normal> { -0.483474 0.873989 0.048250 }
+    }
+    <Vertex> 736 {
+      -1.10992825031 0.852014780045 0.123727351427
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.909420 0.119938 0.398208 }
+        <Binormal> { -0.250061 0.470247 0.429450 }
+      }
+      <Normal> { -0.527451 0.402661 -0.748039 }
+    }
+    <Vertex> 737 {
+      -1.16282403469 0.910610675812 0.225771918893
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.834992 0.105997 0.539957 }
+        <Binormal> { -0.019581 -0.420584 0.112843 }
+      }
+      <Normal> { -0.990539 0.009400 -0.136845 }
+    }
+    <Vertex> 738 {
+      -0.948530375957 0.655499219894 0.215567469597
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { -0.080609 0.255089 0.963552 }
+        <Binormal> { -0.829825 -0.461963 0.052878 }
+      }
+      <Normal> { -0.483474 0.873989 0.048250 }
+    }
+    <Vertex> 739 {
+      -1.16282403469 0.910610675812 0.225771918893
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.834992 0.105997 0.539957 }
+        <Binormal> { -0.019581 -0.420584 0.112843 }
+      }
+      <Normal> { -0.990539 0.009400 -0.136845 }
+    }
+    <Vertex> 740 {
+      -1.04547274113 0.844281733036 0.389043241739
+      <UV>  {
+        0.650010 0.794438
+        <Tangent> { 0.306276 -0.421575 0.853505 }
+        <Binormal> { -0.655566 -0.743291 -0.131890 }
+      }
+      <Normal> { -0.684805 0.511979 0.518509 }
+    }
+    <Vertex> 741 {
+      -1.10992825031 0.852014780045 0.123727351427
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.909420 0.119938 0.398208 }
+        <Binormal> { -0.250061 0.470247 0.429450 }
+      }
+      <Normal> { -0.527451 0.402661 -0.748039 }
+    }
+    <Vertex> 742 {
+      -1.23102641106 0.856957554817 0.123727351427
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.935707 0.327346 -0.131520 }
+        <Binormal> { -0.289718 0.724923 -0.256921 }
+      }
+      <Normal> { -0.544267 -0.464980 -0.698233 }
+    }
+    <Vertex> 743 {
+      -1.16282403469 0.910610675812 0.225771918893
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.834992 0.105997 0.539957 }
+        <Binormal> { -0.019581 -0.420584 0.112843 }
+      }
+      <Normal> { -0.990539 0.009400 -0.136845 }
+    }
+    <Vertex> 744 {
+      -1.44010818005 0.425898998976 0.266795277596
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { -0.204279 -0.384030 -0.900439 }
+        <Binormal> { -0.939187 0.238698 0.111267 }
+      }
+      <Normal> { -0.217200 -0.953001 0.211097 }
+    }
+    <Vertex> 745 {
+      -1.35670053959 0.6393019557 0.23597638309
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.145221 0.103020 -0.984021 }
+        <Binormal> { -0.876531 0.468339 -0.080326 }
+      }
+      <Normal> { -0.463698 -0.882077 -0.082980 }
+    }
+    <Vertex> 746 {
+      -1.44687020779 0.425898998976 0.118023470044
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.398255 -0.281887 -0.872887 }
+        <Binormal> { -0.611590 0.410206 -0.411509 }
+      }
+      <Normal> { -0.260231 -0.849086 -0.459639 }
+    }
+    <Vertex> 747 {
+      -1.23102641106 0.856957554817 0.123727351427
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.935707 0.327346 -0.131520 }
+        <Binormal> { -0.289718 0.724923 -0.256921 }
+      }
+      <Normal> { -0.544267 -0.464980 -0.698233 }
+    }
+    <Vertex> 748 {
+      -1.44687020779 0.425898998976 0.118023470044
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.398255 -0.281887 -0.872887 }
+        <Binormal> { -0.611590 0.410206 -0.411509 }
+      }
+      <Normal> { -0.260231 -0.849086 -0.459639 }
+    }
+    <Vertex> 749 {
+      -1.35670053959 0.6393019557 0.23597638309
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.145221 0.103020 -0.984021 }
+        <Binormal> { -0.876531 0.468339 -0.080326 }
+      }
+      <Normal> { -0.463698 -0.882077 -0.082980 }
+    }
+    <Vertex> 750 {
+      -1.29548192024 0.854486167431 0.389043241739
+      <UV>  {
+        0.650010 0.794439
+        <Tangent> { 0.743202 0.365779 -0.560229 }
+        <Binormal> { -0.278239 0.220268 -0.225297 }
+      }
+      <Normal> { -0.715323 -0.655202 0.242836 }
+    }
+    <Vertex> 751 {
+      -1.16282403469 0.910610675812 0.225771918893
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.834992 0.105997 0.539957 }
+        <Binormal> { -0.019581 -0.420584 0.112843 }
+      }
+      <Normal> { -0.990539 0.009400 -0.136845 }
+    }
+    <Vertex> 752 {
+      -1.35670053959 0.6393019557 0.23597638309
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.145221 0.103020 -0.984021 }
+        <Binormal> { -0.876531 0.468339 -0.080326 }
+      }
+      <Normal> { -0.463698 -0.882077 -0.082980 }
+    }
+    <Vertex> 753 {
+      -1.23102641106 0.856957554817 0.123727351427
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.935707 0.327346 -0.131520 }
+        <Binormal> { -0.289718 0.724923 -0.256921 }
+      }
+      <Normal> { -0.544267 -0.464980 -0.698233 }
+    }
+    <Vertex> 754 {
+      -1.35670053959 0.6393019557 0.23597638309
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.145221 0.103020 -0.984021 }
+        <Binormal> { -0.876531 0.468339 -0.080326 }
+      }
+      <Normal> { -0.463698 -0.882077 -0.082980 }
+    }
+    <Vertex> 755 {
+      -1.16282403469 0.910610675812 0.225771918893
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.834992 0.105997 0.539957 }
+        <Binormal> { -0.019581 -0.420584 0.112843 }
+      }
+      <Normal> { -0.990539 0.009400 -0.136845 }
+    }
+    <Vertex> 756 {
+      -1.44010818005 0.425898998976 0.266795277596
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { -0.204279 -0.384030 -0.900439 }
+        <Binormal> { -0.939187 0.238698 0.111267 }
+      }
+      <Normal> { -0.217200 -0.953001 0.211097 }
+    }
+    <Vertex> 757 {
+      -1.29548192024 0.854486167431 0.389043241739
+      <UV>  {
+        0.650010 0.794439
+        <Tangent> { 0.743202 0.365779 -0.560229 }
+        <Binormal> { -0.278239 0.220268 -0.225297 }
+      }
+      <Normal> { -0.715323 -0.655202 0.242836 }
+    }
+    <Vertex> 758 {
+      -1.35670053959 0.6393019557 0.23597638309
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.145221 0.103020 -0.984021 }
+        <Binormal> { -0.876531 0.468339 -0.080326 }
+      }
+      <Normal> { -0.463698 -0.882077 -0.082980 }
+    }
+    <Vertex> 759 {
+      -1.29548192024 0.854486167431 0.389043241739
+      <UV>  {
+        0.650010 0.794439
+        <Tangent> { 0.743202 0.365779 -0.560229 }
+        <Binormal> { -0.278239 0.220268 -0.225297 }
+      }
+      <Normal> { -0.715323 -0.655202 0.242836 }
+    }
+    <Vertex> 760 {
+      -1.04547274113 0.844281733036 0.389043241739
+      <UV>  {
+        0.650010 0.794438
+        <Tangent> { 0.306276 -0.421575 0.853505 }
+        <Binormal> { -0.655566 -0.743291 -0.131890 }
+      }
+      <Normal> { -0.684805 0.511979 0.518509 }
+    }
+    <Vertex> 761 {
+      -1.16282403469 0.910610675812 0.225771918893
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.834992 0.105997 0.539957 }
+        <Binormal> { -0.019581 -0.420584 0.112843 }
+      }
+      <Normal> { -0.990539 0.009400 -0.136845 }
+    }
+    <Vertex> 762 {
+      -1.24697840214 0.793259441853 0.480154633522
+      <UV>  {
+        0.650010 0.794439
+        <Tangent> { 0.987258 0.105761 0.118897 }
+        <Binormal> { 0.068456 -0.519512 -0.106303 }
+      }
+      <Normal> { -0.884793 -0.202460 0.419660 }
+    }
+    <Vertex> 763 {
+      -1.29548192024 0.854486167431 0.389043241739
+      <UV>  {
+        0.650010 0.794439
+        <Tangent> { 0.743202 0.365779 -0.560229 }
+        <Binormal> { -0.278239 0.220268 -0.225297 }
+      }
+      <Normal> { -0.715323 -0.655202 0.242836 }
+    }
+    <Vertex> 764 {
+      -1.34021735191 0.61468142271 0.536181986332
+      <UV>  {
+        0.650012 0.794439
+        <Tangent> { -0.272937 0.200516 -0.940903 }
+        <Binormal> { -0.827162 0.071699 0.255223 }
+      }
+      <Normal> { 0.016602 -0.947295 0.319926 }
+    }
+    <Vertex> 765 {
+      -1.44010818005 0.425898998976 0.266795277596
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { -0.204279 -0.384030 -0.900439 }
+        <Binormal> { -0.939187 0.238698 0.111267 }
+      }
+      <Normal> { -0.217200 -0.953001 0.211097 }
+    }
+    <Vertex> 766 {
+      -1.34021735191 0.61468142271 0.536181986332
+      <UV>  {
+        0.650012 0.794439
+        <Tangent> { -0.272937 0.200516 -0.940903 }
+        <Binormal> { -0.827162 0.071699 0.255223 }
+      }
+      <Normal> { 0.016602 -0.947295 0.319926 }
+    }
+    <Vertex> 767 {
+      -1.29548192024 0.854486167431 0.389043241739
+      <UV>  {
+        0.650010 0.794439
+        <Tangent> { 0.743202 0.365779 -0.560229 }
+        <Binormal> { -0.278239 0.220268 -0.225297 }
+      }
+      <Normal> { -0.715323 -0.655202 0.242836 }
+    }
+    <Vertex> 768 {
+      -1.44010818005 0.425898998976 0.266795277596
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { -0.204279 -0.384030 -0.900439 }
+        <Binormal> { -0.939187 0.238698 0.111267 }
+      }
+      <Normal> { -0.217200 -0.953001 0.211097 }
+    }
+    <Vertex> 769 {
+      -1.36055958271 0.415694534779 0.38525891304
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { -0.374615 -0.897986 -0.230836 }
+        <Binormal> { -0.897271 0.304472 0.271708 }
+      }
+      <Normal> { 0.110660 -0.460036 0.880947 }
+    }
+    <Vertex> 770 {
+      -1.34021735191 0.61468142271 0.536181986332
+      <UV>  {
+        0.650012 0.794439
+        <Tangent> { -0.272937 0.200516 -0.940903 }
+        <Binormal> { -0.827162 0.071699 0.255223 }
+      }
+      <Normal> { 0.016602 -0.947295 0.319926 }
+    }
+    <Vertex> 771 {
+      -1.24697840214 0.793259441853 0.480154633522
+      <UV>  {
+        0.650010 0.794439
+        <Tangent> { 0.987258 0.105761 0.118897 }
+        <Binormal> { 0.068456 -0.519512 -0.106303 }
+      }
+      <Normal> { -0.884793 -0.202460 0.419660 }
+    }
+    <Vertex> 772 {
+      -1.04547274113 0.844281733036 0.389043241739
+      <UV>  {
+        0.650010 0.794438
+        <Tangent> { 0.306276 -0.421575 0.853505 }
+        <Binormal> { -0.655566 -0.743291 -0.131890 }
+      }
+      <Normal> { -0.684805 0.511979 0.518509 }
+    }
+    <Vertex> 773 {
+      -1.29548192024 0.854486167431 0.389043241739
+      <UV>  {
+        0.650010 0.794439
+        <Tangent> { 0.743202 0.365779 -0.560229 }
+        <Binormal> { -0.278239 0.220268 -0.225297 }
+      }
+      <Normal> { -0.715323 -0.655202 0.242836 }
+    }
+    <Vertex> 774 {
+      -1.04547274113 0.844281733036 0.389043241739
+      <UV>  {
+        0.650010 0.794438
+        <Tangent> { 0.306276 -0.421575 0.853505 }
+        <Binormal> { -0.655566 -0.743291 -0.131890 }
+      }
+      <Normal> { -0.684805 0.511979 0.518509 }
+    }
+    <Vertex> 775 {
+      -1.24697840214 0.793259441853 0.480154633522
+      <UV>  {
+        0.650010 0.794439
+        <Tangent> { 0.987258 0.105761 0.118897 }
+        <Binormal> { 0.068456 -0.519512 -0.106303 }
+      }
+      <Normal> { -0.884793 -0.202460 0.419660 }
+    }
+    <Vertex> 776 {
+      -1.14233851433 0.772850513458 0.46946310997
+      <UV>  {
+        0.650009 0.794439
+        <Tangent> { -0.098031 -0.593124 0.799121 }
+        <Binormal> { -0.631669 -0.559348 -0.492649 }
+      }
+      <Normal> { -0.718314 0.679373 0.149663 }
+    }
+    <Vertex> 777 {
+      -1.04547274113 0.844281733036 0.389043241739
+      <UV>  {
+        0.650010 0.794438
+        <Tangent> { 0.306276 -0.421575 0.853505 }
+        <Binormal> { -0.655566 -0.743291 -0.131890 }
+      }
+      <Normal> { -0.684805 0.511979 0.518509 }
+    }
+    <Vertex> 778 {
+      -1.14233851433 0.772850513458 0.46946310997
+      <UV>  {
+        0.650009 0.794439
+        <Tangent> { -0.098031 -0.593124 0.799121 }
+        <Binormal> { -0.631669 -0.559348 -0.492649 }
+      }
+      <Normal> { -0.718314 0.679373 0.149663 }
+    }
+    <Vertex> 779 {
+      -0.977009296417 0.46671679616 0.410647988319
+      <UV>  {
+        0.650011 0.794437
+        <Tangent> { 0.415119 -0.045712 0.908618 }
+        <Binormal> { -0.610560 -0.513121 0.253131 }
+      }
+      <Normal> { -0.227363 0.634816 0.738426 }
+    }
+    <Vertex> 780 {
+      -1.01207470894 0.594272494316 0.461548179388
+      <UV>  {
+        0.650009 0.794437
+        <Tangent> { 0.026867 0.947363 0.319033 }
+        <Binormal> { -0.227259 0.090500 -0.249599 }
+      }
+      <Normal> { 0.290506 0.953398 0.081179 }
+    }
+    <Vertex> 781 {
+      -0.977009296417 0.46671679616 0.410647988319
+      <UV>  {
+        0.650011 0.794437
+        <Tangent> { 0.415119 -0.045712 0.908618 }
+        <Binormal> { -0.610560 -0.513121 0.253131 }
+      }
+      <Normal> { -0.227363 0.634816 0.738426 }
+    }
+    <Vertex> 782 {
+      -1.14233851433 0.772850513458 0.46946310997
+      <UV>  {
+        0.650009 0.794439
+        <Tangent> { -0.098031 -0.593124 0.799121 }
+        <Binormal> { -0.631669 -0.559348 -0.492649 }
+      }
+      <Normal> { -0.718314 0.679373 0.149663 }
+    }
+    <Vertex> 783 {
+      -1.01207470894 0.594272494316 0.461548179388
+      <UV>  {
+        0.650009 0.794437
+        <Tangent> { 0.026867 0.947363 0.319033 }
+        <Binormal> { -0.227259 0.090500 -0.249599 }
+      }
+      <Normal> { 0.290506 0.953398 0.081179 }
+    }
+    <Vertex> 784 {
+      -1.15781080723 0.420796751976 0.463025540113
+      <UV>  {
+        0.650012 0.794437
+        <Tangent> { -0.090021 0.993060 -0.075300 }
+        <Binormal> { 0.994090 0.084993 -0.067539 }
+      }
+      <Normal> { 0.060671 0.080935 0.994842 }
+    }
+    <Vertex> 785 {
+      -0.977009296417 0.46671679616 0.410647988319
+      <UV>  {
+        0.650011 0.794437
+        <Tangent> { 0.415119 -0.045712 0.908618 }
+        <Binormal> { -0.610560 -0.513121 0.253131 }
+      }
+      <Normal> { -0.227363 0.634816 0.738426 }
+    }
+    <Vertex> 786 {
+      -1.14830517769 0.502432405949 0.514491260052
+      <UV>  {
+        0.650014 0.794436
+        <Tangent> { 0.932289 0.333662 -0.139667 }
+        <Binormal> { 0.117225 -0.356164 -0.068381 }
+      }
+      <Normal> { 0.934446 0.261086 0.242042 }
+    }
+    <Vertex> 787 {
+      -1.15781080723 0.420796751976 0.463025540113
+      <UV>  {
+        0.650012 0.794437
+        <Tangent> { -0.090021 0.993060 -0.075300 }
+        <Binormal> { 0.994090 0.084993 -0.067539 }
+      }
+      <Normal> { 0.060671 0.080935 0.994842 }
+    }
+    <Vertex> 788 {
+      -1.01207470894 0.594272494316 0.461548179388
+      <UV>  {
+        0.650009 0.794437
+        <Tangent> { 0.026867 0.947363 0.319033 }
+        <Binormal> { -0.227259 0.090500 -0.249599 }
+      }
+      <Normal> { 0.290506 0.953398 0.081179 }
+    }
+    <Vertex> 789 {
+      -1.14830517769 0.502432405949 0.514491260052
+      <UV>  {
+        0.650014 0.794436
+        <Tangent> { 0.932289 0.333662 -0.139667 }
+        <Binormal> { 0.117225 -0.356164 -0.068381 }
+      }
+      <Normal> { 0.934446 0.261086 0.242042 }
+    }
+    <Vertex> 790 {
+      -1.2454867363 0.512636840343 0.500786542892
+      <UV>  {
+        0.650013 0.794437
+        <Tangent> { 0.037811 -0.679233 -0.732948 }
+        <Binormal> { -0.460892 -0.661630 0.589365 }
+      }
+      <Normal> { 0.887112 -0.348857 0.302103 }
+    }
+    <Vertex> 791 {
+      -1.15781080723 0.420796751976 0.463025540113
+      <UV>  {
+        0.650012 0.794437
+        <Tangent> { -0.090021 0.993060 -0.075300 }
+        <Binormal> { 0.994090 0.084993 -0.067539 }
+      }
+      <Normal> { 0.060671 0.080935 0.994842 }
+    }
+    <Vertex> 792 {
+      -1.2454867363 0.512636840343 0.500786542892
+      <UV>  {
+        0.650013 0.794437
+        <Tangent> { 0.037811 -0.679233 -0.732948 }
+        <Binormal> { -0.460892 -0.661630 0.589365 }
+      }
+      <Normal> { 0.887112 -0.348857 0.302103 }
+    }
+    <Vertex> 793 {
+      -1.34021735191 0.61468142271 0.536181986332
+      <UV>  {
+        0.650012 0.794439
+        <Tangent> { -0.272937 0.200516 -0.940903 }
+        <Binormal> { -0.827162 0.071699 0.255223 }
+      }
+      <Normal> { 0.016602 -0.947295 0.319926 }
+    }
+    <Vertex> 794 {
+      -1.36055958271 0.415694534779 0.38525891304
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { -0.374615 -0.897986 -0.230836 }
+        <Binormal> { -0.897271 0.304472 0.271708 }
+      }
+      <Normal> { 0.110660 -0.460036 0.880947 }
+    }
+    <Vertex> 795 {
+      -1.36055958271 0.415694534779 0.38525891304
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { -0.374615 -0.897986 -0.230836 }
+        <Binormal> { -0.897271 0.304472 0.271708 }
+      }
+      <Normal> { 0.110660 -0.460036 0.880947 }
+    }
+    <Vertex> 796 {
+      -1.15781080723 0.420796751976 0.463025540113
+      <UV>  {
+        0.650012 0.794437
+        <Tangent> { -0.090021 0.993060 -0.075300 }
+        <Binormal> { 0.994090 0.084993 -0.067539 }
+      }
+      <Normal> { 0.060671 0.080935 0.994842 }
+    }
+    <Vertex> 797 {
+      -1.2454867363 0.512636840343 0.500786542892
+      <UV>  {
+        0.650013 0.794437
+        <Tangent> { 0.037811 -0.679233 -0.732948 }
+        <Binormal> { -0.460892 -0.661630 0.589365 }
+      }
+      <Normal> { 0.887112 -0.348857 0.302103 }
+    }
+    <Vertex> 798 {
+      -1.15772175789 0.359570026398 0.133931815624
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.005554 -0.006012 -0.999939 }
+    }
+    <Vertex> 799 {
+      -0.826076924801 0.0228229258209 0.118625126779
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.214484 0.875729 -0.432508 }
+    }
+    <Vertex> 800 {
+      -0.950770139694 -0.196572884917 0.100118331611
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.426283 0.486038 -0.762871 }
+    }
+    <Vertex> 801 {
+      -0.950770139694 -0.196572884917 0.100118331611
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.426283 0.486038 -0.762871 }
+    }
+    <Vertex> 802 {
+      -1.06588232517 -0.242492944002 0.118625126779
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.593951 -0.003754 -0.804468 }
+    }
+    <Vertex> 803 {
+      -1.15772175789 0.359570026398 0.133931815624
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.005554 -0.006012 -0.999939 }
+    }
+    <Vertex> 804 {
+      -1.06588232517 -0.242492944002 0.118625126779
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.593951 -0.003754 -0.804468 }
+    }
+    <Vertex> 805 {
+      -1.24956250191 -0.242492929101 0.108420670033
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.528703 0.011658 -0.848720 }
+    }
+    <Vertex> 806 {
+      -1.15772175789 0.359570026398 0.133931815624
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.005554 -0.006012 -0.999939 }
+    }
+    <Vertex> 807 {
+      -1.15772175789 0.359570026398 0.133931815624
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.005554 -0.006012 -0.999939 }
+    }
+    <Vertex> 808 {
+      -1.24956250191 -0.242492929101 0.108420670033
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.528703 0.011658 -0.848720 }
+    }
+    <Vertex> 809 {
+      -1.3662828207 -0.196572870016 0.0951356887817
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.461959 -0.502152 -0.731010 }
+    }
+    <Vertex> 810 {
+      -1.3662828207 -0.196572870016 0.0951356887817
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.461959 -0.502152 -0.731010 }
+    }
+    <Vertex> 811 {
+      -1.48936665058 0.0228229556233 0.118625126779
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.900106 -0.020449 0.435114 }
+        <Binormal> { 0.393475 0.466754 -0.792034 }
+      }
+      <Normal> { 0.186895 -0.884121 -0.428175 }
+    }
+    <Vertex> 812 {
+      -1.15772175789 0.359570026398 0.133931815624
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.005554 -0.006012 -0.999939 }
+    }
+    <Vertex> 813 {
+      -1.15772175789 0.359570026398 0.133931815624
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.005554 -0.006012 -0.999939 }
+    }
+    <Vertex> 814 {
+      -1.48936665058 0.0228229556233 0.118625126779
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.900106 -0.020449 0.435114 }
+        <Binormal> { 0.393475 0.466754 -0.792034 }
+      }
+      <Normal> { 0.186895 -0.884121 -0.428175 }
+    }
+    <Vertex> 815 {
+      -1.4816634655 0.247321009636 0.127270013094
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.115221 -0.983781 -0.137472 }
+        <Binormal> { 0.591881 0.091064 -0.155593 }
+      }
+      <Normal> { -0.075076 -0.709372 -0.700766 }
+    }
+    <Vertex> 816 {
+      -1.4816634655 0.247321009636 0.127270013094
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.115221 -0.983781 -0.137472 }
+        <Binormal> { 0.591881 0.091064 -0.155593 }
+      }
+      <Normal> { -0.075076 -0.709372 -0.700766 }
+    }
+    <Vertex> 817 {
+      -1.44687020779 0.425898998976 0.118023470044
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.398255 -0.281887 -0.872887 }
+        <Binormal> { -0.611590 0.410206 -0.411509 }
+      }
+      <Normal> { -0.260231 -0.849086 -0.459639 }
+    }
+    <Vertex> 818 {
+      -1.15772175789 0.359570026398 0.133931815624
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.005554 -0.006012 -0.999939 }
+    }
+    <Vertex> 819 {
+      -1.44687020779 0.425898998976 0.118023470044
+      <UV>  {
+        0.650012 0.794438
+        <Tangent> { 0.398255 -0.281887 -0.872887 }
+        <Binormal> { -0.611590 0.410206 -0.411509 }
+      }
+      <Normal> { -0.260231 -0.849086 -0.459639 }
+    }
+    <Vertex> 820 {
+      -1.23102641106 0.856957554817 0.123727351427
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.935707 0.327346 -0.131520 }
+        <Binormal> { -0.289718 0.724923 -0.256921 }
+      }
+      <Normal> { -0.544267 -0.464980 -0.698233 }
+    }
+    <Vertex> 821 {
+      -1.15772175789 0.359570026398 0.133931815624
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.005554 -0.006012 -0.999939 }
+    }
+    <Vertex> 822 {
+      -1.15772175789 0.359570026398 0.133931815624
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.005554 -0.006012 -0.999939 }
+    }
+    <Vertex> 823 {
+      -1.23102641106 0.856957554817 0.123727351427
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.935707 0.327346 -0.131520 }
+        <Binormal> { -0.289718 0.724923 -0.256921 }
+      }
+      <Normal> { -0.544267 -0.464980 -0.698233 }
+    }
+    <Vertex> 824 {
+      -1.10992825031 0.852014780045 0.123727351427
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.909420 0.119938 0.398208 }
+        <Binormal> { -0.250061 0.470247 0.429450 }
+      }
+      <Normal> { -0.527451 0.402661 -0.748039 }
+    }
+    <Vertex> 825 {
+      -1.10992825031 0.852014780045 0.123727351427
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.909420 0.119938 0.398208 }
+        <Binormal> { -0.250061 0.470247 0.429450 }
+      }
+      <Normal> { -0.527451 0.402661 -0.748039 }
+    }
+    <Vertex> 826 {
+      -0.858424842358 0.431001186371 0.105976678431
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.296484 0.381318 0.875610 }
+        <Binormal> { -0.913989 -0.067540 0.338892 }
+      }
+      <Normal> { -0.251381 0.819727 -0.514603 }
+    }
+    <Vertex> 827 {
+      -1.15772175789 0.359570026398 0.133931815624
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.005554 -0.006012 -0.999939 }
+    }
+    <Vertex> 828 {
+      -0.858424842358 0.431001186371 0.105976678431
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.296484 0.381318 0.875610 }
+        <Binormal> { -0.913989 -0.067540 0.338892 }
+      }
+      <Normal> { -0.251381 0.819727 -0.514603 }
+    }
+    <Vertex> 829 {
+      -0.824009776115 0.237116530538 0.124484717846
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.032807 0.703879 -0.709525 }
+    }
+    <Vertex> 830 {
+      -1.15772175789 0.359570026398 0.133931815624
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.005554 -0.006012 -0.999939 }
+    }
+    <Vertex> 831 {
+      -0.824009776115 0.237116530538 0.124484717846
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.032807 0.703879 -0.709525 }
+    }
+    <Vertex> 832 {
+      -0.826076924801 0.0228229258209 0.118625126779
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.214484 0.875729 -0.432508 }
+    }
+    <Vertex> 833 {
+      -1.15772175789 0.359570026398 0.133931815624
+      <UV>  {
+        0.650011 0.794438
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.005554 -0.006012 -0.999939 }
+    }
+    <Vertex> 834 {
+      -0.863826274872 0.884971857071 1.5283536911
+      <UV>  {
+        0.142446 0.194515
+        <Tangent> { -0.947658 0.097790 0.303942 }
+        <Binormal> { 0.141759 0.514431 0.276476 }
+      }
+      <Normal> { -0.628071 -0.226936 0.744285 }
+    }
+    <Vertex> 835 {
+      -0.797626197338 0.88052302599 1.51110291481
+      <UV>  {
+        0.182884 0.172634
+        <Tangent> { -0.999981 -0.000184 -0.006158 }
+        <Binormal> { -0.000155 0.824025 0.000505 }
+      }
+      <Normal> { -0.571581 -0.000610 0.820521 }
+    }
+    <Vertex> 836 {
+      -0.797626197338 0.880374312401 1.49441170692
+      <UV>  {
+        0.182410 0.201911
+        <Tangent> { -0.999896 0.004769 -0.013626 }
+        <Binormal> { 0.001001 0.221290 0.004024 }
+      }
+      <Normal> { -0.978118 0.000641 0.207984 }
+    }
+    <Vertex> 837 {
+      -0.797626197338 0.880374312401 1.49441170692
+      <UV>  {
+        0.182410 0.201911
+        <Tangent> { -0.999896 0.004769 -0.013626 }
+        <Binormal> { 0.001001 0.221290 0.004024 }
+      }
+      <Normal> { -0.978118 0.000641 0.207984 }
+    }
+    <Vertex> 838 {
+      -0.828235685825 0.87777107954 1.47126543522
+      <UV>  {
+        0.158348 0.216991
+        <Tangent> { -0.987087 -0.111994 0.114532 }
+        <Binormal> { 0.007101 0.014359 0.075242 }
+      }
+      <Normal> { -0.974059 -0.186743 0.127567 }
+    }
+    <Vertex> 839 {
+      -0.863826274872 0.884971857071 1.5283536911
+      <UV>  {
+        0.142446 0.194515
+        <Tangent> { -0.947658 0.097790 0.303942 }
+        <Binormal> { 0.141759 0.514431 0.276476 }
+      }
+      <Normal> { -0.628071 -0.226936 0.744285 }
+    }
+    <Vertex> 840 {
+      -0.828235685825 0.87777107954 1.47126543522
+      <UV>  {
+        0.158348 0.216991
+        <Tangent> { -0.987087 -0.111994 0.114532 }
+        <Binormal> { 0.007101 0.014359 0.075242 }
+      }
+      <Normal> { -0.974059 -0.186743 0.127567 }
+    }
+    <Vertex> 841 {
+      -0.797626197338 0.880374312401 1.49441170692
+      <UV>  {
+        0.182410 0.201911
+        <Tangent> { -0.999896 0.004769 -0.013626 }
+        <Binormal> { 0.001001 0.221290 0.004024 }
+      }
+      <Normal> { -0.978118 0.000641 0.207984 }
+    }
+    <Vertex> 842 {
+      -0.797626197338 0.899374544621 1.47970366478
+      <UV>  {
+        0.182209 0.215068
+        <Tangent> { -0.999828 0.006002 -0.017575 }
+        <Binormal> { 0.001073 0.187065 0.002864 }
+      }
+      <Normal> { -0.985473 0.003052 0.169774 }
+    }
+    <Vertex> 843 {
+      -0.914848566055 0.890661418438 1.44520449638
+      <UV>  {
+        0.125640 0.239989
+        <Tangent> { -0.959905 0.036241 0.277974 }
+        <Binormal> { 0.137565 -0.533409 0.544586 }
+      }
+      <Normal> { -0.775048 -0.538072 -0.331248 }
+    }
+    <Vertex> 844 {
+      -0.863826274872 0.884971857071 1.5283536911
+      <UV>  {
+        0.142446 0.194515
+        <Tangent> { -0.947658 0.097790 0.303942 }
+        <Binormal> { 0.141759 0.514431 0.276476 }
+      }
+      <Normal> { -0.628071 -0.226936 0.744285 }
+    }
+    <Vertex> 845 {
+      -0.828235685825 0.87777107954 1.47126543522
+      <UV>  {
+        0.158348 0.216991
+        <Tangent> { -0.987087 -0.111994 0.114532 }
+        <Binormal> { 0.007101 0.014359 0.075242 }
+      }
+      <Normal> { -0.974059 -0.186743 0.127567 }
+    }
+    <Vertex> 846 {
+      -0.889337420464 0.836657643318 1.45827651024
+      <UV>  {
+        0.649696 0.794560
+        <Tangent> { 0.600947 0.305637 0.738545 }
+        <Binormal> { 0.272203 -0.480920 -0.022466 }
+      }
+      <Normal> { -0.848964 -0.469161 -0.243080 }
+    }
+    <Vertex> 847 {
+      -0.863826274872 0.884971857071 1.5283536911
+      <UV>  {
+        0.649638 0.794480
+        <Tangent> { 0.837136 -0.218526 0.501447 }
+        <Binormal> { -0.048849 -0.938013 -0.327226 }
+      }
+      <Normal> { -0.628071 -0.226936 0.744285 }
+    }
+    <Vertex> 848 {
+      -0.914848566055 0.890661418438 1.44520449638
+      <UV>  {
+        0.649681 0.794499
+        <Tangent> { -0.135640 0.278202 0.950897 }
+        <Binormal> { 0.419497 -0.781921 0.288604 }
+      }
+      <Normal> { -0.775048 -0.538072 -0.331248 }
+    }
+    <Vertex> 849 {
+      -0.914848566055 0.890661418438 1.44520449638
+      <UV>  {
+        0.649681 0.794499
+        <Tangent> { -0.135640 0.278202 0.950897 }
+        <Binormal> { 0.419497 -0.781921 0.288604 }
+      }
+      <Normal> { -0.775048 -0.538072 -0.331248 }
+    }
+    <Vertex> 850 {
+      -0.828235685825 0.840007185936 1.38916003704
+      <UV>  {
+        0.649723 0.794470
+        <Tangent> { -0.233124 0.821992 0.519598 }
+        <Binormal> { -0.397967 -0.349190 0.373858 }
+      }
+      <Normal> { -0.311228 -0.506302 -0.804193 }
+    }
+    <Vertex> 851 {
+      -0.889337420464 0.836657643318 1.45827651024
+      <UV>  {
+        0.649696 0.794560
+        <Tangent> { 0.600947 0.305637 0.738545 }
+        <Binormal> { 0.272203 -0.480920 -0.022466 }
+      }
+      <Normal> { -0.848964 -0.469161 -0.243080 }
+    }
+    <Vertex> 852 {
+      -0.828235685825 0.840007185936 1.38916003704
+      <UV>  {
+        0.649723 0.794470
+        <Tangent> { -0.233124 0.821992 0.519598 }
+        <Binormal> { -0.397967 -0.349190 0.373858 }
+      }
+      <Normal> { -0.311228 -0.506302 -0.804193 }
+    }
+    <Vertex> 853 {
+      -0.889337420464 0.695588648319 1.23194479942
+      <UV>  {
+        0.649853 0.794382
+        <Tangent> { 0.449774 0.531572 0.717729 }
+        <Binormal> { -0.730632 0.040271 0.428034 }
+      }
+      <Normal> { -0.437178 0.434980 -0.787164 }
+    }
+    <Vertex> 854 {
+      -0.889337420464 0.836657643318 1.45827651024
+      <UV>  {
+        0.649696 0.794560
+        <Tangent> { 0.600947 0.305637 0.738545 }
+        <Binormal> { 0.272203 -0.480920 -0.022466 }
+      }
+      <Normal> { -0.848964 -0.469161 -0.243080 }
+    }
+    <Vertex> 855 {
+      -0.889337420464 0.836657643318 1.45827651024
+      <UV>  {
+        0.649696 0.794560
+        <Tangent> { 0.600947 0.305637 0.738545 }
+        <Binormal> { 0.272203 -0.480920 -0.022466 }
+      }
+      <Normal> { -0.848964 -0.469161 -0.243080 }
+    }
+    <Vertex> 856 {
+      -0.797497272491 0.84658241272 1.49699413776
+      <UV>  {
+        0.649579 0.794540
+        <Tangent> { 0.986134 -0.055389 0.156437 }
+        <Binormal> { -0.044677 -0.887556 -0.032621 }
+      }
+      <Normal> { -0.591662 0.000153 0.806177 }
+    }
+    <Vertex> 857 {
+      -0.863826274872 0.884971857071 1.5283536911
+      <UV>  {
+        0.649638 0.794480
+        <Tangent> { 0.837136 -0.218526 0.501447 }
+        <Binormal> { -0.048849 -0.938013 -0.327226 }
+      }
+      <Normal> { -0.628071 -0.226936 0.744285 }
+    }
+    <Vertex> 858 {
+      -0.797497272491 0.84658241272 1.49699413776
+      <UV>  {
+        0.649579 0.794540
+        <Tangent> { 0.986134 -0.055389 0.156437 }
+        <Binormal> { -0.044677 -0.887556 -0.032621 }
+      }
+      <Normal> { -0.591662 0.000153 0.806177 }
+    }
+    <Vertex> 859 {
+      -0.797626197338 0.88052302599 1.51110291481
+      <UV>  {
+        0.649580 0.794441
+        <Tangent> { 0.915806 -0.247929 -0.315959 }
+        <Binormal> { -0.203624 -0.570842 -0.142271 }
+      }
+      <Normal> { -0.571581 -0.000610 0.820521 }
+    }
+    <Vertex> 860 {
+      -0.863826274872 0.884971857071 1.5283536911
+      <UV>  {
+        0.649638 0.794480
+        <Tangent> { 0.837136 -0.218526 0.501447 }
+        <Binormal> { -0.048849 -0.938013 -0.327226 }
+      }
+      <Normal> { -0.628071 -0.226936 0.744285 }
+    }
+    <Vertex> 861 {
+      -0.79841196537 0.122044183314 3.51198530197
+      <UV>  {
+        0.687692 0.863782
+        <Tangent> { -0.998621 -0.004429 -0.052307 }
+        <Binormal> { -0.000434 0.046050 0.004377 }
+      }
+      <Normal> { 0.995148 0.000031 0.098239 }
+    }
+    <Vertex> 862 {
+      -0.79841196537 0.195963606238 3.70800447464
+      <UV>  {
+        0.688273 0.876805
+        <Tangent> { -0.998909 -0.028189 -0.037230 }
+        <Binormal> { -0.018921 0.643841 0.020171 }
+      }
+      <Normal> { 0.740410 0.000702 0.672140 }
+    }
+    <Vertex> 863 {
+      -0.90685147047 0.119267016649 3.45671916008
+      <UV>  {
+        0.683135 0.861995
+        <Tangent> { -0.918340 0.371002 -0.137872 }
+        <Binormal> { 0.048585 0.136480 0.043639 }
+      }
+      <Normal> { 0.872738 -0.400098 0.279641 }
+    }
+    <Vertex> 864 {
+      -0.90685147047 0.217205867171 3.61245656013
+      <UV>  {
+        0.682264 0.871594
+        <Tangent> { -0.785975 0.605598 -0.124478 }
+        <Binormal> { 0.241363 0.327762 0.070593 }
+      }
+      <Normal> { 0.632191 -0.576922 0.517136 }
+    }
+    <Vertex> 865 {
+      -0.90685147047 0.119267016649 3.45671916008
+      <UV>  {
+        0.683135 0.861995
+        <Tangent> { -0.918340 0.371002 -0.137872 }
+        <Binormal> { 0.048585 0.136480 0.043639 }
+      }
+      <Normal> { 0.872738 -0.400098 0.279641 }
+    }
+    <Vertex> 866 {
+      -0.79841196537 0.195963606238 3.70800447464
+      <UV>  {
+        0.688273 0.876805
+        <Tangent> { -0.998909 -0.028189 -0.037230 }
+        <Binormal> { -0.018921 0.643841 0.020171 }
+      }
+      <Normal> { 0.740410 0.000702 0.672140 }
+    }
+    <Vertex> 867 {
+      -0.95082783699 0.129969730973 3.30753993988
+      <UV>  {
+        0.680837 0.854819
+        <Tangent> { -0.898818 0.427922 -0.094922 }
+        <Binormal> { -0.114312 -0.240434 -0.001494 }
+      }
+      <Normal> { 0.889828 -0.421979 -0.173528 }
+    }
+    <Vertex> 868 {
+      -0.79841196537 0.122044183314 3.51198530197
+      <UV>  {
+        0.687692 0.863782
+        <Tangent> { -0.998621 -0.004429 -0.052307 }
+        <Binormal> { -0.000434 0.046050 0.004377 }
+      }
+      <Normal> { 0.995148 0.000031 0.098239 }
+    }
+    <Vertex> 869 {
+      -0.90685147047 0.119267016649 3.45671916008
+      <UV>  {
+        0.683135 0.861995
+        <Tangent> { -0.918340 0.371002 -0.137872 }
+        <Binormal> { 0.048585 0.136480 0.043639 }
+      }
+      <Normal> { 0.872738 -0.400098 0.279641 }
+    }
+    <Vertex> 870 {
+      -1.05969631672 0.277934342623 3.51673126221
+      <UV>  {
+        0.673434 0.865851
+        <Tangent> { -0.545365 0.831277 -0.107493 }
+        <Binormal> { 0.158445 0.109167 0.040353 }
+      }
+      <Normal> { 0.489425 -0.820002 0.296640 }
+    }
+    <Vertex> 871 {
+      -0.90685147047 0.119267016649 3.45671916008
+      <UV>  {
+        0.683135 0.861995
+        <Tangent> { -0.918340 0.371002 -0.137872 }
+        <Binormal> { 0.048585 0.136480 0.043639 }
+      }
+      <Normal> { 0.872738 -0.400098 0.279641 }
+    }
+    <Vertex> 872 {
+      -0.90685147047 0.217205867171 3.61245656013
+      <UV>  {
+        0.682264 0.871594
+        <Tangent> { -0.785975 0.605598 -0.124478 }
+        <Binormal> { 0.241363 0.327762 0.070593 }
+      }
+      <Normal> { 0.632191 -0.576922 0.517136 }
+    }
+    <Vertex> 873 {
+      -1.05969631672 0.277934342623 3.51673126221
+      <UV>  {
+        0.673434 0.865851
+        <Tangent> { -0.545365 0.831277 -0.107493 }
+        <Binormal> { 0.158445 0.109167 0.040353 }
+      }
+      <Normal> { 0.489425 -0.820002 0.296640 }
+    }
+    <Vertex> 874 {
+      -0.95082783699 0.129969730973 3.30753993988
+      <UV>  {
+        0.680837 0.854819
+        <Tangent> { -0.898818 0.427922 -0.094922 }
+        <Binormal> { -0.114312 -0.240434 -0.001494 }
+      }
+      <Normal> { 0.889828 -0.421979 -0.173528 }
+    }
+    <Vertex> 875 {
+      -0.90685147047 0.119267016649 3.45671916008
+      <UV>  {
+        0.683135 0.861995
+        <Tangent> { -0.918340 0.371002 -0.137872 }
+        <Binormal> { 0.048585 0.136480 0.043639 }
+      }
+      <Normal> { 0.872738 -0.400098 0.279641 }
+    }
+    <Vertex> 876 {
+      -0.95082783699 0.456511706114 3.79225111008
+      <UV>  {
+        0.675152 0.888513
+        <Tangent> { -0.449588 0.868953 -0.206859 }
+        <Binormal> { 0.543094 0.323194 0.177279 }
+      }
+      <Normal> { 0.118259 -0.622883 0.773278 }
+    }
+    <Vertex> 877 {
+      -1.05969631672 0.476921260357 3.61367297173
+      <UV>  {
+        0.666363 0.874463
+        <Tangent> { -0.092674 0.973493 -0.209101 }
+        <Binormal> { 0.223835 0.042572 0.098993 }
+      }
+      <Normal> { -0.015503 -0.905332 0.424390 }
+    }
+    <Vertex> 878 {
+      -1.05969631672 0.277934342623 3.51673126221
+      <UV>  {
+        0.673434 0.865851
+        <Tangent> { -0.545365 0.831277 -0.107493 }
+        <Binormal> { 0.158445 0.109167 0.040353 }
+      }
+      <Normal> { 0.489425 -0.820002 0.296640 }
+    }
+    <Vertex> 879 {
+      -1.05969631672 0.277934342623 3.51673126221
+      <UV>  {
+        0.673434 0.865851
+        <Tangent> { -0.545365 0.831277 -0.107493 }
+        <Binormal> { 0.158445 0.109167 0.040353 }
+      }
+      <Normal> { 0.489425 -0.820002 0.296640 }
+    }
+    <Vertex> 880 {
+      -0.90685147047 0.217205867171 3.61245656013
+      <UV>  {
+        0.682264 0.871594
+        <Tangent> { -0.785975 0.605598 -0.124478 }
+        <Binormal> { 0.241363 0.327762 0.070593 }
+      }
+      <Normal> { 0.632191 -0.576922 0.517136 }
+    }
+    <Vertex> 881 {
+      -0.95082783699 0.456511706114 3.79225111008
+      <UV>  {
+        0.675152 0.888513
+        <Tangent> { -0.449588 0.868953 -0.206859 }
+        <Binormal> { 0.543094 0.323194 0.177279 }
+      }
+      <Normal> { 0.118259 -0.622883 0.773278 }
+    }
+    <Vertex> 882 {
+      -0.79841196537 0.195963606238 3.70800447464
+      <UV>  {
+        0.688273 0.876805
+        <Tangent> { -0.998909 -0.028189 -0.037230 }
+        <Binormal> { -0.018921 0.643841 0.020171 }
+      }
+      <Normal> { 0.740410 0.000702 0.672140 }
+    }
+    <Vertex> 883 {
+      -0.79841196537 0.43816062808 3.8000395298
+      <UV>  {
+        0.689340 0.901637
+        <Tangent> { -0.992230 -0.120866 -0.029510 }
+        <Binormal> { -0.121094 0.991720 0.009749 }
+      }
+      <Normal> { -0.068911 -0.018220 0.997436 }
+    }
+    <Vertex> 884 {
+      -0.95082783699 0.456511706114 3.79225111008
+      <UV>  {
+        0.675152 0.888513
+        <Tangent> { -0.449588 0.868953 -0.206859 }
+        <Binormal> { 0.543094 0.323194 0.177279 }
+      }
+      <Normal> { 0.118259 -0.622883 0.773278 }
+    }
+    <Vertex> 885 {
+      -0.95082783699 0.456511706114 3.79225111008
+      <UV>  {
+        0.675152 0.888513
+        <Tangent> { -0.449588 0.868953 -0.206859 }
+        <Binormal> { 0.543094 0.323194 0.177279 }
+      }
+      <Normal> { 0.118259 -0.622883 0.773278 }
+    }
+    <Vertex> 886 {
+      -0.90685147047 0.217205867171 3.61245656013
+      <UV>  {
+        0.682264 0.871594
+        <Tangent> { -0.785975 0.605598 -0.124478 }
+        <Binormal> { 0.241363 0.327762 0.070593 }
+      }
+      <Normal> { 0.632191 -0.576922 0.517136 }
+    }
+    <Vertex> 887 {
+      -0.79841196537 0.195963606238 3.70800447464
+      <UV>  {
+        0.688273 0.876805
+        <Tangent> { -0.998909 -0.028189 -0.037230 }
+        <Binormal> { -0.018921 0.643841 0.020171 }
+      }
+      <Normal> { 0.740410 0.000702 0.672140 }
+    }
+    <Vertex> 888 {
+      -0.79841196537 0.43816062808 3.8000395298
+      <UV>  {
+        0.689340 0.901637
+        <Tangent> { -0.992230 -0.120866 -0.029510 }
+        <Binormal> { -0.121094 0.991720 0.009749 }
+      }
+      <Normal> { -0.068911 -0.018220 0.997436 }
+    }
+    <Vertex> 889 {
+      -0.79841196537 0.738485217094 3.73222446442
+      <UV>  {
+        0.652074 0.912455
+        <Tangent> { -0.230677 0.928637 -0.290554 }
+        <Binormal> { 0.672418 0.365828 0.635372 }
+      }
+      <Normal> { -0.672964 -0.045228 0.738243 }
+    }
+    <Vertex> 890 {
+      -0.911635160446 0.68100976944 3.70551323891
+      <UV>  {
+        0.653292 0.893966
+        <Tangent> { 0.268951 0.873444 -0.405907 }
+        <Binormal> { 0.393494 0.091976 0.458643 }
+      }
+      <Normal> { -0.650777 -0.408155 0.640187 }
+    }
+    <Vertex> 891 {
+      -0.79841196537 0.738485217094 3.73222446442
+      <UV>  {
+        0.639897 0.901512
+        <Tangent> { 0.666227 0.709885 -0.228483 }
+        <Binormal> { 0.513733 -0.338077 0.447594 }
+      }
+      <Normal> { -0.672964 -0.045228 0.738243 }
+    }
+    <Vertex> 892 {
+      -0.95082783699 0.839179456234 3.35856223106
+      <UV>  {
+        0.635693 0.862263
+        <Tangent> { 0.729978 0.676721 -0.095823 }
+        <Binormal> { -0.024418 0.036894 0.074531 }
+      }
+      <Normal> { -0.781182 -0.622089 0.052004 }
+    }
+    <Vertex> 893 {
+      -0.911635160446 0.68100976944 3.70551323891
+      <UV>  {
+        0.653292 0.893966
+        <Tangent> { 0.268951 0.873444 -0.405907 }
+        <Binormal> { 0.393494 0.091976 0.458643 }
+      }
+      <Normal> { -0.650777 -0.408155 0.640187 }
+    }
+    <Vertex> 894 {
+      -0.79841196537 0.738485217094 3.73222446442
+      <UV>  {
+        0.639897 0.901512
+        <Tangent> { 0.666227 0.709885 -0.228483 }
+        <Binormal> { 0.513733 -0.338077 0.447594 }
+      }
+      <Normal> { -0.672964 -0.045228 0.738243 }
+    }
+    <Vertex> 895 {
+      -0.79841196537 0.859583377838 3.56752943993
+      <UV>  {
+        0.626007 0.885049
+        <Tangent> { 0.842505 0.535820 -0.055518 }
+        <Binormal> { 0.176070 -0.225093 0.499492 }
+      }
+      <Normal> { -0.944151 -0.007599 0.329386 }
+    }
+    <Vertex> 896 {
+      -0.95082783699 0.839179456234 3.35856223106
+      <UV>  {
+        0.635693 0.862263
+        <Tangent> { 0.729978 0.676721 -0.095823 }
+        <Binormal> { -0.024418 0.036894 0.074531 }
+      }
+      <Normal> { -0.781182 -0.622089 0.052004 }
+    }
+    <Vertex> 897 {
+      -0.95082783699 0.456511706114 3.79225111008
+      <UV>  {
+        0.675152 0.888513
+        <Tangent> { -0.449588 0.868953 -0.206859 }
+        <Binormal> { 0.543094 0.323194 0.177279 }
+      }
+      <Normal> { 0.118259 -0.622883 0.773278 }
+    }
+    <Vertex> 898 {
+      -1.05969631672 0.660601496696 3.51673126221
+      <UV>  {
+        0.653554 0.871431
+        <Tangent> { 0.293691 0.914464 -0.278391 }
+        <Binormal> { 0.049365 0.022438 0.125783 }
+      }
+      <Normal> { -0.412183 -0.855129 0.314310 }
+    }
+    <Vertex> 899 {
+      -1.05969631672 0.476921260357 3.61367297173
+      <UV>  {
+        0.666363 0.874463
+        <Tangent> { -0.092674 0.973493 -0.209101 }
+        <Binormal> { 0.223835 0.042572 0.098993 }
+      }
+      <Normal> { -0.015503 -0.905332 0.424390 }
+    }
+    <Vertex> 900 {
+      -0.95082783699 0.456511706114 3.79225111008
+      <UV>  {
+        0.675152 0.888513
+        <Tangent> { -0.449588 0.868953 -0.206859 }
+        <Binormal> { 0.543094 0.323194 0.177279 }
+      }
+      <Normal> { 0.118259 -0.622883 0.773278 }
+    }
+    <Vertex> 901 {
+      -0.911635160446 0.68100976944 3.70551323891
+      <UV>  {
+        0.653292 0.893966
+        <Tangent> { 0.268951 0.873444 -0.405907 }
+        <Binormal> { 0.393494 0.091976 0.458643 }
+      }
+      <Normal> { -0.650777 -0.408155 0.640187 }
+    }
+    <Vertex> 902 {
+      -1.05969631672 0.660601496696 3.51673126221
+      <UV>  {
+        0.653554 0.871431
+        <Tangent> { 0.293691 0.914464 -0.278391 }
+        <Binormal> { 0.049365 0.022438 0.125783 }
+      }
+      <Normal> { -0.412183 -0.855129 0.314310 }
+    }
+    <Vertex> 903 {
+      -1.05969631672 0.660601496696 3.51673126221
+      <UV>  {
+        0.653554 0.871431
+        <Tangent> { 0.293691 0.914464 -0.278391 }
+        <Binormal> { 0.049365 0.022438 0.125783 }
+      }
+      <Normal> { -0.412183 -0.855129 0.314310 }
+    }
+    <Vertex> 904 {
+      -0.911635160446 0.68100976944 3.70551323891
+      <UV>  {
+        0.653292 0.893966
+        <Tangent> { 0.268951 0.873444 -0.405907 }
+        <Binormal> { 0.393494 0.091976 0.458643 }
+      }
+      <Normal> { -0.650777 -0.408155 0.640187 }
+    }
+    <Vertex> 905 {
+      -0.95082783699 0.839179456234 3.35856223106
+      <UV>  {
+        0.635693 0.862263
+        <Tangent> { 0.729978 0.676721 -0.095823 }
+        <Binormal> { -0.024418 0.036894 0.074531 }
+      }
+      <Normal> { -0.781182 -0.622089 0.052004 }
+    }
+    <Vertex> 906 {
+      -0.79841196537 0.713765025139 2.88561964035
+      <UV>  {
+        0.639948 0.814252
+        <Tangent> { 0.557913 0.827331 0.065247 }
+        <Binormal> { -0.404771 0.215834 0.724328 }
+      }
+      <Normal> { -0.872311 0.004730 -0.488876 }
+    }
+    <Vertex> 907 {
+      -0.95082783699 0.670805931091 3.08304190636
+      <UV>  {
+        0.647989 0.837057
+        <Tangent> { 0.429423 0.894498 0.124372 }
+        <Binormal> { -0.307284 0.137480 0.072196 }
+      }
+      <Normal> { -0.450636 -0.770562 -0.450667 }
+    }
+    <Vertex> 908 {
+      -0.79841196537 0.809790551662 3.00572133064
+      <UV>  {
+        0.629035 0.826571
+        <Tangent> { 0.734690 0.674378 0.073790 }
+        <Binormal> { -0.291342 0.251324 0.603858 }
+      }
+      <Normal> { -0.901547 -0.005615 -0.432630 }
+    }
+    <Vertex> 909 {
+      -0.95082783699 0.670805931091 3.08304190636
+      <UV>  {
+        0.647989 0.837057
+        <Tangent> { 0.429423 0.894498 0.124372 }
+        <Binormal> { -0.307284 0.137480 0.072196 }
+      }
+      <Normal> { -0.450636 -0.770562 -0.450667 }
+    }
+    <Vertex> 910 {
+      -0.95082783699 0.839179456234 3.35856223106
+      <UV>  {
+        0.635693 0.862263
+        <Tangent> { 0.729978 0.676721 -0.095823 }
+        <Binormal> { -0.024418 0.036894 0.074531 }
+      }
+      <Normal> { -0.781182 -0.622089 0.052004 }
+    }
+    <Vertex> 911 {
+      -0.79841196537 0.809790551662 3.00572133064
+      <UV>  {
+        0.629035 0.826571
+        <Tangent> { 0.734690 0.674378 0.073790 }
+        <Binormal> { -0.291342 0.251324 0.603858 }
+      }
+      <Normal> { -0.901547 -0.005615 -0.432630 }
+    }
+    <Vertex> 912 {
+      -0.95082783699 0.670805931091 3.08304190636
+      <UV>  {
+        0.647989 0.837057
+        <Tangent> { 0.429423 0.894498 0.124372 }
+        <Binormal> { -0.307284 0.137480 0.072196 }
+      }
+      <Normal> { -0.450636 -0.770562 -0.450667 }
+    }
+    <Vertex> 913 {
+      -1.05969631672 0.660601496696 3.24121117592
+      <UV>  {
+        0.651122 0.852285
+        <Tangent> { 0.277589 0.960394 -0.024251 }
+        <Binormal> { -0.270413 0.079261 0.043633 }
+      }
+      <Normal> { -0.309885 -0.914945 -0.258461 }
+    }
+    <Vertex> 914 {
+      -0.95082783699 0.839179456234 3.35856223106
+      <UV>  {
+        0.635693 0.862263
+        <Tangent> { 0.729978 0.676721 -0.095823 }
+        <Binormal> { -0.024418 0.036894 0.074531 }
+      }
+      <Normal> { -0.781182 -0.622089 0.052004 }
+    }
+    <Vertex> 915 {
+      -1.05969631672 0.660601496696 3.24121117592
+      <UV>  {
+        0.651122 0.852285
+        <Tangent> { 0.277589 0.960394 -0.024251 }
+        <Binormal> { -0.270413 0.079261 0.043633 }
+      }
+      <Normal> { -0.309885 -0.914945 -0.258461 }
+    }
+    <Vertex> 916 {
+      -1.12066268921 0.487125724554 3.43509578705
+      <UV>  {
+        0.662662 0.863712
+        <Tangent> { -0.032084 0.984435 -0.172797 }
+        <Binormal> { -0.104160 0.004733 0.046304 }
+      }
+      <Normal> { -0.014527 -0.997467 0.069277 }
+    }
+    <Vertex> 917 {
+      -1.05969631672 0.660601496696 3.51673126221
+      <UV>  {
+        0.653554 0.871431
+        <Tangent> { 0.293691 0.914464 -0.278391 }
+        <Binormal> { 0.049365 0.022438 0.125783 }
+      }
+      <Normal> { -0.412183 -0.855129 0.314310 }
+    }
+    <Vertex> 918 {
+      -1.05969631672 0.660601496696 3.24121117592
+      <UV>  {
+        0.651122 0.852285
+        <Tangent> { 0.277589 0.960394 -0.024251 }
+        <Binormal> { -0.270413 0.079261 0.043633 }
+      }
+      <Normal> { -0.309885 -0.914945 -0.258461 }
+    }
+    <Vertex> 919 {
+      -1.05969631672 0.660601496696 3.51673126221
+      <UV>  {
+        0.653554 0.871431
+        <Tangent> { 0.293691 0.914464 -0.278391 }
+        <Binormal> { 0.049365 0.022438 0.125783 }
+      }
+      <Normal> { -0.412183 -0.855129 0.314310 }
+    }
+    <Vertex> 920 {
+      -0.95082783699 0.839179456234 3.35856223106
+      <UV>  {
+        0.635693 0.862263
+        <Tangent> { 0.729978 0.676721 -0.095823 }
+        <Binormal> { -0.024418 0.036894 0.074531 }
+      }
+      <Normal> { -0.781182 -0.622089 0.052004 }
+    }
+    <Vertex> 921 {
+      -0.95082783699 0.129969730973 3.30753993988
+      <UV>  {
+        0.680837 0.854819
+        <Tangent> { -0.898818 0.427922 -0.094922 }
+        <Binormal> { -0.114312 -0.240434 -0.001494 }
+      }
+      <Normal> { 0.889828 -0.421979 -0.173528 }
+    }
+    <Vertex> 922 {
+      -1.05969631672 0.277934342623 3.51673126221
+      <UV>  {
+        0.673434 0.865851
+        <Tangent> { -0.545365 0.831277 -0.107493 }
+        <Binormal> { 0.158445 0.109167 0.040353 }
+      }
+      <Normal> { 0.489425 -0.820002 0.296640 }
+    }
+    <Vertex> 923 {
+      -1.05969631672 0.28813880682 3.24121117592
+      <UV>  {
+        0.671517 0.851471
+        <Tangent> { -0.464277 0.882838 -0.071019 }
+        <Binormal> { -0.358654 -0.185282 0.041410 }
+      }
+      <Normal> { 0.400922 -0.851558 -0.337748 }
+    }
+    <Vertex> 924 {
+      -1.12066268921 0.487125724554 3.43509578705
+      <UV>  {
+        0.662662 0.863712
+        <Tangent> { -0.032084 0.984435 -0.172797 }
+        <Binormal> { -0.104160 0.004733 0.046304 }
+      }
+      <Normal> { -0.014527 -0.997467 0.069277 }
+    }
+    <Vertex> 925 {
+      -1.05969631672 0.476921260357 3.61367297173
+      <UV>  {
+        0.666363 0.874463
+        <Tangent> { -0.092674 0.973493 -0.209101 }
+        <Binormal> { 0.223835 0.042572 0.098993 }
+      }
+      <Normal> { -0.015503 -0.905332 0.424390 }
+    }
+    <Vertex> 926 {
+      -1.05969631672 0.660601496696 3.51673126221
+      <UV>  {
+        0.653554 0.871431
+        <Tangent> { 0.293691 0.914464 -0.278391 }
+        <Binormal> { 0.049365 0.022438 0.125783 }
+      }
+      <Normal> { -0.412183 -0.855129 0.314310 }
+    }
+    <Vertex> 927 {
+      -1.05969631672 0.476921260357 3.61367297173
+      <UV>  {
+        0.666363 0.874463
+        <Tangent> { -0.092674 0.973493 -0.209101 }
+        <Binormal> { 0.223835 0.042572 0.098993 }
+      }
+      <Normal> { -0.015503 -0.905332 0.424390 }
+    }
+    <Vertex> 928 {
+      -1.12066268921 0.487125724554 3.43509578705
+      <UV>  {
+        0.662662 0.863712
+        <Tangent> { -0.032084 0.984435 -0.172797 }
+        <Binormal> { -0.104160 0.004733 0.046304 }
+      }
+      <Normal> { -0.014527 -0.997467 0.069277 }
+    }
+    <Vertex> 929 {
+      -1.05969631672 0.277934342623 3.51673126221
+      <UV>  {
+        0.673434 0.865851
+        <Tangent> { -0.545365 0.831277 -0.107493 }
+        <Binormal> { 0.158445 0.109167 0.040353 }
+      }
+      <Normal> { 0.489425 -0.820002 0.296640 }
+    }
+    <Vertex> 930 {
+      -1.05969631672 0.28813880682 3.24121117592
+      <UV>  {
+        0.671517 0.851471
+        <Tangent> { -0.464277 0.882838 -0.071019 }
+        <Binormal> { -0.358654 -0.185282 0.041410 }
+      }
+      <Normal> { 0.400922 -0.851558 -0.337748 }
+    }
+    <Vertex> 931 {
+      -1.05969631672 0.277934342623 3.51673126221
+      <UV>  {
+        0.673434 0.865851
+        <Tangent> { -0.545365 0.831277 -0.107493 }
+        <Binormal> { 0.158445 0.109167 0.040353 }
+      }
+      <Normal> { 0.489425 -0.820002 0.296640 }
+    }
+    <Vertex> 932 {
+      -1.12066268921 0.487125724554 3.43509578705
+      <UV>  {
+        0.662662 0.863712
+        <Tangent> { -0.032084 0.984435 -0.172797 }
+        <Binormal> { -0.104160 0.004733 0.046304 }
+      }
+      <Normal> { -0.014527 -0.997467 0.069277 }
+    }
+    <Vertex> 933 {
+      -1.01179420948 0.359569996595 3.03201961517
+      <UV>  {
+        0.668924 0.837523
+        <Tangent> { -0.340067 0.930715 0.134623 }
+        <Binormal> { -0.389044 -0.161317 0.132513 }
+      }
+      <Normal> { 0.160070 -0.827754 -0.537736 }
+    }
+    <Vertex> 934 {
+      -1.05969631672 0.660601496696 3.24121117592
+      <UV>  {
+        0.651122 0.852285
+        <Tangent> { 0.277589 0.960394 -0.024251 }
+        <Binormal> { -0.270413 0.079261 0.043633 }
+      }
+      <Normal> { -0.309885 -0.914945 -0.258461 }
+    }
+    <Vertex> 935 {
+      -0.95082783699 0.670805931091 3.08304190636
+      <UV>  {
+        0.647989 0.837057
+        <Tangent> { 0.429423 0.894498 0.124372 }
+        <Binormal> { -0.307284 0.137480 0.072196 }
+      }
+      <Normal> { -0.450636 -0.770562 -0.450667 }
+    }
+    <Vertex> 936 {
+      -1.01179420948 0.359569996595 3.03201961517
+      <UV>  {
+        0.668924 0.837523
+        <Tangent> { -0.340067 0.930715 0.134623 }
+        <Binormal> { -0.389044 -0.161317 0.132513 }
+      }
+      <Normal> { 0.160070 -0.827754 -0.537736 }
+    }
+    <Vertex> 937 {
+      -1.05969631672 0.28813880682 3.24121117592
+      <UV>  {
+        0.671517 0.851471
+        <Tangent> { -0.464277 0.882838 -0.071019 }
+        <Binormal> { -0.358654 -0.185282 0.041410 }
+      }
+      <Normal> { 0.400922 -0.851558 -0.337748 }
+    }
+    <Vertex> 938 {
+      -1.05969631672 0.660601496696 3.24121117592
+      <UV>  {
+        0.651122 0.852285
+        <Tangent> { 0.277589 0.960394 -0.024251 }
+        <Binormal> { -0.270413 0.079261 0.043633 }
+      }
+      <Normal> { -0.309885 -0.914945 -0.258461 }
+    }
+    <Vertex> 939 {
+      -1.05969631672 0.660601496696 3.24121117592
+      <UV>  {
+        0.651122 0.852285
+        <Tangent> { 0.277589 0.960394 -0.024251 }
+        <Binormal> { -0.270413 0.079261 0.043633 }
+      }
+      <Normal> { -0.309885 -0.914945 -0.258461 }
+    }
+    <Vertex> 940 {
+      -1.05969631672 0.28813880682 3.24121117592
+      <UV>  {
+        0.671517 0.851471
+        <Tangent> { -0.464277 0.882838 -0.071019 }
+        <Binormal> { -0.358654 -0.185282 0.041410 }
+      }
+      <Normal> { 0.400922 -0.851558 -0.337748 }
+    }
+    <Vertex> 941 {
+      -1.12066268921 0.487125724554 3.43509578705
+      <UV>  {
+        0.662662 0.863712
+        <Tangent> { -0.032084 0.984435 -0.172797 }
+        <Binormal> { -0.104160 0.004733 0.046304 }
+      }
+      <Normal> { -0.014527 -0.997467 0.069277 }
+    }
+    <Vertex> 942 {
+      -0.85937833786 0.115921750665 3.2922334671
+      <UV>  {
+        0.685444 0.853688
+        <Tangent> { -0.870277 0.459849 0.176514 }
+        <Binormal> { 0.007608 -0.080642 0.247600 }
+      }
+      <Normal> { 0.712119 -0.660787 -0.237098 }
+    }
+    <Vertex> 943 {
+      -0.79841196537 0.122044183314 3.51198530197
+      <UV>  {
+        0.687692 0.863782
+        <Tangent> { -0.998621 -0.004429 -0.052307 }
+        <Binormal> { -0.000434 0.046050 0.004377 }
+      }
+      <Normal> { 0.995148 0.000031 0.098239 }
+    }
+    <Vertex> 944 {
+      -0.95082783699 0.129969730973 3.30753993988
+      <UV>  {
+        0.680837 0.854819
+        <Tangent> { -0.898818 0.427922 -0.094922 }
+        <Binormal> { -0.114312 -0.240434 -0.001494 }
+      }
+      <Normal> { 0.889828 -0.421979 -0.173528 }
+    }
+    <Vertex> 945 {
+      -0.798693180084 0.0840496644378 3.16467523575
+      <UV>  {
+        0.686656 0.848691
+        <Tangent> { -0.999130 -0.020098 -0.036546 }
+        <Binormal> { 0.015325 -0.786331 0.013469 }
+      }
+      <Normal> { 0.645924 -0.000488 -0.763390 }
+    }
+    <Vertex> 946 {
+      -0.85937833786 0.115921750665 3.2922334671
+      <UV>  {
+        0.685444 0.853688
+        <Tangent> { -0.870277 0.459849 0.176514 }
+        <Binormal> { 0.007608 -0.080642 0.247600 }
+      }
+      <Normal> { 0.712119 -0.660787 -0.237098 }
+    }
+    <Vertex> 947 {
+      -0.79841196537 0.216776117682 2.86556959152
+      <UV>  {
+        0.684161 0.827606
+        <Tangent> { -0.997703 0.045675 -0.050027 }
+        <Binormal> { -0.032019 -0.735914 -0.033323 }
+      }
+      <Normal> { 0.712241 0.000793 -0.701895 }
+    }
+    <Vertex> 948 {
+      -1.01179420948 0.359569996595 3.03201961517
+      <UV>  {
+        0.668924 0.837523
+        <Tangent> { -0.340067 0.930715 0.134623 }
+        <Binormal> { -0.389044 -0.161317 0.132513 }
+      }
+      <Normal> { 0.160070 -0.827754 -0.537736 }
+    }
+    <Vertex> 949 {
+      -0.797497332096 0.42620664835 2.85241532326
+      <UV>  {
+        0.680896 0.810762
+        <Tangent> { -0.943545 0.271912 -0.189174 }
+        <Binormal> { -0.184983 -0.785432 -0.206309 }
+      }
+      <Normal> { 0.726859 0.009186 -0.686697 }
+    }
+    <Vertex> 950 {
+      -0.79841196537 0.216776117682 2.86556959152
+      <UV>  {
+        0.684161 0.827606
+        <Tangent> { -0.997703 0.045675 -0.050027 }
+        <Binormal> { -0.032019 -0.735914 -0.033323 }
+      }
+      <Normal> { 0.712241 0.000793 -0.701895 }
+    }
+    <Vertex> 951 {
+      -0.79841196537 0.216776117682 2.86556959152
+      <UV>  {
+        0.684161 0.827606
+        <Tangent> { -0.997703 0.045675 -0.050027 }
+        <Binormal> { -0.032019 -0.735914 -0.033323 }
+      }
+      <Normal> { 0.712241 0.000793 -0.701895 }
+    }
+    <Vertex> 952 {
+      -0.85937833786 0.115921750665 3.2922334671
+      <UV>  {
+        0.685444 0.853688
+        <Tangent> { -0.870277 0.459849 0.176514 }
+        <Binormal> { 0.007608 -0.080642 0.247600 }
+      }
+      <Normal> { 0.712119 -0.660787 -0.237098 }
+    }
+    <Vertex> 953 {
+      -1.01179420948 0.359569996595 3.03201961517
+      <UV>  {
+        0.668924 0.837523
+        <Tangent> { -0.340067 0.930715 0.134623 }
+        <Binormal> { -0.389044 -0.161317 0.132513 }
+      }
+      <Normal> { 0.160070 -0.827754 -0.537736 }
+    }
+    <Vertex> 954 {
+      -1.05969631672 0.28813880682 3.24121117592
+      <UV>  {
+        0.671517 0.851471
+        <Tangent> { -0.464277 0.882838 -0.071019 }
+        <Binormal> { -0.358654 -0.185282 0.041410 }
+      }
+      <Normal> { 0.400922 -0.851558 -0.337748 }
+    }
+    <Vertex> 955 {
+      -1.01179420948 0.359569996595 3.03201961517
+      <UV>  {
+        0.668924 0.837523
+        <Tangent> { -0.340067 0.930715 0.134623 }
+        <Binormal> { -0.389044 -0.161317 0.132513 }
+      }
+      <Normal> { 0.160070 -0.827754 -0.537736 }
+    }
+    <Vertex> 956 {
+      -0.85937833786 0.115921750665 3.2922334671
+      <UV>  {
+        0.685444 0.853688
+        <Tangent> { -0.870277 0.459849 0.176514 }
+        <Binormal> { 0.007608 -0.080642 0.247600 }
+      }
+      <Normal> { 0.712119 -0.660787 -0.237098 }
+    }
+    <Vertex> 957 {
+      -0.85937833786 0.115921750665 3.2922334671
+      <UV>  {
+        0.685444 0.853688
+        <Tangent> { -0.870277 0.459849 0.176514 }
+        <Binormal> { 0.007608 -0.080642 0.247600 }
+      }
+      <Normal> { 0.712119 -0.660787 -0.237098 }
+    }
+    <Vertex> 958 {
+      -0.95082783699 0.129969730973 3.30753993988
+      <UV>  {
+        0.680837 0.854819
+        <Tangent> { -0.898818 0.427922 -0.094922 }
+        <Binormal> { -0.114312 -0.240434 -0.001494 }
+      }
+      <Normal> { 0.889828 -0.421979 -0.173528 }
+    }
+    <Vertex> 959 {
+      -1.05969631672 0.28813880682 3.24121117592
+      <UV>  {
+        0.671517 0.851471
+        <Tangent> { -0.464277 0.882838 -0.071019 }
+        <Binormal> { -0.358654 -0.185282 0.041410 }
+      }
+      <Normal> { 0.400922 -0.851558 -0.337748 }
+    }
+    <Vertex> 960 {
+      -0.798693180084 -0.0384038165212 3.16977739334
+      <UV>  {
+        0.431245 0.687626
+        <Tangent> { -0.449978 0.611827 -0.650529 }
+        <Binormal> { -0.539099 -0.704075 -0.289286 }
+      }
+      <Normal> { 0.472823 0.000000 -0.881130 }
+    }
+    <Vertex> 961 {
+      -0.85937833786 0.115921750665 3.2922334671
+      <UV>  {
+        0.454310 0.701676
+        <Tangent> { 0.282910 0.648782 -0.706431 }
+        <Binormal> { -0.620625 -0.435985 -0.648953 }
+      }
+      <Normal> { 0.712119 -0.660787 -0.237098 }
+    }
+    <Vertex> 962 {
+      -0.798693180084 0.0840496644378 3.16467523575
+      <UV>  {
+        0.444844 0.678525
+        <Tangent> { -0.358241 0.933165 -0.029434 }
+        <Binormal> { -0.712383 -0.292490 -0.602579 }
+      }
+      <Normal> { 0.645924 -0.000488 -0.763390 }
+    }
+    <Vertex> 963 {
+      -0.798693180084 -0.0384038165212 3.16977739334
+      <UV>  {
+        0.431245 0.687626
+        <Tangent> { -0.449978 0.611827 -0.650529 }
+        <Binormal> { -0.539099 -0.704075 -0.289286 }
+      }
+      <Normal> { 0.472823 0.000000 -0.881130 }
+    }
+    <Vertex> 964 {
+      -0.85937833786 -0.058812726289 3.2922334671
+      <UV>  {
+        0.431718 0.690966
+        <Tangent> { 0.780429 0.554225 -0.289423 }
+        <Binormal> { 0.265705 -0.711835 -0.646642 }
+      }
+      <Normal> { 0.511948 -0.465011 0.722251 }
+    }
+    <Vertex> 965 {
+      -0.85937833786 0.115921750665 3.2922334671
+      <UV>  {
+        0.454310 0.701676
+        <Tangent> { 0.282910 0.648782 -0.706431 }
+        <Binormal> { -0.620625 -0.435985 -0.648953 }
+      }
+      <Normal> { 0.712119 -0.660787 -0.237098 }
+    }
+    <Vertex> 966 {
+      -0.797497332096 0.42620664835 2.85241532326
+      <UV>  {
+        0.680896 0.810762
+        <Tangent> { -0.943545 0.271912 -0.189174 }
+        <Binormal> { -0.184983 -0.785432 -0.206309 }
+      }
+      <Normal> { 0.726859 0.009186 -0.686697 }
+    }
+    <Vertex> 967 {
+      -1.01179420948 0.359569996595 3.03201961517
+      <UV>  {
+        0.668924 0.837523
+        <Tangent> { -0.340067 0.930715 0.134623 }
+        <Binormal> { -0.389044 -0.161317 0.132513 }
+      }
+      <Normal> { 0.160070 -0.827754 -0.537736 }
+    }
+    <Vertex> 968 {
+      -0.924699425697 0.55855691433 2.9605884552
+      <UV>  {
+        0.658152 0.824087
+        <Tangent> { 0.132392 0.986907 0.092119 }
+        <Binormal> { -0.312739 0.042073 -0.001277 }
+      }
+      <Normal> { -0.120487 -0.907804 -0.401624 }
+    }
+    <Vertex> 969 {
+      -0.95082783699 0.670805931091 3.08304190636
+      <UV>  {
+        0.647989 0.837057
+        <Tangent> { 0.429423 0.894498 0.124372 }
+        <Binormal> { -0.307284 0.137480 0.072196 }
+      }
+      <Normal> { -0.450636 -0.770562 -0.450667 }
+    }
+    <Vertex> 970 {
+      -0.79841196537 0.713765025139 2.88561964035
+      <UV>  {
+        0.639948 0.814252
+        <Tangent> { 0.557913 0.827331 0.065247 }
+        <Binormal> { -0.404771 0.215834 0.724328 }
+      }
+      <Normal> { -0.872311 0.004730 -0.488876 }
+    }
+    <Vertex> 971 {
+      -0.924699425697 0.55855691433 2.9605884552
+      <UV>  {
+        0.658152 0.824087
+        <Tangent> { 0.132392 0.986907 0.092119 }
+        <Binormal> { -0.312739 0.042073 -0.001277 }
+      }
+      <Normal> { -0.120487 -0.907804 -0.401624 }
+    }
+    <Vertex> 972 {
+      -0.95082783699 0.670805931091 3.08304190636
+      <UV>  {
+        0.647989 0.837057
+        <Tangent> { 0.429423 0.894498 0.124372 }
+        <Binormal> { -0.307284 0.137480 0.072196 }
+      }
+      <Normal> { -0.450636 -0.770562 -0.450667 }
+    }
+    <Vertex> 973 {
+      -0.924699425697 0.55855691433 2.9605884552
+      <UV>  {
+        0.658152 0.824087
+        <Tangent> { 0.132392 0.986907 0.092119 }
+        <Binormal> { -0.312739 0.042073 -0.001277 }
+      }
+      <Normal> { -0.120487 -0.907804 -0.401624 }
+    }
+    <Vertex> 974 {
+      -1.01179420948 0.359569996595 3.03201961517
+      <UV>  {
+        0.668924 0.837523
+        <Tangent> { -0.340067 0.930715 0.134623 }
+        <Binormal> { -0.389044 -0.161317 0.132513 }
+      }
+      <Normal> { 0.160070 -0.827754 -0.537736 }
+    }
+    <Vertex> 975 {
+      -0.92505300045 0.538147985935 2.81262397766
+      <UV>  {
+        0.659424 0.809136
+        <Tangent> { 0.191425 0.952089 -0.238499 }
+        <Binormal> { -0.093263 -0.023780 -0.169784 }
+      }
+      <Normal> { -0.020417 -0.988495 0.149663 }
+    }
+    <Vertex> 976 {
+      -0.797497332096 0.42441290617 2.76228928566
+      <UV>  {
+        0.671441 0.794732
+        <Tangent> { -0.761562 -0.220702 -0.609355 }
+        <Binormal> { -0.125630 -0.044728 0.173211 }
+      }
+      <Normal> { 0.808618 0.006897 0.588275 }
+    }
+    <Vertex> 977 {
+      -0.797497332096 0.42620664835 2.85241532326
+      <UV>  {
+        0.680896 0.810762
+        <Tangent> { -0.943545 0.271912 -0.189174 }
+        <Binormal> { -0.184983 -0.785432 -0.206309 }
+      }
+      <Normal> { 0.726859 0.009186 -0.686697 }
+    }
+    <Vertex> 978 {
+      -0.79841196537 0.713765025139 2.88561964035
+      <UV>  {
+        0.639948 0.814252
+        <Tangent> { 0.557913 0.827331 0.065247 }
+        <Binormal> { -0.404771 0.215834 0.724328 }
+      }
+      <Normal> { -0.872311 0.004730 -0.488876 }
+    }
+    <Vertex> 979 {
+      -0.797497332096 0.680560708046 2.75754570961
+      <UV>  {
+        0.646546 0.805109
+        <Tangent> { 0.793689 0.577571 -0.190969 }
+        <Binormal> { 0.153246 -0.025410 0.560057 }
+      }
+      <Normal> { -0.964476 0.003784 0.264077 }
+    }
+    <Vertex> 980 {
+      -0.92505300045 0.538147985935 2.81262397766
+      <UV>  {
+        0.659424 0.809136
+        <Tangent> { 0.191425 0.952089 -0.238499 }
+        <Binormal> { -0.093263 -0.023780 -0.169784 }
+      }
+      <Normal> { -0.020417 -0.988495 0.149663 }
+    }
+    <Vertex> 981 {
+      -0.92505300045 0.538147985935 2.81262397766
+      <UV>  {
+        0.659424 0.809136
+        <Tangent> { 0.191425 0.952089 -0.238499 }
+        <Binormal> { -0.093263 -0.023780 -0.169784 }
+      }
+      <Normal> { -0.020417 -0.988495 0.149663 }
+    }
+    <Vertex> 982 {
+      -0.924699425697 0.55855691433 2.9605884552
+      <UV>  {
+        0.658152 0.824087
+        <Tangent> { 0.132392 0.986907 0.092119 }
+        <Binormal> { -0.312739 0.042073 -0.001277 }
+      }
+      <Normal> { -0.120487 -0.907804 -0.401624 }
+    }
+    <Vertex> 983 {
+      -0.79841196537 0.713765025139 2.88561964035
+      <UV>  {
+        0.639948 0.814252
+        <Tangent> { 0.557913 0.827331 0.065247 }
+        <Binormal> { -0.404771 0.215834 0.724328 }
+      }
+      <Normal> { -0.872311 0.004730 -0.488876 }
+    }
+    <Vertex> 984 {
+      -0.92505300045 0.538147985935 2.81262397766
+      <UV>  {
+        0.659424 0.809136
+        <Tangent> { 0.191425 0.952089 -0.238499 }
+        <Binormal> { -0.093263 -0.023780 -0.169784 }
+      }
+      <Normal> { -0.020417 -0.988495 0.149663 }
+    }
+    <Vertex> 985 {
+      -0.797497332096 0.42620664835 2.85241532326
+      <UV>  {
+        0.680896 0.810762
+        <Tangent> { -0.943545 0.271912 -0.189174 }
+        <Binormal> { -0.184983 -0.785432 -0.206309 }
+      }
+      <Normal> { 0.726859 0.009186 -0.686697 }
+    }
+    <Vertex> 986 {
+      -0.924699425697 0.55855691433 2.9605884552
+      <UV>  {
+        0.658152 0.824087
+        <Tangent> { 0.132392 0.986907 0.092119 }
+        <Binormal> { -0.312739 0.042073 -0.001277 }
+      }
+      <Normal> { -0.120487 -0.907804 -0.401624 }
+    }
+    <Vertex> 987 {
+      -1.2587441206 0.838934838772 4.23738861084
+      <UV>  {
+        0.726815 0.627149
+        <Tangent> { 0.838250 0.499102 0.219621 }
+        <Binormal> { 0.053587 -0.208552 0.269414 }
+      }
+      <Normal> { -0.967071 -0.254402 -0.004578 }
+    }
+    <Vertex> 988 {
+      -1.34177017212 0.725276947021 4.23447608948
+      <UV>  {
+        0.727383 0.644917
+        <Tangent> { 0.294567 0.898643 0.325070 }
+        <Binormal> { -0.087186 0.318196 -0.800635 }
+      }
+      <Normal> { 0.675619 -0.656880 -0.334635 }
+    }
+    <Vertex> 989 {
+      -1.41738379002 0.717469036579 4.36369276047
+      <UV>  {
+        0.720604 0.719435
+        <Tangent> { 0.835126 0.499968 0.229340 }
+        <Binormal> { 0.085470 0.293449 -0.950961 }
+      }
+      <Normal> { 0.581744 -0.790429 -0.191626 }
+    }
+    <Vertex> 990 {
+      -1.41738379002 0.717469036579 4.36369276047
+      <UV>  {
+        0.720604 0.719435
+        <Tangent> { 0.835126 0.499968 0.229340 }
+        <Binormal> { 0.085470 0.293449 -0.950961 }
+      }
+      <Normal> { 0.581744 -0.790429 -0.191626 }
+    }
+    <Vertex> 991 {
+      -1.40085411072 0.71367174387 4.44717025757
+      <UV>  {
+        0.717733 0.762429
+        <Tangent> { 0.838840 0.494068 0.228570 }
+        <Binormal> { 0.080272 0.120731 -0.555560 }
+      }
+      <Normal> { 0.988861 -0.079867 0.125523 }
+    }
+    <Vertex> 992 {
+      -1.2587441206 0.838934838772 4.23738861084
+      <UV>  {
+        0.726815 0.627149
+        <Tangent> { 0.838250 0.499102 0.219621 }
+        <Binormal> { 0.053587 -0.208552 0.269414 }
+      }
+      <Normal> { -0.967071 -0.254402 -0.004578 }
+    }
+    <Vertex> 993 {
+      -1.40085411072 0.71367174387 4.44717025757
+      <UV>  {
+        0.717733 0.762429
+        <Tangent> { 0.838840 0.494068 0.228570 }
+        <Binormal> { 0.080272 0.120731 -0.555560 }
+      }
+      <Normal> { 0.988861 -0.079867 0.125523 }
+    }
+    <Vertex> 994 {
+      -1.1985720396 0.726397752762 4.26716184616
+      <UV>  {
+        0.717733 0.620837
+        <Tangent> { -0.262137 -0.855969 -0.445646 }
+        <Binormal> { -0.084267 -0.359048 0.739203 }
+      }
+      <Normal> { 0.940458 0.251015 0.229133 }
+    }
+    <Vertex> 995 {
+      -1.2587441206 0.838934838772 4.23738861084
+      <UV>  {
+        0.726815 0.627149
+        <Tangent> { 0.838250 0.499102 0.219621 }
+        <Binormal> { 0.053587 -0.208552 0.269414 }
+      }
+      <Normal> { -0.967071 -0.254402 -0.004578 }
+    }
+    <Vertex> 996 {
+      -1.34177017212 0.725276947021 4.23447608948
+      <UV>  {
+        0.727383 0.644917
+        <Tangent> { 0.294567 0.898643 0.325070 }
+        <Binormal> { -0.087186 0.318196 -0.800635 }
+      }
+      <Normal> { 0.675619 -0.656880 -0.334635 }
+    }
+    <Vertex> 997 {
+      -1.2587441206 0.838934838772 4.23738861084
+      <UV>  {
+        0.726815 0.627149
+        <Tangent> { 0.838250 0.499102 0.219621 }
+        <Binormal> { 0.053587 -0.208552 0.269414 }
+      }
+      <Normal> { -0.967071 -0.254402 -0.004578 }
+    }
+    <Vertex> 998 {
+      -1.25751209259 0.696740627289 4.0807185173
+      <UV>  {
+        0.729088 0.600735
+        <Tangent> { 0.311231 0.917496 0.247661 }
+        <Binormal> { -0.086713 0.264771 -0.871913 }
+      }
+      <Normal> { 0.740257 -0.619251 -0.261666 }
+    }
+    <Vertex> 999 {
+      -1.12732613087 0.808799147606 4.05017852783
+      <UV>  {
+        0.727946 0.602261
+        <Tangent> { 0.987614 -0.090174 0.128402 }
+        <Binormal> { -0.075426 -0.091035 0.516215 }
+      }
+      <Normal> { -0.802881 0.595996 -0.012207 }
+    }
+    <Vertex> 1000 {
+      -1.13722026348 0.696238100529 3.85290956497
+      <UV>  {
+        0.728386 0.565778
+        <Tangent> { -0.003477 0.540082 -0.841605 }
+        <Binormal> { -0.832536 -0.461987 -0.293031 }
+      }
+      <Normal> { 0.546770 -0.652760 -0.524308 }
+    }
+    <Vertex> 1001 {
+      -1.2587441206 0.838934838772 4.23738861084
+      <UV>  {
+        0.726815 0.627149
+        <Tangent> { 0.838250 0.499102 0.219621 }
+        <Binormal> { 0.053587 -0.208552 0.269414 }
+      }
+      <Normal> { -0.967071 -0.254402 -0.004578 }
+    }
+    <Vertex> 1002 {
+      -1.13722026348 0.696238100529 3.85290956497
+      <UV>  {
+        0.728386 0.565778
+        <Tangent> { -0.003477 0.540082 -0.841605 }
+        <Binormal> { -0.832536 -0.461987 -0.293031 }
+      }
+      <Normal> { 0.546770 -0.652760 -0.524308 }
+    }
+    <Vertex> 1003 {
+      -1.25751209259 0.696740627289 4.0807185173
+      <UV>  {
+        0.729088 0.600735
+        <Tangent> { 0.311231 0.917496 0.247661 }
+        <Binormal> { -0.086713 0.264771 -0.871913 }
+      }
+      <Normal> { 0.740257 -0.619251 -0.261666 }
+    }
+    <Vertex> 1004 {
+      -1.2587441206 0.838934838772 4.23738861084
+      <UV>  {
+        0.726815 0.627149
+        <Tangent> { 0.838250 0.499102 0.219621 }
+        <Binormal> { 0.053587 -0.208552 0.269414 }
+      }
+      <Normal> { -0.967071 -0.254402 -0.004578 }
+    }
+    <Vertex> 1005 {
+      -1.1985720396 0.726397752762 4.26716184616
+      <UV>  {
+        0.717733 0.620837
+        <Tangent> { -0.262137 -0.855969 -0.445646 }
+        <Binormal> { -0.084267 -0.359048 0.739203 }
+      }
+      <Normal> { 0.940458 0.251015 0.229133 }
+    }
+    <Vertex> 1006 {
+      -1.04523706436 0.6972463727 4.09338283539
+      <UV>  {
+        0.723001 0.592835
+        <Tangent> { -0.590781 -0.112259 -0.798984 }
+        <Binormal> { 0.408242 -0.147911 -0.281078 }
+      }
+      <Normal> { 0.592212 0.588305 0.550554 }
+    }
+    <Vertex> 1007 {
+      -1.2587441206 0.838934838772 4.23738861084
+      <UV>  {
+        0.726815 0.627149
+        <Tangent> { 0.838250 0.499102 0.219621 }
+        <Binormal> { 0.053587 -0.208552 0.269414 }
+      }
+      <Normal> { -0.967071 -0.254402 -0.004578 }
+    }
+    <Vertex> 1008 {
+      -1.04523706436 0.6972463727 4.09338283539
+      <UV>  {
+        0.723001 0.592835
+        <Tangent> { -0.590781 -0.112259 -0.798984 }
+        <Binormal> { 0.408242 -0.147911 -0.281078 }
+      }
+      <Normal> { 0.592212 0.588305 0.550554 }
+    }
+    <Vertex> 1009 {
+      -1.12732613087 0.808799147606 4.05017852783
+      <UV>  {
+        0.727946 0.602261
+        <Tangent> { 0.987614 -0.090174 0.128402 }
+        <Binormal> { -0.075426 -0.091035 0.516215 }
+      }
+      <Normal> { -0.802881 0.595996 -0.012207 }
+    }
+    <Vertex> 1010 {
+      -1.2587441206 0.838934838772 4.23738861084
+      <UV>  {
+        0.726815 0.627149
+        <Tangent> { 0.838250 0.499102 0.219621 }
+        <Binormal> { 0.053587 -0.208552 0.269414 }
+      }
+      <Normal> { -0.967071 -0.254402 -0.004578 }
+    }
+    <Vertex> 1011 {
+      -1.12732613087 0.808799147606 4.05017852783
+      <UV>  {
+        0.727946 0.602261
+        <Tangent> { 0.987614 -0.090174 0.128402 }
+        <Binormal> { -0.075426 -0.091035 0.516215 }
+      }
+      <Normal> { -0.802881 0.595996 -0.012207 }
+    }
+    <Vertex> 1012 {
+      -1.04523706436 0.6972463727 4.09338283539
+      <UV>  {
+        0.723001 0.592835
+        <Tangent> { -0.590781 -0.112259 -0.798984 }
+        <Binormal> { 0.408242 -0.147911 -0.281078 }
+      }
+      <Normal> { 0.592212 0.588305 0.550554 }
+    }
+    <Vertex> 1013 {
+      -0.992996156216 0.638104856014 3.97648692131
+      <UV>  {
+        0.723382 0.564744
+        <Tangent> { -0.636670 0.640713 -0.429113 }
+        <Binormal> { 0.555475 0.009021 -0.810682 }
+      }
+      <Normal> { 0.633137 0.636158 0.440901 }
+    }
+    <Vertex> 1014 {
+      -0.992996156216 0.638104856014 3.97648692131
+      <UV>  {
+        0.723382 0.564744
+        <Tangent> { -0.636670 0.640713 -0.429113 }
+        <Binormal> { 0.555475 0.009021 -0.810682 }
+      }
+      <Normal> { 0.633137 0.636158 0.440901 }
+    }
+    <Vertex> 1015 {
+      -0.954429447651 0.642639160156 3.88985514641
+      <UV>  {
+        0.724682 0.539105
+        <Tangent> { -0.666581 0.675395 -0.315456 }
+        <Binormal> { 0.487963 0.104714 -0.806908 }
+      }
+      <Normal> { 0.722495 0.478469 0.499008 }
+    }
+    <Vertex> 1016 {
+      -1.12732613087 0.808799147606 4.05017852783
+      <UV>  {
+        0.727946 0.602261
+        <Tangent> { 0.987614 -0.090174 0.128402 }
+        <Binormal> { -0.075426 -0.091035 0.516215 }
+      }
+      <Normal> { -0.802881 0.595996 -0.012207 }
+    }
+    <Vertex> 1017 {
+      -0.954429447651 0.642639160156 3.88985514641
+      <UV>  {
+        0.724682 0.539105
+        <Tangent> { -0.666581 0.675395 -0.315456 }
+        <Binormal> { 0.487963 0.104714 -0.806908 }
+      }
+      <Normal> { 0.722495 0.478469 0.499008 }
+    }
+    <Vertex> 1018 {
+      -0.868081390858 0.580223917961 3.75778794289
+      <UV>  {
+        0.733155 0.508559
+        <Tangent> { -0.455904 -0.754829 0.471577 }
+        <Binormal> { -0.763832 0.577947 0.186644 }
+      }
+      <Normal> { 0.313883 0.110294 0.943022 }
+    }
+    <Vertex> 1019 {
+      -1.00351023674 0.755449831486 3.86492824554
+      <UV>  {
+        0.720220 0.547835
+        <Tangent> { 0.689035 -0.553172 0.468223 }
+        <Binormal> { -0.011402 -0.317865 -0.358755 }
+      }
+      <Normal> { -0.951933 0.243568 -0.185553 }
+    }
+    <Vertex> 1020 {
+      -1.12732613087 0.808799147606 4.05017852783
+      <UV>  {
+        0.727946 0.602261
+        <Tangent> { 0.987614 -0.090174 0.128402 }
+        <Binormal> { -0.075426 -0.091035 0.516215 }
+      }
+      <Normal> { -0.802881 0.595996 -0.012207 }
+    }
+    <Vertex> 1021 {
+      -1.11058151722 0.648769557476 3.86638450623
+      <UV>  {
+        0.730593 0.554772
+        <Tangent> { -0.486273 0.265674 -0.832440 }
+        <Binormal> { -0.693939 -0.674445 0.190118 }
+      }
+      <Normal> { 0.591388 -0.714072 -0.374584 }
+    }
+    <Vertex> 1022 {
+      -1.13722026348 0.696238100529 3.85290956497
+      <UV>  {
+        0.728386 0.565778
+        <Tangent> { -0.003477 0.540082 -0.841605 }
+        <Binormal> { -0.832536 -0.461987 -0.293031 }
+      }
+      <Normal> { 0.546770 -0.652760 -0.524308 }
+    }
+    <Vertex> 1023 {
+      -1.00351023674 0.755449831486 3.86492824554
+      <UV>  {
+        0.720220 0.547835
+        <Tangent> { 0.689035 -0.553172 0.468223 }
+        <Binormal> { -0.011402 -0.317865 -0.358755 }
+      }
+      <Normal> { -0.951933 0.243568 -0.185553 }
+    }
+    <Vertex> 1024 {
+      -1.00754523277 0.580223917961 3.65527248383
+      <UV>  {
+        0.729613 0.484655
+        <Tangent> { -0.886195 0.110189 -0.450019 }
+        <Binormal> { -0.392150 0.186381 0.817874 }
+      }
+      <Normal> { 0.160558 -0.942869 0.291849 }
+    }
+    <Vertex> 1025 {
+      -1.11058151722 0.648769557476 3.86638450623
+      <UV>  {
+        0.730593 0.554772
+        <Tangent> { -0.486273 0.265674 -0.832440 }
+        <Binormal> { -0.693939 -0.674445 0.190118 }
+      }
+      <Normal> { 0.591388 -0.714072 -0.374584 }
+    }
+    <Vertex> 1026 {
+      -1.00351023674 0.755449831486 3.86492824554
+      <UV>  {
+        0.720220 0.547835
+        <Tangent> { 0.689035 -0.553172 0.468223 }
+        <Binormal> { -0.011402 -0.317865 -0.358755 }
+      }
+      <Normal> { -0.951933 0.243568 -0.185553 }
+    }
+    <Vertex> 1027 {
+      -1.11058151722 0.648769557476 3.86638450623
+      <UV>  {
+        0.730593 0.554772
+        <Tangent> { -0.486273 0.265674 -0.832440 }
+        <Binormal> { -0.693939 -0.674445 0.190118 }
+      }
+      <Normal> { 0.591388 -0.714072 -0.374584 }
+    }
+    <Vertex> 1028 {
+      -1.12732613087 0.808799147606 4.05017852783
+      <UV>  {
+        0.727946 0.602261
+        <Tangent> { 0.987614 -0.090174 0.128402 }
+        <Binormal> { -0.075426 -0.091035 0.516215 }
+      }
+      <Normal> { -0.802881 0.595996 -0.012207 }
+    }
+    <Vertex> 1029 {
+      -1.12732613087 0.808799147606 4.05017852783
+      <UV>  {
+        0.727946 0.602261
+        <Tangent> { 0.987614 -0.090174 0.128402 }
+        <Binormal> { -0.075426 -0.091035 0.516215 }
+      }
+      <Normal> { -0.802881 0.595996 -0.012207 }
+    }
+    <Vertex> 1030 {
+      -0.954429447651 0.642639160156 3.88985514641
+      <UV>  {
+        0.724682 0.539105
+        <Tangent> { -0.666581 0.675395 -0.315456 }
+        <Binormal> { 0.487963 0.104714 -0.806908 }
+      }
+      <Normal> { 0.722495 0.478469 0.499008 }
+    }
+    <Vertex> 1031 {
+      -1.00351023674 0.755449831486 3.86492824554
+      <UV>  {
+        0.720220 0.547835
+        <Tangent> { 0.689035 -0.553172 0.468223 }
+        <Binormal> { -0.011402 -0.317865 -0.358755 }
+      }
+      <Normal> { -0.951933 0.243568 -0.185553 }
+    }
+    <Vertex> 1032 {
+      -1.40085411072 0.71367174387 4.44717025757
+      <UV>  {
+        0.698613 0.871042
+        <Tangent> { -0.563673 0.152631 -0.811773 }
+        <Binormal> { -0.045675 -0.731977 -0.105912 }
+      }
+      <Normal> { 0.988861 -0.079867 0.125523 }
+    }
+    <Vertex> 1033 {
+      -1.1985720396 0.726397752762 4.26716184616
+      <UV>  {
+        0.698613 0.767826
+        <Tangent> { -0.563673 0.152631 -0.811773 }
+        <Binormal> { 0.238740 -0.634283 -0.285034 }
+      }
+      <Normal> { 0.940458 0.251015 0.229133 }
+    }
+    <Vertex> 1034 {
+      -1.18953549862 0.721830546856 4.29498100281
+      <UV>  {
+        0.711775 0.771068
+        <Tangent> { -0.563673 0.152631 -0.811773 }
+        <Binormal> { -0.073319 -0.881671 -0.114863 }
+      }
+      <Normal> { 0.987884 -0.063723 -0.141453 }
+    }
+    <Vertex> 1035 {
+      -1.41738379002 0.717469036579 4.36369276047
+      <UV>  {
+        0.720604 0.719435
+        <Tangent> { 0.835126 0.499968 0.229340 }
+        <Binormal> { 0.085470 0.293449 -0.950961 }
+      }
+      <Normal> { 0.581744 -0.790429 -0.191626 }
+    }
+    <Vertex> 1036 {
+      -1.34177017212 0.725276947021 4.23447608948
+      <UV>  {
+        0.727383 0.644917
+        <Tangent> { 0.294567 0.898643 0.325070 }
+        <Binormal> { -0.087186 0.318196 -0.800635 }
+      }
+      <Normal> { 0.675619 -0.656880 -0.334635 }
+    }
+    <Vertex> 1037 {
+      -1.2517888546 0.763100862503 4.22631692886
+      <UV>  {
+        0.723904 0.625164
+        <Tangent> { -0.852890 -0.096196 -0.513152 }
+        <Binormal> { 0.033007 -0.482350 0.035562 }
+      }
+      <Normal> { 0.996887 0.070742 0.034242 }
+    }
+    <Vertex> 1038 {
+      -1.2517888546 0.763100862503 4.22631692886
+      <UV>  {
+        0.723904 0.625164
+        <Tangent> { -0.852890 -0.096196 -0.513152 }
+        <Binormal> { 0.033007 -0.482350 0.035562 }
+      }
+      <Normal> { 0.996887 0.070742 0.034242 }
+    }
+    <Vertex> 1039 {
+      -1.40085411072 0.71367174387 4.44717025757
+      <UV>  {
+        0.717733 0.762429
+        <Tangent> { 0.838840 0.494068 0.228570 }
+        <Binormal> { 0.080272 0.120731 -0.555560 }
+      }
+      <Normal> { 0.988861 -0.079867 0.125523 }
+    }
+    <Vertex> 1040 {
+      -1.41738379002 0.717469036579 4.36369276047
+      <UV>  {
+        0.720604 0.719435
+        <Tangent> { 0.835126 0.499968 0.229340 }
+        <Binormal> { 0.085470 0.293449 -0.950961 }
+      }
+      <Normal> { 0.581744 -0.790429 -0.191626 }
+    }
+    <Vertex> 1041 {
+      -1.2517888546 0.763100862503 4.22631692886
+      <UV>  {
+        0.723904 0.625164
+        <Tangent> { -0.852890 -0.096196 -0.513152 }
+        <Binormal> { 0.033007 -0.482350 0.035562 }
+      }
+      <Normal> { 0.996887 0.070742 0.034242 }
+    }
+    <Vertex> 1042 {
+      -1.1985720396 0.726397752762 4.26716184616
+      <UV>  {
+        0.717733 0.620837
+        <Tangent> { -0.262137 -0.855969 -0.445646 }
+        <Binormal> { -0.084267 -0.359048 0.739203 }
+      }
+      <Normal> { 0.940458 0.251015 0.229133 }
+    }
+    <Vertex> 1043 {
+      -1.40085411072 0.71367174387 4.44717025757
+      <UV>  {
+        0.717733 0.762429
+        <Tangent> { 0.838840 0.494068 0.228570 }
+        <Binormal> { 0.080272 0.120731 -0.555560 }
+      }
+      <Normal> { 0.988861 -0.079867 0.125523 }
+    }
+    <Vertex> 1044 {
+      -1.25751209259 0.696740627289 4.0807185173
+      <UV>  {
+        0.729088 0.600735
+        <Tangent> { 0.311231 0.917496 0.247661 }
+        <Binormal> { -0.086713 0.264771 -0.871913 }
+      }
+      <Normal> { 0.740257 -0.619251 -0.261666 }
+    }
+    <Vertex> 1045 {
+      -1.2517888546 0.763100862503 4.22631692886
+      <UV>  {
+        0.723904 0.625164
+        <Tangent> { -0.852890 -0.096196 -0.513152 }
+        <Binormal> { 0.033007 -0.482350 0.035562 }
+      }
+      <Normal> { 0.996887 0.070742 0.034242 }
+    }
+    <Vertex> 1046 {
+      -1.34177017212 0.725276947021 4.23447608948
+      <UV>  {
+        0.727383 0.644917
+        <Tangent> { 0.294567 0.898643 0.325070 }
+        <Binormal> { -0.087186 0.318196 -0.800635 }
+      }
+      <Normal> { 0.675619 -0.656880 -0.334635 }
+    }
+    <Vertex> 1047 {
+      -1.2517888546 0.763100862503 4.22631692886
+      <UV>  {
+        0.723904 0.625164
+        <Tangent> { -0.852890 -0.096196 -0.513152 }
+        <Binormal> { 0.033007 -0.482350 0.035562 }
+      }
+      <Normal> { 0.996887 0.070742 0.034242 }
+    }
+    <Vertex> 1048 {
+      -1.13722026348 0.696238100529 3.85290956497
+      <UV>  {
+        0.728386 0.565778
+        <Tangent> { -0.003477 0.540082 -0.841605 }
+        <Binormal> { -0.832536 -0.461987 -0.293031 }
+      }
+      <Normal> { 0.546770 -0.652760 -0.524308 }
+    }
+    <Vertex> 1049 {
+      -1.12779867649 0.732238531113 4.05168104172
+      <UV>  {
+        0.721832 0.601111
+        <Tangent> { -0.559596 0.470971 -0.681937 }
+        <Binormal> { -0.262254 -0.578568 -0.184375 }
+      }
+      <Normal> { 0.901059 -0.428877 0.064150 }
+    }
+    <Vertex> 1050 {
+      -1.2517888546 0.763100862503 4.22631692886
+      <UV>  {
+        0.723904 0.625164
+        <Tangent> { -0.852890 -0.096196 -0.513152 }
+        <Binormal> { 0.033007 -0.482350 0.035562 }
+      }
+      <Normal> { 0.996887 0.070742 0.034242 }
+    }
+    <Vertex> 1051 {
+      -1.25751209259 0.696740627289 4.0807185173
+      <UV>  {
+        0.729088 0.600735
+        <Tangent> { 0.311231 0.917496 0.247661 }
+        <Binormal> { -0.086713 0.264771 -0.871913 }
+      }
+      <Normal> { 0.740257 -0.619251 -0.261666 }
+    }
+    <Vertex> 1052 {
+      -1.13722026348 0.696238100529 3.85290956497
+      <UV>  {
+        0.728386 0.565778
+        <Tangent> { -0.003477 0.540082 -0.841605 }
+        <Binormal> { -0.832536 -0.461987 -0.293031 }
+      }
+      <Normal> { 0.546770 -0.652760 -0.524308 }
+    }
+    <Vertex> 1053 {
+      -1.2517888546 0.763100862503 4.22631692886
+      <UV>  {
+        0.723904 0.625164
+        <Tangent> { -0.852890 -0.096196 -0.513152 }
+        <Binormal> { 0.033007 -0.482350 0.035562 }
+      }
+      <Normal> { 0.996887 0.070742 0.034242 }
+    }
+    <Vertex> 1054 {
+      -1.04523706436 0.6972463727 4.09338283539
+      <UV>  {
+        0.723001 0.592835
+        <Tangent> { -0.590781 -0.112259 -0.798984 }
+        <Binormal> { 0.408242 -0.147911 -0.281078 }
+      }
+      <Normal> { 0.592212 0.588305 0.550554 }
+    }
+    <Vertex> 1055 {
+      -1.1985720396 0.726397752762 4.26716184616
+      <UV>  {
+        0.717733 0.620837
+        <Tangent> { -0.262137 -0.855969 -0.445646 }
+        <Binormal> { -0.084267 -0.359048 0.739203 }
+      }
+      <Normal> { 0.940458 0.251015 0.229133 }
+    }
+    <Vertex> 1056 {
+      -1.2517888546 0.763100862503 4.22631692886
+      <UV>  {
+        0.723904 0.625164
+        <Tangent> { -0.852890 -0.096196 -0.513152 }
+        <Binormal> { 0.033007 -0.482350 0.035562 }
+      }
+      <Normal> { 0.996887 0.070742 0.034242 }
+    }
+    <Vertex> 1057 {
+      -1.12779867649 0.732238531113 4.05168104172
+      <UV>  {
+        0.721832 0.601111
+        <Tangent> { -0.559596 0.470971 -0.681937 }
+        <Binormal> { -0.262254 -0.578568 -0.184375 }
+      }
+      <Normal> { 0.901059 -0.428877 0.064150 }
+    }
+    <Vertex> 1058 {
+      -1.04523706436 0.6972463727 4.09338283539
+      <UV>  {
+        0.723001 0.592835
+        <Tangent> { -0.590781 -0.112259 -0.798984 }
+        <Binormal> { 0.408242 -0.147911 -0.281078 }
+      }
+      <Normal> { 0.592212 0.588305 0.550554 }
+    }
+    <Vertex> 1059 {
+      -0.992996156216 0.638104856014 3.97648692131
+      <UV>  {
+        0.723382 0.564744
+        <Tangent> { -0.636670 0.640713 -0.429113 }
+        <Binormal> { 0.555475 0.009021 -0.810682 }
+      }
+      <Normal> { 0.633137 0.636158 0.440901 }
+    }
+    <Vertex> 1060 {
+      -1.04523706436 0.6972463727 4.09338283539
+      <UV>  {
+        0.723001 0.592835
+        <Tangent> { -0.590781 -0.112259 -0.798984 }
+        <Binormal> { 0.408242 -0.147911 -0.281078 }
+      }
+      <Normal> { 0.592212 0.588305 0.550554 }
+    }
+    <Vertex> 1061 {
+      -1.12779867649 0.732238531113 4.05168104172
+      <UV>  {
+        0.721832 0.601111
+        <Tangent> { -0.559596 0.470971 -0.681937 }
+        <Binormal> { -0.262254 -0.578568 -0.184375 }
+      }
+      <Normal> { 0.901059 -0.428877 0.064150 }
+    }
+    <Vertex> 1062 {
+      -1.12779867649 0.732238531113 4.05168104172
+      <UV>  {
+        0.721832 0.601111
+        <Tangent> { -0.559596 0.470971 -0.681937 }
+        <Binormal> { -0.262254 -0.578568 -0.184375 }
+      }
+      <Normal> { 0.901059 -0.428877 0.064150 }
+    }
+    <Vertex> 1063 {
+      -0.954429447651 0.642639160156 3.88985514641
+      <UV>  {
+        0.724682 0.539105
+        <Tangent> { -0.666581 0.675395 -0.315456 }
+        <Binormal> { 0.487963 0.104714 -0.806908 }
+      }
+      <Normal> { 0.722495 0.478469 0.499008 }
+    }
+    <Vertex> 1064 {
+      -0.992996156216 0.638104856014 3.97648692131
+      <UV>  {
+        0.723382 0.564744
+        <Tangent> { -0.636670 0.640713 -0.429113 }
+        <Binormal> { 0.555475 0.009021 -0.810682 }
+      }
+      <Normal> { 0.633137 0.636158 0.440901 }
+    }
+    <Vertex> 1065 {
+      -1.00597155094 0.679318726063 3.87275314331
+      <UV>  {
+        0.731925 0.541815
+        <Tangent> { -0.891908 -0.221035 -0.394518 }
+        <Binormal> { -0.137025 -0.157298 0.397910 }
+      }
+      <Normal> { 0.946806 -0.211493 0.242439 }
+    }
+    <Vertex> 1066 {
+      -0.868081390858 0.580223917961 3.75778794289
+      <UV>  {
+        0.733155 0.508559
+        <Tangent> { -0.455904 -0.754829 0.471577 }
+        <Binormal> { -0.763832 0.577947 0.186644 }
+      }
+      <Normal> { 0.313883 0.110294 0.943022 }
+    }
+    <Vertex> 1067 {
+      -0.954429447651 0.642639160156 3.88985514641
+      <UV>  {
+        0.724682 0.539105
+        <Tangent> { -0.666581 0.675395 -0.315456 }
+        <Binormal> { 0.487963 0.104714 -0.806908 }
+      }
+      <Normal> { 0.722495 0.478469 0.499008 }
+    }
+    <Vertex> 1068 {
+      -1.13722026348 0.696238100529 3.85290956497
+      <UV>  {
+        0.728386 0.565778
+        <Tangent> { -0.003477 0.540082 -0.841605 }
+        <Binormal> { -0.832536 -0.461987 -0.293031 }
+      }
+      <Normal> { 0.546770 -0.652760 -0.524308 }
+    }
+    <Vertex> 1069 {
+      -1.11058151722 0.648769557476 3.86638450623
+      <UV>  {
+        0.730593 0.554772
+        <Tangent> { -0.486273 0.265674 -0.832440 }
+        <Binormal> { -0.693939 -0.674445 0.190118 }
+      }
+      <Normal> { 0.591388 -0.714072 -0.374584 }
+    }
+    <Vertex> 1070 {
+      -1.12779867649 0.732238531113 4.05168104172
+      <UV>  {
+        0.721832 0.601111
+        <Tangent> { -0.559596 0.470971 -0.681937 }
+        <Binormal> { -0.262254 -0.578568 -0.184375 }
+      }
+      <Normal> { 0.901059 -0.428877 0.064150 }
+    }
+    <Vertex> 1071 {
+      -1.11058151722 0.648769557476 3.86638450623
+      <UV>  {
+        0.730593 0.554772
+        <Tangent> { -0.486273 0.265674 -0.832440 }
+        <Binormal> { -0.693939 -0.674445 0.190118 }
+      }
+      <Normal> { 0.591388 -0.714072 -0.374584 }
+    }
+    <Vertex> 1072 {
+      -1.00754523277 0.580223917961 3.65527248383
+      <UV>  {
+        0.729613 0.484655
+        <Tangent> { -0.886195 0.110189 -0.450019 }
+        <Binormal> { -0.392150 0.186381 0.817874 }
+      }
+      <Normal> { 0.160558 -0.942869 0.291849 }
+    }
+    <Vertex> 1073 {
+      -1.00597155094 0.679318726063 3.87275314331
+      <UV>  {
+        0.731925 0.541815
+        <Tangent> { -0.891908 -0.221035 -0.394518 }
+        <Binormal> { -0.137025 -0.157298 0.397910 }
+      }
+      <Normal> { 0.946806 -0.211493 0.242439 }
+    }
+    <Vertex> 1074 {
+      -1.12779867649 0.732238531113 4.05168104172
+      <UV>  {
+        0.721832 0.601111
+        <Tangent> { -0.559596 0.470971 -0.681937 }
+        <Binormal> { -0.262254 -0.578568 -0.184375 }
+      }
+      <Normal> { 0.901059 -0.428877 0.064150 }
+    }
+    <Vertex> 1075 {
+      -1.11058151722 0.648769557476 3.86638450623
+      <UV>  {
+        0.730593 0.554772
+        <Tangent> { -0.486273 0.265674 -0.832440 }
+        <Binormal> { -0.693939 -0.674445 0.190118 }
+      }
+      <Normal> { 0.591388 -0.714072 -0.374584 }
+    }
+    <Vertex> 1076 {
+      -1.00597155094 0.679318726063 3.87275314331
+      <UV>  {
+        0.731925 0.541815
+        <Tangent> { -0.891908 -0.221035 -0.394518 }
+        <Binormal> { -0.137025 -0.157298 0.397910 }
+      }
+      <Normal> { 0.946806 -0.211493 0.242439 }
+    }
+    <Vertex> 1077 {
+      -1.00597155094 0.679318726063 3.87275314331
+      <UV>  {
+        0.731925 0.541815
+        <Tangent> { -0.891908 -0.221035 -0.394518 }
+        <Binormal> { -0.137025 -0.157298 0.397910 }
+      }
+      <Normal> { 0.946806 -0.211493 0.242439 }
+    }
+    <Vertex> 1078 {
+      -0.954429447651 0.642639160156 3.88985514641
+      <UV>  {
+        0.724682 0.539105
+        <Tangent> { -0.666581 0.675395 -0.315456 }
+        <Binormal> { 0.487963 0.104714 -0.806908 }
+      }
+      <Normal> { 0.722495 0.478469 0.499008 }
+    }
+    <Vertex> 1079 {
+      -1.12779867649 0.732238531113 4.05168104172
+      <UV>  {
+        0.721832 0.601111
+        <Tangent> { -0.559596 0.470971 -0.681937 }
+        <Binormal> { -0.262254 -0.578568 -0.184375 }
+      }
+      <Normal> { 0.901059 -0.428877 0.064150 }
+    }
+    <Vertex> 1080 {
+      -1.00754523277 0.580223917961 3.65527248383
+      <UV>  {
+        0.729613 0.484655
+        <Tangent> { -0.886195 0.110189 -0.450019 }
+        <Binormal> { -0.392150 0.186381 0.817874 }
+      }
+      <Normal> { 0.160558 -0.942869 0.291849 }
+    }
+    <Vertex> 1081 {
+      -0.868081390858 0.580223917961 3.75778794289
+      <UV>  {
+        0.733155 0.508559
+        <Tangent> { -0.455904 -0.754829 0.471577 }
+        <Binormal> { -0.763832 0.577947 0.186644 }
+      }
+      <Normal> { 0.313883 0.110294 0.943022 }
+    }
+    <Vertex> 1082 {
+      -1.00597155094 0.679318726063 3.87275314331
+      <UV>  {
+        0.731925 0.541815
+        <Tangent> { -0.891908 -0.221035 -0.394518 }
+        <Binormal> { -0.137025 -0.157298 0.397910 }
+      }
+      <Normal> { 0.946806 -0.211493 0.242439 }
+    }
+    <Vertex> 1083 {
+      -1.00754523277 0.580223917961 3.65527248383
+      <UV>  {
+        0.733155 0.508559
+        <Tangent> { 0.799113 -0.055682 0.598596 }
+        <Binormal> { 0.548147 -0.137111 -0.744519 }
+      }
+      <Normal> { 0.160558 -0.942869 0.291849 }
+    }
+    <Vertex> 1084 {
+      -0.868081390858 0.580223917961 3.75778794289
+      <UV>  {
+        0.730116 0.506398
+        <Tangent> { 0.799113 -0.055682 0.598596 }
+        <Binormal> { -0.118531 -0.565692 0.105615 }
+      }
+      <Normal> { 0.313883 0.110294 0.943022 }
+    }
+    <Vertex> 1085 {
+      -0.911635160446 0.68100976944 3.70551323891
+      <UV>  {
+        0.729613 0.484655
+        <Tangent> { 0.799113 -0.055682 0.598596 }
+        <Binormal> { 0.208673 -0.901134 -0.362399 }
+      }
+      <Normal> { -0.650777 -0.408155 0.640187 }
+    }
+    <Vertex> 1086 {
+      -0.797497272491 0.837095499039 2.1598675251
+      <UV>  {
+        0.804856 0.606755
+        <Tangent> { 0.969525 -0.244986 0.001857 }
+        <Binormal> { -0.045392 -0.181456 -0.239940 }
+      }
+      <Normal> { -0.982665 0.000824 0.185278 }
+    }
+    <Vertex> 1087 {
+      -0.706315517426 0.827808439732 2.08447504044
+      <UV>  {
+        0.778839 0.583766
+        <Tangent> { 0.945173 -0.322672 0.050311 }
+        <Binormal> { -0.066779 -0.197545 -0.012413 }
+      }
+      <Normal> { -0.938231 0.307169 0.159062 }
+    }
+    <Vertex> 1088 {
+      -0.706315517426 0.8608533144 1.94049656391
+      <UV>  {
+        0.777584 0.542880
+        <Tangent> { 0.224932 -0.086736 0.970506 }
+        <Binormal> { -0.263456 -0.961348 -0.024857 }
+      }
+      <Normal> { -0.952178 0.256661 0.165624 }
+    }
+    <Vertex> 1089 {
+      -0.706315517426 0.8608533144 1.94049656391
+      <UV>  {
+        0.777584 0.542880
+        <Tangent> { 0.224932 -0.086736 0.970506 }
+        <Binormal> { -0.263456 -0.961348 -0.024857 }
+      }
+      <Normal> { -0.952178 0.256661 0.165624 }
+    }
+    <Vertex> 1090 {
+      -0.706315517426 0.878551721573 1.65056419373
+      <UV>  {
+        0.766693 0.546688
+        <Tangent> { 0.328652 0.035009 -0.943802 }
+        <Binormal> { 0.109876 0.953429 0.073627 }
+      }
+      <Normal> { -0.991485 0.118412 -0.053743 }
+    }
+    <Vertex> 1091 {
+      -0.797497272491 0.889273703098 1.70570719242
+      <UV>  {
+        0.790450 0.551178
+        <Tangent> { 0.153449 -0.082743 0.984686 }
+        <Binormal> { 0.001859 -0.980266 -0.082661 }
+      }
+      <Normal> { -0.999634 0.000336 -0.026460 }
+    }
+    <Vertex> 1092 {
+      -0.797497272491 0.889273703098 1.70570719242
+      <UV>  {
+        0.790450 0.551178
+        <Tangent> { 0.153449 -0.082743 0.984686 }
+        <Binormal> { 0.001859 -0.980266 -0.082661 }
+      }
+      <Normal> { -0.999634 0.000336 -0.026460 }
+    }
+    <Vertex> 1093 {
+      -0.797497272491 0.870299816132 2.00807619095
+      <UV>  {
+        0.804751 0.558127
+        <Tangent> { 0.174254 -0.089598 0.980616 }
+        <Binormal> { -0.012999 -0.995249 -0.088625 }
+      }
+      <Normal> { -0.990448 0.000671 0.137730 }
+    }
+    <Vertex> 1094 {
+      -0.706315517426 0.8608533144 1.94049656391
+      <UV>  {
+        0.777584 0.542880
+        <Tangent> { 0.224932 -0.086736 0.970506 }
+        <Binormal> { -0.263456 -0.961348 -0.024857 }
+      }
+      <Normal> { -0.952178 0.256661 0.165624 }
+    }
+    <Vertex> 1095 {
+      -0.706315517426 0.8608533144 1.94049656391
+      <UV>  {
+        0.777584 0.542880
+        <Tangent> { 0.224932 -0.086736 0.970506 }
+        <Binormal> { -0.263456 -0.961348 -0.024857 }
+      }
+      <Normal> { -0.952178 0.256661 0.165624 }
+    }
+    <Vertex> 1096 {
+      -0.797497272491 0.870299816132 2.00807619095
+      <UV>  {
+        0.804751 0.558127
+        <Tangent> { 0.174254 -0.089598 0.980616 }
+        <Binormal> { -0.012999 -0.995249 -0.088625 }
+      }
+      <Normal> { -0.990448 0.000671 0.137730 }
+    }
+    <Vertex> 1097 {
+      -0.797497272491 0.837095499039 2.1598675251
+      <UV>  {
+        0.804856 0.606755
+        <Tangent> { 0.969525 -0.244986 0.001857 }
+        <Binormal> { -0.045392 -0.181456 -0.239940 }
+      }
+      <Normal> { -0.982665 0.000824 0.185278 }
+    }
+    <Vertex> 1098 {
+      -0.497124165297 0.755284130573 2.02752232552
+      <UV>  {
+        0.725073 0.566581
+        <Tangent> { 0.526138 -0.334226 -0.781967 }
+        <Binormal> { 0.509954 0.443753 0.153449 }
+      }
+      <Normal> { -0.674917 0.720389 0.159673 }
+    }
+    <Vertex> 1099 {
+      -0.497124165297 0.802291035652 1.9043251276
+      <UV>  {
+        0.730303 0.580232
+        <Tangent> { -0.033764 0.110493 -0.993303 }
+        <Binormal> { 0.611522 0.784371 0.066465 }
+      }
+      <Normal> { -0.783776 0.596393 0.173070 }
+    }
+    <Vertex> 1100 {
+      -0.706315517426 0.8608533144 1.94049656391
+      <UV>  {
+        0.777584 0.542880
+        <Tangent> { 0.224932 -0.086736 0.970506 }
+        <Binormal> { -0.263456 -0.961348 -0.024857 }
+      }
+      <Normal> { -0.952178 0.256661 0.165624 }
+    }
+    <Vertex> 1101 {
+      -0.706315517426 0.827808439732 2.08447504044
+      <UV>  {
+        0.778839 0.583766
+        <Tangent> { 0.945173 -0.322672 0.050311 }
+        <Binormal> { -0.066779 -0.197545 -0.012413 }
+      }
+      <Normal> { -0.938231 0.307169 0.159062 }
+    }
+    <Vertex> 1102 {
+      -0.497124165297 0.755284130573 2.02752232552
+      <UV>  {
+        0.725073 0.566581
+        <Tangent> { 0.526138 -0.334226 -0.781967 }
+        <Binormal> { 0.509954 0.443753 0.153449 }
+      }
+      <Normal> { -0.674917 0.720389 0.159673 }
+    }
+    <Vertex> 1103 {
+      -0.706315517426 0.8608533144 1.94049656391
+      <UV>  {
+        0.777584 0.542880
+        <Tangent> { 0.224932 -0.086736 0.970506 }
+        <Binormal> { -0.263456 -0.961348 -0.024857 }
+      }
+      <Normal> { -0.952178 0.256661 0.165624 }
+    }
+    <Vertex> 1104 {
+      -0.497124165297 0.802291035652 1.9043251276
+      <UV>  {
+        0.730303 0.580232
+        <Tangent> { -0.033764 0.110493 -0.993303 }
+        <Binormal> { 0.611522 0.784371 0.066465 }
+      }
+      <Normal> { -0.783776 0.596393 0.173070 }
+    }
+    <Vertex> 1105 {
+      -0.497124165297 0.850881814957 1.65348780155
+      <UV>  {
+        0.729321 0.554300
+        <Tangent> { 0.823368 -0.504494 -0.259905 }
+        <Binormal> { 0.143245 0.226151 0.014821 }
+      }
+      <Normal> { -0.844508 0.535447 -0.008087 }
+    }
+    <Vertex> 1106 {
+      -0.706315517426 0.878551721573 1.65056419373
+      <UV>  {
+        0.766693 0.546688
+        <Tangent> { 0.328652 0.035009 -0.943802 }
+        <Binormal> { 0.109876 0.953429 0.073627 }
+      }
+      <Normal> { -0.991485 0.118412 -0.053743 }
+    }
+    <Vertex> 1107 {
+      -0.706315517426 0.8608533144 1.94049656391
+      <UV>  {
+        0.777584 0.542880
+        <Tangent> { 0.224932 -0.086736 0.970506 }
+        <Binormal> { -0.263456 -0.961348 -0.024857 }
+      }
+      <Normal> { -0.952178 0.256661 0.165624 }
+    }
+    <Vertex> 1108 {
+      -0.497124165297 0.802291035652 1.9043251276
+      <UV>  {
+        0.730303 0.580232
+        <Tangent> { -0.033764 0.110493 -0.993303 }
+        <Binormal> { 0.611522 0.784371 0.066465 }
+      }
+      <Normal> { -0.783776 0.596393 0.173070 }
+    }
+    <Vertex> 1109 {
+      -0.706315517426 0.878551721573 1.65056419373
+      <UV>  {
+        0.766693 0.546688
+        <Tangent> { 0.328652 0.035009 -0.943802 }
+        <Binormal> { 0.109876 0.953429 0.073627 }
+      }
+      <Normal> { -0.991485 0.118412 -0.053743 }
+    }
+    <Vertex> 1110 {
+      -0.797497272491 0.837095499039 2.1598675251
+      <UV>  {
+        0.804856 0.606755
+        <Tangent> { 0.969525 -0.244986 0.001857 }
+        <Binormal> { -0.045392 -0.181456 -0.239940 }
+      }
+      <Normal> { -0.982665 0.000824 0.185278 }
+    }
+    <Vertex> 1111 {
+      -0.706315517426 0.801260888577 2.25703406334
+      <UV>  {
+        0.773208 0.633525
+        <Tangent> { 0.925450 -0.357374 0.125803 }
+        <Binormal> { -0.119845 -0.322466 -0.034420 }
+      }
+      <Normal> { -0.921232 0.318552 0.223212 }
+    }
+    <Vertex> 1112 {
+      -0.706315517426 0.827808439732 2.08447504044
+      <UV>  {
+        0.778839 0.583766
+        <Tangent> { 0.945173 -0.322672 0.050311 }
+        <Binormal> { -0.066779 -0.197545 -0.012413 }
+      }
+      <Normal> { -0.938231 0.307169 0.159062 }
+    }
+    <Vertex> 1113 {
+      -0.797497272491 0.837095499039 2.1598675251
+      <UV>  {
+        0.804856 0.606755
+        <Tangent> { 0.969525 -0.244986 0.001857 }
+        <Binormal> { -0.045392 -0.181456 -0.239940 }
+      }
+      <Normal> { -0.982665 0.000824 0.185278 }
+    }
+    <Vertex> 1114 {
+      -0.797497272491 0.808634579182 2.34486317635
+      <UV>  {
+        0.793662 0.663788
+        <Tangent> { 0.944947 -0.288954 0.153558 }
+        <Binormal> { -0.057059 -0.336697 -0.282448 }
+      }
+      <Normal> { -0.980377 0.000885 0.196997 }
+    }
+    <Vertex> 1115 {
+      -0.706315517426 0.801260888577 2.25703406334
+      <UV>  {
+        0.773208 0.633525
+        <Tangent> { 0.925450 -0.357374 0.125803 }
+        <Binormal> { -0.119845 -0.322466 -0.034420 }
+      }
+      <Normal> { -0.921232 0.318552 0.223212 }
+    }
+    <Vertex> 1116 {
+      -0.497124165297 0.744176983833 2.16098618507
+      <UV>  {
+        0.721591 0.600416
+        <Tangent> { 0.626788 -0.596073 -0.501830 }
+        <Binormal> { 0.288145 0.267960 0.041612 }
+      }
+      <Normal> { -0.685293 0.718101 0.121158 }
+    }
+    <Vertex> 1117 {
+      -0.497124165297 0.755284130573 2.02752232552
+      <UV>  {
+        0.725073 0.566581
+        <Tangent> { 0.526138 -0.334226 -0.781967 }
+        <Binormal> { 0.509954 0.443753 0.153449 }
+      }
+      <Normal> { -0.674917 0.720389 0.159673 }
+    }
+    <Vertex> 1118 {
+      -0.706315517426 0.827808439732 2.08447504044
+      <UV>  {
+        0.778839 0.583766
+        <Tangent> { 0.945173 -0.322672 0.050311 }
+        <Binormal> { -0.066779 -0.197545 -0.012413 }
+      }
+      <Normal> { -0.938231 0.307169 0.159062 }
+    }
+    <Vertex> 1119 {
+      -0.706315517426 0.801260888577 2.25703406334
+      <UV>  {
+        0.773208 0.633525
+        <Tangent> { 0.925450 -0.357374 0.125803 }
+        <Binormal> { -0.119845 -0.322466 -0.034420 }
+      }
+      <Normal> { -0.921232 0.318552 0.223212 }
+    }
+    <Vertex> 1120 {
+      -0.497124165297 0.744176983833 2.16098618507
+      <UV>  {
+        0.721591 0.600416
+        <Tangent> { 0.626788 -0.596073 -0.501830 }
+        <Binormal> { 0.288145 0.267960 0.041612 }
+      }
+      <Normal> { -0.685293 0.718101 0.121158 }
+    }
+    <Vertex> 1121 {
+      -0.706315517426 0.827808439732 2.08447504044
+      <UV>  {
+        0.778839 0.583766
+        <Tangent> { 0.945173 -0.322672 0.050311 }
+        <Binormal> { -0.066779 -0.197545 -0.012413 }
+      }
+      <Normal> { -0.938231 0.307169 0.159062 }
+    }
+    <Vertex> 1122 {
+      -0.797497332096 0.680560708046 2.75754570961
+      <UV>  {
+        0.747679 0.770120
+        <Tangent> { 0.764143 -0.638939 0.088554 }
+        <Binormal> { -0.169064 -0.287200 -0.613350 }
+      }
+      <Normal> { -0.964476 0.003784 0.264077 }
+    }
+    <Vertex> 1123 {
+      -0.685986340046 0.664598822594 2.64579248428
+      <UV>  {
+        0.727493 0.736575
+        <Tangent> { 0.729514 -0.640843 0.239019 }
+        <Binormal> { -0.420806 -0.534641 -0.149096 }
+      }
+      <Normal> { -0.746757 0.451613 0.488205 }
+    }
+    <Vertex> 1124 {
+      -0.685986340046 0.697590112686 2.51257038116
+      <UV>  {
+        0.741538 0.704627
+        <Tangent> { 0.913925 -0.352653 0.200939 }
+        <Binormal> { -0.152581 -0.407019 -0.020348 }
+      }
+      <Normal> { -0.911802 0.329569 0.244881 }
+    }
+    <Vertex> 1125 {
+      -0.706315517426 0.801260888577 2.25703406334
+      <UV>  {
+        0.773208 0.633525
+        <Tangent> { 0.925450 -0.357374 0.125803 }
+        <Binormal> { -0.119845 -0.322466 -0.034420 }
+      }
+      <Normal> { -0.921232 0.318552 0.223212 }
+    }
+    <Vertex> 1126 {
+      -0.797497332096 0.761199831963 2.53460216522
+      <UV>  {
+        0.773851 0.716939
+        <Tangent> { 0.838069 -0.511574 0.189556 }
+        <Binormal> { -0.155601 -0.435140 -0.486409 }
+      }
+      <Normal> { -0.952757 0.001190 0.303720 }
+    }
+    <Vertex> 1127 {
+      -0.685986340046 0.697590112686 2.51257038116
+      <UV>  {
+        0.741538 0.704627
+        <Tangent> { 0.913925 -0.352653 0.200939 }
+        <Binormal> { -0.152581 -0.407019 -0.020348 }
+      }
+      <Normal> { -0.911802 0.329569 0.244881 }
+    }
+    <Vertex> 1128 {
+      -0.797497272491 0.808634579182 2.34486317635
+      <UV>  {
+        0.793662 0.663788
+        <Tangent> { 0.944947 -0.288954 0.153558 }
+        <Binormal> { -0.057059 -0.336697 -0.282448 }
+      }
+      <Normal> { -0.980377 0.000885 0.196997 }
+    }
+    <Vertex> 1129 {
+      -0.797497332096 0.761199831963 2.53460216522
+      <UV>  {
+        0.773851 0.716939
+        <Tangent> { 0.838069 -0.511574 0.189556 }
+        <Binormal> { -0.155601 -0.435140 -0.486409 }
+      }
+      <Normal> { -0.952757 0.001190 0.303720 }
+    }
+    <Vertex> 1130 {
+      -0.706315517426 0.801260888577 2.25703406334
+      <UV>  {
+        0.773208 0.633525
+        <Tangent> { 0.925450 -0.357374 0.125803 }
+        <Binormal> { -0.119845 -0.322466 -0.034420 }
+      }
+      <Normal> { -0.921232 0.318552 0.223212 }
+    }
+    <Vertex> 1131 {
+      -0.797497332096 0.761199831963 2.53460216522
+      <UV>  {
+        0.773851 0.716939
+        <Tangent> { 0.838069 -0.511574 0.189556 }
+        <Binormal> { -0.155601 -0.435140 -0.486409 }
+      }
+      <Normal> { -0.952757 0.001190 0.303720 }
+    }
+    <Vertex> 1132 {
+      -0.797497332096 0.680560708046 2.75754570961
+      <UV>  {
+        0.747679 0.770120
+        <Tangent> { 0.764143 -0.638939 0.088554 }
+        <Binormal> { -0.169064 -0.287200 -0.613350 }
+      }
+      <Normal> { -0.964476 0.003784 0.264077 }
+    }
+    <Vertex> 1133 {
+      -0.685986340046 0.697590112686 2.51257038116
+      <UV>  {
+        0.741538 0.704627
+        <Tangent> { 0.913925 -0.352653 0.200939 }
+        <Binormal> { -0.152581 -0.407019 -0.020348 }
+      }
+      <Normal> { -0.911802 0.329569 0.244881 }
+    }
+    <Vertex> 1134 {
+      -0.497124165297 0.744176983833 2.16098618507
+      <UV>  {
+        0.721591 0.600416
+        <Tangent> { 0.626788 -0.596073 -0.501830 }
+        <Binormal> { 0.288145 0.267960 0.041612 }
+      }
+      <Normal> { -0.685293 0.718101 0.121158 }
+    }
+    <Vertex> 1135 {
+      -0.445704519749 0.599374711514 2.09830951691
+      <UV>  {
+        0.680183 0.628227
+        <Tangent> { 0.108112 -0.933384 -0.342209 }
+        <Binormal> { 0.311873 0.020688 0.042101 }
+      }
+      <Normal> { -0.070376 0.997009 0.031404 }
+    }
+    <Vertex> 1136 {
+      -0.445704519749 0.604476928711 1.99116265774
+      <UV>  {
+        0.680947 0.601505
+        <Tangent> { 0.102339 -0.778827 -0.618834 }
+        <Binormal> { 0.581364 0.053819 0.028409 }
+      }
+      <Normal> { -0.094211 0.994568 0.043794 }
+    }
+    <Vertex> 1137 {
+      -0.420063316822 0.61468142271 1.7156201601
+      <UV>  {
+        0.685280 0.565172
+        <Tangent> { -0.032790 -0.971850 0.233306 }
+        <Binormal> { -0.327218 -0.006349 -0.072436 }
+      }
+      <Normal> { -0.040986 0.994324 0.097995 }
+    }
+    <Vertex> 1138 {
+      -0.497124165297 0.850881814957 1.65348780155
+      <UV>  {
+        0.729321 0.554300
+        <Tangent> { 0.823368 -0.504494 -0.259905 }
+        <Binormal> { 0.143245 0.226151 0.014821 }
+      }
+      <Normal> { -0.844508 0.535447 -0.008087 }
+    }
+    <Vertex> 1139 {
+      -0.497124165297 0.802291035652 1.9043251276
+      <UV>  {
+        0.730303 0.580232
+        <Tangent> { -0.033764 0.110493 -0.993303 }
+        <Binormal> { 0.611522 0.784371 0.066465 }
+      }
+      <Normal> { -0.783776 0.596393 0.173070 }
+    }
+    <Vertex> 1140 {
+      -0.420063316822 0.61468142271 1.7156201601
+      <UV>  {
+        0.685280 0.565172
+        <Tangent> { -0.032790 -0.971850 0.233306 }
+        <Binormal> { -0.327218 -0.006349 -0.072436 }
+      }
+      <Normal> { -0.040986 0.994324 0.097995 }
+    }
+    <Vertex> 1141 {
+      -0.497124165297 0.802291035652 1.9043251276
+      <UV>  {
+        0.730303 0.580232
+        <Tangent> { -0.033764 0.110493 -0.993303 }
+        <Binormal> { 0.611522 0.784371 0.066465 }
+      }
+      <Normal> { -0.783776 0.596393 0.173070 }
+    }
+    <Vertex> 1142 {
+      -0.497124165297 0.755284130573 2.02752232552
+      <UV>  {
+        0.725073 0.566581
+        <Tangent> { 0.526138 -0.334226 -0.781967 }
+        <Binormal> { 0.509954 0.443753 0.153449 }
+      }
+      <Normal> { -0.674917 0.720389 0.159673 }
+    }
+    <Vertex> 1143 {
+      -0.445704519749 0.604476928711 1.99116265774
+      <UV>  {
+        0.680947 0.601505
+        <Tangent> { 0.102339 -0.778827 -0.618834 }
+        <Binormal> { 0.581364 0.053819 0.028409 }
+      }
+      <Normal> { -0.094211 0.994568 0.043794 }
+    }
+    <Vertex> 1144 {
+      -0.497124165297 0.755284130573 2.02752232552
+      <UV>  {
+        0.725073 0.566581
+        <Tangent> { 0.526138 -0.334226 -0.781967 }
+        <Binormal> { 0.509954 0.443753 0.153449 }
+      }
+      <Normal> { -0.674917 0.720389 0.159673 }
+    }
+    <Vertex> 1145 {
+      -0.497124165297 0.744176983833 2.16098618507
+      <UV>  {
+        0.721591 0.600416
+        <Tangent> { 0.626788 -0.596073 -0.501830 }
+        <Binormal> { 0.288145 0.267960 0.041612 }
+      }
+      <Normal> { -0.685293 0.718101 0.121158 }
+    }
+    <Vertex> 1146 {
+      -0.445704519749 0.604476928711 1.99116265774
+      <UV>  {
+        0.680947 0.601505
+        <Tangent> { 0.102339 -0.778827 -0.618834 }
+        <Binormal> { 0.581364 0.053819 0.028409 }
+      }
+      <Normal> { -0.094211 0.994568 0.043794 }
+    }
+    <Vertex> 1147 {
+      -0.420063316822 0.61468142271 1.7156201601
+      <UV>  {
+        0.685280 0.565172
+        <Tangent> { -0.032790 -0.971850 0.233306 }
+        <Binormal> { -0.327218 -0.006349 -0.072436 }
+      }
+      <Normal> { -0.040986 0.994324 0.097995 }
+    }
+    <Vertex> 1148 {
+      -0.497124165297 0.755284130573 2.02752232552
+      <UV>  {
+        0.725073 0.566581
+        <Tangent> { 0.526138 -0.334226 -0.781967 }
+        <Binormal> { 0.509954 0.443753 0.153449 }
+      }
+      <Normal> { -0.674917 0.720389 0.159673 }
+    }
+    <Vertex> 1149 {
+      -0.445704519749 0.599374711514 2.09830951691
+      <UV>  {
+        0.680183 0.628227
+        <Tangent> { 0.108112 -0.933384 -0.342209 }
+        <Binormal> { 0.311873 0.020688 0.042101 }
+      }
+      <Normal> { -0.070376 0.997009 0.031404 }
+    }
+    <Vertex> 1150 {
+      -0.497124165297 0.378688395023 2.13360905647
+      <UV>  {
+        0.618632 0.641752
+        <Tangent> { -0.224393 -0.922276 -0.314729 }
+        <Binormal> { 0.259396 -0.190067 0.372028 }
+      }
+      <Normal> { 0.598315 0.801202 -0.007843 }
+    }
+    <Vertex> 1151 {
+      -0.497124165297 0.397479206324 1.95565629005
+      <UV>  {
+        0.627241 0.587045
+        <Tangent> { -0.262964 -0.924193 0.276978 }
+        <Binormal> { -0.240664 0.131157 0.209144 }
+      }
+      <Normal> { 0.476455 0.879177 -0.003082 }
+    }
+    <Vertex> 1152 {
+      -0.420063316822 0.61468142271 1.7156201601
+      <UV>  {
+        0.685280 0.565172
+        <Tangent> { -0.032790 -0.971850 0.233306 }
+        <Binormal> { -0.327218 -0.006349 -0.072436 }
+      }
+      <Normal> { -0.040986 0.994324 0.097995 }
+    }
+    <Vertex> 1153 {
+      -0.497124165297 0.397479206324 1.95565629005
+      <UV>  {
+        0.627241 0.587045
+        <Tangent> { -0.262964 -0.924193 0.276978 }
+        <Binormal> { -0.240664 0.131157 0.209144 }
+      }
+      <Normal> { 0.476455 0.879177 -0.003082 }
+    }
+    <Vertex> 1154 {
+      -0.497124165297 0.393995076418 1.79649567604
+      <UV>  {
+        0.641972 0.545975
+        <Tangent> { -0.393550 -0.630318 0.669192 }
+        <Binormal> { -0.564196 0.434188 0.077163 }
+      }
+      <Normal> { 0.613880 0.787133 0.059420 }
+    }
+    <Vertex> 1155 {
+      -0.445704519749 0.604476928711 1.99116265774
+      <UV>  {
+        0.680947 0.601505
+        <Tangent> { 0.102339 -0.778827 -0.618834 }
+        <Binormal> { 0.581364 0.053819 0.028409 }
+      }
+      <Normal> { -0.094211 0.994568 0.043794 }
+    }
+    <Vertex> 1156 {
+      -0.497124165297 0.397479206324 1.95565629005
+      <UV>  {
+        0.627241 0.587045
+        <Tangent> { -0.262964 -0.924193 0.276978 }
+        <Binormal> { -0.240664 0.131157 0.209144 }
+      }
+      <Normal> { 0.476455 0.879177 -0.003082 }
+    }
+    <Vertex> 1157 {
+      -0.420063316822 0.61468142271 1.7156201601
+      <UV>  {
+        0.685280 0.565172
+        <Tangent> { -0.032790 -0.971850 0.233306 }
+        <Binormal> { -0.327218 -0.006349 -0.072436 }
+      }
+      <Normal> { -0.040986 0.994324 0.097995 }
+    }
+    <Vertex> 1158 {
+      -0.445704519749 0.604476928711 1.99116265774
+      <UV>  {
+        0.680947 0.601505
+        <Tangent> { 0.102339 -0.778827 -0.618834 }
+        <Binormal> { 0.581364 0.053819 0.028409 }
+      }
+      <Normal> { -0.094211 0.994568 0.043794 }
+    }
+    <Vertex> 1159 {
+      -0.445704519749 0.599374711514 2.09830951691
+      <UV>  {
+        0.680183 0.628227
+        <Tangent> { 0.108112 -0.933384 -0.342209 }
+        <Binormal> { 0.311873 0.020688 0.042101 }
+      }
+      <Normal> { -0.070376 0.997009 0.031404 }
+    }
+    <Vertex> 1160 {
+      -0.497124165297 0.397479206324 1.95565629005
+      <UV>  {
+        0.627241 0.587045
+        <Tangent> { -0.262964 -0.924193 0.276978 }
+        <Binormal> { -0.240664 0.131157 0.209144 }
+      }
+      <Normal> { 0.476455 0.879177 -0.003082 }
+    }
+    <Vertex> 1161 {
+      -0.797497332096 0.42441290617 2.76228928566
+      <UV>  {
+        0.671441 0.794732
+        <Tangent> { -0.761562 -0.220702 -0.609355 }
+        <Binormal> { -0.125630 -0.044728 0.173211 }
+      }
+      <Normal> { 0.808618 0.006897 0.588275 }
+    }
+    <Vertex> 1162 {
+      -0.797497332096 0.339249521494 2.698969841
+      <UV>  {
+        0.658666 0.788178
+        <Tangent> { -0.615326 -0.523065 -0.589727 }
+        <Binormal> { -0.340530 -0.027125 0.379371 }
+      }
+      <Normal> { 0.743522 0.015503 0.668508 }
+    }
+    <Vertex> 1163 {
+      -0.61965739727 0.351054638624 2.6184015274
+      <UV>  {
+        0.656048 0.745442
+        <Tangent> { -0.272338 -0.881374 -0.386021 }
+        <Binormal> { -0.437837 -0.083730 0.500068 }
+      }
+      <Normal> { 0.675253 0.349132 0.649678 }
+    }
+    <Vertex> 1164 {
+      -0.675702154636 0.538147985935 2.81772351265
+      <UV>  {
+        0.706644 0.785337
+        <Tangent> { 0.062708 -0.943354 -0.325809 }
+        <Binormal> { 0.176674 -0.002162 0.040263 }
+      }
+      <Normal> { -0.022980 0.987793 0.153874 }
+    }
+    <Vertex> 1165 {
+      -0.797497332096 0.42441290617 2.76228928566
+      <UV>  {
+        0.671441 0.794732
+        <Tangent> { -0.761562 -0.220702 -0.609355 }
+        <Binormal> { -0.125630 -0.044728 0.173211 }
+      }
+      <Normal> { 0.808618 0.006897 0.588275 }
+    }
+    <Vertex> 1166 {
+      -0.641022980213 0.540606319904 2.70817518234
+      <UV>  {
+        0.697556 0.754412
+        <Tangent> { 0.091483 -0.963348 -0.252173 }
+        <Binormal> { -0.557981 -0.100817 0.182714 }
+      }
+      <Normal> { 0.127964 0.649739 0.749290 }
+    }
+    <Vertex> 1167 {
+      -0.797497332096 0.42441290617 2.76228928566
+      <UV>  {
+        0.671441 0.794732
+        <Tangent> { -0.761562 -0.220702 -0.609355 }
+        <Binormal> { -0.125630 -0.044728 0.173211 }
+      }
+      <Normal> { 0.808618 0.006897 0.588275 }
+    }
+    <Vertex> 1168 {
+      -0.61965739727 0.351054638624 2.6184015274
+      <UV>  {
+        0.656048 0.745442
+        <Tangent> { -0.272338 -0.881374 -0.386021 }
+        <Binormal> { -0.437837 -0.083730 0.500068 }
+      }
+      <Normal> { 0.675253 0.349132 0.649678 }
+    }
+    <Vertex> 1169 {
+      -0.641022980213 0.540606319904 2.70817518234
+      <UV>  {
+        0.697556 0.754412
+        <Tangent> { 0.091483 -0.963348 -0.252173 }
+        <Binormal> { -0.557981 -0.100817 0.182714 }
+      }
+      <Normal> { 0.127964 0.649739 0.749290 }
+    }
+    <Vertex> 1170 {
+      -0.641022980213 0.540606319904 2.70817518234
+      <UV>  {
+        0.697556 0.754412
+        <Tangent> { 0.091483 -0.963348 -0.252173 }
+        <Binormal> { -0.557981 -0.100817 0.182714 }
+      }
+      <Normal> { 0.127964 0.649739 0.749290 }
+    }
+    <Vertex> 1171 {
+      -0.685986340046 0.664598822594 2.64579248428
+      <UV>  {
+        0.727493 0.736575
+        <Tangent> { 0.729514 -0.640843 0.239019 }
+        <Binormal> { -0.420806 -0.534641 -0.149096 }
+      }
+      <Normal> { -0.746757 0.451613 0.488205 }
+    }
+    <Vertex> 1172 {
+      -0.675702154636 0.538147985935 2.81772351265
+      <UV>  {
+        0.706644 0.785337
+        <Tangent> { 0.062708 -0.943354 -0.325809 }
+        <Binormal> { 0.176674 -0.002162 0.040263 }
+      }
+      <Normal> { -0.022980 0.987793 0.153874 }
+    }
+    <Vertex> 1173 {
+      -0.685986340046 0.664598822594 2.64579248428
+      <UV>  {
+        0.727493 0.736575
+        <Tangent> { 0.729514 -0.640843 0.239019 }
+        <Binormal> { -0.420806 -0.534641 -0.149096 }
+      }
+      <Normal> { -0.746757 0.451613 0.488205 }
+    }
+    <Vertex> 1174 {
+      -0.797497332096 0.680560708046 2.75754570961
+      <UV>  {
+        0.747679 0.770120
+        <Tangent> { 0.764143 -0.638939 0.088554 }
+        <Binormal> { -0.169064 -0.287200 -0.613350 }
+      }
+      <Normal> { -0.964476 0.003784 0.264077 }
+    }
+    <Vertex> 1175 {
+      -0.675702154636 0.538147985935 2.81772351265
+      <UV>  {
+        0.706644 0.785337
+        <Tangent> { 0.062708 -0.943354 -0.325809 }
+        <Binormal> { 0.176674 -0.002162 0.040263 }
+      }
+      <Normal> { -0.022980 0.987793 0.153874 }
+    }
+    <Vertex> 1176 {
+      -0.706315517426 0.801260888577 2.25703406334
+      <UV>  {
+        0.773208 0.633525
+        <Tangent> { 0.925450 -0.357374 0.125803 }
+        <Binormal> { -0.119845 -0.322466 -0.034420 }
+      }
+      <Normal> { -0.921232 0.318552 0.223212 }
+    }
+    <Vertex> 1177 {
+      -0.685986340046 0.697590112686 2.51257038116
+      <UV>  {
+        0.741538 0.704627
+        <Tangent> { 0.913925 -0.352653 0.200939 }
+        <Binormal> { -0.152581 -0.407019 -0.020348 }
+      }
+      <Normal> { -0.911802 0.329569 0.244881 }
+    }
+    <Vertex> 1178 {
+      -0.517453372478 0.678654849529 2.42750024796
+      <UV>  {
+        0.708377 0.672531
+        <Tangent> { 0.734591 -0.676793 -0.048245 }
+        <Binormal> { 0.045539 0.051495 -0.028997 }
+      }
+      <Normal> { -0.754631 0.655782 -0.020539 }
+    }
+    <Vertex> 1179 {
+      -0.517453372478 0.678654849529 2.42750024796
+      <UV>  {
+        0.708377 0.672531
+        <Tangent> { 0.734591 -0.676793 -0.048245 }
+        <Binormal> { 0.045539 0.051495 -0.028997 }
+      }
+      <Normal> { -0.754631 0.655782 -0.020539 }
+    }
+    <Vertex> 1180 {
+      -0.497124165297 0.744176983833 2.16098618507
+      <UV>  {
+        0.721591 0.600416
+        <Tangent> { 0.626788 -0.596073 -0.501830 }
+        <Binormal> { 0.288145 0.267960 0.041612 }
+      }
+      <Normal> { -0.685293 0.718101 0.121158 }
+    }
+    <Vertex> 1181 {
+      -0.706315517426 0.801260888577 2.25703406334
+      <UV>  {
+        0.773208 0.633525
+        <Tangent> { 0.925450 -0.357374 0.125803 }
+        <Binormal> { -0.119845 -0.322466 -0.034420 }
+      }
+      <Normal> { -0.921232 0.318552 0.223212 }
+    }
+    <Vertex> 1182 {
+      -0.517453372478 0.678654849529 2.42750024796
+      <UV>  {
+        0.708377 0.672531
+        <Tangent> { 0.734591 -0.676793 -0.048245 }
+        <Binormal> { 0.045539 0.051495 -0.028997 }
+      }
+      <Normal> { -0.754631 0.655782 -0.020539 }
+    }
+    <Vertex> 1183 {
+      -0.445704519749 0.599374711514 2.09830951691
+      <UV>  {
+        0.680183 0.628227
+        <Tangent> { 0.108112 -0.933384 -0.342209 }
+        <Binormal> { 0.311873 0.020688 0.042101 }
+      }
+      <Normal> { -0.070376 0.997009 0.031404 }
+    }
+    <Vertex> 1184 {
+      -0.497124165297 0.744176983833 2.16098618507
+      <UV>  {
+        0.721591 0.600416
+        <Tangent> { 0.626788 -0.596073 -0.501830 }
+        <Binormal> { 0.288145 0.267960 0.041612 }
+      }
+      <Normal> { -0.685293 0.718101 0.121158 }
+    }
+    <Vertex> 1185 {
+      -0.517453372478 0.678654849529 2.42750024796
+      <UV>  {
+        0.708377 0.672531
+        <Tangent> { 0.734591 -0.676793 -0.048245 }
+        <Binormal> { 0.045539 0.051495 -0.028997 }
+      }
+      <Normal> { -0.754631 0.655782 -0.020539 }
+    }
+    <Vertex> 1186 {
+      -0.450008273125 0.566834926605 2.38147306442
+      <UV>  {
+        0.679463 0.660830
+        <Tangent> { -0.017619 -0.987493 -0.156673 }
+        <Binormal> { 0.446469 0.003975 -0.075264 }
+      }
+      <Normal> { -0.059236 0.951720 -0.301126 }
+    }
+    <Vertex> 1187 {
+      -0.445704519749 0.599374711514 2.09830951691
+      <UV>  {
+        0.680183 0.628227
+        <Tangent> { 0.108112 -0.933384 -0.342209 }
+        <Binormal> { 0.311873 0.020688 0.042101 }
+      }
+      <Normal> { -0.070376 0.997009 0.031404 }
+    }
+    <Vertex> 1188 {
+      -0.445704519749 0.599374711514 2.09830951691
+      <UV>  {
+        0.680183 0.628227
+        <Tangent> { 0.108112 -0.933384 -0.342209 }
+        <Binormal> { 0.311873 0.020688 0.042101 }
+      }
+      <Normal> { -0.070376 0.997009 0.031404 }
+    }
+    <Vertex> 1189 {
+      -0.450008273125 0.566834926605 2.38147306442
+      <UV>  {
+        0.679463 0.660830
+        <Tangent> { -0.017619 -0.987493 -0.156673 }
+        <Binormal> { 0.446469 0.003975 -0.075264 }
+      }
+      <Normal> { -0.059236 0.951720 -0.301126 }
+    }
+    <Vertex> 1190 {
+      -0.497124165297 0.378688395023 2.13360905647
+      <UV>  {
+        0.618632 0.641752
+        <Tangent> { -0.224393 -0.922276 -0.314729 }
+        <Binormal> { 0.259396 -0.190067 0.372028 }
+      }
+      <Normal> { 0.598315 0.801202 -0.007843 }
+    }
+    <Vertex> 1191 {
+      -0.450008273125 0.566834926605 2.38147306442
+      <UV>  {
+        0.679463 0.660830
+        <Tangent> { -0.017619 -0.987493 -0.156673 }
+        <Binormal> { 0.446469 0.003975 -0.075264 }
+      }
+      <Normal> { -0.059236 0.951720 -0.301126 }
+    }
+    <Vertex> 1192 {
+      -0.497044444084 0.381648719311 2.42015099525
+      <UV>  {
+        0.637886 0.681559
+        <Tangent> { -0.529607 -0.823162 -0.204746 }
+        <Binormal> { 0.281092 -0.233237 0.210619 }
+      }
+      <Normal> { 0.701346 0.692404 -0.169256 }
+    }
+    <Vertex> 1193 {
+      -0.497124165297 0.378688395023 2.13360905647
+      <UV>  {
+        0.618632 0.641752
+        <Tangent> { -0.224393 -0.922276 -0.314729 }
+        <Binormal> { 0.259396 -0.190067 0.372028 }
+      }
+      <Normal> { 0.598315 0.801202 -0.007843 }
+    }
+    <Vertex> 1194 {
+      -0.706315517426 0.878551721573 1.65056419373
+      <UV>  {
+        0.766693 0.546688
+        <Tangent> { 0.328652 0.035009 -0.943802 }
+        <Binormal> { 0.109876 0.953429 0.073627 }
+      }
+      <Normal> { -0.991485 0.118412 -0.053743 }
+    }
+    <Vertex> 1195 {
+      -0.706315517426 0.836657643318 1.45827400684
+      <UV>  {
+        0.750184 0.511506
+        <Tangent> { 0.657678 -0.311354 -0.685943 }
+        <Binormal> { 0.386480 0.760247 0.025474 }
+      }
+      <Normal> { -0.856533 0.444227 -0.262612 }
+    }
+    <Vertex> 1196 {
+      -0.797497272491 0.84658241272 1.49699413776
+      <UV>  {
+        0.766602 0.512993
+        <Tangent> { 0.986362 -0.026220 -0.162487 }
+        <Binormal> { -0.021113 -0.699045 -0.015363 }
+      }
+      <Normal> { -0.591662 0.000153 0.806177 }
+    }
+    <Vertex> 1197 {
+      -0.797497272491 0.889273703098 1.70570719242
+      <UV>  {
+        0.790450 0.551178
+        <Tangent> { 0.153449 -0.082743 0.984686 }
+        <Binormal> { 0.001859 -0.980266 -0.082661 }
+      }
+      <Normal> { -0.999634 0.000336 -0.026460 }
+    }
+    <Vertex> 1198 {
+      -0.706315517426 0.878551721573 1.65056419373
+      <UV>  {
+        0.766693 0.546688
+        <Tangent> { 0.328652 0.035009 -0.943802 }
+        <Binormal> { 0.109876 0.953429 0.073627 }
+      }
+      <Normal> { -0.991485 0.118412 -0.053743 }
+    }
+    <Vertex> 1199 {
+      -0.797497272491 0.84658241272 1.49699413776
+      <UV>  {
+        0.766602 0.512993
+        <Tangent> { 0.986362 -0.026220 -0.162487 }
+        <Binormal> { -0.021113 -0.699045 -0.015363 }
+      }
+      <Normal> { -0.591662 0.000153 0.806177 }
+    }
+    <Vertex> 1200 {
+      -0.40870013833 0.609579145908 1.61867773533
+      <UV>  {
+        0.687942 0.542010
+        <Tangent> { -0.045198 -0.989728 0.135630 }
+        <Binormal> { -0.298144 0.008481 -0.037469 }
+      }
+      <Normal> { 0.007172 0.986053 0.166112 }
+    }
+    <Vertex> 1201 {
+      -0.420063316822 0.61468142271 1.7156201601
+      <UV>  {
+        0.685280 0.565172
+        <Tangent> { -0.032790 -0.971850 0.233306 }
+        <Binormal> { -0.327218 -0.006349 -0.072436 }
+      }
+      <Normal> { -0.040986 0.994324 0.097995 }
+    }
+    <Vertex> 1202 {
+      -0.442100912333 0.420796722174 1.4196908474
+      <UV>  {
+        0.672360 0.513295
+        <Tangent> { -0.542982 -0.597087 0.590473 }
+        <Binormal> { -0.566752 0.426329 -0.090064 }
+      }
+      <Normal> { 0.577624 0.801050 0.157018 }
+    }
+    <Vertex> 1203 {
+      -0.420063316822 0.61468142271 1.7156201601
+      <UV>  {
+        0.685280 0.565172
+        <Tangent> { -0.032790 -0.971850 0.233306 }
+        <Binormal> { -0.327218 -0.006349 -0.072436 }
+      }
+      <Normal> { -0.040986 0.994324 0.097995 }
+    }
+    <Vertex> 1204 {
+      -0.497124165297 0.393995076418 1.79649567604
+      <UV>  {
+        0.641972 0.545975
+        <Tangent> { -0.393550 -0.630318 0.669192 }
+        <Binormal> { -0.564196 0.434188 0.077163 }
+      }
+      <Normal> { 0.613880 0.787133 0.059420 }
+    }
+    <Vertex> 1205 {
+      -0.442100912333 0.420796722174 1.4196908474
+      <UV>  {
+        0.672360 0.513295
+        <Tangent> { -0.542982 -0.597087 0.590473 }
+        <Binormal> { -0.566752 0.426329 -0.090064 }
+      }
+      <Normal> { 0.577624 0.801050 0.157018 }
+    }
+    <Vertex> 1206 {
+      -0.566382348537 0.309294164181 1.53500580788
+      <UV>  {
+        0.642914 0.510922
+        <Tangent> { -0.575029 -0.512282 0.637894 }
+        <Binormal> { -0.389930 0.558772 0.097238 }
+      }
+      <Normal> { 0.823389 0.564440 0.058321 }
+    }
+    <Vertex> 1207 {
+      -0.638106226921 0.245635583997 1.39632916451
+      <UV>  {
+        0.655638 0.487569
+        <Tangent> { -0.294203 -0.192304 0.936196 }
+        <Binormal> { -0.356101 0.868695 0.066533 }
+      }
+      <Normal> { 0.925443 0.378765 0.007813 }
+    }
+    <Vertex> 1208 {
+      -0.442100912333 0.420796722174 1.4196908474
+      <UV>  {
+        0.672360 0.513295
+        <Tangent> { -0.542982 -0.597087 0.590473 }
+        <Binormal> { -0.566752 0.426329 -0.090064 }
+      }
+      <Normal> { 0.577624 0.801050 0.157018 }
+    }
+    <Vertex> 1209 {
+      -0.497124165297 0.393995076418 1.79649567604
+      <UV>  {
+        0.641972 0.545975
+        <Tangent> { -0.393550 -0.630318 0.669192 }
+        <Binormal> { -0.564196 0.434188 0.077163 }
+      }
+      <Normal> { 0.613880 0.787133 0.059420 }
+    }
+    <Vertex> 1210 {
+      -0.566382348537 0.309294164181 1.53500580788
+      <UV>  {
+        0.642914 0.510922
+        <Tangent> { -0.575029 -0.512282 0.637894 }
+        <Binormal> { -0.389930 0.558772 0.097238 }
+      }
+      <Normal> { 0.823389 0.564440 0.058321 }
+    }
+    <Vertex> 1211 {
+      -0.442100912333 0.420796722174 1.4196908474
+      <UV>  {
+        0.672360 0.513295
+        <Tangent> { -0.542982 -0.597087 0.590473 }
+        <Binormal> { -0.566752 0.426329 -0.090064 }
+      }
+      <Normal> { 0.577624 0.801050 0.157018 }
+    }
+    <Vertex> 1212 {
+      -0.40870013833 0.609579145908 1.61867773533
+      <UV>  {
+        0.687942 0.542010
+        <Tangent> { -0.045198 -0.989728 0.135630 }
+        <Binormal> { -0.298144 0.008481 -0.037469 }
+      }
+      <Normal> { 0.007172 0.986053 0.166112 }
+    }
+    <Vertex> 1213 {
+      -0.44210088253 0.793259382248 1.42989528179
+      <UV>  {
+        0.711599 0.522829
+        <Tangent> { 0.721335 -0.681716 -0.122228 }
+        <Binormal> { 0.063549 0.072921 -0.031671 }
+      }
+      <Normal> { -0.748070 0.663076 0.025666 }
+    }
+    <Vertex> 1214 {
+      -0.420063316822 0.61468142271 1.7156201601
+      <UV>  {
+        0.685280 0.565172
+        <Tangent> { -0.032790 -0.971850 0.233306 }
+        <Binormal> { -0.327218 -0.006349 -0.072436 }
+      }
+      <Normal> { -0.040986 0.994324 0.097995 }
+    }
+    <Vertex> 1215 {
+      -0.497124165297 0.850881814957 1.65348780155
+      <UV>  {
+        0.729321 0.554300
+        <Tangent> { 0.823368 -0.504494 -0.259905 }
+        <Binormal> { 0.143245 0.226151 0.014821 }
+      }
+      <Normal> { -0.844508 0.535447 -0.008087 }
+    }
+    <Vertex> 1216 {
+      -0.420063316822 0.61468142271 1.7156201601
+      <UV>  {
+        0.685280 0.565172
+        <Tangent> { -0.032790 -0.971850 0.233306 }
+        <Binormal> { -0.327218 -0.006349 -0.072436 }
+      }
+      <Normal> { -0.040986 0.994324 0.097995 }
+    }
+    <Vertex> 1217 {
+      -0.44210088253 0.793259382248 1.42989528179
+      <UV>  {
+        0.711599 0.522829
+        <Tangent> { 0.721335 -0.681716 -0.122228 }
+        <Binormal> { 0.063549 0.072921 -0.031671 }
+      }
+      <Normal> { -0.748070 0.663076 0.025666 }
+    }
+    <Vertex> 1218 {
+      -0.497124165297 0.850881814957 1.65348780155
+      <UV>  {
+        0.729321 0.554300
+        <Tangent> { 0.823368 -0.504494 -0.259905 }
+        <Binormal> { 0.143245 0.226151 0.014821 }
+      }
+      <Normal> { -0.844508 0.535447 -0.008087 }
+    }
+    <Vertex> 1219 {
+      -0.706315517426 0.836657643318 1.45827400684
+      <UV>  {
+        0.750184 0.511506
+        <Tangent> { 0.657678 -0.311354 -0.685943 }
+        <Binormal> { 0.386480 0.760247 0.025474 }
+      }
+      <Normal> { -0.856533 0.444227 -0.262612 }
+    }
+    <Vertex> 1220 {
+      -0.706315517426 0.878551721573 1.65056419373
+      <UV>  {
+        0.766693 0.546688
+        <Tangent> { 0.328652 0.035009 -0.943802 }
+        <Binormal> { 0.109876 0.953429 0.073627 }
+      }
+      <Normal> { -0.991485 0.118412 -0.053743 }
+    }
+    <Vertex> 1221 {
+      -0.44210088253 0.793259382248 1.42989528179
+      <UV>  {
+        0.711599 0.522829
+        <Tangent> { 0.721335 -0.681716 -0.122228 }
+        <Binormal> { 0.063549 0.072921 -0.031671 }
+      }
+      <Normal> { -0.748070 0.663076 0.025666 }
+    }
+    <Vertex> 1222 {
+      -0.706315517426 0.836657643318 1.45827400684
+      <UV>  {
+        0.750184 0.511506
+        <Tangent> { 0.657678 -0.311354 -0.685943 }
+        <Binormal> { 0.386480 0.760247 0.025474 }
+      }
+      <Normal> { -0.856533 0.444227 -0.262612 }
+    }
+    <Vertex> 1223 {
+      -0.497124165297 0.850881814957 1.65348780155
+      <UV>  {
+        0.729321 0.554300
+        <Tangent> { 0.823368 -0.504494 -0.259905 }
+        <Binormal> { 0.143245 0.226151 0.014821 }
+      }
+      <Normal> { -0.844508 0.535447 -0.008087 }
+    }
+    <Vertex> 1224 {
+      -0.706315517426 0.836657643318 1.45827400684
+      <UV>  {
+        0.750184 0.511506
+        <Tangent> { 0.657678 -0.311354 -0.685943 }
+        <Binormal> { 0.386480 0.760247 0.025474 }
+      }
+      <Normal> { -0.856533 0.444227 -0.262612 }
+    }
+    <Vertex> 1225 {
+      -0.44210088253 0.793259382248 1.42989528179
+      <UV>  {
+        0.711599 0.522829
+        <Tangent> { 0.721335 -0.681716 -0.122228 }
+        <Binormal> { 0.063549 0.072921 -0.031671 }
+      }
+      <Normal> { -0.748070 0.663076 0.025666 }
+    }
+    <Vertex> 1226 {
+      -0.605372190475 0.772850513458 1.16457939148
+      <UV>  {
+        0.713848 0.493651
+        <Tangent> { 0.575642 -0.195486 -0.793991 }
+        <Binormal> { -0.279845 0.861403 -0.414971 }
+      }
+      <Normal> { -0.814570 -0.444258 -0.372875 }
+    }
+    <Vertex> 1227 {
+      -0.605372190475 0.772850513458 1.16457939148
+      <UV>  {
+        0.713848 0.493651
+        <Tangent> { 0.575642 -0.195486 -0.793991 }
+        <Binormal> { -0.279845 0.861403 -0.414971 }
+      }
+      <Normal> { -0.814570 -0.444258 -0.372875 }
+    }
+    <Vertex> 1228 {
+      -0.706315517426 0.695588648319 1.23194229603
+      <UV>  {
+        0.721911 0.480879
+        <Tangent> { 0.371769 -0.607500 -0.701948 }
+        <Binormal> { 0.164387 0.599867 -0.432091 }
+      }
+      <Normal> { -0.440809 -0.441939 -0.781243 }
+    }
+    <Vertex> 1229 {
+      -0.706315517426 0.836657643318 1.45827400684
+      <UV>  {
+        0.750184 0.511506
+        <Tangent> { 0.657678 -0.311354 -0.685943 }
+        <Binormal> { 0.386480 0.760247 0.025474 }
+      }
+      <Normal> { -0.856533 0.444227 -0.262612 }
+    }
+    <Vertex> 1230 {
+      -0.60537225008 0.257525414228 1.20029509068
+      <UV>  {
+        0.677070 0.487255
+        <Tangent> { -0.150623 -0.475430 0.866763 }
+        <Binormal> { 0.356671 0.770047 0.484361 }
+      }
+      <Normal> { 0.929746 -0.281045 -0.237831 }
+    }
+    <Vertex> 1231 {
+      -0.442100912333 0.420796722174 1.4196908474
+      <UV>  {
+        0.672360 0.513295
+        <Tangent> { -0.542982 -0.597087 0.590473 }
+        <Binormal> { -0.566752 0.426329 -0.090064 }
+      }
+      <Normal> { 0.577624 0.801050 0.157018 }
+    }
+    <Vertex> 1232 {
+      -0.638106226921 0.245635583997 1.39632916451
+      <UV>  {
+        0.655638 0.487569
+        <Tangent> { -0.294203 -0.192304 0.936196 }
+        <Binormal> { -0.356101 0.868695 0.066533 }
+      }
+      <Normal> { 0.925443 0.378765 0.007813 }
+    }
+    <Vertex> 1233 {
+      -0.638106226921 0.245635583997 1.39632916451
+      <UV>  {
+        0.655638 0.487569
+        <Tangent> { -0.294203 -0.192304 0.936196 }
+        <Binormal> { -0.356101 0.868695 0.066533 }
+      }
+      <Normal> { 0.925443 0.378765 0.007813 }
+    }
+    <Vertex> 1234 {
+      -0.698662221432 0.263333946466 1.28946197033
+      <UV>  {
+        0.670932 0.474436
+        <Tangent> { -0.024075 -0.708686 0.705113 }
+        <Binormal> { 0.271825 0.614087 0.626480 }
+      }
+      <Normal> { 0.886502 0.073580 -0.456771 }
+    }
+    <Vertex> 1235 {
+      -0.60537225008 0.257525414228 1.20029509068
+      <UV>  {
+        0.677070 0.487255
+        <Tangent> { -0.150623 -0.475430 0.866763 }
+        <Binormal> { 0.356671 0.770047 0.484361 }
+      }
+      <Normal> { 0.929746 -0.281045 -0.237831 }
+    }
+    <Vertex> 1236 {
+      -0.698662221432 0.263333946466 1.28946197033
+      <UV>  {
+        0.670932 0.474436
+        <Tangent> { -0.024075 -0.708686 0.705113 }
+        <Binormal> { 0.271825 0.614087 0.626480 }
+      }
+      <Normal> { 0.886502 0.073580 -0.456771 }
+    }
+    <Vertex> 1237 {
+      -0.641087830067 0.589170277119 1.07784152031
+      <UV>  {
+        0.703906 0.485641
+        <Tangent> { 0.114917 -0.826869 -0.550528 }
+        <Binormal> { 0.075620 0.112000 -0.152434 }
+      }
+      <Normal> { -0.075198 -0.785394 -0.614368 }
+    }
+    <Vertex> 1238 {
+      -0.60537225008 0.257525414228 1.20029509068
+      <UV>  {
+        0.677070 0.487255
+        <Tangent> { -0.150623 -0.475430 0.866763 }
+        <Binormal> { 0.356671 0.770047 0.484361 }
+      }
+      <Normal> { 0.929746 -0.281045 -0.237831 }
+    }
+    <Vertex> 1239 {
+      -0.641087830067 0.589170277119 1.07784152031
+      <UV>  {
+        0.703906 0.485641
+        <Tangent> { 0.114917 -0.826869 -0.550528 }
+        <Binormal> { 0.075620 0.112000 -0.152434 }
+      }
+      <Normal> { -0.075198 -0.785394 -0.614368 }
+    }
+    <Vertex> 1240 {
+      -0.698662221432 0.263333946466 1.28946197033
+      <UV>  {
+        0.670932 0.474436
+        <Tangent> { -0.024075 -0.708686 0.705113 }
+        <Binormal> { 0.271825 0.614087 0.626480 }
+      }
+      <Normal> { 0.886502 0.073580 -0.456771 }
+    }
+    <Vertex> 1241 {
+      -0.736507177353 0.30606546998 1.22715938091
+      <UV>  {
+        0.682515 0.467502
+        <Tangent> { 0.114677 -0.990474 0.076225 }
+        <Binormal> { 0.823964 0.137638 0.548863 }
+      }
+      <Normal> { 0.550768 0.029145 -0.834132 }
+    }
+    <Vertex> 1242 {
+      -0.736507177353 0.30606546998 1.22715938091
+      <UV>  {
+        0.682515 0.467502
+        <Tangent> { 0.114677 -0.990474 0.076225 }
+        <Binormal> { 0.823964 0.137638 0.548863 }
+      }
+      <Normal> { 0.550768 0.029145 -0.834132 }
+    }
+    <Vertex> 1243 {
+      -0.706315517426 0.695588648319 1.23194229603
+      <UV>  {
+        0.721911 0.480879
+        <Tangent> { 0.371769 -0.607500 -0.701948 }
+        <Binormal> { 0.164387 0.599867 -0.432091 }
+      }
+      <Normal> { -0.440809 -0.441939 -0.781243 }
+    }
+    <Vertex> 1244 {
+      -0.641087830067 0.589170277119 1.07784152031
+      <UV>  {
+        0.703906 0.485641
+        <Tangent> { 0.114917 -0.826869 -0.550528 }
+        <Binormal> { 0.075620 0.112000 -0.152434 }
+      }
+      <Normal> { -0.075198 -0.785394 -0.614368 }
+    }
+    <Vertex> 1245 {
+      -0.605372190475 0.772850513458 1.16457939148
+      <UV>  {
+        0.713848 0.493651
+        <Tangent> { 0.575642 -0.195486 -0.793991 }
+        <Binormal> { -0.279845 0.861403 -0.414971 }
+      }
+      <Normal> { -0.814570 -0.444258 -0.372875 }
+    }
+    <Vertex> 1246 {
+      -0.641087830067 0.589170277119 1.07784152031
+      <UV>  {
+        0.703906 0.485641
+        <Tangent> { 0.114917 -0.826869 -0.550528 }
+        <Binormal> { 0.075620 0.112000 -0.152434 }
+      }
+      <Normal> { -0.075198 -0.785394 -0.614368 }
+    }
+    <Vertex> 1247 {
+      -0.706315517426 0.695588648319 1.23194229603
+      <UV>  {
+        0.721911 0.480879
+        <Tangent> { 0.371769 -0.607500 -0.701948 }
+        <Binormal> { 0.164387 0.599867 -0.432091 }
+      }
+      <Normal> { -0.440809 -0.441939 -0.781243 }
+    }
+    <Vertex> 1248 {
+      -0.370285332203 0.652679979801 2.51229548454
+      <UV>  {
+        0.683096 0.686752
+        <Tangent> { 0.657285 -0.324799 -0.680060 }
+        <Binormal> { 0.132388 0.645730 -0.180448 }
+      }
+      <Normal> { -0.977569 0.208533 0.029023 }
+    }
+    <Vertex> 1249 {
+      -0.426731735468 0.550527513027 2.4268283844
+      <UV>  {
+        0.676666 0.675592
+        <Tangent> { -0.117935 -0.983230 0.139105 }
+        <Binormal> { 0.782986 -0.175442 -0.576242 }
+      }
+      <Normal> { -0.609272 -0.193426 -0.768975 }
+    }
+    <Vertex> 1250 {
+      -0.517453372478 0.678654849529 2.42750024796
+      <UV>  {
+        0.708377 0.672531
+        <Tangent> { 0.734591 -0.676793 -0.048245 }
+        <Binormal> { 0.045539 0.051495 -0.028997 }
+      }
+      <Normal> { -0.754631 0.655782 -0.020539 }
+    }
+    <Vertex> 1251 {
+      -0.517453372478 0.678654849529 2.42750024796
+      <UV>  {
+        0.708377 0.672531
+        <Tangent> { 0.734591 -0.676793 -0.048245 }
+        <Binormal> { 0.045539 0.051495 -0.028997 }
+      }
+      <Normal> { -0.754631 0.655782 -0.020539 }
+    }
+    <Vertex> 1252 {
+      -0.685986340046 0.697590112686 2.51257038116
+      <UV>  {
+        0.741538 0.704627
+        <Tangent> { 0.913925 -0.352653 0.200939 }
+        <Binormal> { -0.152581 -0.407019 -0.020348 }
+      }
+      <Normal> { -0.911802 0.329569 0.244881 }
+    }
+    <Vertex> 1253 {
+      -0.370285332203 0.652679979801 2.51229548454
+      <UV>  {
+        0.683096 0.686752
+        <Tangent> { 0.657285 -0.324799 -0.680060 }
+        <Binormal> { 0.132388 0.645730 -0.180448 }
+      }
+      <Normal> { -0.977569 0.208533 0.029023 }
+    }
+    <Vertex> 1254 {
+      -0.370285332203 0.652679979801 2.51229548454
+      <UV>  {
+        0.683096 0.686752
+        <Tangent> { 0.657285 -0.324799 -0.680060 }
+        <Binormal> { 0.132388 0.645730 -0.180448 }
+      }
+      <Normal> { -0.977569 0.208533 0.029023 }
+    }
+    <Vertex> 1255 {
+      -0.685986340046 0.697590112686 2.51257038116
+      <UV>  {
+        0.741538 0.704627
+        <Tangent> { 0.913925 -0.352653 0.200939 }
+        <Binormal> { -0.152581 -0.407019 -0.020348 }
+      }
+      <Normal> { -0.911802 0.329569 0.244881 }
+    }
+    <Vertex> 1256 {
+      -0.685986340046 0.664598822594 2.64579248428
+      <UV>  {
+        0.727493 0.736575
+        <Tangent> { 0.729514 -0.640843 0.239019 }
+        <Binormal> { -0.420806 -0.534641 -0.149096 }
+      }
+      <Normal> { -0.746757 0.451613 0.488205 }
+    }
+    <Vertex> 1257 {
+      -0.685986340046 0.664598822594 2.64579248428
+      <UV>  {
+        0.727493 0.736575
+        <Tangent> { 0.729514 -0.640843 0.239019 }
+        <Binormal> { -0.420806 -0.534641 -0.149096 }
+      }
+      <Normal> { -0.746757 0.451613 0.488205 }
+    }
+    <Vertex> 1258 {
+      -0.308894872665 0.530036866665 2.59751915932
+      <UV>  {
+        0.676304 0.693285
+        <Tangent> { -0.076389 -0.940019 -0.332460 }
+        <Binormal> { -0.469512 0.075136 -0.104566 }
+      }
+      <Normal> { -0.056551 0.672964 0.737480 }
+    }
+    <Vertex> 1259 {
+      -0.370285332203 0.652679979801 2.51229548454
+      <UV>  {
+        0.683096 0.686752
+        <Tangent> { 0.657285 -0.324799 -0.680060 }
+        <Binormal> { 0.132388 0.645730 -0.180448 }
+      }
+      <Normal> { -0.977569 0.208533 0.029023 }
+    }
+    <Vertex> 1260 {
+      -0.685986340046 0.664598822594 2.64579248428
+      <UV>  {
+        0.727493 0.736575
+        <Tangent> { 0.729514 -0.640843 0.239019 }
+        <Binormal> { -0.420806 -0.534641 -0.149096 }
+      }
+      <Normal> { -0.746757 0.451613 0.488205 }
+    }
+    <Vertex> 1261 {
+      -0.641022980213 0.540606319904 2.70817518234
+      <UV>  {
+        0.697556 0.754412
+        <Tangent> { 0.091483 -0.963348 -0.252173 }
+        <Binormal> { -0.557981 -0.100817 0.182714 }
+      }
+      <Normal> { 0.127964 0.649739 0.749290 }
+    }
+    <Vertex> 1262 {
+      -0.308894872665 0.530036866665 2.59751915932
+      <UV>  {
+        0.676304 0.693285
+        <Tangent> { -0.076389 -0.940019 -0.332460 }
+        <Binormal> { -0.469512 0.075136 -0.104566 }
+      }
+      <Normal> { -0.056551 0.672964 0.737480 }
+    }
+    <Vertex> 1263 {
+      -0.641022980213 0.540606319904 2.70817518234
+      <UV>  {
+        0.697556 0.754412
+        <Tangent> { 0.091483 -0.963348 -0.252173 }
+        <Binormal> { -0.557981 -0.100817 0.182714 }
+      }
+      <Normal> { 0.127964 0.649739 0.749290 }
+    }
+    <Vertex> 1264 {
+      -0.61965739727 0.351054638624 2.6184015274
+      <UV>  {
+        0.656048 0.745442
+        <Tangent> { -0.272338 -0.881374 -0.386021 }
+        <Binormal> { -0.437837 -0.083730 0.500068 }
+      }
+      <Normal> { 0.675253 0.349132 0.649678 }
+    }
+    <Vertex> 1265 {
+      -0.308894872665 0.530036866665 2.59751915932
+      <UV>  {
+        0.676304 0.693285
+        <Tangent> { -0.076389 -0.940019 -0.332460 }
+        <Binormal> { -0.469512 0.075136 -0.104566 }
+      }
+      <Normal> { -0.056551 0.672964 0.737480 }
+    }
+    <Vertex> 1266 {
+      -0.339654237032 0.395900607109 2.55770850182
+      <UV>  {
+        0.668813 0.694679
+        <Tangent> { -0.891334 -0.413903 -0.184955 }
+        <Binormal> { -0.040808 0.089313 -0.003208 }
+      }
+      <Normal> { 0.869167 0.407208 0.280557 }
+    }
+    <Vertex> 1267 {
+      -0.308894872665 0.530036866665 2.59751915932
+      <UV>  {
+        0.676304 0.693285
+        <Tangent> { -0.076389 -0.940019 -0.332460 }
+        <Binormal> { -0.469512 0.075136 -0.104566 }
+      }
+      <Normal> { -0.056551 0.672964 0.737480 }
+    }
+    <Vertex> 1268 {
+      -0.61965739727 0.351054638624 2.6184015274
+      <UV>  {
+        0.656048 0.745442
+        <Tangent> { -0.272338 -0.881374 -0.386021 }
+        <Binormal> { -0.437837 -0.083730 0.500068 }
+      }
+      <Normal> { 0.675253 0.349132 0.649678 }
+    }
+    <Vertex> 1269 {
+      -0.61965739727 0.351054638624 2.6184015274
+      <UV>  {
+        0.656048 0.745442
+        <Tangent> { -0.272338 -0.881374 -0.386021 }
+        <Binormal> { -0.437837 -0.083730 0.500068 }
+      }
+      <Normal> { 0.675253 0.349132 0.649678 }
+    }
+    <Vertex> 1270 {
+      -0.545675098896 0.359876424074 2.54597640038
+      <UV>  {
+        0.646029 0.717516
+        <Tangent> { -0.860164 0.032568 -0.508976 }
+        <Binormal> { 0.168996 -0.453244 -0.314603 }
+      }
+      <Normal> { 0.943419 0.330027 0.031312 }
+    }
+    <Vertex> 1271 {
+      -0.339654237032 0.395900607109 2.55770850182
+      <UV>  {
+        0.668813 0.694679
+        <Tangent> { -0.891334 -0.413903 -0.184955 }
+        <Binormal> { -0.040808 0.089313 -0.003208 }
+      }
+      <Normal> { 0.869167 0.407208 0.280557 }
+    }
+    <Vertex> 1272 {
+      -0.545675098896 0.359876424074 2.54597640038
+      <UV>  {
+        0.646029 0.717516
+        <Tangent> { -0.860164 0.032568 -0.508976 }
+        <Binormal> { 0.168996 -0.453244 -0.314603 }
+      }
+      <Normal> { 0.943419 0.330027 0.031312 }
+    }
+    <Vertex> 1273 {
+      -0.398042112589 0.37090408802 2.47114396095
+      <UV>  {
+        0.665828 0.691229
+        <Tangent> { -0.745578 0.470673 0.471784 }
+        <Binormal> { 0.055492 0.238681 -0.150423 }
+      }
+      <Normal> { 0.897488 -0.364818 -0.247780 }
+    }
+    <Vertex> 1274 {
+      -0.339654237032 0.395900607109 2.55770850182
+      <UV>  {
+        0.668813 0.694679
+        <Tangent> { -0.891334 -0.413903 -0.184955 }
+        <Binormal> { -0.040808 0.089313 -0.003208 }
+      }
+      <Normal> { 0.869167 0.407208 0.280557 }
+    }
+    <Vertex> 1275 {
+      -0.431732654572 0.453684657812 2.42097377777
+      <UV>  {
+        0.664924 0.681467
+        <Tangent> { -0.452450 -0.178665 0.873709 }
+        <Binormal> { 0.205237 0.202979 0.147789 }
+      }
+      <Normal> { 0.631733 -0.077181 -0.771294 }
+    }
+    <Vertex> 1276 {
+      -0.398042112589 0.37090408802 2.47114396095
+      <UV>  {
+        0.665828 0.691229
+        <Tangent> { -0.745578 0.470673 0.471784 }
+        <Binormal> { 0.055492 0.238681 -0.150423 }
+      }
+      <Normal> { 0.897488 -0.364818 -0.247780 }
+    }
+    <Vertex> 1277 {
+      -0.545675098896 0.359876424074 2.54597640038
+      <UV>  {
+        0.646029 0.717516
+        <Tangent> { -0.860164 0.032568 -0.508976 }
+        <Binormal> { 0.168996 -0.453244 -0.314603 }
+      }
+      <Normal> { 0.943419 0.330027 0.031312 }
+    }
+    <Vertex> 1278 {
+      -0.431732654572 0.453684657812 2.42097377777
+      <UV>  {
+        0.664924 0.681467
+        <Tangent> { -0.452450 -0.178665 0.873709 }
+        <Binormal> { 0.205237 0.202979 0.147789 }
+      }
+      <Normal> { 0.631733 -0.077181 -0.771294 }
+    }
+    <Vertex> 1279 {
+      -0.545675098896 0.359876424074 2.54597640038
+      <UV>  {
+        0.646029 0.717516
+        <Tangent> { -0.860164 0.032568 -0.508976 }
+        <Binormal> { 0.168996 -0.453244 -0.314603 }
+      }
+      <Normal> { 0.943419 0.330027 0.031312 }
+    }
+    <Vertex> 1280 {
+      -0.497044444084 0.381648719311 2.42015099525
+      <UV>  {
+        0.637886 0.681559
+        <Tangent> { -0.529607 -0.823162 -0.204746 }
+        <Binormal> { 0.281092 -0.233237 0.210619 }
+      }
+      <Normal> { 0.701346 0.692404 -0.169256 }
+    }
+    <Vertex> 1281 {
+      -0.497044444084 0.381648719311 2.42015099525
+      <UV>  {
+        0.637886 0.681559
+        <Tangent> { -0.529607 -0.823162 -0.204746 }
+        <Binormal> { 0.281092 -0.233237 0.210619 }
+      }
+      <Normal> { 0.701346 0.692404 -0.169256 }
+    }
+    <Vertex> 1282 {
+      -0.450008273125 0.566834926605 2.38147306442
+      <UV>  {
+        0.679463 0.660830
+        <Tangent> { -0.017619 -0.987493 -0.156673 }
+        <Binormal> { 0.446469 0.003975 -0.075264 }
+      }
+      <Normal> { -0.059236 0.951720 -0.301126 }
+    }
+    <Vertex> 1283 {
+      -0.431732654572 0.453684657812 2.42097377777
+      <UV>  {
+        0.664924 0.681467
+        <Tangent> { -0.452450 -0.178665 0.873709 }
+        <Binormal> { 0.205237 0.202979 0.147789 }
+      }
+      <Normal> { 0.631733 -0.077181 -0.771294 }
+    }
+    <Vertex> 1284 {
+      -0.426731735468 0.550527513027 2.4268283844
+      <UV>  {
+        0.676666 0.675592
+        <Tangent> { -0.117935 -0.983230 0.139105 }
+        <Binormal> { 0.782986 -0.175442 -0.576242 }
+      }
+      <Normal> { -0.609272 -0.193426 -0.768975 }
+    }
+    <Vertex> 1285 {
+      -0.450008273125 0.566834926605 2.38147306442
+      <UV>  {
+        0.679463 0.660830
+        <Tangent> { -0.017619 -0.987493 -0.156673 }
+        <Binormal> { 0.446469 0.003975 -0.075264 }
+      }
+      <Normal> { -0.059236 0.951720 -0.301126 }
+    }
+    <Vertex> 1286 {
+      -0.517453372478 0.678654849529 2.42750024796
+      <UV>  {
+        0.708377 0.672531
+        <Tangent> { 0.734591 -0.676793 -0.048245 }
+        <Binormal> { 0.045539 0.051495 -0.028997 }
+      }
+      <Normal> { -0.754631 0.655782 -0.020539 }
+    }
+    <Vertex> 1287 {
+      -0.431732654572 0.453684657812 2.42097377777
+      <UV>  {
+        0.664924 0.681467
+        <Tangent> { -0.452450 -0.178665 0.873709 }
+        <Binormal> { 0.205237 0.202979 0.147789 }
+      }
+      <Normal> { 0.631733 -0.077181 -0.771294 }
+    }
+    <Vertex> 1288 {
+      -0.450008273125 0.566834926605 2.38147306442
+      <UV>  {
+        0.679463 0.660830
+        <Tangent> { -0.017619 -0.987493 -0.156673 }
+        <Binormal> { 0.446469 0.003975 -0.075264 }
+      }
+      <Normal> { -0.059236 0.951720 -0.301126 }
+    }
+    <Vertex> 1289 {
+      -0.426731735468 0.550527513027 2.4268283844
+      <UV>  {
+        0.676666 0.675592
+        <Tangent> { -0.117935 -0.983230 0.139105 }
+        <Binormal> { 0.782986 -0.175442 -0.576242 }
+      }
+      <Normal> { -0.609272 -0.193426 -0.768975 }
+    }
+    <Vertex> 1290 {
+      -0.289029031992 0.628871798515 2.21327781677
+      <UV>  {
+        0.673607 0.684141
+        <Tangent> { 0.028465 0.118593 -0.992535 }
+        <Binormal> { 0.067530 0.985018 0.119631 }
+      }
+      <Normal> { -0.988891 0.082766 -0.123264 }
+    }
+    <Vertex> 1291 {
+      -0.370285332203 0.652679979801 2.51229548454
+      <UV>  {
+        0.683096 0.686752
+        <Tangent> { 0.657285 -0.324799 -0.680060 }
+        <Binormal> { 0.132388 0.645730 -0.180448 }
+      }
+      <Normal> { -0.977569 0.208533 0.029023 }
+    }
+    <Vertex> 1292 {
+      -0.196065023541 0.524433851242 2.24237179756
+      <UV>  {
+        0.672718 0.685073
+        <Tangent> { -0.482685 -0.839707 -0.248812 }
+        <Binormal> { 0.036855 0.140367 -0.545218 }
+      }
+      <Normal> { -0.094241 0.965606 0.242225 }
+    }
+    <Vertex> 1293 {
+      -0.308894872665 0.530036866665 2.59751915932
+      <UV>  {
+        0.676304 0.693285
+        <Tangent> { -0.076389 -0.940019 -0.332460 }
+        <Binormal> { -0.469512 0.075136 -0.104566 }
+      }
+      <Normal> { -0.056551 0.672964 0.737480 }
+    }
+    <Vertex> 1294 {
+      -0.196065023541 0.524433851242 2.24237179756
+      <UV>  {
+        0.672718 0.685073
+        <Tangent> { -0.482685 -0.839707 -0.248812 }
+        <Binormal> { 0.036855 0.140367 -0.545218 }
+      }
+      <Normal> { -0.094241 0.965606 0.242225 }
+    }
+    <Vertex> 1295 {
+      -0.370285332203 0.652679979801 2.51229548454
+      <UV>  {
+        0.683096 0.686752
+        <Tangent> { 0.657285 -0.324799 -0.680060 }
+        <Binormal> { 0.132388 0.645730 -0.180448 }
+      }
+      <Normal> { -0.977569 0.208533 0.029023 }
+    }
+    <Vertex> 1296 {
+      -0.308894872665 0.530036866665 2.59751915932
+      <UV>  {
+        0.676304 0.693285
+        <Tangent> { -0.076389 -0.940019 -0.332460 }
+        <Binormal> { -0.469512 0.075136 -0.104566 }
+      }
+      <Normal> { -0.056551 0.672964 0.737480 }
+    }
+    <Vertex> 1297 {
+      -0.244923904538 0.410208582878 2.22846508026
+      <UV>  {
+        0.671542 0.685376
+        <Tangent> { -0.760868 -0.648869 -0.007056 }
+        <Binormal> { -0.109916 0.129928 -0.095654 }
+      }
+      <Normal> { 0.683218 0.708365 0.177099 }
+    }
+    <Vertex> 1298 {
+      -0.196065023541 0.524433851242 2.24237179756
+      <UV>  {
+        0.672718 0.685073
+        <Tangent> { -0.482685 -0.839707 -0.248812 }
+        <Binormal> { 0.036855 0.140367 -0.545218 }
+      }
+      <Normal> { -0.094241 0.965606 0.242225 }
+    }
+    <Vertex> 1299 {
+      -0.308894872665 0.530036866665 2.59751915932
+      <UV>  {
+        0.676304 0.693285
+        <Tangent> { -0.076389 -0.940019 -0.332460 }
+        <Binormal> { -0.469512 0.075136 -0.104566 }
+      }
+      <Normal> { -0.056551 0.672964 0.737480 }
+    }
+    <Vertex> 1300 {
+      -0.339654237032 0.395900607109 2.55770850182
+      <UV>  {
+        0.668813 0.694679
+        <Tangent> { -0.891334 -0.413903 -0.184955 }
+        <Binormal> { -0.040808 0.089313 -0.003208 }
+      }
+      <Normal> { 0.869167 0.407208 0.280557 }
+    }
+    <Vertex> 1301 {
+      -0.244923904538 0.410208582878 2.22846508026
+      <UV>  {
+        0.671542 0.685376
+        <Tangent> { -0.760868 -0.648869 -0.007056 }
+        <Binormal> { -0.109916 0.129928 -0.095654 }
+      }
+      <Normal> { 0.683218 0.708365 0.177099 }
+    }
+    <Vertex> 1302 {
+      -0.289029031992 0.628871798515 2.21327781677
+      <UV>  {
+        0.673607 0.684141
+        <Tangent> { 0.028465 0.118593 -0.992535 }
+        <Binormal> { 0.067530 0.985018 0.119631 }
+      }
+      <Normal> { -0.988891 0.082766 -0.123264 }
+    }
+    <Vertex> 1303 {
+      -0.371218383312 0.541882753372 2.18408060074
+      <UV>  {
+        0.672573 0.682667
+        <Tangent> { -0.124779 -0.925456 -0.357716 }
+        <Binormal> { -0.000981 0.124037 -0.320557 }
+      }
+      <Normal> { -0.458205 -0.829402 -0.319529 }
+    }
+    <Vertex> 1304 {
+      -0.370285332203 0.652679979801 2.51229548454
+      <UV>  {
+        0.683096 0.686752
+        <Tangent> { 0.657285 -0.324799 -0.680060 }
+        <Binormal> { 0.132388 0.645730 -0.180448 }
+      }
+      <Normal> { -0.977569 0.208533 0.029023 }
+    }
+    <Vertex> 1305 {
+      -0.371218383312 0.541882753372 2.18408060074
+      <UV>  {
+        0.672573 0.682667
+        <Tangent> { -0.124779 -0.925456 -0.357716 }
+        <Binormal> { -0.000981 0.124037 -0.320557 }
+      }
+      <Normal> { -0.458205 -0.829402 -0.319529 }
+    }
+    <Vertex> 1306 {
+      -0.426731735468 0.550527513027 2.4268283844
+      <UV>  {
+        0.676666 0.675592
+        <Tangent> { -0.117935 -0.983230 0.139105 }
+        <Binormal> { 0.782986 -0.175442 -0.576242 }
+      }
+      <Normal> { -0.609272 -0.193426 -0.768975 }
+    }
+    <Vertex> 1307 {
+      -0.370285332203 0.652679979801 2.51229548454
+      <UV>  {
+        0.683096 0.686752
+        <Tangent> { 0.657285 -0.324799 -0.680060 }
+        <Binormal> { 0.132388 0.645730 -0.180448 }
+      }
+      <Normal> { -0.977569 0.208533 0.029023 }
+    }
+    <Vertex> 1308 {
+      -0.371218383312 0.541882753372 2.18408060074
+      <UV>  {
+        0.672573 0.682667
+        <Tangent> { -0.124779 -0.925456 -0.357716 }
+        <Binormal> { -0.000981 0.124037 -0.320557 }
+      }
+      <Normal> { -0.458205 -0.829402 -0.319529 }
+    }
+    <Vertex> 1309 {
+      -0.377619832754 0.45941516757 2.18266177177
+      <UV>  {
+        0.671326 0.683515
+        <Tangent> { -0.435289 -0.304606 0.847194 }
+        <Binormal> { 0.871064 0.077089 0.475271 }
+      }
+      <Normal> { 0.252235 -0.915342 -0.313822 }
+    }
+    <Vertex> 1310 {
+      -0.426731735468 0.550527513027 2.4268283844
+      <UV>  {
+        0.676666 0.675592
+        <Tangent> { -0.117935 -0.983230 0.139105 }
+        <Binormal> { 0.782986 -0.175442 -0.576242 }
+      }
+      <Normal> { -0.609272 -0.193426 -0.768975 }
+    }
+    <Vertex> 1311 {
+      -0.431732654572 0.453684657812 2.42097377777
+      <UV>  {
+        0.664924 0.681467
+        <Tangent> { -0.452450 -0.178665 0.873709 }
+        <Binormal> { 0.205237 0.202979 0.147789 }
+      }
+      <Normal> { 0.631733 -0.077181 -0.771294 }
+    }
+    <Vertex> 1312 {
+      -0.426731735468 0.550527513027 2.4268283844
+      <UV>  {
+        0.676666 0.675592
+        <Tangent> { -0.117935 -0.983230 0.139105 }
+        <Binormal> { 0.782986 -0.175442 -0.576242 }
+      }
+      <Normal> { -0.609272 -0.193426 -0.768975 }
+    }
+    <Vertex> 1313 {
+      -0.377619832754 0.45941516757 2.18266177177
+      <UV>  {
+        0.671326 0.683515
+        <Tangent> { -0.435289 -0.304606 0.847194 }
+        <Binormal> { 0.871064 0.077089 0.475271 }
+      }
+      <Normal> { 0.252235 -0.915342 -0.313822 }
+    }
+    <Vertex> 1314 {
+      -0.244923904538 0.410208582878 2.22846508026
+      <UV>  {
+        0.671542 0.685376
+        <Tangent> { -0.760868 -0.648869 -0.007056 }
+        <Binormal> { -0.109916 0.129928 -0.095654 }
+      }
+      <Normal> { 0.683218 0.708365 0.177099 }
+    }
+    <Vertex> 1315 {
+      -0.339654237032 0.395900607109 2.55770850182
+      <UV>  {
+        0.668813 0.694679
+        <Tangent> { -0.891334 -0.413903 -0.184955 }
+        <Binormal> { -0.040808 0.089313 -0.003208 }
+      }
+      <Normal> { 0.869167 0.407208 0.280557 }
+    }
+    <Vertex> 1316 {
+      -0.328995764256 0.388922423124 2.19951605797
+      <UV>  {
+        0.671059 0.684794
+        <Tangent> { -0.708732 0.019120 0.705218 }
+        <Binormal> { 0.188073 0.517361 0.174983 }
+      }
+      <Normal> { 0.940031 -0.272256 -0.205390 }
+    }
+    <Vertex> 1317 {
+      -0.328995764256 0.388922423124 2.19951605797
+      <UV>  {
+        0.671059 0.684794
+        <Tangent> { -0.708732 0.019120 0.705218 }
+        <Binormal> { 0.188073 0.517361 0.174983 }
+      }
+      <Normal> { 0.940031 -0.272256 -0.205390 }
+    }
+    <Vertex> 1318 {
+      -0.339654237032 0.395900607109 2.55770850182
+      <UV>  {
+        0.668813 0.694679
+        <Tangent> { -0.891334 -0.413903 -0.184955 }
+        <Binormal> { -0.040808 0.089313 -0.003208 }
+      }
+      <Normal> { 0.869167 0.407208 0.280557 }
+    }
+    <Vertex> 1319 {
+      -0.398042112589 0.37090408802 2.47114396095
+      <UV>  {
+        0.665828 0.691229
+        <Tangent> { -0.745578 0.470673 0.471784 }
+        <Binormal> { 0.055492 0.238681 -0.150423 }
+      }
+      <Normal> { 0.897488 -0.364818 -0.247780 }
+    }
+    <Vertex> 1320 {
+      -0.377619832754 0.45941516757 2.18266177177
+      <UV>  {
+        0.671326 0.683515
+        <Tangent> { -0.435289 -0.304606 0.847194 }
+        <Binormal> { 0.871064 0.077089 0.475271 }
+      }
+      <Normal> { 0.252235 -0.915342 -0.313822 }
+    }
+    <Vertex> 1321 {
+      -0.328995764256 0.388922423124 2.19951605797
+      <UV>  {
+        0.671059 0.684794
+        <Tangent> { -0.708732 0.019120 0.705218 }
+        <Binormal> { 0.188073 0.517361 0.174983 }
+      }
+      <Normal> { 0.940031 -0.272256 -0.205390 }
+    }
+    <Vertex> 1322 {
+      -0.398042112589 0.37090408802 2.47114396095
+      <UV>  {
+        0.665828 0.691229
+        <Tangent> { -0.745578 0.470673 0.471784 }
+        <Binormal> { 0.055492 0.238681 -0.150423 }
+      }
+      <Normal> { 0.897488 -0.364818 -0.247780 }
+    }
+    <Vertex> 1323 {
+      -0.398042112589 0.37090408802 2.47114396095
+      <UV>  {
+        0.665828 0.691229
+        <Tangent> { -0.745578 0.470673 0.471784 }
+        <Binormal> { 0.055492 0.238681 -0.150423 }
+      }
+      <Normal> { 0.897488 -0.364818 -0.247780 }
+    }
+    <Vertex> 1324 {
+      -0.431732654572 0.453684657812 2.42097377777
+      <UV>  {
+        0.664924 0.681467
+        <Tangent> { -0.452450 -0.178665 0.873709 }
+        <Binormal> { 0.205237 0.202979 0.147789 }
+      }
+      <Normal> { 0.631733 -0.077181 -0.771294 }
+    }
+    <Vertex> 1325 {
+      -0.377619832754 0.45941516757 2.18266177177
+      <UV>  {
+        0.671326 0.683515
+        <Tangent> { -0.435289 -0.304606 0.847194 }
+        <Binormal> { 0.871064 0.077089 0.475271 }
+      }
+      <Normal> { 0.252235 -0.915342 -0.313822 }
+    }
+    <Vertex> 1326 {
+      -0.183312594891 0.607021808624 1.95916116238
+      <UV>  {
+        0.672372 0.684478
+        <Tangent> { 0.450341 0.033492 -0.892228 }
+        <Binormal> { 0.095101 0.792464 0.077748 }
+      }
+      <Normal> { -0.978698 0.099857 0.179327 }
+    }
+    <Vertex> 1327 {
+      -0.289029031992 0.628871798515 2.21327781677
+      <UV>  {
+        0.673607 0.684141
+        <Tangent> { 0.028465 0.118593 -0.992535 }
+        <Binormal> { 0.067530 0.985018 0.119631 }
+      }
+      <Normal> { -0.988891 0.082766 -0.123264 }
+    }
+    <Vertex> 1328 {
+      -0.128874242306 0.481131255627 1.97628712654
+      <UV>  {
+        0.672260 0.684574
+        <Tangent> { -0.011005 -0.978860 -0.204234 }
+        <Binormal> { -0.216648 -0.024016 0.126778 }
+      }
+      <Normal> { 0.139653 0.901578 0.409436 }
+    }
+    <Vertex> 1329 {
+      -0.196065023541 0.524433851242 2.24237179756
+      <UV>  {
+        0.672718 0.685073
+        <Tangent> { -0.482685 -0.839707 -0.248812 }
+        <Binormal> { 0.036855 0.140367 -0.545218 }
+      }
+      <Normal> { -0.094241 0.965606 0.242225 }
+    }
+    <Vertex> 1330 {
+      -0.128874242306 0.481131255627 1.97628712654
+      <UV>  {
+        0.672260 0.684574
+        <Tangent> { -0.011005 -0.978860 -0.204234 }
+        <Binormal> { -0.216648 -0.024016 0.126778 }
+      }
+      <Normal> { 0.139653 0.901578 0.409436 }
+    }
+    <Vertex> 1331 {
+      -0.289029031992 0.628871798515 2.21327781677
+      <UV>  {
+        0.673607 0.684141
+        <Tangent> { 0.028465 0.118593 -0.992535 }
+        <Binormal> { 0.067530 0.985018 0.119631 }
+      }
+      <Normal> { -0.988891 0.082766 -0.123264 }
+    }
+    <Vertex> 1332 {
+      -0.196065023541 0.524433851242 2.24237179756
+      <UV>  {
+        0.672718 0.685073
+        <Tangent> { -0.482685 -0.839707 -0.248812 }
+        <Binormal> { 0.036855 0.140367 -0.545218 }
+      }
+      <Normal> { -0.094241 0.965606 0.242225 }
+    }
+    <Vertex> 1333 {
+      -0.206447958946 0.402461975813 1.99062907696
+      <UV>  {
+        0.672165 0.684582
+        <Tangent> { -0.925358 0.333958 -0.179401 }
+        <Binormal> { 0.032681 -0.113283 -0.379450 }
+      }
+      <Normal> { 0.996185 0.050539 0.070711 }
+    }
+    <Vertex> 1334 {
+      -0.128874242306 0.481131255627 1.97628712654
+      <UV>  {
+        0.672260 0.684574
+        <Tangent> { -0.011005 -0.978860 -0.204234 }
+        <Binormal> { -0.216648 -0.024016 0.126778 }
+      }
+      <Normal> { 0.139653 0.901578 0.409436 }
+    }
+    <Vertex> 1335 {
+      -0.196065023541 0.524433851242 2.24237179756
+      <UV>  {
+        0.672718 0.685073
+        <Tangent> { -0.482685 -0.839707 -0.248812 }
+        <Binormal> { 0.036855 0.140367 -0.545218 }
+      }
+      <Normal> { -0.094241 0.965606 0.242225 }
+    }
+    <Vertex> 1336 {
+      -0.244923904538 0.410208582878 2.22846508026
+      <UV>  {
+        0.671542 0.685376
+        <Tangent> { -0.760868 -0.648869 -0.007056 }
+        <Binormal> { -0.109916 0.129928 -0.095654 }
+      }
+      <Normal> { 0.683218 0.708365 0.177099 }
+    }
+    <Vertex> 1337 {
+      -0.206447958946 0.402461975813 1.99062907696
+      <UV>  {
+        0.672165 0.684582
+        <Tangent> { -0.925358 0.333958 -0.179401 }
+        <Binormal> { 0.032681 -0.113283 -0.379450 }
+      }
+      <Normal> { 0.996185 0.050539 0.070711 }
+    }
+    <Vertex> 1338 {
+      -0.183312594891 0.607021808624 1.95916116238
+      <UV>  {
+        0.672372 0.684478
+        <Tangent> { 0.450341 0.033492 -0.892228 }
+        <Binormal> { 0.095101 0.792464 0.077748 }
+      }
+      <Normal> { -0.978698 0.099857 0.179327 }
+    }
+    <Vertex> 1339 {
+      -0.270814776421 0.499906629324 1.96815419197
+      <UV>  {
+        0.672236 0.684327
+        <Tangent> { -0.436931 -0.892491 -0.112034 }
+        <Binormal> { 0.211429 -0.139301 0.285132 }
+      }
+      <Normal> { -0.133824 -0.925932 -0.353130 }
+    }
+    <Vertex> 1340 {
+      -0.289029031992 0.628871798515 2.21327781677
+      <UV>  {
+        0.673607 0.684141
+        <Tangent> { 0.028465 0.118593 -0.992535 }
+        <Binormal> { 0.067530 0.985018 0.119631 }
+      }
+      <Normal> { -0.988891 0.082766 -0.123264 }
+    }
+    <Vertex> 1341 {
+      -0.270814776421 0.499906629324 1.96815419197
+      <UV>  {
+        0.672236 0.684327
+        <Tangent> { -0.436931 -0.892491 -0.112034 }
+        <Binormal> { 0.211429 -0.139301 0.285132 }
+      }
+      <Normal> { -0.133824 -0.925932 -0.353130 }
+    }
+    <Vertex> 1342 {
+      -0.371218383312 0.541882753372 2.18408060074
+      <UV>  {
+        0.672573 0.682667
+        <Tangent> { -0.124779 -0.925456 -0.357716 }
+        <Binormal> { -0.000981 0.124037 -0.320557 }
+      }
+      <Normal> { -0.458205 -0.829402 -0.319529 }
+    }
+    <Vertex> 1343 {
+      -0.289029031992 0.628871798515 2.21327781677
+      <UV>  {
+        0.673607 0.684141
+        <Tangent> { 0.028465 0.118593 -0.992535 }
+        <Binormal> { 0.067530 0.985018 0.119631 }
+      }
+      <Normal> { -0.988891 0.082766 -0.123264 }
+    }
+    <Vertex> 1344 {
+      -0.377619832754 0.45941516757 2.18266177177
+      <UV>  {
+        0.671326 0.683515
+        <Tangent> { -0.435289 -0.304606 0.847194 }
+        <Binormal> { 0.871064 0.077089 0.475271 }
+      }
+      <Normal> { 0.252235 -0.915342 -0.313822 }
+    }
+    <Vertex> 1345 {
+      -0.371218383312 0.541882753372 2.18408060074
+      <UV>  {
+        0.672573 0.682667
+        <Tangent> { -0.124779 -0.925456 -0.357716 }
+        <Binormal> { -0.000981 0.124037 -0.320557 }
+      }
+      <Normal> { -0.458205 -0.829402 -0.319529 }
+    }
+    <Vertex> 1346 {
+      -0.270814776421 0.499906629324 1.96815419197
+      <UV>  {
+        0.672236 0.684327
+        <Tangent> { -0.436931 -0.892491 -0.112034 }
+        <Binormal> { 0.211429 -0.139301 0.285132 }
+      }
+      <Normal> { -0.133824 -0.925932 -0.353130 }
+    }
+    <Vertex> 1347 {
+      -0.206447958946 0.402461975813 1.99062907696
+      <UV>  {
+        0.672165 0.684582
+        <Tangent> { -0.925358 0.333958 -0.179401 }
+        <Binormal> { 0.032681 -0.113283 -0.379450 }
+      }
+      <Normal> { 0.996185 0.050539 0.070711 }
+    }
+    <Vertex> 1348 {
+      -0.244923904538 0.410208582878 2.22846508026
+      <UV>  {
+        0.671542 0.685376
+        <Tangent> { -0.760868 -0.648869 -0.007056 }
+        <Binormal> { -0.109916 0.129928 -0.095654 }
+      }
+      <Normal> { 0.683218 0.708365 0.177099 }
+    }
+    <Vertex> 1349 {
+      -0.328995764256 0.388922423124 2.19951605797
+      <UV>  {
+        0.671059 0.684794
+        <Tangent> { -0.708732 0.019120 0.705218 }
+        <Binormal> { 0.188073 0.517361 0.174983 }
+      }
+      <Normal> { 0.940031 -0.272256 -0.205390 }
+    }
+    <Vertex> 1350 {
+      -0.270814776421 0.499906629324 1.96815419197
+      <UV>  {
+        0.672236 0.684327
+        <Tangent> { -0.436931 -0.892491 -0.112034 }
+        <Binormal> { 0.211429 -0.139301 0.285132 }
+      }
+      <Normal> { -0.133824 -0.925932 -0.353130 }
+    }
+    <Vertex> 1351 {
+      -0.206447958946 0.402461975813 1.99062907696
+      <UV>  {
+        0.672165 0.684582
+        <Tangent> { -0.925358 0.333958 -0.179401 }
+        <Binormal> { 0.032681 -0.113283 -0.379450 }
+      }
+      <Normal> { 0.996185 0.050539 0.070711 }
+    }
+    <Vertex> 1352 {
+      -0.328995764256 0.388922423124 2.19951605797
+      <UV>  {
+        0.671059 0.684794
+        <Tangent> { -0.708732 0.019120 0.705218 }
+        <Binormal> { 0.188073 0.517361 0.174983 }
+      }
+      <Normal> { 0.940031 -0.272256 -0.205390 }
+    }
+    <Vertex> 1353 {
+      -0.328995764256 0.388922423124 2.19951605797
+      <UV>  {
+        0.671059 0.684794
+        <Tangent> { -0.708732 0.019120 0.705218 }
+        <Binormal> { 0.188073 0.517361 0.174983 }
+      }
+      <Normal> { 0.940031 -0.272256 -0.205390 }
+    }
+    <Vertex> 1354 {
+      -0.377619832754 0.45941516757 2.18266177177
+      <UV>  {
+        0.671326 0.683515
+        <Tangent> { -0.435289 -0.304606 0.847194 }
+        <Binormal> { 0.871064 0.077089 0.475271 }
+      }
+      <Normal> { 0.252235 -0.915342 -0.313822 }
+    }
+    <Vertex> 1355 {
+      -0.270814776421 0.499906629324 1.96815419197
+      <UV>  {
+        0.672236 0.684327
+        <Tangent> { -0.436931 -0.892491 -0.112034 }
+        <Binormal> { 0.211429 -0.139301 0.285132 }
+      }
+      <Normal> { -0.133824 -0.925932 -0.353130 }
+    }
+    <Vertex> 1356 {
+      -0.406576216221 0.793259382248 1.11355721951
+      <UV>  {
+        0.702169 0.499903
+        <Tangent> { 0.842615 -0.396743 -0.364136 }
+        <Binormal> { 0.146994 0.348066 -0.039089 }
+      }
+      <Normal> { -0.921690 0.387585 -0.014771 }
+    }
+    <Vertex> 1357 {
+      -0.44210088253 0.793259382248 1.42989528179
+      <UV>  {
+        0.711599 0.522829
+        <Tangent> { 0.721335 -0.681716 -0.122228 }
+        <Binormal> { 0.063549 0.072921 -0.031671 }
+      }
+      <Normal> { -0.748070 0.663076 0.025666 }
+    }
+    <Vertex> 1358 {
+      -0.339195817709 0.609579145908 1.30489075184
+      <UV>  {
+        0.692886 0.509933
+        <Tangent> { 0.022209 -0.983439 0.179873 }
+        <Binormal> { -0.385464 -0.013679 -0.027193 }
+      }
+      <Normal> { -0.049684 0.975646 0.213507 }
+    }
+    <Vertex> 1359 {
+      -0.40870013833 0.609579145908 1.61867773533
+      <UV>  {
+        0.687942 0.542010
+        <Tangent> { -0.045198 -0.989728 0.135630 }
+        <Binormal> { -0.298144 0.008481 -0.037469 }
+      }
+      <Normal> { 0.007172 0.986053 0.166112 }
+    }
+    <Vertex> 1360 {
+      -0.339195817709 0.609579145908 1.30489075184
+      <UV>  {
+        0.692886 0.509933
+        <Tangent> { 0.022209 -0.983439 0.179873 }
+        <Binormal> { -0.385464 -0.013679 -0.027193 }
+      }
+      <Normal> { -0.049684 0.975646 0.213507 }
+    }
+    <Vertex> 1361 {
+      -0.44210088253 0.793259382248 1.42989528179
+      <UV>  {
+        0.711599 0.522829
+        <Tangent> { 0.721335 -0.681716 -0.122228 }
+        <Binormal> { 0.063549 0.072921 -0.031671 }
+      }
+      <Normal> { -0.748070 0.663076 0.025666 }
+    }
+    <Vertex> 1362 {
+      -0.406576216221 0.793259382248 1.11355721951
+      <UV>  {
+        0.702169 0.499903
+        <Tangent> { 0.842615 -0.396743 -0.364136 }
+        <Binormal> { 0.146994 0.348066 -0.039089 }
+      }
+      <Normal> { -0.921690 0.387585 -0.014771 }
+    }
+    <Vertex> 1363 {
+      -0.605372190475 0.772850513458 1.16457939148
+      <UV>  {
+        0.713848 0.493651
+        <Tangent> { 0.575642 -0.195486 -0.793991 }
+        <Binormal> { -0.279845 0.861403 -0.414971 }
+      }
+      <Normal> { -0.814570 -0.444258 -0.372875 }
+    }
+    <Vertex> 1364 {
+      -0.44210088253 0.793259382248 1.42989528179
+      <UV>  {
+        0.711599 0.522829
+        <Tangent> { 0.721335 -0.681716 -0.122228 }
+        <Binormal> { 0.063549 0.072921 -0.031671 }
+      }
+      <Normal> { -0.748070 0.663076 0.025666 }
+    }
+    <Vertex> 1365 {
+      -0.339195817709 0.609579145908 1.30489075184
+      <UV>  {
+        0.692886 0.509933
+        <Tangent> { 0.022209 -0.983439 0.179873 }
+        <Binormal> { -0.385464 -0.013679 -0.027193 }
+      }
+      <Normal> { -0.049684 0.975646 0.213507 }
+    }
+    <Vertex> 1366 {
+      -0.40870013833 0.609579145908 1.61867773533
+      <UV>  {
+        0.687942 0.542010
+        <Tangent> { -0.045198 -0.989728 0.135630 }
+        <Binormal> { -0.298144 0.008481 -0.037469 }
+      }
+      <Normal> { 0.007172 0.986053 0.166112 }
+    }
+    <Vertex> 1367 {
+      -0.442100912333 0.420796722174 1.4196908474
+      <UV>  {
+        0.672360 0.513295
+        <Tangent> { -0.542982 -0.597087 0.590473 }
+        <Binormal> { -0.566752 0.426329 -0.090064 }
+      }
+      <Normal> { 0.577624 0.801050 0.157018 }
+    }
+    <Vertex> 1368 {
+      -0.339195817709 0.609579145908 1.30489075184
+      <UV>  {
+        0.692886 0.509933
+        <Tangent> { 0.022209 -0.983439 0.179873 }
+        <Binormal> { -0.385464 -0.013679 -0.027193 }
+      }
+      <Normal> { -0.049684 0.975646 0.213507 }
+    }
+    <Vertex> 1369 {
+      -0.442100912333 0.420796722174 1.4196908474
+      <UV>  {
+        0.672360 0.513295
+        <Tangent> { -0.542982 -0.597087 0.590473 }
+        <Binormal> { -0.566752 0.426329 -0.090064 }
+      }
+      <Normal> { 0.577624 0.801050 0.157018 }
+    }
+    <Vertex> 1370 {
+      -0.406576246023 0.303445458412 1.1263127327
+      <UV>  {
+        0.685617 0.496794
+        <Tangent> { -0.551953 -0.599296 0.579820 }
+        <Binormal> { -0.458961 0.492214 0.071845 }
+      }
+      <Normal> { 0.734764 0.667623 0.119907 }
+    }
+    <Vertex> 1371 {
+      -0.60537225008 0.257525414228 1.20029509068
+      <UV>  {
+        0.677070 0.487255
+        <Tangent> { -0.150623 -0.475430 0.866763 }
+        <Binormal> { 0.356671 0.770047 0.484361 }
+      }
+      <Normal> { 0.929746 -0.281045 -0.237831 }
+    }
+    <Vertex> 1372 {
+      -0.406576246023 0.303445458412 1.1263127327
+      <UV>  {
+        0.685617 0.496794
+        <Tangent> { -0.551953 -0.599296 0.579820 }
+        <Binormal> { -0.458961 0.492214 0.071845 }
+      }
+      <Normal> { 0.734764 0.667623 0.119907 }
+    }
+    <Vertex> 1373 {
+      -0.442100912333 0.420796722174 1.4196908474
+      <UV>  {
+        0.672360 0.513295
+        <Tangent> { -0.542982 -0.597087 0.590473 }
+        <Binormal> { -0.566752 0.426329 -0.090064 }
+      }
+      <Normal> { 0.577624 0.801050 0.157018 }
+    }
+    <Vertex> 1374 {
+      -0.513723015785 0.721828222275 0.978348135948
+      <UV>  {
+        0.702163 0.492974
+        <Tangent> { 0.708757 0.346192 -0.614666 }
+        <Binormal> { -0.415602 0.628960 -0.124979 }
+      }
+      <Normal> { -0.800501 -0.567339 -0.193182 }
+    }
+    <Vertex> 1375 {
+      -0.641087830067 0.589170277119 1.07784152031
+      <UV>  {
+        0.703906 0.485641
+        <Tangent> { 0.114917 -0.826869 -0.550528 }
+        <Binormal> { 0.075620 0.112000 -0.152434 }
+      }
+      <Normal> { -0.075198 -0.785394 -0.614368 }
+    }
+    <Vertex> 1376 {
+      -0.605372190475 0.772850513458 1.16457939148
+      <UV>  {
+        0.713848 0.493651
+        <Tangent> { 0.575642 -0.195486 -0.793991 }
+        <Binormal> { -0.279845 0.861403 -0.414971 }
+      }
+      <Normal> { -0.814570 -0.444258 -0.372875 }
+    }
+    <Vertex> 1377 {
+      -0.605372190475 0.772850513458 1.16457939148
+      <UV>  {
+        0.713848 0.493651
+        <Tangent> { 0.575642 -0.195486 -0.793991 }
+        <Binormal> { -0.279845 0.861403 -0.414971 }
+      }
+      <Normal> { -0.814570 -0.444258 -0.372875 }
+    }
+    <Vertex> 1378 {
+      -0.406576216221 0.793259382248 1.11355721951
+      <UV>  {
+        0.702169 0.499903
+        <Tangent> { 0.842615 -0.396743 -0.364136 }
+        <Binormal> { 0.146994 0.348066 -0.039089 }
+      }
+      <Normal> { -0.921690 0.387585 -0.014771 }
+    }
+    <Vertex> 1379 {
+      -0.513723015785 0.721828222275 0.978348135948
+      <UV>  {
+        0.702163 0.492974
+        <Tangent> { 0.708757 0.346192 -0.614666 }
+        <Binormal> { -0.415602 0.628960 -0.124979 }
+      }
+      <Normal> { -0.800501 -0.567339 -0.193182 }
+    }
+    <Vertex> 1380 {
+      -0.406576246023 0.303445458412 1.1263127327
+      <UV>  {
+        0.685617 0.496794
+        <Tangent> { -0.551953 -0.599296 0.579820 }
+        <Binormal> { -0.458961 0.492214 0.071845 }
+      }
+      <Normal> { 0.734764 0.667623 0.119907 }
+    }
+    <Vertex> 1381 {
+      -0.60537225008 0.257525414228 1.20029509068
+      <UV>  {
+        0.677070 0.487255
+        <Tangent> { -0.150623 -0.475430 0.866763 }
+        <Binormal> { 0.356671 0.770047 0.484361 }
+      }
+      <Normal> { 0.929746 -0.281045 -0.237831 }
+    }
+    <Vertex> 1382 {
+      -0.513723015785 0.293241024017 1.01916599274
+      <UV>  {
+        0.687557 0.491719
+        <Tangent> { -0.816437 0.009748 0.577353 }
+        <Binormal> { 0.227699 0.221150 0.318256 }
+      }
+      <Normal> { 0.853877 -0.400006 -0.332957 }
+    }
+    <Vertex> 1383 {
+      -0.597909808159 0.589170277119 0.922223627567
+      <UV>  {
+        0.700078 0.488804
+        <Tangent> { 0.479754 0.602910 -0.637444 }
+        <Binormal> { -0.745475 0.202245 -0.369771 }
+      }
+      <Normal> { -0.153691 -0.963897 -0.217353 }
+    }
+    <Vertex> 1384 {
+      -0.641087830067 0.589170277119 1.07784152031
+      <UV>  {
+        0.703906 0.485641
+        <Tangent> { 0.114917 -0.826869 -0.550528 }
+        <Binormal> { 0.075620 0.112000 -0.152434 }
+      }
+      <Normal> { -0.075198 -0.785394 -0.614368 }
+    }
+    <Vertex> 1385 {
+      -0.513723015785 0.721828222275 0.978348135948
+      <UV>  {
+        0.702163 0.492974
+        <Tangent> { 0.708757 0.346192 -0.614666 }
+        <Binormal> { -0.415602 0.628960 -0.124979 }
+      }
+      <Normal> { -0.800501 -0.567339 -0.193182 }
+    }
+    <Vertex> 1386 {
+      -0.60537225008 0.257525414228 1.20029509068
+      <UV>  {
+        0.677070 0.487255
+        <Tangent> { -0.150623 -0.475430 0.866763 }
+        <Binormal> { 0.356671 0.770047 0.484361 }
+      }
+      <Normal> { 0.929746 -0.281045 -0.237831 }
+    }
+    <Vertex> 1387 {
+      -0.641087830067 0.589170277119 1.07784152031
+      <UV>  {
+        0.703906 0.485641
+        <Tangent> { 0.114917 -0.826869 -0.550528 }
+        <Binormal> { 0.075620 0.112000 -0.152434 }
+      }
+      <Normal> { -0.075198 -0.785394 -0.614368 }
+    }
+    <Vertex> 1388 {
+      -0.597909808159 0.589170277119 0.922223627567
+      <UV>  {
+        0.700078 0.488804
+        <Tangent> { 0.479754 0.602910 -0.637444 }
+        <Binormal> { -0.745475 0.202245 -0.369771 }
+      }
+      <Normal> { -0.153691 -0.963897 -0.217353 }
+    }
+    <Vertex> 1389 {
+      -0.597909808159 0.589170277119 0.922223627567
+      <UV>  {
+        0.700078 0.488804
+        <Tangent> { 0.479754 0.602910 -0.637444 }
+        <Binormal> { -0.745475 0.202245 -0.369771 }
+      }
+      <Normal> { -0.153691 -0.963897 -0.217353 }
+    }
+    <Vertex> 1390 {
+      -0.513723015785 0.293241024017 1.01916599274
+      <UV>  {
+        0.687557 0.491719
+        <Tangent> { -0.816437 0.009748 0.577353 }
+        <Binormal> { 0.227699 0.221150 0.318256 }
+      }
+      <Normal> { 0.853877 -0.400006 -0.332957 }
+    }
+    <Vertex> 1391 {
+      -0.60537225008 0.257525414228 1.20029509068
+      <UV>  {
+        0.677070 0.487255
+        <Tangent> { -0.150623 -0.475430 0.866763 }
+        <Binormal> { 0.356671 0.770047 0.484361 }
+      }
+      <Normal> { 0.929746 -0.281045 -0.237831 }
+    }
+    <Vertex> 1392 {
+      -0.343391120434 0.772850453854 0.793742358685
+      <UV>  {
+        0.698517 0.490061
+        <Tangent> { 0.957377 -0.263608 -0.118066 }
+        <Binormal> { 0.027958 0.033255 0.152455 }
+      }
+      <Normal> { -0.908994 0.409528 0.077364 }
+    }
+    <Vertex> 1393 {
+      -0.406576216221 0.793259382248 1.11355721951
+      <UV>  {
+        0.702169 0.499903
+        <Tangent> { 0.842615 -0.396743 -0.364136 }
+        <Binormal> { 0.146994 0.348066 -0.039089 }
+      }
+      <Normal> { -0.921690 0.387585 -0.014771 }
+    }
+    <Vertex> 1394 {
+      -0.243891134858 0.609579145908 0.912188529968
+      <UV>  {
+        0.696123 0.493475
+        <Tangent> { 0.121476 -0.990545 0.063752 }
+        <Binormal> { -0.190134 -0.021060 0.035073 }
+      }
+      <Normal> { -0.085757 0.988006 0.128361 }
+    }
+    <Vertex> 1395 {
+      -0.339195817709 0.609579145908 1.30489075184
+      <UV>  {
+        0.692886 0.509933
+        <Tangent> { 0.022209 -0.983439 0.179873 }
+        <Binormal> { -0.385464 -0.013679 -0.027193 }
+      }
+      <Normal> { -0.049684 0.975646 0.213507 }
+    }
+    <Vertex> 1396 {
+      -0.243891134858 0.609579145908 0.912188529968
+      <UV>  {
+        0.696123 0.493475
+        <Tangent> { 0.121476 -0.990545 0.063752 }
+        <Binormal> { -0.190134 -0.021060 0.035073 }
+      }
+      <Normal> { -0.085757 0.988006 0.128361 }
+    }
+    <Vertex> 1397 {
+      -0.406576216221 0.793259382248 1.11355721951
+      <UV>  {
+        0.702169 0.499903
+        <Tangent> { 0.842615 -0.396743 -0.364136 }
+        <Binormal> { 0.146994 0.348066 -0.039089 }
+      }
+      <Normal> { -0.921690 0.387585 -0.014771 }
+    }
+    <Vertex> 1398 {
+      -0.343391120434 0.772850453854 0.793742358685
+      <UV>  {
+        0.698517 0.490061
+        <Tangent> { 0.957377 -0.263608 -0.118066 }
+        <Binormal> { 0.027958 0.033255 0.152455 }
+      }
+      <Normal> { -0.908994 0.409528 0.077364 }
+    }
+    <Vertex> 1399 {
+      -0.513723015785 0.721828222275 0.978348135948
+      <UV>  {
+        0.702163 0.492974
+        <Tangent> { 0.708757 0.346192 -0.614666 }
+        <Binormal> { -0.415602 0.628960 -0.124979 }
+      }
+      <Normal> { -0.800501 -0.567339 -0.193182 }
+    }
+    <Vertex> 1400 {
+      -0.406576216221 0.793259382248 1.11355721951
+      <UV>  {
+        0.702169 0.499903
+        <Tangent> { 0.842615 -0.396743 -0.364136 }
+        <Binormal> { 0.146994 0.348066 -0.039089 }
+      }
+      <Normal> { -0.921690 0.387585 -0.014771 }
+    }
+    <Vertex> 1401 {
+      -0.243891134858 0.609579145908 0.912188529968
+      <UV>  {
+        0.696123 0.493475
+        <Tangent> { 0.121476 -0.990545 0.063752 }
+        <Binormal> { -0.190134 -0.021060 0.035073 }
+      }
+      <Normal> { -0.085757 0.988006 0.128361 }
+    }
+    <Vertex> 1402 {
+      -0.339195817709 0.609579145908 1.30489075184
+      <UV>  {
+        0.692886 0.509933
+        <Tangent> { 0.022209 -0.983439 0.179873 }
+        <Binormal> { -0.385464 -0.013679 -0.027193 }
+      }
+      <Normal> { -0.049684 0.975646 0.213507 }
+    }
+    <Vertex> 1403 {
+      -0.406576246023 0.303445458412 1.1263127327
+      <UV>  {
+        0.685617 0.496794
+        <Tangent> { -0.551953 -0.599296 0.579820 }
+        <Binormal> { -0.458961 0.492214 0.071845 }
+      }
+      <Normal> { 0.734764 0.667623 0.119907 }
+    }
+    <Vertex> 1404 {
+      -0.243891134858 0.609579145908 0.912188529968
+      <UV>  {
+        0.696123 0.493475
+        <Tangent> { 0.121476 -0.990545 0.063752 }
+        <Binormal> { -0.190134 -0.021060 0.035073 }
+      }
+      <Normal> { -0.085757 0.988006 0.128361 }
+    }
+    <Vertex> 1405 {
+      -0.406576246023 0.303445458412 1.1263127327
+      <UV>  {
+        0.685617 0.496794
+        <Tangent> { -0.551953 -0.599296 0.579820 }
+        <Binormal> { -0.458961 0.492214 0.071845 }
+      }
+      <Normal> { 0.734764 0.667623 0.119907 }
+    }
+    <Vertex> 1406 {
+      -0.344510048628 0.385081112385 0.807941675186
+      <UV>  {
+        0.693041 0.490121
+        <Tangent> { -0.881632 -0.401686 0.247737 }
+        <Binormal> { -0.059809 0.026908 -0.169218 }
+      }
+      <Normal> { 0.805658 0.559008 -0.195868 }
+    }
+    <Vertex> 1407 {
+      -0.513723015785 0.293241024017 1.01916599274
+      <UV>  {
+        0.687557 0.491719
+        <Tangent> { -0.816437 0.009748 0.577353 }
+        <Binormal> { 0.227699 0.221150 0.318256 }
+      }
+      <Normal> { 0.853877 -0.400006 -0.332957 }
+    }
+    <Vertex> 1408 {
+      -0.344510048628 0.385081112385 0.807941675186
+      <UV>  {
+        0.693041 0.490121
+        <Tangent> { -0.881632 -0.401686 0.247737 }
+        <Binormal> { -0.059809 0.026908 -0.169218 }
+      }
+      <Normal> { 0.805658 0.559008 -0.195868 }
+    }
+    <Vertex> 1409 {
+      -0.406576246023 0.303445458412 1.1263127327
+      <UV>  {
+        0.685617 0.496794
+        <Tangent> { -0.551953 -0.599296 0.579820 }
+        <Binormal> { -0.458961 0.492214 0.071845 }
+      }
+      <Normal> { 0.734764 0.667623 0.119907 }
+    }
+    <Vertex> 1410 {
+      -0.462860316038 0.772850453854 0.757511079311
+      <UV>  {
+        0.698716 0.488899
+        <Tangent> { 0.586240 0.783506 -0.206010 }
+        <Binormal> { -0.102195 0.174213 0.371759 }
+      }
+      <Normal> { -0.858333 -0.513016 0.004456 }
+    }
+    <Vertex> 1411 {
+      -0.597909808159 0.589170277119 0.922223627567
+      <UV>  {
+        0.700078 0.488804
+        <Tangent> { 0.479754 0.602910 -0.637444 }
+        <Binormal> { -0.745475 0.202245 -0.369771 }
+      }
+      <Normal> { -0.153691 -0.963897 -0.217353 }
+    }
+    <Vertex> 1412 {
+      -0.513723015785 0.721828222275 0.978348135948
+      <UV>  {
+        0.702163 0.492974
+        <Tangent> { 0.708757 0.346192 -0.614666 }
+        <Binormal> { -0.415602 0.628960 -0.124979 }
+      }
+      <Normal> { -0.800501 -0.567339 -0.193182 }
+    }
+    <Vertex> 1413 {
+      -0.513723015785 0.721828222275 0.978348135948
+      <UV>  {
+        0.702163 0.492974
+        <Tangent> { 0.708757 0.346192 -0.614666 }
+        <Binormal> { -0.415602 0.628960 -0.124979 }
+      }
+      <Normal> { -0.800501 -0.567339 -0.193182 }
+    }
+    <Vertex> 1414 {
+      -0.343391120434 0.772850453854 0.793742358685
+      <UV>  {
+        0.698517 0.490061
+        <Tangent> { 0.957377 -0.263608 -0.118066 }
+        <Binormal> { 0.027958 0.033255 0.152455 }
+      }
+      <Normal> { -0.908994 0.409528 0.077364 }
+    }
+    <Vertex> 1415 {
+      -0.462860316038 0.772850453854 0.757511079311
+      <UV>  {
+        0.698716 0.488899
+        <Tangent> { 0.586240 0.783506 -0.206010 }
+        <Binormal> { -0.102195 0.174213 0.371759 }
+      }
+      <Normal> { -0.858333 -0.513016 0.004456 }
+    }
+    <Vertex> 1416 {
+      -0.344510048628 0.385081112385 0.807941675186
+      <UV>  {
+        0.693041 0.490121
+        <Tangent> { -0.881632 -0.401686 0.247737 }
+        <Binormal> { -0.059809 0.026908 -0.169218 }
+      }
+      <Normal> { 0.805658 0.559008 -0.195868 }
+    }
+    <Vertex> 1417 {
+      -0.513723015785 0.293241024017 1.01916599274
+      <UV>  {
+        0.687557 0.491719
+        <Tangent> { -0.816437 0.009748 0.577353 }
+        <Binormal> { 0.227699 0.221150 0.318256 }
+      }
+      <Normal> { 0.853877 -0.400006 -0.332957 }
+    }
+    <Vertex> 1418 {
+      -0.459876954556 0.37487667799 0.81318962574
+      <UV>  {
+        0.693530 0.489745
+        <Tangent> { -0.990223 0.036739 0.134567 }
+        <Binormal> { 0.030643 -0.253061 0.294582 }
+      }
+      <Normal> { 0.867092 -0.329661 -0.373394 }
+    }
+    <Vertex> 1419 {
+      -0.582750201225 0.589170277119 0.72767496109
+      <UV>  {
+        0.698521 0.487468
+        <Tangent> { 0.564784 0.800893 -0.198971 }
+        <Binormal> { -0.323069 0.101765 -0.507416 }
+      }
+      <Normal> { -0.061342 -0.985412 -0.158574 }
+    }
+    <Vertex> 1420 {
+      -0.597909808159 0.589170277119 0.922223627567
+      <UV>  {
+        0.700078 0.488804
+        <Tangent> { 0.479754 0.602910 -0.637444 }
+        <Binormal> { -0.745475 0.202245 -0.369771 }
+      }
+      <Normal> { -0.153691 -0.963897 -0.217353 }
+    }
+    <Vertex> 1421 {
+      -0.462860316038 0.772850453854 0.757511079311
+      <UV>  {
+        0.698716 0.488899
+        <Tangent> { 0.586240 0.783506 -0.206010 }
+        <Binormal> { -0.102195 0.174213 0.371759 }
+      }
+      <Normal> { -0.858333 -0.513016 0.004456 }
+    }
+    <Vertex> 1422 {
+      -0.513723015785 0.293241024017 1.01916599274
+      <UV>  {
+        0.687557 0.491719
+        <Tangent> { -0.816437 0.009748 0.577353 }
+        <Binormal> { 0.227699 0.221150 0.318256 }
+      }
+      <Normal> { 0.853877 -0.400006 -0.332957 }
+    }
+    <Vertex> 1423 {
+      -0.597909808159 0.589170277119 0.922223627567
+      <UV>  {
+        0.700078 0.488804
+        <Tangent> { 0.479754 0.602910 -0.637444 }
+        <Binormal> { -0.745475 0.202245 -0.369771 }
+      }
+      <Normal> { -0.153691 -0.963897 -0.217353 }
+    }
+    <Vertex> 1424 {
+      -0.582750201225 0.589170277119 0.72767496109
+      <UV>  {
+        0.698521 0.487468
+        <Tangent> { 0.564784 0.800893 -0.198971 }
+        <Binormal> { -0.323069 0.101765 -0.507416 }
+      }
+      <Normal> { -0.061342 -0.985412 -0.158574 }
+    }
+    <Vertex> 1425 {
+      -0.582750201225 0.589170277119 0.72767496109
+      <UV>  {
+        0.698521 0.487468
+        <Tangent> { 0.564784 0.800893 -0.198971 }
+        <Binormal> { -0.323069 0.101765 -0.507416 }
+      }
+      <Normal> { -0.061342 -0.985412 -0.158574 }
+    }
+    <Vertex> 1426 {
+      -0.459876954556 0.37487667799 0.81318962574
+      <UV>  {
+        0.693530 0.489745
+        <Tangent> { -0.990223 0.036739 0.134567 }
+        <Binormal> { 0.030643 -0.253061 0.294582 }
+      }
+      <Normal> { 0.867092 -0.329661 -0.373394 }
+    }
+    <Vertex> 1427 {
+      -0.513723015785 0.293241024017 1.01916599274
+      <UV>  {
+        0.687557 0.491719
+        <Tangent> { -0.816437 0.009748 0.577353 }
+        <Binormal> { 0.227699 0.221150 0.318256 }
+      }
+      <Normal> { 0.853877 -0.400006 -0.332957 }
+    }
+    <Vertex> 1428 {
+      -0.323523133993 0.793259382248 0.480152130127
+      <UV>  {
+        0.698181 0.483636
+        <Tangent> { 0.997700 0.055621 -0.038744 }
+        <Binormal> { 0.031186 -0.384414 0.251207 }
+      }
+      <Normal> { -0.884793 0.202460 0.419660 }
+    }
+    <Vertex> 1429 {
+      -0.343391120434 0.772850453854 0.793742358685
+      <UV>  {
+        0.698517 0.490061
+        <Tangent> { 0.957377 -0.263608 -0.118066 }
+        <Binormal> { 0.027958 0.033255 0.152455 }
+      }
+      <Normal> { -0.908994 0.409528 0.077364 }
+    }
+    <Vertex> 1430 {
+      -0.230284139514 0.614681363106 0.536179482937
+      <UV>  {
+        0.696980 0.483757
+        <Tangent> { -0.452695 -0.607006 0.653155 }
+        <Binormal> { -0.812927 0.155672 -0.418758 }
+      }
+      <Normal> { 0.016602 0.947295 0.319926 }
+    }
+    <Vertex> 1431 {
+      -0.243891134858 0.609579145908 0.912188529968
+      <UV>  {
+        0.696123 0.493475
+        <Tangent> { 0.121476 -0.990545 0.063752 }
+        <Binormal> { -0.190134 -0.021060 0.035073 }
+      }
+      <Normal> { -0.085757 0.988006 0.128361 }
+    }
+    <Vertex> 1432 {
+      -0.230284139514 0.614681363106 0.536179482937
+      <UV>  {
+        0.696980 0.483757
+        <Tangent> { -0.452695 -0.607006 0.653155 }
+        <Binormal> { -0.812927 0.155672 -0.418758 }
+      }
+      <Normal> { 0.016602 0.947295 0.319926 }
+    }
+    <Vertex> 1433 {
+      -0.343391120434 0.772850453854 0.793742358685
+      <UV>  {
+        0.698517 0.490061
+        <Tangent> { 0.957377 -0.263608 -0.118066 }
+        <Binormal> { 0.027958 0.033255 0.152455 }
+      }
+      <Normal> { -0.908994 0.409528 0.077364 }
+    }
+    <Vertex> 1434 {
+      -0.323523133993 0.793259382248 0.480152130127
+      <UV>  {
+        0.698181 0.483636
+        <Tangent> { 0.997700 0.055621 -0.038744 }
+        <Binormal> { 0.031186 -0.384414 0.251207 }
+      }
+      <Normal> { -0.884793 0.202460 0.419660 }
+    }
+    <Vertex> 1435 {
+      -0.462860316038 0.772850453854 0.757511079311
+      <UV>  {
+        0.698716 0.488899
+        <Tangent> { 0.586240 0.783506 -0.206010 }
+        <Binormal> { -0.102195 0.174213 0.371759 }
+      }
+      <Normal> { -0.858333 -0.513016 0.004456 }
+    }
+    <Vertex> 1436 {
+      -0.343391120434 0.772850453854 0.793742358685
+      <UV>  {
+        0.698517 0.490061
+        <Tangent> { 0.957377 -0.263608 -0.118066 }
+        <Binormal> { 0.027958 0.033255 0.152455 }
+      }
+      <Normal> { -0.908994 0.409528 0.077364 }
+    }
+    <Vertex> 1437 {
+      -0.230284139514 0.614681363106 0.536179482937
+      <UV>  {
+        0.696980 0.483757
+        <Tangent> { -0.452695 -0.607006 0.653155 }
+        <Binormal> { -0.812927 0.155672 -0.418758 }
+      }
+      <Normal> { 0.016602 0.947295 0.319926 }
+    }
+    <Vertex> 1438 {
+      -0.243891134858 0.609579145908 0.912188529968
+      <UV>  {
+        0.696123 0.493475
+        <Tangent> { 0.121476 -0.990545 0.063752 }
+        <Binormal> { -0.190134 -0.021060 0.035073 }
+      }
+      <Normal> { -0.085757 0.988006 0.128361 }
+    }
+    <Vertex> 1439 {
+      -0.344510048628 0.385081112385 0.807941675186
+      <UV>  {
+        0.693041 0.490121
+        <Tangent> { -0.881632 -0.401686 0.247737 }
+        <Binormal> { -0.059809 0.026908 -0.169218 }
+      }
+      <Normal> { 0.805658 0.559008 -0.195868 }
+    }
+    <Vertex> 1440 {
+      -0.230284139514 0.614681363106 0.536179482937
+      <UV>  {
+        0.696980 0.483757
+        <Tangent> { -0.452695 -0.607006 0.653155 }
+        <Binormal> { -0.812927 0.155672 -0.418758 }
+      }
+      <Normal> { 0.016602 0.947295 0.319926 }
+    }
+    <Vertex> 1441 {
+      -0.344510048628 0.385081112385 0.807941675186
+      <UV>  {
+        0.693041 0.490121
+        <Tangent> { -0.881632 -0.401686 0.247737 }
+        <Binormal> { -0.059809 0.026908 -0.169218 }
+      }
+      <Normal> { 0.805658 0.559008 -0.195868 }
+    }
+    <Vertex> 1442 {
+      -0.325014829636 0.512636840343 0.500784039497
+      <UV>  {
+        0.696718 0.482081
+        <Tangent> { -0.972848 -0.197384 0.120859 }
+        <Binormal> { -0.101793 0.401115 -0.164283 }
+      }
+      <Normal> { 0.887112 0.348857 0.302103 }
+    }
+    <Vertex> 1443 {
+      -0.459876954556 0.37487667799 0.81318962574
+      <UV>  {
+        0.693530 0.489745
+        <Tangent> { -0.990223 0.036739 0.134567 }
+        <Binormal> { 0.030643 -0.253061 0.294582 }
+      }
+      <Normal> { 0.867092 -0.329661 -0.373394 }
+    }
+    <Vertex> 1444 {
+      -0.325014829636 0.512636840343 0.500784039497
+      <UV>  {
+        0.696718 0.482081
+        <Tangent> { -0.972848 -0.197384 0.120859 }
+        <Binormal> { -0.101793 0.401115 -0.164283 }
+      }
+      <Normal> { 0.887112 0.348857 0.302103 }
+    }
+    <Vertex> 1445 {
+      -0.344510048628 0.385081112385 0.807941675186
+      <UV>  {
+        0.693041 0.490121
+        <Tangent> { -0.881632 -0.401686 0.247737 }
+        <Binormal> { -0.059809 0.026908 -0.169218 }
+      }
+      <Normal> { 0.805658 0.559008 -0.195868 }
+    }
+    <Vertex> 1446 {
+      -0.428163349628 0.772850453854 0.469460636377
+      <UV>  {
+        0.698011 0.483521
+        <Tangent> { 0.579883 0.792559 -0.188642 }
+        <Binormal> { -0.009542 0.048718 0.175350 }
+      }
+      <Normal> { -0.718314 -0.679373 0.149663 }
+    }
+    <Vertex> 1447 {
+      -0.582750201225 0.589170277119 0.72767496109
+      <UV>  {
+        0.698521 0.487468
+        <Tangent> { 0.564784 0.800893 -0.198971 }
+        <Binormal> { -0.323069 0.101765 -0.507416 }
+      }
+      <Normal> { -0.061342 -0.985412 -0.158574 }
+    }
+    <Vertex> 1448 {
+      -0.462860316038 0.772850453854 0.757511079311
+      <UV>  {
+        0.698716 0.488899
+        <Tangent> { 0.586240 0.783506 -0.206010 }
+        <Binormal> { -0.102195 0.174213 0.371759 }
+      }
+      <Normal> { -0.858333 -0.513016 0.004456 }
+    }
+    <Vertex> 1449 {
+      -0.462860316038 0.772850453854 0.757511079311
+      <UV>  {
+        0.698716 0.488899
+        <Tangent> { 0.586240 0.783506 -0.206010 }
+        <Binormal> { -0.102195 0.174213 0.371759 }
+      }
+      <Normal> { -0.858333 -0.513016 0.004456 }
+    }
+    <Vertex> 1450 {
+      -0.323523133993 0.793259382248 0.480152130127
+      <UV>  {
+        0.698181 0.483636
+        <Tangent> { 0.997700 0.055621 -0.038744 }
+        <Binormal> { 0.031186 -0.384414 0.251207 }
+      }
+      <Normal> { -0.884793 0.202460 0.419660 }
+    }
+    <Vertex> 1451 {
+      -0.428163349628 0.772850453854 0.469460636377
+      <UV>  {
+        0.698011 0.483521
+        <Tangent> { 0.579883 0.792559 -0.188642 }
+        <Binormal> { -0.009542 0.048718 0.175350 }
+      }
+      <Normal> { -0.718314 -0.679373 0.149663 }
+    }
+    <Vertex> 1452 {
+      -0.325014829636 0.512636840343 0.500784039497
+      <UV>  {
+        0.696718 0.482081
+        <Tangent> { -0.972848 -0.197384 0.120859 }
+        <Binormal> { -0.101793 0.401115 -0.164283 }
+      }
+      <Normal> { 0.887112 0.348857 0.302103 }
+    }
+    <Vertex> 1453 {
+      -0.459876954556 0.37487667799 0.81318962574
+      <UV>  {
+        0.693530 0.489745
+        <Tangent> { -0.990223 0.036739 0.134567 }
+        <Binormal> { 0.030643 -0.253061 0.294582 }
+      }
+      <Normal> { 0.867092 -0.329661 -0.373394 }
+    }
+    <Vertex> 1454 {
+      -0.42219632864 0.502432346344 0.514488816261
+      <UV>  {
+        0.696764 0.482340
+        <Tangent> { -0.997984 -0.061496 0.015681 }
+        <Binormal> { -0.010791 0.256207 0.318024 }
+      }
+      <Normal> { 0.934446 -0.261086 0.242042 }
+    }
+    <Vertex> 1455 {
+      -0.558427393436 0.594272494316 0.461545705795
+      <UV>  {
+        0.697933 0.482631
+        <Tangent> { 0.510930 0.838562 -0.189115 }
+        <Binormal> { -0.112229 -0.096416 -0.730727 }
+      }
+      <Normal> { 0.290506 -0.953398 0.081179 }
+    }
+    <Vertex> 1456 {
+      -0.582750201225 0.589170277119 0.72767496109
+      <UV>  {
+        0.698521 0.487468
+        <Tangent> { 0.564784 0.800893 -0.198971 }
+        <Binormal> { -0.323069 0.101765 -0.507416 }
+      }
+      <Normal> { -0.061342 -0.985412 -0.158574 }
+    }
+    <Vertex> 1457 {
+      -0.428163349628 0.772850453854 0.469460636377
+      <UV>  {
+        0.698011 0.483521
+        <Tangent> { 0.579883 0.792559 -0.188642 }
+        <Binormal> { -0.009542 0.048718 0.175350 }
+      }
+      <Normal> { -0.718314 -0.679373 0.149663 }
+    }
+    <Vertex> 1458 {
+      -0.459876954556 0.37487667799 0.81318962574
+      <UV>  {
+        0.693530 0.489745
+        <Tangent> { -0.990223 0.036739 0.134567 }
+        <Binormal> { 0.030643 -0.253061 0.294582 }
+      }
+      <Normal> { 0.867092 -0.329661 -0.373394 }
+    }
+    <Vertex> 1459 {
+      -0.582750201225 0.589170277119 0.72767496109
+      <UV>  {
+        0.698521 0.487468
+        <Tangent> { 0.564784 0.800893 -0.198971 }
+        <Binormal> { -0.323069 0.101765 -0.507416 }
+      }
+      <Normal> { -0.061342 -0.985412 -0.158574 }
+    }
+    <Vertex> 1460 {
+      -0.558427393436 0.594272494316 0.461545705795
+      <UV>  {
+        0.697933 0.482631
+        <Tangent> { 0.510930 0.838562 -0.189115 }
+        <Binormal> { -0.112229 -0.096416 -0.730727 }
+      }
+      <Normal> { 0.290506 -0.953398 0.081179 }
+    }
+    <Vertex> 1461 {
+      -0.558427393436 0.594272494316 0.461545705795
+      <UV>  {
+        0.697933 0.482631
+        <Tangent> { 0.510930 0.838562 -0.189115 }
+        <Binormal> { -0.112229 -0.096416 -0.730727 }
+      }
+      <Normal> { 0.290506 -0.953398 0.081179 }
+    }
+    <Vertex> 1462 {
+      -0.42219632864 0.502432346344 0.514488816261
+      <UV>  {
+        0.696764 0.482340
+        <Tangent> { -0.997984 -0.061496 0.015681 }
+        <Binormal> { -0.010791 0.256207 0.318024 }
+      }
+      <Normal> { 0.934446 -0.261086 0.242042 }
+    }
+    <Vertex> 1463 {
+      -0.459876954556 0.37487667799 0.81318962574
+      <UV>  {
+        0.693530 0.489745
+        <Tangent> { -0.990223 0.036739 0.134567 }
+        <Binormal> { 0.030643 -0.253061 0.294582 }
+      }
+      <Normal> { 0.867092 -0.329661 -0.373394 }
+    }
+    <Vertex> 1464 {
+      -0.188366562128 0.58382076025 1.77079963684
+      <UV>  {
+        0.672282 0.684467
+        <Tangent> { -0.791902 -0.596673 0.129893 }
+        <Binormal> { 0.267192 -0.361716 -0.032618 }
+      }
+      <Normal> { -0.773247 -0.541429 -0.329936 }
+    }
+    <Vertex> 1465 {
+      -0.168198689818 0.472681611776 1.50328397751
+      <UV>  {
+        0.672259 0.684485
+        <Tangent> { 0.302108 -0.950588 0.071507 }
+        <Binormal> { 0.625087 0.157108 -0.552369 }
+      }
+      <Normal> { -0.673544 0.290933 -0.679464 }
+    }
+    <Vertex> 1466 {
+      -0.210646852851 0.467602431774 1.50197970867
+      <UV>  {
+        0.672261 0.684485
+        <Tangent> { -0.210226 0.104375 0.972065 }
+        <Binormal> { 0.521214 -0.540306 0.170737 }
+      }
+      <Normal> { -0.408887 -0.609149 -0.679464 }
+    }
+    <Vertex> 1467 {
+      -0.246741443872 0.462718814611 1.62528264523
+      <UV>  {
+        0.672261 0.684482
+        <Tangent> { -0.294808 -0.336487 0.894352 }
+        <Binormal> { 0.910004 0.057584 0.321633 }
+      }
+      <Normal> { 0.084506 -0.994537 -0.061037 }
+    }
+    <Vertex> 1468 {
+      -0.188366562128 0.58382076025 1.77079963684
+      <UV>  {
+        0.672282 0.684467
+        <Tangent> { -0.791902 -0.596673 0.129893 }
+        <Binormal> { 0.267192 -0.361716 -0.032618 }
+      }
+      <Normal> { -0.773247 -0.541429 -0.329936 }
+    }
+    <Vertex> 1469 {
+      -0.210646852851 0.467602431774 1.50197970867
+      <UV>  {
+        0.672261 0.684485
+        <Tangent> { -0.210226 0.104375 0.972065 }
+        <Binormal> { 0.521214 -0.540306 0.170737 }
+      }
+      <Normal> { -0.408887 -0.609149 -0.679464 }
+    }
+    <Vertex> 1470 {
+      -0.188366562128 0.58382076025 1.77079963684
+      <UV>  {
+        0.672282 0.684467
+        <Tangent> { -0.791902 -0.596673 0.129893 }
+        <Binormal> { 0.267192 -0.361716 -0.032618 }
+      }
+      <Normal> { -0.773247 -0.541429 -0.329936 }
+    }
+    <Vertex> 1471 {
+      -0.130643546581 0.599729716778 1.68432080746
+      <UV>  {
+        0.672270 0.684481
+        <Tangent> { -0.633730 -0.532508 0.561089 }
+        <Binormal> { 0.451423 -0.662504 -0.118891 }
+      }
+      <Normal> { -0.806269 -0.489883 -0.331553 }
+    }
+    <Vertex> 1472 {
+      -0.168198689818 0.472681611776 1.50328397751
+      <UV>  {
+        0.672259 0.684485
+        <Tangent> { 0.302108 -0.950588 0.071507 }
+        <Binormal> { 0.625087 0.157108 -0.552369 }
+      }
+      <Normal> { -0.673544 0.290933 -0.679464 }
+    }
+    <Vertex> 1473 {
+      -0.154002189636 0.618881762028 1.77394986153
+      <UV>  {
+        0.672294 0.684465
+        <Tangent> { -0.992019 -0.125390 0.013258 }
+        <Binormal> { 0.011595 -0.066963 0.234285 }
+      }
+      <Normal> { -0.933531 -0.354167 -0.055025 }
+    }
+    <Vertex> 1474 {
+      -0.188366562128 0.58382076025 1.77079963684
+      <UV>  {
+        0.672282 0.684467
+        <Tangent> { -0.791902 -0.596673 0.129893 }
+        <Binormal> { 0.267192 -0.361716 -0.032618 }
+      }
+      <Normal> { -0.773247 -0.541429 -0.329936 }
+    }
+    <Vertex> 1475 {
+      -0.246741443872 0.462718814611 1.62528264523
+      <UV>  {
+        0.672261 0.684482
+        <Tangent> { -0.294808 -0.336487 0.894352 }
+        <Binormal> { 0.910004 0.057584 0.321633 }
+      }
+      <Normal> { 0.084506 -0.994537 -0.061037 }
+    }
+    <Vertex> 1476 {
+      -0.246741443872 0.462718814611 1.62528264523
+      <UV>  {
+        0.672261 0.684482
+        <Tangent> { -0.294808 -0.336487 0.894352 }
+        <Binormal> { 0.910004 0.057584 0.321633 }
+      }
+      <Normal> { 0.084506 -0.994537 -0.061037 }
+    }
+    <Vertex> 1477 {
+      -0.270814776421 0.499906629324 1.96815419197
+      <UV>  {
+        0.672236 0.684327
+        <Tangent> { -0.436931 -0.892491 -0.112034 }
+        <Binormal> { 0.211429 -0.139301 0.285132 }
+      }
+      <Normal> { -0.133824 -0.925932 -0.353130 }
+    }
+    <Vertex> 1478 {
+      -0.154002189636 0.618881762028 1.77394986153
+      <UV>  {
+        0.672294 0.684465
+        <Tangent> { -0.992019 -0.125390 0.013258 }
+        <Binormal> { 0.011595 -0.066963 0.234285 }
+      }
+      <Normal> { -0.933531 -0.354167 -0.055025 }
+    }
+    <Vertex> 1479 {
+      -0.188366562128 0.58382076025 1.77079963684
+      <UV>  {
+        0.672282 0.684467
+        <Tangent> { -0.791902 -0.596673 0.129893 }
+        <Binormal> { 0.267192 -0.361716 -0.032618 }
+      }
+      <Normal> { -0.773247 -0.541429 -0.329936 }
+    }
+    <Vertex> 1480 {
+      -0.154002189636 0.618881762028 1.77394986153
+      <UV>  {
+        0.672294 0.684465
+        <Tangent> { -0.992019 -0.125390 0.013258 }
+        <Binormal> { 0.011595 -0.066963 0.234285 }
+      }
+      <Normal> { -0.933531 -0.354167 -0.055025 }
+    }
+    <Vertex> 1481 {
+      -0.130643546581 0.599729716778 1.68432080746
+      <UV>  {
+        0.672270 0.684481
+        <Tangent> { -0.633730 -0.532508 0.561089 }
+        <Binormal> { 0.451423 -0.662504 -0.118891 }
+      }
+      <Normal> { -0.806269 -0.489883 -0.331553 }
+    }
+    <Vertex> 1482 {
+      -0.154002189636 0.618881762028 1.77394986153
+      <UV>  {
+        0.672294 0.684465
+        <Tangent> { -0.992019 -0.125390 0.013258 }
+        <Binormal> { 0.011595 -0.066963 0.234285 }
+      }
+      <Normal> { -0.933531 -0.354167 -0.055025 }
+    }
+    <Vertex> 1483 {
+      -0.0469846315682 0.618881106377 1.61158788204
+      <UV>  {
+        0.672264 0.684484
+        <Tangent> { -0.808921 0.518795 -0.276584 }
+        <Binormal> { 0.024497 0.253864 0.404532 }
+      }
+      <Normal> { -0.990509 0.135166 -0.024842 }
+    }
+    <Vertex> 1484 {
+      -0.130643546581 0.599729716778 1.68432080746
+      <UV>  {
+        0.672270 0.684481
+        <Tangent> { -0.633730 -0.532508 0.561089 }
+        <Binormal> { 0.451423 -0.662504 -0.118891 }
+      }
+      <Normal> { -0.806269 -0.489883 -0.331553 }
+    }
+    <Vertex> 1485 {
+      -0.270814776421 0.499906629324 1.96815419197
+      <UV>  {
+        0.672236 0.684327
+        <Tangent> { -0.436931 -0.892491 -0.112034 }
+        <Binormal> { 0.211429 -0.139301 0.285132 }
+      }
+      <Normal> { -0.133824 -0.925932 -0.353130 }
+    }
+    <Vertex> 1486 {
+      -0.183312594891 0.607021808624 1.95916116238
+      <UV>  {
+        0.672372 0.684478
+        <Tangent> { 0.450341 0.033492 -0.892228 }
+        <Binormal> { 0.095101 0.792464 0.077748 }
+      }
+      <Normal> { -0.978698 0.099857 0.179327 }
+    }
+    <Vertex> 1487 {
+      -0.154002189636 0.618881762028 1.77394986153
+      <UV>  {
+        0.672294 0.684465
+        <Tangent> { -0.992019 -0.125390 0.013258 }
+        <Binormal> { 0.011595 -0.066963 0.234285 }
+      }
+      <Normal> { -0.933531 -0.354167 -0.055025 }
+    }
+    <Vertex> 1488 {
+      -0.154002189636 0.618881762028 1.77394986153
+      <UV>  {
+        0.672294 0.684465
+        <Tangent> { -0.992019 -0.125390 0.013258 }
+        <Binormal> { 0.011595 -0.066963 0.234285 }
+      }
+      <Normal> { -0.933531 -0.354167 -0.055025 }
+    }
+    <Vertex> 1489 {
+      0.0862512886524 0.574545562267 1.63435614109
+      <UV>  {
+        0.672260 0.684490
+        <Tangent> { -0.315018 -0.536351 -0.783001 }
+        <Binormal> { 0.576191 0.506255 -0.578595 }
+      }
+      <Normal> { -0.619373 0.782159 0.067568 }
+    }
+    <Vertex> 1490 {
+      -0.0469846315682 0.618881106377 1.61158788204
+      <UV>  {
+        0.672264 0.684484
+        <Tangent> { -0.808921 0.518795 -0.276584 }
+        <Binormal> { 0.024497 0.253864 0.404532 }
+      }
+      <Normal> { -0.990509 0.135166 -0.024842 }
+    }
+    <Vertex> 1491 {
+      -0.183312594891 0.607021808624 1.95916116238
+      <UV>  {
+        0.672372 0.684478
+        <Tangent> { 0.450341 0.033492 -0.892228 }
+        <Binormal> { 0.095101 0.792464 0.077748 }
+      }
+      <Normal> { -0.978698 0.099857 0.179327 }
+    }
+    <Vertex> 1492 {
+      0.0862512886524 0.574545562267 1.63435614109
+      <UV>  {
+        0.672260 0.684490
+        <Tangent> { -0.315018 -0.536351 -0.783001 }
+        <Binormal> { 0.576191 0.506255 -0.578595 }
+      }
+      <Normal> { -0.619373 0.782159 0.067568 }
+    }
+    <Vertex> 1493 {
+      -0.154002189636 0.618881762028 1.77394986153
+      <UV>  {
+        0.672294 0.684465
+        <Tangent> { -0.992019 -0.125390 0.013258 }
+        <Binormal> { 0.011595 -0.066963 0.234285 }
+      }
+      <Normal> { -0.933531 -0.354167 -0.055025 }
+    }
+    <Vertex> 1494 {
+      -0.130643546581 0.599729716778 1.68432080746
+      <UV>  {
+        0.672270 0.684481
+        <Tangent> { -0.633730 -0.532508 0.561089 }
+        <Binormal> { 0.451423 -0.662504 -0.118891 }
+      }
+      <Normal> { -0.806269 -0.489883 -0.331553 }
+    }
+    <Vertex> 1495 {
+      -0.0469846315682 0.618881106377 1.61158788204
+      <UV>  {
+        0.672264 0.684484
+        <Tangent> { -0.808921 0.518795 -0.276584 }
+        <Binormal> { 0.024497 0.253864 0.404532 }
+      }
+      <Normal> { -0.990509 0.135166 -0.024842 }
+    }
+    <Vertex> 1496 {
+      -0.0842912495136 0.640286564827 1.3710744381
+      <UV>  {
+        0.672259 0.684488
+        <Tangent> { -0.753180 0.651794 -0.088791 }
+        <Binormal> { -0.332547 -0.271376 0.828763 }
+      }
+      <Normal> { -0.786431 -0.419782 -0.453017 }
+    }
+    <Vertex> 1497 {
+      -0.0469846315682 0.618881106377 1.61158788204
+      <UV>  {
+        0.672264 0.684484
+        <Tangent> { -0.808921 0.518795 -0.276584 }
+        <Binormal> { 0.024497 0.253864 0.404532 }
+      }
+      <Normal> { -0.990509 0.135166 -0.024842 }
+    }
+    <Vertex> 1498 {
+      -0.0124857323244 0.589294791222 1.42872858047
+      <UV>  {
+        0.672260 0.684487
+        <Tangent> { -0.787389 0.472616 -0.395793 }
+        <Binormal> { 0.054014 -0.234277 -0.387204 }
+      }
+      <Normal> { -0.425092 0.746910 -0.511216 }
+    }
+    <Vertex> 1499 {
+      -0.0842912495136 0.640286564827 1.3710744381
+      <UV>  {
+        0.672259 0.684488
+        <Tangent> { -0.753180 0.651794 -0.088791 }
+        <Binormal> { -0.332547 -0.271376 0.828763 }
+      }
+      <Normal> { -0.786431 -0.419782 -0.453017 }
+    }
+    <Vertex> 1500 {
+      0.0862512886524 0.574545562267 1.63435614109
+      <UV>  {
+        0.672260 0.684490
+        <Tangent> { -0.315018 -0.536351 -0.783001 }
+        <Binormal> { 0.576191 0.506255 -0.578595 }
+      }
+      <Normal> { -0.619373 0.782159 0.067568 }
+    }
+    <Vertex> 1501 {
+      -0.0124857323244 0.589294791222 1.42872858047
+      <UV>  {
+        0.672260 0.684487
+        <Tangent> { -0.787389 0.472616 -0.395793 }
+        <Binormal> { 0.054014 -0.234277 -0.387204 }
+      }
+      <Normal> { -0.425092 0.746910 -0.511216 }
+    }
+    <Vertex> 1502 {
+      -0.0469846315682 0.618881106377 1.61158788204
+      <UV>  {
+        0.672264 0.684484
+        <Tangent> { -0.808921 0.518795 -0.276584 }
+        <Binormal> { 0.024497 0.253864 0.404532 }
+      }
+      <Normal> { -0.990509 0.135166 -0.024842 }
+    }
+    <Vertex> 1503 {
+      -0.200803637505 0.419426470995 1.48843061924
+      <UV>  {
+        0.672263 0.684484
+        <Tangent> { -0.497359 0.800777 0.333752 }
+        <Binormal> { -0.505838 -0.058283 -0.613963 }
+      }
+      <Normal> { 0.772149 -0.008759 -0.635334 }
+    }
+    <Vertex> 1504 {
+      -0.158355474472 0.424506276846 1.48973357677
+      <UV>  {
+        0.672260 0.684483
+        <Tangent> { 0.460913 -0.829669 0.314975 }
+        <Binormal> { 0.405676 0.422546 0.519380 }
+      }
+      <Normal> { 0.277261 0.627766 -0.727287 }
+    }
+    <Vertex> 1505 {
+      -0.178542658687 0.451332837343 1.75727665424
+      <UV>  {
+        0.672241 0.684508
+        <Tangent> { -0.630570 -0.772557 -0.074412 }
+        <Binormal> { 0.213949 -0.194481 0.206120 }
+      }
+      <Normal> { 0.763176 0.608142 -0.218360 }
+    }
+    <Vertex> 1506 {
+      -0.200803637505 0.419426470995 1.48843061924
+      <UV>  {
+        0.672263 0.684484
+        <Tangent> { -0.497359 0.800777 0.333752 }
+        <Binormal> { -0.505838 -0.058283 -0.613963 }
+      }
+      <Normal> { 0.772149 -0.008759 -0.635334 }
+    }
+    <Vertex> 1507 {
+      -0.178542658687 0.451332837343 1.75727665424
+      <UV>  {
+        0.672241 0.684508
+        <Tangent> { -0.630570 -0.772557 -0.074412 }
+        <Binormal> { 0.213949 -0.194481 0.206120 }
+      }
+      <Normal> { 0.763176 0.608142 -0.218360 }
+    }
+    <Vertex> 1508 {
+      -0.231918379664 0.374685436487 1.60487997532
+      <UV>  {
+        0.672263 0.684487
+        <Tangent> { -0.633006 -0.545796 0.549008 }
+        <Binormal> { 0.404958 0.251162 0.716608 }
+      }
+      <Normal> { 0.851375 -0.397992 -0.341624 }
+    }
+    <Vertex> 1509 {
+      -0.158355474472 0.424506276846 1.48973357677
+      <UV>  {
+        0.672260 0.684483
+        <Tangent> { 0.460913 -0.829669 0.314975 }
+        <Binormal> { 0.405676 0.422546 0.519380 }
+      }
+      <Normal> { 0.277261 0.627766 -0.727287 }
+    }
+    <Vertex> 1510 {
+      -0.11582018435 0.511696338654 1.66391682625
+      <UV>  {
+        0.672257 0.684491
+        <Tangent> { -0.304043 0.159783 0.939163 }
+        <Binormal> { -0.024387 0.551270 -0.101684 }
+      }
+      <Normal> { 0.785638 -0.078433 -0.613636 }
+    }
+    <Vertex> 1511 {
+      -0.178542658687 0.451332837343 1.75727665424
+      <UV>  {
+        0.672241 0.684508
+        <Tangent> { -0.630570 -0.772557 -0.074412 }
+        <Binormal> { 0.213949 -0.194481 0.206120 }
+      }
+      <Normal> { 0.763176 0.608142 -0.218360 }
+    }
+    <Vertex> 1512 {
+      -0.231918379664 0.374685436487 1.60487997532
+      <UV>  {
+        0.672263 0.684487
+        <Tangent> { -0.633006 -0.545796 0.549008 }
+        <Binormal> { 0.404958 0.251162 0.716608 }
+      }
+      <Normal> { 0.851375 -0.397992 -0.341624 }
+    }
+    <Vertex> 1513 {
+      -0.178542658687 0.451332837343 1.75727665424
+      <UV>  {
+        0.672241 0.684508
+        <Tangent> { -0.630570 -0.772557 -0.074412 }
+        <Binormal> { 0.213949 -0.194481 0.206120 }
+      }
+      <Normal> { 0.763176 0.608142 -0.218360 }
+    }
+    <Vertex> 1514 {
+      -0.166583999991 0.399764955044 1.79126703739
+      <UV>  {
+        0.672226 0.684519
+        <Tangent> { -0.964609 -0.215902 -0.151382 }
+        <Binormal> { 0.131074 -0.565996 -0.027976 }
+      }
+      <Normal> { 0.864284 0.222449 -0.451125 }
+    }
+    <Vertex> 1515 {
+      -0.166583999991 0.399764955044 1.79126703739
+      <UV>  {
+        0.672226 0.684519
+        <Tangent> { -0.964609 -0.215902 -0.151382 }
+        <Binormal> { 0.131074 -0.565996 -0.027976 }
+      }
+      <Normal> { 0.864284 0.222449 -0.451125 }
+    }
+    <Vertex> 1516 {
+      -0.206447958946 0.402461975813 1.99062907696
+      <UV>  {
+        0.672165 0.684582
+        <Tangent> { -0.925358 0.333958 -0.179401 }
+        <Binormal> { 0.032681 -0.113283 -0.379450 }
+      }
+      <Normal> { 0.996185 0.050539 0.070711 }
+    }
+    <Vertex> 1517 {
+      -0.231918379664 0.374685436487 1.60487997532
+      <UV>  {
+        0.672263 0.684487
+        <Tangent> { -0.633006 -0.545796 0.549008 }
+        <Binormal> { 0.404958 0.251162 0.716608 }
+      }
+      <Normal> { 0.851375 -0.397992 -0.341624 }
+    }
+    <Vertex> 1518 {
+      -0.11582018435 0.511696338654 1.66391682625
+      <UV>  {
+        0.672257 0.684491
+        <Tangent> { -0.304043 0.159783 0.939163 }
+        <Binormal> { -0.024387 0.551270 -0.101684 }
+      }
+      <Normal> { 0.785638 -0.078433 -0.613636 }
+    }
+    <Vertex> 1519 {
+      -0.166583999991 0.399764955044 1.79126703739
+      <UV>  {
+        0.672226 0.684519
+        <Tangent> { -0.964609 -0.215902 -0.151382 }
+        <Binormal> { 0.131074 -0.565996 -0.027976 }
+      }
+      <Normal> { 0.864284 0.222449 -0.451125 }
+    }
+    <Vertex> 1520 {
+      -0.178542658687 0.451332837343 1.75727665424
+      <UV>  {
+        0.672241 0.684508
+        <Tangent> { -0.630570 -0.772557 -0.074412 }
+        <Binormal> { 0.213949 -0.194481 0.206120 }
+      }
+      <Normal> { 0.763176 0.608142 -0.218360 }
+    }
+    <Vertex> 1521 {
+      -0.11582018435 0.511696338654 1.66391682625
+      <UV>  {
+        0.672257 0.684491
+        <Tangent> { -0.304043 0.159783 0.939163 }
+        <Binormal> { -0.024387 0.551270 -0.101684 }
+      }
+      <Normal> { 0.785638 -0.078433 -0.613636 }
+    }
+    <Vertex> 1522 {
+      0.0339967347682 0.480483800173 1.65208435059
+      <UV>  {
+        0.672258 0.684494
+        <Tangent> { -0.907267 0.021496 -0.420005 }
+        <Binormal> { -0.113828 -0.598091 0.215272 }
+      }
+      <Normal> { 0.939268 -0.259529 -0.224403 }
+    }
+    <Vertex> 1523 {
+      -0.166583999991 0.399764955044 1.79126703739
+      <UV>  {
+        0.672226 0.684519
+        <Tangent> { -0.964609 -0.215902 -0.151382 }
+        <Binormal> { 0.131074 -0.565996 -0.027976 }
+      }
+      <Normal> { 0.864284 0.222449 -0.451125 }
+    }
+    <Vertex> 1524 {
+      -0.166583999991 0.399764955044 1.79126703739
+      <UV>  {
+        0.672226 0.684519
+        <Tangent> { -0.964609 -0.215902 -0.151382 }
+        <Binormal> { 0.131074 -0.565996 -0.027976 }
+      }
+      <Normal> { 0.864284 0.222449 -0.451125 }
+    }
+    <Vertex> 1525 {
+      -0.128874242306 0.481131255627 1.97628712654
+      <UV>  {
+        0.672260 0.684574
+        <Tangent> { -0.011005 -0.978860 -0.204234 }
+        <Binormal> { -0.216648 -0.024016 0.126778 }
+      }
+      <Normal> { 0.139653 0.901578 0.409436 }
+    }
+    <Vertex> 1526 {
+      -0.206447958946 0.402461975813 1.99062907696
+      <UV>  {
+        0.672165 0.684582
+        <Tangent> { -0.925358 0.333958 -0.179401 }
+        <Binormal> { 0.032681 -0.113283 -0.379450 }
+      }
+      <Normal> { 0.996185 0.050539 0.070711 }
+    }
+    <Vertex> 1527 {
+      0.0339967347682 0.480483800173 1.65208435059
+      <UV>  {
+        0.672258 0.684494
+        <Tangent> { -0.907267 0.021496 -0.420005 }
+        <Binormal> { -0.113828 -0.598091 0.215272 }
+      }
+      <Normal> { 0.939268 -0.259529 -0.224403 }
+    }
+    <Vertex> 1528 {
+      0.0928959548473 0.437045097351 1.61505961418
+      <UV>  {
+        0.672258 0.684491
+        <Tangent> { -0.510977 -0.394342 -0.763804 }
+        <Binormal> { 0.438175 -0.700787 0.068673 }
+      }
+      <Normal> { 0.847835 0.519913 -0.104129 }
+    }
+    <Vertex> 1529 {
+      -0.166583999991 0.399764955044 1.79126703739
+      <UV>  {
+        0.672226 0.684519
+        <Tangent> { -0.964609 -0.215902 -0.151382 }
+        <Binormal> { 0.131074 -0.565996 -0.027976 }
+      }
+      <Normal> { 0.864284 0.222449 -0.451125 }
+    }
+    <Vertex> 1530 {
+      -0.166583999991 0.399764955044 1.79126703739
+      <UV>  {
+        0.672226 0.684519
+        <Tangent> { -0.964609 -0.215902 -0.151382 }
+        <Binormal> { 0.131074 -0.565996 -0.027976 }
+      }
+      <Normal> { 0.864284 0.222449 -0.451125 }
+    }
+    <Vertex> 1531 {
+      0.0928959548473 0.437045097351 1.61505961418
+      <UV>  {
+        0.672258 0.684491
+        <Tangent> { -0.510977 -0.394342 -0.763804 }
+        <Binormal> { 0.438175 -0.700787 0.068673 }
+      }
+      <Normal> { 0.847835 0.519913 -0.104129 }
+    }
+    <Vertex> 1532 {
+      -0.128874242306 0.481131255627 1.97628712654
+      <UV>  {
+        0.672260 0.684574
+        <Tangent> { -0.011005 -0.978860 -0.204234 }
+        <Binormal> { -0.216648 -0.024016 0.126778 }
+      }
+      <Normal> { 0.139653 0.901578 0.409436 }
+    }
+    <Vertex> 1533 {
+      -0.0842915698886 0.39474183321 1.37107312679
+      <UV>  {
+        0.672260 0.684489
+        <Tangent> { -0.766464 0.625970 -0.143856 }
+        <Binormal> { -0.306609 -0.532719 -0.684444 }
+      }
+      <Normal> { 0.805567 0.235084 -0.543840 }
+    }
+    <Vertex> 1534 {
+      0.0339967347682 0.480483800173 1.65208435059
+      <UV>  {
+        0.672258 0.684494
+        <Tangent> { -0.907267 0.021496 -0.420005 }
+        <Binormal> { -0.113828 -0.598091 0.215272 }
+      }
+      <Normal> { 0.939268 -0.259529 -0.224403 }
+    }
+    <Vertex> 1535 {
+      -0.11582018435 0.511696338654 1.66391682625
+      <UV>  {
+        0.672257 0.684491
+        <Tangent> { -0.304043 0.159783 0.939163 }
+        <Binormal> { -0.024387 0.551270 -0.101684 }
+      }
+      <Normal> { 0.785638 -0.078433 -0.613636 }
+    }
+    <Vertex> 1536 {
+      -0.0842915698886 0.39474183321 1.37107312679
+      <UV>  {
+        0.672260 0.684489
+        <Tangent> { -0.766464 0.625970 -0.143856 }
+        <Binormal> { -0.306609 -0.532719 -0.684444 }
+      }
+      <Normal> { 0.805567 0.235084 -0.543840 }
+    }
+    <Vertex> 1537 {
+      -0.0124860508367 0.435529142618 1.42872738838
+      <UV>  {
+        0.672259 0.684489
+        <Tangent> { -0.565492 -0.384094 -0.729857 }
+        <Binormal> { 0.707231 -0.614614 -0.224515 }
+      }
+      <Normal> { 0.513688 0.745933 -0.423872 }
+    }
+    <Vertex> 1538 {
+      0.0339967347682 0.480483800173 1.65208435059
+      <UV>  {
+        0.672258 0.684494
+        <Tangent> { -0.907267 0.021496 -0.420005 }
+        <Binormal> { -0.113828 -0.598091 0.215272 }
+      }
+      <Normal> { 0.939268 -0.259529 -0.224403 }
+    }
+    <Vertex> 1539 {
+      0.0339967347682 0.480483800173 1.65208435059
+      <UV>  {
+        0.672258 0.684494
+        <Tangent> { -0.907267 0.021496 -0.420005 }
+        <Binormal> { -0.113828 -0.598091 0.215272 }
+      }
+      <Normal> { 0.939268 -0.259529 -0.224403 }
+    }
+    <Vertex> 1540 {
+      -0.0124860508367 0.435529142618 1.42872738838
+      <UV>  {
+        0.672259 0.684489
+        <Tangent> { -0.565492 -0.384094 -0.729857 }
+        <Binormal> { 0.707231 -0.614614 -0.224515 }
+      }
+      <Normal> { 0.513688 0.745933 -0.423872 }
+    }
+    <Vertex> 1541 {
+      0.0928959548473 0.437045097351 1.61505961418
+      <UV>  {
+        0.672258 0.684491
+        <Tangent> { -0.510977 -0.394342 -0.763804 }
+        <Binormal> { 0.438175 -0.700787 0.068673 }
+      }
+      <Normal> { 0.847835 0.519913 -0.104129 }
+    }
+    <Vertex> 1542 {
+      0.0862512886524 0.574545562267 1.63435614109
+      <UV>  {
+        0.672260 0.684490
+        <Tangent> { -0.315018 -0.536351 -0.783001 }
+        <Binormal> { 0.576191 0.506255 -0.578595 }
+      }
+      <Normal> { -0.619373 0.782159 0.067568 }
+    }
+    <Vertex> 1543 {
+      -0.183312594891 0.607021808624 1.95916116238
+      <UV>  {
+        0.672372 0.684478
+        <Tangent> { 0.450341 0.033492 -0.892228 }
+        <Binormal> { 0.095101 0.792464 0.077748 }
+      }
+      <Normal> { -0.978698 0.099857 0.179327 }
+    }
+    <Vertex> 1544 {
+      -0.128874242306 0.481131255627 1.97628712654
+      <UV>  {
+        0.672260 0.684574
+        <Tangent> { -0.011005 -0.978860 -0.204234 }
+        <Binormal> { -0.216648 -0.024016 0.126778 }
+      }
+      <Normal> { 0.139653 0.901578 0.409436 }
+    }
+    <Vertex> 1545 {
+      -0.128874242306 0.481131255627 1.97628712654
+      <UV>  {
+        0.672260 0.684574
+        <Tangent> { -0.011005 -0.978860 -0.204234 }
+        <Binormal> { -0.216648 -0.024016 0.126778 }
+      }
+      <Normal> { 0.139653 0.901578 0.409436 }
+    }
+    <Vertex> 1546 {
+      0.0928959548473 0.437045097351 1.61505961418
+      <UV>  {
+        0.672258 0.684491
+        <Tangent> { -0.510977 -0.394342 -0.763804 }
+        <Binormal> { 0.438175 -0.700787 0.068673 }
+      }
+      <Normal> { 0.847835 0.519913 -0.104129 }
+    }
+    <Vertex> 1547 {
+      0.0862512886524 0.574545562267 1.63435614109
+      <UV>  {
+        0.672260 0.684490
+        <Tangent> { -0.315018 -0.536351 -0.783001 }
+        <Binormal> { 0.576191 0.506255 -0.578595 }
+      }
+      <Normal> { -0.619373 0.782159 0.067568 }
+    }
+    <Vertex> 1548 {
+      0.0862512886524 0.574545562267 1.63435614109
+      <UV>  {
+        0.672260 0.684490
+        <Tangent> { -0.315018 -0.536351 -0.783001 }
+        <Binormal> { 0.576191 0.506255 -0.578595 }
+      }
+      <Normal> { -0.619373 0.782159 0.067568 }
+    }
+    <Vertex> 1549 {
+      -0.0124860508367 0.435529142618 1.42872738838
+      <UV>  {
+        0.672259 0.684489
+        <Tangent> { -0.565492 -0.384094 -0.729857 }
+        <Binormal> { 0.707231 -0.614614 -0.224515 }
+      }
+      <Normal> { 0.513688 0.745933 -0.423872 }
+    }
+    <Vertex> 1550 {
+      -0.0124857323244 0.589294791222 1.42872858047
+      <UV>  {
+        0.672260 0.684487
+        <Tangent> { -0.787389 0.472616 -0.395793 }
+        <Binormal> { 0.054014 -0.234277 -0.387204 }
+      }
+      <Normal> { -0.425092 0.746910 -0.511216 }
+    }
+    <Vertex> 1551 {
+      0.0928959548473 0.437045097351 1.61505961418
+      <UV>  {
+        0.672258 0.684491
+        <Tangent> { -0.510977 -0.394342 -0.763804 }
+        <Binormal> { 0.438175 -0.700787 0.068673 }
+      }
+      <Normal> { 0.847835 0.519913 -0.104129 }
+    }
+    <Vertex> 1552 {
+      -0.0124860508367 0.435529142618 1.42872738838
+      <UV>  {
+        0.672259 0.684489
+        <Tangent> { -0.565492 -0.384094 -0.729857 }
+        <Binormal> { 0.707231 -0.614614 -0.224515 }
+      }
+      <Normal> { 0.513688 0.745933 -0.423872 }
+    }
+    <Vertex> 1553 {
+      0.0862512886524 0.574545562267 1.63435614109
+      <UV>  {
+        0.672260 0.684490
+        <Tangent> { -0.315018 -0.536351 -0.783001 }
+        <Binormal> { 0.576191 0.506255 -0.578595 }
+      }
+      <Normal> { -0.619373 0.782159 0.067568 }
+    }
+    <Vertex> 1554 {
+      -0.246741443872 0.462718814611 1.62528264523
+      <UV>  {
+        0.672261 0.684482
+        <Tangent> { -0.294808 -0.336487 0.894352 }
+        <Binormal> { 0.910004 0.057584 0.321633 }
+      }
+      <Normal> { 0.084506 -0.994537 -0.061037 }
+    }
+    <Vertex> 1555 {
+      -0.206447958946 0.402461975813 1.99062907696
+      <UV>  {
+        0.672165 0.684582
+        <Tangent> { -0.925358 0.333958 -0.179401 }
+        <Binormal> { 0.032681 -0.113283 -0.379450 }
+      }
+      <Normal> { 0.996185 0.050539 0.070711 }
+    }
+    <Vertex> 1556 {
+      -0.270814776421 0.499906629324 1.96815419197
+      <UV>  {
+        0.672236 0.684327
+        <Tangent> { -0.436931 -0.892491 -0.112034 }
+        <Binormal> { 0.211429 -0.139301 0.285132 }
+      }
+      <Normal> { -0.133824 -0.925932 -0.353130 }
+    }
+    <Vertex> 1557 {
+      -0.231918379664 0.374685436487 1.60487997532
+      <UV>  {
+        0.672263 0.684487
+        <Tangent> { -0.633006 -0.545796 0.549008 }
+        <Binormal> { 0.404958 0.251162 0.716608 }
+      }
+      <Normal> { 0.851375 -0.397992 -0.341624 }
+    }
+    <Vertex> 1558 {
+      -0.206447958946 0.402461975813 1.99062907696
+      <UV>  {
+        0.672165 0.684582
+        <Tangent> { -0.925358 0.333958 -0.179401 }
+        <Binormal> { 0.032681 -0.113283 -0.379450 }
+      }
+      <Normal> { 0.996185 0.050539 0.070711 }
+    }
+    <Vertex> 1559 {
+      -0.246741443872 0.462718814611 1.62528264523
+      <UV>  {
+        0.672261 0.684482
+        <Tangent> { -0.294808 -0.336487 0.894352 }
+        <Binormal> { 0.910004 0.057584 0.321633 }
+      }
+      <Normal> { 0.084506 -0.994537 -0.061037 }
+    }
+    <Vertex> 1560 {
+      -0.246741443872 0.462718814611 1.62528264523
+      <UV>  {
+        0.672261 0.684482
+        <Tangent> { -0.294808 -0.336487 0.894352 }
+        <Binormal> { 0.910004 0.057584 0.321633 }
+      }
+      <Normal> { 0.084506 -0.994537 -0.061037 }
+    }
+    <Vertex> 1561 {
+      -0.210646852851 0.467602431774 1.50197970867
+      <UV>  {
+        0.672261 0.684485
+        <Tangent> { -0.210226 0.104375 0.972065 }
+        <Binormal> { 0.521214 -0.540306 0.170737 }
+      }
+      <Normal> { -0.408887 -0.609149 -0.679464 }
+    }
+    <Vertex> 1562 {
+      -0.231918379664 0.374685436487 1.60487997532
+      <UV>  {
+        0.672263 0.684487
+        <Tangent> { -0.633006 -0.545796 0.549008 }
+        <Binormal> { 0.404958 0.251162 0.716608 }
+      }
+      <Normal> { 0.851375 -0.397992 -0.341624 }
+    }
+    <Vertex> 1563 {
+      -0.200803637505 0.419426470995 1.48843061924
+      <UV>  {
+        0.672263 0.684484
+        <Tangent> { -0.497359 0.800777 0.333752 }
+        <Binormal> { -0.505838 -0.058283 -0.613963 }
+      }
+      <Normal> { 0.772149 -0.008759 -0.635334 }
+    }
+    <Vertex> 1564 {
+      -0.231918379664 0.374685436487 1.60487997532
+      <UV>  {
+        0.672263 0.684487
+        <Tangent> { -0.633006 -0.545796 0.549008 }
+        <Binormal> { 0.404958 0.251162 0.716608 }
+      }
+      <Normal> { 0.851375 -0.397992 -0.341624 }
+    }
+    <Vertex> 1565 {
+      -0.210646852851 0.467602431774 1.50197970867
+      <UV>  {
+        0.672261 0.684485
+        <Tangent> { -0.210226 0.104375 0.972065 }
+        <Binormal> { 0.521214 -0.540306 0.170737 }
+      }
+      <Normal> { -0.408887 -0.609149 -0.679464 }
+    }
+    <Vertex> 1566 {
+      -0.210646852851 0.467602431774 1.50197970867
+      <UV>  {
+        0.672261 0.684485
+        <Tangent> { -0.210226 0.104375 0.972065 }
+        <Binormal> { 0.521214 -0.540306 0.170737 }
+      }
+      <Normal> { -0.408887 -0.609149 -0.679464 }
+    }
+    <Vertex> 1567 {
+      -0.168198689818 0.472681611776 1.50328397751
+      <UV>  {
+        0.672259 0.684485
+        <Tangent> { 0.302108 -0.950588 0.071507 }
+        <Binormal> { 0.625087 0.157108 -0.552369 }
+      }
+      <Normal> { -0.673544 0.290933 -0.679464 }
+    }
+    <Vertex> 1568 {
+      -0.158355474472 0.424506276846 1.48973357677
+      <UV>  {
+        0.672260 0.684483
+        <Tangent> { 0.460913 -0.829669 0.314975 }
+        <Binormal> { 0.405676 0.422546 0.519380 }
+      }
+      <Normal> { 0.277261 0.627766 -0.727287 }
+    }
+    <Vertex> 1569 {
+      -0.210646852851 0.467602431774 1.50197970867
+      <UV>  {
+        0.672261 0.684485
+        <Tangent> { -0.210226 0.104375 0.972065 }
+        <Binormal> { 0.521214 -0.540306 0.170737 }
+      }
+      <Normal> { -0.408887 -0.609149 -0.679464 }
+    }
+    <Vertex> 1570 {
+      -0.158355474472 0.424506276846 1.48973357677
+      <UV>  {
+        0.672260 0.684483
+        <Tangent> { 0.460913 -0.829669 0.314975 }
+        <Binormal> { 0.405676 0.422546 0.519380 }
+      }
+      <Normal> { 0.277261 0.627766 -0.727287 }
+    }
+    <Vertex> 1571 {
+      -0.200803637505 0.419426470995 1.48843061924
+      <UV>  {
+        0.672263 0.684484
+        <Tangent> { -0.497359 0.800777 0.333752 }
+        <Binormal> { -0.505838 -0.058283 -0.613963 }
+      }
+      <Normal> { 0.772149 -0.008759 -0.635334 }
+    }
+    <Vertex> 1572 {
+      -0.130643546581 0.599729716778 1.68432080746
+      <UV>  {
+        0.672270 0.684481
+        <Tangent> { -0.633730 -0.532508 0.561089 }
+        <Binormal> { 0.451423 -0.662504 -0.118891 }
+      }
+      <Normal> { -0.806269 -0.489883 -0.331553 }
+    }
+    <Vertex> 1573 {
+      -0.11582018435 0.511696338654 1.66391682625
+      <UV>  {
+        0.672257 0.684491
+        <Tangent> { -0.304043 0.159783 0.939163 }
+        <Binormal> { -0.024387 0.551270 -0.101684 }
+      }
+      <Normal> { 0.785638 -0.078433 -0.613636 }
+    }
+    <Vertex> 1574 {
+      -0.168198689818 0.472681611776 1.50328397751
+      <UV>  {
+        0.672259 0.684485
+        <Tangent> { 0.302108 -0.950588 0.071507 }
+        <Binormal> { 0.625087 0.157108 -0.552369 }
+      }
+      <Normal> { -0.673544 0.290933 -0.679464 }
+    }
+    <Vertex> 1575 {
+      -0.158355474472 0.424506276846 1.48973357677
+      <UV>  {
+        0.672260 0.684483
+        <Tangent> { 0.460913 -0.829669 0.314975 }
+        <Binormal> { 0.405676 0.422546 0.519380 }
+      }
+      <Normal> { 0.277261 0.627766 -0.727287 }
+    }
+    <Vertex> 1576 {
+      -0.168198689818 0.472681611776 1.50328397751
+      <UV>  {
+        0.672259 0.684485
+        <Tangent> { 0.302108 -0.950588 0.071507 }
+        <Binormal> { 0.625087 0.157108 -0.552369 }
+      }
+      <Normal> { -0.673544 0.290933 -0.679464 }
+    }
+    <Vertex> 1577 {
+      -0.11582018435 0.511696338654 1.66391682625
+      <UV>  {
+        0.672257 0.684491
+        <Tangent> { -0.304043 0.159783 0.939163 }
+        <Binormal> { -0.024387 0.551270 -0.101684 }
+      }
+      <Normal> { 0.785638 -0.078433 -0.613636 }
+    }
+    <Vertex> 1578 {
+      -0.11582018435 0.511696338654 1.66391682625
+      <UV>  {
+        0.672257 0.684491
+        <Tangent> { -0.304043 0.159783 0.939163 }
+        <Binormal> { -0.024387 0.551270 -0.101684 }
+      }
+      <Normal> { 0.785638 -0.078433 -0.613636 }
+    }
+    <Vertex> 1579 {
+      -0.130643546581 0.599729716778 1.68432080746
+      <UV>  {
+        0.672270 0.684481
+        <Tangent> { -0.633730 -0.532508 0.561089 }
+        <Binormal> { 0.451423 -0.662504 -0.118891 }
+      }
+      <Normal> { -0.806269 -0.489883 -0.331553 }
+    }
+    <Vertex> 1580 {
+      -0.0842912495136 0.640286564827 1.3710744381
+      <UV>  {
+        0.672259 0.684488
+        <Tangent> { -0.753180 0.651794 -0.088791 }
+        <Binormal> { -0.332547 -0.271376 0.828763 }
+      }
+      <Normal> { -0.786431 -0.419782 -0.453017 }
+    }
+    <Vertex> 1581 {
+      -0.0842912495136 0.640286564827 1.3710744381
+      <UV>  {
+        0.672259 0.684488
+        <Tangent> { -0.753180 0.651794 -0.088791 }
+        <Binormal> { -0.332547 -0.271376 0.828763 }
+      }
+      <Normal> { -0.786431 -0.419782 -0.453017 }
+    }
+    <Vertex> 1582 {
+      -0.0842915698886 0.39474183321 1.37107312679
+      <UV>  {
+        0.672260 0.684489
+        <Tangent> { -0.766464 0.625970 -0.143856 }
+        <Binormal> { -0.306609 -0.532719 -0.684444 }
+      }
+      <Normal> { 0.805567 0.235084 -0.543840 }
+    }
+    <Vertex> 1583 {
+      -0.11582018435 0.511696338654 1.66391682625
+      <UV>  {
+        0.672257 0.684491
+        <Tangent> { -0.304043 0.159783 0.939163 }
+        <Binormal> { -0.024387 0.551270 -0.101684 }
+      }
+      <Normal> { 0.785638 -0.078433 -0.613636 }
+    }
+    <Vertex> 1584 {
+      -0.0842912495136 0.640286564827 1.3710744381
+      <UV>  {
+        0.672259 0.684488
+        <Tangent> { -0.753180 0.651794 -0.088791 }
+        <Binormal> { -0.332547 -0.271376 0.828763 }
+      }
+      <Normal> { -0.786431 -0.419782 -0.453017 }
+    }
+    <Vertex> 1585 {
+      -0.0124857323244 0.589294791222 1.42872858047
+      <UV>  {
+        0.672260 0.684487
+        <Tangent> { -0.787389 0.472616 -0.395793 }
+        <Binormal> { 0.054014 -0.234277 -0.387204 }
+      }
+      <Normal> { -0.425092 0.746910 -0.511216 }
+    }
+    <Vertex> 1586 {
+      -0.0842915698886 0.39474183321 1.37107312679
+      <UV>  {
+        0.672260 0.684489
+        <Tangent> { -0.766464 0.625970 -0.143856 }
+        <Binormal> { -0.306609 -0.532719 -0.684444 }
+      }
+      <Normal> { 0.805567 0.235084 -0.543840 }
+    }
+    <Vertex> 1587 {
+      -0.0124857323244 0.589294791222 1.42872858047
+      <UV>  {
+        0.672260 0.684487
+        <Tangent> { -0.787389 0.472616 -0.395793 }
+        <Binormal> { 0.054014 -0.234277 -0.387204 }
+      }
+      <Normal> { -0.425092 0.746910 -0.511216 }
+    }
+    <Vertex> 1588 {
+      -0.0124860508367 0.435529142618 1.42872738838
+      <UV>  {
+        0.672259 0.684489
+        <Tangent> { -0.565492 -0.384094 -0.729857 }
+        <Binormal> { 0.707231 -0.614614 -0.224515 }
+      }
+      <Normal> { 0.513688 0.745933 -0.423872 }
+    }
+    <Vertex> 1589 {
+      -0.0842915698886 0.39474183321 1.37107312679
+      <UV>  {
+        0.672260 0.684489
+        <Tangent> { -0.766464 0.625970 -0.143856 }
+        <Binormal> { -0.306609 -0.532719 -0.684444 }
+      }
+      <Normal> { 0.805567 0.235084 -0.543840 }
+    }
+    <Vertex> 1590 {
+      -0.239575877786 -0.19657291472 0.339521974325
+      <UV>  {
+        0.697565 0.469715
+        <Tangent> { -0.753806 -0.355814 -0.552424 }
+        <Binormal> { -0.320893 0.190706 0.315039 }
+      }
+      <Normal> { 0.664479 -0.104282 0.739952 }
+    }
+    <Vertex> 1591 {
+      -0.259712904692 0.0228229016066 0.414551883936
+      <UV>  {
+        0.697117 0.473544
+        <Tangent> { -0.842892 -0.508925 -0.174726 }
+        <Binormal> { -0.454219 0.754239 -0.005689 }
+      }
+      <Normal> { 0.264901 0.166692 0.949736 }
+    }
+    <Vertex> 1592 {
+      -0.319377928972 -0.150652855635 0.284991890192
+      <UV>  {
+        0.696977 0.470353
+        <Tangent> { -0.385231 -0.867692 -0.314177 }
+        <Binormal> { -0.495899 -0.003925 0.618894 }
+      }
+      <Normal> { 0.772881 0.134281 0.620136 }
+    }
+    <Vertex> 1593 {
+      -0.188281714916 0.0228228978813 0.475778609514
+      <UV>  {
+        0.696918 0.473329
+        <Tangent> { -0.888038 -0.458488 0.034299 }
+        <Binormal> { -0.409889 0.773737 -0.269643 }
+      }
+      <Normal> { 0.258766 0.437239 0.861293 }
+    }
+    <Vertex> 1594 {
+      -0.259712904692 0.0228229016066 0.414551883936
+      <UV>  {
+        0.697117 0.473544
+        <Tangent> { -0.842892 -0.508925 -0.174726 }
+        <Binormal> { -0.454219 0.754239 -0.005689 }
+      }
+      <Normal> { 0.264901 0.166692 0.949736 }
+    }
+    <Vertex> 1595 {
+      -0.239575877786 -0.19657291472 0.339521974325
+      <UV>  {
+        0.697565 0.469715
+        <Tangent> { -0.753806 -0.355814 -0.552424 }
+        <Binormal> { -0.320893 0.190706 0.315039 }
+      }
+      <Normal> { 0.664479 -0.104282 0.739952 }
+    }
+    <Vertex> 1596 {
+      -0.259712904692 0.0228229016066 0.414551883936
+      <UV>  {
+        0.697117 0.473544
+        <Tangent> { -0.842892 -0.508925 -0.174726 }
+        <Binormal> { -0.454219 0.754239 -0.005689 }
+      }
+      <Normal> { 0.264901 0.166692 0.949736 }
+    }
+    <Vertex> 1597 {
+      -0.32604187727 0.0228229034692 0.531903147697
+      <UV>  {
+        0.696833 0.474433
+        <Tangent> { -0.870987 -0.401357 0.283364 }
+        <Binormal> { -0.477835 0.696277 -0.482531 }
+      }
+      <Normal> { 0.206030 0.648946 0.732383 }
+    }
+    <Vertex> 1598 {
+      -0.366533666849 -0.19657291472 0.393932461739
+      <UV>  {
+        0.696592 0.471668
+        <Tangent> { -0.862894 -0.496787 0.092826 }
+        <Binormal> { -0.319978 0.505958 -0.266662 }
+      }
+      <Normal> { 0.566240 0.635029 0.525437 }
+    }
+    <Vertex> 1599 {
+      -0.319377928972 -0.150652855635 0.284991890192
+      <UV>  {
+        0.696977 0.470353
+        <Tangent> { -0.385231 -0.867692 -0.314177 }
+        <Binormal> { -0.495899 -0.003925 0.618894 }
+      }
+      <Normal> { 0.772881 0.134281 0.620136 }
+    }
+    <Vertex> 1600 {
+      -0.259712904692 0.0228229016066 0.414551883936
+      <UV>  {
+        0.697117 0.473544
+        <Tangent> { -0.842892 -0.508925 -0.174726 }
+        <Binormal> { -0.454219 0.754239 -0.005689 }
+      }
+      <Normal> { 0.264901 0.166692 0.949736 }
+    }
+    <Vertex> 1601 {
+      -0.366533666849 -0.19657291472 0.393932461739
+      <UV>  {
+        0.696592 0.471668
+        <Tangent> { -0.862894 -0.496787 0.092826 }
+        <Binormal> { -0.319978 0.505958 -0.266662 }
+      }
+      <Normal> { 0.566240 0.635029 0.525437 }
+    }
+    <Vertex> 1602 {
+      -0.366533666849 -0.19657291472 0.393932461739
+      <UV>  {
+        0.696592 0.471668
+        <Tangent> { -0.862894 -0.496787 0.092826 }
+        <Binormal> { -0.319978 0.505958 -0.266662 }
+      }
+      <Normal> { 0.566240 0.635029 0.525437 }
+    }
+    <Vertex> 1603 {
+      -0.428086459637 0.0228229090571 0.572720944881
+      <UV>  {
+        0.696904 0.474968
+        <Tangent> { -0.905648 -0.351242 0.237551 }
+        <Binormal> { -0.362329 0.931886 -0.003475 }
+      }
+      <Normal> { 0.234596 0.094821 0.967437 }
+    }
+    <Vertex> 1604 {
+      -0.422857493162 -0.19657291472 0.422951370478
+      <UV>  {
+        0.696933 0.472454
+        <Tangent> { -0.672686 -0.468734 -0.572523 }
+        <Binormal> { -0.421599 0.066495 0.440918 }
+      }
+      <Normal> { 0.699728 -0.167882 0.694388 }
+    }
+    <Vertex> 1605 {
+      -0.366533666849 -0.19657291472 0.393932461739
+      <UV>  {
+        0.696592 0.471668
+        <Tangent> { -0.862894 -0.496787 0.092826 }
+        <Binormal> { -0.319978 0.505958 -0.266662 }
+      }
+      <Normal> { 0.566240 0.635029 0.525437 }
+    }
+    <Vertex> 1606 {
+      -0.32604187727 0.0228229034692 0.531903147697
+      <UV>  {
+        0.696833 0.474433
+        <Tangent> { -0.870987 -0.401357 0.283364 }
+        <Binormal> { -0.477835 0.696277 -0.482531 }
+      }
+      <Normal> { 0.206030 0.648946 0.732383 }
+    }
+    <Vertex> 1607 {
+      -0.428086459637 0.0228229090571 0.572720944881
+      <UV>  {
+        0.696904 0.474968
+        <Tangent> { -0.905648 -0.351242 0.237551 }
+        <Binormal> { -0.362329 0.931886 -0.003475 }
+      }
+      <Normal> { 0.234596 0.094821 0.967437 }
+    }
+    <Vertex> 1608 {
+      -0.239575877786 -0.19657291472 0.339521974325
+      <UV>  {
+        0.697565 0.469715
+        <Tangent> { -0.753806 -0.355814 -0.552424 }
+        <Binormal> { -0.320893 0.190706 0.315039 }
+      }
+      <Normal> { 0.664479 -0.104282 0.739952 }
+    }
+    <Vertex> 1609 {
+      -0.211473762989 -0.19657291472 0.25473728776
+      <UV>  {
+        0.697365 0.468024
+        <Tangent> { -0.603725 -0.711625 0.359315 }
+        <Binormal> { -0.431284 0.310313 -0.110071 }
+      }
+      <Normal> { 0.540269 0.819147 0.192450 }
+    }
+    <Vertex> 1610 {
+      -0.188281714916 0.0228228978813 0.475778609514
+      <UV>  {
+        0.696918 0.473329
+        <Tangent> { -0.888038 -0.458488 0.034299 }
+        <Binormal> { -0.409889 0.773737 -0.269643 }
+      }
+      <Normal> { 0.258766 0.437239 0.861293 }
+    }
+    <Vertex> 1611 {
+      -0.211473762989 -0.19657291472 0.25473728776
+      <UV>  {
+        0.697365 0.468024
+        <Tangent> { -0.603725 -0.711625 0.359315 }
+        <Binormal> { -0.431284 0.310313 -0.110071 }
+      }
+      <Normal> { 0.540269 0.819147 0.192450 }
+    }
+    <Vertex> 1612 {
+      -0.091339379549 0.022822894156 0.34312069416
+      <UV>  {
+        0.697399 0.472121
+        <Tangent> { -0.473679 -0.432066 0.767429 }
+        <Binormal> { -0.835694 0.353592 -0.316740 }
+      }
+      <Normal> { 0.265297 0.910672 0.316660 }
+    }
+    <Vertex> 1613 {
+      -0.188281714916 0.0228228978813 0.475778609514
+      <UV>  {
+        0.696918 0.473329
+        <Tangent> { -0.888038 -0.458488 0.034299 }
+        <Binormal> { -0.409889 0.773737 -0.269643 }
+      }
+      <Normal> { 0.258766 0.437239 0.861293 }
+    }
+    <Vertex> 1614 {
+      -0.0811349228024 0.022822894156 0.118622630835
+      <UV>  {
+        0.698519 0.470419
+        <Tangent> { 0.879746 -0.190019 0.435820 }
+        <Binormal> { -0.303957 0.458138 0.813316 }
+      }
+      <Normal> { 0.186895 0.884121 -0.428175 }
+    }
+    <Vertex> 1615 {
+      -0.211473762989 -0.19657291472 0.25473728776
+      <UV>  {
+        0.697365 0.468024
+        <Tangent> { -0.603725 -0.711625 0.359315 }
+        <Binormal> { -0.431284 0.310313 -0.110071 }
+      }
+      <Normal> { 0.540269 0.819147 0.192450 }
+    }
+    <Vertex> 1616 {
+      -0.204219028354 -0.19657291472 0.0951332002878
+      <UV>  {
+        0.697726 0.463504
+        <Tangent> { -0.077485 0.510978 -0.856094 }
+        <Binormal> { 0.056359 -0.452122 -0.274960 }
+      }
+      <Normal> { 0.461959 0.502152 -0.731010 }
+    }
+    <Vertex> 1617 {
+      -0.0811349228024 0.022822894156 0.118622630835
+      <UV>  {
+        0.698519 0.470419
+        <Tangent> { 0.879746 -0.190019 0.435820 }
+        <Binormal> { -0.303957 0.458138 0.813316 }
+      }
+      <Normal> { 0.186895 0.884121 -0.428175 }
+    }
+    <Vertex> 1618 {
+      -0.091339379549 0.022822894156 0.34312069416
+      <UV>  {
+        0.697399 0.472121
+        <Tangent> { -0.473679 -0.432066 0.767429 }
+        <Binormal> { -0.835694 0.353592 -0.316740 }
+      }
+      <Normal> { 0.265297 0.910672 0.316660 }
+    }
+    <Vertex> 1619 {
+      -0.211473762989 -0.19657291472 0.25473728776
+      <UV>  {
+        0.697365 0.468024
+        <Tangent> { -0.603725 -0.711625 0.359315 }
+        <Binormal> { -0.431284 0.310313 -0.110071 }
+      }
+      <Normal> { 0.540269 0.819147 0.192450 }
+    }
+    <Vertex> 1620 {
+      -0.422857493162 -0.19657291472 0.422951370478
+      <UV>  {
+        0.696933 0.472454
+        <Tangent> { -0.672686 -0.468734 -0.572523 }
+        <Binormal> { -0.421599 0.066495 0.440918 }
+      }
+      <Normal> { 0.699728 -0.167882 0.694388 }
+    }
+    <Vertex> 1621 {
+      -0.494415432215 0.0228229109198 0.531903147697
+      <UV>  {
+        0.697192 0.475139
+        <Tangent> { -0.512480 -0.023294 -0.858383 }
+        <Binormal> { -0.614570 0.188343 0.361805 }
+      }
+      <Normal> { 0.192785 -0.697226 0.690420 }
+    }
+    <Vertex> 1622 {
+      -0.455264627934 -0.19657291472 0.393932461739
+      <UV>  {
+        0.697377 0.472692
+        <Tangent> { -0.398296 0.089185 -0.912911 }
+        <Binormal> { -0.662204 -0.357475 0.253992 }
+      }
+      <Normal> { 0.545671 -0.759880 0.353191 }
+    }
+    <Vertex> 1623 {
+      -0.422857493162 -0.19657291472 0.422951370478
+      <UV>  {
+        0.696933 0.472454
+        <Tangent> { -0.672686 -0.468734 -0.572523 }
+        <Binormal> { -0.421599 0.066495 0.440918 }
+      }
+      <Normal> { 0.699728 -0.167882 0.694388 }
+    }
+    <Vertex> 1624 {
+      -0.428086459637 0.0228229090571 0.572720944881
+      <UV>  {
+        0.696904 0.474968
+        <Tangent> { -0.905648 -0.351242 0.237551 }
+        <Binormal> { -0.362329 0.931886 -0.003475 }
+      }
+      <Normal> { 0.234596 0.094821 0.967437 }
+    }
+    <Vertex> 1625 {
+      -0.494415432215 0.0228229109198 0.531903147697
+      <UV>  {
+        0.697192 0.475139
+        <Tangent> { -0.512480 -0.023294 -0.858383 }
+        <Binormal> { -0.614570 0.188343 0.361805 }
+      }
+      <Normal> { 0.192785 -0.697226 0.690420 }
+    }
+    <Vertex> 1626 {
+      -0.494415432215 0.0228229109198 0.531903147697
+      <UV>  {
+        0.697192 0.475139
+        <Tangent> { -0.512480 -0.023294 -0.858383 }
+        <Binormal> { -0.614570 0.188343 0.361805 }
+      }
+      <Normal> { 0.192785 -0.697226 0.690420 }
+    }
+    <Vertex> 1627 {
+      -0.545437693596 0.0228229127824 0.414551883936
+      <UV>  {
+        0.697112 0.475070
+        <Tangent> { -0.868276 -0.392337 0.303592 }
+        <Binormal> { -0.307212 0.897267 0.280925 }
+      }
+      <Normal> { 0.255135 -0.208258 0.944182 }
+    }
+    <Vertex> 1628 {
+      -0.455264627934 -0.19657291472 0.393932461739
+      <UV>  {
+        0.697377 0.472692
+        <Tangent> { -0.398296 0.089185 -0.912911 }
+        <Binormal> { -0.662204 -0.357475 0.253992 }
+      }
+      <Normal> { 0.545671 -0.759880 0.353191 }
+    }
+    <Vertex> 1629 {
+      -0.545437693596 0.0228229127824 0.414551883936
+      <UV>  {
+        0.697112 0.475070
+        <Tangent> { -0.868276 -0.392337 0.303592 }
+        <Binormal> { -0.307212 0.897267 0.280925 }
+      }
+      <Normal> { 0.255135 -0.208258 0.944182 }
+    }
+    <Vertex> 1630 {
+      -0.491538256407 -0.150652855635 0.284991890192
+      <UV>  {
+        0.696978 0.472751
+        <Tangent> { -0.625809 -0.536811 -0.565860 }
+        <Binormal> { -0.347185 -0.131337 0.508563 }
+      }
+      <Normal> { 0.833491 -0.097690 0.543779 }
+    }
+    <Vertex> 1631 {
+      -0.455264627934 -0.19657291472 0.393932461739
+      <UV>  {
+        0.697377 0.472692
+        <Tangent> { -0.398296 0.089185 -0.912911 }
+        <Binormal> { -0.662204 -0.357475 0.253992 }
+      }
+      <Normal> { 0.545671 -0.759880 0.353191 }
+    }
+    <Vertex> 1632 {
+      -0.545437693596 0.0228229127824 0.414551883936
+      <UV>  {
+        0.697112 0.475070
+        <Tangent> { -0.868276 -0.392337 0.303592 }
+        <Binormal> { -0.307212 0.897267 0.280925 }
+      }
+      <Normal> { 0.255135 -0.208258 0.944182 }
+    }
+    <Vertex> 1633 {
+      -0.582222700119 -0.196572899818 0.36128616333
+      <UV>  {
+        0.696675 0.473464
+        <Tangent> { -0.849841 -0.525467 -0.040680 }
+        <Binormal> { -0.378027 0.592295 0.246594 }
+      }
+      <Normal> { 0.672689 0.125767 0.729148 }
+    }
+    <Vertex> 1634 {
+      -0.491538256407 -0.150652855635 0.284991890192
+      <UV>  {
+        0.696978 0.472751
+        <Tangent> { -0.625809 -0.536811 -0.565860 }
+        <Binormal> { -0.347185 -0.131337 0.508563 }
+      }
+      <Normal> { 0.833491 -0.097690 0.543779 }
+    }
+    <Vertex> 1635 {
+      -0.545437693596 0.0228229127824 0.414551883936
+      <UV>  {
+        0.697112 0.475070
+        <Tangent> { -0.868276 -0.392337 0.303592 }
+        <Binormal> { -0.307212 0.897267 0.280925 }
+      }
+      <Normal> { 0.255135 -0.208258 0.944182 }
+    }
+    <Vertex> 1636 {
+      -0.627073347569 0.0228229165077 0.485983073711
+      <UV>  {
+        0.697152 0.475457
+        <Tangent> { -0.874835 -0.341706 0.343368 }
+        <Binormal> { -0.187352 0.873442 0.391878 }
+      }
+      <Normal> { 0.241340 -0.353679 0.903684 }
+    }
+    <Vertex> 1637 {
+      -0.582222700119 -0.196572899818 0.36128616333
+      <UV>  {
+        0.696675 0.473464
+        <Tangent> { -0.849841 -0.525467 -0.040680 }
+        <Binormal> { -0.378027 0.592295 0.246594 }
+      }
+      <Normal> { 0.672689 0.125767 0.729148 }
+    }
+    <Vertex> 1638 {
+      -0.612477362156 -0.196572899818 0.281484127045
+      <UV>  {
+        0.696829 0.473469
+        <Tangent> { -0.504621 0.070844 -0.860429 }
+        <Binormal> { -0.691743 -0.342469 0.377493 }
+      }
+      <Normal> { 0.526048 -0.821925 0.218299 }
+    }
+    <Vertex> 1639 {
+      -0.582222700119 -0.196572899818 0.36128616333
+      <UV>  {
+        0.696675 0.473464
+        <Tangent> { -0.849841 -0.525467 -0.040680 }
+        <Binormal> { -0.378027 0.592295 0.246594 }
+      }
+      <Normal> { 0.672689 0.125767 0.729148 }
+    }
+    <Vertex> 1640 {
+      -0.627073347569 0.0228229165077 0.485983073711
+      <UV>  {
+        0.697152 0.475457
+        <Tangent> { -0.874835 -0.341706 0.343368 }
+        <Binormal> { -0.187352 0.873442 0.391878 }
+      }
+      <Normal> { 0.241340 -0.353679 0.903684 }
+    }
+    <Vertex> 1641 {
+      -0.612477362156 -0.196572899818 0.281484127045
+      <UV>  {
+        0.696829 0.473469
+        <Tangent> { -0.504621 0.070844 -0.860429 }
+        <Binormal> { -0.691743 -0.342469 0.377493 }
+      }
+      <Normal> { 0.526048 -0.821925 0.218299 }
+    }
+    <Vertex> 1642 {
+      -0.627073347569 0.0228229165077 0.485983073711
+      <UV>  {
+        0.697152 0.475457
+        <Tangent> { -0.874835 -0.341706 0.343368 }
+        <Binormal> { -0.187352 0.873442 0.391878 }
+      }
+      <Normal> { 0.241340 -0.353679 0.903684 }
+    }
+    <Vertex> 1643 {
+      -0.734220147133 0.0228229220957 0.37373405695
+      <UV>  {
+        0.697068 0.475399
+        <Tangent> { -0.604221 0.064457 -0.794205 }
+        <Binormal> { -0.677673 -0.005789 0.515095 }
+      }
+      <Normal> { 0.288461 -0.883267 0.369579 }
+    }
+    <Vertex> 1644 {
+      -0.744424641132 0.0228229220957 0.118622630835
+      <UV>  {
+        0.696493 0.475139
+        <Tangent> { 0.030538 0.143487 -0.989181 }
+        <Binormal> { -0.928313 -0.198956 -0.057519 }
+      }
+      <Normal> { 0.214484 -0.875729 -0.432508 }
+    }
+    <Vertex> 1645 {
+      -0.61973208189 -0.196572899818 0.100115843117
+      <UV>  {
+        0.696030 0.472901
+        <Tangent> { 0.475553 0.658295 -0.583521 }
+        <Binormal> { -0.785826 0.114040 -0.511771 }
+      }
+      <Normal> { 0.426283 -0.486068 -0.762871 }
+    }
+    <Vertex> 1646 {
+      -0.612477362156 -0.196572899818 0.281484127045
+      <UV>  {
+        0.696829 0.473469
+        <Tangent> { -0.504621 0.070844 -0.860429 }
+        <Binormal> { -0.691743 -0.342469 0.377493 }
+      }
+      <Normal> { 0.526048 -0.821925 0.218299 }
+    }
+    <Vertex> 1647 {
+      -0.734220147133 0.0228229220957 0.37373405695
+      <UV>  {
+        0.697068 0.475399
+        <Tangent> { -0.604221 0.064457 -0.794205 }
+        <Binormal> { -0.677673 -0.005789 0.515095 }
+      }
+      <Normal> { 0.288461 -0.883267 0.369579 }
+    }
+    <Vertex> 1648 {
+      -0.744424641132 0.0228229220957 0.118622630835
+      <UV>  {
+        0.696493 0.475139
+        <Tangent> { 0.030538 0.143487 -0.989181 }
+        <Binormal> { -0.928313 -0.198956 -0.057519 }
+      }
+      <Normal> { 0.214484 -0.875729 -0.432508 }
+    }
+    <Vertex> 1649 {
+      -0.612477362156 -0.196572899818 0.281484127045
+      <UV>  {
+        0.696829 0.473469
+        <Tangent> { -0.504621 0.070844 -0.860429 }
+        <Binormal> { -0.691743 -0.342469 0.377493 }
+      }
+      <Normal> { 0.526048 -0.821925 0.218299 }
+    }
+    <Vertex> 1650 {
+      -0.275813698769 0.242218717933 0.397326886654
+      <UV>  {
+        0.697145 0.476668
+        <Tangent> { -0.869925 -0.491697 -0.038262 }
+        <Binormal> { -0.462001 0.839184 -0.280119 }
+      }
+      <Normal> { -0.223487 0.195685 0.954833 }
+    }
+    <Vertex> 1651 {
+      -0.259712904692 0.0228229016066 0.414551883936
+      <UV>  {
+        0.697117 0.473544
+        <Tangent> { -0.842892 -0.508925 -0.174726 }
+        <Binormal> { -0.454219 0.754239 -0.005689 }
+      }
+      <Normal> { 0.264901 0.166692 0.949736 }
+    }
+    <Vertex> 1652 {
+      -0.213138252497 0.242218717933 0.455369710922
+      <UV>  {
+        0.697102 0.476050
+        <Tangent> { -0.745350 -0.474885 -0.467908 }
+        <Binormal> { -0.532888 0.812053 0.024697 }
+      }
+      <Normal> { -0.191900 -0.155400 0.969024 }
+    }
+    <Vertex> 1653 {
+      -0.213138252497 0.242218717933 0.455369710922
+      <UV>  {
+        0.697102 0.476050
+        <Tangent> { -0.745350 -0.474885 -0.467908 }
+        <Binormal> { -0.532888 0.812053 0.024697 }
+      }
+      <Normal> { -0.191900 -0.155400 0.969024 }
+    }
+    <Vertex> 1654 {
+      -0.259712904692 0.0228229016066 0.414551883936
+      <UV>  {
+        0.697117 0.473544
+        <Tangent> { -0.842892 -0.508925 -0.174726 }
+        <Binormal> { -0.454219 0.754239 -0.005689 }
+      }
+      <Normal> { 0.264901 0.166692 0.949736 }
+    }
+    <Vertex> 1655 {
+      -0.188281714916 0.0228228978813 0.475778609514
+      <UV>  {
+        0.696918 0.473329
+        <Tangent> { -0.888038 -0.458488 0.034299 }
+        <Binormal> { -0.409889 0.773737 -0.269643 }
+      }
+      <Normal> { 0.258766 0.437239 0.861293 }
+    }
+    <Vertex> 1656 {
+      -0.336968809366 0.242218717933 0.505524992943
+      <UV>  {
+        0.697009 0.476841
+        <Tangent> { -0.818806 -0.257703 0.512978 }
+        <Binormal> { -0.519181 0.485225 -0.584946 }
+      }
+      <Normal> { -0.221900 0.644551 0.731620 }
+    }
+    <Vertex> 1657 {
+      -0.32604187727 0.0228229034692 0.531903147697
+      <UV>  {
+        0.696833 0.474433
+        <Tangent> { -0.870987 -0.401357 0.283364 }
+        <Binormal> { -0.477835 0.696277 -0.482531 }
+      }
+      <Normal> { 0.206030 0.648946 0.732383 }
+    }
+    <Vertex> 1658 {
+      -0.259712904692 0.0228229016066 0.414551883936
+      <UV>  {
+        0.697117 0.473544
+        <Tangent> { -0.842892 -0.508925 -0.174726 }
+        <Binormal> { -0.454219 0.754239 -0.005689 }
+      }
+      <Normal> { 0.264901 0.166692 0.949736 }
+    }
+    <Vertex> 1659 {
+      -0.336968809366 0.242218717933 0.505524992943
+      <UV>  {
+        0.697009 0.476841
+        <Tangent> { -0.818806 -0.257703 0.512978 }
+        <Binormal> { -0.519181 0.485225 -0.584946 }
+      }
+      <Normal> { -0.221900 0.644551 0.731620 }
+    }
+    <Vertex> 1660 {
+      -0.259712904692 0.0228229016066 0.414551883936
+      <UV>  {
+        0.697117 0.473544
+        <Tangent> { -0.842892 -0.508925 -0.174726 }
+        <Binormal> { -0.454219 0.754239 -0.005689 }
+      }
+      <Normal> { 0.264901 0.166692 0.949736 }
+    }
+    <Vertex> 1661 {
+      -0.275813698769 0.242218717933 0.397326886654
+      <UV>  {
+        0.697145 0.476668
+        <Tangent> { -0.869925 -0.491697 -0.038262 }
+        <Binormal> { -0.462001 0.839184 -0.280119 }
+      }
+      <Normal> { -0.223487 0.195685 0.954833 }
+    }
+    <Vertex> 1662 {
+      -0.426675736904 0.242218717933 0.543158948421
+      <UV>  {
+        0.696982 0.477043
+        <Tangent> { -0.929283 -0.192659 0.315144 }
+        <Binormal> { -0.124346 0.804507 0.125160 }
+      }
+      <Normal> { -0.249336 -0.186377 0.950285 }
+    }
+    <Vertex> 1663 {
+      -0.428086459637 0.0228229090571 0.572720944881
+      <UV>  {
+        0.696904 0.474968
+        <Tangent> { -0.905648 -0.351242 0.237551 }
+        <Binormal> { -0.362329 0.931886 -0.003475 }
+      }
+      <Normal> { 0.234596 0.094821 0.967437 }
+    }
+    <Vertex> 1664 {
+      -0.336968809366 0.242218717933 0.505524992943
+      <UV>  {
+        0.697009 0.476841
+        <Tangent> { -0.818806 -0.257703 0.512978 }
+        <Binormal> { -0.519181 0.485225 -0.584946 }
+      }
+      <Normal> { -0.221900 0.644551 0.731620 }
+    }
+    <Vertex> 1665 {
+      -0.428086459637 0.0228229090571 0.572720944881
+      <UV>  {
+        0.696904 0.474968
+        <Tangent> { -0.905648 -0.351242 0.237551 }
+        <Binormal> { -0.362329 0.931886 -0.003475 }
+      }
+      <Normal> { 0.234596 0.094821 0.967437 }
+    }
+    <Vertex> 1666 {
+      -0.32604187727 0.0228229034692 0.531903147697
+      <UV>  {
+        0.696833 0.474433
+        <Tangent> { -0.870987 -0.401357 0.283364 }
+        <Binormal> { -0.477835 0.696277 -0.482531 }
+      }
+      <Normal> { 0.206030 0.648946 0.732383 }
+    }
+    <Vertex> 1667 {
+      -0.336968809366 0.242218717933 0.505524992943
+      <UV>  {
+        0.697009 0.476841
+        <Tangent> { -0.818806 -0.257703 0.512978 }
+        <Binormal> { -0.519181 0.485225 -0.584946 }
+      }
+      <Normal> { -0.221900 0.644551 0.731620 }
+    }
+    <Vertex> 1668 {
+      -0.188281714916 0.0228228978813 0.475778609514
+      <UV>  {
+        0.696918 0.473329
+        <Tangent> { -0.888038 -0.458488 0.034299 }
+        <Binormal> { -0.409889 0.773737 -0.269643 }
+      }
+      <Normal> { 0.258766 0.437239 0.861293 }
+    }
+    <Vertex> 1669 {
+      -0.0982465669513 0.24732093513 0.334254056215
+      <UV>  {
+        0.697740 0.475361
+        <Tangent> { -0.255604 -0.365934 0.894851 }
+        <Binormal> { -0.953255 -0.057432 -0.295773 }
+      }
+      <Normal> { -0.165258 0.920560 0.353862 }
+    }
+    <Vertex> 1670 {
+      -0.213138252497 0.242218717933 0.455369710922
+      <UV>  {
+        0.697102 0.476050
+        <Tangent> { -0.745350 -0.474885 -0.467908 }
+        <Binormal> { -0.532888 0.812053 0.024697 }
+      }
+      <Normal> { -0.191900 -0.155400 0.969024 }
+    }
+    <Vertex> 1671 {
+      -0.188281714916 0.0228228978813 0.475778609514
+      <UV>  {
+        0.696918 0.473329
+        <Tangent> { -0.888038 -0.458488 0.034299 }
+        <Binormal> { -0.409889 0.773737 -0.269643 }
+      }
+      <Normal> { 0.258766 0.437239 0.861293 }
+    }
+    <Vertex> 1672 {
+      -0.091339379549 0.022822894156 0.34312069416
+      <UV>  {
+        0.697399 0.472121
+        <Tangent> { -0.473679 -0.432066 0.767429 }
+        <Binormal> { -0.835694 0.353592 -0.316740 }
+      }
+      <Normal> { 0.265297 0.910672 0.316660 }
+    }
+    <Vertex> 1673 {
+      -0.0982465669513 0.24732093513 0.334254056215
+      <UV>  {
+        0.697740 0.475361
+        <Tangent> { -0.255604 -0.365934 0.894851 }
+        <Binormal> { -0.953255 -0.057432 -0.295773 }
+      }
+      <Normal> { -0.165258 0.920560 0.353862 }
+    }
+    <Vertex> 1674 {
+      -0.0888380855322 0.24732093513 0.1272675246
+      <UV>  {
+        0.698290 0.474646
+        <Tangent> { 0.958863 0.088479 0.269727 }
+        <Binormal> { -0.253339 0.651689 0.686834 }
+      }
+      <Normal> { -0.075076 0.709372 -0.700766 }
+    }
+    <Vertex> 1675 {
+      -0.0982465669513 0.24732093513 0.334254056215
+      <UV>  {
+        0.697740 0.475361
+        <Tangent> { -0.255604 -0.365934 0.894851 }
+        <Binormal> { -0.953255 -0.057432 -0.295773 }
+      }
+      <Normal> { -0.165258 0.920560 0.353862 }
+    }
+    <Vertex> 1676 {
+      -0.0811349228024 0.022822894156 0.118622630835
+      <UV>  {
+        0.698519 0.470419
+        <Tangent> { 0.879746 -0.190019 0.435820 }
+        <Binormal> { -0.303957 0.458138 0.813316 }
+      }
+      <Normal> { 0.186895 0.884121 -0.428175 }
+    }
+    <Vertex> 1677 {
+      -0.0982465669513 0.24732093513 0.334254056215
+      <UV>  {
+        0.697740 0.475361
+        <Tangent> { -0.255604 -0.365934 0.894851 }
+        <Binormal> { -0.953255 -0.057432 -0.295773 }
+      }
+      <Normal> { -0.165258 0.920560 0.353862 }
+    }
+    <Vertex> 1678 {
+      -0.091339379549 0.022822894156 0.34312069416
+      <UV>  {
+        0.697399 0.472121
+        <Tangent> { -0.473679 -0.432066 0.767429 }
+        <Binormal> { -0.835694 0.353592 -0.316740 }
+      }
+      <Normal> { 0.265297 0.910672 0.316660 }
+    }
+    <Vertex> 1679 {
+      -0.0811349228024 0.022822894156 0.118622630835
+      <UV>  {
+        0.698519 0.470419
+        <Tangent> { 0.879746 -0.190019 0.435820 }
+        <Binormal> { -0.303957 0.458138 0.813316 }
+      }
+      <Normal> { 0.186895 0.884121 -0.428175 }
+    }
+    <Vertex> 1680 {
+      -0.483850955963 0.242218717933 0.505524992943
+      <UV>  {
+        0.697231 0.477267
+        <Tangent> { -0.464839 -0.154585 -0.871796 }
+        <Binormal> { -0.770133 0.473408 0.326688 }
+      }
+      <Normal> { -0.234046 -0.780633 0.579485 }
+    }
+    <Vertex> 1681 {
+      -0.494415432215 0.0228229109198 0.531903147697
+      <UV>  {
+        0.697192 0.475139
+        <Tangent> { -0.512480 -0.023294 -0.858383 }
+        <Binormal> { -0.614570 0.188343 0.361805 }
+      }
+      <Normal> { 0.192785 -0.697226 0.690420 }
+    }
+    <Vertex> 1682 {
+      -0.426675736904 0.242218717933 0.543158948421
+      <UV>  {
+        0.696982 0.477043
+        <Tangent> { -0.929283 -0.192659 0.315144 }
+        <Binormal> { -0.124346 0.804507 0.125160 }
+      }
+      <Normal> { -0.249336 -0.186377 0.950285 }
+    }
+    <Vertex> 1683 {
+      -0.494415432215 0.0228229109198 0.531903147697
+      <UV>  {
+        0.697192 0.475139
+        <Tangent> { -0.512480 -0.023294 -0.858383 }
+        <Binormal> { -0.614570 0.188343 0.361805 }
+      }
+      <Normal> { 0.192785 -0.697226 0.690420 }
+    }
+    <Vertex> 1684 {
+      -0.428086459637 0.0228229090571 0.572720944881
+      <UV>  {
+        0.696904 0.474968
+        <Tangent> { -0.905648 -0.351242 0.237551 }
+        <Binormal> { -0.362329 0.931886 -0.003475 }
+      }
+      <Normal> { 0.234596 0.094821 0.967437 }
+    }
+    <Vertex> 1685 {
+      -0.426675736904 0.242218717933 0.543158948421
+      <UV>  {
+        0.696982 0.477043
+        <Tangent> { -0.929283 -0.192659 0.315144 }
+        <Binormal> { -0.124346 0.804507 0.125160 }
+      }
+      <Normal> { -0.249336 -0.186377 0.950285 }
+    }
+    <Vertex> 1686 {
+      -0.483850955963 0.242218717933 0.505524992943
+      <UV>  {
+        0.697231 0.477267
+        <Tangent> { -0.464839 -0.154585 -0.871796 }
+        <Binormal> { -0.770133 0.473408 0.326688 }
+      }
+      <Normal> { -0.234046 -0.780633 0.579485 }
+    }
+    <Vertex> 1687 {
+      -0.545437693596 0.0228229127824 0.414551883936
+      <UV>  {
+        0.697112 0.475070
+        <Tangent> { -0.868276 -0.392337 0.303592 }
+        <Binormal> { -0.307212 0.897267 0.280925 }
+      }
+      <Normal> { 0.255135 -0.208258 0.944182 }
+    }
+    <Vertex> 1688 {
+      -0.494415432215 0.0228229109198 0.531903147697
+      <UV>  {
+        0.697192 0.475139
+        <Tangent> { -0.512480 -0.023294 -0.858383 }
+        <Binormal> { -0.614570 0.188343 0.361805 }
+      }
+      <Normal> { 0.192785 -0.697226 0.690420 }
+    }
+    <Vertex> 1689 {
+      -0.483850955963 0.242218717933 0.505524992943
+      <UV>  {
+        0.697231 0.477267
+        <Tangent> { -0.464839 -0.154585 -0.871796 }
+        <Binormal> { -0.770133 0.473408 0.326688 }
+      }
+      <Normal> { -0.234046 -0.780633 0.579485 }
+    }
+    <Vertex> 1690 {
+      -0.530893027782 0.242218732834 0.397326886654
+      <UV>  {
+        0.697197 0.477546
+        <Tangent> { -0.642190 -0.110361 -0.758559 }
+        <Binormal> { -0.269938 0.739708 0.120909 }
+      }
+      <Normal> { -0.159612 -0.215705 0.963317 }
+    }
+    <Vertex> 1691 {
+      -0.545437693596 0.0228229127824 0.414551883936
+      <UV>  {
+        0.697112 0.475070
+        <Tangent> { -0.868276 -0.392337 0.303592 }
+        <Binormal> { -0.307212 0.897267 0.280925 }
+      }
+      <Normal> { 0.255135 -0.208258 0.944182 }
+    }
+    <Vertex> 1692 {
+      -0.530893027782 0.242218732834 0.397326886654
+      <UV>  {
+        0.697197 0.477546
+        <Tangent> { -0.642190 -0.110361 -0.758559 }
+        <Binormal> { -0.269938 0.739708 0.120909 }
+      }
+      <Normal> { -0.159612 -0.215705 0.963317 }
+    }
+    <Vertex> 1693 {
+      -0.602578699589 0.242218732834 0.463187485933
+      <UV>  {
+        0.697299 0.477263
+        <Tangent> { -0.793662 -0.290292 0.534632 }
+        <Binormal> { -0.391003 0.698871 -0.200975 }
+      }
+      <Normal> { -0.132450 0.204779 0.969787 }
+    }
+    <Vertex> 1694 {
+      -0.545437693596 0.0228229127824 0.414551883936
+      <UV>  {
+        0.697112 0.475070
+        <Tangent> { -0.868276 -0.392337 0.303592 }
+        <Binormal> { -0.307212 0.897267 0.280925 }
+      }
+      <Normal> { 0.255135 -0.208258 0.944182 }
+    }
+    <Vertex> 1695 {
+      -0.602578699589 0.242218732834 0.463187485933
+      <UV>  {
+        0.697299 0.477263
+        <Tangent> { -0.793662 -0.290292 0.534632 }
+        <Binormal> { -0.391003 0.698871 -0.200975 }
+      }
+      <Normal> { -0.132450 0.204779 0.969787 }
+    }
+    <Vertex> 1696 {
+      -0.627073347569 0.0228229165077 0.485983073711
+      <UV>  {
+        0.697152 0.475457
+        <Tangent> { -0.874835 -0.341706 0.343368 }
+        <Binormal> { -0.187352 0.873442 0.391878 }
+      }
+      <Normal> { 0.241340 -0.353679 0.903684 }
+    }
+    <Vertex> 1697 {
+      -0.545437693596 0.0228229127824 0.414551883936
+      <UV>  {
+        0.697112 0.475070
+        <Tangent> { -0.868276 -0.392337 0.303592 }
+        <Binormal> { -0.307212 0.897267 0.280925 }
+      }
+      <Normal> { 0.255135 -0.208258 0.944182 }
+    }
+    <Vertex> 1698 {
+      -0.627073347569 0.0228229165077 0.485983073711
+      <UV>  {
+        0.697152 0.475457
+        <Tangent> { -0.874835 -0.341706 0.343368 }
+        <Binormal> { -0.187352 0.873442 0.391878 }
+      }
+      <Normal> { 0.241340 -0.353679 0.903684 }
+    }
+    <Vertex> 1699 {
+      -0.602578699589 0.242218732834 0.463187485933
+      <UV>  {
+        0.697299 0.477263
+        <Tangent> { -0.793662 -0.290292 0.534632 }
+        <Binormal> { -0.391003 0.698871 -0.200975 }
+      }
+      <Normal> { -0.132450 0.204779 0.969787 }
+    }
+    <Vertex> 1700 {
+      -0.737083911896 0.237116500735 0.359692960978
+      <UV>  {
+        0.697122 0.476968
+        <Tangent> { -0.187068 0.159312 -0.969343 }
+        <Binormal> { -0.813671 0.217365 0.192750 }
+      }
+      <Normal> { -0.147221 -0.904996 0.399091 }
+    }
+    <Vertex> 1701 {
+      -0.734220147133 0.0228229220957 0.37373405695
+      <UV>  {
+        0.697068 0.475399
+        <Tangent> { -0.604221 0.064457 -0.794205 }
+        <Binormal> { -0.677673 -0.005789 0.515095 }
+      }
+      <Normal> { 0.288461 -0.883267 0.369579 }
+    }
+    <Vertex> 1702 {
+      -0.627073347569 0.0228229165077 0.485983073711
+      <UV>  {
+        0.697152 0.475457
+        <Tangent> { -0.874835 -0.341706 0.343368 }
+        <Binormal> { -0.187352 0.873442 0.391878 }
+      }
+      <Normal> { 0.241340 -0.353679 0.903684 }
+    }
+    <Vertex> 1703 {
+      -0.737083911896 0.237116500735 0.359692960978
+      <UV>  {
+        0.697122 0.476968
+        <Tangent> { -0.187068 0.159312 -0.969343 }
+        <Binormal> { -0.813671 0.217365 0.192750 }
+      }
+      <Normal> { -0.147221 -0.904996 0.399091 }
+    }
+    <Vertex> 1704 {
+      -0.737083911896 0.237116500735 0.359692960978
+      <UV>  {
+        0.697122 0.476968
+        <Tangent> { -0.187068 0.159312 -0.969343 }
+        <Binormal> { -0.813671 0.217365 0.192750 }
+      }
+      <Normal> { -0.147221 -0.904996 0.399091 }
+    }
+    <Vertex> 1705 {
+      -0.746492385864 0.237116500735 0.124482221901
+      <UV>  {
+        0.697071 0.476758
+        <Tangent> { 0.027781 0.141361 -0.989568 }
+        <Binormal> { -0.796835 0.052177 -0.014917 }
+      }
+      <Normal> { -0.032807 -0.703879 -0.709525 }
+    }
+    <Vertex> 1706 {
+      -0.744424641132 0.0228229220957 0.118622630835
+      <UV>  {
+        0.696493 0.475139
+        <Tangent> { 0.030538 0.143487 -0.989181 }
+        <Binormal> { -0.928313 -0.198956 -0.057519 }
+      }
+      <Normal> { 0.214484 -0.875729 -0.432508 }
+    }
+    <Vertex> 1707 {
+      -0.737083911896 0.237116500735 0.359692960978
+      <UV>  {
+        0.697122 0.476968
+        <Tangent> { -0.187068 0.159312 -0.969343 }
+        <Binormal> { -0.813671 0.217365 0.192750 }
+      }
+      <Normal> { -0.147221 -0.904996 0.399091 }
+    }
+    <Vertex> 1708 {
+      -0.744424641132 0.0228229220957 0.118622630835
+      <UV>  {
+        0.696493 0.475139
+        <Tangent> { 0.030538 0.143487 -0.989181 }
+        <Binormal> { -0.928313 -0.198956 -0.057519 }
+      }
+      <Normal> { 0.214484 -0.875729 -0.432508 }
+    }
+    <Vertex> 1709 {
+      -0.734220147133 0.0228229220957 0.37373405695
+      <UV>  {
+        0.697068 0.475399
+        <Tangent> { -0.604221 0.064457 -0.794205 }
+        <Binormal> { -0.677673 -0.005789 0.515095 }
+      }
+      <Normal> { 0.288461 -0.883267 0.369579 }
+    }
+    <Vertex> 1710 {
+      -0.211473762989 -0.19657291472 0.25473728776
+      <UV>  {
+        0.697365 0.468024
+        <Tangent> { -0.603725 -0.711625 0.359315 }
+        <Binormal> { -0.431284 0.310313 -0.110071 }
+      }
+      <Normal> { 0.540269 0.819147 0.192450 }
+    }
+    <Vertex> 1711 {
+      -0.280121833086 -0.298617482185 0.174747139215
+      <UV>  {
+        0.696621 0.467480
+        <Tangent> { -0.486846 0.257797 -0.834579 }
+        <Binormal> { 0.072495 -0.779925 -0.283204 }
+      }
+      <Normal> { 0.993316 0.055727 0.100803 }
+    }
+    <Vertex> 1712 {
+      -0.204219028354 -0.19657291472 0.0951332002878
+      <UV>  {
+        0.697726 0.463504
+        <Tangent> { -0.077485 0.510978 -0.856094 }
+        <Binormal> { 0.056359 -0.452122 -0.274960 }
+      }
+      <Normal> { 0.461959 0.502152 -0.731010 }
+    }
+    <Vertex> 1713 {
+      -0.211473762989 -0.19657291472 0.25473728776
+      <UV>  {
+        0.697365 0.468024
+        <Tangent> { -0.603725 -0.711625 0.359315 }
+        <Binormal> { -0.431284 0.310313 -0.110071 }
+      }
+      <Normal> { 0.540269 0.819147 0.192450 }
+    }
+    <Vertex> 1714 {
+      -0.239575877786 -0.19657291472 0.339521974325
+      <UV>  {
+        0.697565 0.469715
+        <Tangent> { -0.753806 -0.355814 -0.552424 }
+        <Binormal> { -0.320893 0.190706 0.315039 }
+      }
+      <Normal> { 0.664479 -0.104282 0.739952 }
+    }
+    <Vertex> 1715 {
+      -0.280121833086 -0.298617482185 0.174747139215
+      <UV>  {
+        0.696621 0.467480
+        <Tangent> { -0.486846 0.257797 -0.834579 }
+        <Binormal> { 0.072495 -0.779925 -0.283204 }
+      }
+      <Normal> { 0.993316 0.055727 0.100803 }
+    }
+    <Vertex> 1716 {
+      -0.239575877786 -0.19657291472 0.339521974325
+      <UV>  {
+        0.697565 0.469715
+        <Tangent> { -0.753806 -0.355814 -0.552424 }
+        <Binormal> { -0.320893 0.190706 0.315039 }
+      }
+      <Normal> { 0.664479 -0.104282 0.739952 }
+    }
+    <Vertex> 1717 {
+      -0.319377928972 -0.150652855635 0.284991890192
+      <UV>  {
+        0.696977 0.470353
+        <Tangent> { -0.385231 -0.867692 -0.314177 }
+        <Binormal> { -0.495899 -0.003925 0.618894 }
+      }
+      <Normal> { 0.772881 0.134281 0.620136 }
+    }
+    <Vertex> 1718 {
+      -0.280121833086 -0.298617482185 0.174747139215
+      <UV>  {
+        0.696621 0.467480
+        <Tangent> { -0.486846 0.257797 -0.834579 }
+        <Binormal> { 0.072495 -0.779925 -0.283204 }
+      }
+      <Normal> { 0.993316 0.055727 0.100803 }
+    }
+    <Vertex> 1719 {
+      -0.366533666849 -0.19657291472 0.393932461739
+      <UV>  {
+        0.696592 0.471668
+        <Tangent> { -0.862894 -0.496787 0.092826 }
+        <Binormal> { -0.319978 0.505958 -0.266662 }
+      }
+      <Normal> { 0.566240 0.635029 0.525437 }
+    }
+    <Vertex> 1720 {
+      -0.38726863265 -0.349639773369 0.174747139215
+      <UV>  {
+        0.696806 0.469646
+        <Tangent> { -0.387488 -0.848376 -0.360709 }
+        <Binormal> { -0.199987 -0.258193 0.822097 }
+      }
+      <Normal> { 0.971282 0.004944 0.237831 }
+    }
+    <Vertex> 1721 {
+      -0.319377928972 -0.150652855635 0.284991890192
+      <UV>  {
+        0.696977 0.470353
+        <Tangent> { -0.385231 -0.867692 -0.314177 }
+        <Binormal> { -0.495899 -0.003925 0.618894 }
+      }
+      <Normal> { 0.772881 0.134281 0.620136 }
+    }
+    <Vertex> 1722 {
+      -0.366533666849 -0.19657291472 0.393932461739
+      <UV>  {
+        0.696592 0.471668
+        <Tangent> { -0.862894 -0.496787 0.092826 }
+        <Binormal> { -0.319978 0.505958 -0.266662 }
+      }
+      <Normal> { 0.566240 0.635029 0.525437 }
+    }
+    <Vertex> 1723 {
+      -0.422857493162 -0.19657291472 0.422951370478
+      <UV>  {
+        0.696933 0.472454
+        <Tangent> { -0.672686 -0.468734 -0.572523 }
+        <Binormal> { -0.421599 0.066495 0.440918 }
+      }
+      <Normal> { 0.699728 -0.167882 0.694388 }
+    }
+    <Vertex> 1724 {
+      -0.38726863265 -0.349639773369 0.174747139215
+      <UV>  {
+        0.696806 0.469646
+        <Tangent> { -0.387488 -0.848376 -0.360709 }
+        <Binormal> { -0.199987 -0.258193 0.822097 }
+      }
+      <Normal> { 0.971282 0.004944 0.237831 }
+    }
+    <Vertex> 1725 {
+      -0.38726863265 -0.349639773369 0.174747139215
+      <UV>  {
+        0.696806 0.469646
+        <Tangent> { -0.387488 -0.848376 -0.360709 }
+        <Binormal> { -0.199987 -0.258193 0.822097 }
+      }
+      <Normal> { 0.971282 0.004944 0.237831 }
+    }
+    <Vertex> 1726 {
+      -0.422857493162 -0.19657291472 0.422951370478
+      <UV>  {
+        0.696933 0.472454
+        <Tangent> { -0.672686 -0.468734 -0.572523 }
+        <Binormal> { -0.421599 0.066495 0.440918 }
+      }
+      <Normal> { 0.699728 -0.167882 0.694388 }
+    }
+    <Vertex> 1727 {
+      -0.455264627934 -0.19657291472 0.393932461739
+      <UV>  {
+        0.697377 0.472692
+        <Tangent> { -0.398296 0.089185 -0.912911 }
+        <Binormal> { -0.662204 -0.357475 0.253992 }
+      }
+      <Normal> { 0.545671 -0.759880 0.353191 }
+    }
+    <Vertex> 1728 {
+      -0.38726863265 -0.349639773369 0.174747139215
+      <UV>  {
+        0.696806 0.469646
+        <Tangent> { -0.387488 -0.848376 -0.360709 }
+        <Binormal> { -0.199987 -0.258193 0.822097 }
+      }
+      <Normal> { 0.971282 0.004944 0.237831 }
+    }
+    <Vertex> 1729 {
+      -0.455264627934 -0.19657291472 0.393932461739
+      <UV>  {
+        0.697377 0.472692
+        <Tangent> { -0.398296 0.089185 -0.912911 }
+        <Binormal> { -0.662204 -0.357475 0.253992 }
+      }
+      <Normal> { 0.545671 -0.759880 0.353191 }
+    }
+    <Vertex> 1730 {
+      -0.491538256407 -0.150652855635 0.284991890192
+      <UV>  {
+        0.696978 0.472751
+        <Tangent> { -0.625809 -0.536811 -0.565860 }
+        <Binormal> { -0.347185 -0.131337 0.508563 }
+      }
+      <Normal> { 0.833491 -0.097690 0.543779 }
+    }
+    <Vertex> 1731 {
+      -0.582222700119 -0.196572899818 0.36128616333
+      <UV>  {
+        0.696675 0.473464
+        <Tangent> { -0.849841 -0.525467 -0.040680 }
+        <Binormal> { -0.378027 0.592295 0.246594 }
+      }
+      <Normal> { 0.672689 0.125767 0.729148 }
+    }
+    <Vertex> 1732 {
+      -0.560744404793 -0.298617482185 0.169644922018
+      <UV>  {
+        0.696518 0.472084
+        <Tangent> { -0.515694 -0.363713 -0.775740 }
+        <Binormal> { -0.086165 -0.741640 0.405005 }
+      }
+      <Normal> { 0.994751 -0.083773 0.058229 }
+    }
+    <Vertex> 1733 {
+      -0.491538256407 -0.150652855635 0.284991890192
+      <UV>  {
+        0.696978 0.472751
+        <Tangent> { -0.625809 -0.536811 -0.565860 }
+        <Binormal> { -0.347185 -0.131337 0.508563 }
+      }
+      <Normal> { 0.833491 -0.097690 0.543779 }
+    }
+    <Vertex> 1734 {
+      -0.582222700119 -0.196572899818 0.36128616333
+      <UV>  {
+        0.696675 0.473464
+        <Tangent> { -0.849841 -0.525467 -0.040680 }
+        <Binormal> { -0.378027 0.592295 0.246594 }
+      }
+      <Normal> { 0.672689 0.125767 0.729148 }
+    }
+    <Vertex> 1735 {
+      -0.612477362156 -0.196572899818 0.281484127045
+      <UV>  {
+        0.696829 0.473469
+        <Tangent> { -0.504621 0.070844 -0.860429 }
+        <Binormal> { -0.691743 -0.342469 0.377493 }
+      }
+      <Normal> { 0.526048 -0.821925 0.218299 }
+    }
+    <Vertex> 1736 {
+      -0.560744404793 -0.298617482185 0.169644922018
+      <UV>  {
+        0.696518 0.472084
+        <Tangent> { -0.515694 -0.363713 -0.775740 }
+        <Binormal> { -0.086165 -0.741640 0.405005 }
+      }
+      <Normal> { 0.994751 -0.083773 0.058229 }
+    }
+    <Vertex> 1737 {
+      -0.612477362156 -0.196572899818 0.281484127045
+      <UV>  {
+        0.696829 0.473469
+        <Tangent> { -0.504621 0.070844 -0.860429 }
+        <Binormal> { -0.691743 -0.342469 0.377493 }
+      }
+      <Normal> { 0.526048 -0.821925 0.218299 }
+    }
+    <Vertex> 1738 {
+      -0.61973208189 -0.196572899818 0.100115843117
+      <UV>  {
+        0.696030 0.472901
+        <Tangent> { 0.475553 0.658295 -0.583521 }
+        <Binormal> { -0.785826 0.114040 -0.511771 }
+      }
+      <Normal> { 0.426283 -0.486068 -0.762871 }
+    }
+    <Vertex> 1739 {
+      -0.560744404793 -0.298617482185 0.169644922018
+      <UV>  {
+        0.696518 0.472084
+        <Tangent> { -0.515694 -0.363713 -0.775740 }
+        <Binormal> { -0.086165 -0.741640 0.405005 }
+      }
+      <Normal> { 0.994751 -0.083773 0.058229 }
+    }
+    <Vertex> 1740 {
+      -0.61973208189 -0.196572899818 0.100115843117
+      <UV>  {
+        0.696030 0.472901
+        <Tangent> { 0.475553 0.658295 -0.583521 }
+        <Binormal> { -0.785826 0.114040 -0.511771 }
+      }
+      <Normal> { 0.426283 -0.486068 -0.762871 }
+    }
+    <Vertex> 1741 {
+      -0.504619896412 -0.242492958903 0.118622630835
+      <UV>  {
+        0.696293 0.471069
+        <Tangent> { -0.121929 0.482812 -0.867195 }
+        <Binormal> { -0.385151 -0.613159 -0.287224 }
+      }
+      <Normal> { 0.593951 0.003754 -0.804468 }
+    }
+    <Vertex> 1742 {
+      -0.560744404793 -0.298617482185 0.169644922018
+      <UV>  {
+        0.696518 0.472084
+        <Tangent> { -0.515694 -0.363713 -0.775740 }
+        <Binormal> { -0.086165 -0.741640 0.405005 }
+      }
+      <Normal> { 0.994751 -0.083773 0.058229 }
+    }
+    <Vertex> 1743 {
+      -0.504619896412 -0.242492958903 0.118622630835
+      <UV>  {
+        0.696293 0.471069
+        <Tangent> { -0.121929 0.482812 -0.867195 }
+        <Binormal> { -0.385151 -0.613159 -0.287224 }
+      }
+      <Normal> { 0.593951 0.003754 -0.804468 }
+    }
+    <Vertex> 1744 {
+      -0.491538256407 -0.150652855635 0.284991890192
+      <UV>  {
+        0.696978 0.472751
+        <Tangent> { -0.625809 -0.536811 -0.565860 }
+        <Binormal> { -0.347185 -0.131337 0.508563 }
+      }
+      <Normal> { 0.833491 -0.097690 0.543779 }
+    }
+    <Vertex> 1745 {
+      -0.560744404793 -0.298617482185 0.169644922018
+      <UV>  {
+        0.696518 0.472084
+        <Tangent> { -0.515694 -0.363713 -0.775740 }
+        <Binormal> { -0.086165 -0.741640 0.405005 }
+      }
+      <Normal> { 0.994751 -0.083773 0.058229 }
+    }
+    <Vertex> 1746 {
+      -0.504619896412 -0.242492958903 0.118622630835
+      <UV>  {
+        0.696293 0.471069
+        <Tangent> { -0.121929 0.482812 -0.867195 }
+        <Binormal> { -0.385151 -0.613159 -0.287224 }
+      }
+      <Normal> { 0.593951 0.003754 -0.804468 }
+    }
+    <Vertex> 1747 {
+      -0.38726863265 -0.349639773369 0.174747139215
+      <UV>  {
+        0.696806 0.469646
+        <Tangent> { -0.387488 -0.848376 -0.360709 }
+        <Binormal> { -0.199987 -0.258193 0.822097 }
+      }
+      <Normal> { 0.971282 0.004944 0.237831 }
+    }
+    <Vertex> 1748 {
+      -0.491538256407 -0.150652855635 0.284991890192
+      <UV>  {
+        0.696978 0.472751
+        <Tangent> { -0.625809 -0.536811 -0.565860 }
+        <Binormal> { -0.347185 -0.131337 0.508563 }
+      }
+      <Normal> { 0.833491 -0.097690 0.543779 }
+    }
+    <Vertex> 1749 {
+      -0.504619896412 -0.242492958903 0.118622630835
+      <UV>  {
+        0.696293 0.471069
+        <Tangent> { -0.121929 0.482812 -0.867195 }
+        <Binormal> { -0.385151 -0.613159 -0.287224 }
+      }
+      <Normal> { 0.593951 0.003754 -0.804468 }
+    }
+    <Vertex> 1750 {
+      -0.320939660072 -0.242492973804 0.108418174088
+      <UV>  {
+        0.696342 0.467998
+        <Tangent> { -0.389945 -0.816185 -0.426362 }
+        <Binormal> { 0.687742 -0.556373 0.436065 }
+      }
+      <Normal> { 0.528703 -0.011658 -0.848720 }
+    }
+    <Vertex> 1751 {
+      -0.38726863265 -0.349639773369 0.174747139215
+      <UV>  {
+        0.696806 0.469646
+        <Tangent> { -0.387488 -0.848376 -0.360709 }
+        <Binormal> { -0.199987 -0.258193 0.822097 }
+      }
+      <Normal> { 0.971282 0.004944 0.237831 }
+    }
+    <Vertex> 1752 {
+      -0.320939660072 -0.242492973804 0.108418174088
+      <UV>  {
+        0.696342 0.467998
+        <Tangent> { -0.389945 -0.816185 -0.426362 }
+        <Binormal> { 0.687742 -0.556373 0.436065 }
+      }
+      <Normal> { 0.528703 -0.011658 -0.848720 }
+    }
+    <Vertex> 1753 {
+      -0.319377928972 -0.150652855635 0.284991890192
+      <UV>  {
+        0.696977 0.470353
+        <Tangent> { -0.385231 -0.867692 -0.314177 }
+        <Binormal> { -0.495899 -0.003925 0.618894 }
+      }
+      <Normal> { 0.772881 0.134281 0.620136 }
+    }
+    <Vertex> 1754 {
+      -0.38726863265 -0.349639773369 0.174747139215
+      <UV>  {
+        0.696806 0.469646
+        <Tangent> { -0.387488 -0.848376 -0.360709 }
+        <Binormal> { -0.199987 -0.258193 0.822097 }
+      }
+      <Normal> { 0.971282 0.004944 0.237831 }
+    }
+    <Vertex> 1755 {
+      -0.320939660072 -0.242492973804 0.108418174088
+      <UV>  {
+        0.696342 0.467998
+        <Tangent> { -0.389945 -0.816185 -0.426362 }
+        <Binormal> { 0.687742 -0.556373 0.436065 }
+      }
+      <Normal> { 0.528703 -0.011658 -0.848720 }
+    }
+    <Vertex> 1756 {
+      -0.280121833086 -0.298617482185 0.174747139215
+      <UV>  {
+        0.696621 0.467480
+        <Tangent> { -0.486846 0.257797 -0.834579 }
+        <Binormal> { 0.072495 -0.779925 -0.283204 }
+      }
+      <Normal> { 0.993316 0.055727 0.100803 }
+    }
+    <Vertex> 1757 {
+      -0.319377928972 -0.150652855635 0.284991890192
+      <UV>  {
+        0.696977 0.470353
+        <Tangent> { -0.385231 -0.867692 -0.314177 }
+        <Binormal> { -0.495899 -0.003925 0.618894 }
+      }
+      <Normal> { 0.772881 0.134281 0.620136 }
+    }
+    <Vertex> 1758 {
+      -0.320939660072 -0.242492973804 0.108418174088
+      <UV>  {
+        0.696342 0.467998
+        <Tangent> { -0.389945 -0.816185 -0.426362 }
+        <Binormal> { 0.687742 -0.556373 0.436065 }
+      }
+      <Normal> { 0.528703 -0.011658 -0.848720 }
+    }
+    <Vertex> 1759 {
+      -0.204219028354 -0.19657291472 0.0951332002878
+      <UV>  {
+        0.697726 0.463504
+        <Tangent> { -0.077485 0.510978 -0.856094 }
+        <Binormal> { 0.056359 -0.452122 -0.274960 }
+      }
+      <Normal> { 0.461959 0.502152 -0.731010 }
+    }
+    <Vertex> 1760 {
+      -0.280121833086 -0.298617482185 0.174747139215
+      <UV>  {
+        0.696621 0.467480
+        <Tangent> { -0.486846 0.257797 -0.834579 }
+        <Binormal> { 0.072495 -0.779925 -0.283204 }
+      }
+      <Normal> { 0.993316 0.055727 0.100803 }
+    }
+    <Vertex> 1761 {
+      -0.712077260017 0.431001186371 0.105974189937
+      <UV>  {
+        0.697571 0.477863
+        <Tangent> { 0.236374 0.300707 -0.923960 }
+        <Binormal> { -0.912140 0.353905 -0.118170 }
+      }
+      <Normal> { -0.251381 -0.819727 -0.514603 }
+    }
+    <Vertex> 1762 {
+      -0.746492385864 0.237116500735 0.124482221901
+      <UV>  {
+        0.697071 0.476758
+        <Tangent> { 0.027781 0.141361 -0.989568 }
+        <Binormal> { -0.796835 0.052177 -0.014917 }
+      }
+      <Normal> { -0.032807 -0.703879 -0.709525 }
+    }
+    <Vertex> 1763 {
+      -0.737083911896 0.237116500735 0.359692960978
+      <UV>  {
+        0.697122 0.476968
+        <Tangent> { -0.187068 0.159312 -0.969343 }
+        <Binormal> { -0.813671 0.217365 0.192750 }
+      }
+      <Normal> { -0.147221 -0.904996 0.399091 }
+    }
+    <Vertex> 1764 {
+      -0.737083911896 0.237116500735 0.359692960978
+      <UV>  {
+        0.697122 0.476968
+        <Tangent> { -0.187068 0.159312 -0.969343 }
+        <Binormal> { -0.813671 0.217365 0.192750 }
+      }
+      <Normal> { -0.147221 -0.904996 0.399091 }
+    }
+    <Vertex> 1765 {
+      -0.705314576626 0.431001186371 0.27503284812
+      <UV>  {
+        0.697361 0.478569
+        <Tangent> { -0.114297 0.640262 -0.759606 }
+        <Binormal> { -0.491559 0.292108 0.320179 }
+      }
+      <Normal> { -0.340556 -0.893582 0.292398 }
+    }
+    <Vertex> 1766 {
+      -0.712077260017 0.431001186371 0.105974189937
+      <UV>  {
+        0.697571 0.477863
+        <Tangent> { 0.236374 0.300707 -0.923960 }
+        <Binormal> { -0.912140 0.353905 -0.118170 }
+      }
+      <Normal> { -0.251381 -0.819727 -0.514603 }
+    }
+    <Vertex> 1767 {
+      -0.737083911896 0.237116500735 0.359692960978
+      <UV>  {
+        0.697122 0.476968
+        <Tangent> { -0.187068 0.159312 -0.969343 }
+        <Binormal> { -0.813671 0.217365 0.192750 }
+      }
+      <Normal> { -0.147221 -0.904996 0.399091 }
+    }
+    <Vertex> 1768 {
+      -0.593492150307 0.46671679616 0.410645484924
+      <UV>  {
+        0.697341 0.479709
+        <Tangent> { -0.192313 0.702164 -0.685552 }
+        <Binormal> { 0.083297 0.297878 0.281729 }
+      }
+      <Normal> { -0.227363 -0.634816 0.738426 }
+    }
+    <Vertex> 1769 {
+      -0.705314576626 0.431001186371 0.27503284812
+      <UV>  {
+        0.697361 0.478569
+        <Tangent> { -0.114297 0.640262 -0.759606 }
+        <Binormal> { -0.491559 0.292108 0.320179 }
+      }
+      <Normal> { -0.340556 -0.893582 0.292398 }
+    }
+    <Vertex> 1770 {
+      -0.593492150307 0.46671679616 0.410645484924
+      <UV>  {
+        0.697341 0.479709
+        <Tangent> { -0.192313 0.702164 -0.685552 }
+        <Binormal> { 0.083297 0.297878 0.281729 }
+      }
+      <Normal> { -0.227363 -0.634816 0.738426 }
+    }
+    <Vertex> 1771 {
+      -0.737083911896 0.237116500735 0.359692960978
+      <UV>  {
+        0.697122 0.476968
+        <Tangent> { -0.187068 0.159312 -0.969343 }
+        <Binormal> { -0.813671 0.217365 0.192750 }
+      }
+      <Normal> { -0.147221 -0.904996 0.399091 }
+    }
+    <Vertex> 1772 {
+      -0.602578699589 0.242218732834 0.463187485933
+      <UV>  {
+        0.697299 0.477263
+        <Tangent> { -0.793662 -0.290292 0.534632 }
+        <Binormal> { -0.391003 0.698871 -0.200975 }
+      }
+      <Normal> { -0.132450 0.204779 0.969787 }
+    }
+    <Vertex> 1773 {
+      -0.602578699589 0.242218732834 0.463187485933
+      <UV>  {
+        0.697299 0.477263
+        <Tangent> { -0.793662 -0.290292 0.534632 }
+        <Binormal> { -0.391003 0.698871 -0.200975 }
+      }
+      <Normal> { -0.132450 0.204779 0.969787 }
+    }
+    <Vertex> 1774 {
+      -0.530893027782 0.242218732834 0.397326886654
+      <UV>  {
+        0.697197 0.477546
+        <Tangent> { -0.642190 -0.110361 -0.758559 }
+        <Binormal> { -0.269938 0.739708 0.120909 }
+      }
+      <Normal> { -0.159612 -0.215705 0.963317 }
+    }
+    <Vertex> 1775 {
+      -0.593492150307 0.46671679616 0.410645484924
+      <UV>  {
+        0.697341 0.479709
+        <Tangent> { -0.192313 0.702164 -0.685552 }
+        <Binormal> { 0.083297 0.297878 0.281729 }
+      }
+      <Normal> { -0.227363 -0.634816 0.738426 }
+    }
+    <Vertex> 1776 {
+      -0.530893027782 0.242218732834 0.397326886654
+      <UV>  {
+        0.697197 0.477546
+        <Tangent> { -0.642190 -0.110361 -0.758559 }
+        <Binormal> { -0.269938 0.739708 0.120909 }
+      }
+      <Normal> { -0.159612 -0.215705 0.963317 }
+    }
+    <Vertex> 1777 {
+      -0.4126906991 0.420796722174 0.463023036718
+      <UV>  {
+        0.697085 0.479712
+        <Tangent> { -0.914233 -0.156013 -0.373948 }
+        <Binormal> { -0.185474 0.886830 0.083459 }
+      }
+      <Normal> { 0.060671 -0.080935 0.994842 }
+    }
+    <Vertex> 1778 {
+      -0.593492150307 0.46671679616 0.410645484924
+      <UV>  {
+        0.697341 0.479709
+        <Tangent> { -0.192313 0.702164 -0.685552 }
+        <Binormal> { 0.083297 0.297878 0.281729 }
+      }
+      <Normal> { -0.227363 -0.634816 0.738426 }
+    }
+    <Vertex> 1779 {
+      -0.483850955963 0.242218717933 0.505524992943
+      <UV>  {
+        0.697231 0.477267
+        <Tangent> { -0.464839 -0.154585 -0.871796 }
+        <Binormal> { -0.770133 0.473408 0.326688 }
+      }
+      <Normal> { -0.234046 -0.780633 0.579485 }
+    }
+    <Vertex> 1780 {
+      -0.4126906991 0.420796722174 0.463023036718
+      <UV>  {
+        0.697085 0.479712
+        <Tangent> { -0.914233 -0.156013 -0.373948 }
+        <Binormal> { -0.185474 0.886830 0.083459 }
+      }
+      <Normal> { 0.060671 -0.080935 0.994842 }
+    }
+    <Vertex> 1781 {
+      -0.530893027782 0.242218732834 0.397326886654
+      <UV>  {
+        0.697197 0.477546
+        <Tangent> { -0.642190 -0.110361 -0.758559 }
+        <Binormal> { -0.269938 0.739708 0.120909 }
+      }
+      <Normal> { -0.159612 -0.215705 0.963317 }
+    }
+    <Vertex> 1782 {
+      -0.483850955963 0.242218717933 0.505524992943
+      <UV>  {
+        0.697231 0.477267
+        <Tangent> { -0.464839 -0.154585 -0.871796 }
+        <Binormal> { -0.770133 0.473408 0.326688 }
+      }
+      <Normal> { -0.234046 -0.780633 0.579485 }
+    }
+    <Vertex> 1783 {
+      -0.426675736904 0.242218717933 0.543158948421
+      <UV>  {
+        0.696982 0.477043
+        <Tangent> { -0.929283 -0.192659 0.315144 }
+        <Binormal> { -0.124346 0.804507 0.125160 }
+      }
+      <Normal> { -0.249336 -0.186377 0.950285 }
+    }
+    <Vertex> 1784 {
+      -0.4126906991 0.420796722174 0.463023036718
+      <UV>  {
+        0.697085 0.479712
+        <Tangent> { -0.914233 -0.156013 -0.373948 }
+        <Binormal> { -0.185474 0.886830 0.083459 }
+      }
+      <Normal> { 0.060671 -0.080935 0.994842 }
+    }
+    <Vertex> 1785 {
+      -0.426675736904 0.242218717933 0.543158948421
+      <UV>  {
+        0.696982 0.477043
+        <Tangent> { -0.929283 -0.192659 0.315144 }
+        <Binormal> { -0.124346 0.804507 0.125160 }
+      }
+      <Normal> { -0.249336 -0.186377 0.950285 }
+    }
+    <Vertex> 1786 {
+      -0.336968809366 0.242218717933 0.505524992943
+      <UV>  {
+        0.697009 0.476841
+        <Tangent> { -0.818806 -0.257703 0.512978 }
+        <Binormal> { -0.519181 0.485225 -0.584946 }
+      }
+      <Normal> { -0.221900 0.644551 0.731620 }
+    }
+    <Vertex> 1787 {
+      -0.4126906991 0.420796722174 0.463023036718
+      <UV>  {
+        0.697085 0.479712
+        <Tangent> { -0.914233 -0.156013 -0.373948 }
+        <Binormal> { -0.185474 0.886830 0.083459 }
+      }
+      <Normal> { 0.060671 -0.080935 0.994842 }
+    }
+    <Vertex> 1788 {
+      -0.4126906991 0.420796722174 0.463023036718
+      <UV>  {
+        0.697085 0.479712
+        <Tangent> { -0.914233 -0.156013 -0.373948 }
+        <Binormal> { -0.185474 0.886830 0.083459 }
+      }
+      <Normal> { 0.060671 -0.080935 0.994842 }
+    }
+    <Vertex> 1789 {
+      -0.336968809366 0.242218717933 0.505524992943
+      <UV>  {
+        0.697009 0.476841
+        <Tangent> { -0.818806 -0.257703 0.512978 }
+        <Binormal> { -0.519181 0.485225 -0.584946 }
+      }
+      <Normal> { -0.221900 0.644551 0.731620 }
+    }
+    <Vertex> 1790 {
+      -0.275813698769 0.242218717933 0.397326886654
+      <UV>  {
+        0.697145 0.476668
+        <Tangent> { -0.869925 -0.491697 -0.038262 }
+        <Binormal> { -0.462001 0.839184 -0.280119 }
+      }
+      <Normal> { -0.223487 0.195685 0.954833 }
+    }
+    <Vertex> 1791 {
+      -0.275813698769 0.242218717933 0.397326886654
+      <UV>  {
+        0.697145 0.476668
+        <Tangent> { -0.869925 -0.491697 -0.038262 }
+        <Binormal> { -0.462001 0.839184 -0.280119 }
+      }
+      <Normal> { -0.223487 0.195685 0.954833 }
+    }
+    <Vertex> 1792 {
+      -0.213138252497 0.242218717933 0.455369710922
+      <UV>  {
+        0.697102 0.476050
+        <Tangent> { -0.745350 -0.474885 -0.467908 }
+        <Binormal> { -0.532888 0.812053 0.024697 }
+      }
+      <Normal> { -0.191900 -0.155400 0.969024 }
+    }
+    <Vertex> 1793 {
+      -0.209942504764 0.415694475174 0.385256409645
+      <UV>  {
+        0.697696 0.478470
+        <Tangent> { -0.601943 -0.402807 0.689501 }
+        <Binormal> { -0.672047 0.606580 -0.232341 }
+      }
+      <Normal> { 0.110660 0.460036 0.880947 }
+    }
+    <Vertex> 1794 {
+      -0.209942504764 0.415694475174 0.385256409645
+      <UV>  {
+        0.697696 0.478470
+        <Tangent> { -0.601943 -0.402807 0.689501 }
+        <Binormal> { -0.672047 0.606580 -0.232341 }
+      }
+      <Normal> { 0.110660 0.460036 0.880947 }
+    }
+    <Vertex> 1795 {
+      -0.4126906991 0.420796722174 0.463023036718
+      <UV>  {
+        0.697085 0.479712
+        <Tangent> { -0.914233 -0.156013 -0.373948 }
+        <Binormal> { -0.185474 0.886830 0.083459 }
+      }
+      <Normal> { 0.060671 -0.080935 0.994842 }
+    }
+    <Vertex> 1796 {
+      -0.275813698769 0.242218717933 0.397326886654
+      <UV>  {
+        0.697145 0.476668
+        <Tangent> { -0.869925 -0.491697 -0.038262 }
+        <Binormal> { -0.462001 0.839184 -0.280119 }
+      }
+      <Normal> { -0.223487 0.195685 0.954833 }
+    }
+    <Vertex> 1797 {
+      -0.213138252497 0.242218717933 0.455369710922
+      <UV>  {
+        0.697102 0.476050
+        <Tangent> { -0.745350 -0.474885 -0.467908 }
+        <Binormal> { -0.532888 0.812053 0.024697 }
+      }
+      <Normal> { -0.191900 -0.155400 0.969024 }
+    }
+    <Vertex> 1798 {
+      -0.0982465669513 0.24732093513 0.334254056215
+      <UV>  {
+        0.697740 0.475361
+        <Tangent> { -0.255604 -0.365934 0.894851 }
+        <Binormal> { -0.953255 -0.057432 -0.295773 }
+      }
+      <Normal> { -0.165258 0.920560 0.353862 }
+    }
+    <Vertex> 1799 {
+      -0.209942504764 0.415694475174 0.385256409645
+      <UV>  {
+        0.697696 0.478470
+        <Tangent> { -0.601943 -0.402807 0.689501 }
+        <Binormal> { -0.672047 0.606580 -0.232341 }
+      }
+      <Normal> { 0.110660 0.460036 0.880947 }
+    }
+    <Vertex> 1800 {
+      -0.209942504764 0.415694475174 0.385256409645
+      <UV>  {
+        0.697696 0.478470
+        <Tangent> { -0.601943 -0.402807 0.689501 }
+        <Binormal> { -0.672047 0.606580 -0.232341 }
+      }
+      <Normal> { 0.110660 0.460036 0.880947 }
+    }
+    <Vertex> 1801 {
+      -0.0982465669513 0.24732093513 0.334254056215
+      <UV>  {
+        0.697740 0.475361
+        <Tangent> { -0.255604 -0.365934 0.894851 }
+        <Binormal> { -0.953255 -0.057432 -0.295773 }
+      }
+      <Normal> { -0.165258 0.920560 0.353862 }
+    }
+    <Vertex> 1802 {
+      -0.130393341184 0.425898939371 0.266792804003
+      <UV>  {
+        0.697731 0.477724
+        <Tangent> { 0.151886 -0.485941 0.860693 }
+        <Binormal> { -0.922822 -0.219005 0.039201 }
+      }
+      <Normal> { -0.217200 0.953001 0.211097 }
+    }
+    <Vertex> 1803 {
+      -0.0982465669513 0.24732093513 0.334254056215
+      <UV>  {
+        0.697740 0.475361
+        <Tangent> { -0.255604 -0.365934 0.894851 }
+        <Binormal> { -0.953255 -0.057432 -0.295773 }
+      }
+      <Normal> { -0.165258 0.920560 0.353862 }
+    }
+    <Vertex> 1804 {
+      -0.123631261289 0.425898939371 0.11802098155
+      <UV>  {
+        0.697793 0.476953
+        <Tangent> { 0.156108 -0.486067 0.859866 }
+        <Binormal> { -0.506685 -0.152010 0.006060 }
+      }
+      <Normal> { -0.260231 0.849086 -0.459639 }
+    }
+    <Vertex> 1805 {
+      -0.130393341184 0.425898939371 0.266792804003
+      <UV>  {
+        0.697731 0.477724
+        <Tangent> { 0.151886 -0.485941 0.860693 }
+        <Binormal> { -0.922822 -0.219005 0.039201 }
+      }
+      <Normal> { -0.217200 0.953001 0.211097 }
+    }
+    <Vertex> 1806 {
+      -0.0982465669513 0.24732093513 0.334254056215
+      <UV>  {
+        0.697740 0.475361
+        <Tangent> { -0.255604 -0.365934 0.894851 }
+        <Binormal> { -0.953255 -0.057432 -0.295773 }
+      }
+      <Normal> { -0.165258 0.920560 0.353862 }
+    }
+    <Vertex> 1807 {
+      -0.0888380855322 0.24732093513 0.1272675246
+      <UV>  {
+        0.698290 0.474646
+        <Tangent> { 0.958863 0.088479 0.269727 }
+        <Binormal> { -0.253339 0.651689 0.686834 }
+      }
+      <Normal> { -0.075076 0.709372 -0.700766 }
+    }
+    <Vertex> 1808 {
+      -0.123631261289 0.425898939371 0.11802098155
+      <UV>  {
+        0.697793 0.476953
+        <Tangent> { 0.156108 -0.486067 0.859866 }
+        <Binormal> { -0.506685 -0.152010 0.006060 }
+      }
+      <Normal> { -0.260231 0.849086 -0.459639 }
+    }
+    <Vertex> 1809 {
+      -0.705314576626 0.431001186371 0.27503284812
+      <UV>  {
+        0.697361 0.478569
+        <Tangent> { -0.114297 0.640262 -0.759606 }
+        <Binormal> { -0.491559 0.292108 0.320179 }
+      }
+      <Normal> { -0.340556 -0.893582 0.292398 }
+    }
+    <Vertex> 1810 {
+      -0.621971130371 0.655499219894 0.215564966202
+      <UV>  {
+        0.697320 0.479769
+        <Tangent> { 0.140538 0.679929 -0.719685 }
+        <Binormal> { -0.596190 0.341168 0.205900 }
+      }
+      <Normal> { -0.483474 -0.873989 0.048250 }
+    }
+    <Vertex> 1811 {
+      -0.712077260017 0.431001186371 0.105974189937
+      <UV>  {
+        0.697571 0.477863
+        <Tangent> { 0.236374 0.300707 -0.923960 }
+        <Binormal> { -0.912140 0.353905 -0.118170 }
+      }
+      <Normal> { -0.251381 -0.819727 -0.514603 }
+    }
+    <Vertex> 1812 {
+      -0.621971130371 0.655499219894 0.215564966202
+      <UV>  {
+        0.697320 0.479769
+        <Tangent> { 0.140538 0.679929 -0.719685 }
+        <Binormal> { -0.596190 0.341168 0.205900 }
+      }
+      <Normal> { -0.483474 -0.873989 0.048250 }
+    }
+    <Vertex> 1813 {
+      -0.705314576626 0.431001186371 0.27503284812
+      <UV>  {
+        0.697361 0.478569
+        <Tangent> { -0.114297 0.640262 -0.759606 }
+        <Binormal> { -0.491559 0.292108 0.320179 }
+      }
+      <Normal> { -0.340556 -0.893582 0.292398 }
+    }
+    <Vertex> 1814 {
+      -0.593492150307 0.46671679616 0.410645484924
+      <UV>  {
+        0.697341 0.479709
+        <Tangent> { -0.192313 0.702164 -0.685552 }
+        <Binormal> { 0.083297 0.297878 0.281729 }
+      }
+      <Normal> { -0.227363 -0.634816 0.738426 }
+    }
+    <Vertex> 1815 {
+      -0.712077260017 0.431001186371 0.105974189937
+      <UV>  {
+        0.697571 0.477863
+        <Tangent> { 0.236374 0.300707 -0.923960 }
+        <Binormal> { -0.912140 0.353905 -0.118170 }
+      }
+      <Normal> { -0.251381 -0.819727 -0.514603 }
+    }
+    <Vertex> 1816 {
+      -0.621971130371 0.655499219894 0.215564966202
+      <UV>  {
+        0.697320 0.479769
+        <Tangent> { 0.140538 0.679929 -0.719685 }
+        <Binormal> { -0.596190 0.341168 0.205900 }
+      }
+      <Normal> { -0.483474 -0.873989 0.048250 }
+    }
+    <Vertex> 1817 {
+      -0.460573256016 0.85201472044 0.123724862933
+      <UV>  {
+        0.697663 0.480198
+        <Tangent> { 0.957802 0.236952 -0.162692 }
+        <Binormal> { -0.242759 0.802286 -0.260689 }
+      }
+      <Normal> { -0.527451 -0.402661 -0.748039 }
+    }
+    <Vertex> 1818 {
+      -0.593492150307 0.46671679616 0.410645484924
+      <UV>  {
+        0.697341 0.479709
+        <Tangent> { -0.192313 0.702164 -0.685552 }
+        <Binormal> { 0.083297 0.297878 0.281729 }
+      }
+      <Normal> { -0.227363 -0.634816 0.738426 }
+    }
+    <Vertex> 1819 {
+      -0.525028765202 0.844281673431 0.389040738344
+      <UV>  {
+        0.697983 0.481723
+        <Tangent> { 0.453793 0.637171 -0.622965 }
+        <Binormal> { 0.011434 0.191313 0.204005 }
+      }
+      <Normal> { -0.684805 -0.511979 0.518509 }
+    }
+    <Vertex> 1820 {
+      -0.621971130371 0.655499219894 0.215564966202
+      <UV>  {
+        0.697320 0.479769
+        <Tangent> { 0.140538 0.679929 -0.719685 }
+        <Binormal> { -0.596190 0.341168 0.205900 }
+      }
+      <Normal> { -0.483474 -0.873989 0.048250 }
+    }
+    <Vertex> 1821 {
+      -0.40767750144 0.910610616207 0.225769430399
+      <UV>  {
+        0.697769 0.481170
+        <Tangent> { 0.987119 -0.158764 0.019764 }
+        <Binormal> { 0.021912 0.115505 -0.166541 }
+      }
+      <Normal> { -0.990539 -0.009400 -0.136845 }
+    }
+    <Vertex> 1822 {
+      -0.460573256016 0.85201472044 0.123724862933
+      <UV>  {
+        0.697663 0.480198
+        <Tangent> { 0.957802 0.236952 -0.162692 }
+        <Binormal> { -0.242759 0.802286 -0.260689 }
+      }
+      <Normal> { -0.527451 -0.402661 -0.748039 }
+    }
+    <Vertex> 1823 {
+      -0.621971130371 0.655499219894 0.215564966202
+      <UV>  {
+        0.697320 0.479769
+        <Tangent> { 0.140538 0.679929 -0.719685 }
+        <Binormal> { -0.596190 0.341168 0.205900 }
+      }
+      <Normal> { -0.483474 -0.873989 0.048250 }
+    }
+    <Vertex> 1824 {
+      -0.525028765202 0.844281673431 0.389040738344
+      <UV>  {
+        0.697983 0.481723
+        <Tangent> { 0.453793 0.637171 -0.622965 }
+        <Binormal> { 0.011434 0.191313 0.204005 }
+      }
+      <Normal> { -0.684805 -0.511979 0.518509 }
+    }
+    <Vertex> 1825 {
+      -0.40767750144 0.910610616207 0.225769430399
+      <UV>  {
+        0.697769 0.481170
+        <Tangent> { 0.987119 -0.158764 0.019764 }
+        <Binormal> { 0.021912 0.115505 -0.166541 }
+      }
+      <Normal> { -0.990539 -0.009400 -0.136845 }
+    }
+    <Vertex> 1826 {
+      -0.621971130371 0.655499219894 0.215564966202
+      <UV>  {
+        0.697320 0.479769
+        <Tangent> { 0.140538 0.679929 -0.719685 }
+        <Binormal> { -0.596190 0.341168 0.205900 }
+      }
+      <Normal> { -0.483474 -0.873989 0.048250 }
+    }
+    <Vertex> 1827 {
+      -0.40767750144 0.910610616207 0.225769430399
+      <UV>  {
+        0.697769 0.481170
+        <Tangent> { 0.987119 -0.158764 0.019764 }
+        <Binormal> { 0.021912 0.115505 -0.166541 }
+      }
+      <Normal> { -0.990539 -0.009400 -0.136845 }
+    }
+    <Vertex> 1828 {
+      -0.33947506547 0.856957495213 0.123724862933
+      <UV>  {
+        0.697569 0.480250
+        <Tangent> { 0.737804 -0.468671 0.485790 }
+        <Binormal> { 0.101359 0.250774 0.087996 }
+      }
+      <Normal> { -0.544237 0.464980 -0.698233 }
+    }
+    <Vertex> 1829 {
+      -0.460573256016 0.85201472044 0.123724862933
+      <UV>  {
+        0.697663 0.480198
+        <Tangent> { 0.957802 0.236952 -0.162692 }
+        <Binormal> { -0.242759 0.802286 -0.260689 }
+      }
+      <Normal> { -0.527451 -0.402661 -0.748039 }
+    }
+    <Vertex> 1830 {
+      -0.123631261289 0.425898939371 0.11802098155
+      <UV>  {
+        0.697793 0.476953
+        <Tangent> { 0.156108 -0.486067 0.859866 }
+        <Binormal> { -0.506685 -0.152010 0.006060 }
+      }
+      <Normal> { -0.260231 0.849086 -0.459639 }
+    }
+    <Vertex> 1831 {
+      -0.213800624013 0.639301896095 0.235973879695
+      <UV>  {
+        0.697587 0.479521
+        <Tangent> { 0.158128 -0.488315 0.858221 }
+        <Binormal> { -0.716496 -0.384834 -0.086950 }
+      }
+      <Normal> { -0.463698 0.882077 -0.082980 }
+    }
+    <Vertex> 1832 {
+      -0.130393341184 0.425898939371 0.266792804003
+      <UV>  {
+        0.697731 0.477724
+        <Tangent> { 0.151886 -0.485941 0.860693 }
+        <Binormal> { -0.922822 -0.219005 0.039201 }
+      }
+      <Normal> { -0.217200 0.953001 0.211097 }
+    }
+    <Vertex> 1833 {
+      -0.213800624013 0.639301896095 0.235973879695
+      <UV>  {
+        0.697587 0.479521
+        <Tangent> { 0.158128 -0.488315 0.858221 }
+        <Binormal> { -0.716496 -0.384834 -0.086950 }
+      }
+      <Normal> { -0.463698 0.882077 -0.082980 }
+    }
+    <Vertex> 1834 {
+      -0.123631261289 0.425898939371 0.11802098155
+      <UV>  {
+        0.697793 0.476953
+        <Tangent> { 0.156108 -0.486067 0.859866 }
+        <Binormal> { -0.506685 -0.152010 0.006060 }
+      }
+      <Normal> { -0.260231 0.849086 -0.459639 }
+    }
+    <Vertex> 1835 {
+      -0.33947506547 0.856957495213 0.123724862933
+      <UV>  {
+        0.697569 0.480250
+        <Tangent> { 0.737804 -0.468671 0.485790 }
+        <Binormal> { 0.101359 0.250774 0.087996 }
+      }
+      <Normal> { -0.544237 0.464980 -0.698233 }
+    }
+    <Vertex> 1836 {
+      -0.213800624013 0.639301896095 0.235973879695
+      <UV>  {
+        0.697587 0.479521
+        <Tangent> { 0.158128 -0.488315 0.858221 }
+        <Binormal> { -0.716496 -0.384834 -0.086950 }
+      }
+      <Normal> { -0.463698 0.882077 -0.082980 }
+    }
+    <Vertex> 1837 {
+      -0.40767750144 0.910610616207 0.225769430399
+      <UV>  {
+        0.697769 0.481170
+        <Tangent> { 0.987119 -0.158764 0.019764 }
+        <Binormal> { 0.021912 0.115505 -0.166541 }
+      }
+      <Normal> { -0.990539 -0.009400 -0.136845 }
+    }
+    <Vertex> 1838 {
+      -0.275019556284 0.854486107826 0.389040738344
+      <UV>  {
+        0.697869 0.482399
+        <Tangent> { 0.750778 -0.564614 0.342845 }
+        <Binormal> { -0.361741 -0.427561 0.088030 }
+      }
+      <Normal> { -0.715323 0.655202 0.242836 }
+    }
+    <Vertex> 1839 {
+      -0.40767750144 0.910610616207 0.225769430399
+      <UV>  {
+        0.697769 0.481170
+        <Tangent> { 0.987119 -0.158764 0.019764 }
+        <Binormal> { 0.021912 0.115505 -0.166541 }
+      }
+      <Normal> { -0.990539 -0.009400 -0.136845 }
+    }
+    <Vertex> 1840 {
+      -0.213800624013 0.639301896095 0.235973879695
+      <UV>  {
+        0.697587 0.479521
+        <Tangent> { 0.158128 -0.488315 0.858221 }
+        <Binormal> { -0.716496 -0.384834 -0.086950 }
+      }
+      <Normal> { -0.463698 0.882077 -0.082980 }
+    }
+    <Vertex> 1841 {
+      -0.33947506547 0.856957495213 0.123724862933
+      <UV>  {
+        0.697569 0.480250
+        <Tangent> { 0.737804 -0.468671 0.485790 }
+        <Binormal> { 0.101359 0.250774 0.087996 }
+      }
+      <Normal> { -0.544237 0.464980 -0.698233 }
+    }
+    <Vertex> 1842 {
+      -0.213800624013 0.639301896095 0.235973879695
+      <UV>  {
+        0.697587 0.479521
+        <Tangent> { 0.158128 -0.488315 0.858221 }
+        <Binormal> { -0.716496 -0.384834 -0.086950 }
+      }
+      <Normal> { -0.463698 0.882077 -0.082980 }
+    }
+    <Vertex> 1843 {
+      -0.275019556284 0.854486107826 0.389040738344
+      <UV>  {
+        0.697869 0.482399
+        <Tangent> { 0.750778 -0.564614 0.342845 }
+        <Binormal> { -0.361741 -0.427561 0.088030 }
+      }
+      <Normal> { -0.715323 0.655202 0.242836 }
+    }
+    <Vertex> 1844 {
+      -0.130393341184 0.425898939371 0.266792804003
+      <UV>  {
+        0.697731 0.477724
+        <Tangent> { 0.151886 -0.485941 0.860693 }
+        <Binormal> { -0.922822 -0.219005 0.039201 }
+      }
+      <Normal> { -0.217200 0.953001 0.211097 }
+    }
+    <Vertex> 1845 {
+      -0.40767750144 0.910610616207 0.225769430399
+      <UV>  {
+        0.697769 0.481170
+        <Tangent> { 0.987119 -0.158764 0.019764 }
+        <Binormal> { 0.021912 0.115505 -0.166541 }
+      }
+      <Normal> { -0.990539 -0.009400 -0.136845 }
+    }
+    <Vertex> 1846 {
+      -0.525028765202 0.844281673431 0.389040738344
+      <UV>  {
+        0.697983 0.481723
+        <Tangent> { 0.453793 0.637171 -0.622965 }
+        <Binormal> { 0.011434 0.191313 0.204005 }
+      }
+      <Normal> { -0.684805 -0.511979 0.518509 }
+    }
+    <Vertex> 1847 {
+      -0.275019556284 0.854486107826 0.389040738344
+      <UV>  {
+        0.697869 0.482399
+        <Tangent> { 0.750778 -0.564614 0.342845 }
+        <Binormal> { -0.361741 -0.427561 0.088030 }
+      }
+      <Normal> { -0.715323 0.655202 0.242836 }
+    }
+    <Vertex> 1848 {
+      -0.230284139514 0.614681363106 0.536179482937
+      <UV>  {
+        0.696980 0.483757
+        <Tangent> { -0.452695 -0.607006 0.653155 }
+        <Binormal> { -0.812927 0.155672 -0.418758 }
+      }
+      <Normal> { 0.016602 0.947295 0.319926 }
+    }
+    <Vertex> 1849 {
+      -0.275019556284 0.854486107826 0.389040738344
+      <UV>  {
+        0.697869 0.482399
+        <Tangent> { 0.750778 -0.564614 0.342845 }
+        <Binormal> { -0.361741 -0.427561 0.088030 }
+      }
+      <Normal> { -0.715323 0.655202 0.242836 }
+    }
+    <Vertex> 1850 {
+      -0.323523133993 0.793259382248 0.480152130127
+      <UV>  {
+        0.698181 0.483636
+        <Tangent> { 0.997700 0.055621 -0.038744 }
+        <Binormal> { 0.031186 -0.384414 0.251207 }
+      }
+      <Normal> { -0.884793 0.202460 0.419660 }
+    }
+    <Vertex> 1851 {
+      -0.275019556284 0.854486107826 0.389040738344
+      <UV>  {
+        0.697869 0.482399
+        <Tangent> { 0.750778 -0.564614 0.342845 }
+        <Binormal> { -0.361741 -0.427561 0.088030 }
+      }
+      <Normal> { -0.715323 0.655202 0.242836 }
+    }
+    <Vertex> 1852 {
+      -0.230284139514 0.614681363106 0.536179482937
+      <UV>  {
+        0.696980 0.483757
+        <Tangent> { -0.452695 -0.607006 0.653155 }
+        <Binormal> { -0.812927 0.155672 -0.418758 }
+      }
+      <Normal> { 0.016602 0.947295 0.319926 }
+    }
+    <Vertex> 1853 {
+      -0.130393341184 0.425898939371 0.266792804003
+      <UV>  {
+        0.697731 0.477724
+        <Tangent> { 0.151886 -0.485941 0.860693 }
+        <Binormal> { -0.922822 -0.219005 0.039201 }
+      }
+      <Normal> { -0.217200 0.953001 0.211097 }
+    }
+    <Vertex> 1854 {
+      -0.230284139514 0.614681363106 0.536179482937
+      <UV>  {
+        0.696980 0.483757
+        <Tangent> { -0.452695 -0.607006 0.653155 }
+        <Binormal> { -0.812927 0.155672 -0.418758 }
+      }
+      <Normal> { 0.016602 0.947295 0.319926 }
+    }
+    <Vertex> 1855 {
+      -0.209942504764 0.415694475174 0.385256409645
+      <UV>  {
+        0.697696 0.478470
+        <Tangent> { -0.601943 -0.402807 0.689501 }
+        <Binormal> { -0.672047 0.606580 -0.232341 }
+      }
+      <Normal> { 0.110660 0.460036 0.880947 }
+    }
+    <Vertex> 1856 {
+      -0.130393341184 0.425898939371 0.266792804003
+      <UV>  {
+        0.697731 0.477724
+        <Tangent> { 0.151886 -0.485941 0.860693 }
+        <Binormal> { -0.922822 -0.219005 0.039201 }
+      }
+      <Normal> { -0.217200 0.953001 0.211097 }
+    }
+    <Vertex> 1857 {
+      -0.275019556284 0.854486107826 0.389040738344
+      <UV>  {
+        0.697869 0.482399
+        <Tangent> { 0.750778 -0.564614 0.342845 }
+        <Binormal> { -0.361741 -0.427561 0.088030 }
+      }
+      <Normal> { -0.715323 0.655202 0.242836 }
+    }
+    <Vertex> 1858 {
+      -0.525028765202 0.844281673431 0.389040738344
+      <UV>  {
+        0.697983 0.481723
+        <Tangent> { 0.453793 0.637171 -0.622965 }
+        <Binormal> { 0.011434 0.191313 0.204005 }
+      }
+      <Normal> { -0.684805 -0.511979 0.518509 }
+    }
+    <Vertex> 1859 {
+      -0.323523133993 0.793259382248 0.480152130127
+      <UV>  {
+        0.698181 0.483636
+        <Tangent> { 0.997700 0.055621 -0.038744 }
+        <Binormal> { 0.031186 -0.384414 0.251207 }
+      }
+      <Normal> { -0.884793 0.202460 0.419660 }
+    }
+    <Vertex> 1860 {
+      -0.428163349628 0.772850453854 0.469460636377
+      <UV>  {
+        0.698011 0.483521
+        <Tangent> { 0.579883 0.792559 -0.188642 }
+        <Binormal> { -0.009542 0.048718 0.175350 }
+      }
+      <Normal> { -0.718314 -0.679373 0.149663 }
+    }
+    <Vertex> 1861 {
+      -0.323523133993 0.793259382248 0.480152130127
+      <UV>  {
+        0.698181 0.483636
+        <Tangent> { 0.997700 0.055621 -0.038744 }
+        <Binormal> { 0.031186 -0.384414 0.251207 }
+      }
+      <Normal> { -0.884793 0.202460 0.419660 }
+    }
+    <Vertex> 1862 {
+      -0.525028765202 0.844281673431 0.389040738344
+      <UV>  {
+        0.697983 0.481723
+        <Tangent> { 0.453793 0.637171 -0.622965 }
+        <Binormal> { 0.011434 0.191313 0.204005 }
+      }
+      <Normal> { -0.684805 -0.511979 0.518509 }
+    }
+    <Vertex> 1863 {
+      -0.593492150307 0.46671679616 0.410645484924
+      <UV>  {
+        0.697341 0.479709
+        <Tangent> { -0.192313 0.702164 -0.685552 }
+        <Binormal> { 0.083297 0.297878 0.281729 }
+      }
+      <Normal> { -0.227363 -0.634816 0.738426 }
+    }
+    <Vertex> 1864 {
+      -0.428163349628 0.772850453854 0.469460636377
+      <UV>  {
+        0.698011 0.483521
+        <Tangent> { 0.579883 0.792559 -0.188642 }
+        <Binormal> { -0.009542 0.048718 0.175350 }
+      }
+      <Normal> { -0.718314 -0.679373 0.149663 }
+    }
+    <Vertex> 1865 {
+      -0.525028765202 0.844281673431 0.389040738344
+      <UV>  {
+        0.697983 0.481723
+        <Tangent> { 0.453793 0.637171 -0.622965 }
+        <Binormal> { 0.011434 0.191313 0.204005 }
+      }
+      <Normal> { -0.684805 -0.511979 0.518509 }
+    }
+    <Vertex> 1866 {
+      -0.428163349628 0.772850453854 0.469460636377
+      <UV>  {
+        0.698011 0.483521
+        <Tangent> { 0.579883 0.792559 -0.188642 }
+        <Binormal> { -0.009542 0.048718 0.175350 }
+      }
+      <Normal> { -0.718314 -0.679373 0.149663 }
+    }
+    <Vertex> 1867 {
+      -0.593492150307 0.46671679616 0.410645484924
+      <UV>  {
+        0.697341 0.479709
+        <Tangent> { -0.192313 0.702164 -0.685552 }
+        <Binormal> { 0.083297 0.297878 0.281729 }
+      }
+      <Normal> { -0.227363 -0.634816 0.738426 }
+    }
+    <Vertex> 1868 {
+      -0.558427393436 0.594272494316 0.461545705795
+      <UV>  {
+        0.697933 0.482631
+        <Tangent> { 0.510930 0.838562 -0.189115 }
+        <Binormal> { -0.112229 -0.096416 -0.730727 }
+      }
+      <Normal> { 0.290506 -0.953398 0.081179 }
+    }
+    <Vertex> 1869 {
+      -0.593492150307 0.46671679616 0.410645484924
+      <UV>  {
+        0.697341 0.479709
+        <Tangent> { -0.192313 0.702164 -0.685552 }
+        <Binormal> { 0.083297 0.297878 0.281729 }
+      }
+      <Normal> { -0.227363 -0.634816 0.738426 }
+    }
+    <Vertex> 1870 {
+      -0.4126906991 0.420796722174 0.463023036718
+      <UV>  {
+        0.697085 0.479712
+        <Tangent> { -0.914233 -0.156013 -0.373948 }
+        <Binormal> { -0.185474 0.886830 0.083459 }
+      }
+      <Normal> { 0.060671 -0.080935 0.994842 }
+    }
+    <Vertex> 1871 {
+      -0.558427393436 0.594272494316 0.461545705795
+      <UV>  {
+        0.697933 0.482631
+        <Tangent> { 0.510930 0.838562 -0.189115 }
+        <Binormal> { -0.112229 -0.096416 -0.730727 }
+      }
+      <Normal> { 0.290506 -0.953398 0.081179 }
+    }
+    <Vertex> 1872 {
+      -0.558427393436 0.594272494316 0.461545705795
+      <UV>  {
+        0.697933 0.482631
+        <Tangent> { 0.510930 0.838562 -0.189115 }
+        <Binormal> { -0.112229 -0.096416 -0.730727 }
+      }
+      <Normal> { 0.290506 -0.953398 0.081179 }
+    }
+    <Vertex> 1873 {
+      -0.4126906991 0.420796722174 0.463023036718
+      <UV>  {
+        0.697085 0.479712
+        <Tangent> { -0.914233 -0.156013 -0.373948 }
+        <Binormal> { -0.185474 0.886830 0.083459 }
+      }
+      <Normal> { 0.060671 -0.080935 0.994842 }
+    }
+    <Vertex> 1874 {
+      -0.42219632864 0.502432346344 0.514488816261
+      <UV>  {
+        0.696764 0.482340
+        <Tangent> { -0.997984 -0.061496 0.015681 }
+        <Binormal> { -0.010791 0.256207 0.318024 }
+      }
+      <Normal> { 0.934446 -0.261086 0.242042 }
+    }
+    <Vertex> 1875 {
+      -0.4126906991 0.420796722174 0.463023036718
+      <UV>  {
+        0.697085 0.479712
+        <Tangent> { -0.914233 -0.156013 -0.373948 }
+        <Binormal> { -0.185474 0.886830 0.083459 }
+      }
+      <Normal> { 0.060671 -0.080935 0.994842 }
+    }
+    <Vertex> 1876 {
+      -0.325014829636 0.512636840343 0.500784039497
+      <UV>  {
+        0.696718 0.482081
+        <Tangent> { -0.972848 -0.197384 0.120859 }
+        <Binormal> { -0.101793 0.401115 -0.164283 }
+      }
+      <Normal> { 0.887112 0.348857 0.302103 }
+    }
+    <Vertex> 1877 {
+      -0.42219632864 0.502432346344 0.514488816261
+      <UV>  {
+        0.696764 0.482340
+        <Tangent> { -0.997984 -0.061496 0.015681 }
+        <Binormal> { -0.010791 0.256207 0.318024 }
+      }
+      <Normal> { 0.934446 -0.261086 0.242042 }
+    }
+    <Vertex> 1878 {
+      -0.209942504764 0.415694475174 0.385256409645
+      <UV>  {
+        0.697696 0.478470
+        <Tangent> { -0.601943 -0.402807 0.689501 }
+        <Binormal> { -0.672047 0.606580 -0.232341 }
+      }
+      <Normal> { 0.110660 0.460036 0.880947 }
+    }
+    <Vertex> 1879 {
+      -0.230284139514 0.614681363106 0.536179482937
+      <UV>  {
+        0.696980 0.483757
+        <Tangent> { -0.452695 -0.607006 0.653155 }
+        <Binormal> { -0.812927 0.155672 -0.418758 }
+      }
+      <Normal> { 0.016602 0.947295 0.319926 }
+    }
+    <Vertex> 1880 {
+      -0.325014829636 0.512636840343 0.500784039497
+      <UV>  {
+        0.696718 0.482081
+        <Tangent> { -0.972848 -0.197384 0.120859 }
+        <Binormal> { -0.101793 0.401115 -0.164283 }
+      }
+      <Normal> { 0.887112 0.348857 0.302103 }
+    }
+    <Vertex> 1881 {
+      -0.325014829636 0.512636840343 0.500784039497
+      <UV>  {
+        0.696718 0.482081
+        <Tangent> { -0.972848 -0.197384 0.120859 }
+        <Binormal> { -0.101793 0.401115 -0.164283 }
+      }
+      <Normal> { 0.887112 0.348857 0.302103 }
+    }
+    <Vertex> 1882 {
+      -0.4126906991 0.420796722174 0.463023036718
+      <UV>  {
+        0.697085 0.479712
+        <Tangent> { -0.914233 -0.156013 -0.373948 }
+        <Binormal> { -0.185474 0.886830 0.083459 }
+      }
+      <Normal> { 0.060671 -0.080935 0.994842 }
+    }
+    <Vertex> 1883 {
+      -0.209942504764 0.415694475174 0.385256409645
+      <UV>  {
+        0.697696 0.478470
+        <Tangent> { -0.601943 -0.402807 0.689501 }
+        <Binormal> { -0.672047 0.606580 -0.232341 }
+      }
+      <Normal> { 0.110660 0.460036 0.880947 }
+    }
+    <Vertex> 1884 {
+      -0.61973208189 -0.196572899818 0.100115843117
+      <UV>  {
+        0.696030 0.472901
+        <Tangent> { 0.475553 0.658295 -0.583521 }
+        <Binormal> { -0.785826 0.114040 -0.511771 }
+      }
+      <Normal> { 0.426283 -0.486068 -0.762871 }
+    }
+    <Vertex> 1885 {
+      -0.744424641132 0.0228229220957 0.118622630835
+      <UV>  {
+        0.696493 0.475139
+        <Tangent> { 0.030538 0.143487 -0.989181 }
+        <Binormal> { -0.928313 -0.198956 -0.057519 }
+      }
+      <Normal> { 0.214484 -0.875729 -0.432508 }
+    }
+    <Vertex> 1886 {
+      -0.41277974844 0.359569966793 0.133929312229
+      <UV>  {
+        0.697963 0.477146
+        <Tangent> { 0.976377 0.216056 -0.002841 }
+        <Binormal> { -0.216026 0.976333 0.007070 }
+      }
+      <Normal> { -0.005554 0.006012 -0.999939 }
+    }
+    <Vertex> 1887 {
+      -0.41277974844 0.359569966793 0.133929312229
+      <UV>  {
+        0.697963 0.477146
+        <Tangent> { 0.976377 0.216056 -0.002841 }
+        <Binormal> { -0.216026 0.976333 0.007070 }
+      }
+      <Normal> { -0.005554 0.006012 -0.999939 }
+    }
+    <Vertex> 1888 {
+      -0.504619896412 -0.242492958903 0.118622630835
+      <UV>  {
+        0.696293 0.471069
+        <Tangent> { -0.121929 0.482812 -0.867195 }
+        <Binormal> { -0.385151 -0.613159 -0.287224 }
+      }
+      <Normal> { 0.593951 0.003754 -0.804468 }
+    }
+    <Vertex> 1889 {
+      -0.61973208189 -0.196572899818 0.100115843117
+      <UV>  {
+        0.696030 0.472901
+        <Tangent> { 0.475553 0.658295 -0.583521 }
+        <Binormal> { -0.785826 0.114040 -0.511771 }
+      }
+      <Normal> { 0.426283 -0.486068 -0.762871 }
+    }
+    <Vertex> 1890 {
+      -0.41277974844 0.359569966793 0.133929312229
+      <UV>  {
+        0.697963 0.477146
+        <Tangent> { 0.976377 0.216056 -0.002841 }
+        <Binormal> { -0.216026 0.976333 0.007070 }
+      }
+      <Normal> { -0.005554 0.006012 -0.999939 }
+    }
+    <Vertex> 1891 {
+      -0.320939660072 -0.242492973804 0.108418174088
+      <UV>  {
+        0.696342 0.467998
+        <Tangent> { -0.389945 -0.816185 -0.426362 }
+        <Binormal> { 0.687742 -0.556373 0.436065 }
+      }
+      <Normal> { 0.528703 -0.011658 -0.848720 }
+    }
+    <Vertex> 1892 {
+      -0.504619896412 -0.242492958903 0.118622630835
+      <UV>  {
+        0.696293 0.471069
+        <Tangent> { -0.121929 0.482812 -0.867195 }
+        <Binormal> { -0.385151 -0.613159 -0.287224 }
+      }
+      <Normal> { 0.593951 0.003754 -0.804468 }
+    }
+    <Vertex> 1893 {
+      -0.204219028354 -0.19657291472 0.0951332002878
+      <UV>  {
+        0.697726 0.463504
+        <Tangent> { -0.077485 0.510978 -0.856094 }
+        <Binormal> { 0.056359 -0.452122 -0.274960 }
+      }
+      <Normal> { 0.461959 0.502152 -0.731010 }
+    }
+    <Vertex> 1894 {
+      -0.320939660072 -0.242492973804 0.108418174088
+      <UV>  {
+        0.696342 0.467998
+        <Tangent> { -0.389945 -0.816185 -0.426362 }
+        <Binormal> { 0.687742 -0.556373 0.436065 }
+      }
+      <Normal> { 0.528703 -0.011658 -0.848720 }
+    }
+    <Vertex> 1895 {
+      -0.41277974844 0.359569966793 0.133929312229
+      <UV>  {
+        0.697963 0.477146
+        <Tangent> { 0.976377 0.216056 -0.002841 }
+        <Binormal> { -0.216026 0.976333 0.007070 }
+      }
+      <Normal> { -0.005554 0.006012 -0.999939 }
+    }
+    <Vertex> 1896 {
+      -0.41277974844 0.359569966793 0.133929312229
+      <UV>  {
+        0.697963 0.477146
+        <Tangent> { 0.976377 0.216056 -0.002841 }
+        <Binormal> { -0.216026 0.976333 0.007070 }
+      }
+      <Normal> { -0.005554 0.006012 -0.999939 }
+    }
+    <Vertex> 1897 {
+      -0.0811349228024 0.022822894156 0.118622630835
+      <UV>  {
+        0.698519 0.470419
+        <Tangent> { 0.879746 -0.190019 0.435820 }
+        <Binormal> { -0.303957 0.458138 0.813316 }
+      }
+      <Normal> { 0.186895 0.884121 -0.428175 }
+    }
+    <Vertex> 1898 {
+      -0.204219028354 -0.19657291472 0.0951332002878
+      <UV>  {
+        0.697726 0.463504
+        <Tangent> { -0.077485 0.510978 -0.856094 }
+        <Binormal> { 0.056359 -0.452122 -0.274960 }
+      }
+      <Normal> { 0.461959 0.502152 -0.731010 }
+    }
+    <Vertex> 1899 {
+      -0.0888380855322 0.24732093513 0.1272675246
+      <UV>  {
+        0.698290 0.474646
+        <Tangent> { 0.958863 0.088479 0.269727 }
+        <Binormal> { -0.253339 0.651689 0.686834 }
+      }
+      <Normal> { -0.075076 0.709372 -0.700766 }
+    }
+    <Vertex> 1900 {
+      -0.0811349228024 0.022822894156 0.118622630835
+      <UV>  {
+        0.698519 0.470419
+        <Tangent> { 0.879746 -0.190019 0.435820 }
+        <Binormal> { -0.303957 0.458138 0.813316 }
+      }
+      <Normal> { 0.186895 0.884121 -0.428175 }
+    }
+    <Vertex> 1901 {
+      -0.41277974844 0.359569966793 0.133929312229
+      <UV>  {
+        0.697963 0.477146
+        <Tangent> { 0.976377 0.216056 -0.002841 }
+        <Binormal> { -0.216026 0.976333 0.007070 }
+      }
+      <Normal> { -0.005554 0.006012 -0.999939 }
+    }
+    <Vertex> 1902 {
+      -0.41277974844 0.359569966793 0.133929312229
+      <UV>  {
+        0.697963 0.477146
+        <Tangent> { 0.976377 0.216056 -0.002841 }
+        <Binormal> { -0.216026 0.976333 0.007070 }
+      }
+      <Normal> { -0.005554 0.006012 -0.999939 }
+    }
+    <Vertex> 1903 {
+      -0.123631261289 0.425898939371 0.11802098155
+      <UV>  {
+        0.697793 0.476953
+        <Tangent> { 0.156108 -0.486067 0.859866 }
+        <Binormal> { -0.506685 -0.152010 0.006060 }
+      }
+      <Normal> { -0.260231 0.849086 -0.459639 }
+    }
+    <Vertex> 1904 {
+      -0.0888380855322 0.24732093513 0.1272675246
+      <UV>  {
+        0.698290 0.474646
+        <Tangent> { 0.958863 0.088479 0.269727 }
+        <Binormal> { -0.253339 0.651689 0.686834 }
+      }
+      <Normal> { -0.075076 0.709372 -0.700766 }
+    }
+    <Vertex> 1905 {
+      -0.41277974844 0.359569966793 0.133929312229
+      <UV>  {
+        0.697963 0.477146
+        <Tangent> { 0.976377 0.216056 -0.002841 }
+        <Binormal> { -0.216026 0.976333 0.007070 }
+      }
+      <Normal> { -0.005554 0.006012 -0.999939 }
+    }
+    <Vertex> 1906 {
+      -0.33947506547 0.856957495213 0.123724862933
+      <UV>  {
+        0.697569 0.480250
+        <Tangent> { 0.737804 -0.468671 0.485790 }
+        <Binormal> { 0.101359 0.250774 0.087996 }
+      }
+      <Normal> { -0.544237 0.464980 -0.698233 }
+    }
+    <Vertex> 1907 {
+      -0.123631261289 0.425898939371 0.11802098155
+      <UV>  {
+        0.697793 0.476953
+        <Tangent> { 0.156108 -0.486067 0.859866 }
+        <Binormal> { -0.506685 -0.152010 0.006060 }
+      }
+      <Normal> { -0.260231 0.849086 -0.459639 }
+    }
+    <Vertex> 1908 {
+      -0.460573256016 0.85201472044 0.123724862933
+      <UV>  {
+        0.697663 0.480198
+        <Tangent> { 0.957802 0.236952 -0.162692 }
+        <Binormal> { -0.242759 0.802286 -0.260689 }
+      }
+      <Normal> { -0.527451 -0.402661 -0.748039 }
+    }
+    <Vertex> 1909 {
+      -0.33947506547 0.856957495213 0.123724862933
+      <UV>  {
+        0.697569 0.480250
+        <Tangent> { 0.737804 -0.468671 0.485790 }
+        <Binormal> { 0.101359 0.250774 0.087996 }
+      }
+      <Normal> { -0.544237 0.464980 -0.698233 }
+    }
+    <Vertex> 1910 {
+      -0.41277974844 0.359569966793 0.133929312229
+      <UV>  {
+        0.697963 0.477146
+        <Tangent> { 0.976377 0.216056 -0.002841 }
+        <Binormal> { -0.216026 0.976333 0.007070 }
+      }
+      <Normal> { -0.005554 0.006012 -0.999939 }
+    }
+    <Vertex> 1911 {
+      -0.41277974844 0.359569966793 0.133929312229
+      <UV>  {
+        0.697963 0.477146
+        <Tangent> { 0.976377 0.216056 -0.002841 }
+        <Binormal> { -0.216026 0.976333 0.007070 }
+      }
+      <Normal> { -0.005554 0.006012 -0.999939 }
+    }
+    <Vertex> 1912 {
+      -0.712077260017 0.431001186371 0.105974189937
+      <UV>  {
+        0.697571 0.477863
+        <Tangent> { 0.236374 0.300707 -0.923960 }
+        <Binormal> { -0.912140 0.353905 -0.118170 }
+      }
+      <Normal> { -0.251381 -0.819727 -0.514603 }
+    }
+    <Vertex> 1913 {
+      -0.460573256016 0.85201472044 0.123724862933
+      <UV>  {
+        0.697663 0.480198
+        <Tangent> { 0.957802 0.236952 -0.162692 }
+        <Binormal> { -0.242759 0.802286 -0.260689 }
+      }
+      <Normal> { -0.527451 -0.402661 -0.748039 }
+    }
+    <Vertex> 1914 {
+      -0.41277974844 0.359569966793 0.133929312229
+      <UV>  {
+        0.697963 0.477146
+        <Tangent> { 0.976377 0.216056 -0.002841 }
+        <Binormal> { -0.216026 0.976333 0.007070 }
+      }
+      <Normal> { -0.005554 0.006012 -0.999939 }
+    }
+    <Vertex> 1915 {
+      -0.746492385864 0.237116500735 0.124482221901
+      <UV>  {
+        0.697071 0.476758
+        <Tangent> { 0.027781 0.141361 -0.989568 }
+        <Binormal> { -0.796835 0.052177 -0.014917 }
+      }
+      <Normal> { -0.032807 -0.703879 -0.709525 }
+    }
+    <Vertex> 1916 {
+      -0.712077260017 0.431001186371 0.105974189937
+      <UV>  {
+        0.697571 0.477863
+        <Tangent> { 0.236374 0.300707 -0.923960 }
+        <Binormal> { -0.912140 0.353905 -0.118170 }
+      }
+      <Normal> { -0.251381 -0.819727 -0.514603 }
+    }
+    <Vertex> 1917 {
+      -0.41277974844 0.359569966793 0.133929312229
+      <UV>  {
+        0.697963 0.477146
+        <Tangent> { 0.976377 0.216056 -0.002841 }
+        <Binormal> { -0.216026 0.976333 0.007070 }
+      }
+      <Normal> { -0.005554 0.006012 -0.999939 }
+    }
+    <Vertex> 1918 {
+      -0.744424641132 0.0228229220957 0.118622630835
+      <UV>  {
+        0.696493 0.475139
+        <Tangent> { 0.030538 0.143487 -0.989181 }
+        <Binormal> { -0.928313 -0.198956 -0.057519 }
+      }
+      <Normal> { 0.214484 -0.875729 -0.432508 }
+    }
+    <Vertex> 1919 {
+      -0.746492385864 0.237116500735 0.124482221901
+      <UV>  {
+        0.697071 0.476758
+        <Tangent> { 0.027781 0.141361 -0.989568 }
+        <Binormal> { -0.796835 0.052177 -0.014917 }
+      }
+      <Normal> { -0.032807 -0.703879 -0.709525 }
+    }
+    <Vertex> 1920 {
+      -0.797626197338 0.880374312401 1.49441170692
+      <UV>  {
+        0.182410 0.201911
+        <Tangent> { -0.999896 0.004769 -0.013626 }
+        <Binormal> { 0.001001 0.221290 0.004024 }
+      }
+      <Normal> { -0.978118 0.000641 0.207984 }
+    }
+    <Vertex> 1921 {
+      -0.797626197338 0.88052302599 1.51110291481
+      <UV>  {
+        0.182884 0.172634
+        <Tangent> { -0.999981 -0.000184 -0.006158 }
+        <Binormal> { -0.000155 0.824025 0.000505 }
+      }
+      <Normal> { -0.571581 -0.000610 0.820521 }
+    }
+    <Vertex> 1922 {
+      -0.731826663017 0.884971857071 1.52835118771
+      <UV>  {
+        0.222434 0.195735
+        <Tangent> { -0.939842 -0.098646 -0.327055 }
+        <Binormal> { 0.000793 0.904962 -0.275235 }
+      }
+      <Normal> { -0.628010 0.226936 0.744346 }
+    }
+    <Vertex> 1923 {
+      -0.731826663017 0.884971857071 1.52835118771
+      <UV>  {
+        0.222434 0.195735
+        <Tangent> { -0.939842 -0.098646 -0.327055 }
+        <Binormal> { 0.000793 0.904962 -0.275235 }
+      }
+      <Normal> { -0.628010 0.226936 0.744346 }
+    }
+    <Vertex> 1924 {
+      -0.76732057333 0.87777107954 1.47126424313
+      <UV>  {
+        0.205824 0.217722
+        <Tangent> { -0.982824 0.117329 -0.142444 }
+        <Binormal> { 0.041773 0.263696 -0.071022 }
+      }
+      <Normal> { -0.973785 0.188513 0.127171 }
+    }
+    <Vertex> 1925 {
+      -0.797626197338 0.880374312401 1.49441170692
+      <UV>  {
+        0.182410 0.201911
+        <Tangent> { -0.999896 0.004769 -0.013626 }
+        <Binormal> { 0.001001 0.221290 0.004024 }
+      }
+      <Normal> { -0.978118 0.000641 0.207984 }
+    }
+    <Vertex> 1926 {
+      -0.797626197338 0.899374544621 1.47970366478
+      <UV>  {
+        0.182209 0.215068
+        <Tangent> { -0.999828 0.006002 -0.017575 }
+        <Binormal> { 0.001073 0.187065 0.002864 }
+      }
+      <Normal> { -0.985473 0.003052 0.169774 }
+    }
+    <Vertex> 1927 {
+      -0.797626197338 0.880374312401 1.49441170692
+      <UV>  {
+        0.182410 0.201911
+        <Tangent> { -0.999896 0.004769 -0.013626 }
+        <Binormal> { 0.001001 0.221290 0.004024 }
+      }
+      <Normal> { -0.978118 0.000641 0.207984 }
+    }
+    <Vertex> 1928 {
+      -0.76732057333 0.87777107954 1.47126424313
+      <UV>  {
+        0.205824 0.217722
+        <Tangent> { -0.982824 0.117329 -0.142444 }
+        <Binormal> { 0.041773 0.263696 -0.071022 }
+      }
+      <Normal> { -0.973785 0.188513 0.127171 }
+    }
+    <Vertex> 1929 {
+      -0.76732057333 0.87777107954 1.47126424313
+      <UV>  {
+        0.205824 0.217722
+        <Tangent> { -0.982824 0.117329 -0.142444 }
+        <Binormal> { 0.041773 0.263696 -0.071022 }
+      }
+      <Normal> { -0.973785 0.188513 0.127171 }
+    }
+    <Vertex> 1930 {
+      -0.731826663017 0.884971857071 1.52835118771
+      <UV>  {
+        0.222434 0.195735
+        <Tangent> { -0.939842 -0.098646 -0.327055 }
+        <Binormal> { 0.000793 0.904962 -0.275235 }
+      }
+      <Normal> { -0.628010 0.226936 0.744346 }
+    }
+    <Vertex> 1931 {
+      -0.680804371834 0.890661418438 1.44520199299
+      <UV>  {
+        0.237878 0.241743
+        <Tangent> { -0.955166 -0.040697 -0.293259 }
+        <Binormal> { 0.171313 -0.088941 -0.545635 }
+      }
+      <Normal> { -0.775018 0.538224 -0.331065 }
+    }
+    <Vertex> 1932 {
+      -0.680804371834 0.890661418438 1.44520199299
+      <UV>  {
+        0.755908 0.501532
+        <Tangent> { -0.039870 -0.393004 -0.918672 }
+        <Binormal> { 0.624562 0.698787 -0.326044 }
+      }
+      <Normal> { -0.775018 0.538224 -0.331065 }
+    }
+    <Vertex> 1933 {
+      -0.731826663017 0.884971857071 1.52835118771
+      <UV>  {
+        0.762512 0.502649
+        <Tangent> { 0.859742 0.005482 -0.510699 }
+        <Binormal> { 0.119976 -0.319222 0.198549 }
+      }
+      <Normal> { -0.628010 0.226936 0.744346 }
+    }
+    <Vertex> 1934 {
+      -0.706315517426 0.836657643318 1.45827400684
+      <UV>  {
+        0.750184 0.511506
+        <Tangent> { 0.657678 -0.311354 -0.685943 }
+        <Binormal> { 0.386480 0.760247 0.025474 }
+      }
+      <Normal> { -0.856533 0.444227 -0.262612 }
+    }
+    <Vertex> 1935 {
+      -0.706315517426 0.836657643318 1.45827400684
+      <UV>  {
+        0.750184 0.511506
+        <Tangent> { 0.657678 -0.311354 -0.685943 }
+        <Binormal> { 0.386480 0.760247 0.025474 }
+      }
+      <Normal> { -0.856533 0.444227 -0.262612 }
+    }
+    <Vertex> 1936 {
+      -0.76732057333 0.840007185936 1.38915884495
+      <UV>  {
+        0.745582 0.494538
+        <Tangent> { -0.110243 -0.845821 -0.521951 }
+        <Binormal> { 0.944596 0.073718 -0.318971 }
+      }
+      <Normal> { -0.310770 0.509018 -0.802667 }
+    }
+    <Vertex> 1937 {
+      -0.680804371834 0.890661418438 1.44520199299
+      <UV>  {
+        0.755908 0.501532
+        <Tangent> { -0.039870 -0.393004 -0.918672 }
+        <Binormal> { 0.624562 0.698787 -0.326044 }
+      }
+      <Normal> { -0.775018 0.538224 -0.331065 }
+    }
+    <Vertex> 1938 {
+      -0.706315517426 0.836657643318 1.45827400684
+      <UV>  {
+        0.750184 0.511506
+        <Tangent> { 0.657678 -0.311354 -0.685943 }
+        <Binormal> { 0.386480 0.760247 0.025474 }
+      }
+      <Normal> { -0.856533 0.444227 -0.262612 }
+    }
+    <Vertex> 1939 {
+      -0.706315517426 0.695588648319 1.23194229603
+      <UV>  {
+        0.721911 0.480879
+        <Tangent> { 0.371769 -0.607500 -0.701948 }
+        <Binormal> { 0.164387 0.599867 -0.432091 }
+      }
+      <Normal> { -0.440809 -0.441939 -0.781243 }
+    }
+    <Vertex> 1940 {
+      -0.76732057333 0.840007185936 1.38915884495
+      <UV>  {
+        0.745582 0.494538
+        <Tangent> { -0.110243 -0.845821 -0.521951 }
+        <Binormal> { 0.944596 0.073718 -0.318971 }
+      }
+      <Normal> { -0.310770 0.509018 -0.802667 }
+    }
+    <Vertex> 1941 {
+      -0.731826663017 0.884971857071 1.52835118771
+      <UV>  {
+        0.762512 0.502649
+        <Tangent> { 0.859742 0.005482 -0.510699 }
+        <Binormal> { 0.119976 -0.319222 0.198549 }
+      }
+      <Normal> { -0.628010 0.226936 0.744346 }
+    }
+    <Vertex> 1942 {
+      -0.797497272491 0.84658241272 1.49699413776
+      <UV>  {
+        0.766602 0.512993
+        <Tangent> { 0.986362 -0.026220 -0.162487 }
+        <Binormal> { -0.021113 -0.699045 -0.015363 }
+      }
+      <Normal> { -0.591662 0.000153 0.806177 }
+    }
+    <Vertex> 1943 {
+      -0.706315517426 0.836657643318 1.45827400684
+      <UV>  {
+        0.750184 0.511506
+        <Tangent> { 0.657678 -0.311354 -0.685943 }
+        <Binormal> { 0.386480 0.760247 0.025474 }
+      }
+      <Normal> { -0.856533 0.444227 -0.262612 }
+    }
+    <Vertex> 1944 {
+      -0.731826663017 0.884971857071 1.52835118771
+      <UV>  {
+        0.762512 0.502649
+        <Tangent> { 0.859742 0.005482 -0.510699 }
+        <Binormal> { 0.119976 -0.319222 0.198549 }
+      }
+      <Normal> { -0.628010 0.226936 0.744346 }
+    }
+    <Vertex> 1945 {
+      -0.797626197338 0.88052302599 1.51110291481
+      <UV>  {
+        0.771646 0.500789
+        <Tangent> { 0.949855 0.138952 0.280120 }
+        <Binormal> { 0.114184 -0.939487 0.078843 }
+      }
+      <Normal> { -0.571581 -0.000610 0.820521 }
+    }
+    <Vertex> 1946 {
+      -0.797497272491 0.84658241272 1.49699413776
+      <UV>  {
+        0.766602 0.512993
+        <Tangent> { 0.986362 -0.026220 -0.162487 }
+        <Binormal> { -0.021113 -0.699045 -0.015363 }
+      }
+      <Normal> { -0.591662 0.000153 0.806177 }
+    }
+    <Vertex> 1947 {
+      -0.690534889698 0.119267001748 3.45671796799
+      <UV>  {
+        0.692030 0.861404
+        <Tangent> { -0.918625 -0.391842 0.050881 }
+        <Binormal> { -0.129889 0.301113 -0.026141 }
+      }
+      <Normal> { 0.872555 0.400647 0.279458 }
+    }
+    <Vertex> 1948 {
+      -0.79841196537 0.195963606238 3.70800447464
+      <UV>  {
+        0.688273 0.876805
+        <Tangent> { -0.998909 -0.028189 -0.037230 }
+        <Binormal> { -0.018921 0.643841 0.020171 }
+      }
+      <Normal> { 0.740410 0.000702 0.672140 }
+    }
+    <Vertex> 1949 {
+      -0.79841196537 0.122044183314 3.51198530197
+      <UV>  {
+        0.687692 0.863782
+        <Tangent> { -0.998621 -0.004429 -0.052307 }
+        <Binormal> { -0.000434 0.046050 0.004377 }
+      }
+      <Normal> { 0.995148 0.000031 0.098239 }
+    }
+    <Vertex> 1950 {
+      -0.79841196537 0.195963606238 3.70800447464
+      <UV>  {
+        0.688273 0.876805
+        <Tangent> { -0.998909 -0.028189 -0.037230 }
+        <Binormal> { -0.018921 0.643841 0.020171 }
+      }
+      <Normal> { 0.740410 0.000702 0.672140 }
+    }
+    <Vertex> 1951 {
+      -0.690534889698 0.119267001748 3.45671796799
+      <UV>  {
+        0.692030 0.861404
+        <Tangent> { -0.918625 -0.391842 0.050881 }
+        <Binormal> { -0.129889 0.301113 -0.026141 }
+      }
+      <Normal> { 0.872555 0.400647 0.279458 }
+    }
+    <Vertex> 1952 {
+      -0.690534889698 0.217205867171 3.61245536804
+      <UV>  {
+        0.693782 0.870990
+        <Tangent> { -0.764689 -0.641729 0.058607 }
+        <Binormal> { -0.365395 0.432077 -0.036468 }
+      }
+      <Normal> { 0.631764 0.577868 0.516617 }
+    }
+    <Vertex> 1953 {
+      -0.690534889698 0.119267001748 3.45671796799
+      <UV>  {
+        0.692030 0.861404
+        <Tangent> { -0.918625 -0.391842 0.050881 }
+        <Binormal> { -0.129889 0.301113 -0.026141 }
+      }
+      <Normal> { 0.872555 0.400647 0.279458 }
+    }
+    <Vertex> 1954 {
+      -0.79841196537 0.122044183314 3.51198530197
+      <UV>  {
+        0.687692 0.863782
+        <Tangent> { -0.998621 -0.004429 -0.052307 }
+        <Binormal> { -0.000434 0.046050 0.004377 }
+      }
+      <Normal> { 0.995148 0.000031 0.098239 }
+    }
+    <Vertex> 1955 {
+      -0.646557986736 0.129969716072 3.30753755569
+      <UV>  {
+        0.693615 0.853829
+        <Tangent> { -0.922892 -0.382044 -0.048092 }
+        <Binormal> { 0.086632 -0.203054 -0.049404 }
+      }
+      <Normal> { 0.889828 0.421888 -0.173650 }
+    }
+    <Vertex> 1956 {
+      -0.690534889698 0.217205867171 3.61245536804
+      <UV>  {
+        0.693782 0.870990
+        <Tangent> { -0.764689 -0.641729 0.058607 }
+        <Binormal> { -0.365395 0.432077 -0.036468 }
+      }
+      <Normal> { 0.631764 0.577868 0.516617 }
+    }
+    <Vertex> 1957 {
+      -0.690534889698 0.119267001748 3.45671796799
+      <UV>  {
+        0.692030 0.861404
+        <Tangent> { -0.918625 -0.391842 0.050881 }
+        <Binormal> { -0.129889 0.301113 -0.026141 }
+      }
+      <Normal> { 0.872555 0.400647 0.279458 }
+    }
+    <Vertex> 1958 {
+      -0.537689507008 0.277934342623 3.51672887802
+      <UV>  {
+        0.702363 0.864354
+        <Tangent> { -0.536263 -0.843485 0.030900 }
+        <Binormal> { -0.275549 0.174200 -0.026914 }
+      }
+      <Normal> { 0.489425 0.820002 0.296640 }
+    }
+    <Vertex> 1959 {
+      -0.690534889698 0.119267001748 3.45671796799
+      <UV>  {
+        0.692030 0.861404
+        <Tangent> { -0.918625 -0.391842 0.050881 }
+        <Binormal> { -0.129889 0.301113 -0.026141 }
+      }
+      <Normal> { 0.872555 0.400647 0.279458 }
+    }
+    <Vertex> 1960 {
+      -0.646557986736 0.129969716072 3.30753755569
+      <UV>  {
+        0.693615 0.853829
+        <Tangent> { -0.922892 -0.382044 -0.048092 }
+        <Binormal> { 0.086632 -0.203054 -0.049404 }
+      }
+      <Normal> { 0.889828 0.421888 -0.173650 }
+    }
+    <Vertex> 1961 {
+      -0.537689507008 0.277934342623 3.51672887802
+      <UV>  {
+        0.702363 0.864354
+        <Tangent> { -0.536263 -0.843485 0.030900 }
+        <Binormal> { -0.275549 0.174200 -0.026914 }
+      }
+      <Normal> { 0.489425 0.820002 0.296640 }
+    }
+    <Vertex> 1962 {
+      -0.537689507008 0.277934342623 3.51672887802
+      <UV>  {
+        0.702363 0.864354
+        <Tangent> { -0.536263 -0.843485 0.030900 }
+        <Binormal> { -0.275549 0.174200 -0.026914 }
+      }
+      <Normal> { 0.489425 0.820002 0.296640 }
+    }
+    <Vertex> 1963 {
+      -0.537689507008 0.476921230555 3.61367058754
+      <UV>  {
+        0.710242 0.872702
+        <Tangent> { -0.075581 -0.982279 0.171512 }
+        <Binormal> { -0.572145 0.029417 -0.083655 }
+      }
+      <Normal> { -0.015503 0.905332 0.424390 }
+    }
+    <Vertex> 1964 {
+      -0.646557986736 0.456512331963 3.79224848747
+      <UV>  {
+        0.701913 0.887420
+        <Tangent> { -0.416131 -0.895899 0.155562 }
+        <Binormal> { -0.783451 0.339872 -0.138384 }
+      }
+      <Normal> { 0.137577 0.628742 0.765313 }
+    }
+    <Vertex> 1965 {
+      -0.646557986736 0.456512331963 3.79224848747
+      <UV>  {
+        0.701913 0.887420
+        <Tangent> { -0.416131 -0.895899 0.155562 }
+        <Binormal> { -0.783451 0.339872 -0.138384 }
+      }
+      <Normal> { 0.137577 0.628742 0.765313 }
+    }
+    <Vertex> 1966 {
+      -0.690534889698 0.217205867171 3.61245536804
+      <UV>  {
+        0.693782 0.870990
+        <Tangent> { -0.764689 -0.641729 0.058607 }
+        <Binormal> { -0.365395 0.432077 -0.036468 }
+      }
+      <Normal> { 0.631764 0.577868 0.516617 }
+    }
+    <Vertex> 1967 {
+      -0.537689507008 0.277934342623 3.51672887802
+      <UV>  {
+        0.702363 0.864354
+        <Tangent> { -0.536263 -0.843485 0.030900 }
+        <Binormal> { -0.275549 0.174200 -0.026914 }
+      }
+      <Normal> { 0.489425 0.820002 0.296640 }
+    }
+    <Vertex> 1968 {
+      -0.646557986736 0.456512331963 3.79224848747
+      <UV>  {
+        0.701913 0.887420
+        <Tangent> { -0.416131 -0.895899 0.155562 }
+        <Binormal> { -0.783451 0.339872 -0.138384 }
+      }
+      <Normal> { 0.137577 0.628742 0.765313 }
+    }
+    <Vertex> 1969 {
+      -0.79841196537 0.43816062808 3.8000395298
+      <UV>  {
+        0.689340 0.901637
+        <Tangent> { -0.992230 -0.120866 -0.029510 }
+        <Binormal> { -0.121094 0.991720 0.009749 }
+      }
+      <Normal> { -0.068911 -0.018220 0.997436 }
+    }
+    <Vertex> 1970 {
+      -0.79841196537 0.195963606238 3.70800447464
+      <UV>  {
+        0.688273 0.876805
+        <Tangent> { -0.998909 -0.028189 -0.037230 }
+        <Binormal> { -0.018921 0.643841 0.020171 }
+      }
+      <Normal> { 0.740410 0.000702 0.672140 }
+    }
+    <Vertex> 1971 {
+      -0.79841196537 0.195963606238 3.70800447464
+      <UV>  {
+        0.688273 0.876805
+        <Tangent> { -0.998909 -0.028189 -0.037230 }
+        <Binormal> { -0.018921 0.643841 0.020171 }
+      }
+      <Normal> { 0.740410 0.000702 0.672140 }
+    }
+    <Vertex> 1972 {
+      -0.690534889698 0.217205867171 3.61245536804
+      <UV>  {
+        0.693782 0.870990
+        <Tangent> { -0.764689 -0.641729 0.058607 }
+        <Binormal> { -0.365395 0.432077 -0.036468 }
+      }
+      <Normal> { 0.631764 0.577868 0.516617 }
+    }
+    <Vertex> 1973 {
+      -0.646557986736 0.456512331963 3.79224848747
+      <UV>  {
+        0.701913 0.887420
+        <Tangent> { -0.416131 -0.895899 0.155562 }
+        <Binormal> { -0.783451 0.339872 -0.138384 }
+      }
+      <Normal> { 0.137577 0.628742 0.765313 }
+    }
+    <Vertex> 1974 {
+      -0.646557986736 0.456512331963 3.79224848747
+      <UV>  {
+        0.701913 0.887420
+        <Tangent> { -0.416131 -0.895899 0.155562 }
+        <Binormal> { -0.783451 0.339872 -0.138384 }
+      }
+      <Normal> { 0.137577 0.628742 0.765313 }
+    }
+    <Vertex> 1975 {
+      -0.677041113377 0.691214859486 3.71571516991
+      <UV>  {
+        0.722504 0.890518
+        <Tangent> { 0.268311 -0.855961 0.441974 }
+        <Binormal> { -0.728351 -0.455933 -0.440832 }
+      }
+      <Normal> { -0.648427 0.425611 0.631153 }
+    }
+    <Vertex> 1976 {
+      -0.79841196537 0.43816062808 3.8000395298
+      <UV>  {
+        0.689340 0.901637
+        <Tangent> { -0.992230 -0.120866 -0.029510 }
+        <Binormal> { -0.121094 0.991720 0.009749 }
+      }
+      <Normal> { -0.068911 -0.018220 0.997436 }
+    }
+    <Vertex> 1977 {
+      -0.677041113377 0.691214859486 3.71571516991
+      <UV>  {
+        0.722504 0.890518
+        <Tangent> { 0.268311 -0.855961 0.441974 }
+        <Binormal> { -0.728351 -0.455933 -0.440832 }
+      }
+      <Normal> { -0.648427 0.425611 0.631153 }
+    }
+    <Vertex> 1978 {
+      -0.79841196537 0.738485217094 3.73222446442
+      <UV>  {
+        0.729921 0.904079
+        <Tangent> { 0.364659 -0.784293 0.501905 }
+        <Binormal> { -0.556298 -0.606971 -0.544293 }
+      }
+      <Normal> { -0.672964 -0.045228 0.738243 }
+    }
+    <Vertex> 1979 {
+      -0.79841196537 0.43816062808 3.8000395298
+      <UV>  {
+        0.689340 0.901637
+        <Tangent> { -0.992230 -0.120866 -0.029510 }
+        <Binormal> { -0.121094 0.991720 0.009749 }
+      }
+      <Normal> { -0.068911 -0.018220 0.997436 }
+    }
+    <Vertex> 1980 {
+      -0.677041113377 0.691214859486 3.71571516991
+      <UV>  {
+        0.722504 0.890518
+        <Tangent> { 0.268311 -0.855961 0.441974 }
+        <Binormal> { -0.728351 -0.455933 -0.440832 }
+      }
+      <Normal> { -0.648427 0.425611 0.631153 }
+    }
+    <Vertex> 1981 {
+      -0.646557986736 0.839179456234 3.35855984688
+      <UV>  {
+        0.743396 0.861354
+        <Tangent> { 0.695435 -0.667343 0.266502 }
+        <Binormal> { -0.189195 -0.239726 -0.106592 }
+      }
+      <Normal> { -0.793054 0.607746 0.040803 }
+    }
+    <Vertex> 1982 {
+      -0.79841196537 0.738485217094 3.73222446442
+      <UV>  {
+        0.729921 0.904079
+        <Tangent> { 0.364659 -0.784293 0.501905 }
+        <Binormal> { -0.556298 -0.606971 -0.544293 }
+      }
+      <Normal> { -0.672964 -0.045228 0.738243 }
+    }
+    <Vertex> 1983 {
+      -0.646557986736 0.839179456234 3.35855984688
+      <UV>  {
+        0.743396 0.861354
+        <Tangent> { 0.695435 -0.667343 0.266502 }
+        <Binormal> { -0.189195 -0.239726 -0.106592 }
+      }
+      <Normal> { -0.793054 0.607746 0.040803 }
+    }
+    <Vertex> 1984 {
+      -0.79841196537 0.859583377838 3.56752943993
+      <UV>  {
+        0.750065 0.888972
+        <Tangent> { 0.787231 -0.556633 0.265381 }
+        <Binormal> { -0.181331 -0.509862 -0.531528 }
+      }
+      <Normal> { -0.944151 -0.007599 0.329386 }
+    }
+    <Vertex> 1985 {
+      -0.79841196537 0.738485217094 3.73222446442
+      <UV>  {
+        0.729921 0.904079
+        <Tangent> { 0.364659 -0.784293 0.501905 }
+        <Binormal> { -0.556298 -0.606971 -0.544293 }
+      }
+      <Normal> { -0.672964 -0.045228 0.738243 }
+    }
+    <Vertex> 1986 {
+      -0.537689507008 0.476921230555 3.61367058754
+      <UV>  {
+        0.710242 0.872702
+        <Tangent> { -0.075581 -0.982279 0.171512 }
+        <Binormal> { -0.572145 0.029417 -0.083655 }
+      }
+      <Normal> { -0.015503 0.905332 0.424390 }
+    }
+    <Vertex> 1987 {
+      -0.537689447403 0.660601437092 3.51672887802
+      <UV>  {
+        0.723326 0.869129
+        <Tangent> { 0.284544 -0.919795 0.270206 }
+        <Binormal> { -0.509610 -0.191914 -0.116634 }
+      }
+      <Normal> { -0.395459 0.868435 0.298929 }
+    }
+    <Vertex> 1988 {
+      -0.646557986736 0.456512331963 3.79224848747
+      <UV>  {
+        0.701913 0.887420
+        <Tangent> { -0.416131 -0.895899 0.155562 }
+        <Binormal> { -0.783451 0.339872 -0.138384 }
+      }
+      <Normal> { 0.137577 0.628742 0.765313 }
+    }
+    <Vertex> 1989 {
+      -0.537689447403 0.660601437092 3.51672887802
+      <UV>  {
+        0.723326 0.869129
+        <Tangent> { 0.284544 -0.919795 0.270206 }
+        <Binormal> { -0.509610 -0.191914 -0.116634 }
+      }
+      <Normal> { -0.395459 0.868435 0.298929 }
+    }
+    <Vertex> 1990 {
+      -0.677041113377 0.691214859486 3.71571516991
+      <UV>  {
+        0.722504 0.890518
+        <Tangent> { 0.268311 -0.855961 0.441974 }
+        <Binormal> { -0.728351 -0.455933 -0.440832 }
+      }
+      <Normal> { -0.648427 0.425611 0.631153 }
+    }
+    <Vertex> 1991 {
+      -0.646557986736 0.456512331963 3.79224848747
+      <UV>  {
+        0.701913 0.887420
+        <Tangent> { -0.416131 -0.895899 0.155562 }
+        <Binormal> { -0.783451 0.339872 -0.138384 }
+      }
+      <Normal> { 0.137577 0.628742 0.765313 }
+    }
+    <Vertex> 1992 {
+      -0.646557986736 0.839179456234 3.35855984688
+      <UV>  {
+        0.743396 0.861354
+        <Tangent> { 0.695435 -0.667343 0.266502 }
+        <Binormal> { -0.189195 -0.239726 -0.106592 }
+      }
+      <Normal> { -0.793054 0.607746 0.040803 }
+    }
+    <Vertex> 1993 {
+      -0.677041113377 0.691214859486 3.71571516991
+      <UV>  {
+        0.722504 0.890518
+        <Tangent> { 0.268311 -0.855961 0.441974 }
+        <Binormal> { -0.728351 -0.455933 -0.440832 }
+      }
+      <Normal> { -0.648427 0.425611 0.631153 }
+    }
+    <Vertex> 1994 {
+      -0.537689447403 0.660601437092 3.51672887802
+      <UV>  {
+        0.723326 0.869129
+        <Tangent> { 0.284544 -0.919795 0.270206 }
+        <Binormal> { -0.509610 -0.191914 -0.116634 }
+      }
+      <Normal> { -0.395459 0.868435 0.298929 }
+    }
+    <Vertex> 1995 {
+      -0.79841196537 0.809790551662 3.00572133064
+      <UV>  {
+        0.759919 0.818897
+        <Tangent> { 0.785047 -0.615822 0.066817 }
+        <Binormal> { 0.266798 0.279396 -0.559601 }
+      }
+      <Normal> { -0.901547 -0.005615 -0.432630 }
+    }
+    <Vertex> 1996 {
+      -0.646557986736 0.670805931091 3.08303952217
+      <UV>  {
+        0.730818 0.829994
+        <Tangent> { 0.436015 -0.891862 -0.120307 }
+        <Binormal> { 0.494329 0.250452 -0.065119 }
+      }
+      <Normal> { -0.450026 0.771172 -0.450240 }
+    }
+    <Vertex> 1997 {
+      -0.79841196537 0.713765025139 2.88561964035
+      <UV>  {
+        0.750195 0.796438
+        <Tangent> { 0.555244 -0.830883 -0.036571 }
+        <Binormal> { 0.406372 0.303347 -0.722162 }
+      }
+      <Normal> { -0.872311 0.004730 -0.488876 }
+    }
+    <Vertex> 1998 {
+      -0.79841196537 0.809790551662 3.00572133064
+      <UV>  {
+        0.759919 0.818897
+        <Tangent> { 0.785047 -0.615822 0.066817 }
+        <Binormal> { 0.266798 0.279396 -0.559601 }
+      }
+      <Normal> { -0.901547 -0.005615 -0.432630 }
+    }
+    <Vertex> 1999 {
+      -0.646557986736 0.839179456234 3.35855984688
+      <UV>  {
+        0.743396 0.861354
+        <Tangent> { 0.695435 -0.667343 0.266502 }
+        <Binormal> { -0.189195 -0.239726 -0.106592 }
+      }
+      <Normal> { -0.793054 0.607746 0.040803 }
+    }
+    <Vertex> 2000 {
+      -0.646557986736 0.670805931091 3.08303952217
+      <UV>  {
+        0.730818 0.829994
+        <Tangent> { 0.436015 -0.891862 -0.120307 }
+        <Binormal> { 0.494329 0.250452 -0.065119 }
+      }
+      <Normal> { -0.450026 0.771172 -0.450240 }
+    }
+    <Vertex> 2001 {
+      -0.646557986736 0.839179456234 3.35855984688
+      <UV>  {
+        0.743396 0.861354
+        <Tangent> { 0.695435 -0.667343 0.266502 }
+        <Binormal> { -0.189195 -0.239726 -0.106592 }
+      }
+      <Normal> { -0.793054 0.607746 0.040803 }
+    }
+    <Vertex> 2002 {
+      -0.537689447403 0.660601437092 3.24120855331
+      <UV>  {
+        0.726545 0.848394
+        <Tangent> { 0.272908 -0.961948 0.013338 }
+        <Binormal> { 0.236423 0.066403 -0.048397 }
+      }
+      <Normal> { -0.309885 0.914945 -0.258461 }
+    }
+    <Vertex> 2003 {
+      -0.646557986736 0.670805931091 3.08303952217
+      <UV>  {
+        0.730818 0.829994
+        <Tangent> { 0.436015 -0.891862 -0.120307 }
+        <Binormal> { 0.494329 0.250452 -0.065119 }
+      }
+      <Normal> { -0.450026 0.771172 -0.450240 }
+    }
+    <Vertex> 2004 {
+      -0.537689447403 0.660601437092 3.51672887802
+      <UV>  {
+        0.723326 0.869129
+        <Tangent> { 0.284544 -0.919795 0.270206 }
+        <Binormal> { -0.509610 -0.191914 -0.116634 }
+      }
+      <Normal> { -0.395459 0.868435 0.298929 }
+    }
+    <Vertex> 2005 {
+      -0.476723134518 0.487125694752 3.43509316444
+      <UV>  {
+        0.713656 0.861266
+        <Tangent> { -0.031079 -0.991633 0.125288 }
+        <Binormal> { -0.193668 0.000333 -0.045406 }
+      }
+      <Normal> { -0.014527 0.997467 0.069277 }
+    }
+    <Vertex> 2006 {
+      -0.537689447403 0.660601437092 3.24120855331
+      <UV>  {
+        0.726545 0.848394
+        <Tangent> { 0.272908 -0.961948 0.013338 }
+        <Binormal> { 0.236423 0.066403 -0.048397 }
+      }
+      <Normal> { -0.309885 0.914945 -0.258461 }
+    }
+    <Vertex> 2007 {
+      -0.646557986736 0.839179456234 3.35855984688
+      <UV>  {
+        0.743396 0.861354
+        <Tangent> { 0.695435 -0.667343 0.266502 }
+        <Binormal> { -0.189195 -0.239726 -0.106592 }
+      }
+      <Normal> { -0.793054 0.607746 0.040803 }
+    }
+    <Vertex> 2008 {
+      -0.537689447403 0.660601437092 3.51672887802
+      <UV>  {
+        0.723326 0.869129
+        <Tangent> { 0.284544 -0.919795 0.270206 }
+        <Binormal> { -0.509610 -0.191914 -0.116634 }
+      }
+      <Normal> { -0.395459 0.868435 0.298929 }
+    }
+    <Vertex> 2009 {
+      -0.537689447403 0.660601437092 3.24120855331
+      <UV>  {
+        0.726545 0.848394
+        <Tangent> { 0.272908 -0.961948 0.013338 }
+        <Binormal> { 0.236423 0.066403 -0.048397 }
+      }
+      <Normal> { -0.309885 0.914945 -0.258461 }
+    }
+    <Vertex> 2010 {
+      -0.537689507008 0.288138777018 3.24120855331
+      <UV>  {
+        0.702931 0.848927
+        <Tangent> { -0.533880 -0.844708 -0.037950 }
+        <Binormal> { 0.317616 -0.195532 -0.115968 }
+      }
+      <Normal> { 0.400922 0.851558 -0.337748 }
+    }
+    <Vertex> 2011 {
+      -0.537689507008 0.277934342623 3.51672887802
+      <UV>  {
+        0.702363 0.864354
+        <Tangent> { -0.536263 -0.843485 0.030900 }
+        <Binormal> { -0.275549 0.174200 -0.026914 }
+      }
+      <Normal> { 0.489425 0.820002 0.296640 }
+    }
+    <Vertex> 2012 {
+      -0.646557986736 0.129969716072 3.30753755569
+      <UV>  {
+        0.693615 0.853829
+        <Tangent> { -0.922892 -0.382044 -0.048092 }
+        <Binormal> { 0.086632 -0.203054 -0.049404 }
+      }
+      <Normal> { 0.889828 0.421888 -0.173650 }
+    }
+    <Vertex> 2013 {
+      -0.537689447403 0.660601437092 3.51672887802
+      <UV>  {
+        0.723326 0.869129
+        <Tangent> { 0.284544 -0.919795 0.270206 }
+        <Binormal> { -0.509610 -0.191914 -0.116634 }
+      }
+      <Normal> { -0.395459 0.868435 0.298929 }
+    }
+    <Vertex> 2014 {
+      -0.537689507008 0.476921230555 3.61367058754
+      <UV>  {
+        0.710242 0.872702
+        <Tangent> { -0.075581 -0.982279 0.171512 }
+        <Binormal> { -0.572145 0.029417 -0.083655 }
+      }
+      <Normal> { -0.015503 0.905332 0.424390 }
+    }
+    <Vertex> 2015 {
+      -0.476723134518 0.487125694752 3.43509316444
+      <UV>  {
+        0.713656 0.861266
+        <Tangent> { -0.031079 -0.991633 0.125288 }
+        <Binormal> { -0.193668 0.000333 -0.045406 }
+      }
+      <Normal> { -0.014527 0.997467 0.069277 }
+    }
+    <Vertex> 2016 {
+      -0.537689507008 0.277934342623 3.51672887802
+      <UV>  {
+        0.702363 0.864354
+        <Tangent> { -0.536263 -0.843485 0.030900 }
+        <Binormal> { -0.275549 0.174200 -0.026914 }
+      }
+      <Normal> { 0.489425 0.820002 0.296640 }
+    }
+    <Vertex> 2017 {
+      -0.476723134518 0.487125694752 3.43509316444
+      <UV>  {
+        0.713656 0.861266
+        <Tangent> { -0.031079 -0.991633 0.125288 }
+        <Binormal> { -0.193668 0.000333 -0.045406 }
+      }
+      <Normal> { -0.014527 0.997467 0.069277 }
+    }
+    <Vertex> 2018 {
+      -0.537689507008 0.476921230555 3.61367058754
+      <UV>  {
+        0.710242 0.872702
+        <Tangent> { -0.075581 -0.982279 0.171512 }
+        <Binormal> { -0.572145 0.029417 -0.083655 }
+      }
+      <Normal> { -0.015503 0.905332 0.424390 }
+    }
+    <Vertex> 2019 {
+      -0.476723134518 0.487125694752 3.43509316444
+      <UV>  {
+        0.713656 0.861266
+        <Tangent> { -0.031079 -0.991633 0.125288 }
+        <Binormal> { -0.193668 0.000333 -0.045406 }
+      }
+      <Normal> { -0.014527 0.997467 0.069277 }
+    }
+    <Vertex> 2020 {
+      -0.537689507008 0.277934342623 3.51672887802
+      <UV>  {
+        0.702363 0.864354
+        <Tangent> { -0.536263 -0.843485 0.030900 }
+        <Binormal> { -0.275549 0.174200 -0.026914 }
+      }
+      <Normal> { 0.489425 0.820002 0.296640 }
+    }
+    <Vertex> 2021 {
+      -0.537689507008 0.288138777018 3.24120855331
+      <UV>  {
+        0.702931 0.848927
+        <Tangent> { -0.533880 -0.844708 -0.037950 }
+        <Binormal> { 0.317616 -0.195532 -0.115968 }
+      }
+      <Normal> { 0.400922 0.851558 -0.337748 }
+    }
+    <Vertex> 2022 {
+      -0.646557986736 0.670805931091 3.08303952217
+      <UV>  {
+        0.730818 0.829994
+        <Tangent> { 0.436015 -0.891862 -0.120307 }
+        <Binormal> { 0.494329 0.250452 -0.065119 }
+      }
+      <Normal> { -0.450026 0.771172 -0.450240 }
+    }
+    <Vertex> 2023 {
+      -0.537689447403 0.660601437092 3.24120855331
+      <UV>  {
+        0.726545 0.848394
+        <Tangent> { 0.272908 -0.961948 0.013338 }
+        <Binormal> { 0.236423 0.066403 -0.048397 }
+      }
+      <Normal> { -0.309885 0.914945 -0.258461 }
+    }
+    <Vertex> 2024 {
+      -0.585591614246 0.359569996595 3.03201723099
+      <UV>  {
+        0.703738 0.833182
+        <Tangent> { -0.439275 -0.860550 -0.257860 }
+        <Binormal> { 0.675105 -0.276837 -0.226188 }
+      }
+      <Normal> { 0.160192 0.828730 -0.536180 }
+    }
+    <Vertex> 2025 {
+      -0.537689447403 0.660601437092 3.24120855331
+      <UV>  {
+        0.726545 0.848394
+        <Tangent> { 0.272908 -0.961948 0.013338 }
+        <Binormal> { 0.236423 0.066403 -0.048397 }
+      }
+      <Normal> { -0.309885 0.914945 -0.258461 }
+    }
+    <Vertex> 2026 {
+      -0.537689507008 0.288138777018 3.24120855331
+      <UV>  {
+        0.702931 0.848927
+        <Tangent> { -0.533880 -0.844708 -0.037950 }
+        <Binormal> { 0.317616 -0.195532 -0.115968 }
+      }
+      <Normal> { 0.400922 0.851558 -0.337748 }
+    }
+    <Vertex> 2027 {
+      -0.585591614246 0.359569996595 3.03201723099
+      <UV>  {
+        0.703738 0.833182
+        <Tangent> { -0.439275 -0.860550 -0.257860 }
+        <Binormal> { 0.675105 -0.276837 -0.226188 }
+      }
+      <Normal> { 0.160192 0.828730 -0.536180 }
+    }
+    <Vertex> 2028 {
+      -0.476723134518 0.487125694752 3.43509316444
+      <UV>  {
+        0.713656 0.861266
+        <Tangent> { -0.031079 -0.991633 0.125288 }
+        <Binormal> { -0.193668 0.000333 -0.045406 }
+      }
+      <Normal> { -0.014527 0.997467 0.069277 }
+    }
+    <Vertex> 2029 {
+      -0.537689507008 0.288138777018 3.24120855331
+      <UV>  {
+        0.702931 0.848927
+        <Tangent> { -0.533880 -0.844708 -0.037950 }
+        <Binormal> { 0.317616 -0.195532 -0.115968 }
+      }
+      <Normal> { 0.400922 0.851558 -0.337748 }
+    }
+    <Vertex> 2030 {
+      -0.537689447403 0.660601437092 3.24120855331
+      <UV>  {
+        0.726545 0.848394
+        <Tangent> { 0.272908 -0.961948 0.013338 }
+        <Binormal> { 0.236423 0.066403 -0.048397 }
+      }
+      <Normal> { -0.309885 0.914945 -0.258461 }
+    }
+    <Vertex> 2031 {
+      -0.646557986736 0.129969716072 3.30753755569
+      <UV>  {
+        0.693615 0.853829
+        <Tangent> { -0.922892 -0.382044 -0.048092 }
+        <Binormal> { 0.086632 -0.203054 -0.049404 }
+      }
+      <Normal> { 0.889828 0.421888 -0.173650 }
+    }
+    <Vertex> 2032 {
+      -0.79841196537 0.122044183314 3.51198530197
+      <UV>  {
+        0.687692 0.863782
+        <Tangent> { -0.998621 -0.004429 -0.052307 }
+        <Binormal> { -0.000434 0.046050 0.004377 }
+      }
+      <Normal> { 0.995148 0.000031 0.098239 }
+    }
+    <Vertex> 2033 {
+      -0.738007485867 0.115921743214 3.2922308445
+      <UV>  {
+        0.688950 0.853577
+        <Tangent> { -0.867806 -0.409158 -0.281962 }
+        <Binormal> { 0.224101 -0.275949 -0.289292 }
+      }
+      <Normal> { 0.730705 0.677877 -0.080569 }
+    }
+    <Vertex> 2034 {
+      -0.79841196537 0.216776117682 2.86556959152
+      <UV>  {
+        0.684161 0.827606
+        <Tangent> { -0.997703 0.045675 -0.050027 }
+        <Binormal> { -0.032019 -0.735914 -0.033323 }
+      }
+      <Normal> { 0.712241 0.000793 -0.701895 }
+    }
+    <Vertex> 2035 {
+      -0.738007485867 0.115921743214 3.2922308445
+      <UV>  {
+        0.688950 0.853577
+        <Tangent> { -0.867806 -0.409158 -0.281962 }
+        <Binormal> { 0.224101 -0.275949 -0.289292 }
+      }
+      <Normal> { 0.730705 0.677877 -0.080569 }
+    }
+    <Vertex> 2036 {
+      -0.798693180084 0.0840496644378 3.16467523575
+      <UV>  {
+        0.686656 0.848691
+        <Tangent> { -0.999130 -0.020098 -0.036546 }
+        <Binormal> { 0.015325 -0.786331 0.013469 }
+      }
+      <Normal> { 0.645924 -0.000488 -0.763390 }
+    }
+    <Vertex> 2037 {
+      -0.79841196537 0.216776117682 2.86556959152
+      <UV>  {
+        0.684161 0.827606
+        <Tangent> { -0.997703 0.045675 -0.050027 }
+        <Binormal> { -0.032019 -0.735914 -0.033323 }
+      }
+      <Normal> { 0.712241 0.000793 -0.701895 }
+    }
+    <Vertex> 2038 {
+      -0.797497332096 0.42620664835 2.85241532326
+      <UV>  {
+        0.680896 0.810762
+        <Tangent> { -0.943545 0.271912 -0.189174 }
+        <Binormal> { -0.184983 -0.785432 -0.206309 }
+      }
+      <Normal> { 0.726859 0.009186 -0.686697 }
+    }
+    <Vertex> 2039 {
+      -0.585591614246 0.359569996595 3.03201723099
+      <UV>  {
+        0.703738 0.833182
+        <Tangent> { -0.439275 -0.860550 -0.257860 }
+        <Binormal> { 0.675105 -0.276837 -0.226188 }
+      }
+      <Normal> { 0.160192 0.828730 -0.536180 }
+    }
+    <Vertex> 2040 {
+      -0.585591614246 0.359569996595 3.03201723099
+      <UV>  {
+        0.703738 0.833182
+        <Tangent> { -0.439275 -0.860550 -0.257860 }
+        <Binormal> { 0.675105 -0.276837 -0.226188 }
+      }
+      <Normal> { 0.160192 0.828730 -0.536180 }
+    }
+    <Vertex> 2041 {
+      -0.738007485867 0.115921743214 3.2922308445
+      <UV>  {
+        0.688950 0.853577
+        <Tangent> { -0.867806 -0.409158 -0.281962 }
+        <Binormal> { 0.224101 -0.275949 -0.289292 }
+      }
+      <Normal> { 0.730705 0.677877 -0.080569 }
+    }
+    <Vertex> 2042 {
+      -0.79841196537 0.216776117682 2.86556959152
+      <UV>  {
+        0.684161 0.827606
+        <Tangent> { -0.997703 0.045675 -0.050027 }
+        <Binormal> { -0.032019 -0.735914 -0.033323 }
+      }
+      <Normal> { 0.712241 0.000793 -0.701895 }
+    }
+    <Vertex> 2043 {
+      -0.738007485867 0.115921743214 3.2922308445
+      <UV>  {
+        0.688950 0.853577
+        <Tangent> { -0.867806 -0.409158 -0.281962 }
+        <Binormal> { 0.224101 -0.275949 -0.289292 }
+      }
+      <Normal> { 0.730705 0.677877 -0.080569 }
+    }
+    <Vertex> 2044 {
+      -0.585591614246 0.359569996595 3.03201723099
+      <UV>  {
+        0.703738 0.833182
+        <Tangent> { -0.439275 -0.860550 -0.257860 }
+        <Binormal> { 0.675105 -0.276837 -0.226188 }
+      }
+      <Normal> { 0.160192 0.828730 -0.536180 }
+    }
+    <Vertex> 2045 {
+      -0.537689507008 0.288138777018 3.24120855331
+      <UV>  {
+        0.702931 0.848927
+        <Tangent> { -0.533880 -0.844708 -0.037950 }
+        <Binormal> { 0.317616 -0.195532 -0.115968 }
+      }
+      <Normal> { 0.400922 0.851558 -0.337748 }
+    }
+    <Vertex> 2046 {
+      -0.537689507008 0.288138777018 3.24120855331
+      <UV>  {
+        0.702931 0.848927
+        <Tangent> { -0.533880 -0.844708 -0.037950 }
+        <Binormal> { 0.317616 -0.195532 -0.115968 }
+      }
+      <Normal> { 0.400922 0.851558 -0.337748 }
+    }
+    <Vertex> 2047 {
+      -0.646557986736 0.129969716072 3.30753755569
+      <UV>  {
+        0.693615 0.853829
+        <Tangent> { -0.922892 -0.382044 -0.048092 }
+        <Binormal> { 0.086632 -0.203054 -0.049404 }
+      }
+      <Normal> { 0.889828 0.421888 -0.173650 }
+    }
+    <Vertex> 2048 {
+      -0.738007485867 0.115921743214 3.2922308445
+      <UV>  {
+        0.688950 0.853577
+        <Tangent> { -0.867806 -0.409158 -0.281962 }
+        <Binormal> { 0.224101 -0.275949 -0.289292 }
+      }
+      <Normal> { 0.730705 0.677877 -0.080569 }
+    }
+    <Vertex> 2049 {
+      -0.798693180084 0.0840496644378 3.16467523575
+      <UV>  {
+        0.444844 0.678525
+        <Tangent> { -0.358241 0.933165 -0.029434 }
+        <Binormal> { -0.712383 -0.292490 -0.602579 }
+      }
+      <Normal> { 0.645924 -0.000488 -0.763390 }
+    }
+    <Vertex> 2050 {
+      -0.738007485867 0.115921743214 3.2922308445
+      <UV>  {
+        0.490011 0.678525
+        <Tangent> { 0.915271 0.080022 -0.394811 }
+        <Binormal> { 0.261186 -0.214748 0.561969 }
+      }
+      <Normal> { 0.730705 0.677877 -0.080569 }
+    }
+    <Vertex> 2051 {
+      -0.798693180084 -0.0384038165212 3.16977739334
+      <UV>  {
+        0.431245 0.687626
+        <Tangent> { -0.449978 0.611827 -0.650529 }
+        <Binormal> { -0.539099 -0.704075 -0.289286 }
+      }
+      <Normal> { 0.472823 0.000000 -0.881130 }
+    }
+    <Vertex> 2052 {
+      -0.738007485867 0.115921743214 3.2922308445
+      <UV>  {
+        0.490011 0.678525
+        <Tangent> { 0.915271 0.080022 -0.394811 }
+        <Binormal> { 0.261186 -0.214748 0.561969 }
+      }
+      <Normal> { 0.730705 0.677877 -0.080569 }
+    }
+    <Vertex> 2053 {
+      -0.738007545471 -0.0588127337396 3.2922308445
+      <UV>  {
+        0.417397 0.695313
+        <Tangent> { 0.839718 0.417794 0.346875 }
+        <Binormal> { -0.105993 0.009623 0.244999 }
+      }
+      <Normal> { 0.710166 0.645100 0.281899 }
+    }
+    <Vertex> 2054 {
+      -0.798693180084 -0.0384038165212 3.16977739334
+      <UV>  {
+        0.431245 0.687626
+        <Tangent> { -0.449978 0.611827 -0.650529 }
+        <Binormal> { -0.539099 -0.704075 -0.289286 }
+      }
+      <Normal> { 0.472823 0.000000 -0.881130 }
+    }
+    <Vertex> 2055 {
+      -0.672686398029 0.55855691433 2.96058607101
+      <UV>  {
+        0.714950 0.812622
+        <Tangent> { -0.002355 -0.950896 -0.309502 }
+        <Binormal> { 0.665928 0.036336 -0.116705 }
+      }
+      <Normal> { -0.120487 0.906156 -0.405377 }
+    }
+    <Vertex> 2056 {
+      -0.585591614246 0.359569996595 3.03201723099
+      <UV>  {
+        0.703738 0.833182
+        <Tangent> { -0.439275 -0.860550 -0.257860 }
+        <Binormal> { 0.675105 -0.276837 -0.226188 }
+      }
+      <Normal> { 0.160192 0.828730 -0.536180 }
+    }
+    <Vertex> 2057 {
+      -0.797497332096 0.42620664835 2.85241532326
+      <UV>  {
+        0.680896 0.810762
+        <Tangent> { -0.943545 0.271912 -0.189174 }
+        <Binormal> { -0.184983 -0.785432 -0.206309 }
+      }
+      <Normal> { 0.726859 0.009186 -0.686697 }
+    }
+    <Vertex> 2058 {
+      -0.672686398029 0.55855691433 2.96058607101
+      <UV>  {
+        0.714950 0.812622
+        <Tangent> { -0.002355 -0.950896 -0.309502 }
+        <Binormal> { 0.665928 0.036336 -0.116705 }
+      }
+      <Normal> { -0.120487 0.906156 -0.405377 }
+    }
+    <Vertex> 2059 {
+      -0.79841196537 0.713765025139 2.88561964035
+      <UV>  {
+        0.750195 0.796438
+        <Tangent> { 0.555244 -0.830883 -0.036571 }
+        <Binormal> { 0.406372 0.303347 -0.722162 }
+      }
+      <Normal> { -0.872311 0.004730 -0.488876 }
+    }
+    <Vertex> 2060 {
+      -0.646557986736 0.670805931091 3.08303952217
+      <UV>  {
+        0.730818 0.829994
+        <Tangent> { 0.436015 -0.891862 -0.120307 }
+        <Binormal> { 0.494329 0.250452 -0.065119 }
+      }
+      <Normal> { -0.450026 0.771172 -0.450240 }
+    }
+    <Vertex> 2061 {
+      -0.585591614246 0.359569996595 3.03201723099
+      <UV>  {
+        0.703738 0.833182
+        <Tangent> { -0.439275 -0.860550 -0.257860 }
+        <Binormal> { 0.675105 -0.276837 -0.226188 }
+      }
+      <Normal> { 0.160192 0.828730 -0.536180 }
+    }
+    <Vertex> 2062 {
+      -0.672686398029 0.55855691433 2.96058607101
+      <UV>  {
+        0.714950 0.812622
+        <Tangent> { -0.002355 -0.950896 -0.309502 }
+        <Binormal> { 0.665928 0.036336 -0.116705 }
+      }
+      <Normal> { -0.120487 0.906156 -0.405377 }
+    }
+    <Vertex> 2063 {
+      -0.646557986736 0.670805931091 3.08303952217
+      <UV>  {
+        0.730818 0.829994
+        <Tangent> { 0.436015 -0.891862 -0.120307 }
+        <Binormal> { 0.494329 0.250452 -0.065119 }
+      }
+      <Normal> { -0.450026 0.771172 -0.450240 }
+    }
+    <Vertex> 2064 {
+      -0.797497332096 0.42620664835 2.85241532326
+      <UV>  {
+        0.680896 0.810762
+        <Tangent> { -0.943545 0.271912 -0.189174 }
+        <Binormal> { -0.184983 -0.785432 -0.206309 }
+      }
+      <Normal> { 0.726859 0.009186 -0.686697 }
+    }
+    <Vertex> 2065 {
+      -0.797497332096 0.42441290617 2.76228928566
+      <UV>  {
+        0.671441 0.794732
+        <Tangent> { -0.761562 -0.220702 -0.609355 }
+        <Binormal> { -0.125630 -0.044728 0.173211 }
+      }
+      <Normal> { 0.808618 0.006897 0.588275 }
+    }
+    <Vertex> 2066 {
+      -0.675702154636 0.538147985935 2.81772351265
+      <UV>  {
+        0.706644 0.785337
+        <Tangent> { 0.062708 -0.943354 -0.325809 }
+        <Binormal> { 0.176674 -0.002162 0.040263 }
+      }
+      <Normal> { -0.022980 0.987793 0.153874 }
+    }
+    <Vertex> 2067 {
+      -0.675702154636 0.538147985935 2.81772351265
+      <UV>  {
+        0.706644 0.785337
+        <Tangent> { 0.062708 -0.943354 -0.325809 }
+        <Binormal> { 0.176674 -0.002162 0.040263 }
+      }
+      <Normal> { -0.022980 0.987793 0.153874 }
+    }
+    <Vertex> 2068 {
+      -0.797497332096 0.680560708046 2.75754570961
+      <UV>  {
+        0.747679 0.770120
+        <Tangent> { 0.764143 -0.638939 0.088554 }
+        <Binormal> { -0.169064 -0.287200 -0.613350 }
+      }
+      <Normal> { -0.964476 0.003784 0.264077 }
+    }
+    <Vertex> 2069 {
+      -0.79841196537 0.713765025139 2.88561964035
+      <UV>  {
+        0.750195 0.796438
+        <Tangent> { 0.555244 -0.830883 -0.036571 }
+        <Binormal> { 0.406372 0.303347 -0.722162 }
+      }
+      <Normal> { -0.872311 0.004730 -0.488876 }
+    }
+    <Vertex> 2070 {
+      -0.79841196537 0.713765025139 2.88561964035
+      <UV>  {
+        0.750195 0.796438
+        <Tangent> { 0.555244 -0.830883 -0.036571 }
+        <Binormal> { 0.406372 0.303347 -0.722162 }
+      }
+      <Normal> { -0.872311 0.004730 -0.488876 }
+    }
+    <Vertex> 2071 {
+      -0.672686398029 0.55855691433 2.96058607101
+      <UV>  {
+        0.714950 0.812622
+        <Tangent> { -0.002355 -0.950896 -0.309502 }
+        <Binormal> { 0.665928 0.036336 -0.116705 }
+      }
+      <Normal> { -0.120487 0.906156 -0.405377 }
+    }
+    <Vertex> 2072 {
+      -0.675702154636 0.538147985935 2.81772351265
+      <UV>  {
+        0.706644 0.785337
+        <Tangent> { 0.062708 -0.943354 -0.325809 }
+        <Binormal> { 0.176674 -0.002162 0.040263 }
+      }
+      <Normal> { -0.022980 0.987793 0.153874 }
+    }
+    <Vertex> 2073 {
+      -0.672686398029 0.55855691433 2.96058607101
+      <UV>  {
+        0.714950 0.812622
+        <Tangent> { -0.002355 -0.950896 -0.309502 }
+        <Binormal> { 0.665928 0.036336 -0.116705 }
+      }
+      <Normal> { -0.120487 0.906156 -0.405377 }
+    }
+    <Vertex> 2074 {
+      -0.797497332096 0.42620664835 2.85241532326
+      <UV>  {
+        0.680896 0.810762
+        <Tangent> { -0.943545 0.271912 -0.189174 }
+        <Binormal> { -0.184983 -0.785432 -0.206309 }
+      }
+      <Normal> { 0.726859 0.009186 -0.686697 }
+    }
+    <Vertex> 2075 {
+      -0.675702154636 0.538147985935 2.81772351265
+      <UV>  {
+        0.706644 0.785337
+        <Tangent> { 0.062708 -0.943354 -0.325809 }
+        <Binormal> { 0.176674 -0.002162 0.040263 }
+      }
+      <Normal> { -0.022980 0.987793 0.153874 }
+    }
+    <Vertex> 2076 {
+      -0.302306413651 0.713942289352 4.48781347275
+      <UV>  {
+        0.698613 0.974202
+        <Tangent> { 0.724575 0.028225 -0.688618 }
+        <Binormal> { 0.046446 0.078501 0.052089 }
+      }
+      <Normal> { -0.776086 0.041658 0.629231 }
+    }
+    <Vertex> 2077 {
+      -0.471986293793 0.725830376148 4.28954601288
+      <UV>  {
+        0.698613 0.871042
+        <Tangent> { 0.724575 0.028225 -0.688618 }
+        <Binormal> { -0.468050 -0.280600 -0.503991 }
+      }
+      <Normal> { -0.277596 -0.706381 0.651082 }
+    }
+    <Vertex> 2078 {
+      -0.424059480429 0.721563518047 4.36321544647
+      <UV>  {
+        0.707691 0.905249
+        <Tangent> { 0.724575 0.028225 -0.688618 }
+        <Binormal> { 0.008280 0.650456 0.035373 }
+      }
+      <Normal> { -0.998627 0.009919 0.051363 }
+    }
+    <Vertex> 2079 {
+      -0.277917385101 0.717489421368 4.4141740799
+      <UV>  {
+        0.709175 0.644415
+        <Tangent> { 0.471910 -0.189647 0.861008 }
+        <Binormal> { -0.676214 0.547529 0.491226 }
+      }
+      <Normal> { 0.583544 0.806421 -0.095553 }
+    }
+    <Vertex> 2080 {
+      -0.33470723033 0.724782884121 4.28339624405
+      <UV>  {
+        0.706590 0.623927
+        <Tangent> { 0.471910 -0.189647 0.861008 }
+        <Binormal> { -0.550004 0.699348 0.455491 }
+      }
+      <Normal> { 0.674581 0.694113 -0.251167 }
+    }
+    <Vertex> 2081 {
+      -0.41258251667 0.830952644348 4.27228593826
+      <UV>  {
+        0.701694 0.722717
+        <Tangent> { 0.471910 -0.189647 0.861008 }
+        <Binormal> { -0.100259 -0.844141 -0.130981 }
+      }
+      <Normal> { -0.992370 0.121250 -0.021821 }
+    }
+    <Vertex> 2082 {
+      -0.41258251667 0.830952644348 4.27228593826
+      <UV>  {
+        0.698613 0.767826
+        <Tangent> { 0.338105 -0.404575 0.849708 }
+        <Binormal> { -0.094199 -0.835848 -0.360493 }
+      }
+      <Normal> { -0.992370 0.121250 -0.021821 }
+    }
+    <Vertex> 2083 {
+      -0.302306413651 0.713942289352 4.48781347275
+      <UV>  {
+        0.701694 0.722717
+        <Tangent> { 0.338105 -0.404575 0.849708 }
+        <Binormal> { -0.289968 -0.872192 -0.299900 }
+      }
+      <Normal> { -0.776086 0.041658 0.629231 }
+    }
+    <Vertex> 2084 {
+      -0.277917385101 0.717489421368 4.4141740799
+      <UV>  {
+        0.706590 0.623927
+        <Tangent> { 0.338105 -0.404575 0.849708 }
+        <Binormal> { -0.646564 0.528150 0.508742 }
+      }
+      <Normal> { 0.583544 0.806421 -0.095553 }
+    }
+    <Vertex> 2085 {
+      -0.41258251667 0.830952644348 4.27228593826
+      <UV>  {
+        0.698613 0.619373
+        <Tangent> { 0.418529 -0.424830 0.802716 }
+        <Binormal> { -0.088059 -0.787459 -0.370842 }
+      }
+      <Normal> { -0.992370 0.121250 -0.021821 }
+    }
+    <Vertex> 2086 {
+      -0.471986293793 0.725830376148 4.28954601288
+      <UV>  {
+        0.698613 0.767826
+        <Tangent> { 0.418529 -0.424830 0.802716 }
+        <Binormal> { 0.290424 -0.495328 -0.413573 }
+      }
+      <Normal> { -0.277596 -0.706381 0.651082 }
+    }
+    <Vertex> 2087 {
+      -0.302306413651 0.713942289352 4.48781347275
+      <UV>  {
+        0.706590 0.623927
+        <Tangent> { 0.418529 -0.424830 0.802716 }
+        <Binormal> { -0.300756 -0.886328 -0.312270 }
+      }
+      <Normal> { -0.776086 0.041658 0.629231 }
+    }
+    <Vertex> 2088 {
+      -0.410052448511 0.698126614094 4.0635843277
+      <UV>  {
+        0.706590 0.623927
+        <Tangent> { 0.099139 0.415600 0.904128 }
+        <Binormal> { -0.687773 0.670042 -0.232582 }
+      }
+      <Normal> { 0.687155 0.534593 -0.491897 }
+    }
+    <Vertex> 2089 {
+      -0.41258251667 0.830952644348 4.27228593826
+      <UV>  {
+        0.709175 0.644415
+        <Tangent> { 0.099139 0.415600 0.904128 }
+        <Binormal> { -0.118694 -0.895067 0.424450 }
+      }
+      <Normal> { -0.992370 0.121250 -0.021821 }
+    }
+    <Vertex> 2090 {
+      -0.33470723033 0.724782884121 4.28339624405
+      <UV>  {
+        0.710352 0.582616
+        <Tangent> { 0.099139 0.415600 0.904128 }
+        <Binormal> { -0.731952 0.634808 -0.211542 }
+      }
+      <Normal> { 0.674581 0.694113 -0.251167 }
+    }
+    <Vertex> 2091 {
+      -0.41258251667 0.830952644348 4.27228593826
+      <UV>  {
+        0.708954 0.613064
+        <Tangent> { 0.167294 0.482089 0.860002 }
+        <Binormal> { -0.114795 -0.849790 0.498695 }
+      }
+      <Normal> { -0.992370 0.121250 -0.021821 }
+    }
+    <Vertex> 2092 {
+      -0.439745724201 0.697657167912 4.06385231018
+      <UV>  {
+        0.701257 0.610833
+        <Tangent> { 0.167294 0.482089 0.860002 }
+        <Binormal> { -0.747345 0.626453 -0.205790 }
+      }
+      <Normal> { 0.651570 0.647511 -0.395123 }
+    }
+    <Vertex> 2093 {
+      -0.515289545059 0.8028023839 4.07918691635
+      <UV>  {
+        0.706590 0.623927
+        <Tangent> { 0.167294 0.482089 0.860002 }
+        <Binormal> { 0.100825 -0.791697 0.424186 }
+      }
+      <Normal> { -0.956938 -0.222022 -0.186926 }
+    }
+    <Vertex> 2094 {
+      -0.41258251667 0.830952644348 4.27228593826
+      <UV>  {
+        0.710352 0.582616
+        <Tangent> { -0.327634 0.502399 0.800157 }
+        <Binormal> { -0.107982 -0.801202 0.458840 }
+      }
+      <Normal> { -0.992370 0.121250 -0.021821 }
+    }
+    <Vertex> 2095 {
+      -0.410052448511 0.698126614094 4.0635843277
+      <UV>  {
+        0.708954 0.613064
+        <Tangent> { -0.327634 0.502399 0.800157 }
+        <Binormal> { -0.674887 0.388669 -0.520376 }
+      }
+      <Normal> { 0.687155 0.534593 -0.491897 }
+    }
+    <Vertex> 2096 {
+      -0.439745724201 0.697657167912 4.06385231018
+      <UV>  {
+        0.706590 0.623927
+        <Tangent> { -0.327634 0.502399 0.800157 }
+        <Binormal> { -0.716620 0.391903 -0.539495 }
+      }
+      <Normal> { 0.651570 0.647511 -0.395123 }
+    }
+    <Vertex> 2097 {
+      -0.41258251667 0.830952644348 4.27228593826
+      <UV>  {
+        0.705084 0.601666
+        <Tangent> { 0.589602 0.210088 0.779893 }
+        <Binormal> { -0.099146 -0.761077 0.279974 }
+      }
+      <Normal> { -0.992370 0.121250 -0.021821 }
+    }
+    <Vertex> 2098 {
+      -0.596607685089 0.698599100113 4.1050992012
+      <UV>  {
+        0.698613 0.619373
+        <Tangent> { 0.589602 0.210088 0.779893 }
+        <Binormal> { 0.602781 0.199367 -0.509410 }
+      }
+      <Normal> { 0.604968 -0.648427 0.462081 }
+    }
+    <Vertex> 2099 {
+      -0.471986293793 0.725830376148 4.28954601288
+      <UV>  {
+        0.706590 0.623927
+        <Tangent> { 0.589602 0.210088 0.779893 }
+        <Binormal> { 0.687686 -0.600374 -0.358164 }
+      }
+      <Normal> { -0.277596 -0.706381 0.651082 }
+    }
+    <Vertex> 2100 {
+      -0.41258251667 0.830952644348 4.27228593826
+      <UV>  {
+        0.701257 0.610833
+        <Tangent> { 0.571059 0.297954 0.764928 }
+        <Binormal> { -0.099249 -0.746631 0.364922 }
+      }
+      <Normal> { -0.992370 0.121250 -0.021821 }
+    }
+    <Vertex> 2101 {
+      -0.515289545059 0.8028023839 4.07918691635
+      <UV>  {
+        0.705084 0.601666
+        <Tangent> { 0.571059 0.297954 0.764928 }
+        <Binormal> { 0.114136 -0.625244 0.158336 }
+      }
+      <Normal> { -0.956938 -0.222022 -0.186926 }
+    }
+    <Vertex> 2102 {
+      -0.596607685089 0.698599100113 4.1050992012
+      <UV>  {
+        0.706590 0.623927
+        <Tangent> { 0.571059 0.297954 0.764928 }
+        <Binormal> { 0.633679 0.198882 -0.550542 }
+      }
+      <Normal> { 0.604968 -0.648427 0.462081 }
+    }
+    <Vertex> 2103 {
+      -0.667665302753 0.643354415894 3.92317056656
+      <UV>  {
+        0.705084 0.601666
+        <Tangent> { 0.406317 0.350270 0.843930 }
+        <Binormal> { 0.726488 0.424257 -0.525860 }
+      }
+      <Normal> { 0.593066 -0.782952 0.187658 }
+    }
+    <Vertex> 2104 {
+      -0.596607685089 0.698599100113 4.1050992012
+      <UV>  {
+        0.701257 0.610833
+        <Tangent> { 0.406317 0.350270 0.843930 }
+        <Binormal> { 0.709080 0.322799 -0.475369 }
+      }
+      <Normal> { 0.604968 -0.648427 0.462081 }
+    }
+    <Vertex> 2105 {
+      -0.515289545059 0.8028023839 4.07918691635
+      <UV>  {
+        0.706968 0.558832
+        <Tangent> { 0.406317 0.350270 0.843930 }
+        <Binormal> { 0.121896 -0.731637 0.244976 }
+      }
+      <Normal> { -0.956938 -0.222022 -0.186926 }
+    }
+    <Vertex> 2106 {
+      -0.515289545059 0.8028023839 4.07918691635
+      <UV>  {
+        0.706865 0.547404
+        <Tangent> { 0.515811 0.558180 0.649903 }
+        <Binormal> { 0.039955 -0.525499 0.419622 }
+      }
+      <Normal> { -0.956938 -0.222022 -0.186926 }
+    }
+    <Vertex> 2107 {
+      -0.659627258778 0.647589564323 3.90380716324
+      <UV>  {
+        0.706968 0.558832
+        <Tangent> { 0.515811 0.558180 0.649903 }
+        <Binormal> { 0.592592 0.245405 -0.681095 }
+      }
+      <Normal> { 0.721793 -0.539354 0.433668 }
+    }
+    <Vertex> 2108 {
+      -0.667665302753 0.643354415894 3.92317056656
+      <UV>  {
+        0.701257 0.610833
+        <Tangent> { 0.515811 0.558180 0.649903 }
+        <Binormal> { 0.613591 0.288640 -0.734893 }
+      }
+      <Normal> { 0.593066 -0.782952 0.187658 }
+    }
+    <Vertex> 2109 {
+      -0.611104369164 0.752967894077 3.88914179802
+      <UV>  {
+        0.715881 0.520351
+        <Tangent> { 0.604271 0.485067 0.632113 }
+        <Binormal> { 0.014574 -0.524625 0.388652 }
+      }
+      <Normal> { -0.977752 -0.141697 -0.154607 }
+    }
+    <Vertex> 2110 {
+      -0.764142334461 0.580223917961 3.77819442749
+      <UV>  {
+        0.706865 0.547404
+        <Tangent> { 0.604271 0.485067 0.632113 }
+        <Binormal> { 0.513388 -0.353160 -0.219770 }
+      }
+      <Normal> { 0.336924 -0.093234 0.936888 }
+    }
+    <Vertex> 2111 {
+      -0.659627258778 0.647589564323 3.90380716324
+      <UV>  {
+        0.701026 0.556368
+        <Tangent> { 0.604271 0.485067 0.632113 }
+        <Binormal> { 0.551290 0.194202 -0.676034 }
+      }
+      <Normal> { 0.721793 -0.539354 0.433668 }
+    }
+    <Vertex> 2112 {
+      -0.439745724201 0.697657167912 4.06385231018
+      <UV>  {
+        0.712239 0.565927
+        <Tangent> { -0.002145 0.647175 0.762339 }
+        <Binormal> { -0.749337 0.495870 -0.423068 }
+      }
+      <Normal> { 0.651570 0.647511 -0.395123 }
+    }
+    <Vertex> 2113 {
+      -0.511234283447 0.653316438198 3.90823769569
+      <UV>  {
+        0.701257 0.610833
+        <Tangent> { -0.002145 0.647175 0.762339 }
+        <Binormal> { -0.691448 0.465097 -0.396781 }
+      }
+      <Normal> { 0.610523 0.777001 -0.153142 }
+    }
+    <Vertex> 2114 {
+      -0.515289545059 0.8028023839 4.07918691635
+      <UV>  {
+        0.708954 0.613064
+        <Tangent> { -0.002145 0.647175 0.762339 }
+        <Binormal> { 0.048282 -0.729912 0.619783 }
+      }
+      <Normal> { -0.956938 -0.222022 -0.186926 }
+    }
+    <Vertex> 2115 {
+      -0.511234283447 0.653316438198 3.90823769569
+      <UV>  {
+        0.712211 0.484655
+        <Tangent> { -0.033779 0.571495 0.819910 }
+        <Binormal> { -0.724591 0.495401 -0.375157 }
+      }
+      <Normal> { 0.610523 0.777001 -0.153142 }
+    }
+    <Vertex> 2116 {
+      -0.589840054512 0.580223917961 3.66037225723
+      <UV>  {
+        0.701026 0.556368
+        <Tangent> { -0.033779 0.571495 0.819910 }
+        <Binormal> { -0.530675 0.196650 -0.158932 }
+      }
+      <Normal> { 0.224738 0.902799 0.366649 }
+    }
+    <Vertex> 2117 {
+      -0.611104369164 0.752967894077 3.88914179802
+      <UV>  {
+        0.712239 0.565927
+        <Tangent> { -0.033779 0.571495 0.819910 }
+        <Binormal> { 0.027822 -0.806891 0.563567 }
+      }
+      <Normal> { -0.977752 -0.141697 -0.154607 }
+    }
+    <Vertex> 2118 {
+      -0.515289545059 0.8028023839 4.07918691635
+      <UV>  {
+        0.712239 0.565927
+        <Tangent> { 0.061507 0.602568 0.795694 }
+        <Binormal> { 0.064026 -0.749933 0.562964 }
+      }
+      <Normal> { -0.956938 -0.222022 -0.186926 }
+    }
+    <Vertex> 2119 {
+      -0.511234283447 0.653316438198 3.90823769569
+      <UV>  {
+        0.701026 0.556368
+        <Tangent> { 0.061507 0.602568 0.795694 }
+        <Binormal> { -0.710534 0.495209 -0.320090 }
+      }
+      <Normal> { 0.610523 0.777001 -0.153142 }
+    }
+    <Vertex> 2120 {
+      -0.611104369164 0.752967894077 3.88914179802
+      <UV>  {
+        0.701257 0.610833
+        <Tangent> { 0.061507 0.602568 0.795694 }
+        <Binormal> { 0.019587 -0.768482 0.580447 }
+      }
+      <Normal> { -0.977752 -0.141697 -0.154607 }
+    }
+    <Vertex> 2121 {
+      -0.611104369164 0.752967894077 3.88914179802
+      <UV>  {
+        0.706865 0.547404
+        <Tangent> { 0.458866 0.289277 0.840096 }
+        <Binormal> { 0.074315 -0.750462 0.217821 }
+      }
+      <Normal> { -0.977752 -0.141697 -0.154607 }
+    }
+    <Vertex> 2122 {
+      -0.659627258778 0.647589564323 3.90380716324
+      <UV>  {
+        0.701257 0.610833
+        <Tangent> { 0.458866 0.289277 0.840096 }
+        <Binormal> { 0.578559 0.407380 -0.456289 }
+      }
+      <Normal> { 0.721793 -0.539354 0.433668 }
+    }
+    <Vertex> 2123 {
+      -0.515289545059 0.8028023839 4.07918691635
+      <UV>  {
+        0.701026 0.556368
+        <Tangent> { 0.458866 0.289277 0.840096 }
+        <Binormal> { 0.132446 -0.718146 0.174942 }
+      }
+      <Normal> { -0.956938 -0.222022 -0.186926 }
+    }
+    <Vertex> 2124 {
+      -0.417893618345 0.760114848614 4.26100206375
+      <UV>  {
+        0.709175 0.644415
+        <Tangent> { 0.697609 -0.224526 0.680389 }
+        <Binormal> { 0.005988 0.649455 0.208178 }
+      }
+      <Normal> { 0.998779 -0.023041 0.043153 }
+    }
+    <Vertex> 2125 {
+      -0.33470723033 0.724782884121 4.28339624405
+      <UV>  {
+        0.701694 0.722717
+        <Tangent> { 0.697609 -0.224526 0.680389 }
+        <Binormal> { -0.415873 0.634194 0.635681 }
+      }
+      <Normal> { 0.674581 0.694113 -0.251167 }
+    }
+    <Vertex> 2126 {
+      -0.277917385101 0.717489421368 4.4141740799
+      <UV>  {
+        0.705937 0.622219
+        <Tangent> { 0.697609 -0.224526 0.680389 }
+        <Binormal> { -0.527226 0.463696 0.693588 }
+      }
+      <Normal> { 0.583544 0.806421 -0.095553 }
+    }
+    <Vertex> 2127 {
+      -0.277917385101 0.717489421368 4.4141740799
+      <UV>  {
+        0.698613 0.767826
+        <Tangent> { 0.589742 -0.194729 0.783763 }
+        <Binormal> { -0.613436 0.513713 0.589214 }
+      }
+      <Normal> { 0.583544 0.806421 -0.095553 }
+    }
+    <Vertex> 2128 {
+      -0.302306413651 0.713942289352 4.48781347275
+      <UV>  {
+        0.705937 0.622219
+        <Tangent> { 0.589742 -0.194729 0.783763 }
+        <Binormal> { -0.155179 -0.979351 -0.126559 }
+      }
+      <Normal> { -0.776086 0.041658 0.629231 }
+    }
+    <Vertex> 2129 {
+      -0.417893618345 0.760114848614 4.26100206375
+      <UV>  {
+        0.701694 0.722717
+        <Tangent> { 0.589742 -0.194729 0.783763 }
+        <Binormal> { 0.009656 0.757357 0.180903 }
+      }
+      <Normal> { 0.998779 -0.023041 0.043153 }
+    }
+    <Vertex> 2130 {
+      -0.302306413651 0.713942289352 4.48781347275
+      <UV>  {
+        0.698613 0.619373
+        <Tangent> { 0.652992 -0.042904 0.756149 }
+        <Binormal> { -0.058496 -0.997719 -0.006095 }
+      }
+      <Normal> { -0.776086 0.041658 0.629231 }
+    }
+    <Vertex> 2131 {
+      -0.471986293793 0.725830376148 4.28954601288
+      <UV>  {
+        0.705937 0.622219
+        <Tangent> { 0.652992 -0.042904 0.756149 }
+        <Binormal> { 0.506196 -0.635055 -0.473171 }
+      }
+      <Normal> { -0.277596 -0.706381 0.651082 }
+    }
+    <Vertex> 2132 {
+      -0.417893618345 0.760114848614 4.26100206375
+      <UV>  {
+        0.698613 0.767826
+        <Tangent> { 0.652992 -0.042904 0.756149 }
+        <Binormal> { 0.015571 0.727047 0.027805 }
+      }
+      <Normal> { 0.998779 -0.023041 0.043153 }
+    }
+    <Vertex> 2133 {
+      -0.33470723033 0.724782884121 4.28339624405
+      <UV>  {
+        0.705937 0.622219
+        <Tangent> { 0.464610 0.026108 0.885130 }
+        <Binormal> { -0.620938 0.713787 0.304880 }
+      }
+      <Normal> { 0.674581 0.694113 -0.251167 }
+    }
+    <Vertex> 2134 {
+      -0.417893618345 0.760114848614 4.26100206375
+      <UV>  {
+        0.710352 0.582616
+        <Tangent> { 0.464610 0.026108 0.885130 }
+        <Binormal> { 0.021521 0.864000 -0.036781 }
+      }
+      <Normal> { 0.998779 -0.023041 0.043153 }
+    }
+    <Vertex> 2135 {
+      -0.410052448511 0.698126614094 4.0635843277
+      <UV>  {
+        0.709175 0.644415
+        <Tangent> { 0.464610 0.026108 0.885130 }
+        <Binormal> { -0.486026 0.836762 0.230437 }
+      }
+      <Normal> { 0.687155 0.534593 -0.491897 }
+    }
+    <Vertex> 2136 {
+      -0.515008926392 0.731285870075 4.08064079285
+      <UV>  {
+        0.708954 0.613064
+        <Tangent> { 0.596743 0.066818 0.799646 }
+        <Binormal> { -0.099244 0.674150 0.017730 }
+      }
+      <Normal> { 0.974517 0.138829 0.176153 }
+    }
+    <Vertex> 2137 {
+      -0.439745724201 0.697657167912 4.06385231018
+      <UV>  {
+        0.705937 0.622219
+        <Tangent> { 0.596743 0.066818 0.799646 }
+        <Binormal> { -0.544181 0.756812 0.342861 }
+      }
+      <Normal> { 0.651570 0.647511 -0.395123 }
+    }
+    <Vertex> 2138 {
+      -0.417893618345 0.760114848614 4.26100206375
+      <UV>  {
+        0.712279 0.609156
+        <Tangent> { 0.596743 0.066818 0.799646 }
+        <Binormal> { 0.021308 0.772918 -0.080486 }
+      }
+      <Normal> { 0.998779 -0.023041 0.043153 }
+    }
+    <Vertex> 2139 {
+      -0.439745724201 0.697657167912 4.06385231018
+      <UV>  {
+        0.710352 0.582616
+        <Tangent> { -0.004723 0.300134 0.953885 }
+        <Binormal> { -0.736241 0.619657 -0.198617 }
+      }
+      <Normal> { 0.651570 0.647511 -0.395123 }
+    }
+    <Vertex> 2140 {
+      -0.410052448511 0.698126614094 4.0635843277
+      <UV>  {
+        0.705937 0.622219
+        <Tangent> { -0.004723 0.300134 0.953885 }
+        <Binormal> { -0.657575 0.653144 -0.208763 }
+      }
+      <Normal> { 0.687155 0.534593 -0.491897 }
+    }
+    <Vertex> 2141 {
+      -0.417893618345 0.760114848614 4.26100206375
+      <UV>  {
+        0.708954 0.613064
+        <Tangent> { -0.004723 0.300134 0.953885 }
+        <Binormal> { 0.034931 0.952925 -0.299659 }
+      }
+      <Normal> { 0.998779 -0.023041 0.043153 }
+    }
+    <Vertex> 2142 {
+      -0.471986293793 0.725830376148 4.28954601288
+      <UV>  {
+        0.705084 0.601666
+        <Tangent> { 0.749570 0.268082 0.605209 }
+        <Binormal> { 0.602052 -0.656035 -0.455063 }
+      }
+      <Normal> { -0.277596 -0.706381 0.651082 }
+    }
+    <Vertex> 2143 {
+      -0.596607685089 0.698599100113 4.1050992012
+      <UV>  {
+        0.705937 0.622219
+        <Tangent> { 0.749570 0.268082 0.605209 }
+        <Binormal> { 0.516309 0.019770 -0.648222 }
+      }
+      <Normal> { 0.604968 -0.648427 0.462081 }
+    }
+    <Vertex> 2144 {
+      -0.417893618345 0.760114848614 4.26100206375
+      <UV>  {
+        0.698613 0.619373
+        <Tangent> { 0.749570 0.268082 0.605209 }
+        <Binormal> { 0.025513 0.572123 -0.285026 }
+      }
+      <Normal> { 0.998779 -0.023041 0.043153 }
+    }
+    <Vertex> 2145 {
+      -0.596607685089 0.698599100113 4.1050992012
+      <UV>  {
+        0.712279 0.609156
+        <Tangent> { 0.810428 0.288437 0.509912 }
+        <Binormal> { 0.463922 -0.066003 -0.699999 }
+      }
+      <Normal> { 0.604968 -0.648427 0.462081 }
+    }
+    <Vertex> 2146 {
+      -0.515008926392 0.731285870075 4.08064079285
+      <UV>  {
+        0.705937 0.622219
+        <Tangent> { 0.810428 0.288437 0.509912 }
+        <Binormal> { -0.019981 0.354158 -0.168576 }
+      }
+      <Normal> { 0.974517 0.138829 0.176153 }
+    }
+    <Vertex> 2147 {
+      -0.417893618345 0.760114848614 4.26100206375
+      <UV>  {
+        0.705084 0.601666
+        <Tangent> { 0.810428 0.288437 0.509912 }
+        <Binormal> { 0.024196 0.474317 -0.306759 }
+      }
+      <Normal> { 0.998779 -0.023041 0.043153 }
+    }
+    <Vertex> 2148 {
+      -0.515008926392 0.731285870075 4.08064079285
+      <UV>  {
+        0.705084 0.601666
+        <Tangent> { 0.680887 0.381988 0.624882 }
+        <Binormal> { -0.019463 0.489018 -0.277727 }
+      }
+      <Normal> { 0.974517 0.138829 0.176153 }
+    }
+    <Vertex> 2149 {
+      -0.596607685089 0.698599100113 4.1050992012
+      <UV>  {
+        0.706968 0.558832
+        <Tangent> { 0.680887 0.381988 0.624882 }
+        <Binormal> { 0.581699 0.063409 -0.672596 }
+      }
+      <Normal> { 0.604968 -0.648427 0.462081 }
+    }
+    <Vertex> 2150 {
+      -0.667665302753 0.643354415894 3.92317056656
+      <UV>  {
+        0.712279 0.609156
+        <Tangent> { 0.680887 0.381988 0.624882 }
+        <Binormal> { 0.560936 0.242822 -0.759646 }
+      }
+      <Normal> { 0.593066 -0.782952 0.187658 }
+    }
+    <Vertex> 2151 {
+      -0.667665302753 0.643354415894 3.92317056656
+      <UV>  {
+        0.706865 0.547404
+        <Tangent> { 0.636621 0.367007 0.678248 }
+        <Binormal> { 0.599908 0.282779 -0.716103 }
+      }
+      <Normal> { 0.593066 -0.782952 0.187658 }
+    }
+    <Vertex> 2152 {
+      -0.659627258778 0.647589564323 3.90380716324
+      <UV>  {
+        0.712279 0.609156
+        <Tangent> { 0.636621 0.367007 0.678248 }
+        <Binormal> { 0.524975 0.213473 -0.608267 }
+      }
+      <Normal> { 0.721793 -0.539354 0.433668 }
+    }
+    <Vertex> 2153 {
+      -0.515008926392 0.731285870075 4.08064079285
+      <UV>  {
+        0.706968 0.558832
+        <Tangent> { 0.636621 0.367007 0.678248 }
+        <Binormal> { -0.029511 0.548821 -0.269273 }
+      }
+      <Normal> { 0.974517 0.138829 0.176153 }
+    }
+    <Vertex> 2154 {
+      -0.659627258778 0.647589564323 3.90380716324
+      <UV>  {
+        0.715881 0.520351
+        <Tangent> { 0.710858 0.468223 0.524832 }
+        <Binormal> { 0.486123 0.070544 -0.721364 }
+      }
+      <Normal> { 0.721793 -0.539354 0.433668 }
+    }
+    <Vertex> 2155 {
+      -0.764142334461 0.580223917961 3.77819442749
+      <UV>  {
+        0.713667 0.550139
+        <Tangent> { 0.710858 0.468223 0.524832 }
+        <Binormal> { 0.487604 -0.489165 -0.224032 }
+      }
+      <Normal> { 0.336924 -0.093234 0.936888 }
+    }
+    <Vertex> 2156 {
+      -0.609643697739 0.681852519512 3.89670991898
+      <UV>  {
+        0.706865 0.547404
+        <Tangent> { 0.710858 0.468223 0.524832 }
+        <Binormal> { 0.017046 0.334729 -0.321712 }
+      }
+      <Normal> { 0.955779 0.176977 0.234779 }
+    }
+    <Vertex> 2157 {
+      -0.515008926392 0.731285870075 4.08064079285
+      <UV>  {
+        0.712239 0.565927
+        <Tangent> { 0.440565 0.232400 0.867117 }
+        <Binormal> { -0.079443 0.767414 -0.165315 }
+      }
+      <Normal> { 0.974517 0.138829 0.176153 }
+    }
+    <Vertex> 2158 {
+      -0.511234283447 0.653316438198 3.90823769569
+      <UV>  {
+        0.708954 0.613064
+        <Tangent> { 0.440565 0.232400 0.867117 }
+        <Binormal> { -0.709342 0.596864 0.200434 }
+      }
+      <Normal> { 0.610523 0.777001 -0.153142 }
+    }
+    <Vertex> 2159 {
+      -0.439745724201 0.697657167912 4.06385231018
+      <UV>  {
+        0.712279 0.609156
+        <Tangent> { 0.440565 0.232400 0.867117 }
+        <Binormal> { -0.653295 0.739065 0.133845 }
+      }
+      <Normal> { 0.651570 0.647511 -0.395123 }
+    }
+    <Vertex> 2160 {
+      -0.609643697739 0.681852519512 3.89670991898
+      <UV>  {
+        0.712211 0.484655
+        <Tangent> { 0.367164 0.237569 0.899306 }
+        <Binormal> { -0.103380 0.773335 -0.162084 }
+      }
+      <Normal> { 0.955779 0.176977 0.234779 }
+    }
+    <Vertex> 2161 {
+      -0.589840054512 0.580223917961 3.66037225723
+      <UV>  {
+        0.712239 0.565927
+        <Tangent> { 0.367164 0.237569 0.899306 }
+        <Binormal> { -0.724788 0.067488 0.278085 }
+      }
+      <Normal> { 0.224738 0.902799 0.366649 }
+    }
+    <Vertex> 2162 {
+      -0.511234283447 0.653316438198 3.90823769569
+      <UV>  {
+        0.713667 0.550139
+        <Tangent> { 0.367164 0.237569 0.899306 }
+        <Binormal> { -0.735144 0.605275 0.140246 }
+      }
+      <Normal> { 0.610523 0.777001 -0.153142 }
+    }
+    <Vertex> 2163 {
+      -0.609643697739 0.681852519512 3.89670991898
+      <UV>  {
+        0.712239 0.565927
+        <Tangent> { 0.562072 0.167926 0.809862 }
+        <Binormal> { -0.103901 0.642086 -0.061026 }
+      }
+      <Normal> { 0.955779 0.176977 0.234779 }
+    }
+    <Vertex> 2164 {
+      -0.511234283447 0.653316438198 3.90823769569
+      <UV>  {
+        0.712279 0.609156
+        <Tangent> { 0.562072 0.167926 0.809862 }
+        <Binormal> { -0.654980 0.580516 0.334208 }
+      }
+      <Normal> { 0.610523 0.777001 -0.153142 }
+    }
+    <Vertex> 2165 {
+      -0.515008926392 0.731285870075 4.08064079285
+      <UV>  {
+        0.713667 0.550139
+        <Tangent> { 0.562072 0.167926 0.809862 }
+        <Binormal> { -0.082851 0.690214 -0.085615 }
+      }
+      <Normal> { 0.974517 0.138829 0.176153 }
+    }
+    <Vertex> 2166 {
+      -0.515008926392 0.731285870075 4.08064079285
+      <UV>  {
+        0.706865 0.547404
+        <Tangent> { 0.599772 0.348121 0.720475 }
+        <Binormal> { -0.038700 0.596464 -0.255984 }
+      }
+      <Normal> { 0.974517 0.138829 0.176153 }
+    }
+    <Vertex> 2167 {
+      -0.659627258778 0.647589564323 3.90380716324
+      <UV>  {
+        0.713667 0.550139
+        <Tangent> { 0.599772 0.348121 0.720475 }
+        <Binormal> { 0.539560 0.259932 -0.574761 }
+      }
+      <Normal> { 0.721793 -0.539354 0.433668 }
+    }
+    <Vertex> 2168 {
+      -0.609643697739 0.681852519512 3.89670991898
+      <UV>  {
+        0.712279 0.609156
+        <Tangent> { 0.599772 0.348121 0.720475 }
+        <Binormal> { -0.045776 0.547801 -0.226581 }
+      }
+      <Normal> { 0.955779 0.176977 0.234779 }
+    }
+    <Vertex> 2169 {
+      -0.609643697739 0.681852519512 3.89670991898
+      <UV>  {
+        0.715881 0.520351
+        <Tangent> { 0.273617 0.467479 0.840593 }
+        <Binormal> { -0.039011 0.739182 -0.398383 }
+      }
+      <Normal> { 0.955779 0.176977 0.234779 }
+    }
+    <Vertex> 2170 {
+      -0.764142334461 0.580223917961 3.77819442749
+      <UV>  {
+        0.712211 0.484655
+        <Tangent> { 0.273617 0.467479 0.840593 }
+        <Binormal> { 0.516348 0.026868 -0.183016 }
+      }
+      <Normal> { 0.336924 -0.093234 0.936888 }
+    }
+    <Vertex> 2171 {
+      -0.589840054512 0.580223917961 3.66037225723
+      <UV>  {
+        0.713667 0.550139
+        <Tangent> { 0.273617 0.467479 0.840593 }
+        <Binormal> { -0.587485 0.088592 0.141960 }
+      }
+      <Normal> { 0.224738 0.902799 0.366649 }
+    }
+    <Vertex> 2172 {
+      -0.677041113377 0.691214859486 3.71571516991
+      <UV>  {
+        0.714960 0.515277
+        <Tangent> { -0.460776 -0.820594 0.338099 }
+        <Binormal> { -0.661819 0.071588 -0.728207 }
+      }
+      <Normal> { -0.648427 0.425611 0.631153 }
+    }
+    <Vertex> 2173 {
+      -0.764142334461 0.580223917961 3.77819442749
+      <UV>  {
+        0.715881 0.520351
+        <Tangent> { -0.460776 -0.820594 0.338099 }
+        <Binormal> { -0.737282 0.545609 0.319438 }
+      }
+      <Normal> { 0.336924 -0.093234 0.936888 }
+    }
+    <Vertex> 2174 {
+      -0.589840054512 0.580223917961 3.66037225723
+      <UV>  {
+        0.712211 0.484655
+        <Tangent> { -0.460776 -0.820594 0.338099 }
+        <Binormal> { -0.606105 0.244927 -0.231569 }
+      }
+      <Normal> { 0.224738 0.902799 0.366649 }
+    }
+    <Vertex> 2175 {
+      -0.85937833786 -0.058812726289 3.2922334671
+      <UV>  {
+        0.431718 0.690966
+        <Tangent> { 0.780429 0.554225 -0.289423 }
+        <Binormal> { 0.265705 -0.711835 -0.646642 }
+      }
+      <Normal> { 0.511948 -0.465011 0.722251 }
+    }
+    <Vertex> 2176 {
+      -0.798693180084 -0.0384038165212 3.16977739334
+      <UV>  {
+        0.431245 0.687626
+        <Tangent> { -0.449978 0.611827 -0.650529 }
+        <Binormal> { -0.539099 -0.704075 -0.289286 }
+      }
+      <Normal> { 0.472823 0.000000 -0.881130 }
+    }
+    <Vertex> 2177 {
+      -0.738007545471 -0.0588127337396 3.2922308445
+      <UV>  {
+        0.417397 0.695313
+        <Tangent> { 0.839718 0.417794 0.346875 }
+        <Binormal> { -0.105993 0.009623 0.244999 }
+      }
+      <Normal> { 0.710166 0.645100 0.281899 }
+    }
+    <Vertex> 2178 {
+      -0.79841196537 0.122044183314 3.51198530197
+      <UV>  {
+        0.687692 0.863782
+        <Tangent> { -0.998621 -0.004429 -0.052307 }
+        <Binormal> { -0.000434 0.046050 0.004377 }
+      }
+      <Normal> { 0.995148 0.000031 0.098239 }
+    }
+    <Vertex> 2179 {
+      -0.85937833786 0.115921750665 3.2922334671
+      <UV>  {
+        0.685444 0.853688
+        <Tangent> { -0.870277 0.459849 0.176514 }
+        <Binormal> { 0.007608 -0.080642 0.247600 }
+      }
+      <Normal> { 0.712119 -0.660787 -0.237098 }
+    }
+    <Vertex> 2180 {
+      -0.738007485867 0.115921743214 3.2922308445
+      <UV>  {
+        0.688950 0.853577
+        <Tangent> { -0.867806 -0.409158 -0.281962 }
+        <Binormal> { 0.224101 -0.275949 -0.289292 }
+      }
+      <Normal> { 0.730705 0.677877 -0.080569 }
+    }
+    <Vertex> 2181 {
+      -0.85937833786 -0.058812726289 3.2922334671
+      <UV>  {
+        0.431718 0.690966
+        <Tangent> { 0.780429 0.554225 -0.289423 }
+        <Binormal> { 0.265705 -0.711835 -0.646642 }
+      }
+      <Normal> { 0.511948 -0.465011 0.722251 }
+    }
+    <Vertex> 2182 {
+      -0.738007485867 0.115921743214 3.2922308445
+      <UV>  {
+        0.490011 0.678525
+        <Tangent> { 0.915271 0.080022 -0.394811 }
+        <Binormal> { 0.261186 -0.214748 0.561969 }
+      }
+      <Normal> { 0.730705 0.677877 -0.080569 }
+    }
+    <Vertex> 2183 {
+      -0.85937833786 0.115921750665 3.2922334671
+      <UV>  {
+        0.454310 0.701676
+        <Tangent> { 0.282910 0.648782 -0.706431 }
+        <Binormal> { -0.620625 -0.435985 -0.648953 }
+      }
+      <Normal> { 0.712119 -0.660787 -0.237098 }
+    }
+    <Vertex> 2184 {
+      -0.85937833786 -0.058812726289 3.2922334671
+      <UV>  {
+        0.431718 0.690966
+        <Tangent> { 0.780429 0.554225 -0.289423 }
+        <Binormal> { 0.265705 -0.711835 -0.646642 }
+      }
+      <Normal> { 0.511948 -0.465011 0.722251 }
+    }
+    <Vertex> 2185 {
+      -0.738007545471 -0.0588127337396 3.2922308445
+      <UV>  {
+        0.417397 0.695313
+        <Tangent> { 0.839718 0.417794 0.346875 }
+        <Binormal> { -0.105993 0.009623 0.244999 }
+      }
+      <Normal> { 0.710166 0.645100 0.281899 }
+    }
+    <Vertex> 2186 {
+      -0.738007485867 0.115921743214 3.2922308445
+      <UV>  {
+        0.490011 0.678525
+        <Tangent> { 0.915271 0.080022 -0.394811 }
+        <Binormal> { 0.261186 -0.214748 0.561969 }
+      }
+      <Normal> { 0.730705 0.677877 -0.080569 }
+    }
+    <Vertex> 2187 {
+      -0.611104369164 0.752967894077 3.88914179802
+      <UV>  {
+        0.712211 0.484655
+        <Tangent> { -0.226031 0.669471 0.707615 }
+        <Binormal> { -0.003238 -0.726818 0.686604 }
+      }
+      <Normal> { -0.977752 -0.141697 -0.154607 }
+    }
+    <Vertex> 2188 {
+      -0.589840054512 0.580223917961 3.66037225723
+      <UV>  {
+        0.714960 0.515277
+        <Tangent> { -0.226031 0.669471 0.707615 }
+        <Binormal> { -0.393373 0.241902 -0.354516 }
+      }
+      <Normal> { 0.224738 0.902799 0.366649 }
+    }
+    <Vertex> 2189 {
+      -0.677041113377 0.691214859486 3.71571516991
+      <UV>  {
+        0.701026 0.556368
+        <Tangent> { -0.226031 0.669471 0.707615 }
+        <Binormal> { 0.121370 -0.316176 0.337902 }
+      }
+      <Normal> { -0.648427 0.425611 0.631153 }
+    }
+    <Vertex> 2190 {
+      -0.677041113377 0.691214859486 3.71571516991
+      <UV>  {
+        0.715881 0.520351
+        <Tangent> { 0.274522 0.235902 0.932195 }
+        <Binormal> { -0.247862 -0.777726 0.269805 }
+      }
+      <Normal> { -0.648427 0.425611 0.631153 }
+    }
+    <Vertex> 2191 {
+      -0.764142334461 0.580223917961 3.77819442749
+      <UV>  {
+        0.701026 0.556368
+        <Tangent> { 0.274522 0.235902 0.932195 }
+        <Binormal> { 0.307926 0.056883 -0.105076 }
+      }
+      <Normal> { 0.336924 -0.093234 0.936888 }
+    }
+    <Vertex> 2192 {
+      -0.611104369164 0.752967894077 3.88914179802
+      <UV>  {
+        0.714960 0.515277
+        <Tangent> { 0.274522 0.235902 0.932195 }
+        <Binormal> { 0.095618 -0.869013 0.191754 }
+      }
+      <Normal> { -0.977752 -0.141697 -0.154607 }
+    }
+    <Vertex> 2193 {
+      -0.911635160446 0.68100976944 3.70551323891
+      <UV>  {
+        0.730116 0.506398
+        <Tangent> { 0.892049 -0.426651 0.149055 }
+        <Binormal> { -0.212299 -0.668080 -0.641748 }
+      }
+      <Normal> { -0.650777 -0.408155 0.640187 }
+    }
+    <Vertex> 2194 {
+      -1.00754523277 0.580223917961 3.65527248383
+      <UV>  {
+        0.729613 0.484655
+        <Tangent> { -0.886195 0.110189 -0.450019 }
+        <Binormal> { -0.392150 0.186381 0.817874 }
+      }
+      <Normal> { 0.160558 -0.942869 0.291849 }
+    }
+    <Vertex> 2195 {
+      -1.00351023674 0.755449831486 3.86492824554
+      <UV>  {
+        0.720220 0.547835
+        <Tangent> { 0.689035 -0.553172 0.468223 }
+        <Binormal> { -0.011402 -0.317865 -0.358755 }
+      }
+      <Normal> { -0.951933 0.243568 -0.185553 }
+    }
+    <Vertex> 2196 {
+      -1.00351023674 0.755449831486 3.86492824554
+      <UV>  {
+        0.720220 0.547835
+        <Tangent> { 0.689035 -0.553172 0.468223 }
+        <Binormal> { -0.011402 -0.317865 -0.358755 }
+      }
+      <Normal> { -0.951933 0.243568 -0.185553 }
+    }
+    <Vertex> 2197 {
+      -0.868081390858 0.580223917961 3.75778794289
+      <UV>  {
+        0.733155 0.508559
+        <Tangent> { -0.455904 -0.754829 0.471577 }
+        <Binormal> { -0.763832 0.577947 0.186644 }
+      }
+      <Normal> { 0.313883 0.110294 0.943022 }
+    }
+    <Vertex> 2198 {
+      -0.911635160446 0.68100976944 3.70551323891
+      <UV>  {
+        0.730116 0.506398
+        <Tangent> { 0.892049 -0.426651 0.149055 }
+        <Binormal> { -0.212299 -0.668080 -0.641748 }
+      }
+      <Normal> { -0.650777 -0.408155 0.640187 }
+    }
+    <Vertex> 2199 {
+      -0.807121396065 0.883095264435 3.35175609589
+      <UV>  {
+        0.620484 0.862047
+        <Tangent> { 0.955666 0.292756 -0.031554 }
+        <Binormal> { -0.015028 0.079080 0.278559 }
+      }
+      <Normal> { -0.998627 -0.014435 -0.049776 }
+    }
+    <Vertex> 2200 {
+      -0.79841196537 0.809790551662 3.00572133064
+      <UV>  {
+        0.629035 0.826571
+        <Tangent> { 0.734690 0.674378 0.073790 }
+        <Binormal> { -0.291342 0.251324 0.603858 }
+      }
+      <Normal> { -0.901547 -0.005615 -0.432630 }
+    }
+    <Vertex> 2201 {
+      -0.95082783699 0.839179456234 3.35856223106
+      <UV>  {
+        0.635693 0.862263
+        <Tangent> { 0.729978 0.676721 -0.095823 }
+        <Binormal> { -0.024418 0.036894 0.074531 }
+      }
+      <Normal> { -0.781182 -0.622089 0.052004 }
+    }
+    <Vertex> 2202 {
+      -0.95082783699 0.839179456234 3.35856223106
+      <UV>  {
+        0.635693 0.862263
+        <Tangent> { 0.729978 0.676721 -0.095823 }
+        <Binormal> { -0.024418 0.036894 0.074531 }
+      }
+      <Normal> { -0.781182 -0.622089 0.052004 }
+    }
+    <Vertex> 2203 {
+      -0.79841196537 0.859583377838 3.56752943993
+      <UV>  {
+        0.626007 0.885049
+        <Tangent> { 0.842505 0.535820 -0.055518 }
+        <Binormal> { 0.176070 -0.225093 0.499492 }
+      }
+      <Normal> { -0.944151 -0.007599 0.329386 }
+    }
+    <Vertex> 2204 {
+      -0.807121396065 0.883095264435 3.35175609589
+      <UV>  {
+        0.620484 0.862047
+        <Tangent> { 0.955666 0.292756 -0.031554 }
+        <Binormal> { -0.015028 0.079080 0.278559 }
+      }
+      <Normal> { -0.998627 -0.014435 -0.049776 }
+    }
+    <Vertex> 2205 {
+      -0.646557986736 0.839179456234 3.35855984688
+      <UV>  {
+        0.743396 0.861354
+        <Tangent> { 0.695435 -0.667343 0.266502 }
+        <Binormal> { -0.189195 -0.239726 -0.106592 }
+      }
+      <Normal> { -0.793054 0.607746 0.040803 }
+    }
+    <Vertex> 2206 {
+      -0.79841196537 0.809790551662 3.00572133064
+      <UV>  {
+        0.759919 0.818897
+        <Tangent> { 0.785047 -0.615822 0.066817 }
+        <Binormal> { 0.266798 0.279396 -0.559601 }
+      }
+      <Normal> { -0.901547 -0.005615 -0.432630 }
+    }
+    <Vertex> 2207 {
+      -0.807121396065 0.883095264435 3.35175609589
+      <UV>  {
+        0.763522 0.864443
+        <Tangent> { 0.949023 -0.252201 0.189078 }
+        <Binormal> { 0.015283 -0.141580 -0.265554 }
+      }
+      <Normal> { -0.998627 -0.014435 -0.049776 }
+    }
+    <Vertex> 2208 {
+      -0.646557986736 0.839179456234 3.35855984688
+      <UV>  {
+        0.743396 0.861354
+        <Tangent> { 0.695435 -0.667343 0.266502 }
+        <Binormal> { -0.189195 -0.239726 -0.106592 }
+      }
+      <Normal> { -0.793054 0.607746 0.040803 }
+    }
+    <Vertex> 2209 {
+      -0.807121396065 0.883095264435 3.35175609589
+      <UV>  {
+        0.763522 0.864443
+        <Tangent> { 0.949023 -0.252201 0.189078 }
+        <Binormal> { 0.015283 -0.141580 -0.265554 }
+      }
+      <Normal> { -0.998627 -0.014435 -0.049776 }
+    }
+    <Vertex> 2210 {
+      -0.79841196537 0.859583377838 3.56752943993
+      <UV>  {
+        0.750065 0.888972
+        <Tangent> { 0.787231 -0.556633 0.265381 }
+        <Binormal> { -0.181331 -0.509862 -0.531528 }
+      }
+      <Normal> { -0.944151 -0.007599 0.329386 }
+    }
+    <Vertex> 2211 {
+      -0.800342679024 0.107734680176 3.33243823051
+      <UV>  {
+        0.100504 0.510874
+        <Tangent> { -0.016080 0.812394 0.582887 }
+        <Binormal> { 0.718428 0.286318 -0.379235 }
+      }
+      <Normal> { 0.466811 0.000000 0.884335 }
+    }
+    <Vertex> 2212 {
+      -0.800342679024 0.0505775026977 3.25622868538
+      <UV>  {
+        0.126562 0.510330
+        <Tangent> { -0.000813 0.485151 0.874430 }
+        <Binormal> { 0.363295 0.740698 -0.410616 }
+      }
+      <Normal> { 0.846583 -0.128971 0.516373 }
+    }
+    <Vertex> 2213 {
+      -0.751203000546 0.107734672725 3.30386042595
+      <UV>  {
+        0.107453 0.538839
+        <Tangent> { -0.357235 0.655548 0.665312 }
+        <Binormal> { 0.225320 0.578890 -0.449410 }
+      }
+      <Normal> { 0.450423 0.431471 0.781610 }
+    }
+    <Vertex> 2214 {
+      -0.800342679024 0.0505775026977 3.25622868538
+      <UV>  {
+        0.126562 0.510330
+        <Tangent> { -0.000813 0.485151 0.874430 }
+        <Binormal> { 0.363295 0.740698 -0.410616 }
+      }
+      <Normal> { 0.846583 -0.128971 0.516373 }
+    }
+    <Vertex> 2215 {
+      -0.638844668865 0.0832486972213 3.18954610825
+      <UV>  {
+        0.151496 0.561873
+        <Tangent> { -0.445829 0.220467 0.867543 }
+        <Binormal> { -0.274276 0.878383 -0.364172 }
+      }
+      <Normal> { 0.778436 0.431898 0.455458 }
+    }
+    <Vertex> 2216 {
+      -0.751203000546 0.107734672725 3.30386042595
+      <UV>  {
+        0.107453 0.538839
+        <Tangent> { -0.357235 0.655548 0.665312 }
+        <Binormal> { 0.225320 0.578890 -0.449410 }
+      }
+      <Normal> { 0.450423 0.431471 0.781610 }
+    }
+    <Vertex> 2217 {
+      -0.638844668865 0.0832486972213 3.18954610825
+      <UV>  {
+        0.151496 0.561873
+        <Tangent> { -0.445829 0.220467 0.867543 }
+        <Binormal> { -0.274276 0.878383 -0.364172 }
+      }
+      <Normal> { 0.778436 0.431898 0.455458 }
+    }
+    <Vertex> 2218 {
+      -0.666638553143 0.113789834082 3.27051901817
+      <UV>  {
+        0.129114 0.568262
+        <Tangent> { -0.854654 0.268179 0.444574 }
+        <Binormal> { 0.088786 0.875883 -0.357673 }
+      }
+      <Normal> { 0.219123 0.349742 0.910855 }
+    }
+    <Vertex> 2219 {
+      -0.751203000546 0.107734672725 3.30386042595
+      <UV>  {
+        0.107453 0.538839
+        <Tangent> { -0.357235 0.655548 0.665312 }
+        <Binormal> { 0.225320 0.578890 -0.449410 }
+      }
+      <Normal> { 0.450423 0.431471 0.781610 }
+    }
+    <Vertex> 2220 {
+      -0.55190885067 0.171515628695 3.26099228859
+      <UV>  {
+        0.156491 0.595987
+        <Tangent> { -0.618170 -0.362333 0.697553 }
+        <Binormal> { -0.612713 0.774700 -0.140579 }
+      }
+      <Normal> { 0.531419 0.538896 0.653554 }
+    }
+    <Vertex> 2221 {
+      -0.666638553143 0.113789834082 3.27051901817
+      <UV>  {
+        0.129114 0.568262
+        <Tangent> { -0.854654 0.268179 0.444574 }
+        <Binormal> { 0.088786 0.875883 -0.357673 }
+      }
+      <Normal> { 0.219123 0.349742 0.910855 }
+    }
+    <Vertex> 2222 {
+      -0.638844668865 0.0832486972213 3.18954610825
+      <UV>  {
+        0.151496 0.561873
+        <Tangent> { -0.445829 0.220467 0.867543 }
+        <Binormal> { -0.274276 0.878383 -0.364172 }
+      }
+      <Normal> { 0.778436 0.431898 0.455458 }
+    }
+    <Vertex> 2223 {
+      -0.509326815605 0.143818974495 3.11524701118
+      <UV>  {
+        0.165618 0.589216
+        <Tangent> { -0.243023 0.005583 0.970005 }
+        <Binormal> { -0.749995 0.633024 -0.191545 }
+      }
+      <Normal> { 0.614093 0.774071 0.153691 }
+    }
+    <Vertex> 2224 {
+      -0.638844668865 0.0832486972213 3.18954610825
+      <UV>  {
+        0.151496 0.561873
+        <Tangent> { -0.445829 0.220467 0.867543 }
+        <Binormal> { -0.274276 0.878383 -0.364172 }
+      }
+      <Normal> { 0.778436 0.431898 0.455458 }
+    }
+    <Vertex> 2225 {
+      -0.522646725178 0.132890790701 3.08475732803
+      <UV>  {
+        0.176397 0.578377
+        <Tangent> { -0.198514 -0.130752 0.971337 }
+        <Binormal> { -0.641129 0.750644 -0.029984 }
+      }
+      <Normal> { 0.756310 0.649190 0.080660 }
+    }
+    <Vertex> 2226 {
+      -0.509326815605 0.143818974495 3.11524701118
+      <UV>  {
+        0.165618 0.589216
+        <Tangent> { -0.243023 0.005583 0.970005 }
+        <Binormal> { -0.749995 0.633024 -0.191545 }
+      }
+      <Normal> { 0.614093 0.774071 0.153691 }
+    }
+    <Vertex> 2227 {
+      -0.55190885067 0.171515628695 3.26099228859
+      <UV>  {
+        0.156491 0.595987
+        <Tangent> { -0.618170 -0.362333 0.697553 }
+        <Binormal> { -0.612713 0.774700 -0.140579 }
+      }
+      <Normal> { 0.531419 0.538896 0.653554 }
+    }
+    <Vertex> 2228 {
+      -0.638844668865 0.0832486972213 3.18954610825
+      <UV>  {
+        0.151496 0.561873
+        <Tangent> { -0.445829 0.220467 0.867543 }
+        <Binormal> { -0.274276 0.878383 -0.364172 }
+      }
+      <Normal> { 0.778436 0.431898 0.455458 }
+    }
+    <Vertex> 2229 {
+      -0.509326815605 0.143818974495 3.11524701118
+      <UV>  {
+        0.165618 0.589216
+        <Tangent> { -0.243023 0.005583 0.970005 }
+        <Binormal> { -0.749995 0.633024 -0.191545 }
+      }
+      <Normal> { 0.614093 0.774071 0.153691 }
+    }
+    <Vertex> 2230 {
+      -0.427319556475 0.322467952967 3.16992354393
+      <UV>  {
+        0.162378 0.602456
+        <Tangent> { -0.226750 -0.079641 0.970692 }
+        <Binormal> { -0.767441 -0.103432 -0.187757 }
+      }
+      <Normal> { -0.252358 0.739402 0.624165 }
+    }
+    <Vertex> 2231 {
+      -0.55190885067 0.171515628695 3.26099228859
+      <UV>  {
+        0.156491 0.595987
+        <Tangent> { -0.618170 -0.362333 0.697553 }
+        <Binormal> { -0.612713 0.774700 -0.140579 }
+      }
+      <Normal> { 0.531419 0.538896 0.653554 }
+    }
+    <Vertex> 2232 {
+      -0.427319556475 0.322467952967 3.16992354393
+      <UV>  {
+        0.162378 0.602456
+        <Tangent> { -0.226750 -0.079641 0.970692 }
+        <Binormal> { -0.767441 -0.103432 -0.187757 }
+      }
+      <Normal> { -0.252358 0.739402 0.624165 }
+    }
+    <Vertex> 2233 {
+      -0.509326815605 0.143818974495 3.11524701118
+      <UV>  {
+        0.165618 0.589216
+        <Tangent> { -0.243023 0.005583 0.970005 }
+        <Binormal> { -0.749995 0.633024 -0.191545 }
+      }
+      <Normal> { 0.614093 0.774071 0.153691 }
+    }
+    <Vertex> 2234 {
+      -0.472546458244 0.265643388033 3.07347083092
+      <UV>  {
+        0.169466 0.608677
+        <Tangent> { -0.560986 -0.670690 -0.485253 }
+        <Binormal> { 0.382894 -0.028883 -0.402731 }
+      }
+      <Normal> { 0.209998 0.968963 0.130161 }
+    }
+    <Vertex> 2235 {
+      -0.404706209898 0.350880861282 3.06811189651
+      <UV>  {
+        0.178513 0.607192
+        <Tangent> { 0.496710 0.624855 0.602359 }
+        <Binormal> { -0.464463 0.331216 0.039414 }
+      }
+      <Normal> { 0.582354 0.811945 0.039399 }
+    }
+    <Vertex> 2236 {
+      -0.472546458244 0.265643388033 3.07347083092
+      <UV>  {
+        0.169466 0.608677
+        <Tangent> { -0.560986 -0.670690 -0.485253 }
+        <Binormal> { 0.382894 -0.028883 -0.402731 }
+      }
+      <Normal> { 0.209998 0.968963 0.130161 }
+    }
+    <Vertex> 2237 {
+      -0.457297444344 0.284802913666 3.00559711456
+      <UV>  {
+        0.178566 0.607240
+        <Tangent> { 0.517473 0.604718 0.605423 }
+        <Binormal> { -0.696256 -0.054725 0.649772 }
+      }
+      <Normal> { -0.581286 0.576373 -0.574328 }
+    }
+    <Vertex> 2238 {
+      -0.457297444344 0.284802913666 3.00559711456
+      <UV>  {
+        0.178566 0.607240
+        <Tangent> { 0.517473 0.604718 0.605423 }
+        <Binormal> { -0.696256 -0.054725 0.649772 }
+      }
+      <Normal> { -0.581286 0.576373 -0.574328 }
+    }
+    <Vertex> 2239 {
+      -0.479355812073 0.168407067657 2.91246652603
+      <UV>  {
+        0.182857 0.585162
+        <Tangent> { 0.120978 -0.387119 0.914059 }
+        <Binormal> { -0.446640 0.454195 0.251473 }
+      }
+      <Normal> { 0.424360 0.720756 -0.548082 }
+    }
+    <Vertex> 2240 {
+      -0.549090921879 0.195263534784 2.99076342583
+      <UV>  {
+        0.195146 0.577947
+        <Tangent> { 0.443711 -0.613422 -0.653325 }
+        <Binormal> { 0.437813 0.741550 -0.398914 }
+      }
+      <Normal> { -0.589404 -0.084201 -0.803400 }
+    }
+    <Vertex> 2241 {
+      -0.44138738513 0.220984563231 2.99820160866
+      <UV>  {
+        0.176547 0.597642
+        <Tangent> { -0.080640 -0.297668 0.951258 }
+        <Binormal> { -0.965620 0.082173 -0.056144 }
+      }
+      <Normal> { 0.080813 0.994537 0.065706 }
+    }
+    <Vertex> 2242 {
+      -0.479355812073 0.168407067657 2.91246652603
+      <UV>  {
+        0.182857 0.585162
+        <Tangent> { 0.120978 -0.387119 0.914059 }
+        <Binormal> { -0.446640 0.454195 0.251473 }
+      }
+      <Normal> { 0.424360 0.720756 -0.548082 }
+    }
+    <Vertex> 2243 {
+      -0.457297444344 0.284802913666 3.00559711456
+      <UV>  {
+        0.178566 0.607240
+        <Tangent> { 0.517473 0.604718 0.605423 }
+        <Binormal> { -0.696256 -0.054725 0.649772 }
+      }
+      <Normal> { -0.581286 0.576373 -0.574328 }
+    }
+    <Vertex> 2244 {
+      -0.44138738513 0.220984563231 2.99820160866
+      <UV>  {
+        0.176547 0.597642
+        <Tangent> { -0.080640 -0.297668 0.951258 }
+        <Binormal> { -0.965620 0.082173 -0.056144 }
+      }
+      <Normal> { 0.080813 0.994537 0.065706 }
+    }
+    <Vertex> 2245 {
+      -0.457297444344 0.284802913666 3.00559711456
+      <UV>  {
+        0.178566 0.607240
+        <Tangent> { 0.517473 0.604718 0.605423 }
+        <Binormal> { -0.696256 -0.054725 0.649772 }
+      }
+      <Normal> { -0.581286 0.576373 -0.574328 }
+    }
+    <Vertex> 2246 {
+      -0.472546458244 0.265643388033 3.07347083092
+      <UV>  {
+        0.169466 0.608677
+        <Tangent> { -0.560986 -0.670690 -0.485253 }
+        <Binormal> { 0.382894 -0.028883 -0.402731 }
+      }
+      <Normal> { 0.209998 0.968963 0.130161 }
+    }
+    <Vertex> 2247 {
+      -0.472546458244 0.265643388033 3.07347083092
+      <UV>  {
+        0.169466 0.608677
+        <Tangent> { -0.560986 -0.670690 -0.485253 }
+        <Binormal> { 0.382894 -0.028883 -0.402731 }
+      }
+      <Normal> { 0.209998 0.968963 0.130161 }
+    }
+    <Vertex> 2248 {
+      -0.509326815605 0.143818974495 3.11524701118
+      <UV>  {
+        0.165618 0.589216
+        <Tangent> { -0.243023 0.005583 0.970005 }
+        <Binormal> { -0.749995 0.633024 -0.191545 }
+      }
+      <Normal> { 0.614093 0.774071 0.153691 }
+    }
+    <Vertex> 2249 {
+      -0.44138738513 0.220984563231 2.99820160866
+      <UV>  {
+        0.176547 0.597642
+        <Tangent> { -0.080640 -0.297668 0.951258 }
+        <Binormal> { -0.965620 0.082173 -0.056144 }
+      }
+      <Normal> { 0.080813 0.994537 0.065706 }
+    }
+    <Vertex> 2250 {
+      -0.44138738513 0.220984563231 2.99820160866
+      <UV>  {
+        0.176547 0.597642
+        <Tangent> { -0.080640 -0.297668 0.951258 }
+        <Binormal> { -0.965620 0.082173 -0.056144 }
+      }
+      <Normal> { 0.080813 0.994537 0.065706 }
+    }
+    <Vertex> 2251 {
+      -0.509326815605 0.143818974495 3.11524701118
+      <UV>  {
+        0.165618 0.589216
+        <Tangent> { -0.243023 0.005583 0.970005 }
+        <Binormal> { -0.749995 0.633024 -0.191545 }
+      }
+      <Normal> { 0.614093 0.774071 0.153691 }
+    }
+    <Vertex> 2252 {
+      -0.479355812073 0.168407067657 2.91246652603
+      <UV>  {
+        0.182857 0.585162
+        <Tangent> { 0.120978 -0.387119 0.914059 }
+        <Binormal> { -0.446640 0.454195 0.251473 }
+      }
+      <Normal> { 0.424360 0.720756 -0.548082 }
+    }
+    <Vertex> 2253 {
+      -0.522646725178 0.132890790701 3.08475732803
+      <UV>  {
+        0.176397 0.578377
+        <Tangent> { -0.198514 -0.130752 0.971337 }
+        <Binormal> { -0.641129 0.750644 -0.029984 }
+      }
+      <Normal> { 0.756310 0.649190 0.080660 }
+    }
+    <Vertex> 2254 {
+      -0.479355812073 0.168407067657 2.91246652603
+      <UV>  {
+        0.182857 0.585162
+        <Tangent> { 0.120978 -0.387119 0.914059 }
+        <Binormal> { -0.446640 0.454195 0.251473 }
+      }
+      <Normal> { 0.424360 0.720756 -0.548082 }
+    }
+    <Vertex> 2255 {
+      -0.509326815605 0.143818974495 3.11524701118
+      <UV>  {
+        0.165618 0.589216
+        <Tangent> { -0.243023 0.005583 0.970005 }
+        <Binormal> { -0.749995 0.633024 -0.191545 }
+      }
+      <Normal> { 0.614093 0.774071 0.153691 }
+    }
+    <Vertex> 2256 {
+      -0.63106918335 0.0860333740711 2.89548659325
+      <UV>  {
+        0.190494 0.546872
+        <Tangent> { 0.207403 -0.925372 0.317286 }
+        <Binormal> { 0.904436 0.224940 0.064831 }
+      }
+      <Normal> { 0.057405 0.056459 -0.996734 }
+    }
+    <Vertex> 2257 {
+      -0.627972185612 0.130548939109 2.94759869576
+      <UV>  {
+        0.196561 0.551203
+        <Tangent> { 0.262484 -0.902816 -0.340626 }
+        <Binormal> { 0.911726 0.346624 -0.216144 }
+      }
+      <Normal> { -0.301859 0.214789 -0.928831 }
+    }
+    <Vertex> 2258 {
+      -0.549090921879 0.195263534784 2.99076342583
+      <UV>  {
+        0.195146 0.577947
+        <Tangent> { 0.443711 -0.613422 -0.653325 }
+        <Binormal> { 0.437813 0.741550 -0.398914 }
+      }
+      <Normal> { -0.589404 -0.084201 -0.803400 }
+    }
+    <Vertex> 2259 {
+      -0.800342679024 0.0505775026977 2.89423346519
+      <UV>  {
+        0.192803 0.506492
+        <Tangent> { -0.021792 -0.999757 -0.003257 }
+        <Binormal> { 0.989267 -0.022033 0.144176 }
+      }
+      <Normal> { 0.144047 -0.007508 -0.989532 }
+    }
+    <Vertex> 2260 {
+      -0.800342679024 0.107734680176 2.85965514183
+      <UV>  {
+        0.201895 0.505679
+        <Tangent> { -0.044957 -0.964760 0.259262 }
+        <Binormal> { 0.956641 -0.003099 0.154356 }
+      }
+      <Normal> { 0.159215 -0.016724 -0.987091 }
+    }
+    <Vertex> 2261 {
+      -0.627972185612 0.130548939109 2.94759869576
+      <UV>  {
+        0.196561 0.551203
+        <Tangent> { 0.262484 -0.902816 -0.340626 }
+        <Binormal> { 0.911726 0.346624 -0.216144 }
+      }
+      <Normal> { -0.301859 0.214789 -0.928831 }
+    }
+    <Vertex> 2262 {
+      -0.627972185612 0.130548939109 2.94759869576
+      <UV>  {
+        0.196561 0.551203
+        <Tangent> { 0.262484 -0.902816 -0.340626 }
+        <Binormal> { 0.911726 0.346624 -0.216144 }
+      }
+      <Normal> { -0.301859 0.214789 -0.928831 }
+    }
+    <Vertex> 2263 {
+      -0.63106918335 0.0860333740711 2.89548659325
+      <UV>  {
+        0.190494 0.546872
+        <Tangent> { 0.207403 -0.925372 0.317286 }
+        <Binormal> { 0.904436 0.224940 0.064831 }
+      }
+      <Normal> { 0.057405 0.056459 -0.996734 }
+    }
+    <Vertex> 2264 {
+      -0.800342679024 0.0505775026977 2.89423346519
+      <UV>  {
+        0.192803 0.506492
+        <Tangent> { -0.021792 -0.999757 -0.003257 }
+        <Binormal> { 0.989267 -0.022033 0.144176 }
+      }
+      <Normal> { 0.144047 -0.007508 -0.989532 }
+    }
+    <Vertex> 2265 {
+      -0.549090921879 0.195263534784 2.99076342583
+      <UV>  {
+        0.195146 0.577947
+        <Tangent> { 0.443711 -0.613422 -0.653325 }
+        <Binormal> { 0.437813 0.741550 -0.398914 }
+      }
+      <Normal> { -0.589404 -0.084201 -0.803400 }
+    }
+    <Vertex> 2266 {
+      -0.479355812073 0.168407067657 2.91246652603
+      <UV>  {
+        0.182857 0.585162
+        <Tangent> { 0.120978 -0.387119 0.914059 }
+        <Binormal> { -0.446640 0.454195 0.251473 }
+      }
+      <Normal> { 0.424360 0.720756 -0.548082 }
+    }
+    <Vertex> 2267 {
+      -0.63106918335 0.0860333740711 2.89548659325
+      <UV>  {
+        0.190494 0.546872
+        <Tangent> { 0.207403 -0.925372 0.317286 }
+        <Binormal> { 0.904436 0.224940 0.064831 }
+      }
+      <Normal> { 0.057405 0.056459 -0.996734 }
+    }
+    <Vertex> 2268 {
+      -0.800342679024 0.0172355119139 3.00262832642
+      <UV>  {
+        0.211742 0.485042
+        <Tangent> { 0.065188 0.874938 -0.479827 }
+        <Binormal> { -0.646383 -0.327046 -0.684165 }
+      }
+      <Normal> { 0.750023 -0.428632 -0.503708 }
+    }
+    <Vertex> 2269 {
+      -0.799986541271 0.0267617050558 3.07523179054
+      <UV>  {
+        0.209803 0.515909
+        <Tangent> { 0.203032 0.949669 -0.238553 }
+        <Binormal> { -0.291821 0.049947 -0.049531 }
+      }
+      <Normal> { -0.158544 -0.985534 -0.059725 }
+    }
+    <Vertex> 2270 {
+      -0.800342679024 0.0267617050558 2.91328573227
+      <UV>  {
+        0.206384 0.456011
+        <Tangent> { -0.235958 0.783433 -0.574940 }
+        <Binormal> { -0.428965 -0.603656 -0.646514 }
+      }
+      <Normal> { 0.896817 -0.237678 -0.373119 }
+    }
+    <Vertex> 2271 {
+      -0.800342679024 0.0505775026977 2.89423346519
+      <UV>  {
+        0.192803 0.506492
+        <Tangent> { -0.021792 -0.999757 -0.003257 }
+        <Binormal> { 0.989267 -0.022033 0.144176 }
+      }
+      <Normal> { 0.144047 -0.007508 -0.989532 }
+    }
+    <Vertex> 2272 {
+      -0.63106918335 0.0860333740711 2.89548659325
+      <UV>  {
+        0.190494 0.546872
+        <Tangent> { 0.207403 -0.925372 0.317286 }
+        <Binormal> { 0.904436 0.224940 0.064831 }
+      }
+      <Normal> { 0.057405 0.056459 -0.996734 }
+    }
+    <Vertex> 2273 {
+      -0.800342679024 0.0267617050558 2.91328573227
+      <UV>  {
+        0.188569 0.506845
+        <Tangent> { -0.038443 -0.357471 0.933133 }
+        <Binormal> { 0.355165 0.822506 0.329723 }
+      }
+      <Normal> { 0.896817 -0.237678 -0.373119 }
+    }
+    <Vertex> 2274 {
+      -0.606791198254 0.0736552402377 3.02420949936
+      <UV>  {
+        0.180567 0.554282
+        <Tangent> { -0.066109 -0.316166 0.946398 }
+        <Binormal> { -0.371018 0.717282 0.213708 }
+      }
+      <Normal> { 0.782739 0.510788 -0.355480 }
+    }
+    <Vertex> 2275 {
+      -0.800342679024 0.0267617050558 2.91328573227
+      <UV>  {
+        0.188569 0.506845
+        <Tangent> { -0.038443 -0.357471 0.933133 }
+        <Binormal> { 0.355165 0.822506 0.329723 }
+      }
+      <Normal> { 0.896817 -0.237678 -0.373119 }
+    }
+    <Vertex> 2276 {
+      -0.63106918335 0.0860333740711 2.89548659325
+      <UV>  {
+        0.190494 0.546872
+        <Tangent> { 0.207403 -0.925372 0.317286 }
+        <Binormal> { 0.904436 0.224940 0.064831 }
+      }
+      <Normal> { 0.057405 0.056459 -0.996734 }
+    }
+    <Vertex> 2277 {
+      -0.606791198254 0.0736552402377 3.02420949936
+      <UV>  {
+        0.180567 0.554282
+        <Tangent> { -0.066109 -0.316166 0.946398 }
+        <Binormal> { -0.371018 0.717282 0.213708 }
+      }
+      <Normal> { 0.782739 0.510788 -0.355480 }
+    }
+    <Vertex> 2278 {
+      -0.743072450161 0.0172355081886 2.99310159683
+      <UV>  {
+        0.177230 0.521348
+        <Tangent> { -0.069766 -0.784553 0.616124 }
+        <Binormal> { 0.583311 0.337608 0.495949 }
+      }
+      <Normal> { 0.635304 0.035554 -0.771416 }
+    }
+    <Vertex> 2279 {
+      -0.800342679024 0.0267617050558 2.91328573227
+      <UV>  {
+        0.188569 0.506845
+        <Tangent> { -0.038443 -0.357471 0.933133 }
+        <Binormal> { 0.355165 0.822506 0.329723 }
+      }
+      <Normal> { 0.896817 -0.237678 -0.373119 }
+    }
+    <Vertex> 2280 {
+      -0.800342679024 0.0267617050558 2.91328573227
+      <UV>  {
+        0.188569 0.506845
+        <Tangent> { -0.038443 -0.357471 0.933133 }
+        <Binormal> { 0.355165 0.822506 0.329723 }
+      }
+      <Normal> { 0.896817 -0.237678 -0.373119 }
+    }
+    <Vertex> 2281 {
+      -0.743072450161 0.0172355081886 2.99310159683
+      <UV>  {
+        0.177230 0.521348
+        <Tangent> { -0.069766 -0.784553 0.616124 }
+        <Binormal> { 0.583311 0.337608 0.495949 }
+      }
+      <Normal> { 0.635304 0.035554 -0.771416 }
+    }
+    <Vertex> 2282 {
+      -0.800342679024 0.0172355119139 3.00262832642
+      <UV>  {
+        0.176153 0.508444
+        <Tangent> { -0.132295 -0.549701 0.824819 }
+        <Binormal> { 0.630433 0.551995 0.468994 }
+      }
+      <Normal> { 0.750023 -0.428632 -0.503708 }
+    }
+    <Vertex> 2283 {
+      -0.479355812073 0.168407067657 2.91246652603
+      <UV>  {
+        0.182857 0.585162
+        <Tangent> { 0.120978 -0.387119 0.914059 }
+        <Binormal> { -0.446640 0.454195 0.251473 }
+      }
+      <Normal> { 0.424360 0.720756 -0.548082 }
+    }
+    <Vertex> 2284 {
+      -0.606791198254 0.0736552402377 3.02420949936
+      <UV>  {
+        0.180567 0.554282
+        <Tangent> { -0.066109 -0.316166 0.946398 }
+        <Binormal> { -0.371018 0.717282 0.213708 }
+      }
+      <Normal> { 0.782739 0.510788 -0.355480 }
+    }
+    <Vertex> 2285 {
+      -0.63106918335 0.0860333740711 2.89548659325
+      <UV>  {
+        0.190494 0.546872
+        <Tangent> { 0.207403 -0.925372 0.317286 }
+        <Binormal> { 0.904436 0.224940 0.064831 }
+      }
+      <Normal> { 0.057405 0.056459 -0.996734 }
+    }
+    <Vertex> 2286 {
+      -0.522646725178 0.132890790701 3.08475732803
+      <UV>  {
+        0.176397 0.578377
+        <Tangent> { -0.198514 -0.130752 0.971337 }
+        <Binormal> { -0.641129 0.750644 -0.029984 }
+      }
+      <Normal> { 0.756310 0.649190 0.080660 }
+    }
+    <Vertex> 2287 {
+      -0.606791198254 0.0736552402377 3.02420949936
+      <UV>  {
+        0.180567 0.554282
+        <Tangent> { -0.066109 -0.316166 0.946398 }
+        <Binormal> { -0.371018 0.717282 0.213708 }
+      }
+      <Normal> { 0.782739 0.510788 -0.355480 }
+    }
+    <Vertex> 2288 {
+      -0.479355812073 0.168407067657 2.91246652603
+      <UV>  {
+        0.182857 0.585162
+        <Tangent> { 0.120978 -0.387119 0.914059 }
+        <Binormal> { -0.446640 0.454195 0.251473 }
+      }
+      <Normal> { 0.424360 0.720756 -0.548082 }
+    }
+    <Vertex> 2289 {
+      -0.743072450161 -0.00657966546714 2.99786496162
+      <UV>  {
+        0.173877 0.521411
+        <Tangent> { -0.090933 -0.602621 0.792830 }
+        <Binormal> { 0.118798 0.560572 0.439710 }
+      }
+      <Normal> { 0.772301 0.282571 -0.568896 }
+    }
+    <Vertex> 2290 {
+      -0.807875812054 -0.0371930338442 3.03358054161
+      <UV>  {
+        0.167914 0.508983
+        <Tangent> { -0.156212 -0.578992 0.800229 }
+        <Binormal> { 0.426520 0.605348 0.521250 }
+      }
+      <Normal> { 0.852473 -0.177160 -0.491806 }
+    }
+    <Vertex> 2291 {
+      -0.743072450161 0.0172355081886 2.99310159683
+      <UV>  {
+        0.177230 0.521348
+        <Tangent> { -0.069766 -0.784553 0.616124 }
+        <Binormal> { 0.583311 0.337608 0.495949 }
+      }
+      <Normal> { 0.635304 0.035554 -0.771416 }
+    }
+    <Vertex> 2292 {
+      -0.743072450161 0.0172355081886 2.99310159683
+      <UV>  {
+        0.177230 0.521348
+        <Tangent> { -0.069766 -0.784553 0.616124 }
+        <Binormal> { 0.583311 0.337608 0.495949 }
+      }
+      <Normal> { 0.635304 0.035554 -0.771416 }
+    }
+    <Vertex> 2293 {
+      -0.807875812054 -0.0371930338442 3.03358054161
+      <UV>  {
+        0.167914 0.508983
+        <Tangent> { -0.156212 -0.578992 0.800229 }
+        <Binormal> { 0.426520 0.605348 0.521250 }
+      }
+      <Normal> { 0.852473 -0.177160 -0.491806 }
+    }
+    <Vertex> 2294 {
+      -0.800342679024 0.0172355119139 3.00262832642
+      <UV>  {
+        0.176153 0.508444
+        <Tangent> { -0.132295 -0.549701 0.824819 }
+        <Binormal> { 0.630433 0.551995 0.468994 }
+      }
+      <Normal> { 0.750023 -0.428632 -0.503708 }
+    }
+    <Vertex> 2295 {
+      -0.807875812054 -0.0371930338442 3.03358054161
+      <UV>  {
+        0.233690 0.499255
+        <Tangent> { 0.241428 0.963623 -0.114640 }
+        <Binormal> { -0.494225 0.021008 -0.864235 }
+      }
+      <Normal> { 0.852473 -0.177160 -0.491806 }
+    }
+    <Vertex> 2296 {
+      -0.799986541271 0.0267617050558 3.07523179054
+      <UV>  {
+        0.209803 0.515909
+        <Tangent> { 0.203032 0.949669 -0.238553 }
+        <Binormal> { -0.291821 0.049947 -0.049531 }
+      }
+      <Normal> { -0.158544 -0.985534 -0.059725 }
+    }
+    <Vertex> 2297 {
+      -0.800342679024 0.0172355119139 3.00262832642
+      <UV>  {
+        0.211742 0.485042
+        <Tangent> { 0.065188 0.874938 -0.479827 }
+        <Binormal> { -0.646383 -0.327046 -0.684165 }
+      }
+      <Normal> { 0.750023 -0.428632 -0.503708 }
+    }
+    <Vertex> 2298 {
+      -0.807875812054 -0.0371930338442 3.03358054161
+      <UV>  {
+        0.233690 0.499255
+        <Tangent> { 0.241428 0.963623 -0.114640 }
+        <Binormal> { -0.494225 0.021008 -0.864235 }
+      }
+      <Normal> { 0.852473 -0.177160 -0.491806 }
+    }
+    <Vertex> 2299 {
+      -0.813110768795 -0.0281890034676 3.07046818733
+      <UV>  {
+        0.221412 0.511372
+        <Tangent> { 0.261712 0.957773 -0.119072 }
+        <Binormal> { 0.226716 -0.179625 -0.946534 }
+      }
+      <Normal> { 0.890622 -0.357341 0.281137 }
+    }
+    <Vertex> 2300 {
+      -0.799986541271 0.0267617050558 3.07523179054
+      <UV>  {
+        0.209803 0.515909
+        <Tangent> { 0.203032 0.949669 -0.238553 }
+        <Binormal> { -0.291821 0.049947 -0.049531 }
+      }
+      <Normal> { -0.158544 -0.985534 -0.059725 }
+    }
+    <Vertex> 2301 {
+      -0.743072450161 0.0172355081886 2.99310159683
+      <UV>  {
+        0.177230 0.521348
+        <Tangent> { -0.069766 -0.784553 0.616124 }
+        <Binormal> { 0.583311 0.337608 0.495949 }
+      }
+      <Normal> { 0.635304 0.035554 -0.771416 }
+    }
+    <Vertex> 2302 {
+      -0.606791198254 0.0736552402377 3.02420949936
+      <UV>  {
+        0.180567 0.554282
+        <Tangent> { -0.066109 -0.316166 0.946398 }
+        <Binormal> { -0.371018 0.717282 0.213708 }
+      }
+      <Normal> { 0.782739 0.510788 -0.355480 }
+    }
+    <Vertex> 2303 {
+      -0.743072450161 -0.00657966546714 2.99786496162
+      <UV>  {
+        0.173877 0.521411
+        <Tangent> { -0.090933 -0.602621 0.792830 }
+        <Binormal> { 0.118798 0.560572 0.439710 }
+      }
+      <Normal> { 0.772301 0.282571 -0.568896 }
+    }
+    <Vertex> 2304 {
+      -0.813110768795 -0.0281890034676 3.07046818733
+      <UV>  {
+        0.221412 0.511372
+        <Tangent> { 0.261712 0.957773 -0.119072 }
+        <Binormal> { 0.226716 -0.179625 -0.946534 }
+      }
+      <Normal> { 0.890622 -0.357341 0.281137 }
+    }
+    <Vertex> 2305 {
+      -0.800342679024 0.0505775026977 3.25622868538
+      <UV>  {
+        0.206384 0.630424
+        <Tangent> { -0.429593 0.902360 -0.034582 }
+        <Binormal> { 0.461495 0.192553 -0.708518 }
+      }
+      <Normal> { 0.846583 -0.128971 0.516373 }
+    }
+    <Vertex> 2306 {
+      -0.799986541271 0.0267617050558 3.07523179054
+      <UV>  {
+        0.209803 0.515909
+        <Tangent> { 0.203032 0.949669 -0.238553 }
+        <Binormal> { -0.291821 0.049947 -0.049531 }
+      }
+      <Normal> { -0.158544 -0.985534 -0.059725 }
+    }
+    <Vertex> 2307 {
+      -0.747138023376 -0.0113430740312 3.1228621006
+      <UV>  {
+        0.157829 0.524451
+        <Tangent> { -0.194283 0.219718 0.956022 }
+        <Binormal> { -0.146314 0.943984 -0.246686 }
+      }
+      <Normal> { 0.924986 0.223640 0.307169 }
+    }
+    <Vertex> 2308 {
+      -0.800342679024 0.0505775026977 3.25622868538
+      <UV>  {
+        0.126562 0.510330
+        <Tangent> { -0.000813 0.485151 0.874430 }
+        <Binormal> { 0.363295 0.740698 -0.410616 }
+      }
+      <Normal> { 0.846583 -0.128971 0.516373 }
+    }
+    <Vertex> 2309 {
+      -0.813110768795 -0.0281890034676 3.07046818733
+      <UV>  {
+        0.161075 0.509477
+        <Tangent> { -0.075192 0.315805 0.945840 }
+        <Binormal> { 0.426772 0.863525 -0.254394 }
+      }
+      <Normal> { 0.890622 -0.357341 0.281137 }
+    }
+    <Vertex> 2310 {
+      -0.747138023376 -0.0113430740312 3.1228621006
+      <UV>  {
+        0.157829 0.524451
+        <Tangent> { -0.194283 0.219718 0.956022 }
+        <Binormal> { -0.146314 0.943984 -0.246686 }
+      }
+      <Normal> { 0.924986 0.223640 0.307169 }
+    }
+    <Vertex> 2311 {
+      -0.638844668865 0.0832486972213 3.18954610825
+      <UV>  {
+        0.151496 0.561873
+        <Tangent> { -0.445829 0.220467 0.867543 }
+        <Binormal> { -0.274276 0.878383 -0.364172 }
+      }
+      <Normal> { 0.778436 0.431898 0.455458 }
+    }
+    <Vertex> 2312 {
+      -0.800342679024 0.0505775026977 3.25622868538
+      <UV>  {
+        0.126562 0.510330
+        <Tangent> { -0.000813 0.485151 0.874430 }
+        <Binormal> { 0.363295 0.740698 -0.410616 }
+      }
+      <Normal> { 0.846583 -0.128971 0.516373 }
+    }
+    <Vertex> 2313 {
+      -0.747138023376 -0.0113430740312 3.1228621006
+      <UV>  {
+        0.157829 0.524451
+        <Tangent> { -0.194283 0.219718 0.956022 }
+        <Binormal> { -0.146314 0.943984 -0.246686 }
+      }
+      <Normal> { 0.924986 0.223640 0.307169 }
+    }
+    <Vertex> 2314 {
+      -0.615617632866 0.026818998158 3.1180999279
+      <UV>  {
+        0.165679 0.553666
+        <Tangent> { -0.282007 -0.085702 0.955577 }
+        <Binormal> { -0.540779 0.822592 -0.085817 }
+      }
+      <Normal> { 0.821925 0.554094 0.131840 }
+    }
+    <Vertex> 2315 {
+      -0.638844668865 0.0832486972213 3.18954610825
+      <UV>  {
+        0.151496 0.561873
+        <Tangent> { -0.445829 0.220467 0.867543 }
+        <Binormal> { -0.274276 0.878383 -0.364172 }
+      }
+      <Normal> { 0.778436 0.431898 0.455458 }
+    }
+    <Vertex> 2316 {
+      -0.615617632866 0.026818998158 3.1180999279
+      <UV>  {
+        0.165679 0.553666
+        <Tangent> { -0.282007 -0.085702 0.955577 }
+        <Binormal> { -0.540779 0.822592 -0.085817 }
+      }
+      <Normal> { 0.821925 0.554094 0.131840 }
+    }
+    <Vertex> 2317 {
+      -0.522646725178 0.132890790701 3.08475732803
+      <UV>  {
+        0.176397 0.578377
+        <Tangent> { -0.198514 -0.130752 0.971337 }
+        <Binormal> { -0.641129 0.750644 -0.029984 }
+      }
+      <Normal> { 0.756310 0.649190 0.080660 }
+    }
+    <Vertex> 2318 {
+      -0.638844668865 0.0832486972213 3.18954610825
+      <UV>  {
+        0.151496 0.561873
+        <Tangent> { -0.445829 0.220467 0.867543 }
+        <Binormal> { -0.274276 0.878383 -0.364172 }
+      }
+      <Normal> { 0.778436 0.431898 0.455458 }
+    }
+    <Vertex> 2319 {
+      -0.615617632866 0.026818998158 3.1180999279
+      <UV>  {
+        0.165679 0.553666
+        <Tangent> { -0.282007 -0.085702 0.955577 }
+        <Binormal> { -0.540779 0.822592 -0.085817 }
+      }
+      <Normal> { 0.821925 0.554094 0.131840 }
+    }
+    <Vertex> 2320 {
+      -0.606791198254 0.0736552402377 3.02420949936
+      <UV>  {
+        0.180567 0.554282
+        <Tangent> { -0.066109 -0.316166 0.946398 }
+        <Binormal> { -0.371018 0.717282 0.213708 }
+      }
+      <Normal> { 0.782739 0.510788 -0.355480 }
+    }
+    <Vertex> 2321 {
+      -0.522646725178 0.132890790701 3.08475732803
+      <UV>  {
+        0.176397 0.578377
+        <Tangent> { -0.198514 -0.130752 0.971337 }
+        <Binormal> { -0.641129 0.750644 -0.029984 }
+      }
+      <Normal> { 0.756310 0.649190 0.080660 }
+    }
+    <Vertex> 2322 {
+      -0.606791198254 0.0736552402377 3.02420949936
+      <UV>  {
+        0.180567 0.554282
+        <Tangent> { -0.066109 -0.316166 0.946398 }
+        <Binormal> { -0.371018 0.717282 0.213708 }
+      }
+      <Normal> { 0.782739 0.510788 -0.355480 }
+    }
+    <Vertex> 2323 {
+      -0.615617632866 0.026818998158 3.1180999279
+      <UV>  {
+        0.165679 0.553666
+        <Tangent> { -0.282007 -0.085702 0.955577 }
+        <Binormal> { -0.540779 0.822592 -0.085817 }
+      }
+      <Normal> { 0.821925 0.554094 0.131840 }
+    }
+    <Vertex> 2324 {
+      -0.743072450161 -0.00657966546714 2.99786496162
+      <UV>  {
+        0.173877 0.521411
+        <Tangent> { -0.090933 -0.602621 0.792830 }
+        <Binormal> { 0.118798 0.560572 0.439710 }
+      }
+      <Normal> { 0.772301 0.282571 -0.568896 }
+    }
+    <Vertex> 2325 {
+      -0.747138023376 -0.0113430740312 3.1228621006
+      <UV>  {
+        0.157829 0.524451
+        <Tangent> { -0.194283 0.219718 0.956022 }
+        <Binormal> { -0.146314 0.943984 -0.246686 }
+      }
+      <Normal> { 0.924986 0.223640 0.307169 }
+    }
+    <Vertex> 2326 {
+      -0.807875812054 -0.0371930338442 3.03358054161
+      <UV>  {
+        0.167914 0.508983
+        <Tangent> { -0.156212 -0.578992 0.800229 }
+        <Binormal> { 0.426520 0.605348 0.521250 }
+      }
+      <Normal> { 0.852473 -0.177160 -0.491806 }
+    }
+    <Vertex> 2327 {
+      -0.743072450161 -0.00657966546714 2.99786496162
+      <UV>  {
+        0.173877 0.521411
+        <Tangent> { -0.090933 -0.602621 0.792830 }
+        <Binormal> { 0.118798 0.560572 0.439710 }
+      }
+      <Normal> { 0.772301 0.282571 -0.568896 }
+    }
+    <Vertex> 2328 {
+      -0.747138023376 -0.0113430740312 3.1228621006
+      <UV>  {
+        0.157829 0.524451
+        <Tangent> { -0.194283 0.219718 0.956022 }
+        <Binormal> { -0.146314 0.943984 -0.246686 }
+      }
+      <Normal> { 0.924986 0.223640 0.307169 }
+    }
+    <Vertex> 2329 {
+      -0.743072450161 -0.00657966546714 2.99786496162
+      <UV>  {
+        0.173877 0.521411
+        <Tangent> { -0.090933 -0.602621 0.792830 }
+        <Binormal> { 0.118798 0.560572 0.439710 }
+      }
+      <Normal> { 0.772301 0.282571 -0.568896 }
+    }
+    <Vertex> 2330 {
+      -0.615617632866 0.026818998158 3.1180999279
+      <UV>  {
+        0.165679 0.553666
+        <Tangent> { -0.282007 -0.085702 0.955577 }
+        <Binormal> { -0.540779 0.822592 -0.085817 }
+      }
+      <Normal> { 0.821925 0.554094 0.131840 }
+    }
+    <Vertex> 2331 {
+      -0.747138023376 -0.0113430740312 3.1228621006
+      <UV>  {
+        0.157829 0.524451
+        <Tangent> { -0.194283 0.219718 0.956022 }
+        <Binormal> { -0.146314 0.943984 -0.246686 }
+      }
+      <Normal> { 0.924986 0.223640 0.307169 }
+    }
+    <Vertex> 2332 {
+      -0.813110768795 -0.0281890034676 3.07046818733
+      <UV>  {
+        0.161075 0.509477
+        <Tangent> { -0.075192 0.315805 0.945840 }
+        <Binormal> { 0.426772 0.863525 -0.254394 }
+      }
+      <Normal> { 0.890622 -0.357341 0.281137 }
+    }
+    <Vertex> 2333 {
+      -0.807875812054 -0.0371930338442 3.03358054161
+      <UV>  {
+        0.167914 0.508983
+        <Tangent> { -0.156212 -0.578992 0.800229 }
+        <Binormal> { 0.426520 0.605348 0.521250 }
+      }
+      <Normal> { 0.852473 -0.177160 -0.491806 }
+    }
+    <Vertex> 2334 {
+      -0.751203000546 0.107734672725 3.30386042595
+      <UV>  {
+        0.107453 0.538839
+        <Tangent> { -0.357235 0.655548 0.665312 }
+        <Binormal> { 0.225320 0.578890 -0.449410 }
+      }
+      <Normal> { 0.450423 0.431471 0.781610 }
+    }
+    <Vertex> 2335 {
+      -0.751203000546 0.174417406321 3.30386042595
+      <UV>  {
+        0.080782 0.563270
+        <Tangent> { -0.608151 0.741886 0.282414 }
+        <Binormal> { 0.556916 0.557043 -0.264055 }
+      }
+      <Normal> { 0.014740 0.416211 0.909116 }
+    }
+    <Vertex> 2336 {
+      -0.800342679024 0.174417406321 3.33243823051
+      <UV>  {
+        0.065086 0.511768
+        <Tangent> { -0.013567 0.994721 0.101720 }
+        <Binormal> { 0.994721 0.013567 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 2337 {
+      -0.800342679024 0.174417406321 3.33243823051
+      <UV>  {
+        0.065086 0.511768
+        <Tangent> { -0.013567 0.994721 0.101720 }
+        <Binormal> { 0.994721 0.013567 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 2338 {
+      -0.800342679024 0.107734680176 3.33243823051
+      <UV>  {
+        0.100504 0.510874
+        <Tangent> { -0.016080 0.812394 0.582887 }
+        <Binormal> { 0.718428 0.286318 -0.379235 }
+      }
+      <Normal> { 0.466811 0.000000 0.884335 }
+    }
+    <Vertex> 2339 {
+      -0.751203000546 0.107734672725 3.30386042595
+      <UV>  {
+        0.107453 0.538839
+        <Tangent> { -0.357235 0.655548 0.665312 }
+        <Binormal> { 0.225320 0.578890 -0.449410 }
+      }
+      <Normal> { 0.450423 0.431471 0.781610 }
+    }
+    <Vertex> 2340 {
+      -0.666638553143 0.113789834082 3.27051901817
+      <UV>  {
+        0.129114 0.568262
+        <Tangent> { -0.854654 0.268179 0.444574 }
+        <Binormal> { 0.088786 0.875883 -0.357673 }
+      }
+      <Normal> { 0.219123 0.349742 0.910855 }
+    }
+    <Vertex> 2341 {
+      -0.673962235451 0.174417406321 3.27051901817
+      <UV>  {
+        0.118850 0.587142
+        <Tangent> { -0.792096 0.549160 0.266471 }
+        <Binormal> { 0.429483 0.749370 -0.267692 }
+      }
+      <Normal> { 0.008484 0.332072 0.943205 }
+    }
+    <Vertex> 2342 {
+      -0.751203000546 0.174417406321 3.30386042595
+      <UV>  {
+        0.080782 0.563270
+        <Tangent> { -0.608151 0.741886 0.282414 }
+        <Binormal> { 0.556916 0.557043 -0.264055 }
+      }
+      <Normal> { 0.014740 0.416211 0.909116 }
+    }
+    <Vertex> 2343 {
+      -0.666638553143 0.113789834082 3.27051901817
+      <UV>  {
+        0.129114 0.568262
+        <Tangent> { -0.854654 0.268179 0.444574 }
+        <Binormal> { 0.088786 0.875883 -0.357673 }
+      }
+      <Normal> { 0.219123 0.349742 0.910855 }
+    }
+    <Vertex> 2344 {
+      -0.751203000546 0.174417406321 3.30386042595
+      <UV>  {
+        0.080782 0.563270
+        <Tangent> { -0.608151 0.741886 0.282414 }
+        <Binormal> { 0.556916 0.557043 -0.264055 }
+      }
+      <Normal> { 0.014740 0.416211 0.909116 }
+    }
+    <Vertex> 2345 {
+      -0.751203000546 0.107734672725 3.30386042595
+      <UV>  {
+        0.107453 0.538839
+        <Tangent> { -0.357235 0.655548 0.665312 }
+        <Binormal> { 0.225320 0.578890 -0.449410 }
+      }
+      <Normal> { 0.450423 0.431471 0.781610 }
+    }
+    <Vertex> 2346 {
+      -0.569573938847 0.15232808888 3.2419397831
+      <UV>  {
+        0.148211 0.598294
+        <Tangent> { -0.776108 -0.577988 0.252162 }
+        <Binormal> { -0.590961 0.659100 -0.308126 }
+      }
+      <Normal> { -0.282266 0.186804 0.940947 }
+    }
+    <Vertex> 2347 {
+      -0.673962235451 0.174417406321 3.27051901817
+      <UV>  {
+        0.118850 0.587142
+        <Tangent> { -0.792096 0.549160 0.266471 }
+        <Binormal> { 0.429483 0.749370 -0.267692 }
+      }
+      <Normal> { 0.008484 0.332072 0.943205 }
+    }
+    <Vertex> 2348 {
+      -0.666638553143 0.113789834082 3.27051901817
+      <UV>  {
+        0.129114 0.568262
+        <Tangent> { -0.854654 0.268179 0.444574 }
+        <Binormal> { 0.088786 0.875883 -0.357673 }
+      }
+      <Normal> { 0.219123 0.349742 0.910855 }
+    }
+    <Vertex> 2349 {
+      -0.55190885067 0.171515628695 3.26099228859
+      <UV>  {
+        0.156491 0.595987
+        <Tangent> { -0.618170 -0.362333 0.697553 }
+        <Binormal> { -0.612713 0.774700 -0.140579 }
+      }
+      <Normal> { 0.531419 0.538896 0.653554 }
+    }
+    <Vertex> 2350 {
+      -0.569573938847 0.15232808888 3.2419397831
+      <UV>  {
+        0.148211 0.598294
+        <Tangent> { -0.776108 -0.577988 0.252162 }
+        <Binormal> { -0.590961 0.659100 -0.308126 }
+      }
+      <Normal> { -0.282266 0.186804 0.940947 }
+    }
+    <Vertex> 2351 {
+      -0.666638553143 0.113789834082 3.27051901817
+      <UV>  {
+        0.129114 0.568262
+        <Tangent> { -0.854654 0.268179 0.444574 }
+        <Binormal> { 0.088786 0.875883 -0.357673 }
+      }
+      <Normal> { 0.219123 0.349742 0.910855 }
+    }
+    <Vertex> 2352 {
+      -0.472546458244 0.265643388033 3.07347083092
+      <UV>  {
+        0.169466 0.608677
+        <Tangent> { -0.560986 -0.670690 -0.485253 }
+        <Binormal> { 0.382894 -0.028883 -0.402731 }
+      }
+      <Normal> { 0.209998 0.968963 0.130161 }
+    }
+    <Vertex> 2353 {
+      -0.481465905905 0.275388807058 3.20289444923
+      <UV>  {
+        0.169402 0.618041
+        <Tangent> { 0.478336 0.599903 0.641335 }
+        <Binormal> { 0.013905 -0.653988 0.601368 }
+      }
+      <Normal> { -0.560778 0.553911 0.615345 }
+    }
+    <Vertex> 2354 {
+      -0.427319556475 0.322467952967 3.16992354393
+      <UV>  {
+        0.162378 0.602456
+        <Tangent> { -0.226750 -0.079641 0.970692 }
+        <Binormal> { -0.767441 -0.103432 -0.187757 }
+      }
+      <Normal> { -0.252358 0.739402 0.624165 }
+    }
+    <Vertex> 2355 {
+      -0.427319556475 0.322467952967 3.16992354393
+      <UV>  {
+        0.162378 0.602456
+        <Tangent> { -0.226750 -0.079641 0.970692 }
+        <Binormal> { -0.767441 -0.103432 -0.187757 }
+      }
+      <Normal> { -0.252358 0.739402 0.624165 }
+    }
+    <Vertex> 2356 {
+      -0.569573938847 0.15232808888 3.2419397831
+      <UV>  {
+        0.148211 0.598294
+        <Tangent> { -0.776108 -0.577988 0.252162 }
+        <Binormal> { -0.590961 0.659100 -0.308126 }
+      }
+      <Normal> { -0.282266 0.186804 0.940947 }
+    }
+    <Vertex> 2357 {
+      -0.55190885067 0.171515628695 3.26099228859
+      <UV>  {
+        0.156491 0.595987
+        <Tangent> { -0.618170 -0.362333 0.697553 }
+        <Binormal> { -0.612713 0.774700 -0.140579 }
+      }
+      <Normal> { 0.531419 0.538896 0.653554 }
+    }
+    <Vertex> 2358 {
+      -0.569573938847 0.15232808888 3.2419397831
+      <UV>  {
+        0.148211 0.598294
+        <Tangent> { -0.776108 -0.577988 0.252162 }
+        <Binormal> { -0.590961 0.659100 -0.308126 }
+      }
+      <Normal> { -0.282266 0.186804 0.940947 }
+    }
+    <Vertex> 2359 {
+      -0.427319556475 0.322467952967 3.16992354393
+      <UV>  {
+        0.162378 0.602456
+        <Tangent> { -0.226750 -0.079641 0.970692 }
+        <Binormal> { -0.767441 -0.103432 -0.187757 }
+      }
+      <Normal> { -0.252358 0.739402 0.624165 }
+    }
+    <Vertex> 2360 {
+      -0.481465905905 0.275388807058 3.20289444923
+      <UV>  {
+        0.169402 0.618041
+        <Tangent> { 0.478336 0.599903 0.641335 }
+        <Binormal> { 0.013905 -0.653988 0.601368 }
+      }
+      <Normal> { -0.560778 0.553911 0.615345 }
+    }
+    <Vertex> 2361 {
+      -0.404706209898 0.350880861282 3.06811189651
+      <UV>  {
+        0.178513 0.607192
+        <Tangent> { 0.496710 0.624855 0.602359 }
+        <Binormal> { -0.464463 0.331216 0.039414 }
+      }
+      <Normal> { 0.582354 0.811945 0.039399 }
+    }
+    <Vertex> 2362 {
+      -0.481465905905 0.275388807058 3.20289444923
+      <UV>  {
+        0.169402 0.618041
+        <Tangent> { 0.478336 0.599903 0.641335 }
+        <Binormal> { 0.013905 -0.653988 0.601368 }
+      }
+      <Normal> { -0.560778 0.553911 0.615345 }
+    }
+    <Vertex> 2363 {
+      -0.472546458244 0.265643388033 3.07347083092
+      <UV>  {
+        0.169466 0.608677
+        <Tangent> { -0.560986 -0.670690 -0.485253 }
+        <Binormal> { 0.382894 -0.028883 -0.402731 }
+      }
+      <Normal> { 0.209998 0.968963 0.130161 }
+    }
+    <Vertex> 2364 {
+      -0.404706209898 0.350880861282 3.06811189651
+      <UV>  {
+        0.178513 0.607192
+        <Tangent> { 0.496710 0.624855 0.602359 }
+        <Binormal> { -0.464463 0.331216 0.039414 }
+      }
+      <Normal> { 0.582354 0.811945 0.039399 }
+    }
+    <Vertex> 2365 {
+      -0.457297444344 0.284802913666 3.00559711456
+      <UV>  {
+        0.178566 0.607240
+        <Tangent> { 0.517473 0.604718 0.605423 }
+        <Binormal> { -0.696256 -0.054725 0.649772 }
+      }
+      <Normal> { -0.581286 0.576373 -0.574328 }
+    }
+    <Vertex> 2366 {
+      -0.481465905905 0.275388807058 3.20289444923
+      <UV>  {
+        0.169402 0.618041
+        <Tangent> { 0.478336 0.599903 0.641335 }
+        <Binormal> { 0.013905 -0.653988 0.601368 }
+      }
+      <Normal> { -0.560778 0.553911 0.615345 }
+    }
+    <Vertex> 2367 {
+      -0.477507740259 0.287345916033 2.99607038498
+      <UV>  {
+        0.182251 0.608087
+        <Tangent> { 0.944526 -0.045318 0.325294 }
+        <Binormal> { -0.110782 0.273295 0.359741 }
+      }
+      <Normal> { -0.730888 0.415937 -0.541063 }
+    }
+    <Vertex> 2368 {
+      -0.481465905905 0.275388807058 3.20289444923
+      <UV>  {
+        0.169402 0.618041
+        <Tangent> { 0.478336 0.599903 0.641335 }
+        <Binormal> { 0.013905 -0.653988 0.601368 }
+      }
+      <Normal> { -0.560778 0.553911 0.615345 }
+    }
+    <Vertex> 2369 {
+      -0.457297444344 0.284802913666 3.00559711456
+      <UV>  {
+        0.178566 0.607240
+        <Tangent> { 0.517473 0.604718 0.605423 }
+        <Binormal> { -0.696256 -0.054725 0.649772 }
+      }
+      <Normal> { -0.581286 0.576373 -0.574328 }
+    }
+    <Vertex> 2370 {
+      -0.457297444344 0.284802913666 3.00559711456
+      <UV>  {
+        0.178566 0.607240
+        <Tangent> { 0.517473 0.604718 0.605423 }
+        <Binormal> { -0.696256 -0.054725 0.649772 }
+      }
+      <Normal> { -0.581286 0.576373 -0.574328 }
+    }
+    <Vertex> 2371 {
+      -0.559568464756 0.202834039927 2.99076342583
+      <UV>  {
+        0.198023 0.577549
+        <Tangent> { 0.873977 -0.481895 0.062785 }
+        <Binormal> { 0.425926 0.808298 0.274983 }
+      }
+      <Normal> { -0.078341 0.357830 -0.930479 }
+    }
+    <Vertex> 2372 {
+      -0.477507740259 0.287345916033 2.99607038498
+      <UV>  {
+        0.182251 0.608087
+        <Tangent> { 0.944526 -0.045318 0.325294 }
+        <Binormal> { -0.110782 0.273295 0.359741 }
+      }
+      <Normal> { -0.730888 0.415937 -0.541063 }
+    }
+    <Vertex> 2373 {
+      -0.549090921879 0.195263534784 2.99076342583
+      <UV>  {
+        0.195146 0.577947
+        <Tangent> { 0.443711 -0.613422 -0.653325 }
+        <Binormal> { 0.437813 0.741550 -0.398914 }
+      }
+      <Normal> { -0.589404 -0.084201 -0.803400 }
+    }
+    <Vertex> 2374 {
+      -0.638512432575 0.174417391419 2.94759869576
+      <UV>  {
+        0.204407 0.553621
+        <Tangent> { 0.339825 -0.938062 0.067519 }
+        <Binormal> { 0.816412 0.299263 0.048738 }
+      }
+      <Normal> { -0.101077 0.422437 -0.900723 }
+    }
+    <Vertex> 2375 {
+      -0.559568464756 0.202834039927 2.99076342583
+      <UV>  {
+        0.198023 0.577549
+        <Tangent> { 0.873977 -0.481895 0.062785 }
+        <Binormal> { 0.425926 0.808298 0.274983 }
+      }
+      <Normal> { -0.078341 0.357830 -0.930479 }
+    }
+    <Vertex> 2376 {
+      -0.638512432575 0.174417391419 2.94759869576
+      <UV>  {
+        0.204407 0.553621
+        <Tangent> { 0.339825 -0.938062 0.067519 }
+        <Binormal> { 0.816412 0.299263 0.048738 }
+      }
+      <Normal> { -0.101077 0.422437 -0.900723 }
+    }
+    <Vertex> 2377 {
+      -0.549090921879 0.195263534784 2.99076342583
+      <UV>  {
+        0.195146 0.577947
+        <Tangent> { 0.443711 -0.613422 -0.653325 }
+        <Binormal> { 0.437813 0.741550 -0.398914 }
+      }
+      <Normal> { -0.589404 -0.084201 -0.803400 }
+    }
+    <Vertex> 2378 {
+      -0.627972185612 0.130548939109 2.94759869576
+      <UV>  {
+        0.196561 0.551203
+        <Tangent> { 0.262484 -0.902816 -0.340626 }
+        <Binormal> { 0.911726 0.346624 -0.216144 }
+      }
+      <Normal> { -0.301859 0.214789 -0.928831 }
+    }
+    <Vertex> 2379 {
+      -0.627972185612 0.130548939109 2.94759869576
+      <UV>  {
+        0.196561 0.551203
+        <Tangent> { 0.262484 -0.902816 -0.340626 }
+        <Binormal> { 0.911726 0.346624 -0.216144 }
+      }
+      <Normal> { -0.301859 0.214789 -0.928831 }
+    }
+    <Vertex> 2380 {
+      -0.800342679024 0.107734680176 2.85965514183
+      <UV>  {
+        0.201895 0.505679
+        <Tangent> { -0.044957 -0.964760 0.259262 }
+        <Binormal> { 0.956641 -0.003099 0.154356 }
+      }
+      <Normal> { 0.159215 -0.016724 -0.987091 }
+    }
+    <Vertex> 2381 {
+      -0.638512432575 0.174417391419 2.94759869576
+      <UV>  {
+        0.204407 0.553621
+        <Tangent> { 0.339825 -0.938062 0.067519 }
+        <Binormal> { 0.816412 0.299263 0.048738 }
+      }
+      <Normal> { -0.101077 0.422437 -0.900723 }
+    }
+    <Vertex> 2382 {
+      -0.800342679024 0.107734680176 2.85965514183
+      <UV>  {
+        0.201895 0.505679
+        <Tangent> { -0.044957 -0.964760 0.259262 }
+        <Binormal> { 0.956641 -0.003099 0.154356 }
+      }
+      <Normal> { 0.159215 -0.016724 -0.987091 }
+    }
+    <Vertex> 2383 {
+      -0.800342679024 0.174418032169 2.85965514183
+      <UV>  {
+        0.212037 0.504622
+        <Tangent> { -0.065330 -0.996457 -0.052961 }
+        <Binormal> { 0.993006 -0.060841 -0.080200 }
+      }
+      <Normal> { -0.080691 -0.003143 -0.996704 }
+    }
+    <Vertex> 2384 {
+      -0.638512432575 0.174417391419 2.94759869576
+      <UV>  {
+        0.204407 0.553621
+        <Tangent> { 0.339825 -0.938062 0.067519 }
+        <Binormal> { 0.816412 0.299263 0.048738 }
+      }
+      <Normal> { -0.101077 0.422437 -0.900723 }
+    }
+    <Vertex> 2385 {
+      -0.911635160446 0.68100976944 3.70551323891
+      <UV>  {
+        0.653292 0.893966
+        <Tangent> { 0.268951 0.873444 -0.405907 }
+        <Binormal> { 0.393494 0.091976 0.458643 }
+      }
+      <Normal> { -0.650777 -0.408155 0.640187 }
+    }
+    <Vertex> 2386 {
+      -0.95082783699 0.456511706114 3.79225111008
+      <UV>  {
+        0.675152 0.888513
+        <Tangent> { -0.449588 0.868953 -0.206859 }
+        <Binormal> { 0.543094 0.323194 0.177279 }
+      }
+      <Normal> { 0.118259 -0.622883 0.773278 }
+    }
+    <Vertex> 2387 {
+      -0.79841196537 0.43816062808 3.8000395298
+      <UV>  {
+        0.689340 0.901637
+        <Tangent> { -0.992230 -0.120866 -0.029510 }
+        <Binormal> { -0.121094 0.991720 0.009749 }
+      }
+      <Normal> { -0.068911 -0.018220 0.997436 }
+    }
+    <Vertex> 2388 {
+      -0.564199566841 0.335299521685 3.2419397831
+      <UV>  {
+        0.150496 0.662231
+        <Tangent> { -0.868952 -0.295357 0.397097 }
+        <Binormal> { -0.421238 0.799998 -0.326748 }
+      }
+      <Normal> { -0.017975 0.369915 0.928861 }
+    }
+    <Vertex> 2389 {
+      -0.673962235451 0.174417406321 3.27051901817
+      <UV>  {
+        0.118850 0.587142
+        <Tangent> { -0.792096 0.549160 0.266471 }
+        <Binormal> { 0.429483 0.749370 -0.267692 }
+      }
+      <Normal> { 0.008484 0.332072 0.943205 }
+    }
+    <Vertex> 2390 {
+      -0.569573938847 0.15232808888 3.2419397831
+      <UV>  {
+        0.148211 0.598294
+        <Tangent> { -0.776108 -0.577988 0.252162 }
+        <Binormal> { -0.590961 0.659100 -0.308126 }
+      }
+      <Normal> { -0.282266 0.186804 0.940947 }
+    }
+    <Vertex> 2391 {
+      -0.751203000546 0.174417406321 3.30386042595
+      <UV>  {
+        0.080782 0.563270
+        <Tangent> { -0.608151 0.741886 0.282414 }
+        <Binormal> { 0.556916 0.557043 -0.264055 }
+      }
+      <Normal> { 0.014740 0.416211 0.909116 }
+    }
+    <Vertex> 2392 {
+      -0.673962235451 0.174417406321 3.27051901817
+      <UV>  {
+        0.118850 0.587142
+        <Tangent> { -0.792096 0.549160 0.266471 }
+        <Binormal> { 0.429483 0.749370 -0.267692 }
+      }
+      <Normal> { 0.008484 0.332072 0.943205 }
+    }
+    <Vertex> 2393 {
+      -0.564199566841 0.335299521685 3.2419397831
+      <UV>  {
+        0.150496 0.662231
+        <Tangent> { -0.868952 -0.295357 0.397097 }
+        <Binormal> { -0.421238 0.799998 -0.326748 }
+      }
+      <Normal> { -0.017975 0.369915 0.928861 }
+    }
+    <Vertex> 2394 {
+      -0.477507740259 0.287345916033 2.99607038498
+      <UV>  {
+        0.182251 0.608087
+        <Tangent> { 0.944526 -0.045318 0.325294 }
+        <Binormal> { -0.110782 0.273295 0.359741 }
+      }
+      <Normal> { -0.730888 0.415937 -0.541063 }
+    }
+    <Vertex> 2395 {
+      -0.480806201696 0.348001539707 3.20289444923
+      <UV>  {
+        0.177940 0.642357
+        <Tangent> { -0.157459 -0.499295 0.852004 }
+        <Binormal> { -0.972635 -0.021952 -0.192617 }
+      }
+      <Normal> { -0.135014 0.795160 0.591144 }
+    }
+    <Vertex> 2396 {
+      -0.481465905905 0.275388807058 3.20289444923
+      <UV>  {
+        0.169402 0.618041
+        <Tangent> { 0.478336 0.599903 0.641335 }
+        <Binormal> { 0.013905 -0.653988 0.601368 }
+      }
+      <Normal> { -0.560778 0.553911 0.615345 }
+    }
+    <Vertex> 2397 {
+      -0.559568464756 0.202834039927 2.99076342583
+      <UV>  {
+        0.198023 0.577549
+        <Tangent> { 0.873977 -0.481895 0.062785 }
+        <Binormal> { 0.425926 0.808298 0.274983 }
+      }
+      <Normal> { -0.078341 0.357830 -0.930479 }
+    }
+    <Vertex> 2398 {
+      -0.480806201696 0.348001539707 3.20289444923
+      <UV>  {
+        0.177940 0.642357
+        <Tangent> { -0.157459 -0.499295 0.852004 }
+        <Binormal> { -0.972635 -0.021952 -0.192617 }
+      }
+      <Normal> { -0.135014 0.795160 0.591144 }
+    }
+    <Vertex> 2399 {
+      -0.477507740259 0.287345916033 2.99607038498
+      <UV>  {
+        0.182251 0.608087
+        <Tangent> { 0.944526 -0.045318 0.325294 }
+        <Binormal> { -0.110782 0.273295 0.359741 }
+      }
+      <Normal> { -0.730888 0.415937 -0.541063 }
+    }
+    <Vertex> 2400 {
+      -0.559568464756 0.202834039927 2.99076342583
+      <UV>  {
+        0.198023 0.577549
+        <Tangent> { 0.873977 -0.481895 0.062785 }
+        <Binormal> { 0.425926 0.808298 0.274983 }
+      }
+      <Normal> { -0.078341 0.357830 -0.930479 }
+    }
+    <Vertex> 2401 {
+      -0.474372982979 0.39210292697 2.99607038498
+      <UV>  {
+        0.195107 0.639577
+        <Tangent> { 0.207206 -0.498109 0.841993 }
+        <Binormal> { -0.227145 -0.054770 0.023497 }
+      }
+      <Normal> { -0.235817 0.680288 -0.693930 }
+    }
+    <Vertex> 2402 {
+      -0.480806201696 0.348001539707 3.20289444923
+      <UV>  {
+        0.177940 0.642357
+        <Tangent> { -0.157459 -0.499295 0.852004 }
+        <Binormal> { -0.972635 -0.021952 -0.192617 }
+      }
+      <Normal> { -0.135014 0.795160 0.591144 }
+    }
+    <Vertex> 2403 {
+      -0.474372982979 0.39210292697 2.99607038498
+      <UV>  {
+        0.195107 0.639577
+        <Tangent> { 0.207206 -0.498109 0.841993 }
+        <Binormal> { -0.227145 -0.054770 0.023497 }
+      }
+      <Normal> { -0.235817 0.680288 -0.693930 }
+    }
+    <Vertex> 2404 {
+      -0.559568464756 0.202834039927 2.99076342583
+      <UV>  {
+        0.198023 0.577549
+        <Tangent> { 0.873977 -0.481895 0.062785 }
+        <Binormal> { 0.425926 0.808298 0.274983 }
+      }
+      <Normal> { -0.078341 0.357830 -0.930479 }
+    }
+    <Vertex> 2405 {
+      -0.542215943336 0.337688714266 2.99076342583
+      <UV>  {
+        0.214599 0.604674
+        <Tangent> { 0.514331 -0.851110 0.105238 }
+        <Binormal> { 0.678840 0.425653 0.124762 }
+      }
+      <Normal> { -0.149968 0.490738 -0.858272 }
+    }
+    <Vertex> 2406 {
+      -0.638512432575 0.174417391419 2.94759869576
+      <UV>  {
+        0.204407 0.553621
+        <Tangent> { 0.339825 -0.938062 0.067519 }
+        <Binormal> { 0.816412 0.299263 0.048738 }
+      }
+      <Normal> { -0.101077 0.422437 -0.900723 }
+    }
+    <Vertex> 2407 {
+      -0.723321437836 0.37842682004 2.92400598526
+      <UV>  {
+        0.265923 0.542730
+        <Tangent> { 0.472650 -0.871868 0.128253 }
+        <Binormal> { 0.777070 0.438748 0.118890 }
+      }
+      <Normal> { -0.045808 0.336039 -0.940703 }
+    }
+    <Vertex> 2408 {
+      -0.542215943336 0.337688714266 2.99076342583
+      <UV>  {
+        0.214599 0.604674
+        <Tangent> { 0.514331 -0.851110 0.105238 }
+        <Binormal> { 0.678840 0.425653 0.124762 }
+      }
+      <Normal> { -0.149968 0.490738 -0.858272 }
+    }
+    <Vertex> 2409 {
+      -0.542215943336 0.337688714266 2.99076342583
+      <UV>  {
+        0.214599 0.604674
+        <Tangent> { 0.514331 -0.851110 0.105238 }
+        <Binormal> { 0.678840 0.425653 0.124762 }
+      }
+      <Normal> { -0.149968 0.490738 -0.858272 }
+    }
+    <Vertex> 2410 {
+      -0.559568464756 0.202834039927 2.99076342583
+      <UV>  {
+        0.198023 0.577549
+        <Tangent> { 0.873977 -0.481895 0.062785 }
+        <Binormal> { 0.425926 0.808298 0.274983 }
+      }
+      <Normal> { -0.078341 0.357830 -0.930479 }
+    }
+    <Vertex> 2411 {
+      -0.638512432575 0.174417391419 2.94759869576
+      <UV>  {
+        0.204407 0.553621
+        <Tangent> { 0.339825 -0.938062 0.067519 }
+        <Binormal> { 0.816412 0.299263 0.048738 }
+      }
+      <Normal> { -0.101077 0.422437 -0.900723 }
+    }
+    <Vertex> 2412 {
+      -0.800342679024 0.174418032169 2.85965514183
+      <UV>  {
+        0.212037 0.504622
+        <Tangent> { -0.065330 -0.996457 -0.052961 }
+        <Binormal> { 0.993006 -0.060841 -0.080200 }
+      }
+      <Normal> { -0.080691 -0.003143 -0.996704 }
+    }
+    <Vertex> 2413 {
+      -0.800342679024 0.378427445889 2.89279460907
+      <UV>  {
+        0.275327 0.499141
+        <Tangent> { -0.075288 -0.996961 -0.020016 }
+        <Binormal> { 0.991943 -0.072907 -0.099714 }
+      }
+      <Normal> { -0.100009 0.000122 -0.994964 }
+    }
+    <Vertex> 2414 {
+      -0.638512432575 0.174417391419 2.94759869576
+      <UV>  {
+        0.204407 0.553621
+        <Tangent> { 0.339825 -0.938062 0.067519 }
+        <Binormal> { 0.816412 0.299263 0.048738 }
+      }
+      <Normal> { -0.101077 0.422437 -0.900723 }
+    }
+    <Vertex> 2415 {
+      -0.638512432575 0.174417391419 2.94759869576
+      <UV>  {
+        0.204407 0.553621
+        <Tangent> { 0.339825 -0.938062 0.067519 }
+        <Binormal> { 0.816412 0.299263 0.048738 }
+      }
+      <Normal> { -0.101077 0.422437 -0.900723 }
+    }
+    <Vertex> 2416 {
+      -0.800342679024 0.378427445889 2.89279460907
+      <UV>  {
+        0.275327 0.499141
+        <Tangent> { -0.075288 -0.996961 -0.020016 }
+        <Binormal> { 0.991943 -0.072907 -0.099714 }
+      }
+      <Normal> { -0.100009 0.000122 -0.994964 }
+    }
+    <Vertex> 2417 {
+      -0.723321437836 0.37842682004 2.92400598526
+      <UV>  {
+        0.265923 0.542730
+        <Tangent> { 0.472650 -0.871868 0.128253 }
+        <Binormal> { 0.777070 0.438748 0.118890 }
+      }
+      <Normal> { -0.045808 0.336039 -0.940703 }
+    }
+    <Vertex> 2418 {
+      -0.481465905905 0.275388807058 3.20289444923
+      <UV>  {
+        0.169402 0.618041
+        <Tangent> { 0.478336 0.599903 0.641335 }
+        <Binormal> { 0.013905 -0.653988 0.601368 }
+      }
+      <Normal> { -0.560778 0.553911 0.615345 }
+    }
+    <Vertex> 2419 {
+      -0.480806201696 0.348001539707 3.20289444923
+      <UV>  {
+        0.177940 0.642357
+        <Tangent> { -0.157459 -0.499295 0.852004 }
+        <Binormal> { -0.972635 -0.021952 -0.192617 }
+      }
+      <Normal> { -0.135014 0.795160 0.591144 }
+    }
+    <Vertex> 2420 {
+      -0.569573938847 0.15232808888 3.2419397831
+      <UV>  {
+        0.148211 0.598294
+        <Tangent> { -0.776108 -0.577988 0.252162 }
+        <Binormal> { -0.590961 0.659100 -0.308126 }
+      }
+      <Normal> { -0.282266 0.186804 0.940947 }
+    }
+    <Vertex> 2421 {
+      -0.480806201696 0.348001539707 3.20289444923
+      <UV>  {
+        0.177940 0.642357
+        <Tangent> { -0.157459 -0.499295 0.852004 }
+        <Binormal> { -0.972635 -0.021952 -0.192617 }
+      }
+      <Normal> { -0.135014 0.795160 0.591144 }
+    }
+    <Vertex> 2422 {
+      -0.564199566841 0.335299521685 3.2419397831
+      <UV>  {
+        0.150496 0.662231
+        <Tangent> { -0.868952 -0.295357 0.397097 }
+        <Binormal> { -0.421238 0.799998 -0.326748 }
+      }
+      <Normal> { -0.017975 0.369915 0.928861 }
+    }
+    <Vertex> 2423 {
+      -0.569573938847 0.15232808888 3.2419397831
+      <UV>  {
+        0.148211 0.598294
+        <Tangent> { -0.776108 -0.577988 0.252162 }
+        <Binormal> { -0.590961 0.659100 -0.308126 }
+      }
+      <Normal> { -0.282266 0.186804 0.940947 }
+    }
+    <Vertex> 2424 {
+      -0.474372982979 0.39210292697 2.99607038498
+      <UV>  {
+        0.195107 0.639577
+        <Tangent> { 0.207206 -0.498109 0.841993 }
+        <Binormal> { -0.227145 -0.054770 0.023497 }
+      }
+      <Normal> { -0.235817 0.680288 -0.693930 }
+    }
+    <Vertex> 2425 {
+      -0.519374251366 0.509792983532 3.20289444923
+      <UV>  {
+        0.203306 0.685512
+        <Tangent> { 0.053792 -0.775071 0.629580 }
+        <Binormal> { -0.868823 -0.276789 -0.266520 }
+      }
+      <Normal> { -0.397626 0.774621 0.491745 }
+    }
+    <Vertex> 2426 {
+      -0.480806201696 0.348001539707 3.20289444923
+      <UV>  {
+        0.177940 0.642357
+        <Tangent> { -0.157459 -0.499295 0.852004 }
+        <Binormal> { -0.972635 -0.021952 -0.192617 }
+      }
+      <Normal> { -0.135014 0.795160 0.591144 }
+    }
+    <Vertex> 2427 {
+      -0.542215943336 0.337688714266 2.99076342583
+      <UV>  {
+        0.214599 0.604674
+        <Tangent> { 0.514331 -0.851110 0.105238 }
+        <Binormal> { 0.678840 0.425653 0.124762 }
+      }
+      <Normal> { -0.149968 0.490738 -0.858272 }
+    }
+    <Vertex> 2428 {
+      -0.519374251366 0.509792983532 3.20289444923
+      <UV>  {
+        0.203306 0.685512
+        <Tangent> { 0.053792 -0.775071 0.629580 }
+        <Binormal> { -0.868823 -0.276789 -0.266520 }
+      }
+      <Normal> { -0.397626 0.774621 0.491745 }
+    }
+    <Vertex> 2429 {
+      -0.474372982979 0.39210292697 2.99607038498
+      <UV>  {
+        0.195107 0.639577
+        <Tangent> { 0.207206 -0.498109 0.841993 }
+        <Binormal> { -0.227145 -0.054770 0.023497 }
+      }
+      <Normal> { -0.235817 0.680288 -0.693930 }
+    }
+    <Vertex> 2430 {
+      -0.542215943336 0.337688714266 2.99076342583
+      <UV>  {
+        0.214599 0.604674
+        <Tangent> { 0.514331 -0.851110 0.105238 }
+        <Binormal> { 0.678840 0.425653 0.124762 }
+      }
+      <Normal> { -0.149968 0.490738 -0.858272 }
+    }
+    <Vertex> 2431 {
+      -0.525541186333 0.512005269527 3.12549424171
+      <UV>  {
+        0.217476 0.669373
+        <Tangent> { 0.330306 -0.624333 0.707888 }
+        <Binormal> { -0.529783 -0.142139 0.121839 }
+      }
+      <Normal> { -0.297769 0.931700 -0.207831 }
+    }
+    <Vertex> 2432 {
+      -0.519374251366 0.509792983532 3.20289444923
+      <UV>  {
+        0.203306 0.685512
+        <Tangent> { 0.053792 -0.775071 0.629580 }
+        <Binormal> { -0.868823 -0.276789 -0.266520 }
+      }
+      <Normal> { -0.397626 0.774621 0.491745 }
+    }
+    <Vertex> 2433 {
+      -0.525541186333 0.512005269527 3.12549424171
+      <UV>  {
+        0.217476 0.669373
+        <Tangent> { 0.330306 -0.624333 0.707888 }
+        <Binormal> { -0.529783 -0.142139 0.121839 }
+      }
+      <Normal> { -0.297769 0.931700 -0.207831 }
+    }
+    <Vertex> 2434 {
+      -0.542215943336 0.337688714266 2.99076342583
+      <UV>  {
+        0.214599 0.604674
+        <Tangent> { 0.514331 -0.851110 0.105238 }
+        <Binormal> { 0.678840 0.425653 0.124762 }
+      }
+      <Normal> { -0.149968 0.490738 -0.858272 }
+    }
+    <Vertex> 2435 {
+      -0.585763275623 0.516266703606 2.97545671463
+      <UV>  {
+        0.249141 0.635703
+        <Tangent> { 0.697630 -0.656030 0.287988 }
+        <Binormal> { 0.278543 0.370071 0.168263 }
+      }
+      <Normal> { -0.390057 0.607990 -0.691488 }
+    }
+    <Vertex> 2436 {
+      -0.723321437836 0.37842682004 2.92400598526
+      <UV>  {
+        0.265923 0.542730
+        <Tangent> { 0.472650 -0.871868 0.128253 }
+        <Binormal> { 0.777070 0.438748 0.118890 }
+      }
+      <Normal> { -0.045808 0.336039 -0.940703 }
+    }
+    <Vertex> 2437 {
+      -0.749517917633 0.455159544945 2.92400598526
+      <UV>  {
+        0.290311 0.566381
+        <Tangent> { 0.784987 -0.614566 0.078129 }
+        <Binormal> { 0.569500 0.739964 0.098638 }
+      }
+      <Normal> { -0.151585 0.244331 -0.957732 }
+    }
+    <Vertex> 2438 {
+      -0.585763275623 0.516266703606 2.97545671463
+      <UV>  {
+        0.249141 0.635703
+        <Tangent> { 0.697630 -0.656030 0.287988 }
+        <Binormal> { 0.278543 0.370071 0.168263 }
+      }
+      <Normal> { -0.390057 0.607990 -0.691488 }
+    }
+    <Vertex> 2439 {
+      -0.585763275623 0.516266703606 2.97545671463
+      <UV>  {
+        0.249141 0.635703
+        <Tangent> { 0.697630 -0.656030 0.287988 }
+        <Binormal> { 0.278543 0.370071 0.168263 }
+      }
+      <Normal> { -0.390057 0.607990 -0.691488 }
+    }
+    <Vertex> 2440 {
+      -0.542215943336 0.337688714266 2.99076342583
+      <UV>  {
+        0.214599 0.604674
+        <Tangent> { 0.514331 -0.851110 0.105238 }
+        <Binormal> { 0.678840 0.425653 0.124762 }
+      }
+      <Normal> { -0.149968 0.490738 -0.858272 }
+    }
+    <Vertex> 2441 {
+      -0.723321437836 0.37842682004 2.92400598526
+      <UV>  {
+        0.265923 0.542730
+        <Tangent> { 0.472650 -0.871868 0.128253 }
+        <Binormal> { 0.777070 0.438748 0.118890 }
+      }
+      <Normal> { -0.045808 0.336039 -0.940703 }
+    }
+    <Vertex> 2442 {
+      -0.480806201696 0.348001539707 3.20289444923
+      <UV>  {
+        0.177940 0.642357
+        <Tangent> { -0.157459 -0.499295 0.852004 }
+        <Binormal> { -0.972635 -0.021952 -0.192617 }
+      }
+      <Normal> { -0.135014 0.795160 0.591144 }
+    }
+    <Vertex> 2443 {
+      -0.519374251366 0.509792983532 3.20289444923
+      <UV>  {
+        0.203306 0.685512
+        <Tangent> { 0.053792 -0.775071 0.629580 }
+        <Binormal> { -0.868823 -0.276789 -0.266520 }
+      }
+      <Normal> { -0.397626 0.774621 0.491745 }
+    }
+    <Vertex> 2444 {
+      -0.564199566841 0.335299521685 3.2419397831
+      <UV>  {
+        0.150496 0.662231
+        <Tangent> { -0.868952 -0.295357 0.397097 }
+        <Binormal> { -0.421238 0.799998 -0.326748 }
+      }
+      <Normal> { -0.017975 0.369915 0.928861 }
+    }
+    <Vertex> 2445 {
+      -0.519374251366 0.509792983532 3.20289444923
+      <UV>  {
+        0.203306 0.685512
+        <Tangent> { 0.053792 -0.775071 0.629580 }
+        <Binormal> { -0.868823 -0.276789 -0.266520 }
+      }
+      <Normal> { -0.397626 0.774621 0.491745 }
+    }
+    <Vertex> 2446 {
+      -0.625165939331 0.513877511024 3.2419397831
+      <UV>  {
+        0.187527 0.733756
+        <Tangent> { -0.309181 -0.904676 0.293203 }
+        <Binormal> { -0.934396 0.231734 -0.270304 }
+      }
+      <Normal> { -0.179571 0.348827 0.919797 }
+    }
+    <Vertex> 2447 {
+      -0.564199566841 0.335299521685 3.2419397831
+      <UV>  {
+        0.150496 0.662231
+        <Tangent> { -0.868952 -0.295357 0.397097 }
+        <Binormal> { -0.421238 0.799998 -0.326748 }
+      }
+      <Normal> { -0.017975 0.369915 0.928861 }
+    }
+    <Vertex> 2448 {
+      -0.525541186333 0.512005269527 3.12549424171
+      <UV>  {
+        0.217476 0.669373
+        <Tangent> { 0.330306 -0.624333 0.707888 }
+        <Binormal> { -0.529783 -0.142139 0.121839 }
+      }
+      <Normal> { -0.297769 0.931700 -0.207831 }
+    }
+    <Vertex> 2449 {
+      -0.586872696877 0.642450928688 3.19779229164
+      <UV>  {
+        0.235020 0.729612
+        <Tangent> { 0.310376 -0.733529 0.604650 }
+        <Binormal> { -0.681843 -0.421837 -0.161751 }
+      }
+      <Normal> { -0.552263 0.784051 0.283242 }
+    }
+    <Vertex> 2450 {
+      -0.519374251366 0.509792983532 3.20289444923
+      <UV>  {
+        0.203306 0.685512
+        <Tangent> { 0.053792 -0.775071 0.629580 }
+        <Binormal> { -0.868823 -0.276789 -0.266520 }
+      }
+      <Normal> { -0.397626 0.774621 0.491745 }
+    }
+    <Vertex> 2451 {
+      -0.585763275623 0.516266703606 2.97545671463
+      <UV>  {
+        0.249141 0.635703
+        <Tangent> { 0.697630 -0.656030 0.287988 }
+        <Binormal> { 0.278543 0.370071 0.168263 }
+      }
+      <Normal> { -0.390057 0.607990 -0.691488 }
+    }
+    <Vertex> 2452 {
+      -0.586872696877 0.642450928688 3.19779229164
+      <UV>  {
+        0.235020 0.729612
+        <Tangent> { 0.310376 -0.733529 0.604650 }
+        <Binormal> { -0.681843 -0.421837 -0.161751 }
+      }
+      <Normal> { -0.552263 0.784051 0.283242 }
+    }
+    <Vertex> 2453 {
+      -0.525541186333 0.512005269527 3.12549424171
+      <UV>  {
+        0.217476 0.669373
+        <Tangent> { 0.330306 -0.624333 0.707888 }
+        <Binormal> { -0.529783 -0.142139 0.121839 }
+      }
+      <Normal> { -0.297769 0.931700 -0.207831 }
+    }
+    <Vertex> 2454 {
+      -0.585763275623 0.516266703606 2.97545671463
+      <UV>  {
+        0.249141 0.635703
+        <Tangent> { 0.697630 -0.656030 0.287988 }
+        <Binormal> { 0.278543 0.370071 0.168263 }
+      }
+      <Normal> { -0.390057 0.607990 -0.691488 }
+    }
+    <Vertex> 2455 {
+      -0.636331856251 0.642112135887 3.1203918457
+      <UV>  {
+        0.259400 0.708814
+        <Tangent> { 0.781204 -0.595692 0.186739 }
+        <Binormal> { 0.114219 0.171461 0.069132 }
+      }
+      <Normal> { -0.689322 0.614124 -0.384259 }
+    }
+    <Vertex> 2456 {
+      -0.586872696877 0.642450928688 3.19779229164
+      <UV>  {
+        0.235020 0.729612
+        <Tangent> { 0.310376 -0.733529 0.604650 }
+        <Binormal> { -0.681843 -0.421837 -0.161751 }
+      }
+      <Normal> { -0.552263 0.784051 0.283242 }
+    }
+    <Vertex> 2457 {
+      -0.636331856251 0.642112135887 3.1203918457
+      <UV>  {
+        0.259400 0.708814
+        <Tangent> { 0.781204 -0.595692 0.186739 }
+        <Binormal> { 0.114219 0.171461 0.069132 }
+      }
+      <Normal> { -0.689322 0.614124 -0.384259 }
+    }
+    <Vertex> 2458 {
+      -0.585763275623 0.516266703606 2.97545671463
+      <UV>  {
+        0.249141 0.635703
+        <Tangent> { 0.697630 -0.656030 0.287988 }
+        <Binormal> { 0.278543 0.370071 0.168263 }
+      }
+      <Normal> { -0.390057 0.607990 -0.691488 }
+    }
+    <Vertex> 2459 {
+      -0.735042333603 0.648924648762 2.97035455704
+      <UV>  {
+        0.280776 0.638816
+        <Tangent> { 0.762063 -0.645775 0.047273 }
+        <Binormal> { 0.452103 0.536053 0.034665 }
+      }
+      <Normal> { -0.494888 0.464858 -0.734123 }
+    }
+    <Vertex> 2460 {
+      -0.735042333603 0.648924648762 2.97035455704
+      <UV>  {
+        0.280776 0.638816
+        <Tangent> { 0.762063 -0.645775 0.047273 }
+        <Binormal> { 0.452103 0.536053 0.034665 }
+      }
+      <Normal> { -0.494888 0.464858 -0.734123 }
+    }
+    <Vertex> 2461 {
+      -0.585763275623 0.516266703606 2.97545671463
+      <UV>  {
+        0.249141 0.635703
+        <Tangent> { 0.697630 -0.656030 0.287988 }
+        <Binormal> { 0.278543 0.370071 0.168263 }
+      }
+      <Normal> { -0.390057 0.607990 -0.691488 }
+    }
+    <Vertex> 2462 {
+      -0.749517917633 0.455159544945 2.92400598526
+      <UV>  {
+        0.290311 0.566381
+        <Tangent> { 0.784987 -0.614566 0.078129 }
+        <Binormal> { 0.569500 0.739964 0.098638 }
+      }
+      <Normal> { -0.151585 0.244331 -0.957732 }
+    }
+    <Vertex> 2463 {
+      -0.519374251366 0.509792983532 3.20289444923
+      <UV>  {
+        0.203306 0.685512
+        <Tangent> { 0.053792 -0.775071 0.629580 }
+        <Binormal> { -0.868823 -0.276789 -0.266520 }
+      }
+      <Normal> { -0.397626 0.774621 0.491745 }
+    }
+    <Vertex> 2464 {
+      -0.586872696877 0.642450928688 3.19779229164
+      <UV>  {
+        0.235020 0.729612
+        <Tangent> { 0.310376 -0.733529 0.604650 }
+        <Binormal> { -0.681843 -0.421837 -0.161751 }
+      }
+      <Normal> { -0.552263 0.784051 0.283242 }
+    }
+    <Vertex> 2465 {
+      -0.625165939331 0.513877511024 3.2419397831
+      <UV>  {
+        0.187527 0.733756
+        <Tangent> { -0.309181 -0.904676 0.293203 }
+        <Binormal> { -0.934396 0.231734 -0.270304 }
+      }
+      <Normal> { -0.179571 0.348827 0.919797 }
+    }
+    <Vertex> 2466 {
+      -0.586872696877 0.642450928688 3.19779229164
+      <UV>  {
+        0.235020 0.729612
+        <Tangent> { 0.310376 -0.733529 0.604650 }
+        <Binormal> { -0.681843 -0.421837 -0.161751 }
+      }
+      <Normal> { -0.552263 0.784051 0.283242 }
+    }
+    <Vertex> 2467 {
+      -0.690487027168 0.646535456181 3.2368376255
+      <UV>  {
+        0.222110 0.785409
+        <Tangent> { -0.220553 -0.928956 0.297317 }
+        <Binormal> { -0.952293 0.139269 -0.271281 }
+      }
+      <Normal> { -0.208441 0.352062 0.912442 }
+    }
+    <Vertex> 2468 {
+      -0.625165939331 0.513877511024 3.2419397831
+      <UV>  {
+        0.187527 0.733756
+        <Tangent> { -0.309181 -0.904676 0.293203 }
+        <Binormal> { -0.934396 0.231734 -0.270304 }
+      }
+      <Normal> { -0.179571 0.348827 0.919797 }
+    }
+    <Vertex> 2469 {
+      -0.849482357502 0.107734680176 3.30386042595
+      <UV>  {
+        0.106627 0.482697
+        <Tangent> { 0.279459 0.680368 0.677497 }
+        <Binormal> { 0.847186 0.065903 -0.415636 }
+      }
+      <Normal> { 0.418043 -0.469527 0.777642 }
+    }
+    <Vertex> 2470 {
+      -0.800342679024 0.0505775026977 3.25622868538
+      <UV>  {
+        0.126562 0.510330
+        <Tangent> { -0.000813 0.485151 0.874430 }
+        <Binormal> { 0.363295 0.740698 -0.410616 }
+      }
+      <Normal> { 0.846583 -0.128971 0.516373 }
+    }
+    <Vertex> 2471 {
+      -0.800342679024 0.107734680176 3.33243823051
+      <UV>  {
+        0.100504 0.510874
+        <Tangent> { -0.016080 0.812394 0.582887 }
+        <Binormal> { 0.718428 0.286318 -0.379235 }
+      }
+      <Normal> { 0.466811 0.000000 0.884335 }
+    }
+    <Vertex> 2472 {
+      -0.849482357502 0.107734680176 3.30386042595
+      <UV>  {
+        0.106627 0.482697
+        <Tangent> { 0.279459 0.680368 0.677497 }
+        <Binormal> { 0.847186 0.065903 -0.415636 }
+      }
+      <Normal> { 0.418043 -0.469527 0.777642 }
+    }
+    <Vertex> 2473 {
+      -0.922657608986 0.0709864199162 3.18954610825
+      <UV>  {
+        0.143569 0.467275
+        <Tangent> { 0.371929 0.367462 0.852432 }
+        <Binormal> { 0.478549 0.477792 -0.414763 }
+      }
+      <Normal> { 0.786126 -0.338481 0.517106 }
+    }
+    <Vertex> 2474 {
+      -0.800342679024 0.0505775026977 3.25622868538
+      <UV>  {
+        0.126562 0.510330
+        <Tangent> { -0.000813 0.485151 0.874430 }
+        <Binormal> { 0.363295 0.740698 -0.410616 }
+      }
+      <Normal> { 0.846583 -0.128971 0.516373 }
+    }
+    <Vertex> 2475 {
+      -0.849482357502 0.107734680176 3.30386042595
+      <UV>  {
+        0.106627 0.482697
+        <Tangent> { 0.279459 0.680368 0.677497 }
+        <Binormal> { 0.847186 0.065903 -0.415636 }
+      }
+      <Normal> { 0.418043 -0.469527 0.777642 }
+    }
+    <Vertex> 2476 {
+      -0.926723182201 0.128143593669 3.27051901817
+      <UV>  {
+        0.125321 0.449419
+        <Tangent> { 0.761873 0.545109 0.349865 }
+        <Binormal> { 0.615491 -0.638344 -0.345732 }
+      }
+      <Normal> { 0.198828 -0.311533 0.929167 }
+    }
+    <Vertex> 2477 {
+      -0.922657608986 0.0709864199162 3.18954610825
+      <UV>  {
+        0.143569 0.467275
+        <Tangent> { 0.371929 0.367462 0.852432 }
+        <Binormal> { 0.478549 0.477792 -0.414763 }
+      }
+      <Normal> { 0.786126 -0.338481 0.517106 }
+    }
+    <Vertex> 2478 {
+      -0.922657608986 0.0709864199162 3.18954610825
+      <UV>  {
+        0.143569 0.467275
+        <Tangent> { 0.371929 0.367462 0.852432 }
+        <Binormal> { 0.478549 0.477792 -0.414763 }
+      }
+      <Normal> { 0.786126 -0.338481 0.517106 }
+    }
+    <Vertex> 2479 {
+      -0.926723182201 0.128143593669 3.27051901817
+      <UV>  {
+        0.125321 0.449419
+        <Tangent> { 0.761873 0.545109 0.349865 }
+        <Binormal> { 0.615491 -0.638344 -0.345732 }
+      }
+      <Normal> { 0.198828 -0.311533 0.929167 }
+    }
+    <Vertex> 2480 {
+      -1.04055130482 0.128143593669 3.26099228859
+      <UV>  {
+        0.147591 0.428733
+        <Tangent> { 0.714230 -0.117893 0.689911 }
+        <Binormal> { 0.132390 -0.370029 -0.200288 }
+      }
+      <Normal> { 0.362072 -0.340190 0.867824 }
+    }
+    <Vertex> 2481 {
+      -1.05274689198 0.0709864273667 3.08475732803
+      <UV>  {
+        0.168926 0.447105
+        <Tangent> { 0.149819 -0.234343 0.960540 }
+        <Binormal> { 0.479143 0.816896 0.124564 }
+      }
+      <Normal> { 0.858180 -0.510910 0.049532 }
+    }
+    <Vertex> 2482 {
+      -0.922657608986 0.0709864199162 3.18954610825
+      <UV>  {
+        0.143569 0.467275
+        <Tangent> { 0.371929 0.367462 0.852432 }
+        <Binormal> { 0.478549 0.477792 -0.414763 }
+      }
+      <Normal> { 0.786126 -0.338481 0.517106 }
+    }
+    <Vertex> 2483 {
+      -1.08770608902 0.104302890599 3.11524701118
+      <UV>  {
+        0.160037 0.432341
+        <Tangent> { 0.104922 0.068943 0.992088 }
+        <Binormal> { 0.739989 0.643643 -0.122989 }
+      }
+      <Normal> { 0.662923 -0.736595 0.133763 }
+    }
+    <Vertex> 2484 {
+      -0.922657608986 0.0709864199162 3.18954610825
+      <UV>  {
+        0.143569 0.467275
+        <Tangent> { 0.371929 0.367462 0.852432 }
+        <Binormal> { 0.478549 0.477792 -0.414763 }
+      }
+      <Normal> { 0.786126 -0.338481 0.517106 }
+    }
+    <Vertex> 2485 {
+      -1.04055130482 0.128143593669 3.26099228859
+      <UV>  {
+        0.147591 0.428733
+        <Tangent> { 0.714230 -0.117893 0.689911 }
+        <Binormal> { 0.132390 -0.370029 -0.200288 }
+      }
+      <Normal> { 0.362072 -0.340190 0.867824 }
+    }
+    <Vertex> 2486 {
+      -1.08770608902 0.104302890599 3.11524701118
+      <UV>  {
+        0.160037 0.432341
+        <Tangent> { 0.104922 0.068943 0.992088 }
+        <Binormal> { 0.739989 0.643643 -0.122989 }
+      }
+      <Normal> { 0.662923 -0.736595 0.133763 }
+    }
+    <Vertex> 2487 {
+      -1.04055130482 0.128143593669 3.26099228859
+      <UV>  {
+        0.147591 0.428733
+        <Tangent> { 0.714230 -0.117893 0.689911 }
+        <Binormal> { 0.132390 -0.370029 -0.200288 }
+      }
+      <Normal> { 0.362072 -0.340190 0.867824 }
+    }
+    <Vertex> 2488 {
+      -1.194445014 0.289806753397 3.16992473602
+      <UV>  {
+        0.158853 0.417806
+        <Tangent> { 0.145627 0.014993 0.989226 }
+        <Binormal> { 0.708333 -0.267397 -0.100223 }
+      }
+      <Normal> { -0.169012 -0.705618 0.688101 }
+    }
+    <Vertex> 2489 {
+      -1.08770608902 0.104302890599 3.11524701118
+      <UV>  {
+        0.160037 0.432341
+        <Tangent> { 0.104922 0.068943 0.992088 }
+        <Binormal> { 0.739989 0.643643 -0.122989 }
+      }
+      <Normal> { 0.662923 -0.736595 0.133763 }
+    }
+    <Vertex> 2490 {
+      -1.13701474667 0.250958323479 3.07347083092
+      <UV>  {
+        0.165540 0.412132
+        <Tangent> { 0.307700 -0.096441 0.946583 }
+        <Binormal> { 0.867854 0.329865 -0.248500 }
+      }
+      <Normal> { 0.373241 -0.924589 0.076174 }
+    }
+    <Vertex> 2491 {
+      -1.08770608902 0.104302890599 3.11524701118
+      <UV>  {
+        0.160037 0.432341
+        <Tangent> { 0.104922 0.068943 0.992088 }
+        <Binormal> { 0.739989 0.643643 -0.122989 }
+      }
+      <Normal> { 0.662923 -0.736595 0.133763 }
+    }
+    <Vertex> 2492 {
+      -1.194445014 0.289806753397 3.16992473602
+      <UV>  {
+        0.158853 0.417806
+        <Tangent> { 0.145627 0.014993 0.989226 }
+        <Binormal> { 0.708333 -0.267397 -0.100223 }
+      }
+      <Normal> { -0.169012 -0.705618 0.688101 }
+    }
+    <Vertex> 2493 {
+      -1.1563782692 0.264056444168 3.00559711456
+      <UV>  {
+        0.173775 0.413770
+        <Tangent> { -0.950562 0.255171 0.176972 }
+        <Binormal> { 0.007432 -0.539574 0.817918 }
+      }
+      <Normal> { -0.493698 -0.727928 -0.475723 }
+    }
+    <Vertex> 2494 {
+      -1.13701474667 0.250958323479 3.07347083092
+      <UV>  {
+        0.165540 0.412132
+        <Tangent> { 0.307700 -0.096441 0.946583 }
+        <Binormal> { 0.867854 0.329865 -0.248500 }
+      }
+      <Normal> { 0.373241 -0.924589 0.076174 }
+    }
+    <Vertex> 2495 {
+      -1.22316014767 0.309231609106 3.06811308861
+      <UV>  {
+        0.171370 0.412411
+        <Tangent> { -0.745562 0.453441 0.488394 }
+        <Binormal> { 0.313860 0.419353 0.089784 }
+      }
+      <Normal> { 0.795648 -0.604327 0.041261 }
+    }
+    <Vertex> 2496 {
+      -1.1563782692 0.264056444168 3.00559711456
+      <UV>  {
+        0.173775 0.413770
+        <Tangent> { -0.950562 0.255171 0.176972 }
+        <Binormal> { 0.007432 -0.539574 0.817918 }
+      }
+      <Normal> { -0.493698 -0.727928 -0.475723 }
+    }
+    <Vertex> 2497 {
+      -1.13238143921 0.247824236751 2.93971657753
+      <UV>  {
+        0.179556 0.424285
+        <Tangent> { -0.713841 -0.114986 -0.690804 }
+        <Binormal> { 0.439067 -0.417953 -0.384140 }
+      }
+      <Normal> { -0.252541 0.497452 -0.829890 }
+    }
+    <Vertex> 2498 {
+      -1.07153367996 0.128143593669 3.00096797943
+      <UV>  {
+        0.182799 0.442976
+        <Tangent> { -0.381651 -0.433144 -0.816535 }
+        <Binormal> { 0.406305 -0.044845 -0.166119 }
+      }
+      <Normal> { -0.377819 0.006470 -0.925840 }
+    }
+    <Vertex> 2499 {
+      -1.07153367996 0.128143593669 3.00096797943
+      <UV>  {
+        0.182799 0.442976
+        <Tangent> { -0.381651 -0.433144 -0.816535 }
+        <Binormal> { 0.406305 -0.044845 -0.166119 }
+      }
+      <Normal> { -0.377819 0.006470 -0.925840 }
+    }
+    <Vertex> 2500 {
+      -1.1239824295 0.176142662764 2.91246652603
+      <UV>  {
+        0.177029 0.431948
+        <Tangent> { -0.404360 -0.902997 -0.145225 }
+        <Binormal> { 0.276444 -0.254295 0.811462 }
+      }
+      <Normal> { 0.588672 -0.692190 -0.417463 }
+    }
+    <Vertex> 2501 {
+      -1.1563782692 0.264056444168 3.00559711456
+      <UV>  {
+        0.173775 0.413770
+        <Tangent> { -0.950562 0.255171 0.176972 }
+        <Binormal> { 0.007432 -0.539574 0.817918 }
+      }
+      <Normal> { -0.493698 -0.727928 -0.475723 }
+    }
+    <Vertex> 2502 {
+      -1.1563782692 0.264056444168 3.00559711456
+      <UV>  {
+        0.173775 0.413770
+        <Tangent> { -0.950562 0.255171 0.176972 }
+        <Binormal> { 0.007432 -0.539574 0.817918 }
+      }
+      <Normal> { -0.493698 -0.727928 -0.475723 }
+    }
+    <Vertex> 2503 {
+      -1.1239824295 0.176142662764 2.91246652603
+      <UV>  {
+        0.177029 0.431948
+        <Tangent> { -0.404360 -0.902997 -0.145225 }
+        <Binormal> { 0.276444 -0.254295 0.811462 }
+      }
+      <Normal> { 0.588672 -0.692190 -0.417463 }
+    }
+    <Vertex> 2504 {
+      -1.15566802025 0.197576746345 2.99820160866
+      <UV>  {
+        0.171338 0.422852
+        <Tangent> { 0.128433 -0.351944 0.927168 }
+        <Binormal> { 0.881778 0.217000 -0.039774 }
+      }
+      <Normal> { 0.240730 -0.969359 0.048250 }
+    }
+    <Vertex> 2505 {
+      -1.13701474667 0.250958323479 3.07347083092
+      <UV>  {
+        0.165540 0.412132
+        <Tangent> { 0.307700 -0.096441 0.946583 }
+        <Binormal> { 0.867854 0.329865 -0.248500 }
+      }
+      <Normal> { 0.373241 -0.924589 0.076174 }
+    }
+    <Vertex> 2506 {
+      -1.1563782692 0.264056444168 3.00559711456
+      <UV>  {
+        0.173775 0.413770
+        <Tangent> { -0.950562 0.255171 0.176972 }
+        <Binormal> { 0.007432 -0.539574 0.817918 }
+      }
+      <Normal> { -0.493698 -0.727928 -0.475723 }
+    }
+    <Vertex> 2507 {
+      -1.15566802025 0.197576746345 2.99820160866
+      <UV>  {
+        0.171338 0.422852
+        <Tangent> { 0.128433 -0.351944 0.927168 }
+        <Binormal> { 0.881778 0.217000 -0.039774 }
+      }
+      <Normal> { 0.240730 -0.969359 0.048250 }
+    }
+    <Vertex> 2508 {
+      -1.15566802025 0.197576746345 2.99820160866
+      <UV>  {
+        0.171338 0.422852
+        <Tangent> { 0.128433 -0.351944 0.927168 }
+        <Binormal> { 0.881778 0.217000 -0.039774 }
+      }
+      <Normal> { 0.240730 -0.969359 0.048250 }
+    }
+    <Vertex> 2509 {
+      -1.08770608902 0.104302890599 3.11524701118
+      <UV>  {
+        0.160037 0.432341
+        <Tangent> { 0.104922 0.068943 0.992088 }
+        <Binormal> { 0.739989 0.643643 -0.122989 }
+      }
+      <Normal> { 0.662923 -0.736595 0.133763 }
+    }
+    <Vertex> 2510 {
+      -1.13701474667 0.250958323479 3.07347083092
+      <UV>  {
+        0.165540 0.412132
+        <Tangent> { 0.307700 -0.096441 0.946583 }
+        <Binormal> { 0.867854 0.329865 -0.248500 }
+      }
+      <Normal> { 0.373241 -0.924589 0.076174 }
+    }
+    <Vertex> 2511 {
+      -1.1239824295 0.176142662764 2.91246652603
+      <UV>  {
+        0.177029 0.431948
+        <Tangent> { -0.404360 -0.902997 -0.145225 }
+        <Binormal> { 0.276444 -0.254295 0.811462 }
+      }
+      <Normal> { 0.588672 -0.692190 -0.417463 }
+    }
+    <Vertex> 2512 {
+      -1.08770608902 0.104302890599 3.11524701118
+      <UV>  {
+        0.160037 0.432341
+        <Tangent> { 0.104922 0.068943 0.992088 }
+        <Binormal> { 0.739989 0.643643 -0.122989 }
+      }
+      <Normal> { 0.662923 -0.736595 0.133763 }
+    }
+    <Vertex> 2513 {
+      -1.15566802025 0.197576746345 2.99820160866
+      <UV>  {
+        0.171338 0.422852
+        <Tangent> { 0.128433 -0.351944 0.927168 }
+        <Binormal> { 0.881778 0.217000 -0.039774 }
+      }
+      <Normal> { 0.240730 -0.969359 0.048250 }
+    }
+    <Vertex> 2514 {
+      -1.08770608902 0.104302890599 3.11524701118
+      <UV>  {
+        0.160037 0.432341
+        <Tangent> { 0.104922 0.068943 0.992088 }
+        <Binormal> { 0.739989 0.643643 -0.122989 }
+      }
+      <Normal> { 0.662923 -0.736595 0.133763 }
+    }
+    <Vertex> 2515 {
+      -1.1239824295 0.176142662764 2.91246652603
+      <UV>  {
+        0.177029 0.431948
+        <Tangent> { -0.404360 -0.902997 -0.145225 }
+        <Binormal> { 0.276444 -0.254295 0.811462 }
+      }
+      <Normal> { 0.588672 -0.692190 -0.417463 }
+    }
+    <Vertex> 2516 {
+      -1.05274689198 0.0709864273667 3.08475732803
+      <UV>  {
+        0.168926 0.447105
+        <Tangent> { 0.149819 -0.234343 0.960540 }
+        <Binormal> { 0.479143 0.816896 0.124564 }
+      }
+      <Normal> { 0.858180 -0.510910 0.049532 }
+    }
+    <Vertex> 2517 {
+      -1.07153367996 0.128143593669 3.00096797943
+      <UV>  {
+        0.182799 0.442976
+        <Tangent> { -0.381651 -0.433144 -0.816535 }
+        <Binormal> { 0.406305 -0.044845 -0.166119 }
+      }
+      <Normal> { -0.377819 0.006470 -0.925840 }
+    }
+    <Vertex> 2518 {
+      -0.975237131119 0.128143593669 2.95780324936
+      <UV>  {
+        0.191494 0.461505
+        <Tangent> { -0.346101 -0.927111 -0.143799 }
+        <Binormal> { 0.787449 -0.284646 -0.060078 }
+      }
+      <Normal> { -0.202826 -0.369732 -0.906705 }
+    }
+    <Vertex> 2519 {
+      -0.93078815937 0.0709864199162 2.89548659325
+      <UV>  {
+        0.186814 0.475295
+        <Tangent> { -0.258471 -0.829497 -0.495104 }
+        <Binormal> { 0.671688 -0.294572 0.142869 }
+      }
+      <Normal> { 0.092593 -0.255593 -0.962310 }
+    }
+    <Vertex> 2520 {
+      -0.975237131119 0.128143593669 2.95780324936
+      <UV>  {
+        0.191494 0.461505
+        <Tangent> { -0.346101 -0.927111 -0.143799 }
+        <Binormal> { 0.787449 -0.284646 -0.060078 }
+      }
+      <Normal> { -0.202826 -0.369732 -0.906705 }
+    }
+    <Vertex> 2521 {
+      -0.800342679024 0.107734680176 2.85965514183
+      <UV>  {
+        0.201895 0.505679
+        <Tangent> { -0.044957 -0.964760 0.259262 }
+        <Binormal> { 0.956641 -0.003099 0.154356 }
+      }
+      <Normal> { 0.159215 -0.016724 -0.987091 }
+    }
+    <Vertex> 2522 {
+      -0.800342679024 0.0505775026977 2.89423346519
+      <UV>  {
+        0.192803 0.506492
+        <Tangent> { -0.021792 -0.999757 -0.003257 }
+        <Binormal> { 0.989267 -0.022033 0.144176 }
+      }
+      <Normal> { 0.144047 -0.007508 -0.989532 }
+    }
+    <Vertex> 2523 {
+      -0.800342679024 0.0505775026977 2.89423346519
+      <UV>  {
+        0.192803 0.506492
+        <Tangent> { -0.021792 -0.999757 -0.003257 }
+        <Binormal> { 0.989267 -0.022033 0.144176 }
+      }
+      <Normal> { 0.144047 -0.007508 -0.989532 }
+    }
+    <Vertex> 2524 {
+      -0.93078815937 0.0709864199162 2.89548659325
+      <UV>  {
+        0.186814 0.475295
+        <Tangent> { -0.258471 -0.829497 -0.495104 }
+        <Binormal> { 0.671688 -0.294572 0.142869 }
+      }
+      <Normal> { 0.092593 -0.255593 -0.962310 }
+    }
+    <Vertex> 2525 {
+      -0.975237131119 0.128143593669 2.95780324936
+      <UV>  {
+        0.191494 0.461505
+        <Tangent> { -0.346101 -0.927111 -0.143799 }
+        <Binormal> { 0.787449 -0.284646 -0.060078 }
+      }
+      <Normal> { -0.202826 -0.369732 -0.906705 }
+    }
+    <Vertex> 2526 {
+      -0.93078815937 0.0709864199162 2.89548659325
+      <UV>  {
+        0.186814 0.475295
+        <Tangent> { -0.258471 -0.829497 -0.495104 }
+        <Binormal> { 0.671688 -0.294572 0.142869 }
+      }
+      <Normal> { 0.092593 -0.255593 -0.962310 }
+    }
+    <Vertex> 2527 {
+      -1.1239824295 0.176142662764 2.91246652603
+      <UV>  {
+        0.177029 0.431948
+        <Tangent> { -0.404360 -0.902997 -0.145225 }
+        <Binormal> { 0.276444 -0.254295 0.811462 }
+      }
+      <Normal> { 0.588672 -0.692190 -0.417463 }
+    }
+    <Vertex> 2528 {
+      -1.07153367996 0.128143593669 3.00096797943
+      <UV>  {
+        0.182799 0.442976
+        <Tangent> { -0.381651 -0.433144 -0.816535 }
+        <Binormal> { 0.406305 -0.044845 -0.166119 }
+      }
+      <Normal> { -0.377819 0.006470 -0.925840 }
+    }
+    <Vertex> 2529 {
+      -0.800342679024 0.0267617050558 2.91328573227
+      <UV>  {
+        0.206384 0.456011
+        <Tangent> { -0.235958 0.783433 -0.574940 }
+        <Binormal> { -0.428965 -0.603656 -0.646514 }
+      }
+      <Normal> { 0.896817 -0.237678 -0.373119 }
+    }
+    <Vertex> 2530 {
+      -0.781440198421 -0.0286973509938 3.07523179054
+      <UV>  {
+        0.199542 0.539441
+        <Tangent> { -0.923008 0.332819 -0.193100 }
+        <Binormal> { 0.001858 -0.147314 -0.262785 }
+      }
+      <Normal> { 0.996002 -0.074435 0.048769 }
+    }
+    <Vertex> 2531 {
+      -0.800342679024 0.0172355119139 3.00262832642
+      <UV>  {
+        0.196853 0.508952
+        <Tangent> { -0.559215 0.650353 -0.514121 }
+        <Binormal> { -0.547957 -0.667283 -0.248082 }
+      }
+      <Normal> { 0.750023 -0.428632 -0.503708 }
+    }
+    <Vertex> 2532 {
+      -0.800342679024 0.0267617050558 2.91328573227
+      <UV>  {
+        0.188569 0.506845
+        <Tangent> { -0.038443 -0.357471 0.933133 }
+        <Binormal> { 0.355165 0.822506 0.329723 }
+      }
+      <Normal> { 0.896817 -0.237678 -0.373119 }
+    }
+    <Vertex> 2533 {
+      -0.93078815937 0.0709864199162 2.89548659325
+      <UV>  {
+        0.186814 0.475295
+        <Tangent> { -0.258471 -0.829497 -0.495104 }
+        <Binormal> { 0.671688 -0.294572 0.142869 }
+      }
+      <Normal> { 0.092593 -0.255593 -0.962310 }
+    }
+    <Vertex> 2534 {
+      -0.800342679024 0.0505775026977 2.89423346519
+      <UV>  {
+        0.192803 0.506492
+        <Tangent> { -0.021792 -0.999757 -0.003257 }
+        <Binormal> { 0.989267 -0.022033 0.144176 }
+      }
+      <Normal> { 0.144047 -0.007508 -0.989532 }
+    }
+    <Vertex> 2535 {
+      -0.93078815937 0.0709864199162 2.89548659325
+      <UV>  {
+        0.186814 0.475295
+        <Tangent> { -0.258471 -0.829497 -0.495104 }
+        <Binormal> { 0.671688 -0.294572 0.142869 }
+      }
+      <Normal> { 0.092593 -0.255593 -0.962310 }
+    }
+    <Vertex> 2536 {
+      -0.800342679024 0.0267617050558 2.91328573227
+      <UV>  {
+        0.188569 0.506845
+        <Tangent> { -0.038443 -0.357471 0.933133 }
+        <Binormal> { 0.355165 0.822506 0.329723 }
+      }
+      <Normal> { 0.896817 -0.237678 -0.373119 }
+    }
+    <Vertex> 2537 {
+      -0.954890727997 0.0529517382383 3.03441381454
+      <UV>  {
+        0.174900 0.468998
+        <Tangent> { -0.000940 -0.402305 0.915505 }
+        <Binormal> { 0.572268 0.730136 0.321435 }
+      }
+      <Normal> { 0.797937 -0.447859 -0.403302 }
+    }
+    <Vertex> 2538 {
+      -0.800342679024 0.0267617050558 2.91328573227
+      <UV>  {
+        0.188569 0.506845
+        <Tangent> { -0.038443 -0.357471 0.933133 }
+        <Binormal> { 0.355165 0.822506 0.329723 }
+      }
+      <Normal> { 0.896817 -0.237678 -0.373119 }
+    }
+    <Vertex> 2539 {
+      -0.857612967491 0.0172361359 2.99310159683
+      <UV>  {
+        0.176241 0.493689
+        <Tangent> { -0.106328 -0.783148 0.612678 }
+        <Binormal> { 0.634474 0.312528 0.509595 }
+      }
+      <Normal> { 0.642659 -0.059236 -0.763817 }
+    }
+    <Vertex> 2540 {
+      -0.954890727997 0.0529517382383 3.03441381454
+      <UV>  {
+        0.174900 0.468998
+        <Tangent> { -0.000940 -0.402305 0.915505 }
+        <Binormal> { 0.572268 0.730136 0.321435 }
+      }
+      <Normal> { 0.797937 -0.447859 -0.403302 }
+    }
+    <Vertex> 2541 {
+      -0.800342679024 0.0172355119139 3.00262832642
+      <UV>  {
+        0.176134 0.506723
+        <Tangent> { -0.101142 -0.559503 0.822634 }
+        <Binormal> { 0.634434 0.566048 0.462993 }
+      }
+      <Normal> { 0.750023 -0.428632 -0.503708 }
+    }
+    <Vertex> 2542 {
+      -0.857612967491 0.0172361359 2.99310159683
+      <UV>  {
+        0.176241 0.493689
+        <Tangent> { -0.106328 -0.783148 0.612678 }
+        <Binormal> { 0.634474 0.312528 0.509595 }
+      }
+      <Normal> { 0.642659 -0.059236 -0.763817 }
+    }
+    <Vertex> 2543 {
+      -0.800342679024 0.0267617050558 2.91328573227
+      <UV>  {
+        0.188569 0.506845
+        <Tangent> { -0.038443 -0.357471 0.933133 }
+        <Binormal> { 0.355165 0.822506 0.329723 }
+      }
+      <Normal> { 0.896817 -0.237678 -0.373119 }
+    }
+    <Vertex> 2544 {
+      -0.93078815937 0.0709864199162 2.89548659325
+      <UV>  {
+        0.186814 0.475295
+        <Tangent> { -0.258471 -0.829497 -0.495104 }
+        <Binormal> { 0.671688 -0.294572 0.142869 }
+      }
+      <Normal> { 0.092593 -0.255593 -0.962310 }
+    }
+    <Vertex> 2545 {
+      -0.954890727997 0.0529517382383 3.03441381454
+      <UV>  {
+        0.174900 0.468998
+        <Tangent> { -0.000940 -0.402305 0.915505 }
+        <Binormal> { 0.572268 0.730136 0.321435 }
+      }
+      <Normal> { 0.797937 -0.447859 -0.403302 }
+    }
+    <Vertex> 2546 {
+      -1.1239824295 0.176142662764 2.91246652603
+      <UV>  {
+        0.177029 0.431948
+        <Tangent> { -0.404360 -0.902997 -0.145225 }
+        <Binormal> { 0.276444 -0.254295 0.811462 }
+      }
+      <Normal> { 0.588672 -0.692190 -0.417463 }
+    }
+    <Vertex> 2547 {
+      -1.1239824295 0.176142662764 2.91246652603
+      <UV>  {
+        0.177029 0.431948
+        <Tangent> { -0.404360 -0.902997 -0.145225 }
+        <Binormal> { 0.276444 -0.254295 0.811462 }
+      }
+      <Normal> { 0.588672 -0.692190 -0.417463 }
+    }
+    <Vertex> 2548 {
+      -0.954890727997 0.0529517382383 3.03441381454
+      <UV>  {
+        0.174900 0.468998
+        <Tangent> { -0.000940 -0.402305 0.915505 }
+        <Binormal> { 0.572268 0.730136 0.321435 }
+      }
+      <Normal> { 0.797937 -0.447859 -0.403302 }
+    }
+    <Vertex> 2549 {
+      -1.05274689198 0.0709864273667 3.08475732803
+      <UV>  {
+        0.168926 0.447105
+        <Tangent> { 0.149819 -0.234343 0.960540 }
+        <Binormal> { 0.479143 0.816896 0.124564 }
+      }
+      <Normal> { 0.858180 -0.510910 0.049532 }
+    }
+    <Vertex> 2550 {
+      -0.857612967491 0.0172361359 2.99310159683
+      <UV>  {
+        0.176241 0.493689
+        <Tangent> { -0.106328 -0.783148 0.612678 }
+        <Binormal> { 0.634474 0.312528 0.509595 }
+      }
+      <Normal> { 0.642659 -0.059236 -0.763817 }
+    }
+    <Vertex> 2551 {
+      -0.807875812054 -0.0371930338442 3.03358054161
+      <UV>  {
+        0.167931 0.507586
+        <Tangent> { -0.118044 -0.574480 0.809962 }
+        <Binormal> { 0.426025 0.632416 0.510641 }
+      }
+      <Normal> { 0.852473 -0.177160 -0.491806 }
+    }
+    <Vertex> 2552 {
+      -0.857612967491 -0.00657966034487 2.99786496162
+      <UV>  {
+        0.172868 0.494292
+        <Tangent> { -0.009875 -0.564625 0.825289 }
+        <Binormal> { 0.577485 0.636379 0.442291 }
+      }
+      <Normal> { 0.777459 -0.336039 -0.531602 }
+    }
+    <Vertex> 2553 {
+      -0.800342679024 0.0172355119139 3.00262832642
+      <UV>  {
+        0.176134 0.506723
+        <Tangent> { -0.101142 -0.559503 0.822634 }
+        <Binormal> { 0.634434 0.566048 0.462993 }
+      }
+      <Normal> { 0.750023 -0.428632 -0.503708 }
+    }
+    <Vertex> 2554 {
+      -0.807875812054 -0.0371930338442 3.03358054161
+      <UV>  {
+        0.167931 0.507586
+        <Tangent> { -0.118044 -0.574480 0.809962 }
+        <Binormal> { 0.426025 0.632416 0.510641 }
+      }
+      <Normal> { 0.852473 -0.177160 -0.491806 }
+    }
+    <Vertex> 2555 {
+      -0.857612967491 0.0172361359 2.99310159683
+      <UV>  {
+        0.176241 0.493689
+        <Tangent> { -0.106328 -0.783148 0.612678 }
+        <Binormal> { 0.634474 0.312528 0.509595 }
+      }
+      <Normal> { 0.642659 -0.059236 -0.763817 }
+    }
+    <Vertex> 2556 {
+      -0.800342679024 0.0172355119139 3.00262832642
+      <UV>  {
+        0.196853 0.508952
+        <Tangent> { -0.559215 0.650353 -0.514121 }
+        <Binormal> { -0.547957 -0.667283 -0.248082 }
+      }
+      <Normal> { 0.750023 -0.428632 -0.503708 }
+    }
+    <Vertex> 2557 {
+      -0.781440198421 -0.0286973509938 3.07523179054
+      <UV>  {
+        0.199542 0.539441
+        <Tangent> { -0.923008 0.332819 -0.193100 }
+        <Binormal> { 0.001858 -0.147314 -0.262785 }
+      }
+      <Normal> { 0.996002 -0.074435 0.048769 }
+    }
+    <Vertex> 2558 {
+      -0.807875812054 -0.0371930338442 3.03358054161
+      <UV>  {
+        0.175463 0.524074
+        <Tangent> { -0.983761 -0.177972 0.023242 }
+        <Binormal> { 0.091645 -0.464006 0.325999 }
+      }
+      <Normal> { 0.852473 -0.177160 -0.491806 }
+    }
+    <Vertex> 2559 {
+      -0.781440198421 -0.0286973509938 3.07523179054
+      <UV>  {
+        0.199542 0.539441
+        <Tangent> { -0.923008 0.332819 -0.193100 }
+        <Binormal> { 0.001858 -0.147314 -0.262785 }
+      }
+      <Normal> { 0.996002 -0.074435 0.048769 }
+    }
+    <Vertex> 2560 {
+      -0.813110768795 -0.0281890034676 3.07046818733
+      <UV>  {
+        0.190225 0.536963
+        <Tangent> { -0.996281 0.074153 0.043885 }
+        <Binormal> { 0.036529 0.319175 0.289970 }
+      }
+      <Normal> { 0.890622 -0.357341 0.281137 }
+    }
+    <Vertex> 2561 {
+      -0.807875812054 -0.0371930338442 3.03358054161
+      <UV>  {
+        0.175463 0.524074
+        <Tangent> { -0.983761 -0.177972 0.023242 }
+        <Binormal> { 0.091645 -0.464006 0.325999 }
+      }
+      <Normal> { 0.852473 -0.177160 -0.491806 }
+    }
+    <Vertex> 2562 {
+      -0.857612967491 -0.00657966034487 2.99786496162
+      <UV>  {
+        0.172868 0.494292
+        <Tangent> { -0.009875 -0.564625 0.825289 }
+        <Binormal> { 0.577485 0.636379 0.442291 }
+      }
+      <Normal> { 0.777459 -0.336039 -0.531602 }
+    }
+    <Vertex> 2563 {
+      -0.954890727997 0.0529517382383 3.03441381454
+      <UV>  {
+        0.174900 0.468998
+        <Tangent> { -0.000940 -0.402305 0.915505 }
+        <Binormal> { 0.572268 0.730136 0.321435 }
+      }
+      <Normal> { 0.797937 -0.447859 -0.403302 }
+    }
+    <Vertex> 2564 {
+      -0.857612967491 0.0172361359 2.99310159683
+      <UV>  {
+        0.176241 0.493689
+        <Tangent> { -0.106328 -0.783148 0.612678 }
+        <Binormal> { 0.634474 0.312528 0.509595 }
+      }
+      <Normal> { 0.642659 -0.059236 -0.763817 }
+    }
+    <Vertex> 2565 {
+      -0.781440198421 -0.0286973509938 3.07523179054
+      <UV>  {
+        0.199542 0.539441
+        <Tangent> { -0.923008 0.332819 -0.193100 }
+        <Binormal> { 0.001858 -0.147314 -0.262785 }
+      }
+      <Normal> { 0.996002 -0.074435 0.048769 }
+    }
+    <Vertex> 2566 {
+      -0.800342679024 0.0505775026977 3.25622868538
+      <UV>  {
+        0.206384 0.630424
+        <Tangent> { -0.429593 0.902360 -0.034582 }
+        <Binormal> { 0.461495 0.192553 -0.708518 }
+      }
+      <Normal> { 0.846583 -0.128971 0.516373 }
+    }
+    <Vertex> 2567 {
+      -0.813110768795 -0.0281890034676 3.07046818733
+      <UV>  {
+        0.190225 0.536963
+        <Tangent> { -0.996281 0.074153 0.043885 }
+        <Binormal> { 0.036529 0.319175 0.289970 }
+      }
+      <Normal> { 0.890622 -0.357341 0.281137 }
+    }
+    <Vertex> 2568 {
+      -0.813110768795 -0.0281890034676 3.07046818733
+      <UV>  {
+        0.161109 0.508099
+        <Tangent> { -0.065728 0.315596 0.946615 }
+        <Binormal> { 0.426990 0.861554 -0.257589 }
+      }
+      <Normal> { 0.890622 -0.357341 0.281137 }
+    }
+    <Vertex> 2569 {
+      -0.800342679024 0.0505775026977 3.25622868538
+      <UV>  {
+        0.126562 0.510330
+        <Tangent> { -0.000813 0.485151 0.874430 }
+        <Binormal> { 0.363295 0.740698 -0.410616 }
+      }
+      <Normal> { 0.846583 -0.128971 0.516373 }
+    }
+    <Vertex> 2570 {
+      -0.853547394276 -0.0113430693746 3.1228621006
+      <UV>  {
+        0.156816 0.493520
+        <Tangent> { 0.065933 0.246627 0.966865 }
+        <Binormal> { 0.317277 0.868302 -0.243122 }
+      }
+      <Normal> { 0.918851 -0.250374 0.304910 }
+    }
+    <Vertex> 2571 {
+      -0.800342679024 0.0505775026977 3.25622868538
+      <UV>  {
+        0.126562 0.510330
+        <Tangent> { -0.000813 0.485151 0.874430 }
+        <Binormal> { 0.363295 0.740698 -0.410616 }
+      }
+      <Normal> { 0.846583 -0.128971 0.516373 }
+    }
+    <Vertex> 2572 {
+      -0.922657608986 0.0709864199162 3.18954610825
+      <UV>  {
+        0.143569 0.467275
+        <Tangent> { 0.371929 0.367462 0.852432 }
+        <Binormal> { 0.478549 0.477792 -0.414763 }
+      }
+      <Normal> { 0.786126 -0.338481 0.517106 }
+    }
+    <Vertex> 2573 {
+      -0.853547394276 -0.0113430693746 3.1228621006
+      <UV>  {
+        0.156816 0.493520
+        <Tangent> { 0.065933 0.246627 0.966865 }
+        <Binormal> { 0.317277 0.868302 -0.243122 }
+      }
+      <Normal> { 0.918851 -0.250374 0.304910 }
+    }
+    <Vertex> 2574 {
+      -0.922657608986 0.0709864199162 3.18954610825
+      <UV>  {
+        0.143569 0.467275
+        <Tangent> { 0.371929 0.367462 0.852432 }
+        <Binormal> { 0.478549 0.477792 -0.414763 }
+      }
+      <Normal> { 0.786126 -0.338481 0.517106 }
+    }
+    <Vertex> 2575 {
+      -0.93078815937 0.00906584784389 3.1180999279
+      <UV>  {
+        0.159974 0.474314
+        <Tangent> { 0.170684 0.021898 0.985083 }
+        <Binormal> { 0.421287 0.857081 -0.092048 }
+      }
+      <Normal> { 0.894406 -0.424543 0.140507 }
+    }
+    <Vertex> 2576 {
+      -0.853547394276 -0.0113430693746 3.1228621006
+      <UV>  {
+        0.156816 0.493520
+        <Tangent> { 0.065933 0.246627 0.966865 }
+        <Binormal> { 0.317277 0.868302 -0.243122 }
+      }
+      <Normal> { 0.918851 -0.250374 0.304910 }
+    }
+    <Vertex> 2577 {
+      -0.922657608986 0.0709864199162 3.18954610825
+      <UV>  {
+        0.143569 0.467275
+        <Tangent> { 0.371929 0.367462 0.852432 }
+        <Binormal> { 0.478549 0.477792 -0.414763 }
+      }
+      <Normal> { 0.786126 -0.338481 0.517106 }
+    }
+    <Vertex> 2578 {
+      -1.05274689198 0.0709864273667 3.08475732803
+      <UV>  {
+        0.168926 0.447105
+        <Tangent> { 0.149819 -0.234343 0.960540 }
+        <Binormal> { 0.479143 0.816896 0.124564 }
+      }
+      <Normal> { 0.858180 -0.510910 0.049532 }
+    }
+    <Vertex> 2579 {
+      -0.93078815937 0.00906584784389 3.1180999279
+      <UV>  {
+        0.159974 0.474314
+        <Tangent> { 0.170684 0.021898 0.985083 }
+        <Binormal> { 0.421287 0.857081 -0.092048 }
+      }
+      <Normal> { 0.894406 -0.424543 0.140507 }
+    }
+    <Vertex> 2580 {
+      -1.05274689198 0.0709864273667 3.08475732803
+      <UV>  {
+        0.168926 0.447105
+        <Tangent> { 0.149819 -0.234343 0.960540 }
+        <Binormal> { 0.479143 0.816896 0.124564 }
+      }
+      <Normal> { 0.858180 -0.510910 0.049532 }
+    }
+    <Vertex> 2581 {
+      -0.954890727997 0.0529517382383 3.03441381454
+      <UV>  {
+        0.174900 0.468998
+        <Tangent> { -0.000940 -0.402305 0.915505 }
+        <Binormal> { 0.572268 0.730136 0.321435 }
+      }
+      <Normal> { 0.797937 -0.447859 -0.403302 }
+    }
+    <Vertex> 2582 {
+      -0.93078815937 0.00906584784389 3.1180999279
+      <UV>  {
+        0.159974 0.474314
+        <Tangent> { 0.170684 0.021898 0.985083 }
+        <Binormal> { 0.421287 0.857081 -0.092048 }
+      }
+      <Normal> { 0.894406 -0.424543 0.140507 }
+    }
+    <Vertex> 2583 {
+      -0.857612967491 -0.00657966034487 2.99786496162
+      <UV>  {
+        0.172868 0.494292
+        <Tangent> { -0.009875 -0.564625 0.825289 }
+        <Binormal> { 0.577485 0.636379 0.442291 }
+      }
+      <Normal> { 0.777459 -0.336039 -0.531602 }
+    }
+    <Vertex> 2584 {
+      -0.93078815937 0.00906584784389 3.1180999279
+      <UV>  {
+        0.159974 0.474314
+        <Tangent> { 0.170684 0.021898 0.985083 }
+        <Binormal> { 0.421287 0.857081 -0.092048 }
+      }
+      <Normal> { 0.894406 -0.424543 0.140507 }
+    }
+    <Vertex> 2585 {
+      -0.954890727997 0.0529517382383 3.03441381454
+      <UV>  {
+        0.174900 0.468998
+        <Tangent> { -0.000940 -0.402305 0.915505 }
+        <Binormal> { 0.572268 0.730136 0.321435 }
+      }
+      <Normal> { 0.797937 -0.447859 -0.403302 }
+    }
+    <Vertex> 2586 {
+      -0.857612967491 -0.00657966034487 2.99786496162
+      <UV>  {
+        0.172868 0.494292
+        <Tangent> { -0.009875 -0.564625 0.825289 }
+        <Binormal> { 0.577485 0.636379 0.442291 }
+      }
+      <Normal> { 0.777459 -0.336039 -0.531602 }
+    }
+    <Vertex> 2587 {
+      -0.807875812054 -0.0371930338442 3.03358054161
+      <UV>  {
+        0.167931 0.507586
+        <Tangent> { -0.118044 -0.574480 0.809962 }
+        <Binormal> { 0.426025 0.632416 0.510641 }
+      }
+      <Normal> { 0.852473 -0.177160 -0.491806 }
+    }
+    <Vertex> 2588 {
+      -0.853547394276 -0.0113430693746 3.1228621006
+      <UV>  {
+        0.156816 0.493520
+        <Tangent> { 0.065933 0.246627 0.966865 }
+        <Binormal> { 0.317277 0.868302 -0.243122 }
+      }
+      <Normal> { 0.918851 -0.250374 0.304910 }
+    }
+    <Vertex> 2589 {
+      -0.93078815937 0.00906584784389 3.1180999279
+      <UV>  {
+        0.159974 0.474314
+        <Tangent> { 0.170684 0.021898 0.985083 }
+        <Binormal> { 0.421287 0.857081 -0.092048 }
+      }
+      <Normal> { 0.894406 -0.424543 0.140507 }
+    }
+    <Vertex> 2590 {
+      -0.857612967491 -0.00657966034487 2.99786496162
+      <UV>  {
+        0.172868 0.494292
+        <Tangent> { -0.009875 -0.564625 0.825289 }
+        <Binormal> { 0.577485 0.636379 0.442291 }
+      }
+      <Normal> { 0.777459 -0.336039 -0.531602 }
+    }
+    <Vertex> 2591 {
+      -0.853547394276 -0.0113430693746 3.1228621006
+      <UV>  {
+        0.156816 0.493520
+        <Tangent> { 0.065933 0.246627 0.966865 }
+        <Binormal> { 0.317277 0.868302 -0.243122 }
+      }
+      <Normal> { 0.918851 -0.250374 0.304910 }
+    }
+    <Vertex> 2592 {
+      -0.807875812054 -0.0371930338442 3.03358054161
+      <UV>  {
+        0.167931 0.507586
+        <Tangent> { -0.118044 -0.574480 0.809962 }
+        <Binormal> { 0.426025 0.632416 0.510641 }
+      }
+      <Normal> { 0.852473 -0.177160 -0.491806 }
+    }
+    <Vertex> 2593 {
+      -0.813110768795 -0.0281890034676 3.07046818733
+      <UV>  {
+        0.161109 0.508099
+        <Tangent> { -0.065728 0.315596 0.946615 }
+        <Binormal> { 0.426990 0.861554 -0.257589 }
+      }
+      <Normal> { 0.890622 -0.357341 0.281137 }
+    }
+    <Vertex> 2594 {
+      -0.853547394276 -0.0113430693746 3.1228621006
+      <UV>  {
+        0.156816 0.493520
+        <Tangent> { 0.065933 0.246627 0.966865 }
+        <Binormal> { 0.317277 0.868302 -0.243122 }
+      }
+      <Normal> { 0.918851 -0.250374 0.304910 }
+    }
+    <Vertex> 2595 {
+      -0.800342679024 0.174417406321 3.33243823051
+      <UV>  {
+        0.065086 0.511768
+        <Tangent> { -0.013567 0.994721 0.101720 }
+        <Binormal> { 0.994721 0.013567 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 2596 {
+      -0.849482357502 0.174418032169 3.30386042595
+      <UV>  {
+        0.079010 0.457726
+        <Tangent> { 0.554865 0.777473 0.296074 }
+        <Binormal> { 0.828504 -0.488925 -0.268793 }
+      }
+      <Normal> { 0.037751 -0.431532 0.901303 }
+    }
+    <Vertex> 2597 {
+      -0.849482357502 0.107734680176 3.30386042595
+      <UV>  {
+        0.106627 0.482697
+        <Tangent> { 0.279459 0.680368 0.677497 }
+        <Binormal> { 0.847186 0.065903 -0.415636 }
+      }
+      <Normal> { 0.418043 -0.469527 0.777642 }
+    }
+    <Vertex> 2598 {
+      -0.849482357502 0.107734680176 3.30386042595
+      <UV>  {
+        0.106627 0.482697
+        <Tangent> { 0.279459 0.680368 0.677497 }
+        <Binormal> { 0.847186 0.065903 -0.415636 }
+      }
+      <Normal> { 0.418043 -0.469527 0.777642 }
+    }
+    <Vertex> 2599 {
+      -0.800342679024 0.107734680176 3.33243823051
+      <UV>  {
+        0.100504 0.510874
+        <Tangent> { -0.016080 0.812394 0.582887 }
+        <Binormal> { 0.718428 0.286318 -0.379235 }
+      }
+      <Normal> { 0.466811 0.000000 0.884335 }
+    }
+    <Vertex> 2600 {
+      -0.800342679024 0.174417406321 3.33243823051
+      <UV>  {
+        0.065086 0.511768
+        <Tangent> { -0.013567 0.994721 0.101720 }
+        <Binormal> { 0.994721 0.013567 -0.000000 }
+      }
+      <Normal> { 0.000000 0.000000 1.000000 }
+    }
+    <Vertex> 2601 {
+      -0.849482357502 0.174418032169 3.30386042595
+      <UV>  {
+        0.079010 0.457726
+        <Tangent> { 0.554865 0.777473 0.296074 }
+        <Binormal> { 0.828504 -0.488925 -0.268793 }
+      }
+      <Normal> { 0.037751 -0.431532 0.901303 }
+    }
+    <Vertex> 2602 {
+      -0.926723182201 0.194826945662 3.27051901817
+      <UV>  {
+        0.117842 0.428791
+        <Tangent> { 0.765399 0.588452 0.260554 }
+        <Binormal> { 0.641181 -0.711181 -0.277347 }
+      }
+      <Normal> { 0.037843 -0.333262 0.942045 }
+    }
+    <Vertex> 2603 {
+      -0.926723182201 0.128143593669 3.27051901817
+      <UV>  {
+        0.125321 0.449419
+        <Tangent> { 0.761873 0.545109 0.349865 }
+        <Binormal> { 0.615491 -0.638344 -0.345732 }
+      }
+      <Normal> { 0.198828 -0.311533 0.929167 }
+    }
+    <Vertex> 2604 {
+      -0.849482357502 0.107734680176 3.30386042595
+      <UV>  {
+        0.106627 0.482697
+        <Tangent> { 0.279459 0.680368 0.677497 }
+        <Binormal> { 0.847186 0.065903 -0.415636 }
+      }
+      <Normal> { 0.418043 -0.469527 0.777642 }
+    }
+    <Vertex> 2605 {
+      -0.849482357502 0.174418032169 3.30386042595
+      <UV>  {
+        0.079010 0.457726
+        <Tangent> { 0.554865 0.777473 0.296074 }
+        <Binormal> { 0.828504 -0.488925 -0.268793 }
+      }
+      <Normal> { 0.037751 -0.431532 0.901303 }
+    }
+    <Vertex> 2606 {
+      -0.926723182201 0.128143593669 3.27051901817
+      <UV>  {
+        0.125321 0.449419
+        <Tangent> { 0.761873 0.545109 0.349865 }
+        <Binormal> { 0.615491 -0.638344 -0.345732 }
+      }
+      <Normal> { 0.198828 -0.311533 0.929167 }
+    }
+    <Vertex> 2607 {
+      -0.926723182201 0.128143593669 3.27051901817
+      <UV>  {
+        0.125321 0.449419
+        <Tangent> { 0.761873 0.545109 0.349865 }
+        <Binormal> { 0.615491 -0.638344 -0.345732 }
+      }
+      <Normal> { 0.198828 -0.311533 0.929167 }
+    }
+    <Vertex> 2608 {
+      -0.926723182201 0.194826945662 3.27051901817
+      <UV>  {
+        0.117842 0.428791
+        <Tangent> { 0.765399 0.588452 0.260554 }
+        <Binormal> { 0.641181 -0.711181 -0.277347 }
+      }
+      <Normal> { 0.037843 -0.333262 0.942045 }
+    }
+    <Vertex> 2609 {
+      -1.03648579121 0.156722173095 3.2419397831
+      <UV>  {
+        0.144927 0.420628
+        <Tangent> { 0.887075 -0.348777 0.302411 }
+        <Binormal> { -0.244977 -0.887669 -0.305166 }
+      }
+      <Normal> { -0.159612 -0.281259 0.946257 }
+    }
+    <Vertex> 2610 {
+      -0.926723182201 0.128143593669 3.27051901817
+      <UV>  {
+        0.125321 0.449419
+        <Tangent> { 0.761873 0.545109 0.349865 }
+        <Binormal> { 0.615491 -0.638344 -0.345732 }
+      }
+      <Normal> { 0.198828 -0.311533 0.929167 }
+    }
+    <Vertex> 2611 {
+      -1.03648579121 0.156722173095 3.2419397831
+      <UV>  {
+        0.144927 0.420628
+        <Tangent> { 0.887075 -0.348777 0.302411 }
+        <Binormal> { -0.244977 -0.887669 -0.305166 }
+      }
+      <Normal> { -0.159612 -0.281259 0.946257 }
+    }
+    <Vertex> 2612 {
+      -1.04055130482 0.128143593669 3.26099228859
+      <UV>  {
+        0.147591 0.428733
+        <Tangent> { 0.714230 -0.117893 0.689911 }
+        <Binormal> { 0.132390 -0.370029 -0.200288 }
+      }
+      <Normal> { 0.362072 -0.340190 0.867824 }
+    }
+    <Vertex> 2613 {
+      -1.194445014 0.289806753397 3.16992473602
+      <UV>  {
+        0.158853 0.417806
+        <Tangent> { 0.145627 0.014993 0.989226 }
+        <Binormal> { 0.708333 -0.267397 -0.100223 }
+      }
+      <Normal> { -0.169012 -0.705618 0.688101 }
+    }
+    <Vertex> 2614 {
+      -1.13091635704 0.263332724571 3.20289444923
+      <UV>  {
+        0.164607 0.405753
+        <Tangent> { -0.494900 0.254236 0.830926 }
+        <Binormal> { 0.603553 -0.231865 0.430419 }
+      }
+      <Normal> { -0.613788 -0.554399 0.562029 }
+    }
+    <Vertex> 2615 {
+      -1.13701474667 0.250958323479 3.07347083092
+      <UV>  {
+        0.165540 0.412132
+        <Tangent> { 0.307700 -0.096441 0.946583 }
+        <Binormal> { 0.867854 0.329865 -0.248500 }
+      }
+      <Normal> { 0.373241 -0.924589 0.076174 }
+    }
+    <Vertex> 2616 {
+      -1.04055130482 0.128143593669 3.26099228859
+      <UV>  {
+        0.147591 0.428733
+        <Tangent> { 0.714230 -0.117893 0.689911 }
+        <Binormal> { 0.132390 -0.370029 -0.200288 }
+      }
+      <Normal> { 0.362072 -0.340190 0.867824 }
+    }
+    <Vertex> 2617 {
+      -1.03648579121 0.156722173095 3.2419397831
+      <UV>  {
+        0.144927 0.420628
+        <Tangent> { 0.887075 -0.348777 0.302411 }
+        <Binormal> { -0.244977 -0.887669 -0.305166 }
+      }
+      <Normal> { -0.159612 -0.281259 0.946257 }
+    }
+    <Vertex> 2618 {
+      -1.194445014 0.289806753397 3.16992473602
+      <UV>  {
+        0.158853 0.417806
+        <Tangent> { 0.145627 0.014993 0.989226 }
+        <Binormal> { 0.708333 -0.267397 -0.100223 }
+      }
+      <Normal> { -0.169012 -0.705618 0.688101 }
+    }
+    <Vertex> 2619 {
+      -1.13091635704 0.263332724571 3.20289444923
+      <UV>  {
+        0.164607 0.405753
+        <Tangent> { -0.494900 0.254236 0.830926 }
+        <Binormal> { 0.603553 -0.231865 0.430419 }
+      }
+      <Normal> { -0.613788 -0.554399 0.562029 }
+    }
+    <Vertex> 2620 {
+      -1.194445014 0.289806753397 3.16992473602
+      <UV>  {
+        0.158853 0.417806
+        <Tangent> { 0.145627 0.014993 0.989226 }
+        <Binormal> { 0.708333 -0.267397 -0.100223 }
+      }
+      <Normal> { -0.169012 -0.705618 0.688101 }
+    }
+    <Vertex> 2621 {
+      -1.03648579121 0.156722173095 3.2419397831
+      <UV>  {
+        0.144927 0.420628
+        <Tangent> { 0.887075 -0.348777 0.302411 }
+        <Binormal> { -0.244977 -0.887669 -0.305166 }
+      }
+      <Normal> { -0.159612 -0.281259 0.946257 }
+    }
+    <Vertex> 2622 {
+      -1.13701474667 0.250958323479 3.07347083092
+      <UV>  {
+        0.165540 0.412132
+        <Tangent> { 0.307700 -0.096441 0.946583 }
+        <Binormal> { 0.867854 0.329865 -0.248500 }
+      }
+      <Normal> { 0.373241 -0.924589 0.076174 }
+    }
+    <Vertex> 2623 {
+      -1.13091635704 0.263332724571 3.20289444923
+      <UV>  {
+        0.164607 0.405753
+        <Tangent> { -0.494900 0.254236 0.830926 }
+        <Binormal> { 0.603553 -0.231865 0.430419 }
+      }
+      <Normal> { -0.613788 -0.554399 0.562029 }
+    }
+    <Vertex> 2624 {
+      -1.22316014767 0.309231609106 3.06811308861
+      <UV>  {
+        0.171370 0.412411
+        <Tangent> { -0.745562 0.453441 0.488394 }
+        <Binormal> { 0.313860 0.419353 0.089784 }
+      }
+      <Normal> { 0.795648 -0.604327 0.041261 }
+    }
+    <Vertex> 2625 {
+      -1.13091635704 0.263332724571 3.20289444923
+      <UV>  {
+        0.164607 0.405753
+        <Tangent> { -0.494900 0.254236 0.830926 }
+        <Binormal> { 0.603553 -0.231865 0.430419 }
+      }
+      <Normal> { -0.613788 -0.554399 0.562029 }
+    }
+    <Vertex> 2626 {
+      -1.1563782692 0.264056444168 3.00559711456
+      <UV>  {
+        0.173775 0.413770
+        <Tangent> { -0.950562 0.255171 0.176972 }
+        <Binormal> { 0.007432 -0.539574 0.817918 }
+      }
+      <Normal> { -0.493698 -0.727928 -0.475723 }
+    }
+    <Vertex> 2627 {
+      -1.22316014767 0.309231609106 3.06811308861
+      <UV>  {
+        0.171370 0.412411
+        <Tangent> { -0.745562 0.453441 0.488394 }
+        <Binormal> { 0.313860 0.419353 0.089784 }
+      }
+      <Normal> { 0.795648 -0.604327 0.041261 }
+    }
+    <Vertex> 2628 {
+      -1.1563782692 0.264056444168 3.00559711456
+      <UV>  {
+        0.173775 0.413770
+        <Tangent> { -0.950562 0.255171 0.176972 }
+        <Binormal> { 0.007432 -0.539574 0.817918 }
+      }
+      <Normal> { -0.493698 -0.727928 -0.475723 }
+    }
+    <Vertex> 2629 {
+      -1.13091635704 0.263332724571 3.20289444923
+      <UV>  {
+        0.164607 0.405753
+        <Tangent> { -0.494900 0.254236 0.830926 }
+        <Binormal> { 0.603553 -0.231865 0.430419 }
+      }
+      <Normal> { -0.613788 -0.554399 0.562029 }
+    }
+    <Vertex> 2630 {
+      -1.13768553734 0.273411989212 2.99607038498
+      <UV>  {
+        0.176067 0.412280
+        <Tangent> { -0.607010 -0.127496 0.784400 }
+        <Binormal> { 0.450985 -0.867430 0.208004 }
+      }
+      <Normal> { -0.636372 -0.476333 -0.606677 }
+    }
+    <Vertex> 2631 {
+      -1.13768553734 0.273411989212 2.99607038498
+      <UV>  {
+        0.176067 0.412280
+        <Tangent> { -0.607010 -0.127496 0.784400 }
+        <Binormal> { 0.450985 -0.867430 0.208004 }
+      }
+      <Normal> { -0.636372 -0.476333 -0.606677 }
+    }
+    <Vertex> 2632 {
+      -1.07153367996 0.194826945662 3.00096797943
+      <UV>  {
+        0.187934 0.433246
+        <Tangent> { -0.792768 -0.075595 -0.604817 }
+        <Binormal> { -0.073660 -0.582685 0.169378 }
+      }
+      <Normal> { -0.262185 -0.238655 -0.935026 }
+    }
+    <Vertex> 2633 {
+      -1.1563782692 0.264056444168 3.00559711456
+      <UV>  {
+        0.173775 0.413770
+        <Tangent> { -0.950562 0.255171 0.176972 }
+        <Binormal> { 0.007432 -0.539574 0.817918 }
+      }
+      <Normal> { -0.493698 -0.727928 -0.475723 }
+    }
+    <Vertex> 2634 {
+      -1.07153367996 0.194826945662 3.00096797943
+      <UV>  {
+        0.187934 0.433246
+        <Tangent> { -0.792768 -0.075595 -0.604817 }
+        <Binormal> { -0.073660 -0.582685 0.169378 }
+      }
+      <Normal> { -0.262185 -0.238655 -0.935026 }
+    }
+    <Vertex> 2635 {
+      -1.13238143921 0.247824236751 2.93971657753
+      <UV>  {
+        0.179556 0.424285
+        <Tangent> { -0.713841 -0.114986 -0.690804 }
+        <Binormal> { 0.439067 -0.417953 -0.384140 }
+      }
+      <Normal> { -0.252541 0.497452 -0.829890 }
+    }
+    <Vertex> 2636 {
+      -1.1563782692 0.264056444168 3.00559711456
+      <UV>  {
+        0.173775 0.413770
+        <Tangent> { -0.950562 0.255171 0.176972 }
+        <Binormal> { 0.007432 -0.539574 0.817918 }
+      }
+      <Normal> { -0.493698 -0.727928 -0.475723 }
+    }
+    <Vertex> 2637 {
+      -1.07153367996 0.128143593669 3.00096797943
+      <UV>  {
+        0.182799 0.442976
+        <Tangent> { -0.381651 -0.433144 -0.816535 }
+        <Binormal> { 0.406305 -0.044845 -0.166119 }
+      }
+      <Normal> { -0.377819 0.006470 -0.925840 }
+    }
+    <Vertex> 2638 {
+      -1.13238143921 0.247824236751 2.93971657753
+      <UV>  {
+        0.179556 0.424285
+        <Tangent> { -0.713841 -0.114986 -0.690804 }
+        <Binormal> { 0.439067 -0.417953 -0.384140 }
+      }
+      <Normal> { -0.252541 0.497452 -0.829890 }
+    }
+    <Vertex> 2639 {
+      -1.07153367996 0.194826945662 3.00096797943
+      <UV>  {
+        0.187934 0.433246
+        <Tangent> { -0.792768 -0.075595 -0.604817 }
+        <Binormal> { -0.073660 -0.582685 0.169378 }
+      }
+      <Normal> { -0.262185 -0.238655 -0.935026 }
+    }
+    <Vertex> 2640 {
+      -1.07153367996 0.194826945662 3.00096797943
+      <UV>  {
+        0.187934 0.433246
+        <Tangent> { -0.792768 -0.075595 -0.604817 }
+        <Binormal> { -0.073660 -0.582685 0.169378 }
+      }
+      <Normal> { -0.262185 -0.238655 -0.935026 }
+    }
+    <Vertex> 2641 {
+      -0.975237131119 0.194826945662 2.95780324936
+      <UV>  {
+        0.201582 0.453247
+        <Tangent> { -0.432495 -0.883037 0.182194 }
+        <Binormal> { 0.875421 -0.395004 0.163627 }
+      }
+      <Normal> { -0.024964 -0.429304 -0.902799 }
+    }
+    <Vertex> 2642 {
+      -1.07153367996 0.128143593669 3.00096797943
+      <UV>  {
+        0.182799 0.442976
+        <Tangent> { -0.381651 -0.433144 -0.816535 }
+        <Binormal> { 0.406305 -0.044845 -0.166119 }
+      }
+      <Normal> { -0.377819 0.006470 -0.925840 }
+    }
+    <Vertex> 2643 {
+      -0.975237131119 0.128143593669 2.95780324936
+      <UV>  {
+        0.191494 0.461505
+        <Tangent> { -0.346101 -0.927111 -0.143799 }
+        <Binormal> { 0.787449 -0.284646 -0.060078 }
+      }
+      <Normal> { -0.202826 -0.369732 -0.906705 }
+    }
+    <Vertex> 2644 {
+      -1.07153367996 0.128143593669 3.00096797943
+      <UV>  {
+        0.182799 0.442976
+        <Tangent> { -0.381651 -0.433144 -0.816535 }
+        <Binormal> { 0.406305 -0.044845 -0.166119 }
+      }
+      <Normal> { -0.377819 0.006470 -0.925840 }
+    }
+    <Vertex> 2645 {
+      -0.975237131119 0.194826945662 2.95780324936
+      <UV>  {
+        0.201582 0.453247
+        <Tangent> { -0.432495 -0.883037 0.182194 }
+        <Binormal> { 0.875421 -0.395004 0.163627 }
+      }
+      <Normal> { -0.024964 -0.429304 -0.902799 }
+    }
+    <Vertex> 2646 {
+      -0.975237131119 0.194826945662 2.95780324936
+      <UV>  {
+        0.201582 0.453247
+        <Tangent> { -0.432495 -0.883037 0.182194 }
+        <Binormal> { 0.875421 -0.395004 0.163627 }
+      }
+      <Normal> { -0.024964 -0.429304 -0.902799 }
+    }
+    <Vertex> 2647 {
+      -0.800342679024 0.107734680176 2.85965514183
+      <UV>  {
+        0.201895 0.505679
+        <Tangent> { -0.044957 -0.964760 0.259262 }
+        <Binormal> { 0.956641 -0.003099 0.154356 }
+      }
+      <Normal> { 0.159215 -0.016724 -0.987091 }
+    }
+    <Vertex> 2648 {
+      -0.975237131119 0.128143593669 2.95780324936
+      <UV>  {
+        0.191494 0.461505
+        <Tangent> { -0.346101 -0.927111 -0.143799 }
+        <Binormal> { 0.787449 -0.284646 -0.060078 }
+      }
+      <Normal> { -0.202826 -0.369732 -0.906705 }
+    }
+    <Vertex> 2649 {
+      -0.975237131119 0.194826945662 2.95780324936
+      <UV>  {
+        0.201582 0.453247
+        <Tangent> { -0.432495 -0.883037 0.182194 }
+        <Binormal> { 0.875421 -0.395004 0.163627 }
+      }
+      <Normal> { -0.024964 -0.429304 -0.902799 }
+    }
+    <Vertex> 2650 {
+      -0.800342679024 0.174418032169 2.85965514183
+      <UV>  {
+        0.212037 0.504622
+        <Tangent> { -0.065330 -0.996457 -0.052961 }
+        <Binormal> { 0.993006 -0.060841 -0.080200 }
+      }
+      <Normal> { -0.080691 -0.003143 -0.996704 }
+    }
+    <Vertex> 2651 {
+      -0.800342679024 0.107734680176 2.85965514183
+      <UV>  {
+        0.201895 0.505679
+        <Tangent> { -0.044957 -0.964760 0.259262 }
+        <Binormal> { 0.956641 -0.003099 0.154356 }
+      }
+      <Normal> { 0.159215 -0.016724 -0.987091 }
+    }
+    <Vertex> 2652 {
+      -1.03648579121 0.156722173095 3.2419397831
+      <UV>  {
+        0.144927 0.420628
+        <Tangent> { 0.887075 -0.348777 0.302411 }
+        <Binormal> { -0.244977 -0.887669 -0.305166 }
+      }
+      <Normal> { -0.159612 -0.281259 0.946257 }
+    }
+    <Vertex> 2653 {
+      -0.926723182201 0.194826945662 3.27051901817
+      <UV>  {
+        0.117842 0.428791
+        <Tangent> { 0.765399 0.588452 0.260554 }
+        <Binormal> { 0.641181 -0.711181 -0.277347 }
+      }
+      <Normal> { 0.037843 -0.333262 0.942045 }
+    }
+    <Vertex> 2654 {
+      -1.03648579121 0.335300177336 3.2419397831
+      <UV>  {
+        0.151773 0.367049
+        <Tangent> { 0.874824 -0.184073 0.448107 }
+        <Binormal> { 0.019517 -0.798617 -0.366158 }
+      }
+      <Normal> { -0.007782 -0.416913 0.908902 }
+    }
+    <Vertex> 2655 {
+      -1.03648579121 0.335300177336 3.2419397831
+      <UV>  {
+        0.151773 0.367049
+        <Tangent> { 0.874824 -0.184073 0.448107 }
+        <Binormal> { 0.019517 -0.798617 -0.366158 }
+      }
+      <Normal> { -0.007782 -0.416913 0.908902 }
+    }
+    <Vertex> 2656 {
+      -0.926723182201 0.194826945662 3.27051901817
+      <UV>  {
+        0.117842 0.428791
+        <Tangent> { 0.765399 0.588452 0.260554 }
+        <Binormal> { 0.641181 -0.711181 -0.277347 }
+      }
+      <Normal> { 0.037843 -0.333262 0.942045 }
+    }
+    <Vertex> 2657 {
+      -0.849482357502 0.174418032169 3.30386042595
+      <UV>  {
+        0.079010 0.457726
+        <Tangent> { 0.554865 0.777473 0.296074 }
+        <Binormal> { 0.828504 -0.488925 -0.268793 }
+      }
+      <Normal> { 0.037751 -0.431532 0.901303 }
+    }
+    <Vertex> 2658 {
+      -1.13091635704 0.263332724571 3.20289444923
+      <UV>  {
+        0.164607 0.405753
+        <Tangent> { -0.494900 0.254236 0.830926 }
+        <Binormal> { 0.603553 -0.231865 0.430419 }
+      }
+      <Normal> { -0.613788 -0.554399 0.562029 }
+    }
+    <Vertex> 2659 {
+      -1.09545922279 0.412237197161 3.20289444923
+      <UV>  {
+        0.175280 0.357923
+        <Tangent> { 0.063872 -0.546769 0.834844 }
+        <Binormal> { 0.504811 -0.271881 -0.216687 }
+      }
+      <Normal> { -0.294992 -0.867275 0.400952 }
+    }
+    <Vertex> 2660 {
+      -1.13768553734 0.273411989212 2.99607038498
+      <UV>  {
+        0.176067 0.412280
+        <Tangent> { -0.607010 -0.127496 0.784400 }
+        <Binormal> { 0.450985 -0.867430 0.208004 }
+      }
+      <Normal> { -0.636372 -0.476333 -0.606677 }
+    }
+    <Vertex> 2661 {
+      -1.13768553734 0.273411989212 2.99607038498
+      <UV>  {
+        0.176067 0.412280
+        <Tangent> { -0.607010 -0.127496 0.784400 }
+        <Binormal> { 0.450985 -0.867430 0.208004 }
+      }
+      <Normal> { -0.636372 -0.476333 -0.606677 }
+    }
+    <Vertex> 2662 {
+      -1.09545922279 0.412237197161 3.20289444923
+      <UV>  {
+        0.175280 0.357923
+        <Tangent> { 0.063872 -0.546769 0.834844 }
+        <Binormal> { 0.504811 -0.271881 -0.216687 }
+      }
+      <Normal> { -0.294992 -0.867275 0.400952 }
+    }
+    <Vertex> 2663 {
+      -1.07153367996 0.194826945662 3.00096797943
+      <UV>  {
+        0.187934 0.433246
+        <Tangent> { -0.792768 -0.075595 -0.604817 }
+        <Binormal> { -0.073660 -0.582685 0.169378 }
+      }
+      <Normal> { -0.262185 -0.238655 -0.935026 }
+    }
+    <Vertex> 2664 {
+      -1.09545922279 0.412237197161 3.20289444923
+      <UV>  {
+        0.175280 0.357923
+        <Tangent> { 0.063872 -0.546769 0.834844 }
+        <Binormal> { 0.504811 -0.271881 -0.216687 }
+      }
+      <Normal> { -0.294992 -0.867275 0.400952 }
+    }
+    <Vertex> 2665 {
+      -1.06448435783 0.465548366308 3.12549424171
+      <UV>  {
+        0.191650 0.360063
+        <Tangent> { -0.038068 -0.196083 0.979848 }
+        <Binormal> { 0.982430 0.079484 0.054074 }
+      }
+      <Normal> { 0.082400 -0.996033 -0.032991 }
+    }
+    <Vertex> 2666 {
+      -1.07153367996 0.194826945662 3.00096797943
+      <UV>  {
+        0.187934 0.433246
+        <Tangent> { -0.792768 -0.075595 -0.604817 }
+        <Binormal> { -0.073660 -0.582685 0.169378 }
+      }
+      <Normal> { -0.262185 -0.238655 -0.935026 }
+    }
+    <Vertex> 2667 {
+      -1.07153367996 0.337689340115 3.00096797943
+      <UV>  {
+        0.202864 0.402525
+        <Tangent> { -0.377044 -0.563753 0.734861 }
+        <Binormal> { 0.924905 -0.248743 0.283728 }
+      }
+      <Normal> { -0.005402 -0.760582 -0.649190 }
+    }
+    <Vertex> 2668 {
+      -1.07153367996 0.194826945662 3.00096797943
+      <UV>  {
+        0.187934 0.433246
+        <Tangent> { -0.792768 -0.075595 -0.604817 }
+        <Binormal> { -0.073660 -0.582685 0.169378 }
+      }
+      <Normal> { -0.262185 -0.238655 -0.935026 }
+    }
+    <Vertex> 2669 {
+      -1.06448435783 0.465548366308 3.12549424171
+      <UV>  {
+        0.191650 0.360063
+        <Tangent> { -0.038068 -0.196083 0.979848 }
+        <Binormal> { 0.982430 0.079484 0.054074 }
+      }
+      <Normal> { 0.082400 -0.996033 -0.032991 }
+    }
+    <Vertex> 2670 {
+      -1.07153367996 0.337689340115 3.00096797943
+      <UV>  {
+        0.202864 0.402525
+        <Tangent> { -0.377044 -0.563753 0.734861 }
+        <Binormal> { 0.924905 -0.248743 0.283728 }
+      }
+      <Normal> { -0.005402 -0.760582 -0.649190 }
+    }
+    <Vertex> 2671 {
+      -0.877363920212 0.378427445889 2.92400598526
+      <UV>  {
+        0.260976 0.459011
+        <Tangent> { -0.579769 -0.794121 0.182320 }
+        <Binormal> { 0.800646 -0.548414 0.157322 }
+      }
+      <Normal> { -0.081027 -0.382336 -0.920438 }
+    }
+    <Vertex> 2672 {
+      -0.975237131119 0.194826945662 2.95780324936
+      <UV>  {
+        0.201582 0.453247
+        <Tangent> { -0.432495 -0.883037 0.182194 }
+        <Binormal> { 0.875421 -0.395004 0.163627 }
+      }
+      <Normal> { -0.024964 -0.429304 -0.902799 }
+    }
+    <Vertex> 2673 {
+      -0.975237131119 0.194826945662 2.95780324936
+      <UV>  {
+        0.201582 0.453247
+        <Tangent> { -0.432495 -0.883037 0.182194 }
+        <Binormal> { 0.875421 -0.395004 0.163627 }
+      }
+      <Normal> { -0.024964 -0.429304 -0.902799 }
+    }
+    <Vertex> 2674 {
+      -1.07153367996 0.194826945662 3.00096797943
+      <UV>  {
+        0.187934 0.433246
+        <Tangent> { -0.792768 -0.075595 -0.604817 }
+        <Binormal> { -0.073660 -0.582685 0.169378 }
+      }
+      <Normal> { -0.262185 -0.238655 -0.935026 }
+    }
+    <Vertex> 2675 {
+      -1.07153367996 0.337689340115 3.00096797943
+      <UV>  {
+        0.202864 0.402525
+        <Tangent> { -0.377044 -0.563753 0.734861 }
+        <Binormal> { 0.924905 -0.248743 0.283728 }
+      }
+      <Normal> { -0.005402 -0.760582 -0.649190 }
+    }
+    <Vertex> 2676 {
+      -0.975237131119 0.194826945662 2.95780324936
+      <UV>  {
+        0.201582 0.453247
+        <Tangent> { -0.432495 -0.883037 0.182194 }
+        <Binormal> { 0.875421 -0.395004 0.163627 }
+      }
+      <Normal> { -0.024964 -0.429304 -0.902799 }
+    }
+    <Vertex> 2677 {
+      -0.800342679024 0.378427445889 2.89279460907
+      <UV>  {
+        0.275327 0.499141
+        <Tangent> { -0.075288 -0.996961 -0.020016 }
+        <Binormal> { 0.991943 -0.072907 -0.099714 }
+      }
+      <Normal> { -0.100009 0.000122 -0.994964 }
+    }
+    <Vertex> 2678 {
+      -0.800342679024 0.174418032169 2.85965514183
+      <UV>  {
+        0.212037 0.504622
+        <Tangent> { -0.065330 -0.996457 -0.052961 }
+        <Binormal> { 0.993006 -0.060841 -0.080200 }
+      }
+      <Normal> { -0.080691 -0.003143 -0.996704 }
+    }
+    <Vertex> 2679 {
+      -0.877363920212 0.378427445889 2.92400598526
+      <UV>  {
+        0.260976 0.459011
+        <Tangent> { -0.579769 -0.794121 0.182320 }
+        <Binormal> { 0.800646 -0.548414 0.157322 }
+      }
+      <Normal> { -0.081027 -0.382336 -0.920438 }
+    }
+    <Vertex> 2680 {
+      -0.800342679024 0.378427445889 2.89279460907
+      <UV>  {
+        0.275327 0.499141
+        <Tangent> { -0.075288 -0.996961 -0.020016 }
+        <Binormal> { 0.991943 -0.072907 -0.099714 }
+      }
+      <Normal> { -0.100009 0.000122 -0.994964 }
+    }
+    <Vertex> 2681 {
+      -0.975237131119 0.194826945662 2.95780324936
+      <UV>  {
+        0.201582 0.453247
+        <Tangent> { -0.432495 -0.883037 0.182194 }
+        <Binormal> { 0.875421 -0.395004 0.163627 }
+      }
+      <Normal> { -0.024964 -0.429304 -0.902799 }
+    }
+    <Vertex> 2682 {
+      -1.03648579121 0.156722173095 3.2419397831
+      <UV>  {
+        0.144927 0.420628
+        <Tangent> { 0.887075 -0.348777 0.302411 }
+        <Binormal> { -0.244977 -0.887669 -0.305166 }
+      }
+      <Normal> { -0.159612 -0.281259 0.946257 }
+    }
+    <Vertex> 2683 {
+      -1.09545922279 0.412237197161 3.20289444923
+      <UV>  {
+        0.175280 0.357923
+        <Tangent> { 0.063872 -0.546769 0.834844 }
+        <Binormal> { 0.504811 -0.271881 -0.216687 }
+      }
+      <Normal> { -0.294992 -0.867275 0.400952 }
+    }
+    <Vertex> 2684 {
+      -1.13091635704 0.263332724571 3.20289444923
+      <UV>  {
+        0.164607 0.405753
+        <Tangent> { -0.494900 0.254236 0.830926 }
+        <Binormal> { 0.603553 -0.231865 0.430419 }
+      }
+      <Normal> { -0.613788 -0.554399 0.562029 }
+    }
+    <Vertex> 2685 {
+      -1.03648579121 0.156722173095 3.2419397831
+      <UV>  {
+        0.144927 0.420628
+        <Tangent> { 0.887075 -0.348777 0.302411 }
+        <Binormal> { -0.244977 -0.887669 -0.305166 }
+      }
+      <Normal> { -0.159612 -0.281259 0.946257 }
+    }
+    <Vertex> 2686 {
+      -1.03648579121 0.335300177336 3.2419397831
+      <UV>  {
+        0.151773 0.367049
+        <Tangent> { 0.874824 -0.184073 0.448107 }
+        <Binormal> { 0.019517 -0.798617 -0.366158 }
+      }
+      <Normal> { -0.007782 -0.416913 0.908902 }
+    }
+    <Vertex> 2687 {
+      -1.09545922279 0.412237197161 3.20289444923
+      <UV>  {
+        0.175280 0.357923
+        <Tangent> { 0.063872 -0.546769 0.834844 }
+        <Binormal> { 0.504811 -0.271881 -0.216687 }
+      }
+      <Normal> { -0.294992 -0.867275 0.400952 }
+    }
+    <Vertex> 2688 {
+      -1.09545922279 0.412237197161 3.20289444923
+      <UV>  {
+        0.175280 0.357923
+        <Tangent> { 0.063872 -0.546769 0.834844 }
+        <Binormal> { 0.504811 -0.271881 -0.216687 }
+      }
+      <Normal> { -0.294992 -0.867275 0.400952 }
+    }
+    <Vertex> 2689 {
+      -1.08131110668 0.509793043137 3.20289444923
+      <UV>  {
+        0.191012 0.329346
+        <Tangent> { 0.313934 -0.452506 0.834676 }
+        <Binormal> { 0.344326 -0.309585 -0.297343 }
+      }
+      <Normal> { -0.130833 -0.758568 0.638295 }
+    }
+    <Vertex> 2690 {
+      -1.06448435783 0.465548366308 3.12549424171
+      <UV>  {
+        0.191650 0.360063
+        <Tangent> { -0.038068 -0.196083 0.979848 }
+        <Binormal> { 0.982430 0.079484 0.054074 }
+      }
+      <Normal> { 0.082400 -0.996033 -0.032991 }
+    }
+    <Vertex> 2691 {
+      -1.06448435783 0.465548366308 3.12549424171
+      <UV>  {
+        0.191650 0.360063
+        <Tangent> { -0.038068 -0.196083 0.979848 }
+        <Binormal> { 0.982430 0.079484 0.054074 }
+      }
+      <Normal> { 0.082400 -0.996033 -0.032991 }
+    }
+    <Vertex> 2692 {
+      -1.08131110668 0.509793043137 3.20289444923
+      <UV>  {
+        0.191012 0.329346
+        <Tangent> { 0.313934 -0.452506 0.834676 }
+        <Binormal> { 0.344326 -0.309585 -0.297343 }
+      }
+      <Normal> { -0.130833 -0.758568 0.638295 }
+    }
+    <Vertex> 2693 {
+      -1.07153367996 0.337689340115 3.00096797943
+      <UV>  {
+        0.202864 0.402525
+        <Tangent> { -0.377044 -0.563753 0.734861 }
+        <Binormal> { 0.924905 -0.248743 0.283728 }
+      }
+      <Normal> { -0.005402 -0.760582 -0.649190 }
+    }
+    <Vertex> 2694 {
+      -1.08131110668 0.509793043137 3.20289444923
+      <UV>  {
+        0.191012 0.329346
+        <Tangent> { 0.313934 -0.452506 0.834676 }
+        <Binormal> { 0.344326 -0.309585 -0.297343 }
+      }
+      <Normal> { -0.130833 -0.758568 0.638295 }
+    }
+    <Vertex> 2695 {
+      -1.07514369488 0.512005329132 3.12549424171
+      <UV>  {
+        0.204952 0.342653
+        <Tangent> { -0.375437 -0.530531 0.759990 }
+        <Binormal> { 0.817702 -0.354543 0.156448 }
+      }
+      <Normal> { -0.346233 -0.905972 -0.243477 }
+    }
+    <Vertex> 2696 {
+      -1.07153367996 0.337689340115 3.00096797943
+      <UV>  {
+        0.202864 0.402525
+        <Tangent> { -0.377044 -0.563753 0.734861 }
+        <Binormal> { 0.924905 -0.248743 0.283728 }
+      }
+      <Normal> { -0.005402 -0.760582 -0.649190 }
+    }
+    <Vertex> 2697 {
+      -1.01056730747 0.516267359257 3.00096797943
+      <UV>  {
+        0.235894 0.366149
+        <Tangent> { -0.711995 -0.510495 0.482139 }
+        <Binormal> { 0.648541 -0.662117 0.256669 }
+      }
+      <Normal> { -0.383282 -0.635304 -0.670400 }
+    }
+    <Vertex> 2698 {
+      -1.07153367996 0.337689340115 3.00096797943
+      <UV>  {
+        0.202864 0.402525
+        <Tangent> { -0.377044 -0.563753 0.734861 }
+        <Binormal> { 0.924905 -0.248743 0.283728 }
+      }
+      <Normal> { -0.005402 -0.760582 -0.649190 }
+    }
+    <Vertex> 2699 {
+      -1.07514369488 0.512005329132 3.12549424171
+      <UV>  {
+        0.204952 0.342653
+        <Tangent> { -0.375437 -0.530531 0.759990 }
+        <Binormal> { 0.817702 -0.354543 0.156448 }
+      }
+      <Normal> { -0.346233 -0.905972 -0.243477 }
+    }
+    <Vertex> 2700 {
+      -1.01056730747 0.516267359257 3.00096797943
+      <UV>  {
+        0.235894 0.366149
+        <Tangent> { -0.711995 -0.510495 0.482139 }
+        <Binormal> { 0.648541 -0.662117 0.256669 }
+      }
+      <Normal> { -0.383282 -0.635304 -0.670400 }
+    }
+    <Vertex> 2701 {
+      -0.851167440414 0.455160170794 2.92400598526
+      <UV>  {
+        0.282914 0.432136
+        <Tangent> { -0.842844 -0.445107 0.302480 }
+        <Binormal> { 0.524322 -0.805719 0.275359 }
+      }
+      <Normal> { -0.124302 -0.392346 -0.911344 }
+    }
+    <Vertex> 2702 {
+      -0.877363920212 0.378427445889 2.92400598526
+      <UV>  {
+        0.260976 0.459011
+        <Tangent> { -0.579769 -0.794121 0.182320 }
+        <Binormal> { 0.800646 -0.548414 0.157322 }
+      }
+      <Normal> { -0.081027 -0.382336 -0.920438 }
+    }
+    <Vertex> 2703 {
+      -0.877363920212 0.378427445889 2.92400598526
+      <UV>  {
+        0.260976 0.459011
+        <Tangent> { -0.579769 -0.794121 0.182320 }
+        <Binormal> { 0.800646 -0.548414 0.157322 }
+      }
+      <Normal> { -0.081027 -0.382336 -0.920438 }
+    }
+    <Vertex> 2704 {
+      -1.07153367996 0.337689340115 3.00096797943
+      <UV>  {
+        0.202864 0.402525
+        <Tangent> { -0.377044 -0.563753 0.734861 }
+        <Binormal> { 0.924905 -0.248743 0.283728 }
+      }
+      <Normal> { -0.005402 -0.760582 -0.649190 }
+    }
+    <Vertex> 2705 {
+      -1.01056730747 0.516267359257 3.00096797943
+      <UV>  {
+        0.235894 0.366149
+        <Tangent> { -0.711995 -0.510495 0.482139 }
+        <Binormal> { 0.648541 -0.662117 0.256669 }
+      }
+      <Normal> { -0.383282 -0.635304 -0.670400 }
+    }
+    <Vertex> 2706 {
+      -1.03648579121 0.335300177336 3.2419397831
+      <UV>  {
+        0.151773 0.367049
+        <Tangent> { 0.874824 -0.184073 0.448107 }
+        <Binormal> { 0.019517 -0.798617 -0.366158 }
+      }
+      <Normal> { -0.007782 -0.416913 0.908902 }
+    }
+    <Vertex> 2707 {
+      -1.08131110668 0.509793043137 3.20289444923
+      <UV>  {
+        0.191012 0.329346
+        <Tangent> { 0.313934 -0.452506 0.834676 }
+        <Binormal> { 0.344326 -0.309585 -0.297343 }
+      }
+      <Normal> { -0.130833 -0.758568 0.638295 }
+    }
+    <Vertex> 2708 {
+      -1.09545922279 0.412237197161 3.20289444923
+      <UV>  {
+        0.175280 0.357923
+        <Tangent> { 0.063872 -0.546769 0.834844 }
+        <Binormal> { 0.504811 -0.271881 -0.216687 }
+      }
+      <Normal> { -0.294992 -0.867275 0.400952 }
+    }
+    <Vertex> 2709 {
+      -1.03648579121 0.335300177336 3.2419397831
+      <UV>  {
+        0.151773 0.367049
+        <Tangent> { 0.874824 -0.184073 0.448107 }
+        <Binormal> { 0.019517 -0.798617 -0.366158 }
+      }
+      <Normal> { -0.007782 -0.416913 0.908902 }
+    }
+    <Vertex> 2710 {
+      -0.975519418716 0.513878166676 3.2419397831
+      <UV>  {
+        0.170288 0.291090
+        <Tangent> { 0.488601 -0.803529 0.340014 }
+        <Binormal> { -0.620478 -0.510470 -0.314727 }
+      }
+      <Normal> { -0.179571 -0.348827 0.919797 }
+    }
+    <Vertex> 2711 {
+      -1.08131110668 0.509793043137 3.20289444923
+      <UV>  {
+        0.191012 0.329346
+        <Tangent> { 0.313934 -0.452506 0.834676 }
+        <Binormal> { 0.344326 -0.309585 -0.297343 }
+      }
+      <Normal> { -0.130833 -0.758568 0.638295 }
+    }
+    <Vertex> 2712 {
+      -1.08131110668 0.509793043137 3.20289444923
+      <UV>  {
+        0.191012 0.329346
+        <Tangent> { 0.313934 -0.452506 0.834676 }
+        <Binormal> { 0.344326 -0.309585 -0.297343 }
+      }
+      <Normal> { -0.130833 -0.758568 0.638295 }
+    }
+    <Vertex> 2713 {
+      -1.01381266117 0.642450928688 3.19779229164
+      <UV>  {
+        0.215527 0.282604
+        <Tangent> { -0.241715 -0.659939 0.711375 }
+        <Binormal> { 0.392383 -0.326861 -0.169901 }
+      }
+      <Normal> { -0.548357 -0.794244 0.261574 }
+    }
+    <Vertex> 2714 {
+      -1.07514369488 0.512005329132 3.12549424171
+      <UV>  {
+        0.204952 0.342653
+        <Tangent> { -0.375437 -0.530531 0.759990 }
+        <Binormal> { 0.817702 -0.354543 0.156448 }
+      }
+      <Normal> { -0.346233 -0.905972 -0.243477 }
+    }
+    <Vertex> 2715 {
+      -1.07514369488 0.512005329132 3.12549424171
+      <UV>  {
+        0.204952 0.342653
+        <Tangent> { -0.375437 -0.530531 0.759990 }
+        <Binormal> { 0.817702 -0.354543 0.156448 }
+      }
+      <Normal> { -0.346233 -0.905972 -0.243477 }
+    }
+    <Vertex> 2716 {
+      -1.01381266117 0.642450928688 3.19779229164
+      <UV>  {
+        0.215527 0.282604
+        <Tangent> { -0.241715 -0.659939 0.711375 }
+        <Binormal> { 0.392383 -0.326861 -0.169901 }
+      }
+      <Normal> { -0.548357 -0.794244 0.261574 }
+    }
+    <Vertex> 2717 {
+      -1.01056730747 0.516267359257 3.00096797943
+      <UV>  {
+        0.235894 0.366149
+        <Tangent> { -0.711995 -0.510495 0.482139 }
+        <Binormal> { 0.648541 -0.662117 0.256669 }
+      }
+      <Normal> { -0.383282 -0.635304 -0.670400 }
+    }
+    <Vertex> 2718 {
+      -1.01381266117 0.642450928688 3.19779229164
+      <UV>  {
+        0.215527 0.282604
+        <Tangent> { -0.241715 -0.659939 0.711375 }
+        <Binormal> { 0.392383 -0.326861 -0.169901 }
+      }
+      <Normal> { -0.548357 -0.794244 0.261574 }
+    }
+    <Vertex> 2719 {
+      -0.964353501797 0.642112135887 3.1203918457
+      <UV>  {
+        0.241339 0.298054
+        <Tangent> { -0.715724 -0.393966 0.576654 }
+        <Binormal> { 0.543532 -0.648274 0.231718 }
+      }
+      <Normal> { -0.626209 -0.668447 -0.401227 }
+    }
+    <Vertex> 2720 {
+      -1.01056730747 0.516267359257 3.00096797943
+      <UV>  {
+        0.235894 0.366149
+        <Tangent> { -0.711995 -0.510495 0.482139 }
+        <Binormal> { 0.648541 -0.662117 0.256669 }
+      }
+      <Normal> { -0.383282 -0.635304 -0.670400 }
+    }
+    <Vertex> 2721 {
+      -0.865643024445 0.648925244808 2.95490837097
+      <UV>  {
+        0.296765 0.337303
+        <Tangent> { -0.787541 -0.437974 0.433541 }
+        <Binormal> { 0.563296 -0.726980 0.288831 }
+      }
+      <Normal> { -0.398114 -0.588153 -0.703940 }
+    }
+    <Vertex> 2722 {
+      -1.01056730747 0.516267359257 3.00096797943
+      <UV>  {
+        0.235894 0.366149
+        <Tangent> { -0.711995 -0.510495 0.482139 }
+        <Binormal> { 0.648541 -0.662117 0.256669 }
+      }
+      <Normal> { -0.383282 -0.635304 -0.670400 }
+    }
+    <Vertex> 2723 {
+      -0.964353501797 0.642112135887 3.1203918457
+      <UV>  {
+        0.241339 0.298054
+        <Tangent> { -0.715724 -0.393966 0.576654 }
+        <Binormal> { 0.543532 -0.648274 0.231718 }
+      }
+      <Normal> { -0.626209 -0.668447 -0.401227 }
+    }
+    <Vertex> 2724 {
+      -0.851167440414 0.455160170794 2.92400598526
+      <UV>  {
+        0.282914 0.432136
+        <Tangent> { -0.842844 -0.445107 0.302480 }
+        <Binormal> { 0.524322 -0.805719 0.275359 }
+      }
+      <Normal> { -0.124302 -0.392346 -0.911344 }
+    }
+    <Vertex> 2725 {
+      -1.01056730747 0.516267359257 3.00096797943
+      <UV>  {
+        0.235894 0.366149
+        <Tangent> { -0.711995 -0.510495 0.482139 }
+        <Binormal> { 0.648541 -0.662117 0.256669 }
+      }
+      <Normal> { -0.383282 -0.635304 -0.670400 }
+    }
+    <Vertex> 2726 {
+      -0.865643024445 0.648925244808 2.95490837097
+      <UV>  {
+        0.296765 0.337303
+        <Tangent> { -0.787541 -0.437974 0.433541 }
+        <Binormal> { 0.563296 -0.726980 0.288831 }
+      }
+      <Normal> { -0.398114 -0.588153 -0.703940 }
+    }
+    <Vertex> 2727 {
+      -0.975519418716 0.513878166676 3.2419397831
+      <UV>  {
+        0.170288 0.291090
+        <Tangent> { 0.488601 -0.803529 0.340014 }
+        <Binormal> { -0.620478 -0.510470 -0.314727 }
+      }
+      <Normal> { -0.179571 -0.348827 0.919797 }
+    }
+    <Vertex> 2728 {
+      -1.01381266117 0.642450928688 3.19779229164
+      <UV>  {
+        0.215527 0.282604
+        <Tangent> { -0.241715 -0.659939 0.711375 }
+        <Binormal> { 0.392383 -0.326861 -0.169901 }
+      }
+      <Normal> { -0.548357 -0.794244 0.261574 }
+    }
+    <Vertex> 2729 {
+      -1.08131110668 0.509793043137 3.20289444923
+      <UV>  {
+        0.191012 0.329346
+        <Tangent> { 0.313934 -0.452506 0.834676 }
+        <Binormal> { 0.344326 -0.309585 -0.297343 }
+      }
+      <Normal> { -0.130833 -0.758568 0.638295 }
+    }
+    <Vertex> 2730 {
+      -0.975519418716 0.513878166676 3.2419397831
+      <UV>  {
+        0.170288 0.291090
+        <Tangent> { 0.488601 -0.803529 0.340014 }
+        <Binormal> { -0.620478 -0.510470 -0.314727 }
+      }
+      <Normal> { -0.179571 -0.348827 0.919797 }
+    }
+    <Vertex> 2731 {
+      -0.910198330879 0.646536111832 3.2368376255
+      <UV>  {
+        0.195756 0.233487
+        <Tangent> { 0.378027 -0.860165 0.342363 }
+        <Binormal> { -0.664318 -0.416291 -0.312383 }
+      }
+      <Normal> { -0.208441 -0.352062 0.912442 }
+    }
+    <Vertex> 2732 {
+      -1.01381266117 0.642450928688 3.19779229164
+      <UV>  {
+        0.215527 0.282604
+        <Tangent> { -0.241715 -0.659939 0.711375 }
+        <Binormal> { 0.392383 -0.326861 -0.169901 }
+      }
+      <Normal> { -0.548357 -0.794244 0.261574 }
+    }
+    <Vertex> 2733 {
+      -0.800243794918 0.0252918247133 3.05242872238
+      <UV>  {
+        0.508101 0.749781
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.408063 0.816126 0.409101 }
+    }
+    <Vertex> 2734 {
+      -0.800243794918 -0.00532154506072 3.05242872238
+      <UV>  {
+        0.508101 0.749781
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.665304 0.332652 0.668325 }
+    }
+    <Vertex> 2735 {
+      -0.800345897675 -0.00572015671059 2.9758951664
+      <UV>  {
+        0.508077 0.724853
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.333506 0.667043 -0.666189 }
+    }
+    <Vertex> 2736 {
+      -0.800345897675 -0.00572015671059 2.9758951664
+      <UV>  {
+        0.508077 0.724853
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.333506 0.667043 -0.666189 }
+    }
+    <Vertex> 2737 {
+      -0.800345897675 0.0256904363632 2.9758951664
+      <UV>  {
+        0.508077 0.724853
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.817713 0.408856 -0.405133 }
+    }
+    <Vertex> 2738 {
+      -0.800243794918 0.0252918247133 3.05242872238
+      <UV>  {
+        0.508101 0.749781
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.408063 0.816126 0.409101 }
+    }
+    <Vertex> 2739 {
+      -0.835081756115 0.025291826576 3.05242872238
+      <UV>  {
+        0.499885 0.749781
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.641713 -0.316355 0.698630 }
+    }
+    <Vertex> 2740 {
+      -0.800243794918 0.0252918247133 3.05242872238
+      <UV>  {
+        0.508101 0.749781
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.408063 0.816126 0.409101 }
+    }
+    <Vertex> 2741 {
+      -0.800345897675 0.0256904363632 2.9758951664
+      <UV>  {
+        0.508077 0.724853
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.817713 0.408856 -0.405133 }
+    }
+    <Vertex> 2742 {
+      -0.800345897675 0.0256904363632 2.9758951664
+      <UV>  {
+        0.508077 0.724853
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.817713 0.408856 -0.405133 }
+    }
+    <Vertex> 2743 {
+      -0.84804391861 0.0256904382259 2.9758951664
+      <UV>  {
+        0.496828 0.724853
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.361614 -0.713095 -0.600574 }
+    }
+    <Vertex> 2744 {
+      -0.835081756115 0.025291826576 3.05242872238
+      <UV>  {
+        0.499885 0.749781
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.641713 -0.316355 0.698630 }
+    }
+    <Vertex> 2745 {
+      -0.835081756115 -0.00532154319808 3.05242872238
+      <UV>  {
+        0.499885 0.749781
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.386853 -0.762841 0.518052 }
+    }
+    <Vertex> 2746 {
+      -0.835081756115 0.025291826576 3.05242872238
+      <UV>  {
+        0.499885 0.749781
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.641713 -0.316355 0.698630 }
+    }
+    <Vertex> 2747 {
+      -0.84804391861 0.0256904382259 2.9758951664
+      <UV>  {
+        0.496828 0.724853
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.361614 -0.713095 -0.600574 }
+    }
+    <Vertex> 2748 {
+      -0.84804391861 0.0256904382259 2.9758951664
+      <UV>  {
+        0.496828 0.724853
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.361614 -0.713095 -0.600574 }
+    }
+    <Vertex> 2749 {
+      -0.84804391861 -0.00572015438229 2.9758951664
+      <UV>  {
+        0.496828 0.724853
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.841487 -0.414838 -0.346080 }
+    }
+    <Vertex> 2750 {
+      -0.835081756115 -0.00532154319808 3.05242872238
+      <UV>  {
+        0.499885 0.749781
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.386853 -0.762841 0.518052 }
+    }
+    <Vertex> 2751 {
+      -0.800243794918 -0.00532154506072 3.05242872238
+      <UV>  {
+        0.508101 0.749781
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.665304 0.332652 0.668325 }
+    }
+    <Vertex> 2752 {
+      -0.835081756115 -0.00532154319808 3.05242872238
+      <UV>  {
+        0.499885 0.749781
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.386853 -0.762841 0.518052 }
+    }
+    <Vertex> 2753 {
+      -0.84804391861 -0.00572015438229 2.9758951664
+      <UV>  {
+        0.496828 0.724853
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.841487 -0.414838 -0.346080 }
+    }
+    <Vertex> 2754 {
+      -0.84804391861 -0.00572015438229 2.9758951664
+      <UV>  {
+        0.496828 0.724853
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.841487 -0.414838 -0.346080 }
+    }
+    <Vertex> 2755 {
+      -0.800345897675 -0.00572015671059 2.9758951664
+      <UV>  {
+        0.508077 0.724853
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.333506 0.667043 -0.666189 }
+    }
+    <Vertex> 2756 {
+      -0.800243794918 -0.00532154506072 3.05242872238
+      <UV>  {
+        0.508101 0.749781
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.665304 0.332652 0.668325 }
+    }
+    <Vertex> 2757 {
+      -0.835081756115 0.025291826576 3.05242872238
+      <UV>  {
+        0.499885 0.749781
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.641713 -0.316355 0.698630 }
+    }
+    <Vertex> 2758 {
+      -0.835081756115 -0.00532154319808 3.05242872238
+      <UV>  {
+        0.499885 0.749781
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.386853 -0.762841 0.518052 }
+    }
+    <Vertex> 2759 {
+      -0.800243794918 -0.00532154506072 3.05242872238
+      <UV>  {
+        0.508101 0.749781
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.665304 0.332652 0.668325 }
+    }
+    <Vertex> 2760 {
+      -0.800243794918 -0.00532154506072 3.05242872238
+      <UV>  {
+        0.508101 0.749781
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.665304 0.332652 0.668325 }
+    }
+    <Vertex> 2761 {
+      -0.800243794918 0.0252918247133 3.05242872238
+      <UV>  {
+        0.508101 0.749781
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.408063 0.816126 0.409101 }
+    }
+    <Vertex> 2762 {
+      -0.835081756115 0.025291826576 3.05242872238
+      <UV>  {
+        0.499885 0.749781
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.641713 -0.316355 0.698630 }
+    }
+    <Vertex> 2763 {
+      -0.84804391861 0.0256904382259 2.9758951664
+      <UV>  {
+        0.496828 0.724853
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.361614 -0.713095 -0.600574 }
+    }
+    <Vertex> 2764 {
+      -0.800345897675 0.0256904363632 2.9758951664
+      <UV>  {
+        0.508077 0.724853
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.817713 0.408856 -0.405133 }
+    }
+    <Vertex> 2765 {
+      -0.800345897675 -0.00572015671059 2.9758951664
+      <UV>  {
+        0.508077 0.724853
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.333506 0.667043 -0.666189 }
+    }
+    <Vertex> 2766 {
+      -0.800345897675 -0.00572015671059 2.9758951664
+      <UV>  {
+        0.508077 0.724853
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.333506 0.667043 -0.666189 }
+    }
+    <Vertex> 2767 {
+      -0.84804391861 -0.00572015438229 2.9758951664
+      <UV>  {
+        0.496828 0.724853
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.841487 -0.414838 -0.346080 }
+    }
+    <Vertex> 2768 {
+      -0.84804391861 0.0256904382259 2.9758951664
+      <UV>  {
+        0.496828 0.724853
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.361614 -0.713095 -0.600574 }
+    }
+    <Vertex> 2769 {
+      -0.798709690571 -0.00443019671366 3.04699754715
+      <UV>  {
+        0.508463 0.748012
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.383312 -0.862606 0.330088 }
+    }
+    <Vertex> 2770 {
+      -0.797342419624 0.0261414442211 3.04699754715
+      <UV>  {
+        0.508785 0.748012
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.703116 -0.295144 0.646870 }
+    }
+    <Vertex> 2771 {
+      -0.788536727428 0.0254650488496 2.97046399117
+      <UV>  {
+        0.510862 0.723084
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.346934 -0.610187 -0.712241 }
+    }
+    <Vertex> 2772 {
+      -0.788536727428 0.0254650488496 2.97046399117
+      <UV>  {
+        0.510862 0.723084
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.346934 -0.610187 -0.712241 }
+    }
+    <Vertex> 2773 {
+      -0.78994011879 -0.00590256834403 2.97046399117
+      <UV>  {
+        0.510531 0.723084
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.779809 -0.451155 -0.433943 }
+    }
+    <Vertex> 2774 {
+      -0.798709690571 -0.00443019671366 3.04699754715
+      <UV>  {
+        0.508463 0.748012
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.383312 -0.862606 0.330088 }
+    }
+    <Vertex> 2775 {
+      -0.763919591904 -0.00656650727615 3.04699754715
+      <UV>  {
+        0.516667 0.748012
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.654622 0.272469 0.705100 }
+    }
+    <Vertex> 2776 {
+      -0.798709690571 -0.00443019671366 3.04699754715
+      <UV>  {
+        0.508463 0.748012
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.383312 -0.862606 0.330088 }
+    }
+    <Vertex> 2777 {
+      -0.78994011879 -0.00590256834403 2.97046399117
+      <UV>  {
+        0.510531 0.723084
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.779809 -0.451155 -0.433943 }
+    }
+    <Vertex> 2778 {
+      -0.78994011879 -0.00590256834403 2.97046399117
+      <UV>  {
+        0.510531 0.723084
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.779809 -0.451155 -0.433943 }
+    }
+    <Vertex> 2779 {
+      -0.751016974449 -0.00882738269866 2.97046399117
+      <UV>  {
+        0.519710 0.723084
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.396588 0.692557 -0.602496 }
+    }
+    <Vertex> 2780 {
+      -0.763919591904 -0.00656650727615 3.04699754715
+      <UV>  {
+        0.516667 0.748012
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.654622 0.272469 0.705100 }
+    }
+    <Vertex> 2781 {
+      -0.762552380562 0.0240051336586 3.04699754715
+      <UV>  {
+        0.516990 0.748012
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.351238 0.783990 0.511795 }
+    }
+    <Vertex> 2782 {
+      -0.763919591904 -0.00656650727615 3.04699754715
+      <UV>  {
+        0.516667 0.748012
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.654622 0.272469 0.705100 }
+    }
+    <Vertex> 2783 {
+      -0.751016974449 -0.00882738269866 2.97046399117
+      <UV>  {
+        0.519710 0.723084
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.396588 0.692557 -0.602496 }
+    }
+    <Vertex> 2784 {
+      -0.751016974449 -0.00882738269866 2.97046399117
+      <UV>  {
+        0.519710 0.723084
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.396588 0.692557 -0.602496 }
+    }
+    <Vertex> 2785 {
+      -0.74961411953 0.0225402358919 2.97046399117
+      <UV>  {
+        0.520041 0.723084
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.812128 0.466628 -0.350261 }
+    }
+    <Vertex> 2786 {
+      -0.762552380562 0.0240051336586 3.04699754715
+      <UV>  {
+        0.516990 0.748012
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.351238 0.783990 0.511795 }
+    }
+    <Vertex> 2787 {
+      -0.797342419624 0.0261414442211 3.04699754715
+      <UV>  {
+        0.508785 0.748012
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.703116 -0.295144 0.646870 }
+    }
+    <Vertex> 2788 {
+      -0.762552380562 0.0240051336586 3.04699754715
+      <UV>  {
+        0.516990 0.748012
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.351238 0.783990 0.511795 }
+    }
+    <Vertex> 2789 {
+      -0.74961411953 0.0225402358919 2.97046399117
+      <UV>  {
+        0.520041 0.723084
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.812128 0.466628 -0.350261 }
+    }
+    <Vertex> 2790 {
+      -0.74961411953 0.0225402358919 2.97046399117
+      <UV>  {
+        0.520041 0.723084
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.812128 0.466628 -0.350261 }
+    }
+    <Vertex> 2791 {
+      -0.788536727428 0.0254650488496 2.97046399117
+      <UV>  {
+        0.510862 0.723084
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.346934 -0.610187 -0.712241 }
+    }
+    <Vertex> 2792 {
+      -0.797342419624 0.0261414442211 3.04699754715
+      <UV>  {
+        0.508785 0.748012
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.703116 -0.295144 0.646870 }
+    }
+    <Vertex> 2793 {
+      -0.763919591904 -0.00656650727615 3.04699754715
+      <UV>  {
+        0.516667 0.748012
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.654622 0.272469 0.705100 }
+    }
+    <Vertex> 2794 {
+      -0.762552380562 0.0240051336586 3.04699754715
+      <UV>  {
+        0.516990 0.748012
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.351238 0.783990 0.511795 }
+    }
+    <Vertex> 2795 {
+      -0.797342419624 0.0261414442211 3.04699754715
+      <UV>  {
+        0.508785 0.748012
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.703116 -0.295144 0.646870 }
+    }
+    <Vertex> 2796 {
+      -0.797342419624 0.0261414442211 3.04699754715
+      <UV>  {
+        0.508785 0.748012
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.703116 -0.295144 0.646870 }
+    }
+    <Vertex> 2797 {
+      -0.798709690571 -0.00443019671366 3.04699754715
+      <UV>  {
+        0.508463 0.748012
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.383312 -0.862606 0.330088 }
+    }
+    <Vertex> 2798 {
+      -0.763919591904 -0.00656650727615 3.04699754715
+      <UV>  {
+        0.516667 0.748012
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.654622 0.272469 0.705100 }
+    }
+    <Vertex> 2799 {
+      -0.751016974449 -0.00882738269866 2.97046399117
+      <UV>  {
+        0.519710 0.723084
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.396588 0.692557 -0.602496 }
+    }
+    <Vertex> 2800 {
+      -0.78994011879 -0.00590256834403 2.97046399117
+      <UV>  {
+        0.510531 0.723084
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.779809 -0.451155 -0.433943 }
+    }
+    <Vertex> 2801 {
+      -0.788536727428 0.0254650488496 2.97046399117
+      <UV>  {
+        0.510862 0.723084
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.346934 -0.610187 -0.712241 }
+    }
+    <Vertex> 2802 {
+      -0.788536727428 0.0254650488496 2.97046399117
+      <UV>  {
+        0.510862 0.723084
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.346934 -0.610187 -0.712241 }
+    }
+    <Vertex> 2803 {
+      -0.74961411953 0.0225402358919 2.97046399117
+      <UV>  {
+        0.520041 0.723084
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.812128 0.466628 -0.350261 }
+    }
+    <Vertex> 2804 {
+      -0.751016974449 -0.00882738269866 2.97046399117
+      <UV>  {
+        0.519710 0.723084
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.396588 0.692557 -0.602496 }
+    }
+    <Vertex> 2805 {
+      -1.09852874279 0.383790642023 1.79649817944
+      <UV>  {
+        0.089859 0.600132
+        <Tangent> { -0.767334 0.626178 0.138204 }
+        <Binormal> { 0.178746 0.162803 0.254795 }
+      }
+      <Normal> { 0.581378 -0.806482 0.107456 }
+    }
+    <Vertex> 2806 {
+      -1.03437292576 0.309294193983 1.53859758377
+      <UV>  {
+        0.112941 0.561337
+        <Tangent> { -0.864182 0.454989 0.214883 }
+        <Binormal> { 0.136653 0.213369 0.097786 }
+      }
+      <Normal> { 0.833033 -0.551744 0.039766 }
+    }
+    <Vertex> 2807 {
+      -0.889337420464 0.253009915352 1.9915612936
+      <UV>  {
+        0.157649 0.648286
+        <Tangent> { -0.870733 0.476931 0.119838 }
+        <Binormal> { 0.076972 0.141748 -0.004857 }
+      }
+      <Normal> { 0.878597 -0.475661 0.041871 }
+    }
+    <Vertex> 2808 {
+      -1.09852874279 0.383790642023 1.79649817944
+      <UV>  {
+        0.089859 0.600132
+        <Tangent> { -0.767334 0.626178 0.138204 }
+        <Binormal> { 0.178746 0.162803 0.254795 }
+      }
+      <Normal> { 0.581378 -0.806482 0.107456 }
+    }
+    <Vertex> 2809 {
+      -0.889337420464 0.253009915352 1.9915612936
+      <UV>  {
+        0.157649 0.648286
+        <Tangent> { -0.870733 0.476931 0.119838 }
+        <Binormal> { 0.076972 0.141748 -0.004857 }
+      }
+      <Normal> { 0.878597 -0.475661 0.041871 }
+    }
+    <Vertex> 2810 {
+      -1.09852874279 0.428092598915 1.95565879345
+      <UV>  {
+        0.085062 0.643347
+        <Tangent> { -0.764345 0.641651 -0.063725 }
+        <Binormal> { -0.048946 -0.018906 0.396712 }
+      }
+      <Normal> { 0.447127 -0.894375 0.012543 }
+    }
+    <Vertex> 2811 {
+      -0.889337420464 0.253009915352 1.9915612936
+      <UV>  {
+        0.157649 0.648286
+        <Tangent> { -0.870733 0.476931 0.119838 }
+        <Binormal> { 0.076972 0.141748 -0.004857 }
+      }
+      <Normal> { 0.878597 -0.475661 0.041871 }
+    }
+    <Vertex> 2812 {
+      -1.10873329639 0.399097323418 2.13361144066
+      <UV>  {
+        0.090723 0.690498
+        <Tangent> { -0.834528 0.546651 -0.068815 }
+        <Binormal> { -0.086754 -0.083869 0.385838 }
+      }
+      <Normal> { 0.558123 -0.827937 -0.054476 }
+    }
+    <Vertex> 2813 {
+      -1.09852874279 0.428092598915 1.95565879345
+      <UV>  {
+        0.085062 0.643347
+        <Tangent> { -0.764345 0.641651 -0.063725 }
+        <Binormal> { -0.048946 -0.018906 0.396712 }
+      }
+      <Normal> { 0.447127 -0.894375 0.012543 }
+    }
+    <Vertex> 2814 {
+      -0.797497332096 0.222316816449 1.73560297489
+      <UV>  {
+        0.181940 0.610501
+        <Tangent> { -0.999402 -0.004303 -0.034298 }
+        <Binormal> { -0.000245 0.042450 0.001819 }
+      }
+      <Normal> { 0.997040 0.002472 0.076693 }
+    }
+    <Vertex> 2815 {
+      -0.797497332096 0.230368763208 2.06025457382
+      <UV>  {
+        0.183212 0.665728
+        <Tangent> { -0.999512 -0.001981 -0.031185 }
+        <Binormal> { -0.000024 -0.002163 0.000913 }
+      }
+      <Normal> { 0.999573 0.001068 0.029023 }
+    }
+    <Vertex> 2816 {
+      -0.889337420464 0.253009915352 1.9915612936
+      <UV>  {
+        0.157649 0.648286
+        <Tangent> { -0.870733 0.476931 0.119838 }
+        <Binormal> { 0.076972 0.141748 -0.004857 }
+      }
+      <Normal> { 0.878597 -0.475661 0.041871 }
+    }
+    <Vertex> 2817 {
+      -1.03437292576 0.309294193983 1.53859758377
+      <UV>  {
+        0.112941 0.561337
+        <Tangent> { -0.864182 0.454989 0.214883 }
+        <Binormal> { 0.136653 0.213369 0.097786 }
+      }
+      <Normal> { 0.833033 -0.551744 0.039766 }
+    }
+    <Vertex> 2818 {
+      -0.797497332096 0.222316816449 1.73560297489
+      <UV>  {
+        0.181940 0.610501
+        <Tangent> { -0.999402 -0.004303 -0.034298 }
+        <Binormal> { -0.000245 0.042450 0.001819 }
+      }
+      <Normal> { 0.997040 0.002472 0.076693 }
+    }
+    <Vertex> 2819 {
+      -0.889337420464 0.253009915352 1.9915612936
+      <UV>  {
+        0.157649 0.648286
+        <Tangent> { -0.870733 0.476931 0.119838 }
+        <Binormal> { 0.076972 0.141748 -0.004857 }
+      }
+      <Normal> { 0.878597 -0.475661 0.041871 }
+    }
+    <Vertex> 2820 {
+      -0.889337420464 0.27102714777 2.2216398716
+      <UV>  {
+        0.158019 0.708808
+        <Tangent> { -0.896495 0.436526 -0.075768 }
+        <Binormal> { -0.029816 -0.061357 -0.000717 }
+      }
+      <Normal> { 0.899350 -0.437117 0.007569 }
+    }
+    <Vertex> 2821 {
+      -1.10873329639 0.399097323418 2.13361144066
+      <UV>  {
+        0.090723 0.690498
+        <Tangent> { -0.834528 0.546651 -0.068815 }
+        <Binormal> { -0.086754 -0.083869 0.385838 }
+      }
+      <Normal> { 0.558123 -0.827937 -0.054476 }
+    }
+    <Vertex> 2822 {
+      -0.889337420464 0.253009915352 1.9915612936
+      <UV>  {
+        0.157649 0.648286
+        <Tangent> { -0.870733 0.476931 0.119838 }
+        <Binormal> { 0.076972 0.141748 -0.004857 }
+      }
+      <Normal> { 0.878597 -0.475661 0.041871 }
+    }
+    <Vertex> 2823 {
+      -0.889337420464 0.27102714777 2.2216398716
+      <UV>  {
+        0.158019 0.708808
+        <Tangent> { -0.896495 0.436526 -0.075768 }
+        <Binormal> { -0.029816 -0.061357 -0.000717 }
+      }
+      <Normal> { 0.899350 -0.437117 0.007569 }
+    }
+    <Vertex> 2824 {
+      -0.889337420464 0.253009915352 1.9915612936
+      <UV>  {
+        0.157649 0.648286
+        <Tangent> { -0.870733 0.476931 0.119838 }
+        <Binormal> { 0.076972 0.141748 -0.004857 }
+      }
+      <Normal> { 0.878597 -0.475661 0.041871 }
+    }
+    <Vertex> 2825 {
+      -0.797497332096 0.230368763208 2.06025457382
+      <UV>  {
+        0.183212 0.665728
+        <Tangent> { -0.999512 -0.001981 -0.031185 }
+        <Binormal> { -0.000024 -0.002163 0.000913 }
+      }
+      <Normal> { 0.999573 0.001068 0.029023 }
+    }
+    <Vertex> 2826 {
+      -0.797497332096 0.230368763208 2.06025457382
+      <UV>  {
+        0.183212 0.665728
+        <Tangent> { -0.999512 -0.001981 -0.031185 }
+        <Binormal> { -0.000024 -0.002163 0.000913 }
+      }
+      <Normal> { 0.999573 0.001068 0.029023 }
+    }
+    <Vertex> 2827 {
+      -0.797497332096 0.223355844617 2.43957328796
+      <UV>  {
+        0.185620 0.761353
+        <Tangent> { -0.999524 -0.013082 -0.027949 }
+        <Binormal> { -0.001056 0.074418 0.002946 }
+      }
+      <Normal> { 0.994690 0.010071 0.102268 }
+    }
+    <Vertex> 2828 {
+      -0.889337420464 0.27102714777 2.2216398716
+      <UV>  {
+        0.158019 0.708808
+        <Tangent> { -0.896495 0.436526 -0.075768 }
+        <Binormal> { -0.029816 -0.061357 -0.000717 }
+      }
+      <Normal> { 0.899350 -0.437117 0.007569 }
+    }
+    <Vertex> 2829 {
+      -0.797497332096 0.223355844617 2.43957328796
+      <UV>  {
+        0.185620 0.761353
+        <Tangent> { -0.999524 -0.013082 -0.027949 }
+        <Binormal> { -0.001056 0.074418 0.002946 }
+      }
+      <Normal> { 0.994690 0.010071 0.102268 }
+    }
+    <Vertex> 2830 {
+      -1.07293796539 0.359876453876 2.54342770576
+      <UV>  {
+        0.112591 0.796118
+        <Tangent> { -0.920165 0.378761 -0.099182 }
+        <Binormal> { -0.031910 -0.106797 -0.111795 }
+      }
+      <Normal> { 0.961547 -0.274300 -0.012421 }
+    }
+    <Vertex> 2831 {
+      -0.889337420464 0.27102714777 2.2216398716
+      <UV>  {
+        0.158019 0.708808
+        <Tangent> { -0.896495 0.436526 -0.075768 }
+        <Binormal> { -0.029816 -0.061357 -0.000717 }
+      }
+      <Normal> { 0.899350 -0.437117 0.007569 }
+    }
+    <Vertex> 2832 {
+      -1.07293796539 0.359876453876 2.54342770576
+      <UV>  {
+        0.112591 0.796118
+        <Tangent> { -0.920165 0.378761 -0.099182 }
+        <Binormal> { -0.031910 -0.106797 -0.111795 }
+      }
+      <Normal> { 0.961547 -0.274300 -0.012421 }
+    }
+    <Vertex> 2833 {
+      -0.797497332096 0.223355844617 2.43957328796
+      <UV>  {
+        0.185620 0.761353
+        <Tangent> { -0.999524 -0.013082 -0.027949 }
+        <Binormal> { -0.001056 0.074418 0.002946 }
+      }
+      <Normal> { 0.994690 0.010071 0.102268 }
+    }
+    <Vertex> 2834 {
+      -0.798021733761 0.271612197161 2.58629441261
+      <UV>  {
+        0.186736 0.799414
+        <Tangent> { -0.999345 -0.027082 -0.024002 }
+        <Binormal> { -0.008949 0.323493 0.007590 }
+      }
+      <Normal> { 0.937956 0.017823 0.346233 }
+    }
+    <Vertex> 2835 {
+      -0.986200034618 0.338298797607 2.60819959641
+      <UV>  {
+        0.137782 0.810030
+        <Tangent> { -0.958903 0.268502 -0.091711 }
+        <Binormal> { 0.133828 0.523727 0.134052 }
+      }
+      <Normal> { 0.712394 -0.339274 0.614307 }
+    }
+    <Vertex> 2836 {
+      -1.07293796539 0.359876453876 2.54342770576
+      <UV>  {
+        0.112591 0.796118
+        <Tangent> { -0.920165 0.378761 -0.099182 }
+        <Binormal> { -0.031910 -0.106797 -0.111795 }
+      }
+      <Normal> { 0.961547 -0.274300 -0.012421 }
+    }
+    <Vertex> 2837 {
+      -0.798021733761 0.271612197161 2.58629441261
+      <UV>  {
+        0.186736 0.799414
+        <Tangent> { -0.999345 -0.027082 -0.024002 }
+        <Binormal> { -0.008949 0.323493 0.007590 }
+      }
+      <Normal> { 0.937956 0.017823 0.346233 }
+    }
+    <Vertex> 2838 {
+      -0.986200034618 0.338298797607 2.60819959641
+      <UV>  {
+        0.137782 0.810030
+        <Tangent> { -0.958903 0.268502 -0.091711 }
+        <Binormal> { 0.133828 0.523727 0.134052 }
+      }
+      <Normal> { 0.712394 -0.339274 0.614307 }
+    }
+    <Vertex> 2839 {
+      -0.798021733761 0.271612197161 2.58629441261
+      <UV>  {
+        0.186736 0.799414
+        <Tangent> { -0.999345 -0.027082 -0.024002 }
+        <Binormal> { -0.008949 0.323493 0.007590 }
+      }
+      <Normal> { 0.937956 0.017823 0.346233 }
+    }
+    <Vertex> 2840 {
+      -0.797497332096 0.339249521494 2.698969841
+      <UV>  {
+        0.187871 0.831218
+        <Tangent> { -0.999189 -0.035213 -0.019509 }
+        <Binormal> { -0.023238 0.653460 0.010691 }
+      }
+      <Normal> { 0.743522 0.015503 0.668508 }
+    }
+    <Vertex> 2841 {
+      -0.889337420464 0.27102714777 2.2216398716
+      <UV>  {
+        0.158019 0.708808
+        <Tangent> { -0.896495 0.436526 -0.075768 }
+        <Binormal> { -0.029816 -0.061357 -0.000717 }
+      }
+      <Normal> { 0.899350 -0.437117 0.007569 }
+    }
+    <Vertex> 2842 {
+      -1.07293796539 0.359876453876 2.54342770576
+      <UV>  {
+        0.112591 0.796118
+        <Tangent> { -0.920165 0.378761 -0.099182 }
+        <Binormal> { -0.031910 -0.106797 -0.111795 }
+      }
+      <Normal> { 0.961547 -0.274300 -0.012421 }
+    }
+    <Vertex> 2843 {
+      -1.1164662838 0.381648719311 2.40994906425
+      <UV>  {
+        0.097022 0.762749
+        <Tangent> { -0.883168 0.462741 -0.076718 }
+        <Binormal> { -0.163515 -0.277671 0.207535 }
+      }
+      <Normal> { 0.740959 -0.623218 -0.250038 }
+    }
+    <Vertex> 2844 {
+      -0.889337420464 0.27102714777 2.2216398716
+      <UV>  {
+        0.158019 0.708808
+        <Tangent> { -0.896495 0.436526 -0.075768 }
+        <Binormal> { -0.029816 -0.061357 -0.000717 }
+      }
+      <Normal> { 0.899350 -0.437117 0.007569 }
+    }
+    <Vertex> 2845 {
+      -1.1164662838 0.381648719311 2.40994906425
+      <UV>  {
+        0.097022 0.762749
+        <Tangent> { -0.883168 0.462741 -0.076718 }
+        <Binormal> { -0.163515 -0.277671 0.207535 }
+      }
+      <Normal> { 0.740959 -0.623218 -0.250038 }
+    }
+    <Vertex> 2846 {
+      -1.10873329639 0.399097323418 2.13361144066
+      <UV>  {
+        0.090723 0.690498
+        <Tangent> { -0.834528 0.546651 -0.068815 }
+        <Binormal> { -0.086754 -0.083869 0.385838 }
+      }
+      <Normal> { 0.558123 -0.827937 -0.054476 }
+    }
+    <Vertex> 2847 {
+      -0.797497332096 0.23618850112 1.24630725384
+      <UV>  {
+        0.178152 0.483614
+        <Tangent> { -0.999497 -0.022363 -0.022472 }
+        <Binormal> { 0.021517 -0.959156 -0.002520 }
+      }
+      <Normal> { 0.303323 0.009308 -0.952818 }
+    }
+    <Vertex> 2848 {
+      -0.869350254536 0.299050122499 1.22716104984
+      <UV>  {
+        0.155848 0.471827
+        <Tangent> { -0.916978 0.398118 0.025541 }
+        <Binormal> { -0.311697 -0.709169 -0.136481 }
+      }
+      <Normal> { 0.602405 -0.112705 -0.790155 }
+    }
+    <Vertex> 2849 {
+      -0.889337420464 0.695588648319 1.23194479942
+      <UV>  {
+        0.146858 0.346484
+        <Tangent> { -0.958185 0.166232 -0.232912 }
+        <Binormal> { -0.029540 -0.652425 -0.344119 }
+      }
+      <Normal> { -0.437178 0.434980 -0.787164 }
+    }
+    <Vertex> 2850 {
+      -0.889337420464 0.695588648319 1.23194479942
+      <UV>  {
+        0.146858 0.346484
+        <Tangent> { -0.958185 0.166232 -0.232912 }
+        <Binormal> { -0.029540 -0.652425 -0.344119 }
+      }
+      <Normal> { -0.437178 0.434980 -0.787164 }
+    }
+    <Vertex> 2851 {
+      -0.797497332096 0.683510422707 1.24961578846
+      <UV>  {
+        0.180167 0.348760
+        <Tangent> { -0.999780 -0.018679 -0.009582 }
+        <Binormal> { 0.016597 -0.883613 -0.009160 }
+      }
+      <Normal> { -0.459365 0.000580 -0.888211 }
+    }
+    <Vertex> 2852 {
+      -0.797497332096 0.23618850112 1.24630725384
+      <UV>  {
+        0.178152 0.483614
+        <Tangent> { -0.999497 -0.022363 -0.022472 }
+        <Binormal> { 0.021517 -0.959156 -0.002520 }
+      }
+      <Normal> { 0.303323 0.009308 -0.952818 }
+    }
+    <Vertex> 2853 {
+      -0.797497332096 0.209162637591 1.3418943882
+      <UV>  {
+        0.179570 0.507963
+        <Tangent> { -0.999000 0.013663 -0.042567 }
+        <Binormal> { -0.004586 -0.362609 -0.008755 }
+      }
+      <Normal> { 0.946501 -0.004181 -0.322642 }
+    }
+    <Vertex> 2854 {
+      -0.889337420464 0.263334274292 1.29201555252
+      <UV>  {
+        0.152584 0.492557
+        <Tangent> { -0.949404 0.313545 0.017941 }
+        <Binormal> { -0.127414 -0.377865 -0.138773 }
+      }
+      <Normal> { 0.897336 -0.150182 -0.414960 }
+    }
+    <Vertex> 2855 {
+      -0.869350254536 0.299050122499 1.22716104984
+      <UV>  {
+        0.155848 0.471827
+        <Tangent> { -0.916978 0.398118 0.025541 }
+        <Binormal> { -0.311697 -0.709169 -0.136481 }
+      }
+      <Normal> { 0.602405 -0.112705 -0.790155 }
+    }
+    <Vertex> 2856 {
+      -0.949893414974 0.245635911822 1.39633226395
+      <UV>  {
+        0.137973 0.522367
+        <Tangent> { -0.864635 0.304424 -0.399666 }
+        <Binormal> { -0.149306 -0.373373 0.038611 }
+      }
+      <Normal> { 0.928404 -0.371532 -0.002686 }
+    }
+    <Vertex> 2857 {
+      -0.889337420464 0.263334274292 1.29201555252
+      <UV>  {
+        0.152584 0.492557
+        <Tangent> { -0.949404 0.313545 0.017941 }
+        <Binormal> { -0.127414 -0.377865 -0.138773 }
+      }
+      <Normal> { 0.897336 -0.150182 -0.414960 }
+    }
+    <Vertex> 2858 {
+      -0.797559142113 0.196721717715 1.54495799541
+      <UV>  {
+        0.180246 0.535940
+        <Tangent> { -0.999228 0.011414 -0.037598 }
+        <Binormal> { -0.000912 -0.091853 -0.003651 }
+      }
+      <Normal> { 0.998474 -0.007752 -0.054353 }
+    }
+    <Vertex> 2859 {
+      -0.797497332096 0.222316816449 1.73560297489
+      <UV>  {
+        0.181940 0.610501
+        <Tangent> { -0.999402 -0.004303 -0.034298 }
+        <Binormal> { -0.000245 0.042450 0.001819 }
+      }
+      <Normal> { 0.997040 0.002472 0.076693 }
+    }
+    <Vertex> 2860 {
+      -1.03437292576 0.309294193983 1.53859758377
+      <UV>  {
+        0.112941 0.561337
+        <Tangent> { -0.864182 0.454989 0.214883 }
+        <Binormal> { 0.136653 0.213369 0.097786 }
+      }
+      <Normal> { 0.833033 -0.551744 0.039766 }
+    }
+    <Vertex> 2861 {
+      -0.949893414974 0.245635911822 1.39633226395
+      <UV>  {
+        0.137973 0.522367
+        <Tangent> { -0.864635 0.304424 -0.399666 }
+        <Binormal> { -0.149306 -0.373373 0.038611 }
+      }
+      <Normal> { 0.928404 -0.371532 -0.002686 }
+    }
+    <Vertex> 2862 {
+      -0.797559142113 0.196721717715 1.54495799541
+      <UV>  {
+        0.180246 0.535940
+        <Tangent> { -0.999228 0.011414 -0.037598 }
+        <Binormal> { -0.000912 -0.091853 -0.003651 }
+      }
+      <Normal> { 0.998474 -0.007752 -0.054353 }
+    }
+    <Vertex> 2863 {
+      -0.797497332096 0.222316816449 1.73560297489
+      <UV>  {
+        0.181940 0.610501
+        <Tangent> { -0.999402 -0.004303 -0.034298 }
+        <Binormal> { -0.000245 0.042450 0.001819 }
+      }
+      <Normal> { 0.997040 0.002472 0.076693 }
+    }
+    <Vertex> 2864 {
+      -0.949893414974 0.245635911822 1.39633226395
+      <UV>  {
+        0.137973 0.522367
+        <Tangent> { -0.864635 0.304424 -0.399666 }
+        <Binormal> { -0.149306 -0.373373 0.038611 }
+      }
+      <Normal> { 0.928404 -0.371532 -0.002686 }
+    }
+    <Vertex> 2865 {
+      -0.797497332096 0.209162637591 1.3418943882
+      <UV>  {
+        0.179570 0.507963
+        <Tangent> { -0.999000 0.013663 -0.042567 }
+        <Binormal> { -0.004586 -0.362609 -0.008755 }
+      }
+      <Normal> { 0.946501 -0.004181 -0.322642 }
+    }
+    <Vertex> 2866 {
+      -0.797559142113 0.196721717715 1.54495799541
+      <UV>  {
+        0.180246 0.535940
+        <Tangent> { -0.999228 0.011414 -0.037598 }
+        <Binormal> { -0.000912 -0.091853 -0.003651 }
+      }
+      <Normal> { 0.998474 -0.007752 -0.054353 }
+    }
+    <Vertex> 2867 {
+      -0.889337420464 0.263334274292 1.29201555252
+      <UV>  {
+        0.152584 0.492557
+        <Tangent> { -0.949404 0.313545 0.017941 }
+        <Binormal> { -0.127414 -0.377865 -0.138773 }
+      }
+      <Normal> { 0.897336 -0.150182 -0.414960 }
+    }
+    <Vertex> 2868 {
+      -0.797497332096 0.23618850112 1.24630725384
+      <UV>  {
+        0.178152 0.483614
+        <Tangent> { -0.999497 -0.022363 -0.022472 }
+        <Binormal> { 0.021517 -0.959156 -0.002520 }
+      }
+      <Normal> { 0.303323 0.009308 -0.952818 }
+    }
+    <Vertex> 2869 {
+      -0.797497332096 0.209162637591 1.3418943882
+      <UV>  {
+        0.179570 0.507963
+        <Tangent> { -0.999000 0.013663 -0.042567 }
+        <Binormal> { -0.004586 -0.362609 -0.008755 }
+      }
+      <Normal> { 0.946501 -0.004181 -0.322642 }
+    }
+    <Vertex> 2870 {
+      -0.869350254536 0.299050122499 1.22716104984
+      <UV>  {
+        0.155848 0.471827
+        <Tangent> { -0.916978 0.398118 0.025541 }
+        <Binormal> { -0.311697 -0.709169 -0.136481 }
+      }
+      <Normal> { 0.602405 -0.112705 -0.790155 }
+    }
+    <Vertex> 2871 {
+      -0.797626197338 0.899374544621 1.47970366478
+      <UV>  {
+        0.182209 0.215068
+        <Tangent> { -0.999828 0.006002 -0.017575 }
+        <Binormal> { 0.001073 0.187065 0.002864 }
+      }
+      <Normal> { -0.985473 0.003052 0.169774 }
+    }
+    <Vertex> 2872 {
+      -0.828235685825 0.878986299038 1.42604792118
+      <UV>  {
+        0.156047 0.242505
+        <Tangent> { -0.992759 -0.099287 0.067620 }
+        <Binormal> { 0.014734 -0.058895 0.129841 }
+      }
+      <Normal> { -0.973571 -0.228156 0.006989 }
+    }
+    <Vertex> 2873 {
+      -0.828235685825 0.87777107954 1.47126543522
+      <UV>  {
+        0.158348 0.216991
+        <Tangent> { -0.987087 -0.111994 0.114532 }
+        <Binormal> { 0.007101 0.014359 0.075242 }
+      }
+      <Normal> { -0.974059 -0.186743 0.127567 }
+    }
+    <Vertex> 2874 {
+      -0.797626197338 0.899374544621 1.47970366478
+      <UV>  {
+        0.182209 0.215068
+        <Tangent> { -0.999828 0.006002 -0.017575 }
+        <Binormal> { 0.001073 0.187065 0.002864 }
+      }
+      <Normal> { -0.985473 0.003052 0.169774 }
+    }
+    <Vertex> 2875 {
+      -0.797497272491 0.894706070423 1.4468537569
+      <UV>  {
+        0.181839 0.239784
+        <Tangent> { -0.999837 -0.009434 -0.015416 }
+        <Binormal> { 0.003543 -0.360844 -0.008989 }
+      }
+      <Normal> { -0.926939 0.000244 -0.375195 }
+    }
+    <Vertex> 2876 {
+      -0.828235685825 0.878560185432 1.39103746414
+      <UV>  {
+        0.158979 0.262863
+        <Tangent> { -0.993636 -0.039162 0.105611 }
+        <Binormal> { 0.051094 -0.600988 0.257865 }
+      }
+      <Normal> { -0.803308 -0.291177 -0.519456 }
+    }
+    <Vertex> 2877 {
+      -0.828235685825 0.878560185432 1.39103746414
+      <UV>  {
+        0.158979 0.262863
+        <Tangent> { -0.993636 -0.039162 0.105611 }
+        <Binormal> { 0.051094 -0.600988 0.257865 }
+      }
+      <Normal> { -0.803308 -0.291177 -0.519456 }
+    }
+    <Vertex> 2878 {
+      -0.828235685825 0.878986299038 1.42604792118
+      <UV>  {
+        0.156047 0.242505
+        <Tangent> { -0.992759 -0.099287 0.067620 }
+        <Binormal> { 0.014734 -0.058895 0.129841 }
+      }
+      <Normal> { -0.973571 -0.228156 0.006989 }
+    }
+    <Vertex> 2879 {
+      -0.797626197338 0.899374544621 1.47970366478
+      <UV>  {
+        0.182209 0.215068
+        <Tangent> { -0.999828 0.006002 -0.017575 }
+        <Binormal> { 0.001073 0.187065 0.002864 }
+      }
+      <Normal> { -0.985473 0.003052 0.169774 }
+    }
+    <Vertex> 2880 {
+      -0.797497272491 0.894706070423 1.4468537569
+      <UV>  {
+        0.181839 0.239784
+        <Tangent> { -0.999837 -0.009434 -0.015416 }
+        <Binormal> { 0.003543 -0.360844 -0.008989 }
+      }
+      <Normal> { -0.926939 0.000244 -0.375195 }
+    }
+    <Vertex> 2881 {
+      -0.797497272491 0.825507104397 1.36095297337
+      <UV>  {
+        0.181085 0.287149
+        <Tangent> { -0.999573 -0.023890 -0.016827 }
+        <Binormal> { 0.020286 -0.838989 -0.013902 }
+      }
+      <Normal> { -0.529557 0.001251 -0.848262 }
+    }
+    <Vertex> 2882 {
+      -0.828235685825 0.878560185432 1.39103746414
+      <UV>  {
+        0.158979 0.262863
+        <Tangent> { -0.993636 -0.039162 0.105611 }
+        <Binormal> { 0.051094 -0.600988 0.257865 }
+      }
+      <Normal> { -0.803308 -0.291177 -0.519456 }
+    }
+    <Vertex> 2883 {
+      -0.797497272491 0.825507104397 1.36095297337
+      <UV>  {
+        0.181085 0.287149
+        <Tangent> { -0.999573 -0.023890 -0.016827 }
+        <Binormal> { 0.020286 -0.838989 -0.013902 }
+      }
+      <Normal> { -0.529557 0.001251 -0.848262 }
+    }
+    <Vertex> 2884 {
+      -0.828235685825 0.840007185936 1.38916003704
+      <UV>  {
+        0.156179 0.284592
+        <Tangent> { -0.938823 0.019174 0.343867 }
+        <Binormal> { 0.158681 -0.862016 0.481295 }
+      }
+      <Normal> { -0.311228 -0.506302 -0.804193 }
+    }
+    <Vertex> 2885 {
+      -0.828235685825 0.878560185432 1.39103746414
+      <UV>  {
+        0.158979 0.262863
+        <Tangent> { -0.993636 -0.039162 0.105611 }
+        <Binormal> { 0.051094 -0.600988 0.257865 }
+      }
+      <Normal> { -0.803308 -0.291177 -0.519456 }
+    }
+    <Vertex> 2886 {
+      -0.914848566055 0.890661418438 1.44520449638
+      <UV>  {
+        0.125640 0.239989
+        <Tangent> { -0.959905 0.036241 0.277974 }
+        <Binormal> { 0.137565 -0.533409 0.544586 }
+      }
+      <Normal> { -0.775048 -0.538072 -0.331248 }
+    }
+    <Vertex> 2887 {
+      -0.828235685825 0.87777107954 1.47126543522
+      <UV>  {
+        0.158348 0.216991
+        <Tangent> { -0.987087 -0.111994 0.114532 }
+        <Binormal> { 0.007101 0.014359 0.075242 }
+      }
+      <Normal> { -0.974059 -0.186743 0.127567 }
+    }
+    <Vertex> 2888 {
+      -0.828235685825 0.878986299038 1.42604792118
+      <UV>  {
+        0.156047 0.242505
+        <Tangent> { -0.992759 -0.099287 0.067620 }
+        <Binormal> { 0.014734 -0.058895 0.129841 }
+      }
+      <Normal> { -0.973571 -0.228156 0.006989 }
+    }
+    <Vertex> 2889 {
+      -0.914848566055 0.890661418438 1.44520449638
+      <UV>  {
+        0.125640 0.239989
+        <Tangent> { -0.959905 0.036241 0.277974 }
+        <Binormal> { 0.137565 -0.533409 0.544586 }
+      }
+      <Normal> { -0.775048 -0.538072 -0.331248 }
+    }
+    <Vertex> 2890 {
+      -0.828235685825 0.878986299038 1.42604792118
+      <UV>  {
+        0.156047 0.242505
+        <Tangent> { -0.992759 -0.099287 0.067620 }
+        <Binormal> { 0.014734 -0.058895 0.129841 }
+      }
+      <Normal> { -0.973571 -0.228156 0.006989 }
+    }
+    <Vertex> 2891 {
+      -0.828235685825 0.878560185432 1.39103746414
+      <UV>  {
+        0.158979 0.262863
+        <Tangent> { -0.993636 -0.039162 0.105611 }
+        <Binormal> { 0.051094 -0.600988 0.257865 }
+      }
+      <Normal> { -0.803308 -0.291177 -0.519456 }
+    }
+    <Vertex> 2892 {
+      -0.828235685825 0.878560185432 1.39103746414
+      <UV>  {
+        0.158979 0.262863
+        <Tangent> { -0.993636 -0.039162 0.105611 }
+        <Binormal> { 0.051094 -0.600988 0.257865 }
+      }
+      <Normal> { -0.803308 -0.291177 -0.519456 }
+    }
+    <Vertex> 2893 {
+      -0.828235685825 0.840007185936 1.38916003704
+      <UV>  {
+        0.156179 0.284592
+        <Tangent> { -0.938823 0.019174 0.343867 }
+        <Binormal> { 0.158681 -0.862016 0.481295 }
+      }
+      <Normal> { -0.311228 -0.506302 -0.804193 }
+    }
+    <Vertex> 2894 {
+      -0.914848566055 0.890661418438 1.44520449638
+      <UV>  {
+        0.125640 0.239989
+        <Tangent> { -0.959905 0.036241 0.277974 }
+        <Binormal> { 0.137565 -0.533409 0.544586 }
+      }
+      <Normal> { -0.775048 -0.538072 -0.331248 }
+    }
+    <Vertex> 2895 {
+      -0.828235685825 0.840007185936 1.38916003704
+      <UV>  {
+        0.156179 0.284592
+        <Tangent> { -0.938823 0.019174 0.343867 }
+        <Binormal> { 0.158681 -0.862016 0.481295 }
+      }
+      <Normal> { -0.311228 -0.506302 -0.804193 }
+    }
+    <Vertex> 2896 {
+      -0.797497272491 0.825507104397 1.36095297337
+      <UV>  {
+        0.181085 0.287149
+        <Tangent> { -0.999573 -0.023890 -0.016827 }
+        <Binormal> { 0.020286 -0.838989 -0.013902 }
+      }
+      <Normal> { -0.529557 0.001251 -0.848262 }
+    }
+    <Vertex> 2897 {
+      -0.797497332096 0.683510422707 1.24961578846
+      <UV>  {
+        0.180167 0.348760
+        <Tangent> { -0.999780 -0.018679 -0.009582 }
+        <Binormal> { 0.016597 -0.883613 -0.009160 }
+      }
+      <Normal> { -0.459365 0.000580 -0.888211 }
+    }
+    <Vertex> 2898 {
+      -0.797497332096 0.683510422707 1.24961578846
+      <UV>  {
+        0.180167 0.348760
+        <Tangent> { -0.999780 -0.018679 -0.009582 }
+        <Binormal> { 0.016597 -0.883613 -0.009160 }
+      }
+      <Normal> { -0.459365 0.000580 -0.888211 }
+    }
+    <Vertex> 2899 {
+      -0.889337420464 0.695588648319 1.23194479942
+      <UV>  {
+        0.146858 0.346484
+        <Tangent> { -0.958185 0.166232 -0.232912 }
+        <Binormal> { -0.029540 -0.652425 -0.344119 }
+      }
+      <Normal> { -0.437178 0.434980 -0.787164 }
+    }
+    <Vertex> 2900 {
+      -0.828235685825 0.840007185936 1.38916003704
+      <UV>  {
+        0.156179 0.284592
+        <Tangent> { -0.938823 0.019174 0.343867 }
+        <Binormal> { 0.158681 -0.862016 0.481295 }
+      }
+      <Normal> { -0.311228 -0.506302 -0.804193 }
+    }
+    <Vertex> 2901 {
+      -0.706315517426 0.253009915352 1.99155879021
+      <UV>  {
+        0.207719 0.647116
+        <Tangent> { -0.876109 -0.449425 -0.174499 }
+        <Binormal> { 0.067007 -0.133000 0.006122 }
+      }
+      <Normal> { 0.892270 0.450728 0.025910 }
+    }
+    <Vertex> 2902 {
+      -0.566382348537 0.309294164181 1.53500580788
+      <UV>  {
+        0.247432 0.557414
+        <Tangent> { -0.841316 -0.473004 -0.261640 }
+        <Binormal> { 0.120094 -0.166365 -0.085406 }
+      }
+      <Normal> { 0.823389 0.564440 0.058321 }
+    }
+    <Vertex> 2903 {
+      -0.497124165297 0.393995076418 1.79649567604
+      <UV>  {
+        0.275002 0.596382
+        <Tangent> { -0.781887 -0.597508 -0.177867 }
+        <Binormal> { 0.104501 -0.062730 -0.248651 }
+      }
+      <Normal> { 0.613880 0.787133 0.059420 }
+    }
+    <Vertex> 2904 {
+      -0.497124165297 0.397479206324 1.95565629005
+      <UV>  {
+        0.275002 0.638383
+        <Tangent> { -0.825354 -0.564505 0.011190 }
+        <Binormal> { -0.008098 0.002787 -0.456671 }
+      }
+      <Normal> { 0.476455 0.879177 -0.003082 }
+    }
+    <Vertex> 2905 {
+      -0.706315517426 0.253009915352 1.99155879021
+      <UV>  {
+        0.207719 0.647116
+        <Tangent> { -0.876109 -0.449425 -0.174499 }
+        <Binormal> { 0.067007 -0.133000 0.006122 }
+      }
+      <Normal> { 0.892270 0.450728 0.025910 }
+    }
+    <Vertex> 2906 {
+      -0.497124165297 0.393995076418 1.79649567604
+      <UV>  {
+        0.275002 0.596382
+        <Tangent> { -0.781887 -0.597508 -0.177867 }
+        <Binormal> { 0.104501 -0.062730 -0.248651 }
+      }
+      <Normal> { 0.613880 0.787133 0.059420 }
+    }
+    <Vertex> 2907 {
+      -0.497124165297 0.397479206324 1.95565629005
+      <UV>  {
+        0.275002 0.638383
+        <Tangent> { -0.825354 -0.564505 0.011190 }
+        <Binormal> { -0.008098 0.002787 -0.456671 }
+      }
+      <Normal> { 0.476455 0.879177 -0.003082 }
+    }
+    <Vertex> 2908 {
+      -0.497124165297 0.378688395023 2.13360905647
+      <UV>  {
+        0.271708 0.685421
+        <Tangent> { -0.866057 -0.499729 0.014728 }
+        <Binormal> { -0.007880 0.002019 -0.394891 }
+      }
+      <Normal> { 0.598315 0.801202 -0.007843 }
+    }
+    <Vertex> 2909 {
+      -0.706315517426 0.253009915352 1.99155879021
+      <UV>  {
+        0.207719 0.647116
+        <Tangent> { -0.876109 -0.449425 -0.174499 }
+        <Binormal> { 0.067007 -0.133000 0.006122 }
+      }
+      <Normal> { 0.892270 0.450728 0.025910 }
+    }
+    <Vertex> 2910 {
+      -0.706315517426 0.253009915352 1.99155879021
+      <UV>  {
+        0.207719 0.647116
+        <Tangent> { -0.876109 -0.449425 -0.174499 }
+        <Binormal> { 0.067007 -0.133000 0.006122 }
+      }
+      <Normal> { 0.892270 0.450728 0.025910 }
+    }
+    <Vertex> 2911 {
+      -0.797497332096 0.230368763208 2.06025457382
+      <UV>  {
+        0.183212 0.665728
+        <Tangent> { -0.999512 -0.001981 -0.031185 }
+        <Binormal> { -0.000024 -0.002163 0.000913 }
+      }
+      <Normal> { 0.999573 0.001068 0.029023 }
+    }
+    <Vertex> 2912 {
+      -0.797497332096 0.222316816449 1.73560297489
+      <UV>  {
+        0.181940 0.610501
+        <Tangent> { -0.999402 -0.004303 -0.034298 }
+        <Binormal> { -0.000245 0.042450 0.001819 }
+      }
+      <Normal> { 0.997040 0.002472 0.076693 }
+    }
+    <Vertex> 2913 {
+      -0.706315517426 0.253009915352 1.99155879021
+      <UV>  {
+        0.207719 0.647116
+        <Tangent> { -0.876109 -0.449425 -0.174499 }
+        <Binormal> { 0.067007 -0.133000 0.006122 }
+      }
+      <Normal> { 0.892270 0.450728 0.025910 }
+    }
+    <Vertex> 2914 {
+      -0.797497332096 0.222316816449 1.73560297489
+      <UV>  {
+        0.181940 0.610501
+        <Tangent> { -0.999402 -0.004303 -0.034298 }
+        <Binormal> { -0.000245 0.042450 0.001819 }
+      }
+      <Normal> { 0.997040 0.002472 0.076693 }
+    }
+    <Vertex> 2915 {
+      -0.566382348537 0.309294164181 1.53500580788
+      <UV>  {
+        0.247432 0.557414
+        <Tangent> { -0.841316 -0.473004 -0.261640 }
+        <Binormal> { 0.120094 -0.166365 -0.085406 }
+      }
+      <Normal> { 0.823389 0.564440 0.058321 }
+    }
+    <Vertex> 2916 {
+      -0.706315517426 0.253009915352 1.99155879021
+      <UV>  {
+        0.207719 0.647116
+        <Tangent> { -0.876109 -0.449425 -0.174499 }
+        <Binormal> { 0.067007 -0.133000 0.006122 }
+      }
+      <Normal> { 0.892270 0.450728 0.025910 }
+    }
+    <Vertex> 2917 {
+      -0.497124165297 0.378688395023 2.13360905647
+      <UV>  {
+        0.271708 0.685421
+        <Tangent> { -0.866057 -0.499729 0.014728 }
+        <Binormal> { -0.007880 0.002019 -0.394891 }
+      }
+      <Normal> { 0.598315 0.801202 -0.007843 }
+    }
+    <Vertex> 2918 {
+      -0.706315517426 0.27102714777 2.22163724899
+      <UV>  {
+        0.210378 0.707474
+        <Tangent> { -0.900570 -0.434090 0.023211 }
+        <Binormal> { -0.021803 0.045289 0.001048 }
+      }
+      <Normal> { 0.900906 0.433088 0.027070 }
+    }
+    <Vertex> 2919 {
+      -0.797497332096 0.230368763208 2.06025457382
+      <UV>  {
+        0.183212 0.665728
+        <Tangent> { -0.999512 -0.001981 -0.031185 }
+        <Binormal> { -0.000024 -0.002163 0.000913 }
+      }
+      <Normal> { 0.999573 0.001068 0.029023 }
+    }
+    <Vertex> 2920 {
+      -0.706315517426 0.253009915352 1.99155879021
+      <UV>  {
+        0.207719 0.647116
+        <Tangent> { -0.876109 -0.449425 -0.174499 }
+        <Binormal> { 0.067007 -0.133000 0.006122 }
+      }
+      <Normal> { 0.892270 0.450728 0.025910 }
+    }
+    <Vertex> 2921 {
+      -0.706315517426 0.27102714777 2.22163724899
+      <UV>  {
+        0.210378 0.707474
+        <Tangent> { -0.900570 -0.434090 0.023211 }
+        <Binormal> { -0.021803 0.045289 0.001048 }
+      }
+      <Normal> { 0.900906 0.433088 0.027070 }
+    }
+    <Vertex> 2922 {
+      -0.706315517426 0.27102714777 2.22163724899
+      <UV>  {
+        0.210378 0.707474
+        <Tangent> { -0.900570 -0.434090 0.023211 }
+        <Binormal> { -0.021803 0.045289 0.001048 }
+      }
+      <Normal> { 0.900906 0.433088 0.027070 }
+    }
+    <Vertex> 2923 {
+      -0.797497332096 0.223355844617 2.43957328796
+      <UV>  {
+        0.185620 0.761353
+        <Tangent> { -0.999524 -0.013082 -0.027949 }
+        <Binormal> { -0.001056 0.074418 0.002946 }
+      }
+      <Normal> { 0.994690 0.010071 0.102268 }
+    }
+    <Vertex> 2924 {
+      -0.797497332096 0.230368763208 2.06025457382
+      <UV>  {
+        0.183212 0.665728
+        <Tangent> { -0.999512 -0.001981 -0.031185 }
+        <Binormal> { -0.000024 -0.002163 0.000913 }
+      }
+      <Normal> { 0.999573 0.001068 0.029023 }
+    }
+    <Vertex> 2925 {
+      -0.706315517426 0.27102714777 2.22163724899
+      <UV>  {
+        0.210378 0.707474
+        <Tangent> { -0.900570 -0.434090 0.023211 }
+        <Binormal> { -0.021803 0.045289 0.001048 }
+      }
+      <Normal> { 0.900906 0.433088 0.027070 }
+    }
+    <Vertex> 2926 {
+      -0.545675098896 0.359876424074 2.54597640038
+      <UV>  {
+        0.255213 0.792603
+        <Tangent> { -0.910658 -0.410348 0.048126 }
+        <Binormal> { -0.028732 0.073918 0.086588 }
+      }
+      <Normal> { 0.943419 0.330027 0.031312 }
+    }
+    <Vertex> 2927 {
+      -0.797497332096 0.223355844617 2.43957328796
+      <UV>  {
+        0.185620 0.761353
+        <Tangent> { -0.999524 -0.013082 -0.027949 }
+        <Binormal> { -0.001056 0.074418 0.002946 }
+      }
+      <Normal> { 0.994690 0.010071 0.102268 }
+    }
+    <Vertex> 2928 {
+      -0.798021733761 0.271612197161 2.58629441261
+      <UV>  {
+        0.186736 0.799414
+        <Tangent> { -0.999345 -0.027082 -0.024002 }
+        <Binormal> { -0.008949 0.323493 0.007590 }
+      }
+      <Normal> { 0.937956 0.017823 0.346233 }
+    }
+    <Vertex> 2929 {
+      -0.797497332096 0.223355844617 2.43957328796
+      <UV>  {
+        0.185620 0.761353
+        <Tangent> { -0.999524 -0.013082 -0.027949 }
+        <Binormal> { -0.001056 0.074418 0.002946 }
+      }
+      <Normal> { 0.994690 0.010071 0.102268 }
+    }
+    <Vertex> 2930 {
+      -0.545675098896 0.359876424074 2.54597640038
+      <UV>  {
+        0.255213 0.792603
+        <Tangent> { -0.910658 -0.410348 0.048126 }
+        <Binormal> { -0.028732 0.073918 0.086588 }
+      }
+      <Normal> { 0.943419 0.330027 0.031312 }
+    }
+    <Vertex> 2931 {
+      -0.798021733761 0.271612197161 2.58629441261
+      <UV>  {
+        0.186736 0.799414
+        <Tangent> { -0.999345 -0.027082 -0.024002 }
+        <Binormal> { -0.008949 0.323493 0.007590 }
+      }
+      <Normal> { 0.937956 0.017823 0.346233 }
+    }
+    <Vertex> 2932 {
+      -0.545675098896 0.359876424074 2.54597640038
+      <UV>  {
+        0.255213 0.792603
+        <Tangent> { -0.910658 -0.410348 0.048126 }
+        <Binormal> { -0.028732 0.073918 0.086588 }
+      }
+      <Normal> { 0.943419 0.330027 0.031312 }
+    }
+    <Vertex> 2933 {
+      -0.61965739727 0.351054638624 2.6184015274
+      <UV>  {
+        0.234781 0.810773
+        <Tangent> { -0.944455 -0.324937 0.049209 }
+        <Binormal> { -0.228285 0.646820 -0.110325 }
+      }
+      <Normal> { 0.675253 0.349132 0.649678 }
+    }
+    <Vertex> 2934 {
+      -0.797497332096 0.339249521494 2.698969841
+      <UV>  {
+        0.187871 0.831218
+        <Tangent> { -0.999189 -0.035213 -0.019509 }
+        <Binormal> { -0.023238 0.653460 0.010691 }
+      }
+      <Normal> { 0.743522 0.015503 0.668508 }
+    }
+    <Vertex> 2935 {
+      -0.798021733761 0.271612197161 2.58629441261
+      <UV>  {
+        0.186736 0.799414
+        <Tangent> { -0.999345 -0.027082 -0.024002 }
+        <Binormal> { -0.008949 0.323493 0.007590 }
+      }
+      <Normal> { 0.937956 0.017823 0.346233 }
+    }
+    <Vertex> 2936 {
+      -0.61965739727 0.351054638624 2.6184015274
+      <UV>  {
+        0.234781 0.810773
+        <Tangent> { -0.944455 -0.324937 0.049209 }
+        <Binormal> { -0.228285 0.646820 -0.110325 }
+      }
+      <Normal> { 0.675253 0.349132 0.649678 }
+    }
+    <Vertex> 2937 {
+      -0.497044444084 0.381648719311 2.42015099525
+      <UV>  {
+        0.270034 0.760440
+        <Tangent> { -0.889735 -0.455974 0.021436 }
+        <Binormal> { 0.062334 -0.135559 -0.296261 }
+      }
+      <Normal> { 0.701346 0.692404 -0.169256 }
+    }
+    <Vertex> 2938 {
+      -0.545675098896 0.359876424074 2.54597640038
+      <UV>  {
+        0.255213 0.792603
+        <Tangent> { -0.910658 -0.410348 0.048126 }
+        <Binormal> { -0.028732 0.073918 0.086588 }
+      }
+      <Normal> { 0.943419 0.330027 0.031312 }
+    }
+    <Vertex> 2939 {
+      -0.706315517426 0.27102714777 2.22163724899
+      <UV>  {
+        0.210378 0.707474
+        <Tangent> { -0.900570 -0.434090 0.023211 }
+        <Binormal> { -0.021803 0.045289 0.001048 }
+      }
+      <Normal> { 0.900906 0.433088 0.027070 }
+    }
+    <Vertex> 2940 {
+      -0.497124165297 0.378688395023 2.13360905647
+      <UV>  {
+        0.271708 0.685421
+        <Tangent> { -0.866057 -0.499729 0.014728 }
+        <Binormal> { -0.007880 0.002019 -0.394891 }
+      }
+      <Normal> { 0.598315 0.801202 -0.007843 }
+    }
+    <Vertex> 2941 {
+      -0.497044444084 0.381648719311 2.42015099525
+      <UV>  {
+        0.270034 0.760440
+        <Tangent> { -0.889735 -0.455974 0.021436 }
+        <Binormal> { 0.062334 -0.135559 -0.296261 }
+      }
+      <Normal> { 0.701346 0.692404 -0.169256 }
+    }
+    <Vertex> 2942 {
+      -0.706315517426 0.27102714777 2.22163724899
+      <UV>  {
+        0.210378 0.707474
+        <Tangent> { -0.900570 -0.434090 0.023211 }
+        <Binormal> { -0.021803 0.045289 0.001048 }
+      }
+      <Normal> { 0.900906 0.433088 0.027070 }
+    }
+    <Vertex> 2943 {
+      -0.706315517426 0.695588648319 1.23194229603
+      <UV>  {
+        0.213284 0.347517
+        <Tangent> { -0.949974 -0.193347 0.245289 }
+        <Binormal> { 0.259454 -0.850286 0.334601 }
+      }
+      <Normal> { -0.440809 -0.441939 -0.781243 }
+    }
+    <Vertex> 2944 {
+      -0.736507177353 0.30606546998 1.22715938091
+      <UV>  {
+        0.198320 0.468956
+        <Tangent> { -0.910409 -0.408474 -0.065601 }
+        <Binormal> { 0.342633 -0.795533 0.198440 }
+      }
+      <Normal> { 0.550768 0.029145 -0.834132 }
+    }
+    <Vertex> 2945 {
+      -0.797497332096 0.23618850112 1.24630725384
+      <UV>  {
+        0.178152 0.483614
+        <Tangent> { -0.999497 -0.022363 -0.022472 }
+        <Binormal> { 0.021517 -0.959156 -0.002520 }
+      }
+      <Normal> { 0.303323 0.009308 -0.952818 }
+    }
+    <Vertex> 2946 {
+      -0.797497332096 0.23618850112 1.24630725384
+      <UV>  {
+        0.178152 0.483614
+        <Tangent> { -0.999497 -0.022363 -0.022472 }
+        <Binormal> { 0.021517 -0.959156 -0.002520 }
+      }
+      <Normal> { 0.303323 0.009308 -0.952818 }
+    }
+    <Vertex> 2947 {
+      -0.797497332096 0.683510422707 1.24961578846
+      <UV>  {
+        0.180167 0.348760
+        <Tangent> { -0.999780 -0.018679 -0.009582 }
+        <Binormal> { 0.016597 -0.883613 -0.009160 }
+      }
+      <Normal> { -0.459365 0.000580 -0.888211 }
+    }
+    <Vertex> 2948 {
+      -0.706315517426 0.695588648319 1.23194229603
+      <UV>  {
+        0.213284 0.347517
+        <Tangent> { -0.949974 -0.193347 0.245289 }
+        <Binormal> { 0.259454 -0.850286 0.334601 }
+      }
+      <Normal> { -0.440809 -0.441939 -0.781243 }
+    }
+    <Vertex> 2949 {
+      -0.736507177353 0.30606546998 1.22715938091
+      <UV>  {
+        0.198320 0.468956
+        <Tangent> { -0.910409 -0.408474 -0.065601 }
+        <Binormal> { 0.342633 -0.795533 0.198440 }
+      }
+      <Normal> { 0.550768 0.029145 -0.834132 }
+    }
+    <Vertex> 2950 {
+      -0.698662221432 0.263333946466 1.28946197033
+      <UV>  {
+        0.207479 0.490495
+        <Tangent> { -0.962465 -0.262253 -0.069895 }
+        <Binormal> { 0.124932 -0.501588 0.161669 }
+      }
+      <Normal> { 0.886502 0.073580 -0.456771 }
+    }
+    <Vertex> 2951 {
+      -0.797497332096 0.209162637591 1.3418943882
+      <UV>  {
+        0.179570 0.507963
+        <Tangent> { -0.999000 0.013663 -0.042567 }
+        <Binormal> { -0.004586 -0.362609 -0.008755 }
+      }
+      <Normal> { 0.946501 -0.004181 -0.322642 }
+    }
+    <Vertex> 2952 {
+      -0.797559142113 0.196721717715 1.54495799541
+      <UV>  {
+        0.180246 0.535940
+        <Tangent> { -0.999228 0.011414 -0.037598 }
+        <Binormal> { -0.000912 -0.091853 -0.003651 }
+      }
+      <Normal> { 0.998474 -0.007752 -0.054353 }
+    }
+    <Vertex> 2953 {
+      -0.698662221432 0.263333946466 1.28946197033
+      <UV>  {
+        0.207479 0.490495
+        <Tangent> { -0.962465 -0.262253 -0.069895 }
+        <Binormal> { 0.124932 -0.501588 0.161669 }
+      }
+      <Normal> { 0.886502 0.073580 -0.456771 }
+    }
+    <Vertex> 2954 {
+      -0.638106226921 0.245635583997 1.39632916451
+      <UV>  {
+        0.223618 0.520283
+        <Tangent> { -0.881442 -0.312867 0.353799 }
+        <Binormal> { -0.136451 0.334307 -0.044319 }
+      }
+      <Normal> { 0.925443 0.378765 0.007813 }
+    }
+    <Vertex> 2955 {
+      -0.638106226921 0.245635583997 1.39632916451
+      <UV>  {
+        0.223618 0.520283
+        <Tangent> { -0.881442 -0.312867 0.353799 }
+        <Binormal> { -0.136451 0.334307 -0.044319 }
+      }
+      <Normal> { 0.925443 0.378765 0.007813 }
+    }
+    <Vertex> 2956 {
+      -0.566382348537 0.309294164181 1.53500580788
+      <UV>  {
+        0.247432 0.557414
+        <Tangent> { -0.841316 -0.473004 -0.261640 }
+        <Binormal> { 0.120094 -0.166365 -0.085406 }
+      }
+      <Normal> { 0.823389 0.564440 0.058321 }
+    }
+    <Vertex> 2957 {
+      -0.797497332096 0.222316816449 1.73560297489
+      <UV>  {
+        0.181940 0.610501
+        <Tangent> { -0.999402 -0.004303 -0.034298 }
+        <Binormal> { -0.000245 0.042450 0.001819 }
+      }
+      <Normal> { 0.997040 0.002472 0.076693 }
+    }
+    <Vertex> 2958 {
+      -0.638106226921 0.245635583997 1.39632916451
+      <UV>  {
+        0.223618 0.520283
+        <Tangent> { -0.881442 -0.312867 0.353799 }
+        <Binormal> { -0.136451 0.334307 -0.044319 }
+      }
+      <Normal> { 0.925443 0.378765 0.007813 }
+    }
+    <Vertex> 2959 {
+      -0.797497332096 0.222316816449 1.73560297489
+      <UV>  {
+        0.181940 0.610501
+        <Tangent> { -0.999402 -0.004303 -0.034298 }
+        <Binormal> { -0.000245 0.042450 0.001819 }
+      }
+      <Normal> { 0.997040 0.002472 0.076693 }
+    }
+    <Vertex> 2960 {
+      -0.797559142113 0.196721717715 1.54495799541
+      <UV>  {
+        0.180246 0.535940
+        <Tangent> { -0.999228 0.011414 -0.037598 }
+        <Binormal> { -0.000912 -0.091853 -0.003651 }
+      }
+      <Normal> { 0.998474 -0.007752 -0.054353 }
+    }
+    <Vertex> 2961 {
+      -0.698662221432 0.263333946466 1.28946197033
+      <UV>  {
+        0.207479 0.490495
+        <Tangent> { -0.962465 -0.262253 -0.069895 }
+        <Binormal> { 0.124932 -0.501588 0.161669 }
+      }
+      <Normal> { 0.886502 0.073580 -0.456771 }
+    }
+    <Vertex> 2962 {
+      -0.797559142113 0.196721717715 1.54495799541
+      <UV>  {
+        0.180246 0.535940
+        <Tangent> { -0.999228 0.011414 -0.037598 }
+        <Binormal> { -0.000912 -0.091853 -0.003651 }
+      }
+      <Normal> { 0.998474 -0.007752 -0.054353 }
+    }
+    <Vertex> 2963 {
+      -0.797497332096 0.209162637591 1.3418943882
+      <UV>  {
+        0.179570 0.507963
+        <Tangent> { -0.999000 0.013663 -0.042567 }
+        <Binormal> { -0.004586 -0.362609 -0.008755 }
+      }
+      <Normal> { 0.946501 -0.004181 -0.322642 }
+    }
+    <Vertex> 2964 {
+      -0.736507177353 0.30606546998 1.22715938091
+      <UV>  {
+        0.198320 0.468956
+        <Tangent> { -0.910409 -0.408474 -0.065601 }
+        <Binormal> { 0.342633 -0.795533 0.198440 }
+      }
+      <Normal> { 0.550768 0.029145 -0.834132 }
+    }
+    <Vertex> 2965 {
+      -0.797497332096 0.209162637591 1.3418943882
+      <UV>  {
+        0.179570 0.507963
+        <Tangent> { -0.999000 0.013663 -0.042567 }
+        <Binormal> { -0.004586 -0.362609 -0.008755 }
+      }
+      <Normal> { 0.946501 -0.004181 -0.322642 }
+    }
+    <Vertex> 2966 {
+      -0.797497332096 0.23618850112 1.24630725384
+      <UV>  {
+        0.178152 0.483614
+        <Tangent> { -0.999497 -0.022363 -0.022472 }
+        <Binormal> { 0.021517 -0.959156 -0.002520 }
+      }
+      <Normal> { 0.303323 0.009308 -0.952818 }
+    }
+    <Vertex> 2967 {
+      -0.76732057333 0.87777107954 1.47126424313
+      <UV>  {
+        0.205824 0.217722
+        <Tangent> { -0.982824 0.117329 -0.142444 }
+        <Binormal> { 0.041773 0.263696 -0.071022 }
+      }
+      <Normal> { -0.973785 0.188513 0.127171 }
+    }
+    <Vertex> 2968 {
+      -0.76732057333 0.878986299038 1.42604672909
+      <UV>  {
+        0.207391 0.243320
+        <Tangent> { -0.990424 0.100782 -0.094363 }
+        <Binormal> { 0.022441 0.098742 -0.130082 }
+      }
+      <Normal> { -0.973052 0.230354 0.006989 }
+    }
+    <Vertex> 2969 {
+      -0.797626197338 0.899374544621 1.47970366478
+      <UV>  {
+        0.182209 0.215068
+        <Tangent> { -0.999828 0.006002 -0.017575 }
+        <Binormal> { 0.001073 0.187065 0.002864 }
+      }
+      <Normal> { -0.985473 0.003052 0.169774 }
+    }
+    <Vertex> 2970 {
+      -0.76732057333 0.878560185432 1.39103627205
+      <UV>  {
+        0.203817 0.263549
+        <Tangent> { -0.991622 0.023452 -0.127027 }
+        <Binormal> { 0.025273 -0.411511 -0.273262 }
+      }
+      <Normal> { -0.803125 0.294565 -0.517869 }
+    }
+    <Vertex> 2971 {
+      -0.797497272491 0.894706070423 1.4468537569
+      <UV>  {
+        0.181839 0.239784
+        <Tangent> { -0.999837 -0.009434 -0.015416 }
+        <Binormal> { 0.003543 -0.360844 -0.008989 }
+      }
+      <Normal> { -0.926939 0.000244 -0.375195 }
+    }
+    <Vertex> 2972 {
+      -0.797626197338 0.899374544621 1.47970366478
+      <UV>  {
+        0.182209 0.215068
+        <Tangent> { -0.999828 0.006002 -0.017575 }
+        <Binormal> { 0.001073 0.187065 0.002864 }
+      }
+      <Normal> { -0.985473 0.003052 0.169774 }
+    }
+    <Vertex> 2973 {
+      -0.797626197338 0.899374544621 1.47970366478
+      <UV>  {
+        0.182209 0.215068
+        <Tangent> { -0.999828 0.006002 -0.017575 }
+        <Binormal> { 0.001073 0.187065 0.002864 }
+      }
+      <Normal> { -0.985473 0.003052 0.169774 }
+    }
+    <Vertex> 2974 {
+      -0.76732057333 0.878986299038 1.42604672909
+      <UV>  {
+        0.207391 0.243320
+        <Tangent> { -0.990424 0.100782 -0.094363 }
+        <Binormal> { 0.022441 0.098742 -0.130082 }
+      }
+      <Normal> { -0.973052 0.230354 0.006989 }
+    }
+    <Vertex> 2975 {
+      -0.76732057333 0.878560185432 1.39103627205
+      <UV>  {
+        0.203817 0.263549
+        <Tangent> { -0.991622 0.023452 -0.127027 }
+        <Binormal> { 0.025273 -0.411511 -0.273262 }
+      }
+      <Normal> { -0.803125 0.294565 -0.517869 }
+    }
+    <Vertex> 2976 {
+      -0.76732057333 0.878560185432 1.39103627205
+      <UV>  {
+        0.203817 0.263549
+        <Tangent> { -0.991622 0.023452 -0.127027 }
+        <Binormal> { 0.025273 -0.411511 -0.273262 }
+      }
+      <Normal> { -0.803125 0.294565 -0.517869 }
+    }
+    <Vertex> 2977 {
+      -0.797497272491 0.825507104397 1.36095297337
+      <UV>  {
+        0.181085 0.287149
+        <Tangent> { -0.999573 -0.023890 -0.016827 }
+        <Binormal> { 0.020286 -0.838989 -0.013902 }
+      }
+      <Normal> { -0.529557 0.001251 -0.848262 }
+    }
+    <Vertex> 2978 {
+      -0.797497272491 0.894706070423 1.4468537569
+      <UV>  {
+        0.181839 0.239784
+        <Tangent> { -0.999837 -0.009434 -0.015416 }
+        <Binormal> { 0.003543 -0.360844 -0.008989 }
+      }
+      <Normal> { -0.926939 0.000244 -0.375195 }
+    }
+    <Vertex> 2979 {
+      -0.76732057333 0.878560185432 1.39103627205
+      <UV>  {
+        0.203817 0.263549
+        <Tangent> { -0.991622 0.023452 -0.127027 }
+        <Binormal> { 0.025273 -0.411511 -0.273262 }
+      }
+      <Normal> { -0.803125 0.294565 -0.517869 }
+    }
+    <Vertex> 2980 {
+      -0.76732057333 0.840007185936 1.38915884495
+      <UV>  {
+        0.205892 0.285353
+        <Tangent> { -0.930926 -0.050931 -0.361638 }
+        <Binormal> { 0.224961 -0.634838 -0.489686 }
+      }
+      <Normal> { -0.310770 0.509018 -0.802667 }
+    }
+    <Vertex> 2981 {
+      -0.797497272491 0.825507104397 1.36095297337
+      <UV>  {
+        0.181085 0.287149
+        <Tangent> { -0.999573 -0.023890 -0.016827 }
+        <Binormal> { 0.020286 -0.838989 -0.013902 }
+      }
+      <Normal> { -0.529557 0.001251 -0.848262 }
+    }
+    <Vertex> 2982 {
+      -0.76732057333 0.878986299038 1.42604672909
+      <UV>  {
+        0.207391 0.243320
+        <Tangent> { -0.990424 0.100782 -0.094363 }
+        <Binormal> { 0.022441 0.098742 -0.130082 }
+      }
+      <Normal> { -0.973052 0.230354 0.006989 }
+    }
+    <Vertex> 2983 {
+      -0.76732057333 0.87777107954 1.47126424313
+      <UV>  {
+        0.205824 0.217722
+        <Tangent> { -0.982824 0.117329 -0.142444 }
+        <Binormal> { 0.041773 0.263696 -0.071022 }
+      }
+      <Normal> { -0.973785 0.188513 0.127171 }
+    }
+    <Vertex> 2984 {
+      -0.680804371834 0.890661418438 1.44520199299
+      <UV>  {
+        0.237878 0.241743
+        <Tangent> { -0.955166 -0.040697 -0.293259 }
+        <Binormal> { 0.171313 -0.088941 -0.545635 }
+      }
+      <Normal> { -0.775018 0.538224 -0.331065 }
+    }
+    <Vertex> 2985 {
+      -0.76732057333 0.878560185432 1.39103627205
+      <UV>  {
+        0.203817 0.263549
+        <Tangent> { -0.991622 0.023452 -0.127027 }
+        <Binormal> { 0.025273 -0.411511 -0.273262 }
+      }
+      <Normal> { -0.803125 0.294565 -0.517869 }
+    }
+    <Vertex> 2986 {
+      -0.76732057333 0.878986299038 1.42604672909
+      <UV>  {
+        0.207391 0.243320
+        <Tangent> { -0.990424 0.100782 -0.094363 }
+        <Binormal> { 0.022441 0.098742 -0.130082 }
+      }
+      <Normal> { -0.973052 0.230354 0.006989 }
+    }
+    <Vertex> 2987 {
+      -0.680804371834 0.890661418438 1.44520199299
+      <UV>  {
+        0.237878 0.241743
+        <Tangent> { -0.955166 -0.040697 -0.293259 }
+        <Binormal> { 0.171313 -0.088941 -0.545635 }
+      }
+      <Normal> { -0.775018 0.538224 -0.331065 }
+    }
+    <Vertex> 2988 {
+      -0.680804371834 0.890661418438 1.44520199299
+      <UV>  {
+        0.237878 0.241743
+        <Tangent> { -0.955166 -0.040697 -0.293259 }
+        <Binormal> { 0.171313 -0.088941 -0.545635 }
+      }
+      <Normal> { -0.775018 0.538224 -0.331065 }
+    }
+    <Vertex> 2989 {
+      -0.76732057333 0.840007185936 1.38915884495
+      <UV>  {
+        0.205892 0.285353
+        <Tangent> { -0.930926 -0.050931 -0.361638 }
+        <Binormal> { 0.224961 -0.634838 -0.489686 }
+      }
+      <Normal> { -0.310770 0.509018 -0.802667 }
+    }
+    <Vertex> 2990 {
+      -0.76732057333 0.878560185432 1.39103627205
+      <UV>  {
+        0.203817 0.263549
+        <Tangent> { -0.991622 0.023452 -0.127027 }
+        <Binormal> { 0.025273 -0.411511 -0.273262 }
+      }
+      <Normal> { -0.803125 0.294565 -0.517869 }
+    }
+    <Vertex> 2991 {
+      -0.797497332096 0.683510422707 1.24961578846
+      <UV>  {
+        0.180167 0.348760
+        <Tangent> { -0.999780 -0.018679 -0.009582 }
+        <Binormal> { 0.016597 -0.883613 -0.009160 }
+      }
+      <Normal> { -0.459365 0.000580 -0.888211 }
+    }
+    <Vertex> 2992 {
+      -0.797497272491 0.825507104397 1.36095297337
+      <UV>  {
+        0.181085 0.287149
+        <Tangent> { -0.999573 -0.023890 -0.016827 }
+        <Binormal> { 0.020286 -0.838989 -0.013902 }
+      }
+      <Normal> { -0.529557 0.001251 -0.848262 }
+    }
+    <Vertex> 2993 {
+      -0.76732057333 0.840007185936 1.38915884495
+      <UV>  {
+        0.205892 0.285353
+        <Tangent> { -0.930926 -0.050931 -0.361638 }
+        <Binormal> { 0.224961 -0.634838 -0.489686 }
+      }
+      <Normal> { -0.310770 0.509018 -0.802667 }
+    }
+    <Vertex> 2994 {
+      -0.76732057333 0.840007185936 1.38915884495
+      <UV>  {
+        0.205892 0.285353
+        <Tangent> { -0.930926 -0.050931 -0.361638 }
+        <Binormal> { 0.224961 -0.634838 -0.489686 }
+      }
+      <Normal> { -0.310770 0.509018 -0.802667 }
+    }
+    <Vertex> 2995 {
+      -0.706315517426 0.695588648319 1.23194229603
+      <UV>  {
+        0.213284 0.347517
+        <Tangent> { -0.949974 -0.193347 0.245289 }
+        <Binormal> { 0.259454 -0.850286 0.334601 }
+      }
+      <Normal> { -0.440809 -0.441939 -0.781243 }
+    }
+    <Vertex> 2996 {
+      -0.797497332096 0.683510422707 1.24961578846
+      <UV>  {
+        0.180167 0.348760
+        <Tangent> { -0.999780 -0.018679 -0.009582 }
+        <Binormal> { 0.016597 -0.883613 -0.009160 }
+      }
+      <Normal> { -0.459365 0.000580 -0.888211 }
+    }
+    <Vertex> 2997 {
+      -0.666435539722 0.0598407797515 3.34645032883
+      <UV>  {
+        0.502038 0.777562
+        <Tangent> { -0.164137 0.094392 0.981911 }
+        <Binormal> { 0.009143 0.993165 -0.093946 }
+      }
+      <Normal> { 0.995270 0.000000 0.096866 }
+    }
+    <Vertex> 2998 {
+      -0.666435539722 0.0854838863015 3.43215990067
+      <UV>  {
+        0.485629 0.783634
+        <Tangent> { -0.163325 0.282784 0.945176 }
+        <Binormal> { 0.122442 0.932684 -0.257888 }
+      }
+      <Normal> { 0.918485 -0.011292 0.395245 }
+    }
+    <Vertex> 2999 {
+      -0.69407248497 0.0843533650041 3.4202580452
+      <UV>  {
+        0.485629 0.771490
+        <Tangent> { -0.163325 0.282783 0.945177 }
+        <Binormal> { 0.266436 0.924543 -0.230570 }
+      }
+      <Normal> { 0.915372 -0.173162 0.363414 }
+    }
+    <Vertex> 3000 {
+      -0.69407248497 0.0843533650041 3.4202580452
+      <UV>  {
+        0.519640 0.759351
+        <Tangent> { 0.985207 0.050612 0.163726 }
+        <Binormal> { 0.046744 -0.208168 -0.216929 }
+      }
+      <Normal> { 0.915372 -0.173162 0.363414 }
+    }
+    <Vertex> 3001 {
+      -0.666435539722 0.0854838863015 3.43215990067
+      <UV>  {
+        0.514867 0.755546
+        <Tangent> { 0.494745 -0.429318 -0.755588 }
+        <Binormal> { -0.178218 -0.889542 0.388735 }
+      }
+      <Normal> { 0.918485 -0.011292 0.395245 }
+    }
+    <Vertex> 3002 {
+      -0.666435539722 0.152986124158 3.55345201492
+      <UV>  {
+        0.520491 0.747630
+        <Tangent> { 0.850572 -0.393925 -0.348353 }
+        <Binormal> { -0.273599 -0.860488 0.305013 }
+      }
+      <Normal> { 0.677358 0.044893 0.734245 }
+    }
+    <Vertex> 3003 {
+      -0.666435539722 0.152986124158 3.55345201492
+      <UV>  {
+        0.520491 0.747630
+        <Tangent> { 0.850572 -0.393925 -0.348353 }
+        <Binormal> { -0.273599 -0.860488 0.305013 }
+      }
+      <Normal> { 0.677358 0.044893 0.734245 }
+    }
+    <Vertex> 3004 {
+      -0.714304089546 0.13998247683 3.53283691406
+      <UV>  {
+        0.521644 0.748613
+        <Tangent> { 0.831397 0.070866 0.551142 }
+        <Binormal> { 0.235426 -0.165006 -0.333922 }
+      }
+      <Normal> { 0.679037 -0.343760 0.648610 }
+    }
+    <Vertex> 3005 {
+      -0.69407248497 0.0843533650041 3.4202580452
+      <UV>  {
+        0.519640 0.759351
+        <Tangent> { 0.985207 0.050612 0.163726 }
+        <Binormal> { 0.046744 -0.208168 -0.216929 }
+      }
+      <Normal> { 0.915372 -0.173162 0.363414 }
+    }
+    <Vertex> 3006 {
+      -0.714304089546 0.13998247683 3.53283691406
+      <UV>  {
+        0.521644 0.748613
+        <Tangent> { 0.831397 0.070866 0.551142 }
+        <Binormal> { 0.235426 -0.165006 -0.333922 }
+      }
+      <Normal> { 0.679037 -0.343760 0.648610 }
+    }
+    <Vertex> 3007 {
+      -0.666435539722 0.152986124158 3.55345201492
+      <UV>  {
+        0.520491 0.747630
+        <Tangent> { 0.850572 -0.393925 -0.348353 }
+        <Binormal> { -0.273599 -0.860488 0.305013 }
+      }
+      <Normal> { 0.677358 0.044893 0.734245 }
+    }
+    <Vertex> 3008 {
+      -0.666435539722 0.178602695465 3.5655810833
+      <UV>  {
+        0.521391 0.746491
+        <Tangent> { 0.722343 -0.638964 0.264473 }
+        <Binormal> { -0.642255 -0.735879 -0.023715 }
+      }
+      <Normal> { -0.055849 0.016572 0.998291 }
+    }
+    <Vertex> 3009 {
+      -0.666435539722 0.178602695465 3.5655810833
+      <UV>  {
+        0.521391 0.746491
+        <Tangent> { 0.722343 -0.638964 0.264473 }
+        <Binormal> { -0.642255 -0.735879 -0.023715 }
+      }
+      <Normal> { -0.055849 0.016572 0.998291 }
+    }
+    <Vertex> 3010 {
+      -0.721709430218 0.176341682673 3.54177713394
+      <UV>  {
+        0.522011 0.747005
+        <Tangent> { 0.694511 -0.156701 0.702211 }
+        <Binormal> { 0.336808 -0.585656 -0.463806 }
+      }
+      <Normal> { -0.085940 -0.648427 0.756371 }
+    }
+    <Vertex> 3011 {
+      -0.714304089546 0.13998247683 3.53283691406
+      <UV>  {
+        0.521644 0.748613
+        <Tangent> { 0.831397 0.070866 0.551142 }
+        <Binormal> { 0.235426 -0.165006 -0.333922 }
+      }
+      <Normal> { 0.679037 -0.343760 0.648610 }
+    }
+    <Vertex> 3012 {
+      -0.721709430218 0.176341682673 3.54177713394
+      <UV>  {
+        0.522011 0.747005
+        <Tangent> { 0.694511 -0.156701 0.702211 }
+        <Binormal> { 0.336808 -0.585656 -0.463806 }
+      }
+      <Normal> { -0.085940 -0.648427 0.756371 }
+    }
+    <Vertex> 3013 {
+      -0.666435539722 0.178602695465 3.5655810833
+      <UV>  {
+        0.521391 0.746491
+        <Tangent> { 0.722343 -0.638964 0.264473 }
+        <Binormal> { -0.642255 -0.735879 -0.023715 }
+      }
+      <Normal> { -0.055849 0.016572 0.998291 }
+    }
+    <Vertex> 3014 {
+      -0.666435539722 0.240551263094 3.53010225296
+      <UV>  {
+        0.521840 0.745935
+        <Tangent> { 0.603331 -0.507026 0.615562 }
+        <Binormal> { -0.339378 -0.861672 -0.377107 }
+      }
+      <Normal> { -0.715873 -0.023438 0.697806 }
+    }
+    <Vertex> 3015 {
+      -0.666435539722 0.240551263094 3.53010225296
+      <UV>  {
+        0.521840 0.745935
+        <Tangent> { 0.603331 -0.507026 0.615562 }
+        <Binormal> { -0.339378 -0.861672 -0.377107 }
+      }
+      <Normal> { -0.715873 -0.023438 0.697806 }
+    }
+    <Vertex> 3016 {
+      -0.714304089546 0.238593161106 3.50948739052
+      <UV>  {
+        0.522199 0.746213
+        <Tangent> { 0.604749 -0.112541 0.788424 }
+        <Binormal> { 0.371157 -0.830993 -0.403308 }
+      }
+      <Normal> { -0.643239 -0.547197 0.535508 }
+    }
+    <Vertex> 3017 {
+      -0.721709430218 0.176341682673 3.54177713394
+      <UV>  {
+        0.522011 0.747005
+        <Tangent> { 0.694511 -0.156701 0.702211 }
+        <Binormal> { 0.336808 -0.585656 -0.463806 }
+      }
+      <Normal> { -0.085940 -0.648427 0.756371 }
+    }
+    <Vertex> 3018 {
+      -0.714304089546 0.238593161106 3.50948739052
+      <UV>  {
+        0.522199 0.746213
+        <Tangent> { 0.604749 -0.112541 0.788424 }
+        <Binormal> { 0.371157 -0.830993 -0.403308 }
+      }
+      <Normal> { -0.643239 -0.547197 0.535508 }
+    }
+    <Vertex> 3019 {
+      -0.666435539722 0.240551263094 3.53010225296
+      <UV>  {
+        0.521840 0.745935
+        <Tangent> { 0.603331 -0.507026 0.615562 }
+        <Binormal> { -0.339378 -0.861672 -0.377107 }
+      }
+      <Normal> { -0.715873 -0.023438 0.697806 }
+    }
+    <Vertex> 3020 {
+      -0.666435539722 0.281378746033 3.45652198792
+      <UV>  {
+        0.522141 0.745532
+        <Tangent> { 0.579620 -0.232058 0.781147 }
+        <Binormal> { -0.038707 -0.928566 -0.247131 }
+      }
+      <Normal> { -0.941618 -0.049379 0.333018 }
+    }
+    <Vertex> 3021 {
+      -0.666435539722 0.281378746033 3.45652198792
+      <UV>  {
+        0.522141 0.745532
+        <Tangent> { 0.579620 -0.232058 0.781147 }
+        <Binormal> { -0.038707 -0.928566 -0.247131 }
+      }
+      <Normal> { -0.941618 -0.049379 0.333018 }
+    }
+    <Vertex> 3022 {
+      -0.69407248497 0.280248254538 3.44461989403
+      <UV>  {
+        0.522313 0.745656
+        <Tangent> { 0.572012 0.003812 0.820236 }
+        <Binormal> { 0.295287 -0.880908 -0.201831 }
+      }
+      <Normal> { -0.899045 -0.358837 0.250832 }
+    }
+    <Vertex> 3023 {
+      -0.714304089546 0.238593161106 3.50948739052
+      <UV>  {
+        0.522199 0.746213
+        <Tangent> { 0.604749 -0.112541 0.788424 }
+        <Binormal> { 0.371157 -0.830993 -0.403308 }
+      }
+      <Normal> { -0.643239 -0.547197 0.535508 }
+    }
+    <Vertex> 3024 {
+      -0.666435539722 0.290145397186 3.36455583572
+      <UV>  {
+        0.522395 0.745149
+        <Tangent> { 0.558598 0.078440 0.825721 }
+        <Binormal> { -0.007546 -0.768131 0.078074 }
+      }
+      <Normal> { -0.995331 0.000000 -0.096194 }
+    }
+    <Vertex> 3025 {
+      -0.69407248497 0.280248254538 3.44461989403
+      <UV>  {
+        0.522313 0.745656
+        <Tangent> { 0.572012 0.003812 0.820236 }
+        <Binormal> { 0.295287 -0.880908 -0.201831 }
+      }
+      <Normal> { -0.899045 -0.358837 0.250832 }
+    }
+    <Vertex> 3026 {
+      -0.666435539722 0.281378746033 3.45652198792
+      <UV>  {
+        0.522141 0.745532
+        <Tangent> { 0.579620 -0.232058 0.781147 }
+        <Binormal> { -0.038707 -0.928566 -0.247131 }
+      }
+      <Normal> { -0.941618 -0.049379 0.333018 }
+    }
+    <Vertex> 3027 {
+      -0.666435539722 0.0598407797515 3.34645032883
+      <UV>  {
+        0.502038 0.777562
+        <Tangent> { -0.164137 0.094392 0.981911 }
+        <Binormal> { 0.009143 0.993165 -0.093946 }
+      }
+      <Normal> { 0.995270 0.000000 0.096866 }
+    }
+    <Vertex> 3028 {
+      -0.69407248497 0.0843533650041 3.4202580452
+      <UV>  {
+        0.485629 0.771490
+        <Tangent> { -0.163325 0.282783 0.945177 }
+        <Binormal> { 0.266436 0.924543 -0.230570 }
+      }
+      <Normal> { 0.915372 -0.173162 0.363414 }
+    }
+    <Vertex> 3029 {
+      -0.714304089546 0.0812647491693 3.38774108887
+      <UV>  {
+        0.490026 0.760972
+        <Tangent> { -0.164030 0.232949 0.958556 }
+        <Binormal> { 0.362171 0.917838 -0.161078 }
+      }
+      <Normal> { 0.913999 -0.316019 0.254341 }
+    }
+    <Vertex> 3030 {
+      -0.714304089546 0.0812647491693 3.38774108887
+      <UV>  {
+        0.525151 0.759352
+        <Tangent> { 0.413195 0.258945 0.873051 }
+        <Binormal> { 0.341761 0.692874 -0.367253 }
+      }
+      <Normal> { 0.913999 -0.316019 0.254341 }
+    }
+    <Vertex> 3031 {
+      -0.69407248497 0.0843533650041 3.4202580452
+      <UV>  {
+        0.519640 0.759351
+        <Tangent> { 0.985207 0.050612 0.163726 }
+        <Binormal> { 0.046744 -0.208168 -0.216929 }
+      }
+      <Normal> { 0.915372 -0.173162 0.363414 }
+    }
+    <Vertex> 3032 {
+      -0.714304089546 0.13998247683 3.53283691406
+      <UV>  {
+        0.521644 0.748613
+        <Tangent> { 0.831397 0.070866 0.551142 }
+        <Binormal> { 0.235426 -0.165006 -0.333922 }
+      }
+      <Normal> { 0.679037 -0.343760 0.648610 }
+    }
+    <Vertex> 3033 {
+      -0.714304089546 0.13998247683 3.53283691406
+      <UV>  {
+        0.521644 0.748613
+        <Tangent> { 0.831397 0.070866 0.551142 }
+        <Binormal> { 0.235426 -0.165006 -0.333922 }
+      }
+      <Normal> { 0.679037 -0.343760 0.648610 }
+    }
+    <Vertex> 3034 {
+      -0.74934643507 0.120560653508 3.47651600838
+      <UV>  {
+        0.522999 0.748668
+        <Tangent> { 0.367303 0.173755 0.913727 }
+        <Binormal> { 0.720201 0.418881 -0.369164 }
+      }
+      <Normal> { 0.598102 -0.722129 0.347453 }
+    }
+    <Vertex> 3035 {
+      -0.714304089546 0.0812647491693 3.38774108887
+      <UV>  {
+        0.525151 0.759352
+        <Tangent> { 0.413195 0.258945 0.873051 }
+        <Binormal> { 0.341761 0.692874 -0.367253 }
+      }
+      <Normal> { 0.913999 -0.316019 0.254341 }
+    }
+    <Vertex> 3036 {
+      -0.74934643507 0.120560653508 3.47651600838
+      <UV>  {
+        0.522999 0.748668
+        <Tangent> { 0.367303 0.173755 0.913727 }
+        <Binormal> { 0.720201 0.418881 -0.369164 }
+      }
+      <Normal> { 0.598102 -0.722129 0.347453 }
+    }
+    <Vertex> 3037 {
+      -0.714304089546 0.13998247683 3.53283691406
+      <UV>  {
+        0.521644 0.748613
+        <Tangent> { 0.831397 0.070866 0.551142 }
+        <Binormal> { 0.235426 -0.165006 -0.333922 }
+      }
+      <Normal> { 0.679037 -0.343760 0.648610 }
+    }
+    <Vertex> 3038 {
+      -0.721709430218 0.176341682673 3.54177713394
+      <UV>  {
+        0.522011 0.747005
+        <Tangent> { 0.694511 -0.156701 0.702211 }
+        <Binormal> { 0.336808 -0.585656 -0.463806 }
+      }
+      <Normal> { -0.085940 -0.648427 0.756371 }
+    }
+    <Vertex> 3039 {
+      -0.721709430218 0.176341682673 3.54177713394
+      <UV>  {
+        0.522011 0.747005
+        <Tangent> { 0.694511 -0.156701 0.702211 }
+        <Binormal> { 0.336808 -0.585656 -0.463806 }
+      }
+      <Normal> { -0.085940 -0.648427 0.756371 }
+    }
+    <Vertex> 3040 {
+      -0.762172818184 0.170164465904 3.47674322128
+      <UV>  {
+        0.522735 0.747021
+        <Tangent> { 0.383634 0.211049 0.899046 }
+        <Binormal> { 0.916398 -0.155081 -0.354633 }
+      }
+      <Normal> { -0.025575 -0.938475 0.344310 }
+    }
+    <Vertex> 3041 {
+      -0.74934643507 0.120560653508 3.47651600838
+      <UV>  {
+        0.522999 0.748668
+        <Tangent> { 0.367303 0.173755 0.913727 }
+        <Binormal> { 0.720201 0.418881 -0.369164 }
+      }
+      <Normal> { 0.598102 -0.722129 0.347453 }
+    }
+    <Vertex> 3042 {
+      -0.762172818184 0.170164465904 3.47674322128
+      <UV>  {
+        0.522735 0.747021
+        <Tangent> { 0.383634 0.211049 0.899046 }
+        <Binormal> { 0.916398 -0.155081 -0.354633 }
+      }
+      <Normal> { -0.025575 -0.938475 0.344310 }
+    }
+    <Vertex> 3043 {
+      -0.721709430218 0.176341682673 3.54177713394
+      <UV>  {
+        0.522011 0.747005
+        <Tangent> { 0.694511 -0.156701 0.702211 }
+        <Binormal> { 0.336808 -0.585656 -0.463806 }
+      }
+      <Normal> { -0.085940 -0.648427 0.756371 }
+    }
+    <Vertex> 3044 {
+      -0.714304089546 0.238593161106 3.50948739052
+      <UV>  {
+        0.522199 0.746213
+        <Tangent> { 0.604749 -0.112541 0.788424 }
+        <Binormal> { 0.371157 -0.830993 -0.403308 }
+      }
+      <Normal> { -0.643239 -0.547197 0.535508 }
+    }
+    <Vertex> 3045 {
+      -0.714304089546 0.238593161106 3.50948739052
+      <UV>  {
+        0.522199 0.746213
+        <Tangent> { 0.604749 -0.112541 0.788424 }
+        <Binormal> { 0.371157 -0.830993 -0.403308 }
+      }
+      <Normal> { -0.643239 -0.547197 0.535508 }
+    }
+    <Vertex> 3046 {
+      -0.74934643507 0.233243539929 3.45316648483
+      <UV>  {
+        0.522610 0.746206
+        <Tangent> { 0.445879 0.270896 0.853116 }
+        <Binormal> { 0.762677 -0.555762 -0.222136 }
+      }
+      <Normal> { -0.523240 -0.816095 0.245308 }
+    }
+    <Vertex> 3047 {
+      -0.762172818184 0.170164465904 3.47674322128
+      <UV>  {
+        0.522735 0.747021
+        <Tangent> { 0.383634 0.211049 0.899046 }
+        <Binormal> { 0.916398 -0.155081 -0.354633 }
+      }
+      <Normal> { -0.025575 -0.938475 0.344310 }
+    }
+    <Vertex> 3048 {
+      -0.74934643507 0.233243539929 3.45316648483
+      <UV>  {
+        0.522610 0.746206
+        <Tangent> { 0.445879 0.270896 0.853116 }
+        <Binormal> { 0.762677 -0.555762 -0.222136 }
+      }
+      <Normal> { -0.523240 -0.816095 0.245308 }
+    }
+    <Vertex> 3049 {
+      -0.714304089546 0.238593161106 3.50948739052
+      <UV>  {
+        0.522199 0.746213
+        <Tangent> { 0.604749 -0.112541 0.788424 }
+        <Binormal> { 0.371157 -0.830993 -0.403308 }
+      }
+      <Normal> { -0.643239 -0.547197 0.535508 }
+    }
+    <Vertex> 3050 {
+      -0.69407248497 0.280248254538 3.44461989403
+      <UV>  {
+        0.522313 0.745656
+        <Tangent> { 0.572012 0.003812 0.820236 }
+        <Binormal> { 0.295287 -0.880908 -0.201831 }
+      }
+      <Normal> { -0.899045 -0.358837 0.250832 }
+    }
+    <Vertex> 3051 {
+      -0.69407248497 0.280248254538 3.44461989403
+      <UV>  {
+        0.522313 0.745656
+        <Tangent> { 0.572012 0.003812 0.820236 }
+        <Binormal> { 0.295287 -0.880908 -0.201831 }
+      }
+      <Normal> { -0.899045 -0.358837 0.250832 }
+    }
+    <Vertex> 3052 {
+      -0.714304089546 0.277159661055 3.4121029377
+      <UV>  {
+        0.522508 0.745645
+        <Tangent> { 0.513068 0.244960 0.822652 }
+        <Binormal> { 0.470373 -0.731285 -0.075606 }
+      }
+      <Normal> { -0.833491 -0.545305 0.088900 }
+    }
+    <Vertex> 3053 {
+      -0.74934643507 0.233243539929 3.45316648483
+      <UV>  {
+        0.522610 0.746206
+        <Tangent> { 0.445879 0.270896 0.853116 }
+        <Binormal> { 0.762677 -0.555762 -0.222136 }
+      }
+      <Normal> { -0.523240 -0.816095 0.245308 }
+    }
+    <Vertex> 3054 {
+      -0.666435539722 0.290145397186 3.36455583572
+      <UV>  {
+        0.522395 0.745149
+        <Tangent> { 0.558598 0.078440 0.825721 }
+        <Binormal> { -0.007546 -0.768131 0.078074 }
+      }
+      <Normal> { -0.995331 0.000000 -0.096194 }
+    }
+    <Vertex> 3055 {
+      -0.714304089546 0.277159661055 3.4121029377
+      <UV>  {
+        0.522508 0.745645
+        <Tangent> { 0.513068 0.244960 0.822652 }
+        <Binormal> { 0.470373 -0.731285 -0.075606 }
+      }
+      <Normal> { -0.833491 -0.545305 0.088900 }
+    }
+    <Vertex> 3056 {
+      -0.69407248497 0.280248254538 3.44461989403
+      <UV>  {
+        0.522313 0.745656
+        <Tangent> { 0.572012 0.003812 0.820236 }
+        <Binormal> { 0.295287 -0.880908 -0.201831 }
+      }
+      <Normal> { -0.899045 -0.358837 0.250832 }
+    }
+    <Vertex> 3057 {
+      -0.666435539722 0.0598407797515 3.34645032883
+      <UV>  {
+        0.502038 0.777562
+        <Tangent> { -0.164137 0.094392 0.981911 }
+        <Binormal> { 0.009143 0.993165 -0.093946 }
+      }
+      <Normal> { 0.995270 0.000000 0.096866 }
+    }
+    <Vertex> 3058 {
+      -0.714304089546 0.0812647491693 3.38774108887
+      <UV>  {
+        0.490026 0.760972
+        <Tangent> { -0.164030 0.232949 0.958556 }
+        <Binormal> { 0.362171 0.917838 -0.161078 }
+      }
+      <Normal> { 0.913999 -0.316019 0.254341 }
+    }
+    <Vertex> 3059 {
+      -0.721709430218 0.0770456567407 3.34332203865
+      <UV>  {
+        0.497642 0.754900
+        <Tangent> { -0.164215 0.144679 0.975757 }
+        <Binormal> { 0.548390 0.822604 -0.029679 }
+      }
+      <Normal> { 0.831141 -0.551530 0.070711 }
+    }
+    <Vertex> 3060 {
+      -0.721709430218 0.0770456567407 3.34332203865
+      <UV>  {
+        0.529924 0.755546
+        <Tangent> { -0.027384 0.131893 0.990886 }
+        <Binormal> { 0.555830 0.825502 -0.094519 }
+      }
+      <Normal> { 0.831141 -0.551530 0.070711 }
+    }
+    <Vertex> 3061 {
+      -0.714304089546 0.0812647491693 3.38774108887
+      <UV>  {
+        0.525151 0.759352
+        <Tangent> { 0.413195 0.258945 0.873051 }
+        <Binormal> { 0.341761 0.692874 -0.367253 }
+      }
+      <Normal> { 0.913999 -0.316019 0.254341 }
+    }
+    <Vertex> 3062 {
+      -0.74934643507 0.120560653508 3.47651600838
+      <UV>  {
+        0.522999 0.748668
+        <Tangent> { 0.367303 0.173755 0.913727 }
+        <Binormal> { 0.720201 0.418881 -0.369164 }
+      }
+      <Normal> { 0.598102 -0.722129 0.347453 }
+    }
+    <Vertex> 3063 {
+      -0.74934643507 0.120560653508 3.47651600838
+      <UV>  {
+        0.522999 0.748668
+        <Tangent> { 0.367303 0.173755 0.913727 }
+        <Binormal> { 0.720201 0.418881 -0.369164 }
+      }
+      <Normal> { 0.598102 -0.722129 0.347453 }
+    }
+    <Vertex> 3064 {
+      -0.762172818184 0.125839084387 3.39958024025
+      <UV>  {
+        0.524192 0.747780
+        <Tangent> { -0.042754 0.306264 0.950986 }
+        <Binormal> { 0.839718 0.459271 -0.110156 }
+      }
+      <Normal> { 0.481948 -0.875881 0.022095 }
+    }
+    <Vertex> 3065 {
+      -0.721709430218 0.0770456567407 3.34332203865
+      <UV>  {
+        0.529924 0.755546
+        <Tangent> { -0.027384 0.131893 0.990886 }
+        <Binormal> { 0.555830 0.825502 -0.094519 }
+      }
+      <Normal> { 0.831141 -0.551530 0.070711 }
+    }
+    <Vertex> 3066 {
+      -0.762172818184 0.125839084387 3.39958024025
+      <UV>  {
+        0.524192 0.747780
+        <Tangent> { -0.042754 0.306264 0.950986 }
+        <Binormal> { 0.839718 0.459271 -0.110156 }
+      }
+      <Normal> { 0.481948 -0.875881 0.022095 }
+    }
+    <Vertex> 3067 {
+      -0.74934643507 0.120560653508 3.47651600838
+      <UV>  {
+        0.522999 0.748668
+        <Tangent> { 0.367303 0.173755 0.913727 }
+        <Binormal> { 0.720201 0.418881 -0.369164 }
+      }
+      <Normal> { 0.598102 -0.722129 0.347453 }
+    }
+    <Vertex> 3068 {
+      -0.762172818184 0.170164465904 3.47674322128
+      <UV>  {
+        0.522735 0.747021
+        <Tangent> { 0.383634 0.211049 0.899046 }
+        <Binormal> { 0.916398 -0.155081 -0.354633 }
+      }
+      <Normal> { -0.025575 -0.938475 0.344310 }
+    }
+    <Vertex> 3069 {
+      -0.762172818184 0.170164465904 3.47674322128
+      <UV>  {
+        0.522735 0.747021
+        <Tangent> { 0.383634 0.211049 0.899046 }
+        <Binormal> { 0.916398 -0.155081 -0.354633 }
+      }
+      <Normal> { -0.025575 -0.938475 0.344310 }
+    }
+    <Vertex> 3070 {
+      -0.776983380318 0.161726236343 3.38790535927
+      <UV>  {
+        0.523367 0.746536
+        <Tangent> { 0.089060 0.569594 0.817087 }
+        <Binormal> { 0.819934 0.065777 -0.135223 }
+      }
+      <Normal> { 0.081576 -0.996612 0.009857 }
+    }
+    <Vertex> 3071 {
+      -0.762172818184 0.125839084387 3.39958024025
+      <UV>  {
+        0.524192 0.747780
+        <Tangent> { -0.042754 0.306264 0.950986 }
+        <Binormal> { 0.839718 0.459271 -0.110156 }
+      }
+      <Normal> { 0.481948 -0.875881 0.022095 }
+    }
+    <Vertex> 3072 {
+      -0.776983380318 0.161726236343 3.38790535927
+      <UV>  {
+        0.523367 0.746536
+        <Tangent> { 0.089060 0.569594 0.817087 }
+        <Binormal> { 0.819934 0.065777 -0.135223 }
+      }
+      <Normal> { 0.081576 -0.996612 0.009857 }
+    }
+    <Vertex> 3073 {
+      -0.762172818184 0.170164465904 3.47674322128
+      <UV>  {
+        0.522735 0.747021
+        <Tangent> { 0.383634 0.211049 0.899046 }
+        <Binormal> { 0.916398 -0.155081 -0.354633 }
+      }
+      <Normal> { -0.025575 -0.938475 0.344310 }
+    }
+    <Vertex> 3074 {
+      -0.74934643507 0.233243539929 3.45316648483
+      <UV>  {
+        0.522610 0.746206
+        <Tangent> { 0.445879 0.270896 0.853116 }
+        <Binormal> { 0.762677 -0.555762 -0.222136 }
+      }
+      <Normal> { -0.523240 -0.816095 0.245308 }
+    }
+    <Vertex> 3075 {
+      -0.74934643507 0.233243539929 3.45316648483
+      <UV>  {
+        0.522610 0.746206
+        <Tangent> { 0.445879 0.270896 0.853116 }
+        <Binormal> { 0.762677 -0.555762 -0.222136 }
+      }
+      <Normal> { -0.523240 -0.816095 0.245308 }
+    }
+    <Vertex> 3076 {
+      -0.762172818184 0.225935831666 3.37623047829
+      <UV>  {
+        0.522964 0.745916
+        <Tangent> { 0.298433 0.592595 0.748177 }
+        <Binormal> { 0.640069 -0.318195 -0.003284 }
+      }
+      <Normal> { -0.444807 -0.894253 -0.048921 }
+    }
+    <Vertex> 3077 {
+      -0.776983380318 0.161726236343 3.38790535927
+      <UV>  {
+        0.523367 0.746536
+        <Tangent> { 0.089060 0.569594 0.817087 }
+        <Binormal> { 0.819934 0.065777 -0.135223 }
+      }
+      <Normal> { 0.081576 -0.996612 0.009857 }
+    }
+    <Vertex> 3078 {
+      -0.762172818184 0.225935831666 3.37623047829
+      <UV>  {
+        0.522964 0.745916
+        <Tangent> { 0.298433 0.592595 0.748177 }
+        <Binormal> { 0.640069 -0.318195 -0.003284 }
+      }
+      <Normal> { -0.444807 -0.894253 -0.048921 }
+    }
+    <Vertex> 3079 {
+      -0.74934643507 0.233243539929 3.45316648483
+      <UV>  {
+        0.522610 0.746206
+        <Tangent> { 0.445879 0.270896 0.853116 }
+        <Binormal> { 0.762677 -0.555762 -0.222136 }
+      }
+      <Normal> { -0.523240 -0.816095 0.245308 }
+    }
+    <Vertex> 3080 {
+      -0.714304089546 0.277159661055 3.4121029377
+      <UV>  {
+        0.522508 0.745645
+        <Tangent> { 0.513068 0.244960 0.822652 }
+        <Binormal> { 0.470373 -0.731285 -0.075606 }
+      }
+      <Normal> { -0.833491 -0.545305 0.088900 }
+    }
+    <Vertex> 3081 {
+      -0.714304089546 0.277159661055 3.4121029377
+      <UV>  {
+        0.522508 0.745645
+        <Tangent> { 0.513068 0.244960 0.822652 }
+        <Binormal> { 0.470373 -0.731285 -0.075606 }
+      }
+      <Normal> { -0.833491 -0.545305 0.088900 }
+    }
+    <Vertex> 3082 {
+      -0.721709430218 0.272940546274 3.3676841259
+      <UV>  {
+        0.522672 0.745501
+        <Tangent> { 0.466509 0.442474 0.765889 }
+        <Binormal> { 0.414475 -0.559785 0.070943 }
+      }
+      <Normal> { -0.793207 -0.600269 -0.102298 }
+    }
+    <Vertex> 3083 {
+      -0.762172818184 0.225935831666 3.37623047829
+      <UV>  {
+        0.522964 0.745916
+        <Tangent> { 0.298433 0.592595 0.748177 }
+        <Binormal> { 0.640069 -0.318195 -0.003284 }
+      }
+      <Normal> { -0.444807 -0.894253 -0.048921 }
+    }
+    <Vertex> 3084 {
+      -0.666435539722 0.290145397186 3.36455583572
+      <UV>  {
+        0.522395 0.745149
+        <Tangent> { 0.558598 0.078440 0.825721 }
+        <Binormal> { -0.007546 -0.768131 0.078074 }
+      }
+      <Normal> { -0.995331 0.000000 -0.096194 }
+    }
+    <Vertex> 3085 {
+      -0.721709430218 0.272940546274 3.3676841259
+      <UV>  {
+        0.522672 0.745501
+        <Tangent> { 0.466509 0.442474 0.765889 }
+        <Binormal> { 0.414475 -0.559785 0.070943 }
+      }
+      <Normal> { -0.793207 -0.600269 -0.102298 }
+    }
+    <Vertex> 3086 {
+      -0.714304089546 0.277159661055 3.4121029377
+      <UV>  {
+        0.522508 0.745645
+        <Tangent> { 0.513068 0.244960 0.822652 }
+        <Binormal> { 0.470373 -0.731285 -0.075606 }
+      }
+      <Normal> { -0.833491 -0.545305 0.088900 }
+    }
+    <Vertex> 3087 {
+      -0.666435539722 0.0598407797515 3.34645032883
+      <UV>  {
+        0.502038 0.777562
+        <Tangent> { -0.164137 0.094392 0.981911 }
+        <Binormal> { 0.009143 0.993165 -0.093946 }
+      }
+      <Normal> { 0.995270 0.000000 0.096866 }
+    }
+    <Vertex> 3088 {
+      -0.721709430218 0.0770456567407 3.34332203865
+      <UV>  {
+        0.497642 0.754900
+        <Tangent> { -0.164215 0.144679 0.975757 }
+        <Binormal> { 0.548390 0.822604 -0.029679 }
+      }
+      <Normal> { 0.831141 -0.551530 0.070711 }
+    }
+    <Vertex> 3089 {
+      -0.714304089546 0.0728265270591 3.29890322685
+      <UV>  {
+        0.506435 0.754900
+        <Tangent> { -0.162802 0.042080 0.985761 }
+        <Binormal> { 0.626697 0.721668 0.072694 }
+      }
+      <Normal> { 0.754692 -0.641591 -0.136845 }
+    }
+    <Vertex> 3090 {
+      -0.714304089546 0.0728265270591 3.29890322685
+      <UV>  {
+        0.532679 0.748955
+        <Tangent> { -0.406888 0.435083 0.803209 }
+        <Binormal> { 0.455792 0.550495 -0.067298 }
+      }
+      <Normal> { 0.754692 -0.641591 -0.136845 }
+    }
+    <Vertex> 3091 {
+      -0.721709430218 0.0770456567407 3.34332203865
+      <UV>  {
+        0.529924 0.755546
+        <Tangent> { -0.027384 0.131893 0.990886 }
+        <Binormal> { 0.555830 0.825502 -0.094519 }
+      }
+      <Normal> { 0.831141 -0.551530 0.070711 }
+    }
+    <Vertex> 3092 {
+      -0.762172818184 0.125839084387 3.39958024025
+      <UV>  {
+        0.524192 0.747780
+        <Tangent> { -0.042754 0.306264 0.950986 }
+        <Binormal> { 0.839718 0.459271 -0.110156 }
+      }
+      <Normal> { 0.481948 -0.875881 0.022095 }
+    }
+    <Vertex> 3093 {
+      -0.762172818184 0.125839084387 3.39958024025
+      <UV>  {
+        0.524192 0.747780
+        <Tangent> { -0.042754 0.306264 0.950986 }
+        <Binormal> { 0.839718 0.459271 -0.110156 }
+      }
+      <Normal> { 0.481948 -0.875881 0.022095 }
+    }
+    <Vertex> 3094 {
+      -0.74934643507 0.118531368673 3.3226442337
+      <UV>  {
+        0.524904 0.746187
+        <Tangent> { -0.447507 0.776279 0.443991 }
+        <Binormal> { 0.250950 0.163177 -0.032364 }
+      }
+      <Normal> { 0.524308 -0.837184 -0.155553 }
+    }
+    <Vertex> 3095 {
+      -0.714304089546 0.0728265270591 3.29890322685
+      <UV>  {
+        0.532679 0.748955
+        <Tangent> { -0.406888 0.435083 0.803209 }
+        <Binormal> { 0.455792 0.550495 -0.067298 }
+      }
+      <Normal> { 0.754692 -0.641591 -0.136845 }
+    }
+    <Vertex> 3096 {
+      -0.74934643507 0.118531368673 3.3226442337
+      <UV>  {
+        0.524904 0.746187
+        <Tangent> { -0.447507 0.776279 0.443991 }
+        <Binormal> { 0.250950 0.163177 -0.032364 }
+      }
+      <Normal> { 0.524308 -0.837184 -0.155553 }
+    }
+    <Vertex> 3097 {
+      -0.762172818184 0.125839084387 3.39958024025
+      <UV>  {
+        0.524192 0.747780
+        <Tangent> { -0.042754 0.306264 0.950986 }
+        <Binormal> { 0.839718 0.459271 -0.110156 }
+      }
+      <Normal> { 0.481948 -0.875881 0.022095 }
+    }
+    <Vertex> 3098 {
+      -0.776983380318 0.161726236343 3.38790535927
+      <UV>  {
+        0.523367 0.746536
+        <Tangent> { 0.089060 0.569594 0.817087 }
+        <Binormal> { 0.819934 0.065777 -0.135223 }
+      }
+      <Normal> { 0.081576 -0.996612 0.009857 }
+    }
+    <Vertex> 3099 {
+      -0.776983380318 0.161726236343 3.38790535927
+      <UV>  {
+        0.523367 0.746536
+        <Tangent> { 0.089060 0.569594 0.817087 }
+        <Binormal> { 0.819934 0.065777 -0.135223 }
+      }
+      <Normal> { 0.081576 -0.996612 0.009857 }
+    }
+    <Vertex> 3100 {
+      -0.762172818184 0.153288006783 3.29906749725
+      <UV>  {
+        0.523739 0.745679
+        <Tangent> { -0.020019 0.956205 0.292014 }
+        <Binormal> { -0.015390 0.029273 -0.096910 }
+      }
+      <Normal> { 0.121128 -0.944731 -0.304605 }
+    }
+    <Vertex> 3101 {
+      -0.74934643507 0.118531368673 3.3226442337
+      <UV>  {
+        0.524904 0.746187
+        <Tangent> { -0.447507 0.776279 0.443991 }
+        <Binormal> { 0.250950 0.163177 -0.032364 }
+      }
+      <Normal> { 0.524308 -0.837184 -0.155553 }
+    }
+    <Vertex> 3102 {
+      -0.762172818184 0.153288006783 3.29906749725
+      <UV>  {
+        0.523739 0.745679
+        <Tangent> { -0.020019 0.956205 0.292014 }
+        <Binormal> { -0.015390 0.029273 -0.096910 }
+      }
+      <Normal> { 0.121128 -0.944731 -0.304605 }
+    }
+    <Vertex> 3103 {
+      -0.776983380318 0.161726236343 3.38790535927
+      <UV>  {
+        0.523367 0.746536
+        <Tangent> { 0.089060 0.569594 0.817087 }
+        <Binormal> { 0.819934 0.065777 -0.135223 }
+      }
+      <Normal> { 0.081576 -0.996612 0.009857 }
+    }
+    <Vertex> 3104 {
+      -0.762172818184 0.225935831666 3.37623047829
+      <UV>  {
+        0.522964 0.745916
+        <Tangent> { 0.298433 0.592595 0.748177 }
+        <Binormal> { 0.640069 -0.318195 -0.003284 }
+      }
+      <Normal> { -0.444807 -0.894253 -0.048921 }
+    }
+    <Vertex> 3105 {
+      -0.762172818184 0.225935831666 3.37623047829
+      <UV>  {
+        0.522964 0.745916
+        <Tangent> { 0.298433 0.592595 0.748177 }
+        <Binormal> { 0.640069 -0.318195 -0.003284 }
+      }
+      <Normal> { -0.444807 -0.894253 -0.048921 }
+    }
+    <Vertex> 3106 {
+      -0.74934643507 0.2186280936 3.29929471016
+      <UV>  {
+        0.523166 0.745421
+        <Tangent> { 0.283394 0.822364 0.493360 }
+        <Binormal> { 0.114626 -0.105530 0.110061 }
+      }
+      <Normal> { -0.420759 -0.832606 -0.360118 }
+    }
+    <Vertex> 3107 {
+      -0.762172818184 0.153288006783 3.29906749725
+      <UV>  {
+        0.523739 0.745679
+        <Tangent> { -0.020019 0.956205 0.292014 }
+        <Binormal> { -0.015390 0.029273 -0.096910 }
+      }
+      <Normal> { 0.121128 -0.944731 -0.304605 }
+    }
+    <Vertex> 3108 {
+      -0.74934643507 0.2186280936 3.29929471016
+      <UV>  {
+        0.523166 0.745421
+        <Tangent> { 0.283394 0.822364 0.493360 }
+        <Binormal> { 0.114626 -0.105530 0.110061 }
+      }
+      <Normal> { -0.420759 -0.832606 -0.360118 }
+    }
+    <Vertex> 3109 {
+      -0.762172818184 0.225935831666 3.37623047829
+      <UV>  {
+        0.522964 0.745916
+        <Tangent> { 0.298433 0.592595 0.748177 }
+        <Binormal> { 0.640069 -0.318195 -0.003284 }
+      }
+      <Normal> { -0.444807 -0.894253 -0.048921 }
+    }
+    <Vertex> 3110 {
+      -0.721709430218 0.272940546274 3.3676841259
+      <UV>  {
+        0.522672 0.745501
+        <Tangent> { 0.466509 0.442474 0.765889 }
+        <Binormal> { 0.414475 -0.559785 0.070943 }
+      }
+      <Normal> { -0.793207 -0.600269 -0.102298 }
+    }
+    <Vertex> 3111 {
+      -0.721709430218 0.272940546274 3.3676841259
+      <UV>  {
+        0.522672 0.745501
+        <Tangent> { 0.466509 0.442474 0.765889 }
+        <Binormal> { 0.414475 -0.559785 0.070943 }
+      }
+      <Normal> { -0.793207 -0.600269 -0.102298 }
+    }
+    <Vertex> 3112 {
+      -0.714304089546 0.268721431494 3.32326507568
+      <UV>  {
+        0.522763 0.745263
+        <Tangent> { 0.480228 0.556308 0.678161 }
+        <Binormal> { 0.189275 -0.393332 0.188626 }
+      }
+      <Normal> { -0.794122 -0.527146 -0.302377 }
+    }
+    <Vertex> 3113 {
+      -0.74934643507 0.2186280936 3.29929471016
+      <UV>  {
+        0.523166 0.745421
+        <Tangent> { 0.283394 0.822364 0.493360 }
+        <Binormal> { 0.114626 -0.105530 0.110061 }
+      }
+      <Normal> { -0.420759 -0.832606 -0.360118 }
+    }
+    <Vertex> 3114 {
+      -0.666435539722 0.290145397186 3.36455583572
+      <UV>  {
+        0.522395 0.745149
+        <Tangent> { 0.558598 0.078440 0.825721 }
+        <Binormal> { -0.007546 -0.768131 0.078074 }
+      }
+      <Normal> { -0.995331 0.000000 -0.096194 }
+    }
+    <Vertex> 3115 {
+      -0.714304089546 0.268721431494 3.32326507568
+      <UV>  {
+        0.522763 0.745263
+        <Tangent> { 0.480228 0.556308 0.678161 }
+        <Binormal> { 0.189275 -0.393332 0.188626 }
+      }
+      <Normal> { -0.794122 -0.527146 -0.302377 }
+    }
+    <Vertex> 3116 {
+      -0.721709430218 0.272940546274 3.3676841259
+      <UV>  {
+        0.522672 0.745501
+        <Tangent> { 0.466509 0.442474 0.765889 }
+        <Binormal> { 0.414475 -0.559785 0.070943 }
+      }
+      <Normal> { -0.793207 -0.600269 -0.102298 }
+    }
+    <Vertex> 3117 {
+      -0.666435539722 0.0598407797515 3.34645032883
+      <UV>  {
+        0.502038 0.777562
+        <Tangent> { -0.164137 0.094392 0.981911 }
+        <Binormal> { 0.009143 0.993165 -0.093946 }
+      }
+      <Normal> { 0.995270 0.000000 0.096866 }
+    }
+    <Vertex> 3118 {
+      -0.714304089546 0.0728265270591 3.29890322685
+      <UV>  {
+        0.506435 0.754900
+        <Tangent> { -0.162802 0.042080 0.985761 }
+        <Binormal> { 0.626697 0.721668 0.072694 }
+      }
+      <Normal> { 0.754692 -0.641591 -0.136845 }
+    }
+    <Vertex> 3119 {
+      -0.69407248497 0.0697379484773 3.2663860321
+      <UV>  {
+        0.514051 0.760972
+        <Tangent> { -0.162093 -0.041692 0.985894 }
+        <Binormal> { 0.477988 0.766911 0.111019 }
+      }
+      <Normal> { 0.827754 -0.471999 -0.303323 }
+    }
+    <Vertex> 3120 {
+      -0.69407248497 0.0697379484773 3.2663860321
+      <UV>  {
+        0.532679 0.741344
+        <Tangent> { -0.206257 0.318511 -0.925208 }
+        <Binormal> { -0.533309 -0.828406 -0.166295 }
+      }
+      <Normal> { 0.827754 -0.471999 -0.303323 }
+    }
+    <Vertex> 3121 {
+      -0.714304089546 0.0728265270591 3.29890322685
+      <UV>  {
+        0.532679 0.748955
+        <Tangent> { -0.406888 0.435083 0.803209 }
+        <Binormal> { 0.455792 0.550495 -0.067298 }
+      }
+      <Normal> { 0.754692 -0.641591 -0.136845 }
+    }
+    <Vertex> 3122 {
+      -0.74934643507 0.118531368673 3.3226442337
+      <UV>  {
+        0.524904 0.746187
+        <Tangent> { -0.447507 0.776279 0.443991 }
+        <Binormal> { 0.250950 0.163177 -0.032364 }
+      }
+      <Normal> { 0.524308 -0.837184 -0.155553 }
+    }
+    <Vertex> 3123 {
+      -0.74934643507 0.118531368673 3.3226442337
+      <UV>  {
+        0.524904 0.746187
+        <Tangent> { -0.447507 0.776279 0.443991 }
+        <Binormal> { 0.250950 0.163177 -0.032364 }
+      }
+      <Normal> { 0.524308 -0.837184 -0.155553 }
+    }
+    <Vertex> 3124 {
+      -0.714304089546 0.0848592668772 3.26632356644
+      <UV>  {
+        0.524943 0.744316
+        <Tangent> { 0.115964 0.771286 -0.625836 }
+        <Binormal> { -0.810051 -0.289312 -0.506648 }
+      }
+      <Normal> { 0.565081 -0.610614 -0.554796 }
+    }
+    <Vertex> 3125 {
+      -0.69407248497 0.0697379484773 3.2663860321
+      <UV>  {
+        0.532679 0.741344
+        <Tangent> { -0.206257 0.318511 -0.925208 }
+        <Binormal> { -0.533309 -0.828406 -0.166295 }
+      }
+      <Normal> { 0.827754 -0.471999 -0.303323 }
+    }
+    <Vertex> 3126 {
+      -0.714304089546 0.0848592668772 3.26632356644
+      <UV>  {
+        0.524943 0.744316
+        <Tangent> { 0.115964 0.771286 -0.625836 }
+        <Binormal> { -0.810051 -0.289312 -0.506648 }
+      }
+      <Normal> { 0.565081 -0.610614 -0.554796 }
+    }
+    <Vertex> 3127 {
+      -0.74934643507 0.118531368673 3.3226442337
+      <UV>  {
+        0.524904 0.746187
+        <Tangent> { -0.447507 0.776279 0.443991 }
+        <Binormal> { 0.250950 0.163177 -0.032364 }
+      }
+      <Normal> { 0.524308 -0.837184 -0.155553 }
+    }
+    <Vertex> 3128 {
+      -0.762172818184 0.153288006783 3.29906749725
+      <UV>  {
+        0.523739 0.745679
+        <Tangent> { -0.020019 0.956205 0.292014 }
+        <Binormal> { -0.015390 0.029273 -0.096910 }
+      }
+      <Normal> { 0.121128 -0.944731 -0.304605 }
+    }
+    <Vertex> 3129 {
+      -0.762172818184 0.153288006783 3.29906749725
+      <UV>  {
+        0.523739 0.745679
+        <Tangent> { -0.020019 0.956205 0.292014 }
+        <Binormal> { -0.015390 0.029273 -0.096910 }
+      }
+      <Normal> { 0.121128 -0.944731 -0.304605 }
+    }
+    <Vertex> 3130 {
+      -0.721709430218 0.147110790014 3.23403358459
+      <UV>  {
+        0.523751 0.744681
+        <Tangent> { 0.251859 0.945561 -0.206112 }
+        <Binormal> { -0.836427 0.157757 -0.298348 }
+      }
+      <Normal> { 0.140843 -0.655812 -0.741630 }
+    }
+    <Vertex> 3131 {
+      -0.714304089546 0.0848592668772 3.26632356644
+      <UV>  {
+        0.524943 0.744316
+        <Tangent> { 0.115964 0.771286 -0.625836 }
+        <Binormal> { -0.810051 -0.289312 -0.506648 }
+      }
+      <Normal> { 0.565081 -0.610614 -0.554796 }
+    }
+    <Vertex> 3132 {
+      -0.721709430218 0.147110790014 3.23403358459
+      <UV>  {
+        0.523751 0.744681
+        <Tangent> { 0.251859 0.945561 -0.206112 }
+        <Binormal> { -0.836427 0.157757 -0.298348 }
+      }
+      <Normal> { 0.140843 -0.655812 -0.741630 }
+    }
+    <Vertex> 3133 {
+      -0.762172818184 0.153288006783 3.29906749725
+      <UV>  {
+        0.523739 0.745679
+        <Tangent> { -0.020019 0.956205 0.292014 }
+        <Binormal> { -0.015390 0.029273 -0.096910 }
+      }
+      <Normal> { 0.121128 -0.944731 -0.304605 }
+    }
+    <Vertex> 3134 {
+      -0.74934643507 0.2186280936 3.29929471016
+      <UV>  {
+        0.523166 0.745421
+        <Tangent> { 0.283394 0.822364 0.493360 }
+        <Binormal> { 0.114626 -0.105530 0.110061 }
+      }
+      <Normal> { -0.420759 -0.832606 -0.360118 }
+    }
+    <Vertex> 3135 {
+      -0.74934643507 0.2186280936 3.29929471016
+      <UV>  {
+        0.523166 0.745421
+        <Tangent> { 0.283394 0.822364 0.493360 }
+        <Binormal> { 0.114626 -0.105530 0.110061 }
+      }
+      <Normal> { -0.420759 -0.832606 -0.360118 }
+    }
+    <Vertex> 3136 {
+      -0.714304089546 0.213278487325 3.24297380447
+      <UV>  {
+        0.523161 0.744852
+        <Tangent> { 0.442199 0.843934 0.303704 }
+        <Binormal> { -0.422878 0.174022 0.132146 }
+      }
+      <Normal> { -0.447554 -0.555315 -0.700919 }
+    }
+    <Vertex> 3137 {
+      -0.721709430218 0.147110790014 3.23403358459
+      <UV>  {
+        0.523751 0.744681
+        <Tangent> { 0.251859 0.945561 -0.206112 }
+        <Binormal> { -0.836427 0.157757 -0.298348 }
+      }
+      <Normal> { 0.140843 -0.655812 -0.741630 }
+    }
+    <Vertex> 3138 {
+      -0.714304089546 0.213278487325 3.24297380447
+      <UV>  {
+        0.523161 0.744852
+        <Tangent> { 0.442199 0.843934 0.303704 }
+        <Binormal> { -0.422878 0.174022 0.132146 }
+      }
+      <Normal> { -0.447554 -0.555315 -0.700919 }
+    }
+    <Vertex> 3139 {
+      -0.74934643507 0.2186280936 3.29929471016
+      <UV>  {
+        0.523166 0.745421
+        <Tangent> { 0.283394 0.822364 0.493360 }
+        <Binormal> { 0.114626 -0.105530 0.110061 }
+      }
+      <Normal> { -0.420759 -0.832606 -0.360118 }
+    }
+    <Vertex> 3140 {
+      -0.714304089546 0.268721431494 3.32326507568
+      <UV>  {
+        0.522763 0.745263
+        <Tangent> { 0.480228 0.556308 0.678161 }
+        <Binormal> { 0.189275 -0.393332 0.188626 }
+      }
+      <Normal> { -0.794122 -0.527146 -0.302377 }
+    }
+    <Vertex> 3141 {
+      -0.714304089546 0.268721431494 3.32326507568
+      <UV>  {
+        0.522763 0.745263
+        <Tangent> { 0.480228 0.556308 0.678161 }
+        <Binormal> { 0.189275 -0.393332 0.188626 }
+      }
+      <Normal> { -0.794122 -0.527146 -0.302377 }
+    }
+    <Vertex> 3142 {
+      -0.69407248497 0.265632808208 3.29074835777
+      <UV>  {
+        0.522755 0.744994
+        <Tangent> { 0.548909 0.539771 0.638237 }
+        <Binormal> { -0.065712 -0.264870 0.280521 }
+      }
+      <Normal> { -0.825587 -0.300790 -0.477401 }
+    }
+    <Vertex> 3143 {
+      -0.714304089546 0.213278487325 3.24297380447
+      <UV>  {
+        0.523161 0.744852
+        <Tangent> { 0.442199 0.843934 0.303704 }
+        <Binormal> { -0.422878 0.174022 0.132146 }
+      }
+      <Normal> { -0.447554 -0.555315 -0.700919 }
+    }
+    <Vertex> 3144 {
+      -0.666435539722 0.290145397186 3.36455583572
+      <UV>  {
+        0.522395 0.745149
+        <Tangent> { 0.558598 0.078440 0.825721 }
+        <Binormal> { -0.007546 -0.768131 0.078074 }
+      }
+      <Normal> { -0.995331 0.000000 -0.096194 }
+    }
+    <Vertex> 3145 {
+      -0.69407248497 0.265632808208 3.29074835777
+      <UV>  {
+        0.522755 0.744994
+        <Tangent> { 0.548909 0.539771 0.638237 }
+        <Binormal> { -0.065712 -0.264870 0.280521 }
+      }
+      <Normal> { -0.825587 -0.300790 -0.477401 }
+    }
+    <Vertex> 3146 {
+      -0.714304089546 0.268721431494 3.32326507568
+      <UV>  {
+        0.522763 0.745263
+        <Tangent> { 0.480228 0.556308 0.678161 }
+        <Binormal> { 0.189275 -0.393332 0.188626 }
+      }
+      <Normal> { -0.794122 -0.527146 -0.302377 }
+    }
+    <Vertex> 3147 {
+      -0.666435539722 0.0598407797515 3.34645032883
+      <UV>  {
+        0.502038 0.777562
+        <Tangent> { -0.164137 0.094392 0.981911 }
+        <Binormal> { 0.009143 0.993165 -0.093946 }
+      }
+      <Normal> { 0.995270 0.000000 0.096866 }
+    }
+    <Vertex> 3148 {
+      -0.69407248497 0.0697379484773 3.2663860321
+      <UV>  {
+        0.514051 0.760972
+        <Tangent> { -0.162093 -0.041692 0.985894 }
+        <Binormal> { 0.477988 0.766911 0.111019 }
+      }
+      <Normal> { 0.827754 -0.471999 -0.303323 }
+    }
+    <Vertex> 3149 {
+      -0.666435539722 0.0681331828237 3.2559132576
+      <UV>  {
+        0.518448 0.771490
+        <Tangent> { -0.160782 -0.090023 0.982876 }
+        <Binormal> { 0.135285 0.697772 0.086040 }
+      }
+      <Normal> { 0.805811 -0.083956 -0.586138 }
+    }
+    <Vertex> 3150 {
+      -0.666435539722 0.0681331828237 3.2559132576
+      <UV>  {
+        0.529924 0.734752
+        <Tangent> { 0.916200 0.106069 -0.386428 }
+        <Binormal> { -0.094614 0.225632 -0.162392 }
+      }
+      <Normal> { 0.805811 -0.083956 -0.586138 }
+    }
+    <Vertex> 3151 {
+      -0.69407248497 0.0697379484773 3.2663860321
+      <UV>  {
+        0.532679 0.741344
+        <Tangent> { -0.206257 0.318511 -0.925208 }
+        <Binormal> { -0.533309 -0.828406 -0.166295 }
+      }
+      <Normal> { 0.827754 -0.471999 -0.303323 }
+    }
+    <Vertex> 3152 {
+      -0.714304089546 0.0848592668772 3.26632356644
+      <UV>  {
+        0.524943 0.744316
+        <Tangent> { 0.115964 0.771286 -0.625836 }
+        <Binormal> { -0.810051 -0.289312 -0.506648 }
+      }
+      <Normal> { 0.565081 -0.610614 -0.554796 }
+    }
+    <Vertex> 3153 {
+      -0.714304089546 0.0848592668772 3.26632356644
+      <UV>  {
+        0.524943 0.744316
+        <Tangent> { 0.115964 0.771286 -0.625836 }
+        <Binormal> { -0.810051 -0.289312 -0.506648 }
+      }
+      <Normal> { 0.565081 -0.610614 -0.554796 }
+    }
+    <Vertex> 3154 {
+      -0.666435539722 0.0829012021422 3.24570846558
+      <UV>  {
+        0.524300 0.742668
+        <Tangent> { 0.712023 0.592296 -0.377106 }
+        <Binormal> { -0.505973 0.407439 -0.315401 }
+      }
+      <Normal> { 0.525681 -0.005676 -0.850642 }
+    }
+    <Vertex> 3155 {
+      -0.666435539722 0.0681331828237 3.2559132576
+      <UV>  {
+        0.529924 0.734752
+        <Tangent> { 0.916200 0.106069 -0.386428 }
+        <Binormal> { -0.094614 0.225632 -0.162392 }
+      }
+      <Normal> { 0.805811 -0.083956 -0.586138 }
+    }
+    <Vertex> 3156 {
+      -0.666435539722 0.0829012021422 3.24570846558
+      <UV>  {
+        0.524300 0.742668
+        <Tangent> { 0.712023 0.592296 -0.377106 }
+        <Binormal> { -0.505973 0.407439 -0.315401 }
+      }
+      <Normal> { 0.525681 -0.005676 -0.850642 }
+    }
+    <Vertex> 3157 {
+      -0.714304089546 0.0848592668772 3.26632356644
+      <UV>  {
+        0.524943 0.744316
+        <Tangent> { 0.115964 0.771286 -0.625836 }
+        <Binormal> { -0.810051 -0.289312 -0.506648 }
+      }
+      <Normal> { 0.565081 -0.610614 -0.554796 }
+    }
+    <Vertex> 3158 {
+      -0.721709430218 0.147110790014 3.23403358459
+      <UV>  {
+        0.523751 0.744681
+        <Tangent> { 0.251859 0.945561 -0.206112 }
+        <Binormal> { -0.836427 0.157757 -0.298348 }
+      }
+      <Normal> { 0.140843 -0.655812 -0.741630 }
+    }
+    <Vertex> 3159 {
+      -0.721709430218 0.147110790014 3.23403358459
+      <UV>  {
+        0.523751 0.744681
+        <Tangent> { 0.251859 0.945561 -0.206112 }
+        <Binormal> { -0.836427 0.157757 -0.298348 }
+      }
+      <Normal> { 0.140843 -0.655812 -0.741630 }
+    }
+    <Vertex> 3160 {
+      -0.666435539722 0.144849777222 3.21022963524
+      <UV>  {
+        0.523400 0.743807
+        <Tangent> { 0.663350 0.747880 -0.025332 }
+        <Binormal> { -0.737010 0.649316 -0.129675 }
+      }
+      <Normal> { 0.170385 -0.003388 -0.985351 }
+    }
+    <Vertex> 3161 {
+      -0.666435539722 0.0829012021422 3.24570846558
+      <UV>  {
+        0.524300 0.742668
+        <Tangent> { 0.712023 0.592296 -0.377106 }
+        <Binormal> { -0.505973 0.407439 -0.315401 }
+      }
+      <Normal> { 0.525681 -0.005676 -0.850642 }
+    }
+    <Vertex> 3162 {
+      -0.666435539722 0.144849777222 3.21022963524
+      <UV>  {
+        0.523400 0.743807
+        <Tangent> { 0.663350 0.747880 -0.025332 }
+        <Binormal> { -0.737010 0.649316 -0.129675 }
+      }
+      <Normal> { 0.170385 -0.003388 -0.985351 }
+    }
+    <Vertex> 3163 {
+      -0.721709430218 0.147110790014 3.23403358459
+      <UV>  {
+        0.523751 0.744681
+        <Tangent> { 0.251859 0.945561 -0.206112 }
+        <Binormal> { -0.836427 0.157757 -0.298348 }
+      }
+      <Normal> { 0.140843 -0.655812 -0.741630 }
+    }
+    <Vertex> 3164 {
+      -0.714304089546 0.213278487325 3.24297380447
+      <UV>  {
+        0.523161 0.744852
+        <Tangent> { 0.442199 0.843934 0.303704 }
+        <Binormal> { -0.422878 0.174022 0.132146 }
+      }
+      <Normal> { -0.447554 -0.555315 -0.700919 }
+    }
+    <Vertex> 3165 {
+      -0.714304089546 0.213278487325 3.24297380447
+      <UV>  {
+        0.523161 0.744852
+        <Tangent> { 0.442199 0.843934 0.303704 }
+        <Binormal> { -0.422878 0.174022 0.132146 }
+      }
+      <Normal> { -0.447554 -0.555315 -0.700919 }
+    }
+    <Vertex> 3166 {
+      -0.666435539722 0.211320370436 3.22235894203
+      <UV>  {
+        0.522951 0.744364
+        <Tangent> { 0.635691 0.637273 0.435638 }
+        <Binormal> { -0.567728 0.345101 0.323607 }
+      }
+      <Normal> { -0.484146 0.023713 -0.874660 }
+    }
+    <Vertex> 3167 {
+      -0.666435539722 0.144849777222 3.21022963524
+      <UV>  {
+        0.523400 0.743807
+        <Tangent> { 0.663350 0.747880 -0.025332 }
+        <Binormal> { -0.737010 0.649316 -0.129675 }
+      }
+      <Normal> { 0.170385 -0.003388 -0.985351 }
+    }
+    <Vertex> 3168 {
+      -0.666435539722 0.211320370436 3.22235894203
+      <UV>  {
+        0.522951 0.744364
+        <Tangent> { 0.635691 0.637273 0.435638 }
+        <Binormal> { -0.567728 0.345101 0.323607 }
+      }
+      <Normal> { -0.484146 0.023713 -0.874660 }
+    }
+    <Vertex> 3169 {
+      -0.714304089546 0.213278487325 3.24297380447
+      <UV>  {
+        0.523161 0.744852
+        <Tangent> { 0.442199 0.843934 0.303704 }
+        <Binormal> { -0.422878 0.174022 0.132146 }
+      }
+      <Normal> { -0.447554 -0.555315 -0.700919 }
+    }
+    <Vertex> 3170 {
+      -0.69407248497 0.265632808208 3.29074835777
+      <UV>  {
+        0.522755 0.744994
+        <Tangent> { 0.548909 0.539771 0.638237 }
+        <Binormal> { -0.065712 -0.264870 0.280521 }
+      }
+      <Normal> { -0.825587 -0.300790 -0.477401 }
+    }
+    <Vertex> 3171 {
+      -0.69407248497 0.265632808208 3.29074835777
+      <UV>  {
+        0.522755 0.744994
+        <Tangent> { 0.548909 0.539771 0.638237 }
+        <Binormal> { -0.065712 -0.264870 0.280521 }
+      }
+      <Normal> { -0.825587 -0.300790 -0.477401 }
+    }
+    <Vertex> 3172 {
+      -0.666435539722 0.264502316713 3.27884626389
+      <UV>  {
+        0.522650 0.744766
+        <Tangent> { 0.602956 0.384950 0.698754 }
+        <Binormal> { -0.243944 -0.265358 0.356687 }
+      }
+      <Normal> { -0.842402 0.053743 -0.536149 }
+    }
+    <Vertex> 3173 {
+      -0.666435539722 0.211320370436 3.22235894203
+      <UV>  {
+        0.522951 0.744364
+        <Tangent> { 0.635691 0.637273 0.435638 }
+        <Binormal> { -0.567728 0.345101 0.323607 }
+      }
+      <Normal> { -0.484146 0.023713 -0.874660 }
+    }
+    <Vertex> 3174 {
+      -0.666435539722 0.290145397186 3.36455583572
+      <UV>  {
+        0.522395 0.745149
+        <Tangent> { 0.558598 0.078440 0.825721 }
+        <Binormal> { -0.007546 -0.768131 0.078074 }
+      }
+      <Normal> { -0.995331 0.000000 -0.096194 }
+    }
+    <Vertex> 3175 {
+      -0.666435539722 0.264502316713 3.27884626389
+      <UV>  {
+        0.522650 0.744766
+        <Tangent> { 0.602956 0.384950 0.698754 }
+        <Binormal> { -0.243944 -0.265358 0.356687 }
+      }
+      <Normal> { -0.842402 0.053743 -0.536149 }
+    }
+    <Vertex> 3176 {
+      -0.69407248497 0.265632808208 3.29074835777
+      <UV>  {
+        0.522755 0.744994
+        <Tangent> { 0.548909 0.539771 0.638237 }
+        <Binormal> { -0.065712 -0.264870 0.280521 }
+      }
+      <Normal> { -0.825587 -0.300790 -0.477401 }
+    }
+    <Vertex> 3177 {
+      -0.666435539722 0.0598407797515 3.34645032883
+      <UV>  {
+        0.502038 0.777562
+        <Tangent> { -0.164137 0.094392 0.981911 }
+        <Binormal> { 0.009143 0.993165 -0.093946 }
+      }
+      <Normal> { 0.995270 0.000000 0.096866 }
+    }
+    <Vertex> 3178 {
+      -0.666435539722 0.0681331828237 3.2559132576
+      <UV>  {
+        0.518448 0.771490
+        <Tangent> { -0.160782 -0.090023 0.982876 }
+        <Binormal> { 0.135285 0.697772 0.086040 }
+      }
+      <Normal> { 0.805811 -0.083956 -0.586138 }
+    }
+    <Vertex> 3179 {
+      -0.638798594475 0.0697379484773 3.2663860321
+      <UV>  {
+        0.518448 0.783634
+        <Tangent> { -0.158953 -0.092724 0.982922 }
+        <Binormal> { -0.300278 0.744895 0.021710 }
+      }
+      <Normal> { 0.828822 0.346904 -0.438948 }
+    }
+    <Vertex> 3180 {
+      -0.638798594475 0.0697379484773 3.2663860321
+      <UV>  {
+        0.525151 0.730947
+        <Tangent> { 0.892961 0.084662 0.442100 }
+        <Binormal> { -0.190529 0.758385 0.239602 }
+      }
+      <Normal> { 0.828822 0.346904 -0.438948 }
+    }
+    <Vertex> 3181 {
+      -0.666435539722 0.0681331828237 3.2559132576
+      <UV>  {
+        0.529924 0.734752
+        <Tangent> { 0.916200 0.106069 -0.386428 }
+        <Binormal> { -0.094614 0.225632 -0.162392 }
+      }
+      <Normal> { 0.805811 -0.083956 -0.586138 }
+    }
+    <Vertex> 3182 {
+      -0.666435539722 0.0829012021422 3.24570846558
+      <UV>  {
+        0.524300 0.742668
+        <Tangent> { 0.712023 0.592296 -0.377106 }
+        <Binormal> { -0.505973 0.407439 -0.315401 }
+      }
+      <Normal> { 0.525681 -0.005676 -0.850642 }
+    }
+    <Vertex> 3183 {
+      -0.666435539722 0.0829012021422 3.24570846558
+      <UV>  {
+        0.524300 0.742668
+        <Tangent> { 0.712023 0.592296 -0.377106 }
+        <Binormal> { -0.505973 0.407439 -0.315401 }
+      }
+      <Normal> { 0.525681 -0.005676 -0.850642 }
+    }
+    <Vertex> 3184 {
+      -0.618566989899 0.0848592594266 3.26632356644
+      <UV>  {
+        0.523147 0.741685
+        <Tangent> { 0.769233 0.444640 0.458886 }
+        <Binormal> { -0.537845 0.697579 0.225668 }
+      }
+      <Normal> { 0.539811 0.605396 -0.584826 }
+    }
+    <Vertex> 3185 {
+      -0.638798594475 0.0697379484773 3.2663860321
+      <UV>  {
+        0.525151 0.730947
+        <Tangent> { 0.892961 0.084662 0.442100 }
+        <Binormal> { -0.190529 0.758385 0.239602 }
+      }
+      <Normal> { 0.828822 0.346904 -0.438948 }
+    }
+    <Vertex> 3186 {
+      -0.618566989899 0.0848592594266 3.26632356644
+      <UV>  {
+        0.523147 0.741685
+        <Tangent> { 0.769233 0.444640 0.458886 }
+        <Binormal> { -0.537845 0.697579 0.225668 }
+      }
+      <Normal> { 0.539811 0.605396 -0.584826 }
+    }
+    <Vertex> 3187 {
+      -0.666435539722 0.0829012021422 3.24570846558
+      <UV>  {
+        0.524300 0.742668
+        <Tangent> { 0.712023 0.592296 -0.377106 }
+        <Binormal> { -0.505973 0.407439 -0.315401 }
+      }
+      <Normal> { 0.525681 -0.005676 -0.850642 }
+    }
+    <Vertex> 3188 {
+      -0.666435539722 0.144849777222 3.21022963524
+      <UV>  {
+        0.523400 0.743807
+        <Tangent> { 0.663350 0.747880 -0.025332 }
+        <Binormal> { -0.737010 0.649316 -0.129675 }
+      }
+      <Normal> { 0.170385 -0.003388 -0.985351 }
+    }
+    <Vertex> 3189 {
+      -0.666435539722 0.144849777222 3.21022963524
+      <UV>  {
+        0.523400 0.743807
+        <Tangent> { 0.663350 0.747880 -0.025332 }
+        <Binormal> { -0.737010 0.649316 -0.129675 }
+      }
+      <Normal> { 0.170385 -0.003388 -0.985351 }
+    }
+    <Vertex> 3190 {
+      -0.611161589622 0.147110790014 3.23403358459
+      <UV>  {
+        0.522780 0.743293
+        <Tangent> { 0.700855 0.366529 0.611930 }
+        <Binormal> { -0.675239 0.604246 0.411437 }
+      }
+      <Normal> { 0.150273 0.665639 -0.730949 }
+    }
+    <Vertex> 3191 {
+      -0.618566989899 0.0848592594266 3.26632356644
+      <UV>  {
+        0.523147 0.741685
+        <Tangent> { 0.769233 0.444640 0.458886 }
+        <Binormal> { -0.537845 0.697579 0.225668 }
+      }
+      <Normal> { 0.539811 0.605396 -0.584826 }
+    }
+    <Vertex> 3192 {
+      -0.611161589622 0.147110790014 3.23403358459
+      <UV>  {
+        0.522780 0.743293
+        <Tangent> { 0.700855 0.366529 0.611930 }
+        <Binormal> { -0.675239 0.604246 0.411437 }
+      }
+      <Normal> { 0.150273 0.665639 -0.730949 }
+    }
+    <Vertex> 3193 {
+      -0.666435539722 0.144849777222 3.21022963524
+      <UV>  {
+        0.523400 0.743807
+        <Tangent> { 0.663350 0.747880 -0.025332 }
+        <Binormal> { -0.737010 0.649316 -0.129675 }
+      }
+      <Normal> { 0.170385 -0.003388 -0.985351 }
+    }
+    <Vertex> 3194 {
+      -0.666435539722 0.211320370436 3.22235894203
+      <UV>  {
+        0.522951 0.744364
+        <Tangent> { 0.635691 0.637273 0.435638 }
+        <Binormal> { -0.567728 0.345101 0.323607 }
+      }
+      <Normal> { -0.484146 0.023713 -0.874660 }
+    }
+    <Vertex> 3195 {
+      -0.666435539722 0.211320370436 3.22235894203
+      <UV>  {
+        0.522951 0.744364
+        <Tangent> { 0.635691 0.637273 0.435638 }
+        <Binormal> { -0.567728 0.345101 0.323607 }
+      }
+      <Normal> { -0.484146 0.023713 -0.874660 }
+    }
+    <Vertex> 3196 {
+      -0.618566989899 0.213278472424 3.24297380447
+      <UV>  {
+        0.522592 0.744085
+        <Tangent> { 0.619922 0.262330 0.739513 }
+        <Binormal> { -0.602134 0.078767 0.476817 }
+      }
+      <Normal> { -0.460768 0.574175 -0.676717 }
+    }
+    <Vertex> 3197 {
+      -0.611161589622 0.147110790014 3.23403358459
+      <UV>  {
+        0.522780 0.743293
+        <Tangent> { 0.700855 0.366529 0.611930 }
+        <Binormal> { -0.675239 0.604246 0.411437 }
+      }
+      <Normal> { 0.150273 0.665639 -0.730949 }
+    }
+    <Vertex> 3198 {
+      -0.618566989899 0.213278472424 3.24297380447
+      <UV>  {
+        0.522592 0.744085
+        <Tangent> { 0.619922 0.262330 0.739513 }
+        <Binormal> { -0.602134 0.078767 0.476817 }
+      }
+      <Normal> { -0.460768 0.574175 -0.676717 }
+    }
+    <Vertex> 3199 {
+      -0.666435539722 0.211320370436 3.22235894203
+      <UV>  {
+        0.522951 0.744364
+        <Tangent> { 0.635691 0.637273 0.435638 }
+        <Binormal> { -0.567728 0.345101 0.323607 }
+      }
+      <Normal> { -0.484146 0.023713 -0.874660 }
+    }
+    <Vertex> 3200 {
+      -0.666435539722 0.264502316713 3.27884626389
+      <UV>  {
+        0.522650 0.744766
+        <Tangent> { 0.602956 0.384950 0.698754 }
+        <Binormal> { -0.243944 -0.265358 0.356687 }
+      }
+      <Normal> { -0.842402 0.053743 -0.536149 }
+    }
+    <Vertex> 3201 {
+      -0.666435539722 0.264502316713 3.27884626389
+      <UV>  {
+        0.522650 0.744766
+        <Tangent> { 0.602956 0.384950 0.698754 }
+        <Binormal> { -0.243944 -0.265358 0.356687 }
+      }
+      <Normal> { -0.842402 0.053743 -0.536149 }
+    }
+    <Vertex> 3202 {
+      -0.638798594475 0.265632808208 3.29074835777
+      <UV>  {
+        0.522478 0.744642
+        <Tangent> { 0.577996 0.151005 0.801947 }
+        <Binormal> { -0.368872 -0.404545 0.342036 }
+      }
+      <Normal> { -0.817499 0.378185 -0.434339 }
+    }
+    <Vertex> 3203 {
+      -0.618566989899 0.213278472424 3.24297380447
+      <UV>  {
+        0.522592 0.744085
+        <Tangent> { 0.619922 0.262330 0.739513 }
+        <Binormal> { -0.602134 0.078767 0.476817 }
+      }
+      <Normal> { -0.460768 0.574175 -0.676717 }
+    }
+    <Vertex> 3204 {
+      -0.666435539722 0.290145397186 3.36455583572
+      <UV>  {
+        0.522395 0.745149
+        <Tangent> { 0.558598 0.078440 0.825721 }
+        <Binormal> { -0.007546 -0.768131 0.078074 }
+      }
+      <Normal> { -0.995331 0.000000 -0.096194 }
+    }
+    <Vertex> 3205 {
+      -0.638798594475 0.265632808208 3.29074835777
+      <UV>  {
+        0.522478 0.744642
+        <Tangent> { 0.577996 0.151005 0.801947 }
+        <Binormal> { -0.368872 -0.404545 0.342036 }
+      }
+      <Normal> { -0.817499 0.378185 -0.434339 }
+    }
+    <Vertex> 3206 {
+      -0.666435539722 0.264502316713 3.27884626389
+      <UV>  {
+        0.522650 0.744766
+        <Tangent> { 0.602956 0.384950 0.698754 }
+        <Binormal> { -0.243944 -0.265358 0.356687 }
+      }
+      <Normal> { -0.842402 0.053743 -0.536149 }
+    }
+    <Vertex> 3207 {
+      -0.666435539722 0.0598407797515 3.34645032883
+      <UV>  {
+        0.502038 0.777562
+        <Tangent> { -0.164137 0.094392 0.981911 }
+        <Binormal> { 0.009143 0.993165 -0.093946 }
+      }
+      <Normal> { 0.995270 0.000000 0.096866 }
+    }
+    <Vertex> 3208 {
+      -0.638798594475 0.0697379484773 3.2663860321
+      <UV>  {
+        0.518448 0.783634
+        <Tangent> { -0.158953 -0.092724 0.982922 }
+        <Binormal> { -0.300278 0.744895 0.021710 }
+      }
+      <Normal> { 0.828822 0.346904 -0.438948 }
+    }
+    <Vertex> 3209 {
+      -0.618566989899 0.0728265196085 3.29890322685
+      <UV>  {
+        0.514051 0.794152
+        <Tangent> { -0.160255 -0.044976 0.986050 }
+        <Binormal> { -0.564886 0.776601 -0.056384 }
+      }
+      <Normal> { 0.807001 0.578326 -0.119449 }
+    }
+    <Vertex> 3210 {
+      -0.618566989899 0.0728265196085 3.29890322685
+      <UV>  {
+        0.519640 0.730947
+        <Tangent> { 0.438895 0.357818 0.824219 }
+        <Binormal> { -0.519408 0.717571 -0.034935 }
+      }
+      <Normal> { 0.807001 0.578326 -0.119449 }
+    }
+    <Vertex> 3211 {
+      -0.638798594475 0.0697379484773 3.2663860321
+      <UV>  {
+        0.525151 0.730947
+        <Tangent> { 0.892961 0.084662 0.442100 }
+        <Binormal> { -0.190529 0.758385 0.239602 }
+      }
+      <Normal> { 0.828822 0.346904 -0.438948 }
+    }
+    <Vertex> 3212 {
+      -0.618566989899 0.0848592594266 3.26632356644
+      <UV>  {
+        0.523147 0.741685
+        <Tangent> { 0.769233 0.444640 0.458886 }
+        <Binormal> { -0.537845 0.697579 0.225668 }
+      }
+      <Normal> { 0.539811 0.605396 -0.584826 }
+    }
+    <Vertex> 3213 {
+      -0.618566989899 0.0848592594266 3.26632356644
+      <UV>  {
+        0.523147 0.741685
+        <Tangent> { 0.769233 0.444640 0.458886 }
+        <Binormal> { -0.537845 0.697579 0.225668 }
+      }
+      <Normal> { 0.539811 0.605396 -0.584826 }
+    }
+    <Vertex> 3214 {
+      -0.583524644375 0.118531361222 3.3226442337
+      <UV>  {
+        0.521792 0.741630
+        <Tangent> { 0.373818 0.162825 0.913098 }
+        <Binormal> { -0.802164 0.533781 0.233218 }
+      }
+      <Normal> { 0.498398 0.840968 -0.210517 }
+    }
+    <Vertex> 3215 {
+      -0.618566989899 0.0728265196085 3.29890322685
+      <UV>  {
+        0.519640 0.730947
+        <Tangent> { 0.438895 0.357818 0.824219 }
+        <Binormal> { -0.519408 0.717571 -0.034935 }
+      }
+      <Normal> { 0.807001 0.578326 -0.119449 }
+    }
+    <Vertex> 3216 {
+      -0.583524644375 0.118531361222 3.3226442337
+      <UV>  {
+        0.521792 0.741630
+        <Tangent> { 0.373818 0.162825 0.913098 }
+        <Binormal> { -0.802164 0.533781 0.233218 }
+      }
+      <Normal> { 0.498398 0.840968 -0.210517 }
+    }
+    <Vertex> 3217 {
+      -0.618566989899 0.0848592594266 3.26632356644
+      <UV>  {
+        0.523147 0.741685
+        <Tangent> { 0.769233 0.444640 0.458886 }
+        <Binormal> { -0.537845 0.697579 0.225668 }
+      }
+      <Normal> { 0.539811 0.605396 -0.584826 }
+    }
+    <Vertex> 3218 {
+      -0.611161589622 0.147110790014 3.23403358459
+      <UV>  {
+        0.522780 0.743293
+        <Tangent> { 0.700855 0.366529 0.611930 }
+        <Binormal> { -0.675239 0.604246 0.411437 }
+      }
+      <Normal> { 0.150273 0.665639 -0.730949 }
+    }
+    <Vertex> 3219 {
+      -0.611161589622 0.147110790014 3.23403358459
+      <UV>  {
+        0.522780 0.743293
+        <Tangent> { 0.700855 0.366529 0.611930 }
+        <Binormal> { -0.675239 0.604246 0.411437 }
+      }
+      <Normal> { 0.150273 0.665639 -0.730949 }
+    }
+    <Vertex> 3220 {
+      -0.570698201656 0.153288006783 3.29906749725
+      <UV>  {
+        0.522056 0.743277
+        <Tangent> { 0.371017 -0.040301 0.927751 }
+        <Binormal> { -0.848615 0.265859 0.350918 }
+      }
+      <Normal> { 0.151982 0.929319 -0.336528 }
+    }
+    <Vertex> 3221 {
+      -0.583524644375 0.118531361222 3.3226442337
+      <UV>  {
+        0.521792 0.741630
+        <Tangent> { 0.373818 0.162825 0.913098 }
+        <Binormal> { -0.802164 0.533781 0.233218 }
+      }
+      <Normal> { 0.498398 0.840968 -0.210517 }
+    }
+    <Vertex> 3222 {
+      -0.570698201656 0.153288006783 3.29906749725
+      <UV>  {
+        0.522056 0.743277
+        <Tangent> { 0.371017 -0.040301 0.927751 }
+        <Binormal> { -0.848615 0.265859 0.350918 }
+      }
+      <Normal> { 0.151982 0.929319 -0.336528 }
+    }
+    <Vertex> 3223 {
+      -0.611161589622 0.147110790014 3.23403358459
+      <UV>  {
+        0.522780 0.743293
+        <Tangent> { 0.700855 0.366529 0.611930 }
+        <Binormal> { -0.675239 0.604246 0.411437 }
+      }
+      <Normal> { 0.150273 0.665639 -0.730949 }
+    }
+    <Vertex> 3224 {
+      -0.618566989899 0.213278472424 3.24297380447
+      <UV>  {
+        0.522592 0.744085
+        <Tangent> { 0.619922 0.262330 0.739513 }
+        <Binormal> { -0.602134 0.078767 0.476817 }
+      }
+      <Normal> { -0.460768 0.574175 -0.676717 }
+    }
+    <Vertex> 3225 {
+      -0.618566989899 0.213278472424 3.24297380447
+      <UV>  {
+        0.522592 0.744085
+        <Tangent> { 0.619922 0.262330 0.739513 }
+        <Binormal> { -0.602134 0.078767 0.476817 }
+      }
+      <Normal> { -0.460768 0.574175 -0.676717 }
+    }
+    <Vertex> 3226 {
+      -0.583524644375 0.218628108501 3.29929494858
+      <UV>  {
+        0.522181 0.744092
+        <Tangent> { 0.433597 -0.099546 0.895591 }
+        <Binormal> { -0.712457 -0.236305 0.318667 }
+      }
+      <Normal> { -0.430860 0.833857 -0.344951 }
+    }
+    <Vertex> 3227 {
+      -0.570698201656 0.153288006783 3.29906749725
+      <UV>  {
+        0.522056 0.743277
+        <Tangent> { 0.371017 -0.040301 0.927751 }
+        <Binormal> { -0.848615 0.265859 0.350918 }
+      }
+      <Normal> { 0.151982 0.929319 -0.336528 }
+    }
+    <Vertex> 3228 {
+      -0.583524644375 0.218628108501 3.29929494858
+      <UV>  {
+        0.522181 0.744092
+        <Tangent> { 0.433597 -0.099546 0.895591 }
+        <Binormal> { -0.712457 -0.236305 0.318667 }
+      }
+      <Normal> { -0.430860 0.833857 -0.344951 }
+    }
+    <Vertex> 3229 {
+      -0.618566989899 0.213278472424 3.24297380447
+      <UV>  {
+        0.522592 0.744085
+        <Tangent> { 0.619922 0.262330 0.739513 }
+        <Binormal> { -0.602134 0.078767 0.476817 }
+      }
+      <Normal> { -0.460768 0.574175 -0.676717 }
+    }
+    <Vertex> 3230 {
+      -0.638798594475 0.265632808208 3.29074835777
+      <UV>  {
+        0.522478 0.744642
+        <Tangent> { 0.577996 0.151005 0.801947 }
+        <Binormal> { -0.368872 -0.404545 0.342036 }
+      }
+      <Normal> { -0.817499 0.378185 -0.434339 }
+    }
+    <Vertex> 3231 {
+      -0.638798594475 0.265632808208 3.29074835777
+      <UV>  {
+        0.522478 0.744642
+        <Tangent> { 0.577996 0.151005 0.801947 }
+        <Binormal> { -0.368872 -0.404545 0.342036 }
+      }
+      <Normal> { -0.817499 0.378185 -0.434339 }
+    }
+    <Vertex> 3232 {
+      -0.618566989899 0.268721431494 3.32326507568
+      <UV>  {
+        0.522283 0.744653
+        <Tangent> { 0.501014 -0.081048 0.861636 }
+        <Binormal> { -0.461105 -0.557142 0.215712 }
+      }
+      <Normal> { -0.791253 0.558550 -0.248756 }
+    }
+    <Vertex> 3233 {
+      -0.583524644375 0.218628108501 3.29929494858
+      <UV>  {
+        0.522181 0.744092
+        <Tangent> { 0.433597 -0.099546 0.895591 }
+        <Binormal> { -0.712457 -0.236305 0.318667 }
+      }
+      <Normal> { -0.430860 0.833857 -0.344951 }
+    }
+    <Vertex> 3234 {
+      -0.666435539722 0.290145397186 3.36455583572
+      <UV>  {
+        0.522395 0.745149
+        <Tangent> { 0.558598 0.078440 0.825721 }
+        <Binormal> { -0.007546 -0.768131 0.078074 }
+      }
+      <Normal> { -0.995331 0.000000 -0.096194 }
+    }
+    <Vertex> 3235 {
+      -0.618566989899 0.268721431494 3.32326507568
+      <UV>  {
+        0.522283 0.744653
+        <Tangent> { 0.501014 -0.081048 0.861636 }
+        <Binormal> { -0.461105 -0.557142 0.215712 }
+      }
+      <Normal> { -0.791253 0.558550 -0.248756 }
+    }
+    <Vertex> 3236 {
+      -0.638798594475 0.265632808208 3.29074835777
+      <UV>  {
+        0.522478 0.744642
+        <Tangent> { 0.577996 0.151005 0.801947 }
+        <Binormal> { -0.368872 -0.404545 0.342036 }
+      }
+      <Normal> { -0.817499 0.378185 -0.434339 }
+    }
+    <Vertex> 3237 {
+      -0.666435539722 0.0598407797515 3.34645032883
+      <UV>  {
+        0.502038 0.777562
+        <Tangent> { -0.164137 0.094392 0.981911 }
+        <Binormal> { 0.009143 0.993165 -0.093946 }
+      }
+      <Normal> { 0.995270 0.000000 0.096866 }
+    }
+    <Vertex> 3238 {
+      -0.618566989899 0.0728265196085 3.29890322685
+      <UV>  {
+        0.514051 0.794152
+        <Tangent> { -0.160255 -0.044976 0.986050 }
+        <Binormal> { -0.564886 0.776601 -0.056384 }
+      }
+      <Normal> { 0.807001 0.578326 -0.119449 }
+    }
+    <Vertex> 3239 {
+      -0.611161589622 0.0770456567407 3.34332203865
+      <UV>  {
+        0.506435 0.800224
+        <Tangent> { -0.162803 0.042082 0.985761 }
+        <Binormal> { -0.591802 0.792730 -0.131580 }
+      }
+      <Normal> { 0.797296 0.602130 0.041688 }
+    }
+    <Vertex> 3240 {
+      -0.611161589622 0.0770456567407 3.34332203865
+      <UV>  {
+        0.514867 0.734752
+        <Tangent> { -0.043879 -0.137115 0.989583 }
+        <Binormal> { -0.601574 0.790820 0.082900 }
+      }
+      <Normal> { 0.797296 0.602130 0.041688 }
+    }
+    <Vertex> 3241 {
+      -0.618566989899 0.0728265196085 3.29890322685
+      <UV>  {
+        0.519640 0.730947
+        <Tangent> { 0.438895 0.357818 0.824219 }
+        <Binormal> { -0.519408 0.717571 -0.034935 }
+      }
+      <Normal> { 0.807001 0.578326 -0.119449 }
+    }
+    <Vertex> 3242 {
+      -0.583524644375 0.118531361222 3.3226442337
+      <UV>  {
+        0.521792 0.741630
+        <Tangent> { 0.373818 0.162825 0.913098 }
+        <Binormal> { -0.802164 0.533781 0.233218 }
+      }
+      <Normal> { 0.498398 0.840968 -0.210517 }
+    }
+    <Vertex> 3243 {
+      -0.583524644375 0.118531361222 3.3226442337
+      <UV>  {
+        0.521792 0.741630
+        <Tangent> { 0.373818 0.162825 0.913098 }
+        <Binormal> { -0.802164 0.533781 0.233218 }
+      }
+      <Normal> { 0.498398 0.840968 -0.210517 }
+    }
+    <Vertex> 3244 {
+      -0.570698201656 0.125839084387 3.39958024025
+      <UV>  {
+        0.520599 0.742518
+        <Tangent> { -0.043353 -0.198727 0.979096 }
+        <Binormal> { -0.818898 0.540531 0.073452 }
+      }
+      <Normal> { 0.551561 0.834040 0.011536 }
+    }
+    <Vertex> 3245 {
+      -0.611161589622 0.0770456567407 3.34332203865
+      <UV>  {
+        0.514867 0.734752
+        <Tangent> { -0.043879 -0.137115 0.989583 }
+        <Binormal> { -0.601574 0.790820 0.082900 }
+      }
+      <Normal> { 0.797296 0.602130 0.041688 }
+    }
+    <Vertex> 3246 {
+      -0.570698201656 0.125839084387 3.39958024025
+      <UV>  {
+        0.520599 0.742518
+        <Tangent> { -0.043353 -0.198727 0.979096 }
+        <Binormal> { -0.818898 0.540531 0.073452 }
+      }
+      <Normal> { 0.551561 0.834040 0.011536 }
+    }
+    <Vertex> 3247 {
+      -0.583524644375 0.118531361222 3.3226442337
+      <UV>  {
+        0.521792 0.741630
+        <Tangent> { 0.373818 0.162825 0.913098 }
+        <Binormal> { -0.802164 0.533781 0.233218 }
+      }
+      <Normal> { 0.498398 0.840968 -0.210517 }
+    }
+    <Vertex> 3248 {
+      -0.570698201656 0.153288006783 3.29906749725
+      <UV>  {
+        0.522056 0.743277
+        <Tangent> { 0.371017 -0.040301 0.927751 }
+        <Binormal> { -0.848615 0.265859 0.350918 }
+      }
+      <Normal> { 0.151982 0.929319 -0.336528 }
+    }
+    <Vertex> 3249 {
+      -0.570698201656 0.153288006783 3.29906749725
+      <UV>  {
+        0.522056 0.743277
+        <Tangent> { 0.371017 -0.040301 0.927751 }
+        <Binormal> { -0.848615 0.265859 0.350918 }
+      }
+      <Normal> { 0.151982 0.929319 -0.336528 }
+    }
+    <Vertex> 3250 {
+      -0.555887639523 0.161726221442 3.38790535927
+      <UV>  {
+        0.521424 0.743762
+        <Tangent> { 0.079956 -0.380046 0.921505 }
+        <Binormal> { -0.918209 0.060456 0.104604 }
+      }
+      <Normal> { 0.065310 0.997833 -0.003418 }
+    }
+    <Vertex> 3251 {
+      -0.570698201656 0.125839084387 3.39958024025
+      <UV>  {
+        0.520599 0.742518
+        <Tangent> { -0.043353 -0.198727 0.979096 }
+        <Binormal> { -0.818898 0.540531 0.073452 }
+      }
+      <Normal> { 0.551561 0.834040 0.011536 }
+    }
+    <Vertex> 3252 {
+      -0.555887639523 0.161726221442 3.38790535927
+      <UV>  {
+        0.521424 0.743762
+        <Tangent> { 0.079956 -0.380046 0.921505 }
+        <Binormal> { -0.918209 0.060456 0.104604 }
+      }
+      <Normal> { 0.065310 0.997833 -0.003418 }
+    }
+    <Vertex> 3253 {
+      -0.570698201656 0.153288006783 3.29906749725
+      <UV>  {
+        0.522056 0.743277
+        <Tangent> { 0.371017 -0.040301 0.927751 }
+        <Binormal> { -0.848615 0.265859 0.350918 }
+      }
+      <Normal> { 0.151982 0.929319 -0.336528 }
+    }
+    <Vertex> 3254 {
+      -0.583524644375 0.218628108501 3.29929494858
+      <UV>  {
+        0.522181 0.744092
+        <Tangent> { 0.433597 -0.099546 0.895591 }
+        <Binormal> { -0.712457 -0.236305 0.318667 }
+      }
+      <Normal> { -0.430860 0.833857 -0.344951 }
+    }
+    <Vertex> 3255 {
+      -0.583524644375 0.218628108501 3.29929494858
+      <UV>  {
+        0.522181 0.744092
+        <Tangent> { 0.433597 -0.099546 0.895591 }
+        <Binormal> { -0.712457 -0.236305 0.318667 }
+      }
+      <Normal> { -0.430860 0.833857 -0.344951 }
+    }
+    <Vertex> 3256 {
+      -0.570698201656 0.225935816765 3.37623047829
+      <UV>  {
+        0.521827 0.744382
+        <Tangent> { 0.278312 -0.403575 0.871590 }
+        <Binormal> { -0.763731 -0.379642 0.068085 }
+      }
+      <Normal> { -0.447462 0.893490 -0.037233 }
+    }
+    <Vertex> 3257 {
+      -0.555887639523 0.161726221442 3.38790535927
+      <UV>  {
+        0.521424 0.743762
+        <Tangent> { 0.079956 -0.380046 0.921505 }
+        <Binormal> { -0.918209 0.060456 0.104604 }
+      }
+      <Normal> { 0.065310 0.997833 -0.003418 }
+    }
+    <Vertex> 3258 {
+      -0.570698201656 0.225935816765 3.37623047829
+      <UV>  {
+        0.521827 0.744382
+        <Tangent> { 0.278312 -0.403575 0.871590 }
+        <Binormal> { -0.763731 -0.379642 0.068085 }
+      }
+      <Normal> { -0.447462 0.893490 -0.037233 }
+    }
+    <Vertex> 3259 {
+      -0.583524644375 0.218628108501 3.29929494858
+      <UV>  {
+        0.522181 0.744092
+        <Tangent> { 0.433597 -0.099546 0.895591 }
+        <Binormal> { -0.712457 -0.236305 0.318667 }
+      }
+      <Normal> { -0.430860 0.833857 -0.344951 }
+    }
+    <Vertex> 3260 {
+      -0.618566989899 0.268721431494 3.32326507568
+      <UV>  {
+        0.522283 0.744653
+        <Tangent> { 0.501014 -0.081048 0.861636 }
+        <Binormal> { -0.461105 -0.557142 0.215712 }
+      }
+      <Normal> { -0.791253 0.558550 -0.248756 }
+    }
+    <Vertex> 3261 {
+      -0.618566989899 0.268721431494 3.32326507568
+      <UV>  {
+        0.522283 0.744653
+        <Tangent> { 0.501014 -0.081048 0.861636 }
+        <Binormal> { -0.461105 -0.557142 0.215712 }
+      }
+      <Normal> { -0.791253 0.558550 -0.248756 }
+    }
+    <Vertex> 3262 {
+      -0.611161589622 0.272940516472 3.3676841259
+      <UV>  {
+        0.522119 0.744797
+        <Tangent> { 0.443789 -0.270578 0.854306 }
+        <Binormal> { -0.496962 -0.661266 0.048721 }
+      }
+      <Normal> { -0.800165 0.597644 -0.050295 }
+    }
+    <Vertex> 3263 {
+      -0.570698201656 0.225935816765 3.37623047829
+      <UV>  {
+        0.521827 0.744382
+        <Tangent> { 0.278312 -0.403575 0.871590 }
+        <Binormal> { -0.763731 -0.379642 0.068085 }
+      }
+      <Normal> { -0.447462 0.893490 -0.037233 }
+    }
+    <Vertex> 3264 {
+      -0.666435539722 0.290145397186 3.36455583572
+      <UV>  {
+        0.522395 0.745149
+        <Tangent> { 0.558598 0.078440 0.825721 }
+        <Binormal> { -0.007546 -0.768131 0.078074 }
+      }
+      <Normal> { -0.995331 0.000000 -0.096194 }
+    }
+    <Vertex> 3265 {
+      -0.611161589622 0.272940516472 3.3676841259
+      <UV>  {
+        0.522119 0.744797
+        <Tangent> { 0.443789 -0.270578 0.854306 }
+        <Binormal> { -0.496962 -0.661266 0.048721 }
+      }
+      <Normal> { -0.800165 0.597644 -0.050295 }
+    }
+    <Vertex> 3266 {
+      -0.618566989899 0.268721431494 3.32326507568
+      <UV>  {
+        0.522283 0.744653
+        <Tangent> { 0.501014 -0.081048 0.861636 }
+        <Binormal> { -0.461105 -0.557142 0.215712 }
+      }
+      <Normal> { -0.791253 0.558550 -0.248756 }
+    }
+    <Vertex> 3267 {
+      -0.666435539722 0.0598407797515 3.34645032883
+      <UV>  {
+        0.502038 0.777562
+        <Tangent> { -0.164137 0.094392 0.981911 }
+        <Binormal> { 0.009143 0.993165 -0.093946 }
+      }
+      <Normal> { 0.995270 0.000000 0.096866 }
+    }
+    <Vertex> 3268 {
+      -0.611161589622 0.0770456567407 3.34332203865
+      <UV>  {
+        0.506435 0.800224
+        <Tangent> { -0.162803 0.042082 0.985761 }
+        <Binormal> { -0.591802 0.792730 -0.131580 }
+      }
+      <Normal> { 0.797296 0.602130 0.041688 }
+    }
+    <Vertex> 3269 {
+      -0.618566989899 0.0812647491693 3.38774108887
+      <UV>  {
+        0.497641 0.800224
+        <Tangent> { -0.164224 0.144680 0.975755 }
+        <Binormal> { -0.405330 0.886696 -0.199694 }
+      }
+      <Normal> { 0.878018 0.442457 0.182470 }
+    }
+    <Vertex> 3270 {
+      -0.618566989899 0.0812647491693 3.38774108887
+      <UV>  {
+        0.512112 0.741344
+        <Tangent> { -0.732230 -0.642267 -0.226565 }
+        <Binormal> { -0.016949 -0.065318 0.239941 }
+      }
+      <Normal> { 0.878018 0.442457 0.182470 }
+    }
+    <Vertex> 3271 {
+      -0.611161589622 0.0770456567407 3.34332203865
+      <UV>  {
+        0.514867 0.734752
+        <Tangent> { -0.043879 -0.137115 0.989583 }
+        <Binormal> { -0.601574 0.790820 0.082900 }
+      }
+      <Normal> { 0.797296 0.602130 0.041688 }
+    }
+    <Vertex> 3272 {
+      -0.570698201656 0.125839084387 3.39958024025
+      <UV>  {
+        0.520599 0.742518
+        <Tangent> { -0.043353 -0.198727 0.979096 }
+        <Binormal> { -0.818898 0.540531 0.073452 }
+      }
+      <Normal> { 0.551561 0.834040 0.011536 }
+    }
+    <Vertex> 3273 {
+      -0.570698201656 0.125839084387 3.39958024025
+      <UV>  {
+        0.520599 0.742518
+        <Tangent> { -0.043353 -0.198727 0.979096 }
+        <Binormal> { -0.818898 0.540531 0.073452 }
+      }
+      <Normal> { 0.551561 0.834040 0.011536 }
+    }
+    <Vertex> 3274 {
+      -0.583524644375 0.120560646057 3.47651600838
+      <UV>  {
+        0.519887 0.744111
+        <Tangent> { -0.392617 -0.791403 0.468544 }
+        <Binormal> { -0.578575 0.413426 0.213486 }
+      }
+      <Normal> { 0.625660 0.717399 0.306345 }
+    }
+    <Vertex> 3275 {
+      -0.618566989899 0.0812647491693 3.38774108887
+      <UV>  {
+        0.512112 0.741344
+        <Tangent> { -0.732230 -0.642267 -0.226565 }
+        <Binormal> { -0.016949 -0.065318 0.239941 }
+      }
+      <Normal> { 0.878018 0.442457 0.182470 }
+    }
+    <Vertex> 3276 {
+      -0.583524644375 0.120560646057 3.47651600838
+      <UV>  {
+        0.519887 0.744111
+        <Tangent> { -0.392617 -0.791403 0.468544 }
+        <Binormal> { -0.578575 0.413426 0.213486 }
+      }
+      <Normal> { 0.625660 0.717399 0.306345 }
+    }
+    <Vertex> 3277 {
+      -0.570698201656 0.125839084387 3.39958024025
+      <UV>  {
+        0.520599 0.742518
+        <Tangent> { -0.043353 -0.198727 0.979096 }
+        <Binormal> { -0.818898 0.540531 0.073452 }
+      }
+      <Normal> { 0.551561 0.834040 0.011536 }
+    }
+    <Vertex> 3278 {
+      -0.555887639523 0.161726221442 3.38790535927
+      <UV>  {
+        0.521424 0.743762
+        <Tangent> { 0.079956 -0.380046 0.921505 }
+        <Binormal> { -0.918209 0.060456 0.104604 }
+      }
+      <Normal> { 0.065310 0.997833 -0.003418 }
+    }
+    <Vertex> 3279 {
+      -0.555887639523 0.161726221442 3.38790535927
+      <UV>  {
+        0.521424 0.743762
+        <Tangent> { 0.079956 -0.380046 0.921505 }
+        <Binormal> { -0.918209 0.060456 0.104604 }
+      }
+      <Normal> { 0.065310 0.997833 -0.003418 }
+    }
+    <Vertex> 3280 {
+      -0.570698201656 0.170164451003 3.47674322128
+      <UV>  {
+        0.521052 0.744619
+        <Tangent> { -0.018904 -0.786833 0.616876 }
+        <Binormal> { -0.857264 -0.002694 -0.029707 }
+      }
+      <Normal> { -0.015320 0.933775 0.357433 }
+    }
+    <Vertex> 3281 {
+      -0.583524644375 0.120560646057 3.47651600838
+      <UV>  {
+        0.519887 0.744111
+        <Tangent> { -0.392617 -0.791403 0.468544 }
+        <Binormal> { -0.578575 0.413426 0.213486 }
+      }
+      <Normal> { 0.625660 0.717399 0.306345 }
+    }
+    <Vertex> 3282 {
+      -0.570698201656 0.170164451003 3.47674322128
+      <UV>  {
+        0.521052 0.744619
+        <Tangent> { -0.018904 -0.786833 0.616876 }
+        <Binormal> { -0.857264 -0.002694 -0.029707 }
+      }
+      <Normal> { -0.015320 0.933775 0.357433 }
+    }
+    <Vertex> 3283 {
+      -0.555887639523 0.161726221442 3.38790535927
+      <UV>  {
+        0.521424 0.743762
+        <Tangent> { 0.079956 -0.380046 0.921505 }
+        <Binormal> { -0.918209 0.060456 0.104604 }
+      }
+      <Normal> { 0.065310 0.997833 -0.003418 }
+    }
+    <Vertex> 3284 {
+      -0.570698201656 0.225935816765 3.37623047829
+      <UV>  {
+        0.521827 0.744382
+        <Tangent> { 0.278312 -0.403575 0.871590 }
+        <Binormal> { -0.763731 -0.379642 0.068085 }
+      }
+      <Normal> { -0.447462 0.893490 -0.037233 }
+    }
+    <Vertex> 3285 {
+      -0.570698201656 0.225935816765 3.37623047829
+      <UV>  {
+        0.521827 0.744382
+        <Tangent> { 0.278312 -0.403575 0.871590 }
+        <Binormal> { -0.763731 -0.379642 0.068085 }
+      }
+      <Normal> { -0.447462 0.893490 -0.037233 }
+    }
+    <Vertex> 3286 {
+      -0.583524644375 0.233243525028 3.45316648483
+      <UV>  {
+        0.521625 0.744878
+        <Tangent> { 0.262318 -0.650024 0.713203 }
+        <Binormal> { -0.749683 -0.439809 -0.125114 }
+      }
+      <Normal> { -0.520493 0.812830 0.261483 }
+    }
+    <Vertex> 3287 {
+      -0.570698201656 0.170164451003 3.47674322128
+      <UV>  {
+        0.521052 0.744619
+        <Tangent> { -0.018904 -0.786833 0.616876 }
+        <Binormal> { -0.857264 -0.002694 -0.029707 }
+      }
+      <Normal> { -0.015320 0.933775 0.357433 }
+    }
+    <Vertex> 3288 {
+      -0.583524644375 0.233243525028 3.45316648483
+      <UV>  {
+        0.521625 0.744878
+        <Tangent> { 0.262318 -0.650024 0.713203 }
+        <Binormal> { -0.749683 -0.439809 -0.125114 }
+      }
+      <Normal> { -0.520493 0.812830 0.261483 }
+    }
+    <Vertex> 3289 {
+      -0.570698201656 0.225935816765 3.37623047829
+      <UV>  {
+        0.521827 0.744382
+        <Tangent> { 0.278312 -0.403575 0.871590 }
+        <Binormal> { -0.763731 -0.379642 0.068085 }
+      }
+      <Normal> { -0.447462 0.893490 -0.037233 }
+    }
+    <Vertex> 3290 {
+      -0.611161589622 0.272940516472 3.3676841259
+      <UV>  {
+        0.522119 0.744797
+        <Tangent> { 0.443789 -0.270578 0.854306 }
+        <Binormal> { -0.496962 -0.661266 0.048721 }
+      }
+      <Normal> { -0.800165 0.597644 -0.050295 }
+    }
+    <Vertex> 3291 {
+      -0.611161589622 0.272940516472 3.3676841259
+      <UV>  {
+        0.522119 0.744797
+        <Tangent> { 0.443789 -0.270578 0.854306 }
+        <Binormal> { -0.496962 -0.661266 0.048721 }
+      }
+      <Normal> { -0.800165 0.597644 -0.050295 }
+    }
+    <Vertex> 3292 {
+      -0.618566989899 0.277159631252 3.4121029377
+      <UV>  {
+        0.522028 0.745036
+        <Tangent> { 0.452071 -0.386703 0.803799 }
+        <Binormal> { -0.462980 -0.744586 -0.097827 }
+      }
+      <Normal> { -0.849147 0.509964 0.137242 }
+    }
+    <Vertex> 3293 {
+      -0.583524644375 0.233243525028 3.45316648483
+      <UV>  {
+        0.521625 0.744878
+        <Tangent> { 0.262318 -0.650024 0.713203 }
+        <Binormal> { -0.749683 -0.439809 -0.125114 }
+      }
+      <Normal> { -0.520493 0.812830 0.261483 }
+    }
+    <Vertex> 3294 {
+      -0.666435539722 0.290145397186 3.36455583572
+      <UV>  {
+        0.522395 0.745149
+        <Tangent> { 0.558598 0.078440 0.825721 }
+        <Binormal> { -0.007546 -0.768131 0.078074 }
+      }
+      <Normal> { -0.995331 0.000000 -0.096194 }
+    }
+    <Vertex> 3295 {
+      -0.618566989899 0.277159631252 3.4121029377
+      <UV>  {
+        0.522028 0.745036
+        <Tangent> { 0.452071 -0.386703 0.803799 }
+        <Binormal> { -0.462980 -0.744586 -0.097827 }
+      }
+      <Normal> { -0.849147 0.509964 0.137242 }
+    }
+    <Vertex> 3296 {
+      -0.611161589622 0.272940516472 3.3676841259
+      <UV>  {
+        0.522119 0.744797
+        <Tangent> { 0.443789 -0.270578 0.854306 }
+        <Binormal> { -0.496962 -0.661266 0.048721 }
+      }
+      <Normal> { -0.800165 0.597644 -0.050295 }
+    }
+    <Vertex> 3297 {
+      -0.666435539722 0.0598407797515 3.34645032883
+      <UV>  {
+        0.502038 0.777562
+        <Tangent> { -0.164137 0.094392 0.981911 }
+        <Binormal> { 0.009143 0.993165 -0.093946 }
+      }
+      <Normal> { 0.995270 0.000000 0.096866 }
+    }
+    <Vertex> 3298 {
+      -0.618566989899 0.0812647491693 3.38774108887
+      <UV>  {
+        0.497641 0.800224
+        <Tangent> { -0.164224 0.144680 0.975755 }
+        <Binormal> { -0.405330 0.886696 -0.199694 }
+      }
+      <Normal> { 0.878018 0.442457 0.182470 }
+    }
+    <Vertex> 3299 {
+      -0.638798594475 0.0843533650041 3.4202580452
+      <UV>  {
+        0.490026 0.794152
+        <Tangent> { -0.164035 0.232950 0.958555 }
+        <Binormal> { -0.103128 0.941533 -0.246461 }
+      }
+      <Normal> { 0.926267 0.187078 0.327097 }
+    }
+    <Vertex> 3300 {
+      -0.638798594475 0.0843533650041 3.4202580452
+      <UV>  {
+        0.512112 0.748955
+        <Tangent> { -0.031346 -0.413511 -0.909959 }
+        <Binormal> { 0.034975 -0.832612 0.377158 }
+      }
+      <Normal> { 0.926267 0.187078 0.327097 }
+    }
+    <Vertex> 3301 {
+      -0.618566989899 0.0812647491693 3.38774108887
+      <UV>  {
+        0.512112 0.741344
+        <Tangent> { -0.732230 -0.642267 -0.226565 }
+        <Binormal> { -0.016949 -0.065318 0.239941 }
+      }
+      <Normal> { 0.878018 0.442457 0.182470 }
+    }
+    <Vertex> 3302 {
+      -0.583524644375 0.120560646057 3.47651600838
+      <UV>  {
+        0.519887 0.744111
+        <Tangent> { -0.392617 -0.791403 0.468544 }
+        <Binormal> { -0.578575 0.413426 0.213486 }
+      }
+      <Normal> { 0.625660 0.717399 0.306345 }
+    }
+    <Vertex> 3303 {
+      -0.583524644375 0.120560646057 3.47651600838
+      <UV>  {
+        0.519887 0.744111
+        <Tangent> { -0.392617 -0.791403 0.468544 }
+        <Binormal> { -0.578575 0.413426 0.213486 }
+      }
+      <Normal> { 0.625660 0.717399 0.306345 }
+    }
+    <Vertex> 3304 {
+      -0.618566989899 0.13998247683 3.53283691406
+      <UV>  {
+        0.519848 0.745983
+        <Tangent> { 0.122818 -0.821270 -0.557164 }
+        <Binormal> { -0.285331 -0.442834 0.589849 }
+      }
+      <Normal> { 0.655995 0.416059 0.629688 }
+    }
+    <Vertex> 3305 {
+      -0.638798594475 0.0843533650041 3.4202580452
+      <UV>  {
+        0.512112 0.748955
+        <Tangent> { -0.031346 -0.413511 -0.909959 }
+        <Binormal> { 0.034975 -0.832612 0.377158 }
+      }
+      <Normal> { 0.926267 0.187078 0.327097 }
+    }
+    <Vertex> 3306 {
+      -0.618566989899 0.13998247683 3.53283691406
+      <UV>  {
+        0.519848 0.745983
+        <Tangent> { 0.122818 -0.821270 -0.557164 }
+        <Binormal> { -0.285331 -0.442834 0.589849 }
+      }
+      <Normal> { 0.655995 0.416059 0.629688 }
+    }
+    <Vertex> 3307 {
+      -0.583524644375 0.120560646057 3.47651600838
+      <UV>  {
+        0.519887 0.744111
+        <Tangent> { -0.392617 -0.791403 0.468544 }
+        <Binormal> { -0.578575 0.413426 0.213486 }
+      }
+      <Normal> { 0.625660 0.717399 0.306345 }
+    }
+    <Vertex> 3308 {
+      -0.570698201656 0.170164451003 3.47674322128
+      <UV>  {
+        0.521052 0.744619
+        <Tangent> { -0.018904 -0.786833 0.616876 }
+        <Binormal> { -0.857264 -0.002694 -0.029707 }
+      }
+      <Normal> { -0.015320 0.933775 0.357433 }
+    }
+    <Vertex> 3309 {
+      -0.570698201656 0.170164451003 3.47674322128
+      <UV>  {
+        0.521052 0.744619
+        <Tangent> { -0.018904 -0.786833 0.616876 }
+        <Binormal> { -0.857264 -0.002694 -0.029707 }
+      }
+      <Normal> { -0.015320 0.933775 0.357433 }
+    }
+    <Vertex> 3310 {
+      -0.611161589622 0.176341682673 3.54177713394
+      <UV>  {
+        0.521040 0.745618
+        <Tangent> { 0.296887 -0.940775 0.163708 }
+        <Binormal> { -0.820710 -0.230558 0.163428 }
+      }
+      <Normal> { -0.031404 0.649983 0.759270 }
+    }
+    <Vertex> 3311 {
+      -0.618566989899 0.13998247683 3.53283691406
+      <UV>  {
+        0.519848 0.745983
+        <Tangent> { 0.122818 -0.821270 -0.557164 }
+        <Binormal> { -0.285331 -0.442834 0.589849 }
+      }
+      <Normal> { 0.655995 0.416059 0.629688 }
+    }
+    <Vertex> 3312 {
+      -0.611161589622 0.176341682673 3.54177713394
+      <UV>  {
+        0.521040 0.745618
+        <Tangent> { 0.296887 -0.940775 0.163708 }
+        <Binormal> { -0.820710 -0.230558 0.163428 }
+      }
+      <Normal> { -0.031404 0.649983 0.759270 }
+    }
+    <Vertex> 3313 {
+      -0.570698201656 0.170164451003 3.47674322128
+      <UV>  {
+        0.521052 0.744619
+        <Tangent> { -0.018904 -0.786833 0.616876 }
+        <Binormal> { -0.857264 -0.002694 -0.029707 }
+      }
+      <Normal> { -0.015320 0.933775 0.357433 }
+    }
+    <Vertex> 3314 {
+      -0.583524644375 0.233243525028 3.45316648483
+      <UV>  {
+        0.521625 0.744878
+        <Tangent> { 0.262318 -0.650024 0.713203 }
+        <Binormal> { -0.749683 -0.439809 -0.125114 }
+      }
+      <Normal> { -0.520493 0.812830 0.261483 }
+    }
+    <Vertex> 3315 {
+      -0.583524644375 0.233243525028 3.45316648483
+      <UV>  {
+        0.521625 0.744878
+        <Tangent> { 0.262318 -0.650024 0.713203 }
+        <Binormal> { -0.749683 -0.439809 -0.125114 }
+      }
+      <Normal> { -0.520493 0.812830 0.261483 }
+    }
+    <Vertex> 3316 {
+      -0.618566989899 0.238593146205 3.50948739052
+      <UV>  {
+        0.521630 0.745446
+        <Tangent> { 0.416903 -0.715133 0.561049 }
+        <Binormal> { -0.694813 -0.592678 -0.239148 }
+      }
+      <Normal> { -0.641011 0.525925 0.558977 }
+    }
+    <Vertex> 3317 {
+      -0.611161589622 0.176341682673 3.54177713394
+      <UV>  {
+        0.521040 0.745618
+        <Tangent> { 0.296887 -0.940775 0.163708 }
+        <Binormal> { -0.820710 -0.230558 0.163428 }
+      }
+      <Normal> { -0.031404 0.649983 0.759270 }
+    }
+    <Vertex> 3318 {
+      -0.618566989899 0.238593146205 3.50948739052
+      <UV>  {
+        0.521630 0.745446
+        <Tangent> { 0.416903 -0.715133 0.561049 }
+        <Binormal> { -0.694813 -0.592678 -0.239148 }
+      }
+      <Normal> { -0.641011 0.525925 0.558977 }
+    }
+    <Vertex> 3319 {
+      -0.583524644375 0.233243525028 3.45316648483
+      <UV>  {
+        0.521625 0.744878
+        <Tangent> { 0.262318 -0.650024 0.713203 }
+        <Binormal> { -0.749683 -0.439809 -0.125114 }
+      }
+      <Normal> { -0.520493 0.812830 0.261483 }
+    }
+    <Vertex> 3320 {
+      -0.618566989899 0.277159631252 3.4121029377
+      <UV>  {
+        0.522028 0.745036
+        <Tangent> { 0.452071 -0.386703 0.803799 }
+        <Binormal> { -0.462980 -0.744586 -0.097827 }
+      }
+      <Normal> { -0.849147 0.509964 0.137242 }
+    }
+    <Vertex> 3321 {
+      -0.618566989899 0.277159631252 3.4121029377
+      <UV>  {
+        0.522028 0.745036
+        <Tangent> { 0.452071 -0.386703 0.803799 }
+        <Binormal> { -0.462980 -0.744586 -0.097827 }
+      }
+      <Normal> { -0.849147 0.509964 0.137242 }
+    }
+    <Vertex> 3322 {
+      -0.638798594475 0.280248254538 3.44461989403
+      <UV>  {
+        0.522036 0.745305
+        <Tangent> { 0.519103 -0.380420 0.765384 }
+        <Binormal> { -0.325854 -0.848911 -0.200933 }
+      }
+      <Normal> { -0.915311 0.283700 0.285775 }
+    }
+    <Vertex> 3323 {
+      -0.618566989899 0.238593146205 3.50948739052
+      <UV>  {
+        0.521630 0.745446
+        <Tangent> { 0.416903 -0.715133 0.561049 }
+        <Binormal> { -0.694813 -0.592678 -0.239148 }
+      }
+      <Normal> { -0.641011 0.525925 0.558977 }
+    }
+    <Vertex> 3324 {
+      -0.666435539722 0.290145397186 3.36455583572
+      <UV>  {
+        0.522395 0.745149
+        <Tangent> { 0.558598 0.078440 0.825721 }
+        <Binormal> { -0.007546 -0.768131 0.078074 }
+      }
+      <Normal> { -0.995331 0.000000 -0.096194 }
+    }
+    <Vertex> 3325 {
+      -0.638798594475 0.280248254538 3.44461989403
+      <UV>  {
+        0.522036 0.745305
+        <Tangent> { 0.519103 -0.380420 0.765384 }
+        <Binormal> { -0.325854 -0.848911 -0.200933 }
+      }
+      <Normal> { -0.915311 0.283700 0.285775 }
+    }
+    <Vertex> 3326 {
+      -0.618566989899 0.277159631252 3.4121029377
+      <UV>  {
+        0.522028 0.745036
+        <Tangent> { 0.452071 -0.386703 0.803799 }
+        <Binormal> { -0.462980 -0.744586 -0.097827 }
+      }
+      <Normal> { -0.849147 0.509964 0.137242 }
+    }
+    <Vertex> 3327 {
+      -0.666435539722 0.0598407797515 3.34645032883
+      <UV>  {
+        0.502038 0.777562
+        <Tangent> { -0.164137 0.094392 0.981911 }
+        <Binormal> { 0.009143 0.993165 -0.093946 }
+      }
+      <Normal> { 0.995270 0.000000 0.096866 }
+    }
+    <Vertex> 3328 {
+      -0.638798594475 0.0843533650041 3.4202580452
+      <UV>  {
+        0.490026 0.794152
+        <Tangent> { -0.164035 0.232950 0.958555 }
+        <Binormal> { -0.103128 0.941533 -0.246461 }
+      }
+      <Normal> { 0.926267 0.187078 0.327097 }
+    }
+    <Vertex> 3329 {
+      -0.666435539722 0.0854838863015 3.43215990067
+      <UV>  {
+        0.485629 0.783634
+        <Tangent> { -0.163325 0.282784 0.945176 }
+        <Binormal> { 0.122442 0.932684 -0.257888 }
+      }
+      <Normal> { 0.918485 -0.011292 0.395245 }
+    }
+    <Vertex> 3330 {
+      -0.666435539722 0.0854838863015 3.43215990067
+      <UV>  {
+        0.514867 0.755546
+        <Tangent> { 0.494745 -0.429318 -0.755588 }
+        <Binormal> { -0.178218 -0.889542 0.388735 }
+      }
+      <Normal> { 0.918485 -0.011292 0.395245 }
+    }
+    <Vertex> 3331 {
+      -0.638798594475 0.0843533650041 3.4202580452
+      <UV>  {
+        0.512112 0.748955
+        <Tangent> { -0.031346 -0.413511 -0.909959 }
+        <Binormal> { 0.034975 -0.832612 0.377158 }
+      }
+      <Normal> { 0.926267 0.187078 0.327097 }
+    }
+    <Vertex> 3332 {
+      -0.618566989899 0.13998247683 3.53283691406
+      <UV>  {
+        0.519848 0.745983
+        <Tangent> { 0.122818 -0.821270 -0.557164 }
+        <Binormal> { -0.285331 -0.442834 0.589849 }
+      }
+      <Normal> { 0.655995 0.416059 0.629688 }
+    }
+    <Vertex> 3333 {
+      -0.618566989899 0.13998247683 3.53283691406
+      <UV>  {
+        0.519848 0.745983
+        <Tangent> { 0.122818 -0.821270 -0.557164 }
+        <Binormal> { -0.285331 -0.442834 0.589849 }
+      }
+      <Normal> { 0.655995 0.416059 0.629688 }
+    }
+    <Vertex> 3334 {
+      -0.666435539722 0.152986124158 3.55345201492
+      <UV>  {
+        0.520491 0.747630
+        <Tangent> { 0.850572 -0.393925 -0.348353 }
+        <Binormal> { -0.273599 -0.860488 0.305013 }
+      }
+      <Normal> { 0.677358 0.044893 0.734245 }
+    }
+    <Vertex> 3335 {
+      -0.666435539722 0.0854838863015 3.43215990067
+      <UV>  {
+        0.514867 0.755546
+        <Tangent> { 0.494745 -0.429318 -0.755588 }
+        <Binormal> { -0.178218 -0.889542 0.388735 }
+      }
+      <Normal> { 0.918485 -0.011292 0.395245 }
+    }
+    <Vertex> 3336 {
+      -0.666435539722 0.152986124158 3.55345201492
+      <UV>  {
+        0.520491 0.747630
+        <Tangent> { 0.850572 -0.393925 -0.348353 }
+        <Binormal> { -0.273599 -0.860488 0.305013 }
+      }
+      <Normal> { 0.677358 0.044893 0.734245 }
+    }
+    <Vertex> 3337 {
+      -0.618566989899 0.13998247683 3.53283691406
+      <UV>  {
+        0.519848 0.745983
+        <Tangent> { 0.122818 -0.821270 -0.557164 }
+        <Binormal> { -0.285331 -0.442834 0.589849 }
+      }
+      <Normal> { 0.655995 0.416059 0.629688 }
+    }
+    <Vertex> 3338 {
+      -0.611161589622 0.176341682673 3.54177713394
+      <UV>  {
+        0.521040 0.745618
+        <Tangent> { 0.296887 -0.940775 0.163708 }
+        <Binormal> { -0.820710 -0.230558 0.163428 }
+      }
+      <Normal> { -0.031404 0.649983 0.759270 }
+    }
+    <Vertex> 3339 {
+      -0.611161589622 0.176341682673 3.54177713394
+      <UV>  {
+        0.521040 0.745618
+        <Tangent> { 0.296887 -0.940775 0.163708 }
+        <Binormal> { -0.820710 -0.230558 0.163428 }
+      }
+      <Normal> { -0.031404 0.649983 0.759270 }
+    }
+    <Vertex> 3340 {
+      -0.666435539722 0.178602695465 3.5655810833
+      <UV>  {
+        0.521391 0.746491
+        <Tangent> { 0.722343 -0.638964 0.264473 }
+        <Binormal> { -0.642255 -0.735879 -0.023715 }
+      }
+      <Normal> { -0.055849 0.016572 0.998291 }
+    }
+    <Vertex> 3341 {
+      -0.666435539722 0.152986124158 3.55345201492
+      <UV>  {
+        0.520491 0.747630
+        <Tangent> { 0.850572 -0.393925 -0.348353 }
+        <Binormal> { -0.273599 -0.860488 0.305013 }
+      }
+      <Normal> { 0.677358 0.044893 0.734245 }
+    }
+    <Vertex> 3342 {
+      -0.666435539722 0.178602695465 3.5655810833
+      <UV>  {
+        0.521391 0.746491
+        <Tangent> { 0.722343 -0.638964 0.264473 }
+        <Binormal> { -0.642255 -0.735879 -0.023715 }
+      }
+      <Normal> { -0.055849 0.016572 0.998291 }
+    }
+    <Vertex> 3343 {
+      -0.611161589622 0.176341682673 3.54177713394
+      <UV>  {
+        0.521040 0.745618
+        <Tangent> { 0.296887 -0.940775 0.163708 }
+        <Binormal> { -0.820710 -0.230558 0.163428 }
+      }
+      <Normal> { -0.031404 0.649983 0.759270 }
+    }
+    <Vertex> 3344 {
+      -0.618566989899 0.238593146205 3.50948739052
+      <UV>  {
+        0.521630 0.745446
+        <Tangent> { 0.416903 -0.715133 0.561049 }
+        <Binormal> { -0.694813 -0.592678 -0.239148 }
+      }
+      <Normal> { -0.641011 0.525925 0.558977 }
+    }
+    <Vertex> 3345 {
+      -0.618566989899 0.238593146205 3.50948739052
+      <UV>  {
+        0.521630 0.745446
+        <Tangent> { 0.416903 -0.715133 0.561049 }
+        <Binormal> { -0.694813 -0.592678 -0.239148 }
+      }
+      <Normal> { -0.641011 0.525925 0.558977 }
+    }
+    <Vertex> 3346 {
+      -0.666435539722 0.240551263094 3.53010225296
+      <UV>  {
+        0.521840 0.745935
+        <Tangent> { 0.603331 -0.507026 0.615562 }
+        <Binormal> { -0.339378 -0.861672 -0.377107 }
+      }
+      <Normal> { -0.715873 -0.023438 0.697806 }
+    }
+    <Vertex> 3347 {
+      -0.666435539722 0.178602695465 3.5655810833
+      <UV>  {
+        0.521391 0.746491
+        <Tangent> { 0.722343 -0.638964 0.264473 }
+        <Binormal> { -0.642255 -0.735879 -0.023715 }
+      }
+      <Normal> { -0.055849 0.016572 0.998291 }
+    }
+    <Vertex> 3348 {
+      -0.666435539722 0.240551263094 3.53010225296
+      <UV>  {
+        0.521840 0.745935
+        <Tangent> { 0.603331 -0.507026 0.615562 }
+        <Binormal> { -0.339378 -0.861672 -0.377107 }
+      }
+      <Normal> { -0.715873 -0.023438 0.697806 }
+    }
+    <Vertex> 3349 {
+      -0.618566989899 0.238593146205 3.50948739052
+      <UV>  {
+        0.521630 0.745446
+        <Tangent> { 0.416903 -0.715133 0.561049 }
+        <Binormal> { -0.694813 -0.592678 -0.239148 }
+      }
+      <Normal> { -0.641011 0.525925 0.558977 }
+    }
+    <Vertex> 3350 {
+      -0.638798594475 0.280248254538 3.44461989403
+      <UV>  {
+        0.522036 0.745305
+        <Tangent> { 0.519103 -0.380420 0.765384 }
+        <Binormal> { -0.325854 -0.848911 -0.200933 }
+      }
+      <Normal> { -0.915311 0.283700 0.285775 }
+    }
+    <Vertex> 3351 {
+      -0.638798594475 0.280248254538 3.44461989403
+      <UV>  {
+        0.522036 0.745305
+        <Tangent> { 0.519103 -0.380420 0.765384 }
+        <Binormal> { -0.325854 -0.848911 -0.200933 }
+      }
+      <Normal> { -0.915311 0.283700 0.285775 }
+    }
+    <Vertex> 3352 {
+      -0.666435539722 0.281378746033 3.45652198792
+      <UV>  {
+        0.522141 0.745532
+        <Tangent> { 0.579620 -0.232058 0.781147 }
+        <Binormal> { -0.038707 -0.928566 -0.247131 }
+      }
+      <Normal> { -0.941618 -0.049379 0.333018 }
+    }
+    <Vertex> 3353 {
+      -0.666435539722 0.240551263094 3.53010225296
+      <UV>  {
+        0.521840 0.745935
+        <Tangent> { 0.603331 -0.507026 0.615562 }
+        <Binormal> { -0.339378 -0.861672 -0.377107 }
+      }
+      <Normal> { -0.715873 -0.023438 0.697806 }
+    }
+    <Vertex> 3354 {
+      -0.666435539722 0.290145397186 3.36455583572
+      <UV>  {
+        0.522395 0.745149
+        <Tangent> { 0.558598 0.078440 0.825721 }
+        <Binormal> { -0.007546 -0.768131 0.078074 }
+      }
+      <Normal> { -0.995331 0.000000 -0.096194 }
+    }
+    <Vertex> 3355 {
+      -0.666435539722 0.281378746033 3.45652198792
+      <UV>  {
+        0.522141 0.745532
+        <Tangent> { 0.579620 -0.232058 0.781147 }
+        <Binormal> { -0.038707 -0.928566 -0.247131 }
+      }
+      <Normal> { -0.941618 -0.049379 0.333018 }
+    }
+    <Vertex> 3356 {
+      -0.638798594475 0.280248254538 3.44461989403
+      <UV>  {
+        0.522036 0.745305
+        <Tangent> { 0.519103 -0.380420 0.765384 }
+        <Binormal> { -0.325854 -0.848911 -0.200933 }
+      }
+      <Normal> { -0.915311 0.283700 0.285775 }
+    }
+    <Vertex> 3357 {
+      -0.925194144249 0.0598407909274 3.34645032883
+      <UV>  {
+        0.501925 0.777049
+        <Tangent> { -0.163728 0.093283 0.982085 }
+        <Binormal> { 0.008973 0.993249 -0.092848 }
+      }
+      <Normal> { 0.995331 0.000000 0.096194 }
+    }
+    <Vertex> 3358 {
+      -0.925194144249 0.0854838937521 3.43215990067
+      <UV>  {
+        0.485516 0.783121
+        <Tangent> { -0.163325 0.282784 0.945176 }
+        <Binormal> { 0.122442 0.932684 -0.257888 }
+      }
+      <Normal> { 0.918485 -0.011292 0.395245 }
+    }
+    <Vertex> 3359 {
+      -0.952831149101 0.0843533799052 3.4202580452
+      <UV>  {
+        0.485516 0.770976
+        <Tangent> { -0.163326 0.282783 0.945176 }
+        <Binormal> { 0.266436 0.924543 -0.230570 }
+      }
+      <Normal> { 0.915372 -0.173162 0.363414 }
+    }
+    <Vertex> 3360 {
+      -0.952831149101 0.0843533799052 3.4202580452
+      <UV>  {
+        0.535006 0.789195
+        <Tangent> { 0.863201 -0.249008 -0.439180 }
+        <Binormal> { -0.166542 -0.715713 0.078461 }
+      }
+      <Normal> { 0.915372 -0.173162 0.363414 }
+    }
+    <Vertex> 3361 {
+      -0.925194144249 0.0854838937521 3.43215990067
+      <UV>  {
+        0.532530 0.783271
+        <Tangent> { 0.136671 -0.480971 -0.866018 }
+        <Binormal> { -0.199881 -0.849443 0.440222 }
+      }
+      <Normal> { 0.918485 -0.011292 0.395245 }
+    }
+    <Vertex> 3362 {
+      -0.925194144249 0.152986124158 3.55345201492
+      <UV>  {
+        0.539482 0.780600
+        <Tangent> { 0.413977 -0.742399 -0.526752 }
+        <Binormal> { -0.521455 -0.660760 0.521455 }
+      }
+      <Normal> { 0.677358 0.044893 0.734245 }
+    }
+    <Vertex> 3363 {
+      -0.925194144249 0.152986124158 3.55345201492
+      <UV>  {
+        0.539482 0.780600
+        <Tangent> { 0.413977 -0.742399 -0.526752 }
+        <Binormal> { -0.521455 -0.660760 0.521455 }
+      }
+      <Normal> { 0.677358 0.044893 0.734245 }
+    }
+    <Vertex> 3364 {
+      -0.973062694073 0.139982491732 3.53283691406
+      <UV>  {
+        0.540060 0.782081
+        <Tangent> { 0.887382 -0.228079 0.400665 }
+        <Binormal> { -0.010201 -0.303499 -0.150173 }
+      }
+      <Normal> { 0.679037 -0.343760 0.648610 }
+    }
+    <Vertex> 3365 {
+      -0.952831149101 0.0843533799052 3.4202580452
+      <UV>  {
+        0.535006 0.789195
+        <Tangent> { 0.863201 -0.249008 -0.439180 }
+        <Binormal> { -0.166542 -0.715713 0.078461 }
+      }
+      <Normal> { 0.915372 -0.173162 0.363414 }
+    }
+    <Vertex> 3366 {
+      -0.973062694073 0.139982491732 3.53283691406
+      <UV>  {
+        0.540060 0.782081
+        <Tangent> { 0.887382 -0.228079 0.400665 }
+        <Binormal> { -0.010201 -0.303499 -0.150173 }
+      }
+      <Normal> { 0.679037 -0.343760 0.648610 }
+    }
+    <Vertex> 3367 {
+      -0.925194144249 0.152986124158 3.55345201492
+      <UV>  {
+        0.539482 0.780600
+        <Tangent> { 0.413977 -0.742399 -0.526752 }
+        <Binormal> { -0.521455 -0.660760 0.521455 }
+      }
+      <Normal> { 0.677358 0.044893 0.734245 }
+    }
+    <Vertex> 3368 {
+      -0.925194144249 0.178602710366 3.5655810833
+      <UV>  {
+        0.540553 0.780272
+        <Tangent> { 0.266278 -0.875706 0.402784 }
+        <Binormal> { -0.880884 -0.288318 -0.044495 }
+      }
+      <Normal> { -0.055849 0.016572 0.998291 }
+    }
+    <Vertex> 3369 {
+      -0.925194144249 0.178602710366 3.5655810833
+      <UV>  {
+        0.540553 0.780272
+        <Tangent> { 0.266278 -0.875706 0.402784 }
+        <Binormal> { -0.880884 -0.288318 -0.044495 }
+      }
+      <Normal> { -0.055849 0.016572 0.998291 }
+    }
+    <Vertex> 3370 {
+      -0.980468153954 0.176341697574 3.54177713394
+      <UV>  {
+        0.540869 0.781057
+        <Tangent> { 0.493133 -0.523971 0.694459 }
+        <Binormal> { 0.053990 -0.432673 -0.364791 }
+      }
+      <Normal> { -0.085940 -0.648427 0.756371 }
+    }
+    <Vertex> 3371 {
+      -0.973062694073 0.139982491732 3.53283691406
+      <UV>  {
+        0.540060 0.782081
+        <Tangent> { 0.887382 -0.228079 0.400665 }
+        <Binormal> { -0.010201 -0.303499 -0.150173 }
+      }
+      <Normal> { 0.679037 -0.343760 0.648610 }
+    }
+    <Vertex> 3372 {
+      -0.980468153954 0.176341697574 3.54177713394
+      <UV>  {
+        0.540869 0.781057
+        <Tangent> { 0.493133 -0.523971 0.694459 }
+        <Binormal> { 0.053990 -0.432673 -0.364791 }
+      }
+      <Normal> { -0.085940 -0.648427 0.756371 }
+    }
+    <Vertex> 3373 {
+      -0.925194144249 0.178602710366 3.5655810833
+      <UV>  {
+        0.540553 0.780272
+        <Tangent> { 0.266278 -0.875706 0.402784 }
+        <Binormal> { -0.880884 -0.288318 -0.044495 }
+      }
+      <Normal> { -0.055849 0.016572 0.998291 }
+    }
+    <Vertex> 3374 {
+      -0.925194144249 0.240551263094 3.53010225296
+      <UV>  {
+        0.541084 0.780117
+        <Tangent> { 0.206598 -0.620666 0.756367 }
+        <Binormal> { -0.415376 -0.685628 -0.449160 }
+      }
+      <Normal> { -0.715873 -0.023438 0.697806 }
+    }
+    <Vertex> 3375 {
+      -0.925194144249 0.240551263094 3.53010225296
+      <UV>  {
+        0.541084 0.780117
+        <Tangent> { 0.206598 -0.620666 0.756367 }
+        <Binormal> { -0.415376 -0.685628 -0.449160 }
+      }
+      <Normal> { -0.715873 -0.023438 0.697806 }
+    }
+    <Vertex> 3376 {
+      -0.973062694073 0.238593161106 3.50948739052
+      <UV>  {
+        0.541273 0.780557
+        <Tangent> { 0.304806 -0.393175 0.867471 }
+        <Binormal> { 0.264129 -0.721217 -0.419695 }
+      }
+      <Normal> { -0.643239 -0.547197 0.535508 }
+    }
+    <Vertex> 3377 {
+      -0.980468153954 0.176341697574 3.54177713394
+      <UV>  {
+        0.540869 0.781057
+        <Tangent> { 0.493133 -0.523971 0.694459 }
+        <Binormal> { 0.053990 -0.432673 -0.364791 }
+      }
+      <Normal> { -0.085940 -0.648427 0.756371 }
+    }
+    <Vertex> 3378 {
+      -0.973062694073 0.238593161106 3.50948739052
+      <UV>  {
+        0.541273 0.780557
+        <Tangent> { 0.304806 -0.393175 0.867471 }
+        <Binormal> { 0.264129 -0.721217 -0.419695 }
+      }
+      <Normal> { -0.643239 -0.547197 0.535508 }
+    }
+    <Vertex> 3379 {
+      -0.925194144249 0.240551263094 3.53010225296
+      <UV>  {
+        0.541084 0.780117
+        <Tangent> { 0.206598 -0.620666 0.756367 }
+        <Binormal> { -0.415376 -0.685628 -0.449160 }
+      }
+      <Normal> { -0.715873 -0.023438 0.697806 }
+    }
+    <Vertex> 3380 {
+      -0.925194144249 0.281378775835 3.45652198792
+      <UV>  {
+        0.541449 0.779990
+        <Tangent> { 0.202297 -0.298789 0.932631 }
+        <Binormal> { -0.053450 -0.945551 -0.291335 }
+      }
+      <Normal> { -0.941618 -0.049379 0.333018 }
+    }
+    <Vertex> 3381 {
+      -0.925194144249 0.281378775835 3.45652198792
+      <UV>  {
+        0.541449 0.779990
+        <Tangent> { 0.202297 -0.298789 0.932631 }
+        <Binormal> { -0.053450 -0.945551 -0.291335 }
+      }
+      <Normal> { -0.941618 -0.049379 0.333018 }
+    }
+    <Vertex> 3382 {
+      -0.952831149101 0.280248254538 3.44461989403
+      <UV>  {
+        0.541543 0.780195
+        <Tangent> { 0.230207 -0.164390 0.959156 }
+        <Binormal> { 0.302946 -0.920068 -0.230401 }
+      }
+      <Normal> { -0.899045 -0.358837 0.250832 }
+    }
+    <Vertex> 3383 {
+      -0.973062694073 0.238593161106 3.50948739052
+      <UV>  {
+        0.541273 0.780557
+        <Tangent> { 0.304806 -0.393175 0.867471 }
+        <Binormal> { 0.264129 -0.721217 -0.419695 }
+      }
+      <Normal> { -0.643239 -0.547197 0.535508 }
+    }
+    <Vertex> 3384 {
+      -0.925194144249 0.290145397186 3.36455583572
+      <UV>  {
+        0.541772 0.779851
+        <Tangent> { 0.190450 0.092828 0.977298 }
+        <Binormal> { -0.008930 -0.954415 0.092395 }
+      }
+      <Normal> { -0.995331 0.000000 -0.096194 }
+    }
+    <Vertex> 3385 {
+      -0.952831149101 0.280248254538 3.44461989403
+      <UV>  {
+        0.541543 0.780195
+        <Tangent> { 0.230207 -0.164390 0.959156 }
+        <Binormal> { 0.302946 -0.920068 -0.230401 }
+      }
+      <Normal> { -0.899045 -0.358837 0.250832 }
+    }
+    <Vertex> 3386 {
+      -0.925194144249 0.281378775835 3.45652198792
+      <UV>  {
+        0.541449 0.779990
+        <Tangent> { 0.202297 -0.298789 0.932631 }
+        <Binormal> { -0.053450 -0.945551 -0.291335 }
+      }
+      <Normal> { -0.941618 -0.049379 0.333018 }
+    }
+    <Vertex> 3387 {
+      -0.925194144249 0.0598407909274 3.34645032883
+      <UV>  {
+        0.501925 0.777049
+        <Tangent> { -0.163728 0.093283 0.982085 }
+        <Binormal> { 0.008973 0.993249 -0.092848 }
+      }
+      <Normal> { 0.995331 0.000000 0.096194 }
+    }
+    <Vertex> 3388 {
+      -0.952831149101 0.0843533799052 3.4202580452
+      <UV>  {
+        0.485516 0.770976
+        <Tangent> { -0.163326 0.282783 0.945176 }
+        <Binormal> { 0.266436 0.924543 -0.230570 }
+      }
+      <Normal> { 0.915372 -0.173162 0.363414 }
+    }
+    <Vertex> 3389 {
+      -0.973062694073 0.0812647640705 3.38774108887
+      <UV>  {
+        0.489913 0.760459
+        <Tangent> { -0.164034 0.232950 0.958555 }
+        <Binormal> { 0.362171 0.917838 -0.161078 }
+      }
+      <Normal> { 0.913999 -0.316019 0.254341 }
+    }
+    <Vertex> 3390 {
+      -0.973062694073 0.0812647640705 3.38774108887
+      <UV>  {
+        0.539295 0.792615
+        <Tangent> { 0.626181 0.174029 0.760007 }
+        <Binormal> { 0.284440 0.535382 -0.356948 }
+      }
+      <Normal> { 0.913999 -0.316019 0.254341 }
+    }
+    <Vertex> 3391 {
+      -0.952831149101 0.0843533799052 3.4202580452
+      <UV>  {
+        0.535006 0.789195
+        <Tangent> { 0.863201 -0.249008 -0.439180 }
+        <Binormal> { -0.166542 -0.715713 0.078461 }
+      }
+      <Normal> { 0.915372 -0.173162 0.363414 }
+    }
+    <Vertex> 3392 {
+      -0.973062694073 0.139982491732 3.53283691406
+      <UV>  {
+        0.540060 0.782081
+        <Tangent> { 0.887382 -0.228079 0.400665 }
+        <Binormal> { -0.010201 -0.303499 -0.150173 }
+      }
+      <Normal> { 0.679037 -0.343760 0.648610 }
+    }
+    <Vertex> 3393 {
+      -0.973062694073 0.139982491732 3.53283691406
+      <UV>  {
+        0.540060 0.782081
+        <Tangent> { 0.887382 -0.228079 0.400665 }
+        <Binormal> { -0.010201 -0.303499 -0.150173 }
+      }
+      <Normal> { 0.679037 -0.343760 0.648610 }
+    }
+    <Vertex> 3394 {
+      -1.0081050396 0.120560668409 3.47651600838
+      <UV>  {
+        0.541097 0.782964
+        <Tangent> { 0.435649 -0.052781 0.898568 }
+        <Binormal> { 0.630543 0.386068 -0.283026 }
+      }
+      <Normal> { 0.598102 -0.722129 0.347453 }
+    }
+    <Vertex> 3395 {
+      -0.973062694073 0.0812647640705 3.38774108887
+      <UV>  {
+        0.539295 0.792615
+        <Tangent> { 0.626181 0.174029 0.760007 }
+        <Binormal> { 0.284440 0.535382 -0.356948 }
+      }
+      <Normal> { 0.913999 -0.316019 0.254341 }
+    }
+    <Vertex> 3396 {
+      -1.0081050396 0.120560668409 3.47651600838
+      <UV>  {
+        0.541097 0.782964
+        <Tangent> { 0.435649 -0.052781 0.898568 }
+        <Binormal> { 0.630543 0.386068 -0.283026 }
+      }
+      <Normal> { 0.598102 -0.722129 0.347453 }
+    }
+    <Vertex> 3397 {
+      -0.973062694073 0.139982491732 3.53283691406
+      <UV>  {
+        0.540060 0.782081
+        <Tangent> { 0.887382 -0.228079 0.400665 }
+        <Binormal> { -0.010201 -0.303499 -0.150173 }
+      }
+      <Normal> { 0.679037 -0.343760 0.648610 }
+    }
+    <Vertex> 3398 {
+      -0.980468153954 0.176341697574 3.54177713394
+      <UV>  {
+        0.540869 0.781057
+        <Tangent> { 0.493133 -0.523971 0.694459 }
+        <Binormal> { 0.053990 -0.432673 -0.364791 }
+      }
+      <Normal> { -0.085940 -0.648427 0.756371 }
+    }
+    <Vertex> 3399 {
+      -0.980468153954 0.176341697574 3.54177713394
+      <UV>  {
+        0.540869 0.781057
+        <Tangent> { 0.493133 -0.523971 0.694459 }
+        <Binormal> { 0.053990 -0.432673 -0.364791 }
+      }
+      <Normal> { -0.085940 -0.648427 0.756371 }
+    }
+    <Vertex> 3400 {
+      -1.02093148232 0.170164480805 3.47674322128
+      <UV>  {
+        0.541427 0.781518
+        <Tangent> { 0.318681 -0.127858 0.939199 }
+        <Binormal> { 0.837392 -0.133744 -0.302344 }
+      }
+      <Normal> { -0.025575 -0.938475 0.344310 }
+    }
+    <Vertex> 3401 {
+      -1.0081050396 0.120560668409 3.47651600838
+      <UV>  {
+        0.541097 0.782964
+        <Tangent> { 0.435649 -0.052781 0.898568 }
+        <Binormal> { 0.630543 0.386068 -0.283026 }
+      }
+      <Normal> { 0.598102 -0.722129 0.347453 }
+    }
+    <Vertex> 3402 {
+      -1.02093148232 0.170164480805 3.47674322128
+      <UV>  {
+        0.541427 0.781518
+        <Tangent> { 0.318681 -0.127858 0.939199 }
+        <Binormal> { 0.837392 -0.133744 -0.302344 }
+      }
+      <Normal> { -0.025575 -0.938475 0.344310 }
+    }
+    <Vertex> 3403 {
+      -0.980468153954 0.176341697574 3.54177713394
+      <UV>  {
+        0.540869 0.781057
+        <Tangent> { 0.493133 -0.523971 0.694459 }
+        <Binormal> { 0.053990 -0.432673 -0.364791 }
+      }
+      <Normal> { -0.085940 -0.648427 0.756371 }
+    }
+    <Vertex> 3404 {
+      -0.973062694073 0.238593161106 3.50948739052
+      <UV>  {
+        0.541273 0.780557
+        <Tangent> { 0.304806 -0.393175 0.867471 }
+        <Binormal> { 0.264129 -0.721217 -0.419695 }
+      }
+      <Normal> { -0.643239 -0.547197 0.535508 }
+    }
+    <Vertex> 3405 {
+      -0.973062694073 0.238593161106 3.50948739052
+      <UV>  {
+        0.541273 0.780557
+        <Tangent> { 0.304806 -0.393175 0.867471 }
+        <Binormal> { 0.264129 -0.721217 -0.419695 }
+      }
+      <Normal> { -0.643239 -0.547197 0.535508 }
+    }
+    <Vertex> 3406 {
+      -1.0081050396 0.233243554831 3.45316648483
+      <UV>  {
+        0.541595 0.780807
+        <Tangent> { 0.238599 -0.062770 0.969087 }
+        <Binormal> { 0.775470 -0.565595 -0.227563 }
+      }
+      <Normal> { -0.523240 -0.816095 0.245308 }
+    }
+    <Vertex> 3407 {
+      -1.02093148232 0.170164480805 3.47674322128
+      <UV>  {
+        0.541427 0.781518
+        <Tangent> { 0.318681 -0.127858 0.939199 }
+        <Binormal> { 0.837392 -0.133744 -0.302344 }
+      }
+      <Normal> { -0.025575 -0.938475 0.344310 }
+    }
+    <Vertex> 3408 {
+      -1.0081050396 0.233243554831 3.45316648483
+      <UV>  {
+        0.541595 0.780807
+        <Tangent> { 0.238599 -0.062770 0.969087 }
+        <Binormal> { 0.775470 -0.565595 -0.227563 }
+      }
+      <Normal> { -0.523240 -0.816095 0.245308 }
+    }
+    <Vertex> 3409 {
+      -0.973062694073 0.238593161106 3.50948739052
+      <UV>  {
+        0.541273 0.780557
+        <Tangent> { 0.304806 -0.393175 0.867471 }
+        <Binormal> { 0.264129 -0.721217 -0.419695 }
+      }
+      <Normal> { -0.643239 -0.547197 0.535508 }
+    }
+    <Vertex> 3410 {
+      -0.952831149101 0.280248254538 3.44461989403
+      <UV>  {
+        0.541543 0.780195
+        <Tangent> { 0.230207 -0.164390 0.959156 }
+        <Binormal> { 0.302946 -0.920068 -0.230401 }
+      }
+      <Normal> { -0.899045 -0.358837 0.250832 }
+    }
+    <Vertex> 3411 {
+      -0.952831149101 0.280248254538 3.44461989403
+      <UV>  {
+        0.541543 0.780195
+        <Tangent> { 0.230207 -0.164390 0.959156 }
+        <Binormal> { 0.302946 -0.920068 -0.230401 }
+      }
+      <Normal> { -0.899045 -0.358837 0.250832 }
+    }
+    <Vertex> 3412 {
+      -0.973062694073 0.277159661055 3.4121029377
+      <UV>  {
+        0.541698 0.780307
+        <Tangent> { 0.203969 0.031019 0.978486 }
+        <Binormal> { 0.536331 -0.833692 -0.085371 }
+      }
+      <Normal> { -0.833491 -0.545305 0.088900 }
+    }
+    <Vertex> 3413 {
+      -1.0081050396 0.233243554831 3.45316648483
+      <UV>  {
+        0.541595 0.780807
+        <Tangent> { 0.238599 -0.062770 0.969087 }
+        <Binormal> { 0.775470 -0.565595 -0.227563 }
+      }
+      <Normal> { -0.523240 -0.816095 0.245308 }
+    }
+    <Vertex> 3414 {
+      -0.925194144249 0.290145397186 3.36455583572
+      <UV>  {
+        0.541772 0.779851
+        <Tangent> { 0.190450 0.092828 0.977298 }
+        <Binormal> { -0.008930 -0.954415 0.092395 }
+      }
+      <Normal> { -0.995331 0.000000 -0.096194 }
+    }
+    <Vertex> 3415 {
+      -0.973062694073 0.277159661055 3.4121029377
+      <UV>  {
+        0.541698 0.780307
+        <Tangent> { 0.203969 0.031019 0.978486 }
+        <Binormal> { 0.536331 -0.833692 -0.085371 }
+      }
+      <Normal> { -0.833491 -0.545305 0.088900 }
+    }
+    <Vertex> 3416 {
+      -0.952831149101 0.280248254538 3.44461989403
+      <UV>  {
+        0.541543 0.780195
+        <Tangent> { 0.230207 -0.164390 0.959156 }
+        <Binormal> { 0.302946 -0.920068 -0.230401 }
+      }
+      <Normal> { -0.899045 -0.358837 0.250832 }
+    }
+    <Vertex> 3417 {
+      -0.925194144249 0.0598407909274 3.34645032883
+      <UV>  {
+        0.501925 0.777049
+        <Tangent> { -0.163728 0.093283 0.982085 }
+        <Binormal> { 0.008973 0.993249 -0.092848 }
+      }
+      <Normal> { 0.995331 0.000000 0.096194 }
+    }
+    <Vertex> 3418 {
+      -0.973062694073 0.0812647640705 3.38774108887
+      <UV>  {
+        0.489913 0.760459
+        <Tangent> { -0.164034 0.232950 0.958555 }
+        <Binormal> { 0.362171 0.917838 -0.161078 }
+      }
+      <Normal> { 0.913999 -0.316019 0.254341 }
+    }
+    <Vertex> 3419 {
+      -0.980468153954 0.0770456716418 3.34332203865
+      <UV>  {
+        0.497528 0.754386
+        <Tangent> { -0.164224 0.144682 0.975755 }
+        <Binormal> { 0.548389 0.822603 -0.029676 }
+      }
+      <Normal> { 0.831141 -0.551530 0.070711 }
+    }
+    <Vertex> 3420 {
+      -0.980468153954 0.0770456716418 3.34332203865
+      <UV>  {
+        0.544248 0.792615
+        <Tangent> { 0.092184 0.007147 0.995716 }
+        <Binormal> { 0.549673 0.821062 -0.056783 }
+      }
+      <Normal> { 0.831141 -0.551530 0.070711 }
+    }
+    <Vertex> 3421 {
+      -0.973062694073 0.0812647640705 3.38774108887
+      <UV>  {
+        0.539295 0.792615
+        <Tangent> { 0.626181 0.174029 0.760007 }
+        <Binormal> { 0.284440 0.535382 -0.356948 }
+      }
+      <Normal> { 0.913999 -0.316019 0.254341 }
+    }
+    <Vertex> 3422 {
+      -1.0081050396 0.120560668409 3.47651600838
+      <UV>  {
+        0.541097 0.782964
+        <Tangent> { 0.435649 -0.052781 0.898568 }
+        <Binormal> { 0.630543 0.386068 -0.283026 }
+      }
+      <Normal> { 0.598102 -0.722129 0.347453 }
+    }
+    <Vertex> 3423 {
+      -1.0081050396 0.120560668409 3.47651600838
+      <UV>  {
+        0.541097 0.782964
+        <Tangent> { 0.435649 -0.052781 0.898568 }
+        <Binormal> { 0.630543 0.386068 -0.283026 }
+      }
+      <Normal> { 0.598102 -0.722129 0.347453 }
+    }
+    <Vertex> 3424 {
+      -1.02093148232 0.125839099288 3.39958024025
+      <UV>  {
+        0.542314 0.783013
+        <Tangent> { 0.033312 0.094319 0.994985 }
+        <Binormal> { 0.873572 0.478795 -0.074634 }
+      }
+      <Normal> { 0.481948 -0.875881 0.022095 }
+    }
+    <Vertex> 3425 {
+      -0.980468153954 0.0770456716418 3.34332203865
+      <UV>  {
+        0.544248 0.792615
+        <Tangent> { 0.092184 0.007147 0.995716 }
+        <Binormal> { 0.549673 0.821062 -0.056783 }
+      }
+      <Normal> { 0.831141 -0.551530 0.070711 }
+    }
+    <Vertex> 3426 {
+      -1.02093148232 0.125839099288 3.39958024025
+      <UV>  {
+        0.542314 0.783013
+        <Tangent> { 0.033312 0.094319 0.994985 }
+        <Binormal> { 0.873572 0.478795 -0.074634 }
+      }
+      <Normal> { 0.481948 -0.875881 0.022095 }
+    }
+    <Vertex> 3427 {
+      -1.0081050396 0.120560668409 3.47651600838
+      <UV>  {
+        0.541097 0.782964
+        <Tangent> { 0.435649 -0.052781 0.898568 }
+        <Binormal> { 0.630543 0.386068 -0.283026 }
+      }
+      <Normal> { 0.598102 -0.722129 0.347453 }
+    }
+    <Vertex> 3428 {
+      -1.02093148232 0.170164480805 3.47674322128
+      <UV>  {
+        0.541427 0.781518
+        <Tangent> { 0.318681 -0.127858 0.939199 }
+        <Binormal> { 0.837392 -0.133744 -0.302344 }
+      }
+      <Normal> { -0.025575 -0.938475 0.344310 }
+    }
+    <Vertex> 3429 {
+      -1.02093148232 0.170164480805 3.47674322128
+      <UV>  {
+        0.541427 0.781518
+        <Tangent> { 0.318681 -0.127858 0.939199 }
+        <Binormal> { 0.837392 -0.133744 -0.302344 }
+      }
+      <Normal> { -0.025575 -0.938475 0.344310 }
+    }
+    <Vertex> 3430 {
+      -1.03574204445 0.161726251245 3.38790535927
+      <UV>  {
+        0.542077 0.781533
+        <Tangent> { 0.038932 0.212459 0.976394 }
+        <Binormal> { 0.975181 0.079267 -0.056131 }
+      }
+      <Normal> { 0.081576 -0.996612 0.009857 }
+    }
+    <Vertex> 3431 {
+      -1.02093148232 0.125839099288 3.39958024025
+      <UV>  {
+        0.542314 0.783013
+        <Tangent> { 0.033312 0.094319 0.994985 }
+        <Binormal> { 0.873572 0.478795 -0.074634 }
+      }
+      <Normal> { 0.481948 -0.875881 0.022095 }
+    }
+    <Vertex> 3432 {
+      -1.03574204445 0.161726251245 3.38790535927
+      <UV>  {
+        0.542077 0.781533
+        <Tangent> { 0.038932 0.212459 0.976394 }
+        <Binormal> { 0.975181 0.079267 -0.056131 }
+      }
+      <Normal> { 0.081576 -0.996612 0.009857 }
+    }
+    <Vertex> 3433 {
+      -1.02093148232 0.170164480805 3.47674322128
+      <UV>  {
+        0.541427 0.781518
+        <Tangent> { 0.318681 -0.127858 0.939199 }
+        <Binormal> { 0.837392 -0.133744 -0.302344 }
+      }
+      <Normal> { -0.025575 -0.938475 0.344310 }
+    }
+    <Vertex> 3434 {
+      -1.0081050396 0.233243554831 3.45316648483
+      <UV>  {
+        0.541595 0.780807
+        <Tangent> { 0.238599 -0.062770 0.969087 }
+        <Binormal> { 0.775470 -0.565595 -0.227563 }
+      }
+      <Normal> { -0.523240 -0.816095 0.245308 }
+    }
+    <Vertex> 3435 {
+      -1.0081050396 0.233243554831 3.45316648483
+      <UV>  {
+        0.541595 0.780807
+        <Tangent> { 0.238599 -0.062770 0.969087 }
+        <Binormal> { 0.775470 -0.565595 -0.227563 }
+      }
+      <Normal> { -0.523240 -0.816095 0.245308 }
+    }
+    <Vertex> 3436 {
+      -1.02093148232 0.225935831666 3.37623047829
+      <UV>  {
+        0.541965 0.780801
+        <Tangent> { 0.096924 0.258300 0.961190 }
+        <Binormal> { 0.846911 -0.422803 0.028219 }
+      }
+      <Normal> { -0.444807 -0.894253 -0.048921 }
+    }
+    <Vertex> 3437 {
+      -1.03574204445 0.161726251245 3.38790535927
+      <UV>  {
+        0.542077 0.781533
+        <Tangent> { 0.038932 0.212459 0.976394 }
+        <Binormal> { 0.975181 0.079267 -0.056131 }
+      }
+      <Normal> { 0.081576 -0.996612 0.009857 }
+    }
+    <Vertex> 3438 {
+      -1.02093148232 0.225935831666 3.37623047829
+      <UV>  {
+        0.541965 0.780801
+        <Tangent> { 0.096924 0.258300 0.961190 }
+        <Binormal> { 0.846911 -0.422803 0.028219 }
+      }
+      <Normal> { -0.444807 -0.894253 -0.048921 }
+    }
+    <Vertex> 3439 {
+      -1.0081050396 0.233243554831 3.45316648483
+      <UV>  {
+        0.541595 0.780807
+        <Tangent> { 0.238599 -0.062770 0.969087 }
+        <Binormal> { 0.775470 -0.565595 -0.227563 }
+      }
+      <Normal> { -0.523240 -0.816095 0.245308 }
+    }
+    <Vertex> 3440 {
+      -0.973062694073 0.277159661055 3.4121029377
+      <UV>  {
+        0.541698 0.780307
+        <Tangent> { 0.203969 0.031019 0.978486 }
+        <Binormal> { 0.536331 -0.833692 -0.085371 }
+      }
+      <Normal> { -0.833491 -0.545305 0.088900 }
+    }
+    <Vertex> 3441 {
+      -0.973062694073 0.277159661055 3.4121029377
+      <UV>  {
+        0.541698 0.780307
+        <Tangent> { 0.203969 0.031019 0.978486 }
+        <Binormal> { 0.536331 -0.833692 -0.085371 }
+      }
+      <Normal> { -0.833491 -0.545305 0.088900 }
+    }
+    <Vertex> 3442 {
+      -0.980468094349 0.272940546274 3.3676841259
+      <UV>  {
+        0.541873 0.780297
+        <Tangent> { 0.153397 0.234077 0.960040 }
+        <Binormal> { 0.552336 -0.745818 0.093592 }
+      }
+      <Normal> { -0.793207 -0.600269 -0.102298 }
+    }
+    <Vertex> 3443 {
+      -1.02093148232 0.225935831666 3.37623047829
+      <UV>  {
+        0.541965 0.780801
+        <Tangent> { 0.096924 0.258300 0.961190 }
+        <Binormal> { 0.846911 -0.422803 0.028219 }
+      }
+      <Normal> { -0.444807 -0.894253 -0.048921 }
+    }
+    <Vertex> 3444 {
+      -0.925194144249 0.290145397186 3.36455583572
+      <UV>  {
+        0.541772 0.779851
+        <Tangent> { 0.190450 0.092828 0.977298 }
+        <Binormal> { -0.008930 -0.954415 0.092395 }
+      }
+      <Normal> { -0.995331 0.000000 -0.096194 }
+    }
+    <Vertex> 3445 {
+      -0.980468094349 0.272940546274 3.3676841259
+      <UV>  {
+        0.541873 0.780297
+        <Tangent> { 0.153397 0.234077 0.960040 }
+        <Binormal> { 0.552336 -0.745818 0.093592 }
+      }
+      <Normal> { -0.793207 -0.600269 -0.102298 }
+    }
+    <Vertex> 3446 {
+      -0.973062694073 0.277159661055 3.4121029377
+      <UV>  {
+        0.541698 0.780307
+        <Tangent> { 0.203969 0.031019 0.978486 }
+        <Binormal> { 0.536331 -0.833692 -0.085371 }
+      }
+      <Normal> { -0.833491 -0.545305 0.088900 }
+    }
+    <Vertex> 3447 {
+      -0.925194144249 0.0598407909274 3.34645032883
+      <UV>  {
+        0.501925 0.777049
+        <Tangent> { -0.163728 0.093283 0.982085 }
+        <Binormal> { 0.008973 0.993249 -0.092848 }
+      }
+      <Normal> { 0.995331 0.000000 0.096194 }
+    }
+    <Vertex> 3448 {
+      -0.980468153954 0.0770456716418 3.34332203865
+      <UV>  {
+        0.497528 0.754386
+        <Tangent> { -0.164224 0.144682 0.975755 }
+        <Binormal> { 0.548389 0.822603 -0.029676 }
+      }
+      <Normal> { 0.831141 -0.551530 0.070711 }
+    }
+    <Vertex> 3449 {
+      -0.973062694073 0.0728265345097 3.29890322685
+      <UV>  {
+        0.506322 0.754386
+        <Tangent> { -0.162804 0.042081 0.985761 }
+        <Binormal> { 0.626696 0.721667 0.072695 }
+      }
+      <Normal> { 0.754692 -0.641591 -0.136845 }
+    }
+    <Vertex> 3450 {
+      -0.973062694073 0.0728265345097 3.29890322685
+      <UV>  {
+        0.548538 0.789195
+        <Tangent> { -0.294033 0.242624 0.924488 }
+        <Binormal> { 0.559941 0.657467 0.005543 }
+      }
+      <Normal> { 0.754692 -0.641591 -0.136845 }
+    }
+    <Vertex> 3451 {
+      -0.980468153954 0.0770456716418 3.34332203865
+      <UV>  {
+        0.544248 0.792615
+        <Tangent> { 0.092184 0.007147 0.995716 }
+        <Binormal> { 0.549673 0.821062 -0.056783 }
+      }
+      <Normal> { 0.831141 -0.551530 0.070711 }
+    }
+    <Vertex> 3452 {
+      -1.02093148232 0.125839099288 3.39958024025
+      <UV>  {
+        0.542314 0.783013
+        <Tangent> { 0.033312 0.094319 0.994985 }
+        <Binormal> { 0.873572 0.478795 -0.074634 }
+      }
+      <Normal> { 0.481948 -0.875881 0.022095 }
+    }
+    <Vertex> 3453 {
+      -1.02093148232 0.125839099288 3.39958024025
+      <UV>  {
+        0.542314 0.783013
+        <Tangent> { 0.033312 0.094319 0.994985 }
+        <Binormal> { 0.873572 0.478795 -0.074634 }
+      }
+      <Normal> { 0.481948 -0.875881 0.022095 }
+    }
+    <Vertex> 3454 {
+      -1.0081050396 0.118531376123 3.3226442337
+      <UV>  {
+        0.543387 0.782215
+        <Tangent> { -0.354451 0.423521 0.833663 }
+        <Binormal> { 0.632049 0.381960 0.074685 }
+      }
+      <Normal> { 0.524308 -0.837184 -0.155553 }
+    }
+    <Vertex> 3455 {
+      -0.973062694073 0.0728265345097 3.29890322685
+      <UV>  {
+        0.548538 0.789195
+        <Tangent> { -0.294033 0.242624 0.924488 }
+        <Binormal> { 0.559941 0.657467 0.005543 }
+      }
+      <Normal> { 0.754692 -0.641591 -0.136845 }
+    }
+    <Vertex> 3456 {
+      -1.0081050396 0.118531376123 3.3226442337
+      <UV>  {
+        0.543387 0.782215
+        <Tangent> { -0.354451 0.423521 0.833663 }
+        <Binormal> { 0.632049 0.381960 0.074685 }
+      }
+      <Normal> { 0.524308 -0.837184 -0.155553 }
+    }
+    <Vertex> 3457 {
+      -1.02093148232 0.125839099288 3.39958024025
+      <UV>  {
+        0.542314 0.783013
+        <Tangent> { 0.033312 0.094319 0.994985 }
+        <Binormal> { 0.873572 0.478795 -0.074634 }
+      }
+      <Normal> { 0.481948 -0.875881 0.022095 }
+    }
+    <Vertex> 3458 {
+      -1.03574204445 0.161726251245 3.38790535927
+      <UV>  {
+        0.542077 0.781533
+        <Tangent> { 0.038932 0.212459 0.976394 }
+        <Binormal> { 0.975181 0.079267 -0.056131 }
+      }
+      <Normal> { 0.081576 -0.996612 0.009857 }
+    }
+    <Vertex> 3459 {
+      -1.03574204445 0.161726251245 3.38790535927
+      <UV>  {
+        0.542077 0.781533
+        <Tangent> { 0.038932 0.212459 0.976394 }
+        <Binormal> { 0.975181 0.079267 -0.056131 }
+      }
+      <Normal> { 0.081576 -0.996612 0.009857 }
+    }
+    <Vertex> 3460 {
+      -1.02093148232 0.153288021684 3.29906749725
+      <UV>  {
+        0.542645 0.781097
+        <Tangent> { -0.206987 0.621525 0.755555 }
+        <Binormal> { 0.524477 0.028470 0.120263 }
+      }
+      <Normal> { 0.121128 -0.944731 -0.304605 }
+    }
+    <Vertex> 3461 {
+      -1.0081050396 0.118531376123 3.3226442337
+      <UV>  {
+        0.543387 0.782215
+        <Tangent> { -0.354451 0.423521 0.833663 }
+        <Binormal> { 0.632049 0.381960 0.074685 }
+      }
+      <Normal> { 0.524308 -0.837184 -0.155553 }
+    }
+    <Vertex> 3462 {
+      -1.02093148232 0.153288021684 3.29906749725
+      <UV>  {
+        0.542645 0.781097
+        <Tangent> { -0.206987 0.621525 0.755555 }
+        <Binormal> { 0.524477 0.028470 0.120263 }
+      }
+      <Normal> { 0.121128 -0.944731 -0.304605 }
+    }
+    <Vertex> 3463 {
+      -1.03574204445 0.161726251245 3.38790535927
+      <UV>  {
+        0.542077 0.781533
+        <Tangent> { 0.038932 0.212459 0.976394 }
+        <Binormal> { 0.975181 0.079267 -0.056131 }
+      }
+      <Normal> { 0.081576 -0.996612 0.009857 }
+    }
+    <Vertex> 3464 {
+      -1.02093148232 0.225935831666 3.37623047829
+      <UV>  {
+        0.541965 0.780801
+        <Tangent> { 0.096924 0.258300 0.961190 }
+        <Binormal> { 0.846911 -0.422803 0.028219 }
+      }
+      <Normal> { -0.444807 -0.894253 -0.048921 }
+    }
+    <Vertex> 3465 {
+      -1.02093148232 0.225935831666 3.37623047829
+      <UV>  {
+        0.541965 0.780801
+        <Tangent> { 0.096924 0.258300 0.961190 }
+        <Binormal> { 0.846911 -0.422803 0.028219 }
+      }
+      <Normal> { -0.444807 -0.894253 -0.048921 }
+    }
+    <Vertex> 3466 {
+      -1.0081050396 0.218628108501 3.29929471016
+      <UV>  {
+        0.542283 0.780540
+        <Tangent> { -0.003103 0.568376 0.822763 }
+        <Binormal> { 0.480355 -0.347302 0.241732 }
+      }
+      <Normal> { -0.420759 -0.832606 -0.360118 }
+    }
+    <Vertex> 3467 {
+      -1.02093148232 0.153288021684 3.29906749725
+      <UV>  {
+        0.542645 0.781097
+        <Tangent> { -0.206987 0.621525 0.755555 }
+        <Binormal> { 0.524477 0.028470 0.120263 }
+      }
+      <Normal> { 0.121128 -0.944731 -0.304605 }
+    }
+    <Vertex> 3468 {
+      -1.0081050396 0.218628108501 3.29929471016
+      <UV>  {
+        0.542283 0.780540
+        <Tangent> { -0.003103 0.568376 0.822763 }
+        <Binormal> { 0.480355 -0.347302 0.241732 }
+      }
+      <Normal> { -0.420759 -0.832606 -0.360118 }
+    }
+    <Vertex> 3469 {
+      -1.02093148232 0.225935831666 3.37623047829
+      <UV>  {
+        0.541965 0.780801
+        <Tangent> { 0.096924 0.258300 0.961190 }
+        <Binormal> { 0.846911 -0.422803 0.028219 }
+      }
+      <Normal> { -0.444807 -0.894253 -0.048921 }
+    }
+    <Vertex> 3470 {
+      -0.980468094349 0.272940546274 3.3676841259
+      <UV>  {
+        0.541873 0.780297
+        <Tangent> { 0.153397 0.234077 0.960040 }
+        <Binormal> { 0.552336 -0.745818 0.093592 }
+      }
+      <Normal> { -0.793207 -0.600269 -0.102298 }
+    }
+    <Vertex> 3471 {
+      -0.980468094349 0.272940546274 3.3676841259
+      <UV>  {
+        0.541873 0.780297
+        <Tangent> { 0.153397 0.234077 0.960040 }
+        <Binormal> { 0.552336 -0.745818 0.093592 }
+      }
+      <Normal> { -0.793207 -0.600269 -0.102298 }
+    }
+    <Vertex> 3472 {
+      -0.973062694073 0.268721431494 3.32326507568
+      <UV>  {
+        0.542021 0.780167
+        <Tangent> { 0.127369 0.410146 0.903082 }
+        <Binormal> { 0.352037 -0.678644 0.258564 }
+      }
+      <Normal> { -0.794122 -0.527146 -0.302377 }
+    }
+    <Vertex> 3473 {
+      -1.0081050396 0.218628108501 3.29929471016
+      <UV>  {
+        0.542283 0.780540
+        <Tangent> { -0.003103 0.568376 0.822763 }
+        <Binormal> { 0.480355 -0.347302 0.241732 }
+      }
+      <Normal> { -0.420759 -0.832606 -0.360118 }
+    }
+    <Vertex> 3474 {
+      -0.925194144249 0.290145397186 3.36455583572
+      <UV>  {
+        0.541772 0.779851
+        <Tangent> { 0.190450 0.092828 0.977298 }
+        <Binormal> { -0.008930 -0.954415 0.092395 }
+      }
+      <Normal> { -0.995331 0.000000 -0.096194 }
+    }
+    <Vertex> 3475 {
+      -0.973062694073 0.268721431494 3.32326507568
+      <UV>  {
+        0.542021 0.780167
+        <Tangent> { 0.127369 0.410146 0.903082 }
+        <Binormal> { 0.352037 -0.678644 0.258564 }
+      }
+      <Normal> { -0.794122 -0.527146 -0.302377 }
+    }
+    <Vertex> 3476 {
+      -0.980468094349 0.272940546274 3.3676841259
+      <UV>  {
+        0.541873 0.780297
+        <Tangent> { 0.153397 0.234077 0.960040 }
+        <Binormal> { 0.552336 -0.745818 0.093592 }
+      }
+      <Normal> { -0.793207 -0.600269 -0.102298 }
+    }
+    <Vertex> 3477 {
+      -0.925194144249 0.0598407909274 3.34645032883
+      <UV>  {
+        0.501925 0.777049
+        <Tangent> { -0.163728 0.093283 0.982085 }
+        <Binormal> { 0.008973 0.993249 -0.092848 }
+      }
+      <Normal> { 0.995331 0.000000 0.096194 }
+    }
+    <Vertex> 3478 {
+      -0.973062694073 0.0728265345097 3.29890322685
+      <UV>  {
+        0.506322 0.754386
+        <Tangent> { -0.162804 0.042081 0.985761 }
+        <Binormal> { 0.626696 0.721667 0.072695 }
+      }
+      <Normal> { 0.754692 -0.641591 -0.136845 }
+    }
+    <Vertex> 3479 {
+      -0.952831149101 0.0697379559278 3.2663860321
+      <UV>  {
+        0.513938 0.760459
+        <Tangent> { -0.160256 -0.044977 0.986050 }
+        <Binormal> { 0.478962 0.771323 0.113025 }
+      }
+      <Normal> { 0.830317 -0.472243 -0.295846 }
+    }
+    <Vertex> 3480 {
+      -0.952831149101 0.0697379559278 3.2663860321
+      <UV>  {
+        0.551014 0.783271
+        <Tangent> { -0.628155 0.505765 0.591289 }
+        <Binormal> { 0.129603 0.305120 -0.123304 }
+      }
+      <Normal> { 0.830317 -0.472243 -0.295846 }
+    }
+    <Vertex> 3481 {
+      -0.973062694073 0.0728265345097 3.29890322685
+      <UV>  {
+        0.548538 0.789195
+        <Tangent> { -0.294033 0.242624 0.924488 }
+        <Binormal> { 0.559941 0.657467 0.005543 }
+      }
+      <Normal> { 0.754692 -0.641591 -0.136845 }
+    }
+    <Vertex> 3482 {
+      -1.0081050396 0.118531376123 3.3226442337
+      <UV>  {
+        0.543387 0.782215
+        <Tangent> { -0.354451 0.423521 0.833663 }
+        <Binormal> { 0.632049 0.381960 0.074685 }
+      }
+      <Normal> { 0.524308 -0.837184 -0.155553 }
+    }
+    <Vertex> 3483 {
+      -1.0081050396 0.118531376123 3.3226442337
+      <UV>  {
+        0.543387 0.782215
+        <Tangent> { -0.354451 0.423521 0.833663 }
+        <Binormal> { 0.632049 0.381960 0.074685 }
+      }
+      <Normal> { 0.524308 -0.837184 -0.155553 }
+    }
+    <Vertex> 3484 {
+      -0.973062694073 0.0848592743278 3.26632356644
+      <UV>  {
+        0.544026 0.780783
+        <Tangent> { -0.417497 0.908561 0.014594 }
+        <Binormal> { -0.493449 -0.222678 -0.253360 }
+      }
+      <Normal> { 0.561632 -0.615375 -0.552995 }
+    }
+    <Vertex> 3485 {
+      -0.952831149101 0.0697379559278 3.2663860321
+      <UV>  {
+        0.551014 0.783271
+        <Tangent> { -0.628155 0.505765 0.591289 }
+        <Binormal> { 0.129603 0.305120 -0.123304 }
+      }
+      <Normal> { 0.830317 -0.472243 -0.295846 }
+    }
+    <Vertex> 3486 {
+      -0.973062694073 0.0848592743278 3.26632356644
+      <UV>  {
+        0.544026 0.780783
+        <Tangent> { -0.417497 0.908561 0.014594 }
+        <Binormal> { -0.493449 -0.222678 -0.253360 }
+      }
+      <Normal> { 0.561632 -0.615375 -0.552995 }
+    }
+    <Vertex> 3487 {
+      -1.0081050396 0.118531376123 3.3226442337
+      <UV>  {
+        0.543387 0.782215
+        <Tangent> { -0.354451 0.423521 0.833663 }
+        <Binormal> { 0.632049 0.381960 0.074685 }
+      }
+      <Normal> { 0.524308 -0.837184 -0.155553 }
+    }
+    <Vertex> 3488 {
+      -1.02093148232 0.153288021684 3.29906749725
+      <UV>  {
+        0.542645 0.781097
+        <Tangent> { -0.206987 0.621525 0.755555 }
+        <Binormal> { 0.524477 0.028470 0.120263 }
+      }
+      <Normal> { 0.121128 -0.944731 -0.304605 }
+    }
+    <Vertex> 3489 {
+      -1.02093148232 0.153288021684 3.29906749725
+      <UV>  {
+        0.542645 0.781097
+        <Tangent> { -0.206987 0.621525 0.755555 }
+        <Binormal> { 0.524477 0.028470 0.120263 }
+      }
+      <Normal> { 0.121128 -0.944731 -0.304605 }
+    }
+    <Vertex> 3490 {
+      -0.980468153954 0.147110804915 3.23403358459
+      <UV>  {
+        0.542980 0.780327
+        <Tangent> { -0.154273 0.967683 0.199471 }
+        <Binormal> { -0.586847 -0.086319 -0.035117 }
+      }
+      <Normal> { 0.140843 -0.655812 -0.741630 }
+    }
+    <Vertex> 3491 {
+      -0.973062694073 0.0848592743278 3.26632356644
+      <UV>  {
+        0.544026 0.780783
+        <Tangent> { -0.417497 0.908561 0.014594 }
+        <Binormal> { -0.493449 -0.222678 -0.253360 }
+      }
+      <Normal> { 0.561632 -0.615375 -0.552995 }
+    }
+    <Vertex> 3492 {
+      -0.980468153954 0.147110804915 3.23403358459
+      <UV>  {
+        0.542980 0.780327
+        <Tangent> { -0.154273 0.967683 0.199471 }
+        <Binormal> { -0.586847 -0.086319 -0.035117 }
+      }
+      <Normal> { 0.140843 -0.655812 -0.741630 }
+    }
+    <Vertex> 3493 {
+      -1.02093148232 0.153288021684 3.29906749725
+      <UV>  {
+        0.542645 0.781097
+        <Tangent> { -0.206987 0.621525 0.755555 }
+        <Binormal> { 0.524477 0.028470 0.120263 }
+      }
+      <Normal> { 0.121128 -0.944731 -0.304605 }
+    }
+    <Vertex> 3494 {
+      -1.0081050396 0.218628108501 3.29929471016
+      <UV>  {
+        0.542283 0.780540
+        <Tangent> { -0.003103 0.568376 0.822763 }
+        <Binormal> { 0.480355 -0.347302 0.241732 }
+      }
+      <Normal> { -0.420759 -0.832606 -0.360118 }
+    }
+    <Vertex> 3495 {
+      -1.0081050396 0.218628108501 3.29929471016
+      <UV>  {
+        0.542283 0.780540
+        <Tangent> { -0.003103 0.568376 0.822763 }
+        <Binormal> { 0.480355 -0.347302 0.241732 }
+      }
+      <Normal> { -0.420759 -0.832606 -0.360118 }
+    }
+    <Vertex> 3496 {
+      -0.973062694073 0.213278502226 3.24297380447
+      <UV>  {
+        0.542464 0.780095
+        <Tangent> { 0.046408 0.794787 0.605112 }
+        <Binormal> { -0.221053 -0.238292 0.329939 }
+      }
+      <Normal> { -0.447554 -0.555315 -0.700919 }
+    }
+    <Vertex> 3497 {
+      -0.980468153954 0.147110804915 3.23403358459
+      <UV>  {
+        0.542980 0.780327
+        <Tangent> { -0.154273 0.967683 0.199471 }
+        <Binormal> { -0.586847 -0.086319 -0.035117 }
+      }
+      <Normal> { 0.140843 -0.655812 -0.741630 }
+    }
+    <Vertex> 3498 {
+      -0.973062694073 0.213278502226 3.24297380447
+      <UV>  {
+        0.542464 0.780095
+        <Tangent> { 0.046408 0.794787 0.605112 }
+        <Binormal> { -0.221053 -0.238292 0.329939 }
+      }
+      <Normal> { -0.447554 -0.555315 -0.700919 }
+    }
+    <Vertex> 3499 {
+      -1.0081050396 0.218628108501 3.29929471016
+      <UV>  {
+        0.542283 0.780540
+        <Tangent> { -0.003103 0.568376 0.822763 }
+        <Binormal> { 0.480355 -0.347302 0.241732 }
+      }
+      <Normal> { -0.420759 -0.832606 -0.360118 }
+    }
+    <Vertex> 3500 {
+      -0.973062694073 0.268721431494 3.32326507568
+      <UV>  {
+        0.542021 0.780167
+        <Tangent> { 0.127369 0.410146 0.903082 }
+        <Binormal> { 0.352037 -0.678644 0.258564 }
+      }
+      <Normal> { -0.794122 -0.527146 -0.302377 }
+    }
+    <Vertex> 3501 {
+      -0.973062694073 0.268721431494 3.32326507568
+      <UV>  {
+        0.542021 0.780167
+        <Tangent> { 0.127369 0.410146 0.903082 }
+        <Binormal> { 0.352037 -0.678644 0.258564 }
+      }
+      <Normal> { -0.794122 -0.527146 -0.302377 }
+    }
+    <Vertex> 3502 {
+      -0.952831149101 0.265632838011 3.29074835777
+      <UV>  {
+        0.542102 0.779953
+        <Tangent> { 0.155947 0.512288 0.844536 }
+        <Binormal> { 0.009462 -0.622789 0.376031 }
+      }
+      <Normal> { -0.825587 -0.300790 -0.477401 }
+    }
+    <Vertex> 3503 {
+      -0.973062694073 0.213278502226 3.24297380447
+      <UV>  {
+        0.542464 0.780095
+        <Tangent> { 0.046408 0.794787 0.605112 }
+        <Binormal> { -0.221053 -0.238292 0.329939 }
+      }
+      <Normal> { -0.447554 -0.555315 -0.700919 }
+    }
+    <Vertex> 3504 {
+      -0.925194144249 0.290145397186 3.36455583572
+      <UV>  {
+        0.541772 0.779851
+        <Tangent> { 0.190450 0.092828 0.977298 }
+        <Binormal> { -0.008930 -0.954415 0.092395 }
+      }
+      <Normal> { -0.995331 0.000000 -0.096194 }
+    }
+    <Vertex> 3505 {
+      -0.952831149101 0.265632838011 3.29074835777
+      <UV>  {
+        0.542102 0.779953
+        <Tangent> { 0.155947 0.512288 0.844536 }
+        <Binormal> { 0.009462 -0.622789 0.376031 }
+      }
+      <Normal> { -0.825587 -0.300790 -0.477401 }
+    }
+    <Vertex> 3506 {
+      -0.973062694073 0.268721431494 3.32326507568
+      <UV>  {
+        0.542021 0.780167
+        <Tangent> { 0.127369 0.410146 0.903082 }
+        <Binormal> { 0.352037 -0.678644 0.258564 }
+      }
+      <Normal> { -0.794122 -0.527146 -0.302377 }
+    }
+    <Vertex> 3507 {
+      -0.925194144249 0.0598407909274 3.34645032883
+      <UV>  {
+        0.501925 0.777049
+        <Tangent> { -0.163728 0.093283 0.982085 }
+        <Binormal> { 0.008973 0.993249 -0.092848 }
+      }
+      <Normal> { 0.995331 0.000000 0.096194 }
+    }
+    <Vertex> 3508 {
+      -0.952831149101 0.0697379559278 3.2663860321
+      <UV>  {
+        0.513938 0.760459
+        <Tangent> { -0.160256 -0.044977 0.986050 }
+        <Binormal> { 0.478962 0.771323 0.113025 }
+      }
+      <Normal> { 0.830317 -0.472243 -0.295846 }
+    }
+    <Vertex> 3509 {
+      -0.925194144249 0.068607442081 3.25448417664
+      <UV>  {
+        0.518335 0.770976
+        <Tangent> { -0.158296 -0.093698 0.982936 }
+        <Binormal> { 0.138269 0.690681 0.088106 }
+      }
+      <Normal> { 0.798639 -0.083865 -0.595904 }
+    }
+    <Vertex> 3510 {
+      -0.925194144249 0.068607442081 3.25448417664
+      <UV>  {
+        0.551014 0.776430
+        <Tangent> { 0.711255 0.490342 -0.503667 }
+        <Binormal> { -0.334437 0.021592 -0.451256 }
+      }
+      <Normal> { 0.798639 -0.083865 -0.595904 }
+    }
+    <Vertex> 3511 {
+      -0.952831149101 0.0697379559278 3.2663860321
+      <UV>  {
+        0.551014 0.783271
+        <Tangent> { -0.628155 0.505765 0.591289 }
+        <Binormal> { 0.129603 0.305120 -0.123304 }
+      }
+      <Normal> { 0.830317 -0.472243 -0.295846 }
+    }
+    <Vertex> 3512 {
+      -0.973062694073 0.0848592743278 3.26632356644
+      <UV>  {
+        0.544026 0.780783
+        <Tangent> { -0.417497 0.908561 0.014594 }
+        <Binormal> { -0.493449 -0.222678 -0.253360 }
+      }
+      <Normal> { 0.561632 -0.615375 -0.552995 }
+    }
+    <Vertex> 3513 {
+      -0.973062694073 0.0848592743278 3.26632356644
+      <UV>  {
+        0.544026 0.780783
+        <Tangent> { -0.417497 0.908561 0.014594 }
+        <Binormal> { -0.493449 -0.222678 -0.253360 }
+      }
+      <Normal> { 0.561632 -0.615375 -0.552995 }
+    }
+    <Vertex> 3514 {
+      -0.925194144249 0.0829012095928 3.24570846558
+      <UV>  {
+        0.544062 0.779102
+        <Tangent> { 0.261736 0.866011 -0.426050 }
+        <Binormal> { -0.745171 0.007763 -0.442001 }
+      }
+      <Normal> { 0.510147 -0.000793 -0.860073 }
+    }
+    <Vertex> 3515 {
+      -0.925194144249 0.068607442081 3.25448417664
+      <UV>  {
+        0.551014 0.776430
+        <Tangent> { 0.711255 0.490342 -0.503667 }
+        <Binormal> { -0.334437 0.021592 -0.451256 }
+      }
+      <Normal> { 0.798639 -0.083865 -0.595904 }
+    }
+    <Vertex> 3516 {
+      -0.925194144249 0.0829012095928 3.24570846558
+      <UV>  {
+        0.544062 0.779102
+        <Tangent> { 0.261736 0.866011 -0.426050 }
+        <Binormal> { -0.745171 0.007763 -0.442001 }
+      }
+      <Normal> { 0.510147 -0.000793 -0.860073 }
+    }
+    <Vertex> 3517 {
+      -0.973062694073 0.0848592743278 3.26632356644
+      <UV>  {
+        0.544026 0.780783
+        <Tangent> { -0.417497 0.908561 0.014594 }
+        <Binormal> { -0.493449 -0.222678 -0.253360 }
+      }
+      <Normal> { 0.561632 -0.615375 -0.552995 }
+    }
+    <Vertex> 3518 {
+      -0.980468153954 0.147110804915 3.23403358459
+      <UV>  {
+        0.542980 0.780327
+        <Tangent> { -0.154273 0.967683 0.199471 }
+        <Binormal> { -0.586847 -0.086319 -0.035117 }
+      }
+      <Normal> { 0.140843 -0.655812 -0.741630 }
+    }
+    <Vertex> 3519 {
+      -0.980468153954 0.147110804915 3.23403358459
+      <UV>  {
+        0.542980 0.780327
+        <Tangent> { -0.154273 0.967683 0.199471 }
+        <Binormal> { -0.586847 -0.086319 -0.035117 }
+      }
+      <Normal> { 0.140843 -0.655812 -0.741630 }
+    }
+    <Vertex> 3520 {
+      -0.925194144249 0.144849792123 3.21022963524
+      <UV>  {
+        0.542990 0.779430
+        <Tangent> { 0.230507 0.973070 0.000786 }
+        <Binormal> { -0.958813 0.227264 -0.166577 }
+      }
+      <Normal> { 0.170385 -0.003388 -0.985351 }
+    }
+    <Vertex> 3521 {
+      -0.925194144249 0.0829012095928 3.24570846558
+      <UV>  {
+        0.544062 0.779102
+        <Tangent> { 0.261736 0.866011 -0.426050 }
+        <Binormal> { -0.745171 0.007763 -0.442001 }
+      }
+      <Normal> { 0.510147 -0.000793 -0.860073 }
+    }
+    <Vertex> 3522 {
+      -0.925194144249 0.144849792123 3.21022963524
+      <UV>  {
+        0.542990 0.779430
+        <Tangent> { 0.230507 0.973070 0.000786 }
+        <Binormal> { -0.958813 0.227264 -0.166577 }
+      }
+      <Normal> { 0.170385 -0.003388 -0.985351 }
+    }
+    <Vertex> 3523 {
+      -0.980468153954 0.147110804915 3.23403358459
+      <UV>  {
+        0.542980 0.780327
+        <Tangent> { -0.154273 0.967683 0.199471 }
+        <Binormal> { -0.586847 -0.086319 -0.035117 }
+      }
+      <Normal> { 0.140843 -0.655812 -0.741630 }
+    }
+    <Vertex> 3524 {
+      -0.973062694073 0.213278502226 3.24297380447
+      <UV>  {
+        0.542464 0.780095
+        <Tangent> { 0.046408 0.794787 0.605112 }
+        <Binormal> { -0.221053 -0.238292 0.329939 }
+      }
+      <Normal> { -0.447554 -0.555315 -0.700919 }
+    }
+    <Vertex> 3525 {
+      -0.973062694073 0.213278502226 3.24297380447
+      <UV>  {
+        0.542464 0.780095
+        <Tangent> { 0.046408 0.794787 0.605112 }
+        <Binormal> { -0.221053 -0.238292 0.329939 }
+      }
+      <Normal> { -0.447554 -0.555315 -0.700919 }
+    }
+    <Vertex> 3526 {
+      -0.925194203854 0.211320385337 3.22235894203
+      <UV>  {
+        0.542460 0.779584
+        <Tangent> { 0.223994 0.803376 0.551737 }
+        <Binormal> { -0.715765 -0.071202 0.394263 }
+      }
+      <Normal> { -0.484146 0.023713 -0.874660 }
+    }
+    <Vertex> 3527 {
+      -0.925194144249 0.144849792123 3.21022963524
+      <UV>  {
+        0.542990 0.779430
+        <Tangent> { 0.230507 0.973070 0.000786 }
+        <Binormal> { -0.958813 0.227264 -0.166577 }
+      }
+      <Normal> { 0.170385 -0.003388 -0.985351 }
+    }
+    <Vertex> 3528 {
+      -0.925194203854 0.211320385337 3.22235894203
+      <UV>  {
+        0.542460 0.779584
+        <Tangent> { 0.223994 0.803376 0.551737 }
+        <Binormal> { -0.715765 -0.071202 0.394263 }
+      }
+      <Normal> { -0.484146 0.023713 -0.874660 }
+    }
+    <Vertex> 3529 {
+      -0.973062694073 0.213278502226 3.24297380447
+      <UV>  {
+        0.542464 0.780095
+        <Tangent> { 0.046408 0.794787 0.605112 }
+        <Binormal> { -0.221053 -0.238292 0.329939 }
+      }
+      <Normal> { -0.447554 -0.555315 -0.700919 }
+    }
+    <Vertex> 3530 {
+      -0.952831149101 0.265632838011 3.29074835777
+      <UV>  {
+        0.542102 0.779953
+        <Tangent> { 0.155947 0.512288 0.844536 }
+        <Binormal> { 0.009462 -0.622789 0.376031 }
+      }
+      <Normal> { -0.825587 -0.300790 -0.477401 }
+    }
+    <Vertex> 3531 {
+      -0.952831149101 0.265632838011 3.29074835777
+      <UV>  {
+        0.542102 0.779953
+        <Tangent> { 0.155947 0.512288 0.844536 }
+        <Binormal> { 0.009462 -0.622789 0.376031 }
+      }
+      <Normal> { -0.825587 -0.300790 -0.477401 }
+    }
+    <Vertex> 3532 {
+      -0.925194144249 0.264502316713 3.27884626389
+      <UV>  {
+        0.542095 0.779711
+        <Tangent> { 0.214915 0.491724 0.843812 }
+        <Binormal> { -0.308987 -0.595603 0.425780 }
+      }
+      <Normal> { -0.842402 0.053743 -0.536149 }
+    }
+    <Vertex> 3533 {
+      -0.925194203854 0.211320385337 3.22235894203
+      <UV>  {
+        0.542460 0.779584
+        <Tangent> { 0.223994 0.803376 0.551737 }
+        <Binormal> { -0.715765 -0.071202 0.394263 }
+      }
+      <Normal> { -0.484146 0.023713 -0.874660 }
+    }
+    <Vertex> 3534 {
+      -0.925194144249 0.290145397186 3.36455583572
+      <UV>  {
+        0.541772 0.779851
+        <Tangent> { 0.190450 0.092828 0.977298 }
+        <Binormal> { -0.008930 -0.954415 0.092395 }
+      }
+      <Normal> { -0.995331 0.000000 -0.096194 }
+    }
+    <Vertex> 3535 {
+      -0.925194144249 0.264502316713 3.27884626389
+      <UV>  {
+        0.542095 0.779711
+        <Tangent> { 0.214915 0.491724 0.843812 }
+        <Binormal> { -0.308987 -0.595603 0.425780 }
+      }
+      <Normal> { -0.842402 0.053743 -0.536149 }
+    }
+    <Vertex> 3536 {
+      -0.952831149101 0.265632838011 3.29074835777
+      <UV>  {
+        0.542102 0.779953
+        <Tangent> { 0.155947 0.512288 0.844536 }
+        <Binormal> { 0.009462 -0.622789 0.376031 }
+      }
+      <Normal> { -0.825587 -0.300790 -0.477401 }
+    }
+    <Vertex> 3537 {
+      -0.925194144249 0.0598407909274 3.34645032883
+      <UV>  {
+        0.501925 0.777049
+        <Tangent> { -0.163728 0.093283 0.982085 }
+        <Binormal> { 0.008973 0.993249 -0.092848 }
+      }
+      <Normal> { 0.995331 0.000000 0.096194 }
+    }
+    <Vertex> 3538 {
+      -0.925194144249 0.068607442081 3.25448417664
+      <UV>  {
+        0.518335 0.770976
+        <Tangent> { -0.158296 -0.093698 0.982936 }
+        <Binormal> { 0.138269 0.690681 0.088106 }
+      }
+      <Normal> { 0.798639 -0.083865 -0.595904 }
+    }
+    <Vertex> 3539 {
+      -0.897557199001 0.0697379559278 3.2663860321
+      <UV>  {
+        0.518335 0.783121
+        <Tangent> { -0.158297 -0.093698 0.982936 }
+        <Binormal> { -0.306486 0.737502 0.020944 }
+      }
+      <Normal> { 0.822077 0.354289 -0.445662 }
+    }
+    <Vertex> 3540 {
+      -0.897557199001 0.0697379559278 3.2663860321
+      <UV>  {
+        0.548538 0.770507
+        <Tangent> { 0.901208 0.154543 0.404896 }
+        <Binormal> { -0.212324 0.734490 0.192242 }
+      }
+      <Normal> { 0.822077 0.354289 -0.445662 }
+    }
+    <Vertex> 3541 {
+      -0.925194144249 0.068607442081 3.25448417664
+      <UV>  {
+        0.551014 0.776430
+        <Tangent> { 0.711255 0.490342 -0.503667 }
+        <Binormal> { -0.334437 0.021592 -0.451256 }
+      }
+      <Normal> { 0.798639 -0.083865 -0.595904 }
+    }
+    <Vertex> 3542 {
+      -0.925194144249 0.0829012095928 3.24570846558
+      <UV>  {
+        0.544062 0.779102
+        <Tangent> { 0.261736 0.866011 -0.426050 }
+        <Binormal> { -0.745171 0.007763 -0.442001 }
+      }
+      <Normal> { 0.510147 -0.000793 -0.860073 }
+    }
+    <Vertex> 3543 {
+      -0.925194144249 0.0829012095928 3.24570846558
+      <UV>  {
+        0.544062 0.779102
+        <Tangent> { 0.261736 0.866011 -0.426050 }
+        <Binormal> { -0.745171 0.007763 -0.442001 }
+      }
+      <Normal> { 0.510147 -0.000793 -0.860073 }
+    }
+    <Vertex> 3544 {
+      -0.87732565403 0.0848592668772 3.26632356644
+      <UV>  {
+        0.543484 0.777621
+        <Tangent> { 0.639050 0.738622 0.214597 }
+        <Binormal> { -0.561882 0.489575 -0.011839 }
+      }
+      <Normal> { 0.539811 0.605396 -0.584826 }
+    }
+    <Vertex> 3545 {
+      -0.897557199001 0.0697379559278 3.2663860321
+      <UV>  {
+        0.548538 0.770507
+        <Tangent> { 0.901208 0.154543 0.404896 }
+        <Binormal> { -0.212324 0.734490 0.192242 }
+      }
+      <Normal> { 0.822077 0.354289 -0.445662 }
+    }
+    <Vertex> 3546 {
+      -0.87732565403 0.0848592668772 3.26632356644
+      <UV>  {
+        0.543484 0.777621
+        <Tangent> { 0.639050 0.738622 0.214597 }
+        <Binormal> { -0.561882 0.489575 -0.011839 }
+      }
+      <Normal> { 0.539811 0.605396 -0.584826 }
+    }
+    <Vertex> 3547 {
+      -0.925194144249 0.0829012095928 3.24570846558
+      <UV>  {
+        0.544062 0.779102
+        <Tangent> { 0.261736 0.866011 -0.426050 }
+        <Binormal> { -0.745171 0.007763 -0.442001 }
+      }
+      <Normal> { 0.510147 -0.000793 -0.860073 }
+    }
+    <Vertex> 3548 {
+      -0.925194144249 0.144849792123 3.21022963524
+      <UV>  {
+        0.542990 0.779430
+        <Tangent> { 0.230507 0.973070 0.000786 }
+        <Binormal> { -0.958813 0.227264 -0.166577 }
+      }
+      <Normal> { 0.170385 -0.003388 -0.985351 }
+    }
+    <Vertex> 3549 {
+      -0.925194144249 0.144849792123 3.21022963524
+      <UV>  {
+        0.542990 0.779430
+        <Tangent> { 0.230507 0.973070 0.000786 }
+        <Binormal> { -0.958813 0.227264 -0.166577 }
+      }
+      <Normal> { 0.170385 -0.003388 -0.985351 }
+    }
+    <Vertex> 3550 {
+      -0.869920253754 0.147110804915 3.23403358459
+      <UV>  {
+        0.542675 0.778645
+        <Tangent> { 0.497903 0.738793 0.454179 }
+        <Binormal> { -0.842339 0.432192 0.220403 }
+      }
+      <Normal> { 0.150273 0.665639 -0.730949 }
+    }
+    <Vertex> 3551 {
+      -0.87732565403 0.0848592668772 3.26632356644
+      <UV>  {
+        0.543484 0.777621
+        <Tangent> { 0.639050 0.738622 0.214597 }
+        <Binormal> { -0.561882 0.489575 -0.011839 }
+      }
+      <Normal> { 0.539811 0.605396 -0.584826 }
+    }
+    <Vertex> 3552 {
+      -0.869920253754 0.147110804915 3.23403358459
+      <UV>  {
+        0.542675 0.778645
+        <Tangent> { 0.497903 0.738793 0.454179 }
+        <Binormal> { -0.842339 0.432192 0.220403 }
+      }
+      <Normal> { 0.150273 0.665639 -0.730949 }
+    }
+    <Vertex> 3553 {
+      -0.925194144249 0.144849792123 3.21022963524
+      <UV>  {
+        0.542990 0.779430
+        <Tangent> { 0.230507 0.973070 0.000786 }
+        <Binormal> { -0.958813 0.227264 -0.166577 }
+      }
+      <Normal> { 0.170385 -0.003388 -0.985351 }
+    }
+    <Vertex> 3554 {
+      -0.925194203854 0.211320385337 3.22235894203
+      <UV>  {
+        0.542460 0.779584
+        <Tangent> { 0.223994 0.803376 0.551737 }
+        <Binormal> { -0.715765 -0.071202 0.394263 }
+      }
+      <Normal> { -0.484146 0.023713 -0.874660 }
+    }
+    <Vertex> 3555 {
+      -0.925194203854 0.211320385337 3.22235894203
+      <UV>  {
+        0.542460 0.779584
+        <Tangent> { 0.223994 0.803376 0.551737 }
+        <Binormal> { -0.715765 -0.071202 0.394263 }
+      }
+      <Normal> { -0.484146 0.023713 -0.874660 }
+    }
+    <Vertex> 3556 {
+      -0.87732565403 0.213278487325 3.24297380447
+      <UV>  {
+        0.542271 0.779145
+        <Tangent> { 0.326250 0.579915 0.746498 }
+        <Binormal> { -0.821059 -0.123184 0.454531 }
+      }
+      <Normal> { -0.460768 0.574175 -0.676717 }
+    }
+    <Vertex> 3557 {
+      -0.869920253754 0.147110804915 3.23403358459
+      <UV>  {
+        0.542675 0.778645
+        <Tangent> { 0.497903 0.738793 0.454179 }
+        <Binormal> { -0.842339 0.432192 0.220403 }
+      }
+      <Normal> { 0.150273 0.665639 -0.730949 }
+    }
+    <Vertex> 3558 {
+      -0.87732565403 0.213278487325 3.24297380447
+      <UV>  {
+        0.542271 0.779145
+        <Tangent> { 0.326250 0.579915 0.746498 }
+        <Binormal> { -0.821059 -0.123184 0.454531 }
+      }
+      <Normal> { -0.460768 0.574175 -0.676717 }
+    }
+    <Vertex> 3559 {
+      -0.925194203854 0.211320385337 3.22235894203
+      <UV>  {
+        0.542460 0.779584
+        <Tangent> { 0.223994 0.803376 0.551737 }
+        <Binormal> { -0.715765 -0.071202 0.394263 }
+      }
+      <Normal> { -0.484146 0.023713 -0.874660 }
+    }
+    <Vertex> 3560 {
+      -0.925194144249 0.264502316713 3.27884626389
+      <UV>  {
+        0.542095 0.779711
+        <Tangent> { 0.214915 0.491724 0.843812 }
+        <Binormal> { -0.308987 -0.595603 0.425780 }
+      }
+      <Normal> { -0.842402 0.053743 -0.536149 }
+    }
+    <Vertex> 3561 {
+      -0.925194144249 0.264502316713 3.27884626389
+      <UV>  {
+        0.542095 0.779711
+        <Tangent> { 0.214915 0.491724 0.843812 }
+        <Binormal> { -0.308987 -0.595603 0.425780 }
+      }
+      <Normal> { -0.842402 0.053743 -0.536149 }
+    }
+    <Vertex> 3562 {
+      -0.897557199001 0.265632838011 3.29074835777
+      <UV>  {
+        0.542001 0.779507
+        <Tangent> { 0.239966 0.352291 0.904603 }
+        <Binormal> { -0.495122 -0.635286 0.378749 }
+      }
+      <Normal> { -0.817499 0.378185 -0.434339 }
+    }
+    <Vertex> 3563 {
+      -0.87732565403 0.213278487325 3.24297380447
+      <UV>  {
+        0.542271 0.779145
+        <Tangent> { 0.326250 0.579915 0.746498 }
+        <Binormal> { -0.821059 -0.123184 0.454531 }
+      }
+      <Normal> { -0.460768 0.574175 -0.676717 }
+    }
+    <Vertex> 3564 {
+      -0.925194144249 0.290145397186 3.36455583572
+      <UV>  {
+        0.541772 0.779851
+        <Tangent> { 0.190450 0.092828 0.977298 }
+        <Binormal> { -0.008930 -0.954415 0.092395 }
+      }
+      <Normal> { -0.995331 0.000000 -0.096194 }
+    }
+    <Vertex> 3565 {
+      -0.897557199001 0.265632838011 3.29074835777
+      <UV>  {
+        0.542001 0.779507
+        <Tangent> { 0.239966 0.352291 0.904603 }
+        <Binormal> { -0.495122 -0.635286 0.378749 }
+      }
+      <Normal> { -0.817499 0.378185 -0.434339 }
+    }
+    <Vertex> 3566 {
+      -0.925194144249 0.264502316713 3.27884626389
+      <UV>  {
+        0.542095 0.779711
+        <Tangent> { 0.214915 0.491724 0.843812 }
+        <Binormal> { -0.308987 -0.595603 0.425780 }
+      }
+      <Normal> { -0.842402 0.053743 -0.536149 }
+    }
+    <Vertex> 3567 {
+      -0.925194144249 0.0598407909274 3.34645032883
+      <UV>  {
+        0.501925 0.777049
+        <Tangent> { -0.163728 0.093283 0.982085 }
+        <Binormal> { 0.008973 0.993249 -0.092848 }
+      }
+      <Normal> { 0.995331 0.000000 0.096194 }
+    }
+    <Vertex> 3568 {
+      -0.897557199001 0.0697379559278 3.2663860321
+      <UV>  {
+        0.518335 0.783121
+        <Tangent> { -0.158297 -0.093698 0.982936 }
+        <Binormal> { -0.306486 0.737502 0.020944 }
+      }
+      <Normal> { 0.822077 0.354289 -0.445662 }
+    }
+    <Vertex> 3569 {
+      -0.87732565403 0.0728265345097 3.29890322685
+      <UV>  {
+        0.513938 0.793639
+        <Tangent> { -0.160257 -0.044977 0.986050 }
+        <Binormal> { -0.564886 0.776601 -0.056385 }
+      }
+      <Normal> { 0.807001 0.578326 -0.119449 }
+    }
+    <Vertex> 3570 {
+      -0.87732565403 0.0728265345097 3.29890322685
+      <UV>  {
+        0.544248 0.767086
+        <Tangent> { 0.469367 0.421066 0.776143 }
+        <Binormal> { -0.499160 0.682414 -0.068353 }
+      }
+      <Normal> { 0.807001 0.578326 -0.119449 }
+    }
+    <Vertex> 3571 {
+      -0.897557199001 0.0697379559278 3.2663860321
+      <UV>  {
+        0.548538 0.770507
+        <Tangent> { 0.901208 0.154543 0.404896 }
+        <Binormal> { -0.212324 0.734490 0.192242 }
+      }
+      <Normal> { 0.822077 0.354289 -0.445662 }
+    }
+    <Vertex> 3572 {
+      -0.87732565403 0.0848592668772 3.26632356644
+      <UV>  {
+        0.543484 0.777621
+        <Tangent> { 0.639050 0.738622 0.214597 }
+        <Binormal> { -0.561882 0.489575 -0.011839 }
+      }
+      <Normal> { 0.539811 0.605396 -0.584826 }
+    }
+    <Vertex> 3573 {
+      -0.87732565403 0.0848592668772 3.26632356644
+      <UV>  {
+        0.543484 0.777621
+        <Tangent> { 0.639050 0.738622 0.214597 }
+        <Binormal> { -0.561882 0.489575 -0.011839 }
+      }
+      <Normal> { 0.539811 0.605396 -0.584826 }
+    }
+    <Vertex> 3574 {
+      -0.842283308506 0.118531368673 3.3226442337
+      <UV>  {
+        0.542447 0.776737
+        <Tangent> { 0.424348 0.354461 0.833238 }
+        <Binormal> { -0.775347 0.504616 0.180200 }
+      }
+      <Normal> { 0.498398 0.840968 -0.210517 }
+    }
+    <Vertex> 3575 {
+      -0.87732565403 0.0728265345097 3.29890322685
+      <UV>  {
+        0.544248 0.767086
+        <Tangent> { 0.469367 0.421066 0.776143 }
+        <Binormal> { -0.499160 0.682414 -0.068353 }
+      }
+      <Normal> { 0.807001 0.578326 -0.119449 }
+    }
+    <Vertex> 3576 {
+      -0.842283308506 0.118531368673 3.3226442337
+      <UV>  {
+        0.542447 0.776737
+        <Tangent> { 0.424348 0.354461 0.833238 }
+        <Binormal> { -0.775347 0.504616 0.180200 }
+      }
+      <Normal> { 0.498398 0.840968 -0.210517 }
+    }
+    <Vertex> 3577 {
+      -0.87732565403 0.0848592668772 3.26632356644
+      <UV>  {
+        0.543484 0.777621
+        <Tangent> { 0.639050 0.738622 0.214597 }
+        <Binormal> { -0.561882 0.489575 -0.011839 }
+      }
+      <Normal> { 0.539811 0.605396 -0.584826 }
+    }
+    <Vertex> 3578 {
+      -0.869920253754 0.147110804915 3.23403358459
+      <UV>  {
+        0.542675 0.778645
+        <Tangent> { 0.497903 0.738793 0.454179 }
+        <Binormal> { -0.842339 0.432192 0.220403 }
+      }
+      <Normal> { 0.150273 0.665639 -0.730949 }
+    }
+    <Vertex> 3579 {
+      -0.869920253754 0.147110804915 3.23403358459
+      <UV>  {
+        0.542675 0.778645
+        <Tangent> { 0.497903 0.738793 0.454179 }
+        <Binormal> { -0.842339 0.432192 0.220403 }
+      }
+      <Normal> { 0.150273 0.665639 -0.730949 }
+    }
+    <Vertex> 3580 {
+      -0.829456865788 0.153288006783 3.29906749725
+      <UV>  {
+        0.542117 0.778183
+        <Tangent> { 0.331896 0.288270 0.898190 }
+        <Binormal> { -0.931716 0.248201 0.264626 }
+      }
+      <Normal> { 0.151982 0.929319 -0.336528 }
+    }
+    <Vertex> 3581 {
+      -0.842283308506 0.118531368673 3.3226442337
+      <UV>  {
+        0.542447 0.776737
+        <Tangent> { 0.424348 0.354461 0.833238 }
+        <Binormal> { -0.775347 0.504616 0.180200 }
+      }
+      <Normal> { 0.498398 0.840968 -0.210517 }
+    }
+    <Vertex> 3582 {
+      -0.829456865788 0.153288006783 3.29906749725
+      <UV>  {
+        0.542117 0.778183
+        <Tangent> { 0.331896 0.288270 0.898190 }
+        <Binormal> { -0.931716 0.248201 0.264626 }
+      }
+      <Normal> { 0.151982 0.929319 -0.336528 }
+    }
+    <Vertex> 3583 {
+      -0.869920253754 0.147110804915 3.23403358459
+      <UV>  {
+        0.542675 0.778645
+        <Tangent> { 0.497903 0.738793 0.454179 }
+        <Binormal> { -0.842339 0.432192 0.220403 }
+      }
+      <Normal> { 0.150273 0.665639 -0.730949 }
+    }
+    <Vertex> 3584 {
+      -0.87732565403 0.213278487325 3.24297380447
+      <UV>  {
+        0.542271 0.779145
+        <Tangent> { 0.326250 0.579915 0.746498 }
+        <Binormal> { -0.821059 -0.123184 0.454531 }
+      }
+      <Normal> { -0.460768 0.574175 -0.676717 }
+    }
+    <Vertex> 3585 {
+      -0.87732565403 0.213278487325 3.24297380447
+      <UV>  {
+        0.542271 0.779145
+        <Tangent> { 0.326250 0.579915 0.746498 }
+        <Binormal> { -0.821059 -0.123184 0.454531 }
+      }
+      <Normal> { -0.460768 0.574175 -0.676717 }
+    }
+    <Vertex> 3586 {
+      -0.842283248901 0.218628123403 3.29929494858
+      <UV>  {
+        0.541949 0.778895
+        <Tangent> { 0.244743 0.247842 0.937377 }
+        <Binormal> { -0.867132 -0.319454 0.310866 }
+      }
+      <Normal> { -0.430860 0.833857 -0.344951 }
+    }
+    <Vertex> 3587 {
+      -0.829456865788 0.153288006783 3.29906749725
+      <UV>  {
+        0.542117 0.778183
+        <Tangent> { 0.331896 0.288270 0.898190 }
+        <Binormal> { -0.931716 0.248201 0.264626 }
+      }
+      <Normal> { 0.151982 0.929319 -0.336528 }
+    }
+    <Vertex> 3588 {
+      -0.842283248901 0.218628123403 3.29929494858
+      <UV>  {
+        0.541949 0.778895
+        <Tangent> { 0.244743 0.247842 0.937377 }
+        <Binormal> { -0.867132 -0.319454 0.310866 }
+      }
+      <Normal> { -0.430860 0.833857 -0.344951 }
+    }
+    <Vertex> 3589 {
+      -0.87732565403 0.213278487325 3.24297380447
+      <UV>  {
+        0.542271 0.779145
+        <Tangent> { 0.326250 0.579915 0.746498 }
+        <Binormal> { -0.821059 -0.123184 0.454531 }
+      }
+      <Normal> { -0.460768 0.574175 -0.676717 }
+    }
+    <Vertex> 3590 {
+      -0.897557199001 0.265632838011 3.29074835777
+      <UV>  {
+        0.542001 0.779507
+        <Tangent> { 0.239966 0.352291 0.904603 }
+        <Binormal> { -0.495122 -0.635286 0.378749 }
+      }
+      <Normal> { -0.817499 0.378185 -0.434339 }
+    }
+    <Vertex> 3591 {
+      -0.897557199001 0.265632838011 3.29074835777
+      <UV>  {
+        0.542001 0.779507
+        <Tangent> { 0.239966 0.352291 0.904603 }
+        <Binormal> { -0.495122 -0.635286 0.378749 }
+      }
+      <Normal> { -0.817499 0.378185 -0.434339 }
+    }
+    <Vertex> 3592 {
+      -0.877325594425 0.268721431494 3.32326507568
+      <UV>  {
+        0.541846 0.779395
+        <Tangent> { 0.206024 0.154373 0.966294 }
+        <Binormal> { -0.578124 -0.713333 0.237222 }
+      }
+      <Normal> { -0.791253 0.558550 -0.248756 }
+    }
+    <Vertex> 3593 {
+      -0.842283248901 0.218628123403 3.29929494858
+      <UV>  {
+        0.541949 0.778895
+        <Tangent> { 0.244743 0.247842 0.937377 }
+        <Binormal> { -0.867132 -0.319454 0.310866 }
+      }
+      <Normal> { -0.430860 0.833857 -0.344951 }
+    }
+    <Vertex> 3594 {
+      -0.925194144249 0.290145397186 3.36455583572
+      <UV>  {
+        0.541772 0.779851
+        <Tangent> { 0.190450 0.092828 0.977298 }
+        <Binormal> { -0.008930 -0.954415 0.092395 }
+      }
+      <Normal> { -0.995331 0.000000 -0.096194 }
+    }
+    <Vertex> 3595 {
+      -0.877325594425 0.268721431494 3.32326507568
+      <UV>  {
+        0.541846 0.779395
+        <Tangent> { 0.206024 0.154373 0.966294 }
+        <Binormal> { -0.578124 -0.713333 0.237222 }
+      }
+      <Normal> { -0.791253 0.558550 -0.248756 }
+    }
+    <Vertex> 3596 {
+      -0.897557199001 0.265632838011 3.29074835777
+      <UV>  {
+        0.542001 0.779507
+        <Tangent> { 0.239966 0.352291 0.904603 }
+        <Binormal> { -0.495122 -0.635286 0.378749 }
+      }
+      <Normal> { -0.817499 0.378185 -0.434339 }
+    }
+    <Vertex> 3597 {
+      -0.925194144249 0.0598407909274 3.34645032883
+      <UV>  {
+        0.501925 0.777049
+        <Tangent> { -0.163728 0.093283 0.982085 }
+        <Binormal> { 0.008973 0.993249 -0.092848 }
+      }
+      <Normal> { 0.995331 0.000000 0.096194 }
+    }
+    <Vertex> 3598 {
+      -0.87732565403 0.0728265345097 3.29890322685
+      <UV>  {
+        0.513938 0.793639
+        <Tangent> { -0.160257 -0.044977 0.986050 }
+        <Binormal> { -0.564886 0.776601 -0.056385 }
+      }
+      <Normal> { 0.807001 0.578326 -0.119449 }
+    }
+    <Vertex> 3599 {
+      -0.869920253754 0.0770456641912 3.34332203865
+      <UV>  {
+        0.506322 0.799711
+        <Tangent> { -0.162804 0.042082 0.985761 }
+        <Binormal> { -0.591802 0.792730 -0.131581 }
+      }
+      <Normal> { 0.797296 0.602130 0.041688 }
+    }
+    <Vertex> 3600 {
+      -0.869920253754 0.0770456641912 3.34332203865
+      <UV>  {
+        0.539295 0.767086
+        <Tangent> { 0.100909 0.057012 0.993261 }
+        <Binormal> { -0.595696 0.787716 0.015304 }
+      }
+      <Normal> { 0.797296 0.602130 0.041688 }
+    }
+    <Vertex> 3601 {
+      -0.87732565403 0.0728265345097 3.29890322685
+      <UV>  {
+        0.544248 0.767086
+        <Tangent> { 0.469367 0.421066 0.776143 }
+        <Binormal> { -0.499160 0.682414 -0.068353 }
+      }
+      <Normal> { 0.807001 0.578326 -0.119449 }
+    }
+    <Vertex> 3602 {
+      -0.842283308506 0.118531368673 3.3226442337
+      <UV>  {
+        0.542447 0.776737
+        <Tangent> { 0.424348 0.354461 0.833238 }
+        <Binormal> { -0.775347 0.504616 0.180200 }
+      }
+      <Normal> { 0.498398 0.840968 -0.210517 }
+    }
+    <Vertex> 3603 {
+      -0.842283308506 0.118531368673 3.3226442337
+      <UV>  {
+        0.542447 0.776737
+        <Tangent> { 0.424348 0.354461 0.833238 }
+        <Binormal> { -0.775347 0.504616 0.180200 }
+      }
+      <Normal> { 0.498398 0.840968 -0.210517 }
+    }
+    <Vertex> 3604 {
+      -0.829456865788 0.125839084387 3.39958024025
+      <UV>  {
+        0.541230 0.776688
+        <Tangent> { 0.033981 -0.006077 0.999404 }
+        <Binormal> { -0.833613 0.550840 0.031694 }
+      }
+      <Normal> { 0.551561 0.834040 0.011536 }
+    }
+    <Vertex> 3605 {
+      -0.869920253754 0.0770456641912 3.34332203865
+      <UV>  {
+        0.539295 0.767086
+        <Tangent> { 0.100909 0.057012 0.993261 }
+        <Binormal> { -0.595696 0.787716 0.015304 }
+      }
+      <Normal> { 0.797296 0.602130 0.041688 }
+    }
+    <Vertex> 3606 {
+      -0.829456865788 0.125839084387 3.39958024025
+      <UV>  {
+        0.541230 0.776688
+        <Tangent> { 0.033981 -0.006077 0.999404 }
+        <Binormal> { -0.833613 0.550840 0.031694 }
+      }
+      <Normal> { 0.551561 0.834040 0.011536 }
+    }
+    <Vertex> 3607 {
+      -0.842283308506 0.118531368673 3.3226442337
+      <UV>  {
+        0.542447 0.776737
+        <Tangent> { 0.424348 0.354461 0.833238 }
+        <Binormal> { -0.775347 0.504616 0.180200 }
+      }
+      <Normal> { 0.498398 0.840968 -0.210517 }
+    }
+    <Vertex> 3608 {
+      -0.829456865788 0.153288006783 3.29906749725
+      <UV>  {
+        0.542117 0.778183
+        <Tangent> { 0.331896 0.288270 0.898190 }
+        <Binormal> { -0.931716 0.248201 0.264626 }
+      }
+      <Normal> { 0.151982 0.929319 -0.336528 }
+    }
+    <Vertex> 3609 {
+      -0.829456865788 0.153288006783 3.29906749725
+      <UV>  {
+        0.542117 0.778183
+        <Tangent> { 0.331896 0.288270 0.898190 }
+        <Binormal> { -0.931716 0.248201 0.264626 }
+      }
+      <Normal> { 0.151982 0.929319 -0.336528 }
+    }
+    <Vertex> 3610 {
+      -0.814646303654 0.161726236343 3.38790535927
+      <UV>  {
+        0.541467 0.778168
+        <Tangent> { 0.037715 -0.041258 0.998436 }
+        <Binormal> { -0.996132 0.065336 0.040328 }
+      }
+      <Normal> { 0.065310 0.997833 -0.003418 }
+    }
+    <Vertex> 3611 {
+      -0.829456865788 0.125839084387 3.39958024025
+      <UV>  {
+        0.541230 0.776688
+        <Tangent> { 0.033981 -0.006077 0.999404 }
+        <Binormal> { -0.833613 0.550840 0.031694 }
+      }
+      <Normal> { 0.551561 0.834040 0.011536 }
+    }
+    <Vertex> 3612 {
+      -0.814646303654 0.161726236343 3.38790535927
+      <UV>  {
+        0.541467 0.778168
+        <Tangent> { 0.037715 -0.041258 0.998436 }
+        <Binormal> { -0.996132 0.065336 0.040328 }
+      }
+      <Normal> { 0.065310 0.997833 -0.003418 }
+    }
+    <Vertex> 3613 {
+      -0.829456865788 0.153288006783 3.29906749725
+      <UV>  {
+        0.542117 0.778183
+        <Tangent> { 0.331896 0.288270 0.898190 }
+        <Binormal> { -0.931716 0.248201 0.264626 }
+      }
+      <Normal> { 0.151982 0.929319 -0.336528 }
+    }
+    <Vertex> 3614 {
+      -0.842283248901 0.218628123403 3.29929494858
+      <UV>  {
+        0.541949 0.778895
+        <Tangent> { 0.244743 0.247842 0.937377 }
+        <Binormal> { -0.867132 -0.319454 0.310866 }
+      }
+      <Normal> { -0.430860 0.833857 -0.344951 }
+    }
+    <Vertex> 3615 {
+      -0.842283248901 0.218628123403 3.29929494858
+      <UV>  {
+        0.541949 0.778895
+        <Tangent> { 0.244743 0.247842 0.937377 }
+        <Binormal> { -0.867132 -0.319454 0.310866 }
+      }
+      <Normal> { -0.430860 0.833857 -0.344951 }
+    }
+    <Vertex> 3616 {
+      -0.829456865788 0.225935831666 3.37623047829
+      <UV>  {
+        0.541579 0.778901
+        <Tangent> { 0.094280 -0.068108 0.993213 }
+        <Binormal> { -0.884891 -0.440915 0.053763 }
+      }
+      <Normal> { -0.447462 0.893490 -0.037233 }
+    }
+    <Vertex> 3617 {
+      -0.814646303654 0.161726236343 3.38790535927
+      <UV>  {
+        0.541467 0.778168
+        <Tangent> { 0.037715 -0.041258 0.998436 }
+        <Binormal> { -0.996132 0.065336 0.040328 }
+      }
+      <Normal> { 0.065310 0.997833 -0.003418 }
+    }
+    <Vertex> 3618 {
+      -0.829456865788 0.225935831666 3.37623047829
+      <UV>  {
+        0.541579 0.778901
+        <Tangent> { 0.094280 -0.068108 0.993213 }
+        <Binormal> { -0.884891 -0.440915 0.053763 }
+      }
+      <Normal> { -0.447462 0.893490 -0.037233 }
+    }
+    <Vertex> 3619 {
+      -0.842283248901 0.218628123403 3.29929494858
+      <UV>  {
+        0.541949 0.778895
+        <Tangent> { 0.244743 0.247842 0.937377 }
+        <Binormal> { -0.867132 -0.319454 0.310866 }
+      }
+      <Normal> { -0.430860 0.833857 -0.344951 }
+    }
+    <Vertex> 3620 {
+      -0.877325594425 0.268721431494 3.32326507568
+      <UV>  {
+        0.541846 0.779395
+        <Tangent> { 0.206024 0.154373 0.966294 }
+        <Binormal> { -0.578124 -0.713333 0.237222 }
+      }
+      <Normal> { -0.791253 0.558550 -0.248756 }
+    }
+    <Vertex> 3621 {
+      -0.877325594425 0.268721431494 3.32326507568
+      <UV>  {
+        0.541846 0.779395
+        <Tangent> { 0.206024 0.154373 0.966294 }
+        <Binormal> { -0.578124 -0.713333 0.237222 }
+      }
+      <Normal> { -0.791253 0.558550 -0.248756 }
+    }
+    <Vertex> 3622 {
+      -0.869920253754 0.272940546274 3.3676841259
+      <UV>  {
+        0.541671 0.779405
+        <Tangent> { 0.149860 -0.045764 0.987648 }
+        <Binormal> { -0.587960 -0.782744 0.052944 }
+      }
+      <Normal> { -0.800165 0.597644 -0.050295 }
+    }
+    <Vertex> 3623 {
+      -0.829456865788 0.225935831666 3.37623047829
+      <UV>  {
+        0.541579 0.778901
+        <Tangent> { 0.094280 -0.068108 0.993213 }
+        <Binormal> { -0.884891 -0.440915 0.053763 }
+      }
+      <Normal> { -0.447462 0.893490 -0.037233 }
+    }
+    <Vertex> 3624 {
+      -0.925194144249 0.290145397186 3.36455583572
+      <UV>  {
+        0.541772 0.779851
+        <Tangent> { 0.190450 0.092828 0.977298 }
+        <Binormal> { -0.008930 -0.954415 0.092395 }
+      }
+      <Normal> { -0.995331 0.000000 -0.096194 }
+    }
+    <Vertex> 3625 {
+      -0.869920253754 0.272940546274 3.3676841259
+      <UV>  {
+        0.541671 0.779405
+        <Tangent> { 0.149860 -0.045764 0.987648 }
+        <Binormal> { -0.587960 -0.782744 0.052944 }
+      }
+      <Normal> { -0.800165 0.597644 -0.050295 }
+    }
+    <Vertex> 3626 {
+      -0.877325594425 0.268721431494 3.32326507568
+      <UV>  {
+        0.541846 0.779395
+        <Tangent> { 0.206024 0.154373 0.966294 }
+        <Binormal> { -0.578124 -0.713333 0.237222 }
+      }
+      <Normal> { -0.791253 0.558550 -0.248756 }
+    }
+    <Vertex> 3627 {
+      -0.925194144249 0.0598407909274 3.34645032883
+      <UV>  {
+        0.501925 0.777049
+        <Tangent> { -0.163728 0.093283 0.982085 }
+        <Binormal> { 0.008973 0.993249 -0.092848 }
+      }
+      <Normal> { 0.995331 0.000000 0.096194 }
+    }
+    <Vertex> 3628 {
+      -0.869920253754 0.0770456641912 3.34332203865
+      <UV>  {
+        0.506322 0.799711
+        <Tangent> { -0.162804 0.042082 0.985761 }
+        <Binormal> { -0.591802 0.792730 -0.131581 }
+      }
+      <Normal> { 0.797296 0.602130 0.041688 }
+    }
+    <Vertex> 3629 {
+      -0.87732565403 0.0812647566199 3.38774108887
+      <UV>  {
+        0.497528 0.799711
+        <Tangent> { -0.164223 0.144681 0.975755 }
+        <Binormal> { -0.405330 0.886696 -0.199694 }
+      }
+      <Normal> { 0.878018 0.442457 0.182470 }
+    }
+    <Vertex> 3630 {
+      -0.87732565403 0.0812647566199 3.38774108887
+      <UV>  {
+        0.535006 0.770507
+        <Tangent> { -0.470204 -0.279047 0.837282 }
+        <Binormal> { -0.421379 0.820946 0.036963 }
+      }
+      <Normal> { 0.878018 0.442457 0.182470 }
+    }
+    <Vertex> 3631 {
+      -0.869920253754 0.0770456641912 3.34332203865
+      <UV>  {
+        0.539295 0.767086
+        <Tangent> { 0.100909 0.057012 0.993261 }
+        <Binormal> { -0.595696 0.787716 0.015304 }
+      }
+      <Normal> { 0.797296 0.602130 0.041688 }
+    }
+    <Vertex> 3632 {
+      -0.829456865788 0.125839084387 3.39958024025
+      <UV>  {
+        0.541230 0.776688
+        <Tangent> { 0.033981 -0.006077 0.999404 }
+        <Binormal> { -0.833613 0.550840 0.031694 }
+      }
+      <Normal> { 0.551561 0.834040 0.011536 }
+    }
+    <Vertex> 3633 {
+      -0.829456865788 0.125839084387 3.39958024025
+      <UV>  {
+        0.541230 0.776688
+        <Tangent> { 0.033981 -0.006077 0.999404 }
+        <Binormal> { -0.833613 0.550840 0.031694 }
+      }
+      <Normal> { 0.551561 0.834040 0.011536 }
+    }
+    <Vertex> 3634 {
+      -0.842283308506 0.120560660958 3.47651600838
+      <UV>  {
+        0.540157 0.777487
+        <Tangent> { -0.370557 -0.273514 0.887625 }
+        <Binormal> { -0.720570 0.668869 -0.094710 }
+      }
+      <Normal> { 0.625660 0.717399 0.306345 }
+    }
+    <Vertex> 3635 {
+      -0.87732565403 0.0812647566199 3.38774108887
+      <UV>  {
+        0.535006 0.770507
+        <Tangent> { -0.470204 -0.279047 0.837282 }
+        <Binormal> { -0.421379 0.820946 0.036963 }
+      }
+      <Normal> { 0.878018 0.442457 0.182470 }
+    }
+    <Vertex> 3636 {
+      -0.842283308506 0.120560660958 3.47651600838
+      <UV>  {
+        0.540157 0.777487
+        <Tangent> { -0.370557 -0.273514 0.887625 }
+        <Binormal> { -0.720570 0.668869 -0.094710 }
+      }
+      <Normal> { 0.625660 0.717399 0.306345 }
+    }
+    <Vertex> 3637 {
+      -0.829456865788 0.125839084387 3.39958024025
+      <UV>  {
+        0.541230 0.776688
+        <Tangent> { 0.033981 -0.006077 0.999404 }
+        <Binormal> { -0.833613 0.550840 0.031694 }
+      }
+      <Normal> { 0.551561 0.834040 0.011536 }
+    }
+    <Vertex> 3638 {
+      -0.814646303654 0.161726236343 3.38790535927
+      <UV>  {
+        0.541467 0.778168
+        <Tangent> { 0.037715 -0.041258 0.998436 }
+        <Binormal> { -0.996132 0.065336 0.040328 }
+      }
+      <Normal> { 0.065310 0.997833 -0.003418 }
+    }
+    <Vertex> 3639 {
+      -0.814646303654 0.161726236343 3.38790535927
+      <UV>  {
+        0.541467 0.778168
+        <Tangent> { 0.037715 -0.041258 0.998436 }
+        <Binormal> { -0.996132 0.065336 0.040328 }
+      }
+      <Normal> { 0.065310 0.997833 -0.003418 }
+    }
+    <Vertex> 3640 {
+      -0.829456865788 0.170164465904 3.47674322128
+      <UV>  {
+        0.540899 0.778604
+        <Tangent> { -0.194587 -0.379414 0.904533 }
+        <Binormal> { -0.980246 0.055694 -0.187513 }
+      }
+      <Normal> { -0.015320 0.933775 0.357433 }
+    }
+    <Vertex> 3641 {
+      -0.842283308506 0.120560660958 3.47651600838
+      <UV>  {
+        0.540157 0.777487
+        <Tangent> { -0.370557 -0.273514 0.887625 }
+        <Binormal> { -0.720570 0.668869 -0.094710 }
+      }
+      <Normal> { 0.625660 0.717399 0.306345 }
+    }
+    <Vertex> 3642 {
+      -0.829456865788 0.170164465904 3.47674322128
+      <UV>  {
+        0.540899 0.778604
+        <Tangent> { -0.194587 -0.379414 0.904533 }
+        <Binormal> { -0.980246 0.055694 -0.187513 }
+      }
+      <Normal> { -0.015320 0.933775 0.357433 }
+    }
+    <Vertex> 3643 {
+      -0.814646303654 0.161726236343 3.38790535927
+      <UV>  {
+        0.541467 0.778168
+        <Tangent> { 0.037715 -0.041258 0.998436 }
+        <Binormal> { -0.996132 0.065336 0.040328 }
+      }
+      <Normal> { 0.065310 0.997833 -0.003418 }
+    }
+    <Vertex> 3644 {
+      -0.829456865788 0.225935831666 3.37623047829
+      <UV>  {
+        0.541579 0.778901
+        <Tangent> { 0.094280 -0.068108 0.993213 }
+        <Binormal> { -0.884891 -0.440915 0.053763 }
+      }
+      <Normal> { -0.447462 0.893490 -0.037233 }
+    }
+    <Vertex> 3645 {
+      -0.829456865788 0.225935831666 3.37623047829
+      <UV>  {
+        0.541579 0.778901
+        <Tangent> { 0.094280 -0.068108 0.993213 }
+        <Binormal> { -0.884891 -0.440915 0.053763 }
+      }
+      <Normal> { -0.447462 0.893490 -0.037233 }
+    }
+    <Vertex> 3646 {
+      -0.842283248901 0.233243539929 3.45316648483
+      <UV>  {
+        0.541261 0.779161
+        <Tangent> { -0.002883 -0.368376 0.929672 }
+        <Binormal> { -0.851990 -0.483134 -0.194081 }
+      }
+      <Normal> { -0.520493 0.812830 0.261483 }
+    }
+    <Vertex> 3647 {
+      -0.829456865788 0.170164465904 3.47674322128
+      <UV>  {
+        0.540899 0.778604
+        <Tangent> { -0.194587 -0.379414 0.904533 }
+        <Binormal> { -0.980246 0.055694 -0.187513 }
+      }
+      <Normal> { -0.015320 0.933775 0.357433 }
+    }
+    <Vertex> 3648 {
+      -0.842283248901 0.233243539929 3.45316648483
+      <UV>  {
+        0.541261 0.779161
+        <Tangent> { -0.002883 -0.368376 0.929672 }
+        <Binormal> { -0.851990 -0.483134 -0.194081 }
+      }
+      <Normal> { -0.520493 0.812830 0.261483 }
+    }
+    <Vertex> 3649 {
+      -0.829456865788 0.225935831666 3.37623047829
+      <UV>  {
+        0.541579 0.778901
+        <Tangent> { 0.094280 -0.068108 0.993213 }
+        <Binormal> { -0.884891 -0.440915 0.053763 }
+      }
+      <Normal> { -0.447462 0.893490 -0.037233 }
+    }
+    <Vertex> 3650 {
+      -0.869920253754 0.272940546274 3.3676841259
+      <UV>  {
+        0.541671 0.779405
+        <Tangent> { 0.149860 -0.045764 0.987648 }
+        <Binormal> { -0.587960 -0.782744 0.052944 }
+      }
+      <Normal> { -0.800165 0.597644 -0.050295 }
+    }
+    <Vertex> 3651 {
+      -0.869920253754 0.272940546274 3.3676841259
+      <UV>  {
+        0.541671 0.779405
+        <Tangent> { 0.149860 -0.045764 0.987648 }
+        <Binormal> { -0.587960 -0.782744 0.052944 }
+      }
+      <Normal> { -0.800165 0.597644 -0.050295 }
+    }
+    <Vertex> 3652 {
+      -0.877325594425 0.277159661055 3.4121029377
+      <UV>  {
+        0.541523 0.779534
+        <Tangent> { 0.121129 -0.216419 0.968757 }
+        <Binormal> { -0.523733 -0.839241 -0.122000 }
+      }
+      <Normal> { -0.849147 0.509964 0.137242 }
+    }
+    <Vertex> 3653 {
+      -0.842283248901 0.233243539929 3.45316648483
+      <UV>  {
+        0.541261 0.779161
+        <Tangent> { -0.002883 -0.368376 0.929672 }
+        <Binormal> { -0.851990 -0.483134 -0.194081 }
+      }
+      <Normal> { -0.520493 0.812830 0.261483 }
+    }
+    <Vertex> 3654 {
+      -0.925194144249 0.290145397186 3.36455583572
+      <UV>  {
+        0.541772 0.779851
+        <Tangent> { 0.190450 0.092828 0.977298 }
+        <Binormal> { -0.008930 -0.954415 0.092395 }
+      }
+      <Normal> { -0.995331 0.000000 -0.096194 }
+    }
+    <Vertex> 3655 {
+      -0.877325594425 0.277159661055 3.4121029377
+      <UV>  {
+        0.541523 0.779534
+        <Tangent> { 0.121129 -0.216419 0.968757 }
+        <Binormal> { -0.523733 -0.839241 -0.122000 }
+      }
+      <Normal> { -0.849147 0.509964 0.137242 }
+    }
+    <Vertex> 3656 {
+      -0.869920253754 0.272940546274 3.3676841259
+      <UV>  {
+        0.541671 0.779405
+        <Tangent> { 0.149860 -0.045764 0.987648 }
+        <Binormal> { -0.587960 -0.782744 0.052944 }
+      }
+      <Normal> { -0.800165 0.597644 -0.050295 }
+    }
+    <Vertex> 3657 {
+      -0.925194144249 0.0598407909274 3.34645032883
+      <UV>  {
+        0.501925 0.777049
+        <Tangent> { -0.163728 0.093283 0.982085 }
+        <Binormal> { 0.008973 0.993249 -0.092848 }
+      }
+      <Normal> { 0.995331 0.000000 0.096194 }
+    }
+    <Vertex> 3658 {
+      -0.87732565403 0.0812647566199 3.38774108887
+      <UV>  {
+        0.497528 0.799711
+        <Tangent> { -0.164223 0.144681 0.975755 }
+        <Binormal> { -0.405330 0.886696 -0.199694 }
+      }
+      <Normal> { 0.878018 0.442457 0.182470 }
+    }
+    <Vertex> 3659 {
+      -0.897557199001 0.0843533799052 3.4202580452
+      <UV>  {
+        0.489913 0.793639
+        <Tangent> { -0.164033 0.232951 0.958555 }
+        <Binormal> { -0.103127 0.941533 -0.246462 }
+      }
+      <Normal> { 0.926267 0.187078 0.327097 }
+    }
+    <Vertex> 3660 {
+      -0.897557199001 0.0843533799052 3.4202580452
+      <UV>  {
+        0.532530 0.776431
+        <Tangent> { -0.612394 -0.425005 -0.666591 }
+        <Binormal> { -0.014313 -0.417129 0.279103 }
+      }
+      <Normal> { 0.926267 0.187078 0.327097 }
+    }
+    <Vertex> 3661 {
+      -0.87732565403 0.0812647566199 3.38774108887
+      <UV>  {
+        0.535006 0.770507
+        <Tangent> { -0.470204 -0.279047 0.837282 }
+        <Binormal> { -0.421379 0.820946 0.036963 }
+      }
+      <Normal> { 0.878018 0.442457 0.182470 }
+    }
+    <Vertex> 3662 {
+      -0.842283308506 0.120560660958 3.47651600838
+      <UV>  {
+        0.540157 0.777487
+        <Tangent> { -0.370557 -0.273514 0.887625 }
+        <Binormal> { -0.720570 0.668869 -0.094710 }
+      }
+      <Normal> { 0.625660 0.717399 0.306345 }
+    }
+    <Vertex> 3663 {
+      -0.842283308506 0.120560660958 3.47651600838
+      <UV>  {
+        0.540157 0.777487
+        <Tangent> { -0.370557 -0.273514 0.887625 }
+        <Binormal> { -0.720570 0.668869 -0.094710 }
+      }
+      <Normal> { 0.625660 0.717399 0.306345 }
+    }
+    <Vertex> 3664 {
+      -0.87732565403 0.139982491732 3.53283691406
+      <UV>  {
+        0.539518 0.778918
+        <Tangent> { -0.590170 -0.798445 0.119101 }
+        <Binormal> { -0.552324 0.449753 0.278231 }
+      }
+      <Normal> { 0.655995 0.416059 0.629688 }
+    }
+    <Vertex> 3665 {
+      -0.897557199001 0.0843533799052 3.4202580452
+      <UV>  {
+        0.532530 0.776431
+        <Tangent> { -0.612394 -0.425005 -0.666591 }
+        <Binormal> { -0.014313 -0.417129 0.279103 }
+      }
+      <Normal> { 0.926267 0.187078 0.327097 }
+    }
+    <Vertex> 3666 {
+      -0.87732565403 0.139982491732 3.53283691406
+      <UV>  {
+        0.539518 0.778918
+        <Tangent> { -0.590170 -0.798445 0.119101 }
+        <Binormal> { -0.552324 0.449753 0.278231 }
+      }
+      <Normal> { 0.655995 0.416059 0.629688 }
+    }
+    <Vertex> 3667 {
+      -0.842283308506 0.120560660958 3.47651600838
+      <UV>  {
+        0.540157 0.777487
+        <Tangent> { -0.370557 -0.273514 0.887625 }
+        <Binormal> { -0.720570 0.668869 -0.094710 }
+      }
+      <Normal> { 0.625660 0.717399 0.306345 }
+    }
+    <Vertex> 3668 {
+      -0.829456865788 0.170164465904 3.47674322128
+      <UV>  {
+        0.540899 0.778604
+        <Tangent> { -0.194587 -0.379414 0.904533 }
+        <Binormal> { -0.980246 0.055694 -0.187513 }
+      }
+      <Normal> { -0.015320 0.933775 0.357433 }
+    }
+    <Vertex> 3669 {
+      -0.829456865788 0.170164465904 3.47674322128
+      <UV>  {
+        0.540899 0.778604
+        <Tangent> { -0.194587 -0.379414 0.904533 }
+        <Binormal> { -0.980246 0.055694 -0.187513 }
+      }
+      <Normal> { -0.015320 0.933775 0.357433 }
+    }
+    <Vertex> 3670 {
+      -0.869920253754 0.176341697574 3.54177713394
+      <UV>  {
+        0.540564 0.779374
+        <Tangent> { -0.168136 -0.791827 0.587146 }
+        <Binormal> { -0.982845 0.109222 -0.134152 }
+      }
+      <Normal> { -0.031404 0.649983 0.759270 }
+    }
+    <Vertex> 3671 {
+      -0.87732565403 0.139982491732 3.53283691406
+      <UV>  {
+        0.539518 0.778918
+        <Tangent> { -0.590170 -0.798445 0.119101 }
+        <Binormal> { -0.552324 0.449753 0.278231 }
+      }
+      <Normal> { 0.655995 0.416059 0.629688 }
+    }
+    <Vertex> 3672 {
+      -0.869920253754 0.176341697574 3.54177713394
+      <UV>  {
+        0.540564 0.779374
+        <Tangent> { -0.168136 -0.791827 0.587146 }
+        <Binormal> { -0.982845 0.109222 -0.134152 }
+      }
+      <Normal> { -0.031404 0.649983 0.759270 }
+    }
+    <Vertex> 3673 {
+      -0.829456865788 0.170164465904 3.47674322128
+      <UV>  {
+        0.540899 0.778604
+        <Tangent> { -0.194587 -0.379414 0.904533 }
+        <Binormal> { -0.980246 0.055694 -0.187513 }
+      }
+      <Normal> { -0.015320 0.933775 0.357433 }
+    }
+    <Vertex> 3674 {
+      -0.842283248901 0.233243539929 3.45316648483
+      <UV>  {
+        0.541261 0.779161
+        <Tangent> { -0.002883 -0.368376 0.929672 }
+        <Binormal> { -0.851990 -0.483134 -0.194081 }
+      }
+      <Normal> { -0.520493 0.812830 0.261483 }
+    }
+    <Vertex> 3675 {
+      -0.842283248901 0.233243539929 3.45316648483
+      <UV>  {
+        0.541261 0.779161
+        <Tangent> { -0.002883 -0.368376 0.929672 }
+        <Binormal> { -0.851990 -0.483134 -0.194081 }
+      }
+      <Normal> { -0.520493 0.812830 0.261483 }
+    }
+    <Vertex> 3676 {
+      -0.87732565403 0.238593161106 3.50948739052
+      <UV>  {
+        0.541080 0.779607
+        <Tangent> { 0.042595 -0.601361 0.797842 }
+        <Binormal> { -0.755752 -0.535235 -0.363077 }
+      }
+      <Normal> { -0.641011 0.525925 0.558977 }
+    }
+    <Vertex> 3677 {
+      -0.869920253754 0.176341697574 3.54177713394
+      <UV>  {
+        0.540564 0.779374
+        <Tangent> { -0.168136 -0.791827 0.587146 }
+        <Binormal> { -0.982845 0.109222 -0.134152 }
+      }
+      <Normal> { -0.031404 0.649983 0.759270 }
+    }
+    <Vertex> 3678 {
+      -0.87732565403 0.238593161106 3.50948739052
+      <UV>  {
+        0.541080 0.779607
+        <Tangent> { 0.042595 -0.601361 0.797842 }
+        <Binormal> { -0.755752 -0.535235 -0.363077 }
+      }
+      <Normal> { -0.641011 0.525925 0.558977 }
+    }
+    <Vertex> 3679 {
+      -0.842283248901 0.233243539929 3.45316648483
+      <UV>  {
+        0.541261 0.779161
+        <Tangent> { -0.002883 -0.368376 0.929672 }
+        <Binormal> { -0.851990 -0.483134 -0.194081 }
+      }
+      <Normal> { -0.520493 0.812830 0.261483 }
+    }
+    <Vertex> 3680 {
+      -0.877325594425 0.277159661055 3.4121029377
+      <UV>  {
+        0.541523 0.779534
+        <Tangent> { 0.121129 -0.216419 0.968757 }
+        <Binormal> { -0.523733 -0.839241 -0.122000 }
+      }
+      <Normal> { -0.849147 0.509964 0.137242 }
+    }
+    <Vertex> 3681 {
+      -0.877325594425 0.277159661055 3.4121029377
+      <UV>  {
+        0.541523 0.779534
+        <Tangent> { 0.121129 -0.216419 0.968757 }
+        <Binormal> { -0.523733 -0.839241 -0.122000 }
+      }
+      <Normal> { -0.849147 0.509964 0.137242 }
+    }
+    <Vertex> 3682 {
+      -0.897557199001 0.280248254538 3.44461989403
+      <UV>  {
+        0.541442 0.779749
+        <Tangent> { 0.146376 -0.316368 0.937275 }
+        <Binormal> { -0.356315 -0.899729 -0.248049 }
+      }
+      <Normal> { -0.915311 0.283700 0.285775 }
+    }
+    <Vertex> 3683 {
+      -0.87732565403 0.238593161106 3.50948739052
+      <UV>  {
+        0.541080 0.779607
+        <Tangent> { 0.042595 -0.601361 0.797842 }
+        <Binormal> { -0.755752 -0.535235 -0.363077 }
+      }
+      <Normal> { -0.641011 0.525925 0.558977 }
+    }
+    <Vertex> 3684 {
+      -0.925194144249 0.290145397186 3.36455583572
+      <UV>  {
+        0.541772 0.779851
+        <Tangent> { 0.190450 0.092828 0.977298 }
+        <Binormal> { -0.008930 -0.954415 0.092395 }
+      }
+      <Normal> { -0.995331 0.000000 -0.096194 }
+    }
+    <Vertex> 3685 {
+      -0.897557199001 0.280248254538 3.44461989403
+      <UV>  {
+        0.541442 0.779749
+        <Tangent> { 0.146376 -0.316368 0.937275 }
+        <Binormal> { -0.356315 -0.899729 -0.248049 }
+      }
+      <Normal> { -0.915311 0.283700 0.285775 }
+    }
+    <Vertex> 3686 {
+      -0.877325594425 0.277159661055 3.4121029377
+      <UV>  {
+        0.541523 0.779534
+        <Tangent> { 0.121129 -0.216419 0.968757 }
+        <Binormal> { -0.523733 -0.839241 -0.122000 }
+      }
+      <Normal> { -0.849147 0.509964 0.137242 }
+    }
+    <Vertex> 3687 {
+      -0.925194144249 0.0598407909274 3.34645032883
+      <UV>  {
+        0.501925 0.777049
+        <Tangent> { -0.163728 0.093283 0.982085 }
+        <Binormal> { 0.008973 0.993249 -0.092848 }
+      }
+      <Normal> { 0.995331 0.000000 0.096194 }
+    }
+    <Vertex> 3688 {
+      -0.897557199001 0.0843533799052 3.4202580452
+      <UV>  {
+        0.489913 0.793639
+        <Tangent> { -0.164033 0.232951 0.958555 }
+        <Binormal> { -0.103127 0.941533 -0.246462 }
+      }
+      <Normal> { 0.926267 0.187078 0.327097 }
+    }
+    <Vertex> 3689 {
+      -0.925194144249 0.0854838937521 3.43215990067
+      <UV>  {
+        0.485516 0.783121
+        <Tangent> { -0.163325 0.282784 0.945176 }
+        <Binormal> { 0.122442 0.932684 -0.257888 }
+      }
+      <Normal> { 0.918485 -0.011292 0.395245 }
+    }
+    <Vertex> 3690 {
+      -0.925194144249 0.0854838937521 3.43215990067
+      <UV>  {
+        0.532530 0.783271
+        <Tangent> { 0.136671 -0.480971 -0.866018 }
+        <Binormal> { -0.199881 -0.849443 0.440222 }
+      }
+      <Normal> { 0.918485 -0.011292 0.395245 }
+    }
+    <Vertex> 3691 {
+      -0.897557199001 0.0843533799052 3.4202580452
+      <UV>  {
+        0.532530 0.776431
+        <Tangent> { -0.612394 -0.425005 -0.666591 }
+        <Binormal> { -0.014313 -0.417129 0.279103 }
+      }
+      <Normal> { 0.926267 0.187078 0.327097 }
+    }
+    <Vertex> 3692 {
+      -0.87732565403 0.139982491732 3.53283691406
+      <UV>  {
+        0.539518 0.778918
+        <Tangent> { -0.590170 -0.798445 0.119101 }
+        <Binormal> { -0.552324 0.449753 0.278231 }
+      }
+      <Normal> { 0.655995 0.416059 0.629688 }
+    }
+    <Vertex> 3693 {
+      -0.87732565403 0.139982491732 3.53283691406
+      <UV>  {
+        0.539518 0.778918
+        <Tangent> { -0.590170 -0.798445 0.119101 }
+        <Binormal> { -0.552324 0.449753 0.278231 }
+      }
+      <Normal> { 0.655995 0.416059 0.629688 }
+    }
+    <Vertex> 3694 {
+      -0.925194144249 0.152986124158 3.55345201492
+      <UV>  {
+        0.539482 0.780600
+        <Tangent> { 0.413977 -0.742399 -0.526752 }
+        <Binormal> { -0.521455 -0.660760 0.521455 }
+      }
+      <Normal> { 0.677358 0.044893 0.734245 }
+    }
+    <Vertex> 3695 {
+      -0.925194144249 0.0854838937521 3.43215990067
+      <UV>  {
+        0.532530 0.783271
+        <Tangent> { 0.136671 -0.480971 -0.866018 }
+        <Binormal> { -0.199881 -0.849443 0.440222 }
+      }
+      <Normal> { 0.918485 -0.011292 0.395245 }
+    }
+    <Vertex> 3696 {
+      -0.925194144249 0.152986124158 3.55345201492
+      <UV>  {
+        0.539482 0.780600
+        <Tangent> { 0.413977 -0.742399 -0.526752 }
+        <Binormal> { -0.521455 -0.660760 0.521455 }
+      }
+      <Normal> { 0.677358 0.044893 0.734245 }
+    }
+    <Vertex> 3697 {
+      -0.87732565403 0.139982491732 3.53283691406
+      <UV>  {
+        0.539518 0.778918
+        <Tangent> { -0.590170 -0.798445 0.119101 }
+        <Binormal> { -0.552324 0.449753 0.278231 }
+      }
+      <Normal> { 0.655995 0.416059 0.629688 }
+    }
+    <Vertex> 3698 {
+      -0.869920253754 0.176341697574 3.54177713394
+      <UV>  {
+        0.540564 0.779374
+        <Tangent> { -0.168136 -0.791827 0.587146 }
+        <Binormal> { -0.982845 0.109222 -0.134152 }
+      }
+      <Normal> { -0.031404 0.649983 0.759270 }
+    }
+    <Vertex> 3699 {
+      -0.869920253754 0.176341697574 3.54177713394
+      <UV>  {
+        0.540564 0.779374
+        <Tangent> { -0.168136 -0.791827 0.587146 }
+        <Binormal> { -0.982845 0.109222 -0.134152 }
+      }
+      <Normal> { -0.031404 0.649983 0.759270 }
+    }
+    <Vertex> 3700 {
+      -0.925194144249 0.178602710366 3.5655810833
+      <UV>  {
+        0.540553 0.780272
+        <Tangent> { 0.266278 -0.875706 0.402784 }
+        <Binormal> { -0.880884 -0.288318 -0.044495 }
+      }
+      <Normal> { -0.055849 0.016572 0.998291 }
+    }
+    <Vertex> 3701 {
+      -0.925194144249 0.152986124158 3.55345201492
+      <UV>  {
+        0.539482 0.780600
+        <Tangent> { 0.413977 -0.742399 -0.526752 }
+        <Binormal> { -0.521455 -0.660760 0.521455 }
+      }
+      <Normal> { 0.677358 0.044893 0.734245 }
+    }
+    <Vertex> 3702 {
+      -0.925194144249 0.178602710366 3.5655810833
+      <UV>  {
+        0.540553 0.780272
+        <Tangent> { 0.266278 -0.875706 0.402784 }
+        <Binormal> { -0.880884 -0.288318 -0.044495 }
+      }
+      <Normal> { -0.055849 0.016572 0.998291 }
+    }
+    <Vertex> 3703 {
+      -0.869920253754 0.176341697574 3.54177713394
+      <UV>  {
+        0.540564 0.779374
+        <Tangent> { -0.168136 -0.791827 0.587146 }
+        <Binormal> { -0.982845 0.109222 -0.134152 }
+      }
+      <Normal> { -0.031404 0.649983 0.759270 }
+    }
+    <Vertex> 3704 {
+      -0.87732565403 0.238593161106 3.50948739052
+      <UV>  {
+        0.541080 0.779607
+        <Tangent> { 0.042595 -0.601361 0.797842 }
+        <Binormal> { -0.755752 -0.535235 -0.363077 }
+      }
+      <Normal> { -0.641011 0.525925 0.558977 }
+    }
+    <Vertex> 3705 {
+      -0.87732565403 0.238593161106 3.50948739052
+      <UV>  {
+        0.541080 0.779607
+        <Tangent> { 0.042595 -0.601361 0.797842 }
+        <Binormal> { -0.755752 -0.535235 -0.363077 }
+      }
+      <Normal> { -0.641011 0.525925 0.558977 }
+    }
+    <Vertex> 3706 {
+      -0.925194144249 0.240551263094 3.53010225296
+      <UV>  {
+        0.541084 0.780117
+        <Tangent> { 0.206598 -0.620666 0.756367 }
+        <Binormal> { -0.415376 -0.685628 -0.449160 }
+      }
+      <Normal> { -0.715873 -0.023438 0.697806 }
+    }
+    <Vertex> 3707 {
+      -0.925194144249 0.178602710366 3.5655810833
+      <UV>  {
+        0.540553 0.780272
+        <Tangent> { 0.266278 -0.875706 0.402784 }
+        <Binormal> { -0.880884 -0.288318 -0.044495 }
+      }
+      <Normal> { -0.055849 0.016572 0.998291 }
+    }
+    <Vertex> 3708 {
+      -0.925194144249 0.240551263094 3.53010225296
+      <UV>  {
+        0.541084 0.780117
+        <Tangent> { 0.206598 -0.620666 0.756367 }
+        <Binormal> { -0.415376 -0.685628 -0.449160 }
+      }
+      <Normal> { -0.715873 -0.023438 0.697806 }
+    }
+    <Vertex> 3709 {
+      -0.87732565403 0.238593161106 3.50948739052
+      <UV>  {
+        0.541080 0.779607
+        <Tangent> { 0.042595 -0.601361 0.797842 }
+        <Binormal> { -0.755752 -0.535235 -0.363077 }
+      }
+      <Normal> { -0.641011 0.525925 0.558977 }
+    }
+    <Vertex> 3710 {
+      -0.897557199001 0.280248254538 3.44461989403
+      <UV>  {
+        0.541442 0.779749
+        <Tangent> { 0.146376 -0.316368 0.937275 }
+        <Binormal> { -0.356315 -0.899729 -0.248049 }
+      }
+      <Normal> { -0.915311 0.283700 0.285775 }
+    }
+    <Vertex> 3711 {
+      -0.897557199001 0.280248254538 3.44461989403
+      <UV>  {
+        0.541442 0.779749
+        <Tangent> { 0.146376 -0.316368 0.937275 }
+        <Binormal> { -0.356315 -0.899729 -0.248049 }
+      }
+      <Normal> { -0.915311 0.283700 0.285775 }
+    }
+    <Vertex> 3712 {
+      -0.925194144249 0.281378775835 3.45652198792
+      <UV>  {
+        0.541449 0.779990
+        <Tangent> { 0.202297 -0.298789 0.932631 }
+        <Binormal> { -0.053450 -0.945551 -0.291335 }
+      }
+      <Normal> { -0.941618 -0.049379 0.333018 }
+    }
+    <Vertex> 3713 {
+      -0.925194144249 0.240551263094 3.53010225296
+      <UV>  {
+        0.541084 0.780117
+        <Tangent> { 0.206598 -0.620666 0.756367 }
+        <Binormal> { -0.415376 -0.685628 -0.449160 }
+      }
+      <Normal> { -0.715873 -0.023438 0.697806 }
+    }
+    <Vertex> 3714 {
+      -0.925194144249 0.290145397186 3.36455583572
+      <UV>  {
+        0.541772 0.779851
+        <Tangent> { 0.190450 0.092828 0.977298 }
+        <Binormal> { -0.008930 -0.954415 0.092395 }
+      }
+      <Normal> { -0.995331 0.000000 -0.096194 }
+    }
+    <Vertex> 3715 {
+      -0.925194144249 0.281378775835 3.45652198792
+      <UV>  {
+        0.541449 0.779990
+        <Tangent> { 0.202297 -0.298789 0.932631 }
+        <Binormal> { -0.053450 -0.945551 -0.291335 }
+      }
+      <Normal> { -0.941618 -0.049379 0.333018 }
+    }
+    <Vertex> 3716 {
+      -0.897557199001 0.280248254538 3.44461989403
+      <UV>  {
+        0.541442 0.779749
+        <Tangent> { 0.146376 -0.316368 0.937275 }
+        <Binormal> { -0.356315 -0.899729 -0.248049 }
+      }
+      <Normal> { -0.915311 0.283700 0.285775 }
+    }
+    <Vertex> 3717 {
+      -0.871435701847 0.258377045393 2.56209802628
+      <UV>  {
+        0.894545 0.319064
+        <Tangent> { -0.828693 0.559703 -0.000002 }
+        <Binormal> { -0.098747 -0.146206 -0.419920 }
+      }
+      <Normal> { 0.972747 -0.150273 -0.176427 }
+    }
+    <Vertex> 3718 {
+      -0.798021733761 0.27005314827 2.58696246147
+      <UV>  {
+        0.914456 0.328377
+        <Tangent> { -1.000000 -0.000013 0.000000 }
+        <Binormal> { -0.000004 0.345470 0.000104 }
+      }
+      <Normal> { 0.938414 -0.000092 0.345470 }
+    }
+    <Vertex> 3719 {
+      -0.798021733761 0.3489331007 2.72567367554
+      <UV>  {
+        0.914456 0.380333
+        <Tangent> { 0.999950 0.010050 0.000000 }
+        <Binormal> { 0.004270 -0.424827 0.013828 }
+      }
+      <Normal> { -0.905240 0.004730 0.424848 }
+    }
+    <Vertex> 3720 {
+      -0.798021733761 0.3489331007 2.72567367554
+      <UV>  {
+        0.914456 0.380333
+        <Tangent> { 0.999950 0.010050 0.000000 }
+        <Binormal> { 0.004270 -0.424827 0.013828 }
+      }
+      <Normal> { -0.905240 0.004730 0.424848 }
+    }
+    <Vertex> 3721 {
+      -0.798021733761 0.27005314827 2.58696246147
+      <UV>  {
+        0.914456 0.328377
+        <Tangent> { -1.000000 -0.000013 0.000000 }
+        <Binormal> { -0.000004 0.345470 0.000104 }
+      }
+      <Normal> { 0.938414 -0.000092 0.345470 }
+    }
+    <Vertex> 3722 {
+      -0.724407076836 0.258377104998 2.56209802628
+      <UV>  {
+        0.934421 0.319064
+        <Tangent> { -0.827424 -0.561578 0.000002 }
+        <Binormal> { 0.098718 -0.145448 0.421539 }
+      }
+      <Normal> { 0.972808 0.150792 -0.175787 }
+    }
+    <Vertex> 3723 {
+      -0.871435701847 0.258377045393 2.56209802628
+      <UV>  {
+        0.894545 0.319064
+        <Tangent> { -0.828693 0.559703 -0.000002 }
+        <Binormal> { -0.098747 -0.146206 -0.419920 }
+      }
+      <Normal> { 0.972747 -0.150273 -0.176427 }
+    }
+    <Vertex> 3724 {
+      -0.939062178135 0.267967134714 2.43929767609
+      <UV>  {
+        0.876204 0.273067
+        <Tangent> { -0.913062 0.407820 -0.000000 }
+        <Binormal> { 0.038757 0.086772 -0.094079 }
+      }
+      <Normal> { 0.943205 -0.318247 0.095035 }
+    }
+    <Vertex> 3725 {
+      -0.798021733761 0.219797983766 2.42812728882
+      <UV>  {
+        0.914456 0.268883
+        <Tangent> { -1.000000 0.000133 0.000000 }
+        <Binormal> { 0.000010 0.078433 0.000081 }
+      }
+      <Normal> { 0.996918 -0.000214 0.078433 }
+    }
+    <Vertex> 3726 {
+      -0.798021733761 0.27005314827 2.58696246147
+      <UV>  {
+        0.914456 0.328377
+        <Tangent> { -1.000000 -0.000013 0.000000 }
+        <Binormal> { -0.000004 0.345470 0.000104 }
+      }
+      <Normal> { 0.938414 -0.000092 0.345470 }
+    }
+    <Vertex> 3727 {
+      -0.798021733761 0.219797983766 2.42812728882
+      <UV>  {
+        0.914456 0.268883
+        <Tangent> { -1.000000 0.000133 0.000000 }
+        <Binormal> { 0.000010 0.078433 0.000081 }
+      }
+      <Normal> { 0.996918 -0.000214 0.078433 }
+    }
+    <Vertex> 3728 {
+      -0.656780600548 0.267967134714 2.43929767609
+      <UV>  {
+        0.952762 0.273067
+        <Tangent> { -0.913290 -0.407310 0.000000 }
+        <Binormal> { -0.038709 0.086794 0.093853 }
+      }
+      <Normal> { 0.943327 0.317942 0.095035 }
+    }
+    <Vertex> 3729 {
+      -0.724407076836 0.258377104998 2.56209802628
+      <UV>  {
+        0.934421 0.319064
+        <Tangent> { -0.827424 -0.561578 0.000002 }
+        <Binormal> { 0.098718 -0.145448 0.421539 }
+      }
+      <Normal> { 0.972808 0.150792 -0.175787 }
+    }
+    <Vertex> 3730 {
+      -0.798021733761 0.27005314827 2.58696246147
+      <UV>  {
+        0.914456 0.328377
+        <Tangent> { -1.000000 -0.000013 0.000000 }
+        <Binormal> { -0.000004 0.345470 0.000104 }
+      }
+      <Normal> { 0.938414 -0.000092 0.345470 }
+    }
+    <Vertex> 3731 {
+      -0.785473287106 0.33680549264 2.7342581749
+      <UV>  {
+        0.917859 0.383549
+        <Tangent> { -0.559234 0.829010 0.000000 }
+        <Binormal> { 0.588962 0.397303 -0.323842 }
+      }
+      <Normal> { 0.617878 -0.336863 0.710440 }
+    }
+    <Vertex> 3732 {
+      -0.563552320004 0.316298872232 2.67931938171
+      <UV>  {
+        0.978047 0.362971
+        <Tangent> { -0.017190 -0.999852 -0.000000 }
+        <Binormal> { -0.105029 0.001806 0.493241 }
+      }
+      <Normal> { 0.508011 0.854885 0.105045 }
+    }
+    <Vertex> 3733 {
+      -0.63853597641 0.43059015274 2.79111242294
+      <UV>  {
+        0.957710 0.404844
+        <Tangent> { 0.043007 0.999075 -0.000001 }
+        <Binormal> { 0.984104 -0.042362 -0.126638 }
+      }
+      <Normal> { 0.121494 -0.122227 0.985015 }
+    }
+    <Vertex> 3734 {
+      -0.704609930515 0.240894168615 2.5724503994
+      <UV>  {
+        0.939790 0.322941
+        <Tangent> { -0.000003 -1.000000 -0.000001 }
+        <Binormal> { 0.150822 -0.000001 0.986389 }
+      }
+      <Normal> { 0.986389 -0.065096 -0.150822 }
+    }
+    <Vertex> 3735 {
+      -0.563552320004 0.316298872232 2.67931938171
+      <UV>  {
+        0.978047 0.362971
+        <Tangent> { -0.017190 -0.999852 -0.000000 }
+        <Binormal> { -0.105029 0.001806 0.493241 }
+      }
+      <Normal> { 0.508011 0.854885 0.105045 }
+    }
+    <Vertex> 3736 {
+      -0.785473287106 0.33680549264 2.7342581749
+      <UV>  {
+        0.917859 0.383549
+        <Tangent> { -0.559234 0.829010 0.000000 }
+        <Binormal> { 0.588962 0.397303 -0.323842 }
+      }
+      <Normal> { 0.617878 -0.336863 0.710440 }
+    }
+    <Vertex> 3737 {
+      -0.563552320004 0.316298872232 2.67931938171
+      <UV>  {
+        0.978047 0.362971
+        <Tangent> { -0.017190 -0.999852 -0.000000 }
+        <Binormal> { -0.105029 0.001806 0.493241 }
+      }
+      <Normal> { 0.508011 0.854885 0.105045 }
+    }
+    <Vertex> 3738 {
+      -0.573126971722 0.538002490997 2.70572304726
+      <UV>  {
+        0.975450 0.372860
+        <Tangent> { 0.090289 -0.995916 -0.000000 }
+        <Binormal> { 0.149933 0.013593 -0.373806 }
+      }
+      <Normal> { -0.454909 0.877682 -0.150548 }
+    }
+    <Vertex> 3739 {
+      -0.629794418812 0.539138793945 2.7972676754
+      <UV>  {
+        0.960081 0.407150
+        <Tangent> { 0.000021 1.000000 -0.000003 }
+        <Binormal> { 0.998016 -0.000020 0.047488 }
+      }
+      <Normal> { -0.047487 0.041078 0.998016 }
+    }
+    <Vertex> 3740 {
+      -0.63853597641 0.43059015274 2.79111242294
+      <UV>  {
+        0.957710 0.404844
+        <Tangent> { 0.043007 0.999075 -0.000001 }
+        <Binormal> { 0.984104 -0.042362 -0.126638 }
+      }
+      <Normal> { 0.121494 -0.122227 0.985015 }
+    }
+    <Vertex> 3741 {
+      -0.573126971722 0.538002490997 2.70572304726
+      <UV>  {
+        0.975450 0.372860
+        <Tangent> { 0.090289 -0.995916 -0.000000 }
+        <Binormal> { 0.149933 0.013593 -0.373806 }
+      }
+      <Normal> { -0.454909 0.877682 -0.150548 }
+    }
+    <Vertex> 3742 {
+      -0.798021733761 0.73226994276 2.70572304726
+      <UV>  {
+        0.914456 0.372860
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.921079 -0.338633 -0.192022 }
+    }
+    <Vertex> 3743 {
+      -0.798021733761 0.729225039482 2.7972676754
+      <UV>  {
+        0.914456 0.407150
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.130711 -0.566240 0.813776 }
+    }
+    <Vertex> 3744 {
+      -0.629794418812 0.539138793945 2.7972676754
+      <UV>  {
+        0.960081 0.407150
+        <Tangent> { 0.000021 1.000000 -0.000003 }
+        <Binormal> { 0.998016 -0.000020 0.047488 }
+      }
+      <Normal> { -0.047487 0.041078 0.998016 }
+    }
+    <Vertex> 3745 {
+      -0.573126971722 0.538002490997 2.70572304726
+      <UV>  {
+        0.975450 0.372860
+        <Tangent> { 0.090289 -0.995916 -0.000000 }
+        <Binormal> { 0.149933 0.013593 -0.373806 }
+      }
+      <Normal> { -0.454909 0.877682 -0.150548 }
+    }
+    <Vertex> 3746 {
+      -0.582806348801 0.542782723904 2.6931347847
+      <UV>  {
+        0.972825 0.368145
+        <Tangent> { 0.837504 0.546431 -0.000003 }
+        <Binormal> { -0.540044 0.827715 -0.084675 }
+      }
+      <Normal> { -0.059877 -0.140172 -0.988311 }
+    }
+    <Vertex> 3747 {
+      -0.798021733761 0.716523706913 2.6931347847
+      <UV>  {
+        0.914456 0.368145
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.064394 -0.572192 -0.817560 }
+    }
+    <Vertex> 3748 {
+      -0.798021733761 0.73226994276 2.70572304726
+      <UV>  {
+        0.914456 0.372860
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.921079 -0.338633 -0.192022 }
+    }
+    <Vertex> 3749 {
+      -0.798021733761 0.73226994276 2.70572304726
+      <UV>  {
+        0.914456 0.372860
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.921079 -0.338633 -0.192022 }
+    }
+    <Vertex> 3750 {
+      -0.798021733761 0.716523706913 2.6931347847
+      <UV>  {
+        0.914456 0.368145
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.064394 -0.572192 -0.817560 }
+    }
+    <Vertex> 3751 {
+      -0.798021733761 0.713478803635 2.78467941284
+      <UV>  {
+        0.914456 0.402435
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.914304 -0.350932 0.202185 }
+    }
+    <Vertex> 3752 {
+      -0.798021733761 0.729225039482 2.7972676754
+      <UV>  {
+        0.914456 0.407150
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.130711 -0.566240 0.813776 }
+    }
+    <Vertex> 3753 {
+      -0.798021733761 0.729225039482 2.7972676754
+      <UV>  {
+        0.914456 0.407150
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.130711 -0.566240 0.813776 }
+    }
+    <Vertex> 3754 {
+      -0.798021733761 0.713478803635 2.78467941284
+      <UV>  {
+        0.914456 0.402435
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.914304 -0.350932 0.202185 }
+    }
+    <Vertex> 3755 {
+      -0.639473974705 0.543919026852 2.78467941284
+      <UV>  {
+        0.957456 0.402435
+        <Tangent> { 0.000005 1.000000 -0.000000 }
+        <Binormal> { 0.113193 -0.000001 -0.376389 }
+      }
+      <Normal> { 0.376385 -0.919492 0.113193 }
+    }
+    <Vertex> 3756 {
+      -0.629794418812 0.539138793945 2.7972676754
+      <UV>  {
+        0.960081 0.407150
+        <Tangent> { 0.000021 1.000000 -0.000003 }
+        <Binormal> { 0.998016 -0.000020 0.047488 }
+      }
+      <Normal> { -0.047487 0.041078 0.998016 }
+    }
+    <Vertex> 3757 {
+      -0.563552320004 0.316298872232 2.67931938171
+      <UV>  {
+        0.978047 0.362971
+        <Tangent> { -0.017190 -0.999852 -0.000000 }
+        <Binormal> { -0.105029 0.001806 0.493241 }
+      }
+      <Normal> { 0.508011 0.854885 0.105045 }
+    }
+    <Vertex> 3758 {
+      -0.583349466324 0.333781808615 2.66896700859
+      <UV>  {
+        0.972677 0.359093
+        <Tangent> { 0.549241 0.835664 -0.000002 }
+        <Binormal> { -0.790574 0.519606 0.323520 }
+      }
+      <Normal> { -0.279489 0.163793 -0.946043 }
+    }
+    <Vertex> 3759 {
+      -0.582806348801 0.542782723904 2.6931347847
+      <UV>  {
+        0.972825 0.368145
+        <Tangent> { 0.837504 0.546431 -0.000003 }
+        <Binormal> { -0.540044 0.827715 -0.084675 }
+      }
+      <Normal> { -0.059877 -0.140172 -0.988311 }
+    }
+    <Vertex> 3760 {
+      -0.573126971722 0.538002490997 2.70572304726
+      <UV>  {
+        0.975450 0.372860
+        <Tangent> { 0.090289 -0.995916 -0.000000 }
+        <Binormal> { 0.149933 0.013593 -0.373806 }
+      }
+      <Normal> { -0.454909 0.877682 -0.150548 }
+    }
+    <Vertex> 3761 {
+      -0.629794418812 0.539138793945 2.7972676754
+      <UV>  {
+        0.960081 0.407150
+        <Tangent> { 0.000021 1.000000 -0.000003 }
+        <Binormal> { 0.998016 -0.000020 0.047488 }
+      }
+      <Normal> { -0.047487 0.041078 0.998016 }
+    }
+    <Vertex> 3762 {
+      -0.639473974705 0.543919026852 2.78467941284
+      <UV>  {
+        0.957456 0.402435
+        <Tangent> { 0.000005 1.000000 -0.000000 }
+        <Binormal> { 0.113193 -0.000001 -0.376389 }
+      }
+      <Normal> { 0.376385 -0.919492 0.113193 }
+    }
+    <Vertex> 3763 {
+      -0.648215711117 0.435370385647 2.77852416039
+      <UV>  {
+        0.955085 0.400129
+        <Tangent> { 0.076915 0.997038 -0.000001 }
+        <Binormal> { 0.059699 -0.004605 0.374697 }
+      }
+      <Normal> { -0.444746 -0.893613 0.059877 }
+    }
+    <Vertex> 3764 {
+      -0.63853597641 0.43059015274 2.79111242294
+      <UV>  {
+        0.957710 0.404844
+        <Tangent> { 0.043007 0.999075 -0.000001 }
+        <Binormal> { 0.984104 -0.042362 -0.126638 }
+      }
+      <Normal> { 0.121494 -0.122227 0.985015 }
+    }
+    <Vertex> 3765 {
+      -0.704609930515 0.240894168615 2.5724503994
+      <UV>  {
+        0.939790 0.322941
+        <Tangent> { -0.000003 -1.000000 -0.000001 }
+        <Binormal> { 0.150822 -0.000001 0.986389 }
+      }
+      <Normal> { 0.986389 -0.065096 -0.150822 }
+    }
+    <Vertex> 3766 {
+      -0.724407076836 0.258377104998 2.56209802628
+      <UV>  {
+        0.934421 0.319064
+        <Tangent> { -0.827424 -0.561578 0.000002 }
+        <Binormal> { 0.098718 -0.145448 0.421539 }
+      }
+      <Normal> { 0.972808 0.150792 -0.175787 }
+    }
+    <Vertex> 3767 {
+      -0.583349466324 0.333781808615 2.66896700859
+      <UV>  {
+        0.972677 0.359093
+        <Tangent> { 0.549241 0.835664 -0.000002 }
+        <Binormal> { -0.790574 0.519606 0.323520 }
+      }
+      <Normal> { -0.279489 0.163793 -0.946043 }
+    }
+    <Vertex> 3768 {
+      -0.563552320004 0.316298872232 2.67931938171
+      <UV>  {
+        0.978047 0.362971
+        <Tangent> { -0.017190 -0.999852 -0.000000 }
+        <Binormal> { -0.105029 0.001806 0.493241 }
+      }
+      <Normal> { 0.508011 0.854885 0.105045 }
+    }
+    <Vertex> 3769 {
+      -0.785473287106 0.33680549264 2.7342581749
+      <UV>  {
+        0.917859 0.383549
+        <Tangent> { -0.559234 0.829010 0.000000 }
+        <Binormal> { 0.588962 0.397303 -0.323842 }
+      }
+      <Normal> { 0.617878 -0.336863 0.710440 }
+    }
+    <Vertex> 3770 {
+      -0.798021733761 0.3489331007 2.72567367554
+      <UV>  {
+        0.914456 0.380333
+        <Tangent> { 0.999950 0.010050 0.000000 }
+        <Binormal> { 0.004270 -0.424827 0.013828 }
+      }
+      <Normal> { -0.905240 0.004730 0.424848 }
+    }
+    <Vertex> 3771 {
+      -0.724407076836 0.258377104998 2.56209802628
+      <UV>  {
+        0.934421 0.319064
+        <Tangent> { -0.827424 -0.561578 0.000002 }
+        <Binormal> { 0.098718 -0.145448 0.421539 }
+      }
+      <Normal> { 0.972808 0.150792 -0.175787 }
+    }
+    <Vertex> 3772 {
+      -0.704609930515 0.240894168615 2.5724503994
+      <UV>  {
+        0.939790 0.322941
+        <Tangent> { -0.000003 -1.000000 -0.000001 }
+        <Binormal> { 0.150822 -0.000001 0.986389 }
+      }
+      <Normal> { 0.986389 -0.065096 -0.150822 }
+    }
+    <Vertex> 3773 {
+      -0.63853597641 0.43059015274 2.79111242294
+      <UV>  {
+        0.957710 0.404844
+        <Tangent> { 0.043007 0.999075 -0.000001 }
+        <Binormal> { 0.984104 -0.042362 -0.126638 }
+      }
+      <Normal> { 0.121494 -0.122227 0.985015 }
+    }
+    <Vertex> 3774 {
+      -0.648215711117 0.435370385647 2.77852416039
+      <UV>  {
+        0.955085 0.400129
+        <Tangent> { 0.076915 0.997038 -0.000001 }
+        <Binormal> { 0.059699 -0.004605 0.374697 }
+      }
+      <Normal> { -0.444746 -0.893613 0.059877 }
+    }
+    <Vertex> 3775 {
+      -0.798021733761 0.3489331007 2.72567367554
+      <UV>  {
+        0.914456 0.380333
+        <Tangent> { 0.999950 0.010050 0.000000 }
+        <Binormal> { 0.004270 -0.424827 0.013828 }
+      }
+      <Normal> { -0.905240 0.004730 0.424848 }
+    }
+    <Vertex> 3776 {
+      -0.785473287106 0.33680549264 2.7342581749
+      <UV>  {
+        0.917859 0.383549
+        <Tangent> { -0.559234 0.829010 0.000000 }
+        <Binormal> { 0.588962 0.397303 -0.323842 }
+      }
+      <Normal> { 0.617878 -0.336863 0.710440 }
+    }
+    <Vertex> 3777 {
+      -0.583349466324 0.333781808615 2.66896700859
+      <UV>  {
+        0.972677 0.359093
+        <Tangent> { 0.549241 0.835664 -0.000002 }
+        <Binormal> { -0.790574 0.519606 0.323520 }
+      }
+      <Normal> { -0.279489 0.163793 -0.946043 }
+    }
+    <Vertex> 3778 {
+      -0.798021733761 0.3489331007 2.72567367554
+      <UV>  {
+        0.914456 0.380333
+        <Tangent> { 0.999950 0.010050 0.000000 }
+        <Binormal> { 0.004270 -0.424827 0.013828 }
+      }
+      <Normal> { -0.905240 0.004730 0.424848 }
+    }
+    <Vertex> 3779 {
+      -0.648215711117 0.435370385647 2.77852416039
+      <UV>  {
+        0.955085 0.400129
+        <Tangent> { 0.076915 0.997038 -0.000001 }
+        <Binormal> { 0.059699 -0.004605 0.374697 }
+      }
+      <Normal> { -0.444746 -0.893613 0.059877 }
+    }
+    <Vertex> 3780 {
+      -0.583349466324 0.333781808615 2.66896700859
+      <UV>  {
+        0.972677 0.359093
+        <Tangent> { 0.549241 0.835664 -0.000002 }
+        <Binormal> { -0.790574 0.519606 0.323520 }
+      }
+      <Normal> { -0.279489 0.163793 -0.946043 }
+    }
+    <Vertex> 3781 {
+      -0.724407076836 0.258377104998 2.56209802628
+      <UV>  {
+        0.934421 0.319064
+        <Tangent> { -0.827424 -0.561578 0.000002 }
+        <Binormal> { 0.098718 -0.145448 0.421539 }
+      }
+      <Normal> { 0.972808 0.150792 -0.175787 }
+    }
+    <Vertex> 3782 {
+      -0.798021733761 0.3489331007 2.72567367554
+      <UV>  {
+        0.914456 0.380333
+        <Tangent> { 0.999950 0.010050 0.000000 }
+        <Binormal> { 0.004270 -0.424827 0.013828 }
+      }
+      <Normal> { -0.905240 0.004730 0.424848 }
+    }
+    <Vertex> 3783 {
+      -0.639473974705 0.543919026852 2.78467941284
+      <UV>  {
+        0.957456 0.402435
+        <Tangent> { 0.000005 1.000000 -0.000000 }
+        <Binormal> { 0.113193 -0.000001 -0.376389 }
+      }
+      <Normal> { 0.376385 -0.919492 0.113193 }
+    }
+    <Vertex> 3784 {
+      -0.582806348801 0.542782723904 2.6931347847
+      <UV>  {
+        0.972825 0.368145
+        <Tangent> { 0.837504 0.546431 -0.000003 }
+        <Binormal> { -0.540044 0.827715 -0.084675 }
+      }
+      <Normal> { -0.059877 -0.140172 -0.988311 }
+    }
+    <Vertex> 3785 {
+      -0.583349466324 0.333781808615 2.66896700859
+      <UV>  {
+        0.972677 0.359093
+        <Tangent> { 0.549241 0.835664 -0.000002 }
+        <Binormal> { -0.790574 0.519606 0.323520 }
+      }
+      <Normal> { -0.279489 0.163793 -0.946043 }
+    }
+    <Vertex> 3786 {
+      -0.648215711117 0.435370385647 2.77852416039
+      <UV>  {
+        0.955085 0.400129
+        <Tangent> { 0.076915 0.997038 -0.000001 }
+        <Binormal> { 0.059699 -0.004605 0.374697 }
+      }
+      <Normal> { -0.444746 -0.893613 0.059877 }
+    }
+    <Vertex> 3787 {
+      -0.798021733761 0.713478803635 2.78467941284
+      <UV>  {
+        0.914456 0.402435
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.914304 -0.350932 0.202185 }
+    }
+    <Vertex> 3788 {
+      -0.798021733761 0.716523706913 2.6931347847
+      <UV>  {
+        0.914456 0.368145
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.064394 -0.572192 -0.817560 }
+    }
+    <Vertex> 3789 {
+      -0.582806348801 0.542782723904 2.6931347847
+      <UV>  {
+        0.972825 0.368145
+        <Tangent> { 0.837504 0.546431 -0.000003 }
+        <Binormal> { -0.540044 0.827715 -0.084675 }
+      }
+      <Normal> { -0.059877 -0.140172 -0.988311 }
+    }
+    <Vertex> 3790 {
+      -0.639473974705 0.543919026852 2.78467941284
+      <UV>  {
+        0.957456 0.402435
+        <Tangent> { 0.000005 1.000000 -0.000000 }
+        <Binormal> { 0.113193 -0.000001 -0.376389 }
+      }
+      <Normal> { 0.376385 -0.919492 0.113193 }
+    }
+    <Vertex> 3791 {
+      -0.583349466324 0.333781808615 2.66896700859
+      <UV>  {
+        0.972677 0.359093
+        <Tangent> { 0.549241 0.835664 -0.000002 }
+        <Binormal> { -0.790574 0.519606 0.323520 }
+      }
+      <Normal> { -0.279489 0.163793 -0.946043 }
+    }
+    <Vertex> 3792 {
+      -0.724407076836 0.258377104998 2.56209802628
+      <UV>  {
+        0.934421 0.319064
+        <Tangent> { -0.827424 -0.561578 0.000002 }
+        <Binormal> { 0.098718 -0.145448 0.421539 }
+      }
+      <Normal> { 0.972808 0.150792 -0.175787 }
+    }
+    <Vertex> 3793 {
+      -0.656780600548 0.267967134714 2.43929767609
+      <UV>  {
+        0.952762 0.273067
+        <Tangent> { -0.913290 -0.407310 0.000000 }
+        <Binormal> { -0.038709 0.086794 0.093853 }
+      }
+      <Normal> { 0.943327 0.317942 0.095035 }
+    }
+    <Vertex> 3794 {
+      -0.561084210873 0.333781808615 2.58944773674
+      <UV>  {
+        0.978716 0.329308
+        <Tangent> { -0.902287 -0.431135 0.000001 }
+        <Binormal> { -0.057473 0.120280 0.033378 }
+      }
+      <Normal> { 0.908109 0.396924 0.133305 }
+    }
+    <Vertex> 3795 {
+      -0.656780600548 0.267967134714 2.43929767609
+      <UV>  {
+        0.952762 0.273067
+        <Tangent> { -0.913290 -0.407310 0.000000 }
+        <Binormal> { -0.038709 0.086794 0.093853 }
+      }
+      <Normal> { 0.943327 0.317942 0.095035 }
+    }
+    <Vertex> 3796 {
+      -0.798021733761 0.219797983766 2.42812728882
+      <UV>  {
+        0.914456 0.268883
+        <Tangent> { -1.000000 0.000133 0.000000 }
+        <Binormal> { 0.000010 0.078433 0.000081 }
+      }
+      <Normal> { 0.996918 -0.000214 0.078433 }
+    }
+    <Vertex> 3797 {
+      -0.798021733761 0.223556384444 2.09389591217
+      <UV>  {
+        0.914456 0.143692
+        <Tangent> { -1.000000 0.000724 -0.000000 }
+        <Binormal> { -0.000026 -0.035401 -0.000418 }
+      }
+      <Normal> { 0.999359 -0.000305 -0.035401 }
+    }
+    <Vertex> 3798 {
+      -0.705965340137 0.263289213181 2.24234199524
+      <UV>  {
+        0.939423 0.199294
+        <Tangent> { -0.835192 -0.549959 0.000001 }
+        <Binormal> { 0.018059 -0.027425 0.199506 }
+      }
+      <Normal> { 0.927641 0.371960 -0.032838 }
+    }
+    <Vertex> 3799 {
+      -0.939062178135 0.267967134714 2.43929767609
+      <UV>  {
+        0.876204 0.273067
+        <Tangent> { -0.913062 0.407820 -0.000000 }
+        <Binormal> { 0.038757 0.086772 -0.094079 }
+      }
+      <Normal> { 0.943205 -0.318247 0.095035 }
+    }
+    <Vertex> 3800 {
+      -0.889877438545 0.263289213181 2.24234199524
+      <UV>  {
+        0.889543 0.199294
+        <Tangent> { -0.834266 0.551362 -0.000001 }
+        <Binormal> { -0.018123 -0.027422 -0.200508 }
+      }
+      <Normal> { 0.927396 -0.372570 -0.032868 }
+    }
+    <Vertex> 3801 {
+      -0.798021733761 0.223556384444 2.09389591217
+      <UV>  {
+        0.914456 0.143692
+        <Tangent> { -1.000000 0.000724 -0.000000 }
+        <Binormal> { -0.000026 -0.035401 -0.000418 }
+      }
+      <Normal> { 0.999359 -0.000305 -0.035401 }
+    }
+    <Vertex> 3802 {
+      -0.798021733761 0.219797983766 2.42812728882
+      <UV>  {
+        0.914456 0.268883
+        <Tangent> { -1.000000 0.000133 0.000000 }
+        <Binormal> { 0.000010 0.078433 0.000081 }
+      }
+      <Normal> { 0.996918 -0.000214 0.078433 }
+    }
+    <Vertex> 3803 {
+      -1.01249313354 0.333781808615 2.66896700859
+      <UV>  {
+        0.856288 0.359093
+        <Tangent> { 0.549205 -0.835688 0.000002 }
+        <Binormal> { 0.790623 0.519587 -0.323462 }
+      }
+      <Normal> { -0.279458 -0.163732 -0.946074 }
+    }
+    <Vertex> 3804 {
+      -1.03475868702 0.333781808615 2.58944773674
+      <UV>  {
+        0.850250 0.329308
+        <Tangent> { -0.902288 0.431133 -0.000001 }
+        <Binormal> { 0.057472 0.120278 -0.033376 }
+      }
+      <Normal> { 0.908109 -0.396924 0.133305 }
+    }
+    <Vertex> 3805 {
+      -0.939062178135 0.267967134714 2.43929767609
+      <UV>  {
+        0.876204 0.273067
+        <Tangent> { -0.913062 0.407820 -0.000000 }
+        <Binormal> { 0.038757 0.086772 -0.094079 }
+      }
+      <Normal> { 0.943205 -0.318247 0.095035 }
+    }
+    <Vertex> 3806 {
+      -0.871435701847 0.258377045393 2.56209802628
+      <UV>  {
+        0.894545 0.319064
+        <Tangent> { -0.828693 0.559703 -0.000002 }
+        <Binormal> { -0.098747 -0.146206 -0.419920 }
+      }
+      <Normal> { 0.972747 -0.150273 -0.176427 }
+    }
+    <Vertex> 3807 {
+      -0.798021733761 0.713478803635 2.78467941284
+      <UV>  {
+        0.914456 0.402435
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.914304 -0.350932 0.202185 }
+    }
+    <Vertex> 3808 {
+      -0.956368923187 0.543918967247 2.78467941284
+      <UV>  {
+        0.871510 0.402435
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.113133 0.000000 0.376110 }
+      }
+      <Normal> { 0.376110 0.919614 0.113132 }
+    }
+    <Vertex> 3809 {
+      -1.01303625107 0.542782783508 2.6931347847
+      <UV>  {
+        0.856141 0.368145
+        <Tangent> { 0.837040 -0.547141 0.000003 }
+        <Binormal> { 0.540729 0.827231 0.084560 }
+      }
+      <Normal> { -0.059938 0.140202 -0.988281 }
+    }
+    <Vertex> 3810 {
+      -0.798021733761 0.716523706913 2.6931347847
+      <UV>  {
+        0.914456 0.368145
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.064394 -0.572192 -0.817560 }
+    }
+    <Vertex> 3811 {
+      -0.956368923187 0.543918967247 2.78467941284
+      <UV>  {
+        0.871510 0.402435
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.113133 0.000000 0.376110 }
+      }
+      <Normal> { 0.376110 0.919614 0.113132 }
+    }
+    <Vertex> 3812 {
+      -0.947627186775 0.435370385647 2.77852416039
+      <UV>  {
+        0.873881 0.400129
+        <Tangent> { 0.076921 -0.997037 0.000001 }
+        <Binormal> { -0.058970 -0.004550 -0.375255 }
+      }
+      <Normal> { -0.445296 0.893399 0.059145 }
+    }
+    <Vertex> 3813 {
+      -1.01249313354 0.333781808615 2.66896700859
+      <UV>  {
+        0.856288 0.359093
+        <Tangent> { 0.549205 -0.835688 0.000002 }
+        <Binormal> { 0.790623 0.519587 -0.323462 }
+      }
+      <Normal> { -0.279458 -0.163732 -0.946074 }
+    }
+    <Vertex> 3814 {
+      -1.01303625107 0.542782783508 2.6931347847
+      <UV>  {
+        0.856141 0.368145
+        <Tangent> { 0.837040 -0.547141 0.000003 }
+        <Binormal> { 0.540729 0.827231 0.084560 }
+      }
+      <Normal> { -0.059938 0.140202 -0.988281 }
+    }
+    <Vertex> 3815 {
+      -1.01249313354 0.333781808615 2.66896700859
+      <UV>  {
+        0.856288 0.359093
+        <Tangent> { 0.549205 -0.835688 0.000002 }
+        <Binormal> { 0.790623 0.519587 -0.323462 }
+      }
+      <Normal> { -0.279458 -0.163732 -0.946074 }
+    }
+    <Vertex> 3816 {
+      -0.798021733761 0.3489331007 2.72567367554
+      <UV>  {
+        0.914456 0.380333
+        <Tangent> { 0.999950 0.010050 0.000000 }
+        <Binormal> { 0.004270 -0.424827 0.013828 }
+      }
+      <Normal> { -0.905240 0.004730 0.424848 }
+    }
+    <Vertex> 3817 {
+      -0.871435701847 0.258377045393 2.56209802628
+      <UV>  {
+        0.894545 0.319064
+        <Tangent> { -0.828693 0.559703 -0.000002 }
+        <Binormal> { -0.098747 -0.146206 -0.419920 }
+      }
+      <Normal> { 0.972747 -0.150273 -0.176427 }
+    }
+    <Vertex> 3818 {
+      -1.01249313354 0.333781808615 2.66896700859
+      <UV>  {
+        0.856288 0.359093
+        <Tangent> { 0.549205 -0.835688 0.000002 }
+        <Binormal> { 0.790623 0.519587 -0.323462 }
+      }
+      <Normal> { -0.279458 -0.163732 -0.946074 }
+    }
+    <Vertex> 3819 {
+      -0.947627186775 0.435370385647 2.77852416039
+      <UV>  {
+        0.873881 0.400129
+        <Tangent> { 0.076921 -0.997037 0.000001 }
+        <Binormal> { -0.058970 -0.004550 -0.375255 }
+      }
+      <Normal> { -0.445296 0.893399 0.059145 }
+    }
+    <Vertex> 3820 {
+      -0.798021733761 0.3489331007 2.72567367554
+      <UV>  {
+        0.914456 0.380333
+        <Tangent> { 0.999950 0.010050 0.000000 }
+        <Binormal> { 0.004270 -0.424827 0.013828 }
+      }
+      <Normal> { -0.905240 0.004730 0.424848 }
+    }
+    <Vertex> 3821 {
+      -0.957306623459 0.430590182543 2.79111242294
+      <UV>  {
+        0.871256 0.404844
+        <Tangent> { 0.043113 -0.999070 0.000001 }
+        <Binormal> { -0.984130 -0.042468 0.125910 }
+      }
+      <Normal> { 0.120731 0.122715 0.985046 }
+    }
+    <Vertex> 3822 {
+      -0.810369491577 0.33680549264 2.7342581749
+      <UV>  {
+        0.911107 0.383549
+        <Tangent> { -0.562897 -0.826527 -0.000000 }
+        <Binormal> { -0.587047 0.399802 0.319786 }
+      }
+      <Normal> { 0.617298 0.338298 0.710257 }
+    }
+    <Vertex> 3823 {
+      -0.798021733761 0.3489331007 2.72567367554
+      <UV>  {
+        0.914456 0.380333
+        <Tangent> { 0.999950 0.010050 0.000000 }
+        <Binormal> { 0.004270 -0.424827 0.013828 }
+      }
+      <Normal> { -0.905240 0.004730 0.424848 }
+    }
+    <Vertex> 3824 {
+      -0.947627186775 0.435370385647 2.77852416039
+      <UV>  {
+        0.873881 0.400129
+        <Tangent> { 0.076921 -0.997037 0.000001 }
+        <Binormal> { -0.058970 -0.004550 -0.375255 }
+      }
+      <Normal> { -0.445296 0.893399 0.059145 }
+    }
+    <Vertex> 3825 {
+      -0.810369491577 0.33680549264 2.7342581749
+      <UV>  {
+        0.911107 0.383549
+        <Tangent> { -0.562897 -0.826527 -0.000000 }
+        <Binormal> { -0.587047 0.399802 0.319786 }
+      }
+      <Normal> { 0.617298 0.338298 0.710257 }
+    }
+    <Vertex> 3826 {
+      -0.891232848167 0.240894183517 2.5724503994
+      <UV>  {
+        0.889176 0.322941
+        <Tangent> { -0.000002 1.000000 0.000001 }
+        <Binormal> { -0.151952 0.000001 -0.986114 }
+      }
+      <Normal> { 0.986114 0.066500 -0.151952 }
+    }
+    <Vertex> 3827 {
+      -0.871435701847 0.258377045393 2.56209802628
+      <UV>  {
+        0.894545 0.319064
+        <Tangent> { -0.828693 0.559703 -0.000002 }
+        <Binormal> { -0.098747 -0.146206 -0.419920 }
+      }
+      <Normal> { 0.972747 -0.150273 -0.176427 }
+    }
+    <Vertex> 3828 {
+      -0.798021733761 0.3489331007 2.72567367554
+      <UV>  {
+        0.914456 0.380333
+        <Tangent> { 0.999950 0.010050 0.000000 }
+        <Binormal> { 0.004270 -0.424827 0.013828 }
+      }
+      <Normal> { -0.905240 0.004730 0.424848 }
+    }
+    <Vertex> 3829 {
+      -0.891232848167 0.240894183517 2.5724503994
+      <UV>  {
+        0.889176 0.322941
+        <Tangent> { -0.000002 1.000000 0.000001 }
+        <Binormal> { -0.151952 0.000001 -0.986114 }
+      }
+      <Normal> { 0.986114 0.066500 -0.151952 }
+    }
+    <Vertex> 3830 {
+      -1.03229045868 0.316298872232 2.67931938171
+      <UV>  {
+        0.850919 0.362971
+        <Tangent> { -0.017190 0.999852 0.000000 }
+        <Binormal> { 0.105029 0.001806 -0.493241 }
+      }
+      <Normal> { 0.508011 -0.854885 0.105045 }
+    }
+    <Vertex> 3831 {
+      -1.01249313354 0.333781808615 2.66896700859
+      <UV>  {
+        0.856288 0.359093
+        <Tangent> { 0.549205 -0.835688 0.000002 }
+        <Binormal> { 0.790623 0.519587 -0.323462 }
+      }
+      <Normal> { -0.279458 -0.163732 -0.946074 }
+    }
+    <Vertex> 3832 {
+      -0.871435701847 0.258377045393 2.56209802628
+      <UV>  {
+        0.894545 0.319064
+        <Tangent> { -0.828693 0.559703 -0.000002 }
+        <Binormal> { -0.098747 -0.146206 -0.419920 }
+      }
+      <Normal> { 0.972747 -0.150273 -0.176427 }
+    }
+    <Vertex> 3833 {
+      -0.966048359871 0.539138734341 2.7972676754
+      <UV>  {
+        0.868885 0.407150
+        <Tangent> { -0.000004 -1.000000 0.000003 }
+        <Binormal> { -0.998016 0.000004 -0.047487 }
+      }
+      <Normal> { -0.047487 -0.041078 0.998016 }
+    }
+    <Vertex> 3834 {
+      -0.957306623459 0.430590182543 2.79111242294
+      <UV>  {
+        0.871256 0.404844
+        <Tangent> { 0.043113 -0.999070 0.000001 }
+        <Binormal> { -0.984130 -0.042468 0.125910 }
+      }
+      <Normal> { 0.120731 0.122715 0.985046 }
+    }
+    <Vertex> 3835 {
+      -0.947627186775 0.435370385647 2.77852416039
+      <UV>  {
+        0.873881 0.400129
+        <Tangent> { 0.076921 -0.997037 0.000001 }
+        <Binormal> { -0.058970 -0.004550 -0.375255 }
+      }
+      <Normal> { -0.445296 0.893399 0.059145 }
+    }
+    <Vertex> 3836 {
+      -0.956368923187 0.543918967247 2.78467941284
+      <UV>  {
+        0.871510 0.402435
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.113133 0.000000 0.376110 }
+      }
+      <Normal> { 0.376110 0.919614 0.113132 }
+    }
+    <Vertex> 3837 {
+      -1.03229045868 0.316298872232 2.67931938171
+      <UV>  {
+        0.850919 0.362971
+        <Tangent> { -0.017190 0.999852 0.000000 }
+        <Binormal> { 0.105029 0.001806 -0.493241 }
+      }
+      <Normal> { 0.508011 -0.854885 0.105045 }
+    }
+    <Vertex> 3838 {
+      -1.02271580696 0.538002550602 2.70572304726
+      <UV>  {
+        0.853516 0.372860
+        <Tangent> { 0.090274 0.995917 0.000000 }
+        <Binormal> { -0.149903 0.013588 0.373563 }
+      }
+      <Normal> { -0.454665 -0.877834 -0.150517 }
+    }
+    <Vertex> 3839 {
+      -1.01303625107 0.542782783508 2.6931347847
+      <UV>  {
+        0.856141 0.368145
+        <Tangent> { 0.837040 -0.547141 0.000003 }
+        <Binormal> { 0.540729 0.827231 0.084560 }
+      }
+      <Normal> { -0.059938 0.140202 -0.988281 }
+    }
+    <Vertex> 3840 {
+      -1.01249313354 0.333781808615 2.66896700859
+      <UV>  {
+        0.856288 0.359093
+        <Tangent> { 0.549205 -0.835688 0.000002 }
+        <Binormal> { 0.790623 0.519587 -0.323462 }
+      }
+      <Normal> { -0.279458 -0.163732 -0.946074 }
+    }
+    <Vertex> 3841 {
+      -0.798021733761 0.729225039482 2.7972676754
+      <UV>  {
+        0.914456 0.407150
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.130711 -0.566240 0.813776 }
+    }
+    <Vertex> 3842 {
+      -0.966048359871 0.539138734341 2.7972676754
+      <UV>  {
+        0.868885 0.407150
+        <Tangent> { -0.000004 -1.000000 0.000003 }
+        <Binormal> { -0.998016 0.000004 -0.047487 }
+      }
+      <Normal> { -0.047487 -0.041078 0.998016 }
+    }
+    <Vertex> 3843 {
+      -0.956368923187 0.543918967247 2.78467941284
+      <UV>  {
+        0.871510 0.402435
+        <Tangent> { 0.000000 -1.000000 0.000000 }
+        <Binormal> { -0.113133 0.000000 0.376110 }
+      }
+      <Normal> { 0.376110 0.919614 0.113132 }
+    }
+    <Vertex> 3844 {
+      -0.798021733761 0.713478803635 2.78467941284
+      <UV>  {
+        0.914456 0.402435
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.914304 -0.350932 0.202185 }
+    }
+    <Vertex> 3845 {
+      -1.02271580696 0.538002550602 2.70572304726
+      <UV>  {
+        0.853516 0.372860
+        <Tangent> { 0.090274 0.995917 0.000000 }
+        <Binormal> { -0.149903 0.013588 0.373563 }
+      }
+      <Normal> { -0.454665 -0.877834 -0.150517 }
+    }
+    <Vertex> 3846 {
+      -0.798021733761 0.73226994276 2.70572304726
+      <UV>  {
+        0.914456 0.372860
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.921079 -0.338633 -0.192022 }
+    }
+    <Vertex> 3847 {
+      -0.798021733761 0.716523706913 2.6931347847
+      <UV>  {
+        0.914456 0.368145
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.064394 -0.572192 -0.817560 }
+    }
+    <Vertex> 3848 {
+      -1.01303625107 0.542782783508 2.6931347847
+      <UV>  {
+        0.856141 0.368145
+        <Tangent> { 0.837040 -0.547141 0.000003 }
+        <Binormal> { 0.540729 0.827231 0.084560 }
+      }
+      <Normal> { -0.059938 0.140202 -0.988281 }
+    }
+    <Vertex> 3849 {
+      -1.02271580696 0.538002550602 2.70572304726
+      <UV>  {
+        0.853516 0.372860
+        <Tangent> { 0.090274 0.995917 0.000000 }
+        <Binormal> { -0.149903 0.013588 0.373563 }
+      }
+      <Normal> { -0.454665 -0.877834 -0.150517 }
+    }
+    <Vertex> 3850 {
+      -0.966048359871 0.539138734341 2.7972676754
+      <UV>  {
+        0.868885 0.407150
+        <Tangent> { -0.000004 -1.000000 0.000003 }
+        <Binormal> { -0.998016 0.000004 -0.047487 }
+      }
+      <Normal> { -0.047487 -0.041078 0.998016 }
+    }
+    <Vertex> 3851 {
+      -0.798021733761 0.729225039482 2.7972676754
+      <UV>  {
+        0.914456 0.407150
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.130711 -0.566240 0.813776 }
+    }
+    <Vertex> 3852 {
+      -0.798021733761 0.73226994276 2.70572304726
+      <UV>  {
+        0.914456 0.372860
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.921079 -0.338633 -0.192022 }
+    }
+    <Vertex> 3853 {
+      -1.03229045868 0.316298872232 2.67931938171
+      <UV>  {
+        0.850919 0.362971
+        <Tangent> { -0.017190 0.999852 0.000000 }
+        <Binormal> { 0.105029 0.001806 -0.493241 }
+      }
+      <Normal> { 0.508011 -0.854885 0.105045 }
+    }
+    <Vertex> 3854 {
+      -0.957306623459 0.430590182543 2.79111242294
+      <UV>  {
+        0.871256 0.404844
+        <Tangent> { 0.043113 -0.999070 0.000001 }
+        <Binormal> { -0.984130 -0.042468 0.125910 }
+      }
+      <Normal> { 0.120731 0.122715 0.985046 }
+    }
+    <Vertex> 3855 {
+      -0.966048359871 0.539138734341 2.7972676754
+      <UV>  {
+        0.868885 0.407150
+        <Tangent> { -0.000004 -1.000000 0.000003 }
+        <Binormal> { -0.998016 0.000004 -0.047487 }
+      }
+      <Normal> { -0.047487 -0.041078 0.998016 }
+    }
+    <Vertex> 3856 {
+      -1.02271580696 0.538002550602 2.70572304726
+      <UV>  {
+        0.853516 0.372860
+        <Tangent> { 0.090274 0.995917 0.000000 }
+        <Binormal> { -0.149903 0.013588 0.373563 }
+      }
+      <Normal> { -0.454665 -0.877834 -0.150517 }
+    }
+    <Vertex> 3857 {
+      -0.891232848167 0.240894183517 2.5724503994
+      <UV>  {
+        0.889176 0.322941
+        <Tangent> { -0.000002 1.000000 0.000001 }
+        <Binormal> { -0.151952 0.000001 -0.986114 }
+      }
+      <Normal> { 0.986114 0.066500 -0.151952 }
+    }
+    <Vertex> 3858 {
+      -0.810369491577 0.33680549264 2.7342581749
+      <UV>  {
+        0.911107 0.383549
+        <Tangent> { -0.562897 -0.826527 -0.000000 }
+        <Binormal> { -0.587047 0.399802 0.319786 }
+      }
+      <Normal> { 0.617298 0.338298 0.710257 }
+    }
+    <Vertex> 3859 {
+      -1.03229045868 0.316298872232 2.67931938171
+      <UV>  {
+        0.850919 0.362971
+        <Tangent> { -0.017190 0.999852 0.000000 }
+        <Binormal> { 0.105029 0.001806 -0.493241 }
+      }
+      <Normal> { 0.508011 -0.854885 0.105045 }
+    }
+    <Vertex> 3860 {
+      -0.810369491577 0.33680549264 2.7342581749
+      <UV>  {
+        0.911107 0.383549
+        <Tangent> { -0.562897 -0.826527 -0.000000 }
+        <Binormal> { -0.587047 0.399802 0.319786 }
+      }
+      <Normal> { 0.617298 0.338298 0.710257 }
+    }
+    <Vertex> 3861 {
+      -0.957306623459 0.430590182543 2.79111242294
+      <UV>  {
+        0.871256 0.404844
+        <Tangent> { 0.043113 -0.999070 0.000001 }
+        <Binormal> { -0.984130 -0.042468 0.125910 }
+      }
+      <Normal> { 0.120731 0.122715 0.985046 }
+    }
+    <Vertex> 3862 {
+      -1.03229045868 0.316298872232 2.67931938171
+      <UV>  {
+        0.850919 0.362971
+        <Tangent> { -0.017190 0.999852 0.000000 }
+        <Binormal> { 0.105029 0.001806 -0.493241 }
+      }
+      <Normal> { 0.508011 -0.854885 0.105045 }
+    }
+    <Vertex> 3863 {
+      -0.438694566488 0.546006917953 2.69551420212
+      <UV>  {
+        0.738640 0.381781
+        <Tangent> { 0.000001 -1.000000 0.000001 }
+        <Binormal> { -0.779962 -0.000001 -0.250496 }
+      }
+      <Normal> { -0.250496 0.573473 0.779962 }
+    }
+    <Vertex> 3864 {
+      -0.427252531052 0.553441524506 2.67915606499
+      <UV>  {
+        0.740680 0.377753
+        <Tangent> { -0.000003 -1.000000 0.000003 }
+        <Binormal> { -0.724663 0.000001 -0.403365 }
+      }
+      <Normal> { -0.403363 0.558702 0.724662 }
+    }
+    <Vertex> 3865 {
+      -0.799244344234 0.811275839806 2.65514659882
+      <UV>  {
+        0.674344 0.371839
+        <Tangent> { 1.000000 0.000551 0.000000 }
+        <Binormal> { 0.000248 -0.450636 0.000034 }
+      }
+      <Normal> { -0.892697 -0.000458 0.450636 }
+    }
+    <Vertex> 3866 {
+      -0.799244344234 0.803841233253 2.67150473595
+      <UV>  {
+        0.674344 0.375868
+        <Tangent> { 1.000000 0.000647 0.000000 }
+        <Binormal> { 0.000484 -0.748588 0.000215 }
+      }
+      <Normal> { -0.663015 -0.000214 0.748589 }
+    }
+    <Vertex> 3867 {
+      -0.799244344234 0.186503902078 2.14461088181
+      <UV>  {
+        0.674344 0.246103
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.996796 -0.000824 -0.079806 }
+    }
+    <Vertex> 3868 {
+      -0.786852538586 0.193938553333 2.13745093346
+      <UV>  {
+        0.676554 0.244340
+        <Tangent> { -0.971173 -0.238377 0.000003 }
+        <Binormal> { 0.063880 -0.260255 -0.012180 }
+      }
+      <Normal> { 0.932646 0.241462 -0.267983 }
+    }
+    <Vertex> 3869 {
+      -0.652129292488 0.239068865776 2.29864048958
+      <UV>  {
+        0.700579 0.284038
+        <Tangent> { -0.815922 -0.578161 0.000006 }
+        <Binormal> { 0.116892 -0.164962 0.030763 }
+      }
+      <Normal> { 0.816431 0.540819 -0.202185 }
+    }
+    <Vertex> 3870 {
+      -0.663170814514 0.225198209286 2.3067035675
+      <UV>  {
+        0.698610 0.286024
+        <Tangent> { -0.698295 -0.715810 0.000032 }
+        <Binormal> { 0.125815 -0.122723 0.290655 }
+      }
+      <Normal> { 0.864803 0.470260 -0.175787 }
+    }
+    <Vertex> 3871 {
+      -0.663170814514 0.225198209286 2.3067035675
+      <UV>  {
+        0.698610 0.286024
+        <Tangent> { -0.698295 -0.715810 0.000032 }
+        <Binormal> { 0.125815 -0.122723 0.290655 }
+      }
+      <Normal> { 0.864803 0.470260 -0.175787 }
+    }
+    <Vertex> 3872 {
+      -0.652129292488 0.239068865776 2.29864048958
+      <UV>  {
+        0.700579 0.284038
+        <Tangent> { -0.815922 -0.578161 0.000006 }
+        <Binormal> { 0.116892 -0.164962 0.030763 }
+      }
+      <Normal> { 0.816431 0.540819 -0.202185 }
+    }
+    <Vertex> 3873 {
+      -0.580973386765 0.257360994816 2.38021206856
+      <UV>  {
+        0.713268 0.304128
+        <Tangent> { -0.786699 -0.617337 0.000002 }
+        <Binormal> { 0.228568 -0.291274 0.025343 }
+      }
+      <Normal> { 0.746147 0.553301 -0.370251 }
+    }
+    <Vertex> 3874 {
+      -0.59241604805 0.249926358461 2.38737201691
+      <UV>  {
+        0.711227 0.305891
+        <Tangent> { -0.823874 -0.566773 0.000026 }
+        <Binormal> { 0.074559 -0.108369 0.237339 }
+      }
+      <Normal> { 0.927458 0.349956 -0.131565 }
+    }
+    <Vertex> 3875 {
+      -0.59241604805 0.249926358461 2.38737201691
+      <UV>  {
+        0.711227 0.305891
+        <Tangent> { -0.823874 -0.566773 0.000026 }
+        <Binormal> { 0.074559 -0.108369 0.237339 }
+      }
+      <Normal> { 0.927458 0.349956 -0.131565 }
+    }
+    <Vertex> 3876 {
+      -0.580973386765 0.257360994816 2.38021206856
+      <UV>  {
+        0.713268 0.304128
+        <Tangent> { -0.786699 -0.617337 0.000002 }
+        <Binormal> { 0.228568 -0.291274 0.025343 }
+      }
+      <Normal> { 0.746147 0.553301 -0.370251 }
+    }
+    <Vertex> 3877 {
+      -0.469274312258 0.262316524982 2.51226186752
+      <UV>  {
+        0.733187 0.336649
+        <Tangent> { -0.197522 -0.980298 0.000011 }
+        <Binormal> { 0.025391 -0.005111 0.457046 }
+      }
+      <Normal> { 0.623646 0.781243 -0.025910 }
+    }
+    <Vertex> 3878 {
+      -0.480716943741 0.25488191843 2.52862000465
+      <UV>  {
+        0.731146 0.340678
+        <Tangent> { -0.117083 -0.993122 0.000005 }
+        <Binormal> { -0.198979 0.023462 0.788838 }
+      }
+      <Normal> { 0.851436 0.484634 0.200354 }
+    }
+    <Vertex> 3879 {
+      -0.511967480183 0.324602454901 2.57855820656
+      <UV>  {
+        0.725573 0.352977
+        <Tangent> { -0.223131 -0.974788 -0.000003 }
+        <Binormal> { -0.231684 0.053031 0.704893 }
+      }
+      <Normal> { 0.836238 0.494156 0.237678 }
+    }
+    <Vertex> 3880 {
+      -0.500524818897 0.332037061453 2.56220006943
+      <UV>  {
+        0.727614 0.348948
+        <Tangent> { -0.095986 -0.995383 0.000005 }
+        <Binormal> { -0.099520 0.009600 0.710632 }
+      }
+      <Normal> { 0.774194 0.624958 0.099979 }
+    }
+    <Vertex> 3881 {
+      -0.440840214491 0.332037091255 2.62830042839
+      <UV>  {
+        0.738257 0.365228
+        <Tangent> { -0.635891 -0.771779 -0.000001 }
+        <Binormal> { -0.268628 0.221330 0.267226 }
+      }
+      <Normal> { 0.777612 0.523545 0.348064 }
+    }
+    <Vertex> 3882 {
+      -0.452282875776 0.324602454901 2.64465856552
+      <UV>  {
+        0.736217 0.369256
+        <Tangent> { -0.408231 -0.912879 0.000002 }
+        <Binormal> { -0.381038 0.170398 0.394705 }
+      }
+      <Normal> { 0.694449 0.586047 0.417402 }
+    }
+    <Vertex> 3883 {
+      -0.480716943741 0.25488191843 2.52862000465
+      <UV>  {
+        0.731146 0.340678
+        <Tangent> { -0.117083 -0.993122 0.000005 }
+        <Binormal> { -0.198979 0.023462 0.788838 }
+      }
+      <Normal> { 0.851436 0.484634 0.200354 }
+    }
+    <Vertex> 3884 {
+      -0.469274312258 0.262316524982 2.51226186752
+      <UV>  {
+        0.733187 0.336649
+        <Tangent> { -0.197522 -0.980298 0.000011 }
+        <Binormal> { 0.025391 -0.005111 0.457046 }
+      }
+      <Normal> { 0.623646 0.781243 -0.025910 }
+    }
+    <Vertex> 3885 {
+      -0.500524818897 0.332037061453 2.56220006943
+      <UV>  {
+        0.727614 0.348948
+        <Tangent> { -0.095986 -0.995383 0.000005 }
+        <Binormal> { -0.099520 0.009600 0.710632 }
+      }
+      <Normal> { 0.774194 0.624958 0.099979 }
+    }
+    <Vertex> 3886 {
+      -0.511967480183 0.324602454901 2.57855820656
+      <UV>  {
+        0.725573 0.352977
+        <Tangent> { -0.223131 -0.974788 -0.000003 }
+        <Binormal> { -0.231684 0.053031 0.704893 }
+      }
+      <Normal> { 0.836238 0.494156 0.237678 }
+    }
+    <Vertex> 3887 {
+      -0.452282875776 0.324602454901 2.64465856552
+      <UV>  {
+        0.736217 0.369256
+        <Tangent> { -0.408231 -0.912879 0.000002 }
+        <Binormal> { -0.381038 0.170398 0.394705 }
+      }
+      <Normal> { 0.694449 0.586047 0.417402 }
+    }
+    <Vertex> 3888 {
+      -0.440840214491 0.332037091255 2.62830042839
+      <UV>  {
+        0.738257 0.365228
+        <Tangent> { -0.635891 -0.771779 -0.000001 }
+        <Binormal> { -0.268628 0.221330 0.267226 }
+      }
+      <Normal> { 0.777612 0.523545 0.348064 }
+    }
+    <Vertex> 3889 {
+      -0.427252531052 0.553441524506 2.67915606499
+      <UV>  {
+        0.740680 0.377753
+        <Tangent> { -0.000003 -1.000000 0.000003 }
+        <Binormal> { -0.724663 0.000001 -0.403365 }
+      }
+      <Normal> { -0.403363 0.558702 0.724662 }
+    }
+    <Vertex> 3890 {
+      -0.438694566488 0.546006917953 2.69551420212
+      <UV>  {
+        0.738640 0.381781
+        <Tangent> { 0.000001 -1.000000 0.000001 }
+        <Binormal> { -0.779962 -0.000001 -0.250496 }
+      }
+      <Normal> { -0.250496 0.573473 0.779962 }
+    }
+    <Vertex> 3891 {
+      -0.565482318401 0.546006858349 2.72307682037
+      <UV>  {
+        0.716030 0.388569
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.077334 0.185827 0.979522 }
+    }
+    <Vertex> 3892 {
+      -0.438694566488 0.546006917953 2.69551420212
+      <UV>  {
+        0.738640 0.381781
+        <Tangent> { 0.000001 -1.000000 0.000001 }
+        <Binormal> { -0.779962 -0.000001 -0.250496 }
+      }
+      <Normal> { -0.250496 0.573473 0.779962 }
+    }
+    <Vertex> 3893 {
+      -0.799244344234 0.803841233253 2.67150473595
+      <UV>  {
+        0.674344 0.375868
+        <Tangent> { 1.000000 0.000647 0.000000 }
+        <Binormal> { 0.000484 -0.748588 0.000215 }
+      }
+      <Normal> { -0.663015 -0.000214 0.748589 }
+    }
+    <Vertex> 3894 {
+      -0.799244344234 0.741046607494 2.72622847557
+      <UV>  {
+        0.674344 0.389346
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.236732 -0.000061 0.971557 }
+    }
+    <Vertex> 3895 {
+      -0.799244344234 0.186503902078 2.14461088181
+      <UV>  {
+        0.674344 0.246103
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.996796 -0.000824 -0.079806 }
+    }
+    <Vertex> 3896 {
+      -0.663170814514 0.225198209286 2.3067035675
+      <UV>  {
+        0.698610 0.286024
+        <Tangent> { -0.698295 -0.715810 0.000032 }
+        <Binormal> { 0.125815 -0.122723 0.290655 }
+      }
+      <Normal> { 0.864803 0.470260 -0.175787 }
+    }
+    <Vertex> 3897 {
+      -0.59241604805 0.249926358461 2.38737201691
+      <UV>  {
+        0.711227 0.305891
+        <Tangent> { -0.823874 -0.566773 0.000026 }
+        <Binormal> { 0.074559 -0.108369 0.237339 }
+      }
+      <Normal> { 0.927458 0.349956 -0.131565 }
+    }
+    <Vertex> 3898 {
+      -0.729624330997 0.206048235297 2.28988718987
+      <UV>  {
+        0.686759 0.281882
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.927946 -0.290506 0.233375 }
+    }
+    <Vertex> 3899 {
+      -0.729624330997 0.206048235297 2.28988718987
+      <UV>  {
+        0.686759 0.281882
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.927946 -0.290506 0.233375 }
+    }
+    <Vertex> 3900 {
+      -0.59241604805 0.249926358461 2.38737201691
+      <UV>  {
+        0.711227 0.305891
+        <Tangent> { -0.823874 -0.566773 0.000026 }
+        <Binormal> { 0.074559 -0.108369 0.237339 }
+      }
+      <Normal> { 0.927458 0.349956 -0.131565 }
+    }
+    <Vertex> 3901 {
+      -0.480716943741 0.25488191843 2.52862000465
+      <UV>  {
+        0.731146 0.340678
+        <Tangent> { -0.117083 -0.993122 0.000005 }
+        <Binormal> { -0.198979 0.023462 0.788838 }
+      }
+      <Normal> { 0.851436 0.484634 0.200354 }
+    }
+    <Vertex> 3902 {
+      -0.667944192886 0.233308747411 2.45197629929
+      <UV>  {
+        0.697758 0.321802
+        <Tangent> { -0.889490 0.456955 -0.000001 }
+        <Binormal> { 0.145508 0.283240 -0.145833 }
+      }
+      <Normal> { 0.899777 -0.298288 0.318430 }
+    }
+    <Vertex> 3903 {
+      -0.603654384613 0.272368133068 2.65394926071
+      <UV>  {
+        0.709223 0.371544
+        <Tangent> { -0.839543 0.543294 0.000000 }
+        <Binormal> { 0.247415 0.382326 -0.290048 }
+      }
+      <Normal> { 0.864223 -0.213782 0.455397 }
+    }
+    <Vertex> 3904 {
+      -0.511967480183 0.324602454901 2.57855820656
+      <UV>  {
+        0.725573 0.352977
+        <Tangent> { -0.223131 -0.974788 -0.000003 }
+        <Binormal> { -0.231684 0.053031 0.704893 }
+      }
+      <Normal> { 0.836238 0.494156 0.237678 }
+    }
+    <Vertex> 3905 {
+      -0.452282875776 0.324602454901 2.64465856552
+      <UV>  {
+        0.736217 0.369256
+        <Tangent> { -0.408231 -0.912879 0.000002 }
+        <Binormal> { -0.381038 0.170398 0.394705 }
+      }
+      <Normal> { 0.694449 0.586047 0.417402 }
+    }
+    <Vertex> 3906 {
+      -0.56044614315 0.324602454901 2.71730446815
+      <UV>  {
+        0.716928 0.387148
+        <Tangent> { -0.500221 -0.865898 -0.000001 }
+        <Binormal> { -0.740057 0.427524 0.408762 }
+      }
+      <Normal> { 0.513993 0.072573 0.854671 }
+    }
+    <Vertex> 3907 {
+      -0.667944192886 0.233308747411 2.45197629929
+      <UV>  {
+        0.697758 0.321802
+        <Tangent> { -0.889490 0.456955 -0.000001 }
+        <Binormal> { 0.145508 0.283240 -0.145833 }
+      }
+      <Normal> { 0.899777 -0.298288 0.318430 }
+    }
+    <Vertex> 3908 {
+      -0.480716943741 0.25488191843 2.52862000465
+      <UV>  {
+        0.731146 0.340678
+        <Tangent> { -0.117083 -0.993122 0.000005 }
+        <Binormal> { -0.198979 0.023462 0.788838 }
+      }
+      <Normal> { 0.851436 0.484634 0.200354 }
+    }
+    <Vertex> 3909 {
+      -0.511967480183 0.324602454901 2.57855820656
+      <UV>  {
+        0.725573 0.352977
+        <Tangent> { -0.223131 -0.974788 -0.000003 }
+        <Binormal> { -0.231684 0.053031 0.704893 }
+      }
+      <Normal> { 0.836238 0.494156 0.237678 }
+    }
+    <Vertex> 3910 {
+      -0.603654384613 0.272368133068 2.65394926071
+      <UV>  {
+        0.709223 0.371544
+        <Tangent> { -0.839543 0.543294 0.000000 }
+        <Binormal> { 0.247415 0.382326 -0.290048 }
+      }
+      <Normal> { 0.864223 -0.213782 0.455397 }
+    }
+    <Vertex> 3911 {
+      -0.56044614315 0.324602454901 2.71730446815
+      <UV>  {
+        0.716928 0.387148
+        <Tangent> { -0.500221 -0.865898 -0.000001 }
+        <Binormal> { -0.740057 0.427524 0.408762 }
+      }
+      <Normal> { 0.513993 0.072573 0.854671 }
+    }
+    <Vertex> 3912 {
+      -0.452282875776 0.324602454901 2.64465856552
+      <UV>  {
+        0.736217 0.369256
+        <Tangent> { -0.408231 -0.912879 0.000002 }
+        <Binormal> { -0.381038 0.170398 0.394705 }
+      }
+      <Normal> { 0.694449 0.586047 0.417402 }
+    }
+    <Vertex> 3913 {
+      -0.438694566488 0.546006917953 2.69551420212
+      <UV>  {
+        0.738640 0.381781
+        <Tangent> { 0.000001 -1.000000 0.000001 }
+        <Binormal> { -0.779962 -0.000001 -0.250496 }
+      }
+      <Normal> { -0.250496 0.573473 0.779962 }
+    }
+    <Vertex> 3914 {
+      -0.565482318401 0.546006858349 2.72307682037
+      <UV>  {
+        0.716030 0.388569
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.077334 0.185827 0.979522 }
+    }
+    <Vertex> 3915 {
+      -0.799244344234 0.716523706913 2.72622847557
+      <UV>  {
+        0.674344 0.389346
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.006439 0.000000 0.999969 }
+    }
+    <Vertex> 3916 {
+      -0.585937321186 0.542782783508 2.72307682037
+      <UV>  {
+        0.712382 0.388569
+        <Tangent> { -0.987805 -0.155696 0.000000 }
+        <Binormal> { -0.155672 0.987654 0.000122 }
+      }
+      <Normal> { 0.016663 0.002503 0.999847 }
+    }
+    <Vertex> 3917 {
+      -0.565482318401 0.546006858349 2.72307682037
+      <UV>  {
+        0.716030 0.388569
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.077334 0.185827 0.979522 }
+    }
+    <Vertex> 3918 {
+      -0.799244344234 0.741046607494 2.72622847557
+      <UV>  {
+        0.674344 0.389346
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.236732 -0.000061 0.971557 }
+    }
+    <Vertex> 3919 {
+      -0.799244344234 0.200150445104 2.14461088181
+      <UV>  {
+        0.674344 0.246103
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.769646 0.000763 0.638417 }
+    }
+    <Vertex> 3920 {
+      -0.799244344234 0.186503902078 2.14461088181
+      <UV>  {
+        0.674344 0.246103
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.996796 -0.000824 -0.079806 }
+    }
+    <Vertex> 3921 {
+      -0.729624330997 0.206048235297 2.28988718987
+      <UV>  {
+        0.686759 0.281882
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.927946 -0.290506 0.233375 }
+    }
+    <Vertex> 3922 {
+      -0.745963692665 0.219411060214 2.28988718987
+      <UV>  {
+        0.683846 0.281882
+        <Tangent> { -0.718682 0.695339 0.000000 }
+        <Binormal> { 0.268421 0.277432 0.123630 }
+      }
+      <Normal> { 0.571001 -0.724479 0.386029 }
+    }
+    <Vertex> 3923 {
+      -0.745963692665 0.219411060214 2.28988718987
+      <UV>  {
+        0.683846 0.281882
+        <Tangent> { -0.718682 0.695339 0.000000 }
+        <Binormal> { 0.268421 0.277432 0.123630 }
+      }
+      <Normal> { 0.571001 -0.724479 0.386029 }
+    }
+    <Vertex> 3924 {
+      -0.729624330997 0.206048235297 2.28988718987
+      <UV>  {
+        0.686759 0.281882
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.927946 -0.290506 0.233375 }
+    }
+    <Vertex> 3925 {
+      -0.667944192886 0.233308747411 2.45197629929
+      <UV>  {
+        0.697758 0.321802
+        <Tangent> { -0.889490 0.456955 -0.000001 }
+        <Binormal> { 0.145508 0.283240 -0.145833 }
+      }
+      <Normal> { 0.899777 -0.298288 0.318430 }
+    }
+    <Vertex> 3926 {
+      -0.678272604942 0.246393978596 2.45197629929
+      <UV>  {
+        0.695917 0.321802
+        <Tangent> { -0.556072 0.831134 0.000000 }
+        <Binormal> { 0.304253 0.203561 -0.076833 }
+      }
+      <Normal> { 0.579547 -0.728050 0.366070 }
+    }
+    <Vertex> 3927 {
+      -0.614066839218 0.292673647404 2.65394926071
+      <UV>  {
+        0.707366 0.371544
+        <Tangent> { -0.571599 0.820533 0.000000 }
+        <Binormal> { 0.438626 0.305555 -0.061232 }
+      }
+      <Normal> { 0.532029 -0.656606 0.534562 }
+    }
+    <Vertex> 3928 {
+      -0.603654384613 0.272368133068 2.65394926071
+      <UV>  {
+        0.709223 0.371544
+        <Tangent> { -0.839543 0.543294 0.000000 }
+        <Binormal> { 0.247415 0.382326 -0.290048 }
+      }
+      <Normal> { 0.864223 -0.213782 0.455397 }
+    }
+    <Vertex> 3929 {
+      -0.56044614315 0.324602454901 2.71730446815
+      <UV>  {
+        0.716928 0.387148
+        <Tangent> { -0.500221 -0.865898 -0.000001 }
+        <Binormal> { -0.740057 0.427524 0.408762 }
+      }
+      <Normal> { 0.513993 0.072573 0.854671 }
+    }
+    <Vertex> 3930 {
+      -0.583037436008 0.333781808615 2.71730446815
+      <UV>  {
+        0.712900 0.387148
+        <Tangent> { -0.976983 0.213317 0.000000 }
+        <Binormal> { 0.194809 0.892216 0.193171 }
+      }
+      <Normal> { 0.309214 -0.265236 0.913236 }
+    }
+    <Vertex> 3931 {
+      -0.678272604942 0.246393978596 2.45197629929
+      <UV>  {
+        0.695917 0.321802
+        <Tangent> { -0.556072 0.831134 0.000000 }
+        <Binormal> { 0.304253 0.203561 -0.076833 }
+      }
+      <Normal> { 0.579547 -0.728050 0.366070 }
+    }
+    <Vertex> 3932 {
+      -0.667944192886 0.233308747411 2.45197629929
+      <UV>  {
+        0.697758 0.321802
+        <Tangent> { -0.889490 0.456955 -0.000001 }
+        <Binormal> { 0.145508 0.283240 -0.145833 }
+      }
+      <Normal> { 0.899777 -0.298288 0.318430 }
+    }
+    <Vertex> 3933 {
+      -0.603654384613 0.272368133068 2.65394926071
+      <UV>  {
+        0.709223 0.371544
+        <Tangent> { -0.839543 0.543294 0.000000 }
+        <Binormal> { 0.247415 0.382326 -0.290048 }
+      }
+      <Normal> { 0.864223 -0.213782 0.455397 }
+    }
+    <Vertex> 3934 {
+      -0.614066839218 0.292673647404 2.65394926071
+      <UV>  {
+        0.707366 0.371544
+        <Tangent> { -0.571599 0.820533 0.000000 }
+        <Binormal> { 0.438626 0.305555 -0.061232 }
+      }
+      <Normal> { 0.532029 -0.656606 0.534562 }
+    }
+    <Vertex> 3935 {
+      -0.583037436008 0.333781808615 2.71730446815
+      <UV>  {
+        0.712900 0.387148
+        <Tangent> { -0.976983 0.213317 0.000000 }
+        <Binormal> { 0.194809 0.892216 0.193171 }
+      }
+      <Normal> { 0.309214 -0.265236 0.913236 }
+    }
+    <Vertex> 3936 {
+      -0.56044614315 0.324602454901 2.71730446815
+      <UV>  {
+        0.716928 0.387148
+        <Tangent> { -0.500221 -0.865898 -0.000001 }
+        <Binormal> { -0.740057 0.427524 0.408762 }
+      }
+      <Normal> { 0.513993 0.072573 0.854671 }
+    }
+    <Vertex> 3937 {
+      -0.565482318401 0.546006858349 2.72307682037
+      <UV>  {
+        0.716030 0.388569
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+      <Normal> { -0.077334 0.185827 0.979522 }
+    }
+    <Vertex> 3938 {
+      -0.585937321186 0.542782783508 2.72307682037
+      <UV>  {
+        0.712382 0.388569
+        <Tangent> { -0.987805 -0.155696 0.000000 }
+        <Binormal> { -0.155672 0.987654 0.000122 }
+      }
+      <Normal> { 0.016663 0.002503 0.999847 }
+    }
+    <Vertex> 3939 {
+      -0.811058819294 0.193938553333 2.13745093346
+      <UV>  {
+        0.672237 0.244340
+        <Tangent> { -0.979178 0.203005 -0.000002 }
+        <Binormal> { -0.054718 -0.263929 0.048896 }
+      }
+      <Normal> { 0.931761 -0.243110 -0.269539 }
+    }
+    <Vertex> 3940 {
+      -0.786852538586 0.193938553333 2.13745093346
+      <UV>  {
+        0.676554 0.244340
+        <Tangent> { -0.971173 -0.238377 0.000003 }
+        <Binormal> { 0.063880 -0.260255 -0.012180 }
+      }
+      <Normal> { 0.932646 0.241462 -0.267983 }
+    }
+    <Vertex> 3941 {
+      -0.799244344234 0.186503902078 2.14461088181
+      <UV>  {
+        0.674344 0.246103
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.996796 -0.000824 -0.079806 }
+    }
+    <Vertex> 3942 {
+      -0.786852538586 0.193938553333 1.73719501495
+      <UV>  {
+        0.676554 0.145764
+        <Tangent> { -0.991332 -0.131378 0.000000 }
+        <Binormal> { -0.003083 0.023265 0.007220 }
+      }
+      <Normal> { 0.991974 0.124180 0.023469 }
+    }
+    <Vertex> 3943 {
+      -0.811058819294 0.193938553333 1.73719501495
+      <UV>  {
+        0.672237 0.145764
+        <Tangent> { -0.984745 0.174004 -0.000000 }
+        <Binormal> { 0.004078 0.023081 -0.050322 }
+      }
+      <Normal> { 0.991974 -0.124180 0.023438 }
+    }
+    <Vertex> 3944 {
+      -0.805163741112 0.19499745965 1.52329516411
+      <UV>  {
+        0.673288 0.093084
+        <Tangent> { -0.999933 0.000325 0.011564 }
+        <Binormal> { 0.001173 0.048880 0.100076 }
+      }
+      <Normal> { 0.994232 -0.100406 0.037385 }
+    }
+    <Vertex> 3945 {
+      -0.792723953724 0.194997489452 1.52329516411
+      <UV>  {
+        0.675507 0.093084
+        <Tangent> { -0.999732 -0.000655 -0.023123 }
+        <Binormal> { 0.002297 0.014386 -0.099728 }
+      }
+      <Normal> { 0.994232 0.100406 0.037385 }
+    }
+    <Vertex> 3946 {
+      -0.786852538586 0.193938553333 1.73719501495
+      <UV>  {
+        0.676554 0.145764
+        <Tangent> { -0.991332 -0.131378 0.000000 }
+        <Binormal> { -0.003083 0.023265 0.007220 }
+      }
+      <Normal> { 0.991974 0.124180 0.023469 }
+    }
+    <Vertex> 3947 {
+      -0.792723953724 0.194997489452 1.52329516411
+      <UV>  {
+        0.675507 0.093084
+        <Tangent> { -0.999732 -0.000655 -0.023123 }
+        <Binormal> { 0.002297 0.014386 -0.099728 }
+      }
+      <Normal> { 0.994232 0.100406 0.037385 }
+    }
+    <Vertex> 3948 {
+      -0.591554045677 0.212417289615 1.5213162899
+      <UV>  {
+        0.711381 0.092597
+        <Tangent> { 0.000013 -0.884922 0.465740 }
+        <Binormal> { -0.315546 0.417909 0.794050 }
+      }
+      <Normal> { 0.897305 0.420057 0.135502 }
+    }
+    <Vertex> 3949 {
+      -0.62573993206 0.242823407054 1.73511087894
+      <UV>  {
+        0.705285 0.145251
+        <Tangent> { -0.787725 -0.616028 0.000000 }
+        <Binormal> { -0.041079 0.052528 0.146057 }
+      }
+      <Normal> { 0.867458 0.492965 0.066683 }
+    }
+    <Vertex> 3950 {
+      -0.62573993206 0.242823407054 1.73511087894
+      <UV>  {
+        0.705285 0.145251
+        <Tangent> { -0.787725 -0.616028 0.000000 }
+        <Binormal> { -0.041079 0.052528 0.146057 }
+      }
+      <Normal> { 0.867458 0.492965 0.066683 }
+    }
+    <Vertex> 3951 {
+      -0.591554045677 0.212417289615 1.5213162899
+      <UV>  {
+        0.711381 0.092597
+        <Tangent> { 0.000013 -0.884922 0.465740 }
+        <Binormal> { -0.315546 0.417909 0.794050 }
+      }
+      <Normal> { 0.897305 0.420057 0.135502 }
+    }
+    <Vertex> 3952 {
+      -0.467810660601 0.368170946836 1.5213162899
+      <UV>  {
+        0.733448 0.092597
+        <Tangent> { -0.000002 -0.974258 0.225438 }
+        <Binormal> { -0.378545 0.123057 0.531800 }
+      }
+      <Normal> { 0.545854 0.813562 0.200293 }
+    }
+    <Vertex> 3953 {
+      -0.480880141258 0.396429210901 1.73511087894
+      <UV>  {
+        0.731117 0.145251
+        <Tangent> { -0.368802 -0.929508 0.000000 }
+        <Binormal> { -0.089328 0.035443 0.170311 }
+      }
+      <Normal> { 0.519974 0.848720 0.096103 }
+    }
+    <Vertex> 3954 {
+      -0.480880141258 0.396429210901 1.73511087894
+      <UV>  {
+        0.731117 0.145251
+        <Tangent> { -0.368802 -0.929508 0.000000 }
+        <Binormal> { -0.089328 0.035443 0.170311 }
+      }
+      <Normal> { 0.519974 0.848720 0.096103 }
+    }
+    <Vertex> 3955 {
+      -0.467810660601 0.368170946836 1.5213162899
+      <UV>  {
+        0.733448 0.092597
+        <Tangent> { -0.000002 -0.974258 0.225438 }
+        <Binormal> { -0.378545 0.123057 0.531800 }
+      }
+      <Normal> { 0.545854 0.813562 0.200293 }
+    }
+    <Vertex> 3956 {
+      -0.369988232851 0.587606191635 1.5213162899
+      <UV>  {
+        0.750892 0.092597
+        <Tangent> { 0.000000 0.610441 -0.792062 }
+        <Binormal> { 0.886102 0.015495 0.011942 }
+      }
+      <Normal> { -0.019562 0.984497 0.174169 }
+    }
+    <Vertex> 3957 {
+      -0.39895299077 0.642686188221 1.73511087894
+      <UV>  {
+        0.745727 0.145251
+        <Tangent> { 0.118620 -0.992940 0.000000 }
+        <Binormal> { -0.119849 -0.014317 0.093260 }
+      }
+      <Normal> { -0.024628 0.992370 0.120701 }
+    }
+    <Vertex> 3958 {
+      -0.39895299077 0.642686188221 1.73511087894
+      <UV>  {
+        0.745727 0.145251
+        <Tangent> { 0.118620 -0.992940 0.000000 }
+        <Binormal> { -0.119849 -0.014317 0.093260 }
+      }
+      <Normal> { -0.024628 0.992370 0.120701 }
+    }
+    <Vertex> 3959 {
+      -0.369988232851 0.587606191635 1.5213162899
+      <UV>  {
+        0.750892 0.092597
+        <Tangent> { 0.000000 0.610441 -0.792062 }
+        <Binormal> { 0.886102 0.015495 0.011942 }
+      }
+      <Normal> { -0.019562 0.984497 0.174169 }
+    }
+    <Vertex> 3960 {
+      -0.452564358711 0.876408278942 1.42609405518
+      <UV>  {
+        0.736166 0.069145
+        <Tangent> { -0.000003 0.241418 -0.970421 }
+        <Binormal> { 0.621752 0.755855 0.188038 }
+      }
+      <Normal> { -0.778893 0.623127 0.070650 }
+    }
+    <Vertex> 3961 {
+      -0.481538444757 0.869484186172 1.73511087894
+      <UV>  {
+        0.731000 0.145251
+        <Tangent> { 0.695509 -0.718517 0.000000 }
+        <Binormal> { -0.082669 -0.080022 -0.114451 }
+      }
+      <Normal> { -0.768517 0.629383 0.115055 }
+    }
+    <Vertex> 3962 {
+      -0.481538444757 0.869484186172 1.73511087894
+      <UV>  {
+        0.731000 0.145251
+        <Tangent> { 0.695509 -0.718517 0.000000 }
+        <Binormal> { -0.082669 -0.080022 -0.114451 }
+      }
+      <Normal> { -0.768517 0.629383 0.115055 }
+    }
+    <Vertex> 3963 {
+      -0.452564358711 0.876408278942 1.42609405518
+      <UV>  {
+        0.736166 0.069145
+        <Tangent> { -0.000003 0.241418 -0.970421 }
+        <Binormal> { 0.621752 0.755855 0.188038 }
+      }
+      <Normal> { -0.778893 0.623127 0.070650 }
+    }
+    <Vertex> 3964 {
+      -0.672129571438 0.903709948063 1.42609405518
+      <UV>  {
+        0.697012 0.069145
+        <Tangent> { -0.001741 0.266377 0.963867 }
+        <Binormal> { -0.082285 -0.960275 0.265236 }
+      }
+      <Normal> { -0.996277 0.085910 0.001953 }
+    }
+    <Vertex> 3965 {
+      -0.697417140007 0.893809199333 1.73511087894
+      <UV>  {
+        0.692503 0.145251
+        <Tangent> { 0.999108 -0.039971 0.013646 }
+        <Binormal> { -0.003399 -0.069465 0.045399 }
+      }
+      <Normal> { -0.994781 0.085238 0.055940 }
+    }
+    <Vertex> 3966 {
+      -0.697417140007 0.893809199333 1.73511087894
+      <UV>  {
+        0.692503 0.145251
+        <Tangent> { 0.999108 -0.039971 0.013646 }
+        <Binormal> { -0.003399 -0.069465 0.045399 }
+      }
+      <Normal> { -0.994781 0.085238 0.055940 }
+    }
+    <Vertex> 3967 {
+      -0.672129571438 0.903709948063 1.42609405518
+      <UV>  {
+        0.697012 0.069145
+        <Tangent> { -0.001741 0.266377 0.963867 }
+        <Binormal> { -0.082285 -0.960275 0.265236 }
+      }
+      <Normal> { -0.996277 0.085910 0.001953 }
+    }
+    <Vertex> 3968 {
+      -0.795793235302 0.903709948063 1.46868264675
+      <UV>  {
+        0.674475 0.082089
+        <Tangent> { 0.981749 -0.000259 0.190179 }
+        <Binormal> { -0.000045 -0.208451 -0.000049 }
+      }
+      <Normal> { -0.999817 0.000214 0.018647 }
+    }
+    <Vertex> 3969 {
+      -0.79939943552 0.893809199333 1.73511087894
+      <UV>  {
+        0.674316 0.145251
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.031953 0.000031 }
+      }
+      <Normal> { -0.999481 0.000031 0.031953 }
+    }
+    <Vertex> 3970 {
+      -0.591554045677 0.212417289615 1.5213162899
+      <UV>  {
+        0.711381 0.092597
+        <Tangent> { 0.000013 -0.884922 0.465740 }
+        <Binormal> { -0.315546 0.417909 0.794050 }
+      }
+      <Normal> { 0.897305 0.420057 0.135502 }
+    }
+    <Vertex> 3971 {
+      -0.792723953724 0.194997489452 1.52329516411
+      <UV>  {
+        0.675507 0.093084
+        <Tangent> { -0.999732 -0.000655 -0.023123 }
+        <Binormal> { 0.002297 0.014386 -0.099728 }
+      }
+      <Normal> { 0.994232 0.100406 0.037385 }
+    }
+    <Vertex> 3972 {
+      -0.767564117908 0.177602604032 1.16401350498
+      <UV>  {
+        0.679994 0.158461
+        <Tangent> { 0.993061 0.087092 0.079022 }
+        <Binormal> { -0.007743 0.050109 0.042085 }
+      }
+      <Normal> { 0.991180 0.129307 0.028413 }
+    }
+    <Vertex> 3973 {
+      -0.551048219204 0.210964515805 1.17381608486
+      <UV>  {
+        0.718604 0.160875
+        <Tangent> { -0.000001 0.971949 0.235191 }
+        <Binormal> { 0.003293 0.224037 -0.925854 }
+      }
+      <Normal> { 0.952574 0.294870 0.074740 }
+    }
+    <Vertex> 3974 {
+      -0.467810660601 0.368170946836 1.5213162899
+      <UV>  {
+        0.733448 0.092597
+        <Tangent> { -0.000002 -0.974258 0.225438 }
+        <Binormal> { -0.378545 0.123057 0.531800 }
+      }
+      <Normal> { 0.545854 0.813562 0.200293 }
+    }
+    <Vertex> 3975 {
+      -0.591554045677 0.212417289615 1.5213162899
+      <UV>  {
+        0.711381 0.092597
+        <Tangent> { 0.000013 -0.884922 0.465740 }
+        <Binormal> { -0.315546 0.417909 0.794050 }
+      }
+      <Normal> { 0.897305 0.420057 0.135502 }
+    }
+    <Vertex> 3976 {
+      -0.551048219204 0.210964515805 1.17381608486
+      <UV>  {
+        0.718604 0.160875
+        <Tangent> { -0.000001 0.971949 0.235191 }
+        <Binormal> { 0.003293 0.224037 -0.925854 }
+      }
+      <Normal> { 0.952574 0.294870 0.074740 }
+    }
+    <Vertex> 3977 {
+      -0.406718462706 0.244999691844 1.18573212624
+      <UV>  {
+        0.744342 0.163810
+        <Tangent> { 0.000005 0.995066 0.099210 }
+        <Binormal> { 0.096519 0.063382 -0.635719 }
+      }
+      <Normal> { 0.638874 0.749840 0.171758 }
+    }
+    <Vertex> 3978 {
+      -0.369988232851 0.587606191635 1.5213162899
+      <UV>  {
+        0.750892 0.092597
+        <Tangent> { 0.000000 0.610441 -0.792062 }
+        <Binormal> { 0.886102 0.015495 0.011942 }
+      }
+      <Normal> { -0.019562 0.984497 0.174169 }
+    }
+    <Vertex> 3979 {
+      -0.467810660601 0.368170946836 1.5213162899
+      <UV>  {
+        0.733448 0.092597
+        <Tangent> { -0.000002 -0.974258 0.225438 }
+        <Binormal> { -0.378545 0.123057 0.531800 }
+      }
+      <Normal> { 0.545854 0.813562 0.200293 }
+    }
+    <Vertex> 3980 {
+      -0.406718462706 0.244999691844 1.18573212624
+      <UV>  {
+        0.744342 0.163810
+        <Tangent> { 0.000005 0.995066 0.099210 }
+        <Binormal> { 0.096519 0.063382 -0.635719 }
+      }
+      <Normal> { 0.638874 0.749840 0.171758 }
+    }
+    <Vertex> 3981 {
+      -0.29316085577 0.656073093414 1.18573212624
+      <UV>  {
+        0.764592 0.163810
+        <Tangent> { -0.406959 0.547875 -0.730902 }
+        <Binormal> { 0.824753 0.164894 -0.335612 }
+      }
+      <Normal> { -0.109256 0.971770 0.208960 }
+    }
+    <Vertex> 3982 {
+      -0.452564358711 0.876408278942 1.42609405518
+      <UV>  {
+        0.736166 0.069145
+        <Tangent> { -0.000003 0.241418 -0.970421 }
+        <Binormal> { 0.621752 0.755855 0.188038 }
+      }
+      <Normal> { -0.778893 0.623127 0.070650 }
+    }
+    <Vertex> 3983 {
+      -0.369988232851 0.587606191635 1.5213162899
+      <UV>  {
+        0.750892 0.092597
+        <Tangent> { 0.000000 0.610441 -0.792062 }
+        <Binormal> { 0.886102 0.015495 0.011942 }
+      }
+      <Normal> { -0.019562 0.984497 0.174169 }
+    }
+    <Vertex> 3984 {
+      -0.29316085577 0.656073093414 1.18573212624
+      <UV>  {
+        0.764592 0.163810
+        <Tangent> { -0.406959 0.547875 -0.730902 }
+        <Binormal> { 0.824753 0.164894 -0.335612 }
+      }
+      <Normal> { -0.109256 0.971770 0.208960 }
+    }
+    <Vertex> 3985 {
+      -0.409344285727 0.828676402569 1.18573212624
+      <UV>  {
+        0.743874 0.163810
+        <Tangent> { 0.000004 -1.000000 0.000000 }
+        <Binormal> { -0.100925 -0.000000 -0.793052 }
+      }
+      <Normal> { -0.793054 0.600696 0.100925 }
+    }
+    <Vertex> 3986 {
+      -0.672129571438 0.903709948063 1.42609405518
+      <UV>  {
+        0.697012 0.069145
+        <Tangent> { -0.001741 0.266377 0.963867 }
+        <Binormal> { -0.082285 -0.960275 0.265236 }
+      }
+      <Normal> { -0.996277 0.085910 0.001953 }
+    }
+    <Vertex> 3987 {
+      -0.452564358711 0.876408278942 1.42609405518
+      <UV>  {
+        0.736166 0.069145
+        <Tangent> { -0.000003 0.241418 -0.970421 }
+        <Binormal> { 0.621752 0.755855 0.188038 }
+      }
+      <Normal> { -0.778893 0.623127 0.070650 }
+    }
+    <Vertex> 3988 {
+      -0.409344285727 0.828676402569 1.18573212624
+      <UV>  {
+        0.743874 0.163810
+        <Tangent> { 0.000004 -1.000000 0.000000 }
+        <Binormal> { -0.100925 -0.000000 -0.793052 }
+      }
+      <Normal> { -0.793054 0.600696 0.100925 }
+    }
+    <Vertex> 3989 {
+      -0.652492344379 0.904367208481 1.18573212624
+      <UV>  {
+        0.700514 0.163810
+        <Tangent> { -0.934690 -0.355343 0.009253 }
+        <Binormal> { -0.007057 0.006720 -0.454781 }
+      }
+      <Normal> { -0.993896 0.108707 0.017029 }
+    }
+    <Vertex> 3990 {
+      -0.795793235302 0.903709948063 1.46868264675
+      <UV>  {
+        0.674475 0.082089
+        <Tangent> { 0.981749 -0.000259 0.190179 }
+        <Binormal> { -0.000045 -0.208451 -0.000049 }
+      }
+      <Normal> { -0.999817 0.000214 0.018647 }
+    }
+    <Vertex> 3991 {
+      -0.672129571438 0.903709948063 1.42609405518
+      <UV>  {
+        0.697012 0.069145
+        <Tangent> { -0.001741 0.266377 0.963867 }
+        <Binormal> { -0.082285 -0.960275 0.265236 }
+      }
+      <Normal> { -0.996277 0.085910 0.001953 }
+    }
+    <Vertex> 3992 {
+      -0.652492344379 0.904367208481 1.18573212624
+      <UV>  {
+        0.700514 0.163810
+        <Tangent> { -0.934690 -0.355343 0.009253 }
+        <Binormal> { -0.007057 0.006720 -0.454781 }
+      }
+      <Normal> { -0.993896 0.108707 0.017029 }
+    }
+    <Vertex> 3993 {
+      -0.62573993206 0.242823407054 1.73511087894
+      <UV>  {
+        0.705285 0.145251
+        <Tangent> { -0.787725 -0.616028 0.000000 }
+        <Binormal> { -0.041079 0.052528 0.146057 }
+      }
+      <Normal> { 0.867458 0.492965 0.066683 }
+    }
+    <Vertex> 3994 {
+      -0.480880141258 0.396429210901 1.73511087894
+      <UV>  {
+        0.731117 0.145251
+        <Tangent> { -0.368802 -0.929508 0.000000 }
+        <Binormal> { -0.089328 0.035443 0.170311 }
+      }
+      <Normal> { 0.519974 0.848720 0.096103 }
+    }
+    <Vertex> 3995 {
+      -0.488881021738 0.35787281394 1.98095083237
+      <UV>  {
+        0.729690 0.205797
+        <Tangent> { -0.327953 -0.944694 -0.000000 }
+        <Binormal> { 0.007150 -0.002482 0.237083 }
+      }
+      <Normal> { 0.542558 0.839961 -0.007569 }
+    }
+    <Vertex> 3996 {
+      -0.652529776096 0.242823407054 1.98095083237
+      <UV>  {
+        0.700507 0.205797
+        <Tangent> { -0.898934 -0.438085 -0.000000 }
+        <Binormal> { 0.002995 -0.006145 -0.037103 }
+      }
+      <Normal> { 0.882015 0.471114 -0.006836 }
+    }
+    <Vertex> 3997 {
+      -0.480880141258 0.396429210901 1.73511087894
+      <UV>  {
+        0.731117 0.145251
+        <Tangent> { -0.368802 -0.929508 0.000000 }
+        <Binormal> { -0.089328 0.035443 0.170311 }
+      }
+      <Normal> { 0.519974 0.848720 0.096103 }
+    }
+    <Vertex> 3998 {
+      -0.39895299077 0.642686188221 1.73511087894
+      <UV>  {
+        0.745727 0.145251
+        <Tangent> { 0.118620 -0.992940 0.000000 }
+        <Binormal> { -0.119849 -0.014317 0.093260 }
+      }
+      <Normal> { -0.024628 0.992370 0.120701 }
+    }
+    <Vertex> 3999 {
+      -0.428876250982 0.642686188221 1.98095083237
+      <UV>  {
+        0.740391 0.205797
+        <Tangent> { -0.000001 -1.000000 -0.000000 }
+        <Binormal> { -0.058870 0.000000 -0.112004 }
+      }
+      <Normal> { -0.112003 0.991943 0.058870 }
+    }
+    <Vertex> 4000 {
+      -0.488881021738 0.35787281394 1.98095083237
+      <UV>  {
+        0.729690 0.205797
+        <Tangent> { -0.327953 -0.944694 -0.000000 }
+        <Binormal> { 0.007150 -0.002482 0.237083 }
+      }
+      <Normal> { 0.542558 0.839961 -0.007569 }
+    }
+    <Vertex> 4001 {
+      -0.39895299077 0.642686188221 1.73511087894
+      <UV>  {
+        0.745727 0.145251
+        <Tangent> { 0.118620 -0.992940 0.000000 }
+        <Binormal> { -0.119849 -0.014317 0.093260 }
+      }
+      <Normal> { -0.024628 0.992370 0.120701 }
+    }
+    <Vertex> 4002 {
+      -0.481538444757 0.869484186172 1.73511087894
+      <UV>  {
+        0.731000 0.145251
+        <Tangent> { 0.695509 -0.718517 0.000000 }
+        <Binormal> { -0.082669 -0.080022 -0.114451 }
+      }
+      <Normal> { -0.768517 0.629383 0.115055 }
+    }
+    <Vertex> 4003 {
+      -0.521561563015 0.823948144913 1.98095083237
+      <UV>  {
+        0.723862 0.205797
+        <Tangent> { 0.613514 -0.789684 0.000000 }
+        <Binormal> { -0.095315 -0.074052 -0.210002 }
+      }
+      <Normal> { -0.761071 0.637318 0.120701 }
+    }
+    <Vertex> 4004 {
+      -0.428876250982 0.642686188221 1.98095083237
+      <UV>  {
+        0.740391 0.205797
+        <Tangent> { -0.000001 -1.000000 -0.000000 }
+        <Binormal> { -0.058870 0.000000 -0.112004 }
+      }
+      <Normal> { -0.112003 0.991943 0.058870 }
+    }
+    <Vertex> 4005 {
+      -0.481538444757 0.869484186172 1.73511087894
+      <UV>  {
+        0.731000 0.145251
+        <Tangent> { 0.695509 -0.718517 0.000000 }
+        <Binormal> { -0.082669 -0.080022 -0.114451 }
+      }
+      <Normal> { -0.768517 0.629383 0.115055 }
+    }
+    <Vertex> 4006 {
+      -0.697417140007 0.893809199333 1.73511087894
+      <UV>  {
+        0.692503 0.145251
+        <Tangent> { 0.999108 -0.039971 0.013646 }
+        <Binormal> { -0.003399 -0.069465 0.045399 }
+      }
+      <Normal> { -0.994781 0.085238 0.055940 }
+    }
+    <Vertex> 4007 {
+      -0.697417140007 0.886614263058 1.98095083237
+      <UV>  {
+        0.692503 0.205797
+        <Tangent> { 0.989723 -0.142999 0.000000 }
+        <Binormal> { -0.013459 -0.093152 0.001271 }
+      }
+      <Normal> { -0.985137 0.143620 0.094119 }
+    }
+    <Vertex> 4008 {
+      -0.521561563015 0.823948144913 1.98095083237
+      <UV>  {
+        0.723862 0.205797
+        <Tangent> { 0.613514 -0.789684 0.000000 }
+        <Binormal> { -0.095315 -0.074052 -0.210002 }
+      }
+      <Normal> { -0.761071 0.637318 0.120701 }
+    }
+    <Vertex> 4009 {
+      -0.697417140007 0.893809199333 1.73511087894
+      <UV>  {
+        0.692503 0.145251
+        <Tangent> { 0.999108 -0.039971 0.013646 }
+        <Binormal> { -0.003399 -0.069465 0.045399 }
+      }
+      <Normal> { -0.994781 0.085238 0.055940 }
+    }
+    <Vertex> 4010 {
+      -0.79939943552 0.893809199333 1.73511087894
+      <UV>  {
+        0.674316 0.145251
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.031953 0.000031 }
+      }
+      <Normal> { -0.999481 0.000031 0.031953 }
+    }
+    <Vertex> 4011 {
+      -0.79939943552 0.886614203453 1.98095083237
+      <UV>  {
+        0.674316 0.205797
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.071474 -0.000030 }
+      }
+      <Normal> { -0.997436 -0.000031 0.071474 }
+    }
+    <Vertex> 4012 {
+      -0.697417140007 0.886614263058 1.98095083237
+      <UV>  {
+        0.692503 0.205797
+        <Tangent> { 0.989723 -0.142999 0.000000 }
+        <Binormal> { -0.013459 -0.093152 0.001271 }
+      }
+      <Normal> { -0.985137 0.143620 0.094119 }
+    }
+    <Vertex> 4013 {
+      -0.652529776096 0.242823407054 1.98095083237
+      <UV>  {
+        0.700507 0.205797
+        <Tangent> { -0.898934 -0.438085 -0.000000 }
+        <Binormal> { 0.002995 -0.006145 -0.037103 }
+      }
+      <Normal> { 0.882015 0.471114 -0.006836 }
+    }
+    <Vertex> 4014 {
+      -0.488881021738 0.35787281394 1.98095083237
+      <UV>  {
+        0.729690 0.205797
+        <Tangent> { -0.327953 -0.944694 -0.000000 }
+        <Binormal> { 0.007150 -0.002482 0.237083 }
+      }
+      <Normal> { 0.542558 0.839961 -0.007569 }
+    }
+    <Vertex> 4015 {
+      -0.467238277197 0.353033930063 2.40944695473
+      <UV>  {
+        0.733550 0.311328
+        <Tangent> { -0.190173 0.981751 -0.000001 }
+        <Binormal> { -0.333891 -0.064678 -0.855173 }
+      }
+      <Normal> { 0.765191 0.546587 -0.340098 }
+    }
+    <Vertex> 4016 {
+      -0.652129292488 0.239068865776 2.29864048958
+      <UV>  {
+        0.700579 0.284038
+        <Tangent> { -0.815922 -0.578161 0.000006 }
+        <Binormal> { 0.116892 -0.164962 0.030763 }
+      }
+      <Normal> { 0.816431 0.540819 -0.202185 }
+    }
+    <Vertex> 4017 {
+      -0.488881021738 0.35787281394 1.98095083237
+      <UV>  {
+        0.729690 0.205797
+        <Tangent> { -0.327953 -0.944694 -0.000000 }
+        <Binormal> { 0.007150 -0.002482 0.237083 }
+      }
+      <Normal> { 0.542558 0.839961 -0.007569 }
+    }
+    <Vertex> 4018 {
+      -0.428876250982 0.642686188221 1.98095083237
+      <UV>  {
+        0.740391 0.205797
+        <Tangent> { -0.000001 -1.000000 -0.000000 }
+        <Binormal> { -0.058870 0.000000 -0.112004 }
+      }
+      <Normal> { -0.112003 0.991943 0.058870 }
+    }
+    <Vertex> 4019 {
+      -0.42216899991 0.60936820507 2.35096120834
+      <UV>  {
+        0.741587 0.296924
+        <Tangent> { 0.981501 0.191457 -0.000005 }
+        <Binormal> { -0.117757 0.603695 0.648954 }
+      }
+      <Normal> { -0.563707 0.551225 -0.615070 }
+    }
+    <Vertex> 4020 {
+      -0.467238277197 0.353033930063 2.40944695473
+      <UV>  {
+        0.733550 0.311328
+        <Tangent> { -0.190173 0.981751 -0.000001 }
+        <Binormal> { -0.333891 -0.064678 -0.855173 }
+      }
+      <Normal> { 0.765191 0.546587 -0.340098 }
+    }
+    <Vertex> 4021 {
+      -0.428876250982 0.642686188221 1.98095083237
+      <UV>  {
+        0.740391 0.205797
+        <Tangent> { -0.000001 -1.000000 -0.000000 }
+        <Binormal> { -0.058870 0.000000 -0.112004 }
+      }
+      <Normal> { -0.112003 0.991943 0.058870 }
+    }
+    <Vertex> 4022 {
+      -0.521561563015 0.823948144913 1.98095083237
+      <UV>  {
+        0.723862 0.205797
+        <Tangent> { 0.613514 -0.789684 0.000000 }
+        <Binormal> { -0.095315 -0.074052 -0.210002 }
+      }
+      <Normal> { -0.761071 0.637318 0.120701 }
+    }
+    <Vertex> 4023 {
+      -0.526946544647 0.78954154253 2.29773759842
+      <UV>  {
+        0.722902 0.283816
+        <Tangent> { 0.684977 -0.728565 0.000000 }
+        <Binormal> { -0.059900 -0.056317 -0.201736 }
+      }
+      <Normal> { -0.815485 0.572863 0.082217 }
+    }
+    <Vertex> 4024 {
+      -0.42216899991 0.60936820507 2.35096120834
+      <UV>  {
+        0.741587 0.296924
+        <Tangent> { 0.981501 0.191457 -0.000005 }
+        <Binormal> { -0.117757 0.603695 0.648954 }
+      }
+      <Normal> { -0.563707 0.551225 -0.615070 }
+    }
+    <Vertex> 4025 {
+      -0.521561563015 0.823948144913 1.98095083237
+      <UV>  {
+        0.723862 0.205797
+        <Tangent> { 0.613514 -0.789684 0.000000 }
+        <Binormal> { -0.095315 -0.074052 -0.210002 }
+      }
+      <Normal> { -0.761071 0.637318 0.120701 }
+    }
+    <Vertex> 4026 {
+      -0.697417140007 0.886614263058 1.98095083237
+      <UV>  {
+        0.692503 0.205797
+        <Tangent> { 0.989723 -0.142999 0.000000 }
+        <Binormal> { -0.013459 -0.093152 0.001271 }
+      }
+      <Normal> { -0.985137 0.143620 0.094119 }
+    }
+    <Vertex> 4027 {
+      -0.693125188351 0.848143160343 2.29773759842
+      <UV>  {
+        0.693268 0.283816
+        <Tangent> { 0.963172 -0.268888 0.000000 }
+        <Binormal> { -0.046537 -0.166697 0.003602 }
+      }
+      <Normal> { -0.947630 0.268288 0.173070 }
+    }
+    <Vertex> 4028 {
+      -0.526946544647 0.78954154253 2.29773759842
+      <UV>  {
+        0.722902 0.283816
+        <Tangent> { 0.684977 -0.728565 0.000000 }
+        <Binormal> { -0.059900 -0.056317 -0.201736 }
+      }
+      <Normal> { -0.815485 0.572863 0.082217 }
+    }
+    <Vertex> 4029 {
+      -0.697417140007 0.886614263058 1.98095083237
+      <UV>  {
+        0.692503 0.205797
+        <Tangent> { 0.989723 -0.142999 0.000000 }
+        <Binormal> { -0.013459 -0.093152 0.001271 }
+      }
+      <Normal> { -0.985137 0.143620 0.094119 }
+    }
+    <Vertex> 4030 {
+      -0.79939943552 0.886614203453 1.98095083237
+      <UV>  {
+        0.674316 0.205797
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.071474 -0.000030 }
+      }
+      <Normal> { -0.997436 -0.000031 0.071474 }
+    }
+    <Vertex> 4031 {
+      -0.79939943552 0.852555811405 2.29773759842
+      <UV>  {
+        0.674316 0.283816
+        <Tangent> { 1.000000 0.000117 0.000000 }
+        <Binormal> { 0.000017 -0.144353 -0.000312 }
+      }
+      <Normal> { -0.989502 -0.000427 0.144353 }
+    }
+    <Vertex> 4032 {
+      -0.693125188351 0.848143160343 2.29773759842
+      <UV>  {
+        0.693268 0.283816
+        <Tangent> { 0.963172 -0.268888 0.000000 }
+        <Binormal> { -0.046537 -0.166697 0.003602 }
+      }
+      <Normal> { -0.947630 0.268288 0.173070 }
+    }
+    <Vertex> 4033 {
+      -0.471652269363 0.650411307812 2.6022465229
+      <UV>  {
+        0.732763 0.358811
+        <Tangent> { 0.921356 -0.388720 0.000001 }
+        <Binormal> { -0.194307 -0.460552 -0.040459 }
+      }
+      <Normal> { -0.812830 0.299020 0.499863 }
+    }
+    <Vertex> 4034 {
+      -0.635448634624 0.747381091118 2.56392455101
+      <UV>  {
+        0.703553 0.349373
+        <Tangent> { 0.897693 -0.440621 0.000001 }
+        <Binormal> { -0.127855 -0.260484 -0.016027 }
+      }
+      <Normal> { -0.865993 0.407208 0.290170 }
+    }
+    <Vertex> 4035 {
+      -0.799244344234 0.811275839806 2.65514659882
+      <UV>  {
+        0.674344 0.371839
+        <Tangent> { 1.000000 0.000551 0.000000 }
+        <Binormal> { 0.000248 -0.450636 0.000034 }
+      }
+      <Normal> { -0.892697 -0.000458 0.450636 }
+    }
+    <Vertex> 4036 {
+      -0.427252531052 0.553441524506 2.67915606499
+      <UV>  {
+        0.740680 0.377753
+        <Tangent> { -0.000003 -1.000000 0.000003 }
+        <Binormal> { -0.724663 0.000001 -0.403365 }
+      }
+      <Normal> { -0.403363 0.558702 0.724662 }
+    }
+    <Vertex> 4037 {
+      -0.307855904102 0.553441524506 2.6405684948
+      <UV>  {
+        0.761972 0.368249
+        <Tangent> { -0.086004 -0.996295 0.000000 }
+        <Binormal> { -0.666244 0.057513 -0.428747 }
+      }
+      <Normal> { -0.374920 0.642018 0.668722 }
+    }
+    <Vertex> 4038 {
+      -0.471652269363 0.650411307812 2.6022465229
+      <UV>  {
+        0.732763 0.358811
+        <Tangent> { 0.921356 -0.388720 0.000001 }
+        <Binormal> { -0.194307 -0.460552 -0.040459 }
+      }
+      <Normal> { -0.812830 0.299020 0.499863 }
+    }
+    <Vertex> 4039 {
+      -0.427252531052 0.553441524506 2.67915606499
+      <UV>  {
+        0.740680 0.377753
+        <Tangent> { -0.000003 -1.000000 0.000003 }
+        <Binormal> { -0.724663 0.000001 -0.403365 }
+      }
+      <Normal> { -0.403363 0.558702 0.724662 }
+    }
+    <Vertex> 4040 {
+      -0.635448634624 0.747381091118 2.56392455101
+      <UV>  {
+        0.703553 0.349373
+        <Tangent> { 0.897693 -0.440621 0.000001 }
+        <Binormal> { -0.127855 -0.260484 -0.016027 }
+      }
+      <Normal> { -0.865993 0.407208 0.290170 }
+    }
+    <Vertex> 4041 {
+      -0.799244344234 0.844350874424 2.52560257912
+      <UV>  {
+        0.674344 0.339935
+        <Tangent> { 1.000000 0.000703 -0.000000 }
+        <Binormal> { 0.000148 -0.211096 -0.000076 }
+      }
+      <Normal> { -0.977447 -0.000763 0.211097 }
+    }
+    <Vertex> 4042 {
+      -0.799244344234 0.811275839806 2.65514659882
+      <UV>  {
+        0.674344 0.371839
+        <Tangent> { 1.000000 0.000551 0.000000 }
+        <Binormal> { 0.000248 -0.450636 0.000034 }
+      }
+      <Normal> { -0.892697 -0.000458 0.450636 }
+    }
+    <Vertex> 4043 {
+      -0.693125188351 0.848143160343 2.29773759842
+      <UV>  {
+        0.693268 0.283816
+        <Tangent> { 0.963172 -0.268888 0.000000 }
+        <Binormal> { -0.046537 -0.166697 0.003602 }
+      }
+      <Normal> { -0.947630 0.268288 0.173070 }
+    }
+    <Vertex> 4044 {
+      -0.79939943552 0.852555811405 2.29773759842
+      <UV>  {
+        0.674316 0.283816
+        <Tangent> { 1.000000 0.000117 0.000000 }
+        <Binormal> { 0.000017 -0.144353 -0.000312 }
+      }
+      <Normal> { -0.989502 -0.000427 0.144353 }
+    }
+    <Vertex> 4045 {
+      -0.799244344234 0.844350874424 2.52560257912
+      <UV>  {
+        0.674344 0.339935
+        <Tangent> { 1.000000 0.000703 -0.000000 }
+        <Binormal> { 0.000148 -0.211096 -0.000076 }
+      }
+      <Normal> { -0.977447 -0.000763 0.211097 }
+    }
+    <Vertex> 4046 {
+      -0.635448634624 0.747381091118 2.56392455101
+      <UV>  {
+        0.703553 0.349373
+        <Tangent> { 0.897693 -0.440621 0.000001 }
+        <Binormal> { -0.127855 -0.260484 -0.016027 }
+      }
+      <Normal> { -0.865993 0.407208 0.290170 }
+    }
+    <Vertex> 4047 {
+      -0.526946544647 0.78954154253 2.29773759842
+      <UV>  {
+        0.722902 0.283816
+        <Tangent> { 0.684977 -0.728565 0.000000 }
+        <Binormal> { -0.059900 -0.056317 -0.201736 }
+      }
+      <Normal> { -0.815485 0.572863 0.082217 }
+    }
+    <Vertex> 4048 {
+      -0.693125188351 0.848143160343 2.29773759842
+      <UV>  {
+        0.693268 0.283816
+        <Tangent> { 0.963172 -0.268888 0.000000 }
+        <Binormal> { -0.046537 -0.166697 0.003602 }
+      }
+      <Normal> { -0.947630 0.268288 0.173070 }
+    }
+    <Vertex> 4049 {
+      -0.635448634624 0.747381091118 2.56392455101
+      <UV>  {
+        0.703553 0.349373
+        <Tangent> { 0.897693 -0.440621 0.000001 }
+        <Binormal> { -0.127855 -0.260484 -0.016027 }
+      }
+      <Normal> { -0.865993 0.407208 0.290170 }
+    }
+    <Vertex> 4050 {
+      -0.471652269363 0.650411307812 2.6022465229
+      <UV>  {
+        0.732763 0.358811
+        <Tangent> { 0.921356 -0.388720 0.000001 }
+        <Binormal> { -0.194307 -0.460552 -0.040459 }
+      }
+      <Normal> { -0.812830 0.299020 0.499863 }
+    }
+    <Vertex> 4051 {
+      -0.365011811256 0.686650812626 2.49576497078
+      <UV>  {
+        0.751779 0.332586
+        <Tangent> { 0.781367 -0.624071 0.000000 }
+        <Binormal> { -0.031578 -0.039537 -0.249362 }
+      }
+      <Normal> { -0.911252 0.408673 0.050600 }
+    }
+    <Vertex> 4052 {
+      -0.526946544647 0.78954154253 2.29773759842
+      <UV>  {
+        0.722902 0.283816
+        <Tangent> { 0.684977 -0.728565 0.000000 }
+        <Binormal> { -0.059900 -0.056317 -0.201736 }
+      }
+      <Normal> { -0.815485 0.572863 0.082217 }
+    }
+    <Vertex> 4053 {
+      -0.471652269363 0.650411307812 2.6022465229
+      <UV>  {
+        0.732763 0.358811
+        <Tangent> { 0.921356 -0.388720 0.000001 }
+        <Binormal> { -0.194307 -0.460552 -0.040459 }
+      }
+      <Normal> { -0.812830 0.299020 0.499863 }
+    }
+    <Vertex> 4054 {
+      -0.307855904102 0.553441524506 2.6405684948
+      <UV>  {
+        0.761972 0.368249
+        <Tangent> { -0.086004 -0.996295 0.000000 }
+        <Binormal> { -0.666244 0.057513 -0.428747 }
+      }
+      <Normal> { -0.374920 0.642018 0.668722 }
+    }
+    <Vertex> 4055 {
+      -0.365011811256 0.686650812626 2.49576497078
+      <UV>  {
+        0.751779 0.332586
+        <Tangent> { 0.781367 -0.624071 0.000000 }
+        <Binormal> { -0.031578 -0.039537 -0.249362 }
+      }
+      <Normal> { -0.911252 0.408673 0.050600 }
+    }
+    <Vertex> 4056 {
+      -0.471652269363 0.650411307812 2.6022465229
+      <UV>  {
+        0.732763 0.358811
+        <Tangent> { 0.921356 -0.388720 0.000001 }
+        <Binormal> { -0.194307 -0.460552 -0.040459 }
+      }
+      <Normal> { -0.812830 0.299020 0.499863 }
+    }
+    <Vertex> 4057 {
+      -0.365011811256 0.686650812626 2.49576497078
+      <UV>  {
+        0.751779 0.332586
+        <Tangent> { 0.781367 -0.624071 0.000000 }
+        <Binormal> { -0.031578 -0.039537 -0.249362 }
+      }
+      <Normal> { -0.911252 0.408673 0.050600 }
+    }
+    <Vertex> 4058 {
+      -0.42216899991 0.60936820507 2.35096120834
+      <UV>  {
+        0.741587 0.296924
+        <Tangent> { 0.981501 0.191457 -0.000005 }
+        <Binormal> { -0.117757 0.603695 0.648954 }
+      }
+      <Normal> { -0.563707 0.551225 -0.615070 }
+    }
+    <Vertex> 4059 {
+      -0.526946544647 0.78954154253 2.29773759842
+      <UV>  {
+        0.722902 0.283816
+        <Tangent> { 0.684977 -0.728565 0.000000 }
+        <Binormal> { -0.059900 -0.056317 -0.201736 }
+      }
+      <Normal> { -0.815485 0.572863 0.082217 }
+    }
+    <Vertex> 4060 {
+      -0.811058819294 0.193938553333 2.13745093346
+      <UV>  {
+        0.672237 0.244340
+        <Tangent> { -0.979178 0.203005 -0.000002 }
+        <Binormal> { -0.054718 -0.263929 0.048896 }
+      }
+      <Normal> { 0.931761 -0.243110 -0.269539 }
+    }
+    <Vertex> 4061 {
+      -0.811058819294 0.193938553333 1.93732297421
+      <UV>  {
+        0.672237 0.195052
+        <Tangent> { -0.989569 0.144057 0.000000 }
+        <Binormal> { 0.000422 0.002899 0.020005 }
+      }
+      <Normal> { 0.986480 -0.163823 0.002930 }
+    }
+    <Vertex> 4062 {
+      -0.786852538586 0.193938553333 1.93732297421
+      <UV>  {
+        0.676554 0.195052
+        <Tangent> { -0.989569 -0.144057 -0.000000 }
+        <Binormal> { -0.000422 0.002899 -0.020005 }
+      }
+      <Normal> { 0.986480 0.163823 0.002930 }
+    }
+    <Vertex> 4063 {
+      -0.786852538586 0.193938553333 2.13745093346
+      <UV>  {
+        0.676554 0.244340
+        <Tangent> { -0.971173 -0.238377 0.000003 }
+        <Binormal> { 0.063880 -0.260255 -0.012180 }
+      }
+      <Normal> { 0.932646 0.241462 -0.267983 }
+    }
+    <Vertex> 4064 {
+      -0.811058819294 0.193938553333 1.93732297421
+      <UV>  {
+        0.672237 0.195052
+        <Tangent> { -0.989569 0.144057 0.000000 }
+        <Binormal> { 0.000422 0.002899 0.020005 }
+      }
+      <Normal> { 0.986480 -0.163823 0.002930 }
+    }
+    <Vertex> 4065 {
+      -0.811058819294 0.193938553333 1.73719501495
+      <UV>  {
+        0.672237 0.145764
+        <Tangent> { -0.984745 0.174004 -0.000000 }
+        <Binormal> { 0.004078 0.023081 -0.050322 }
+      }
+      <Normal> { 0.991974 -0.124180 0.023438 }
+    }
+    <Vertex> 4066 {
+      -0.786852538586 0.193938553333 1.73719501495
+      <UV>  {
+        0.676554 0.145764
+        <Tangent> { -0.991332 -0.131378 0.000000 }
+        <Binormal> { -0.003083 0.023265 0.007220 }
+      }
+      <Normal> { 0.991974 0.124180 0.023469 }
+    }
+    <Vertex> 4067 {
+      -0.786852538586 0.193938553333 1.93732297421
+      <UV>  {
+        0.676554 0.195052
+        <Tangent> { -0.989569 -0.144057 -0.000000 }
+        <Binormal> { -0.000422 0.002899 -0.020005 }
+      }
+      <Normal> { 0.986480 0.163823 0.002930 }
+    }
+    <Vertex> 4068 {
+      -0.786852538586 0.193938553333 1.73719501495
+      <UV>  {
+        0.676554 0.145764
+        <Tangent> { -0.991332 -0.131378 0.000000 }
+        <Binormal> { -0.003083 0.023265 0.007220 }
+      }
+      <Normal> { 0.991974 0.124180 0.023469 }
+    }
+    <Vertex> 4069 {
+      -0.62573993206 0.242823407054 1.73511087894
+      <UV>  {
+        0.705285 0.145251
+        <Tangent> { -0.787725 -0.616028 0.000000 }
+        <Binormal> { -0.041079 0.052528 0.146057 }
+      }
+      <Normal> { 0.867458 0.492965 0.066683 }
+    }
+    <Vertex> 4070 {
+      -0.652529776096 0.242823407054 1.98095083237
+      <UV>  {
+        0.700507 0.205797
+        <Tangent> { -0.898934 -0.438085 -0.000000 }
+        <Binormal> { 0.002995 -0.006145 -0.037103 }
+      }
+      <Normal> { 0.882015 0.471114 -0.006836 }
+    }
+    <Vertex> 4071 {
+      -0.786852538586 0.193938553333 1.93732297421
+      <UV>  {
+        0.676554 0.195052
+        <Tangent> { -0.989569 -0.144057 -0.000000 }
+        <Binormal> { -0.000422 0.002899 -0.020005 }
+      }
+      <Normal> { 0.986480 0.163823 0.002930 }
+    }
+    <Vertex> 4072 {
+      -0.652529776096 0.242823407054 1.98095083237
+      <UV>  {
+        0.700507 0.205797
+        <Tangent> { -0.898934 -0.438085 -0.000000 }
+        <Binormal> { 0.002995 -0.006145 -0.037103 }
+      }
+      <Normal> { 0.882015 0.471114 -0.006836 }
+    }
+    <Vertex> 4073 {
+      -0.652129292488 0.239068865776 2.29864048958
+      <UV>  {
+        0.700579 0.284038
+        <Tangent> { -0.815922 -0.578161 0.000006 }
+        <Binormal> { 0.116892 -0.164962 0.030763 }
+      }
+      <Normal> { 0.816431 0.540819 -0.202185 }
+    }
+    <Vertex> 4074 {
+      -0.786852538586 0.193938553333 2.13745093346
+      <UV>  {
+        0.676554 0.244340
+        <Tangent> { -0.971173 -0.238377 0.000003 }
+        <Binormal> { 0.063880 -0.260255 -0.012180 }
+      }
+      <Normal> { 0.932646 0.241462 -0.267983 }
+    }
+    <Vertex> 4075 {
+      -0.786852538586 0.193938553333 1.93732297421
+      <UV>  {
+        0.676554 0.195052
+        <Tangent> { -0.989569 -0.144057 -0.000000 }
+        <Binormal> { -0.000422 0.002899 -0.020005 }
+      }
+      <Normal> { 0.986480 0.163823 0.002930 }
+    }
+    <Vertex> 4076 {
+      -0.580973386765 0.257360994816 2.38021206856
+      <UV>  {
+        0.713268 0.304128
+        <Tangent> { -0.786699 -0.617337 0.000002 }
+        <Binormal> { 0.228568 -0.291274 0.025343 }
+      }
+      <Normal> { 0.746147 0.553301 -0.370251 }
+    }
+    <Vertex> 4077 {
+      -0.652129292488 0.239068865776 2.29864048958
+      <UV>  {
+        0.700579 0.284038
+        <Tangent> { -0.815922 -0.578161 0.000006 }
+        <Binormal> { 0.116892 -0.164962 0.030763 }
+      }
+      <Normal> { 0.816431 0.540819 -0.202185 }
+    }
+    <Vertex> 4078 {
+      -0.467238277197 0.353033930063 2.40944695473
+      <UV>  {
+        0.733550 0.311328
+        <Tangent> { -0.190173 0.981751 -0.000001 }
+        <Binormal> { -0.333891 -0.064678 -0.855173 }
+      }
+      <Normal> { 0.765191 0.546587 -0.340098 }
+    }
+    <Vertex> 4079 {
+      -0.580973386765 0.257360994816 2.38021206856
+      <UV>  {
+        0.713268 0.304128
+        <Tangent> { -0.786699 -0.617337 0.000002 }
+        <Binormal> { 0.228568 -0.291274 0.025343 }
+      }
+      <Normal> { 0.746147 0.553301 -0.370251 }
+    }
+    <Vertex> 4080 {
+      -0.467238277197 0.353033930063 2.40944695473
+      <UV>  {
+        0.733550 0.311328
+        <Tangent> { -0.190173 0.981751 -0.000001 }
+        <Binormal> { -0.333891 -0.064678 -0.855173 }
+      }
+      <Normal> { 0.765191 0.546587 -0.340098 }
+    }
+    <Vertex> 4081 {
+      -0.469274312258 0.262316524982 2.51226186752
+      <UV>  {
+        0.733187 0.336649
+        <Tangent> { -0.197522 -0.980298 0.000011 }
+        <Binormal> { 0.025391 -0.005111 0.457046 }
+      }
+      <Normal> { 0.623646 0.781243 -0.025910 }
+    }
+    <Vertex> 4082 {
+      -0.440840214491 0.332037091255 2.62830042839
+      <UV>  {
+        0.738257 0.365228
+        <Tangent> { -0.635891 -0.771779 -0.000001 }
+        <Binormal> { -0.268628 0.221330 0.267226 }
+      }
+      <Normal> { 0.777612 0.523545 0.348064 }
+    }
+    <Vertex> 4083 {
+      -0.500524818897 0.332037061453 2.56220006943
+      <UV>  {
+        0.727614 0.348948
+        <Tangent> { -0.095986 -0.995383 0.000005 }
+        <Binormal> { -0.099520 0.009600 0.710632 }
+      }
+      <Normal> { 0.774194 0.624958 0.099979 }
+    }
+    <Vertex> 4084 {
+      -0.413151651621 0.346534639597 2.51865816116
+      <UV>  {
+        0.743195 0.338225
+        <Tangent> { -0.908826 -0.417174 -0.000002 }
+        <Binormal> { 0.037253 -0.081158 0.181556 }
+      }
+      <Normal> { 0.965758 0.243538 -0.089297 }
+    }
+    <Vertex> 4085 {
+      -0.353467047215 0.346534639597 2.58475875854
+      <UV>  {
+        0.753838 0.354504
+        <Tangent> { -0.726583 -0.687079 -0.000001 }
+        <Binormal> { -0.234198 0.247664 0.227677 }
+      }
+      <Normal> { 0.819147 0.461257 0.340861 }
+    }
+    <Vertex> 4086 {
+      -0.440840214491 0.332037091255 2.62830042839
+      <UV>  {
+        0.738257 0.365228
+        <Tangent> { -0.635891 -0.771779 -0.000001 }
+        <Binormal> { -0.268628 0.221330 0.267226 }
+      }
+      <Normal> { 0.777612 0.523545 0.348064 }
+    }
+    <Vertex> 4087 {
+      -0.353467047215 0.346534639597 2.58475875854
+      <UV>  {
+        0.753838 0.354504
+        <Tangent> { -0.726583 -0.687079 -0.000001 }
+        <Binormal> { -0.234198 0.247664 0.227677 }
+      }
+      <Normal> { 0.819147 0.461257 0.340861 }
+    }
+    <Vertex> 4088 {
+      -0.307855904102 0.553441524506 2.6405684948
+      <UV>  {
+        0.761972 0.368249
+        <Tangent> { -0.086004 -0.996295 0.000000 }
+        <Binormal> { -0.666244 0.057513 -0.428747 }
+      }
+      <Normal> { -0.374920 0.642018 0.668722 }
+    }
+    <Vertex> 4089 {
+      -0.427252531052 0.553441524506 2.67915606499
+      <UV>  {
+        0.740680 0.377753
+        <Tangent> { -0.000003 -1.000000 0.000003 }
+        <Binormal> { -0.724663 0.000001 -0.403365 }
+      }
+      <Normal> { -0.403363 0.558702 0.724662 }
+    }
+    <Vertex> 4090 {
+      -0.469274312258 0.262316524982 2.51226186752
+      <UV>  {
+        0.733187 0.336649
+        <Tangent> { -0.197522 -0.980298 0.000011 }
+        <Binormal> { 0.025391 -0.005111 0.457046 }
+      }
+      <Normal> { 0.623646 0.781243 -0.025910 }
+    }
+    <Vertex> 4091 {
+      -0.467238277197 0.353033930063 2.40944695473
+      <UV>  {
+        0.733550 0.311328
+        <Tangent> { -0.190173 0.981751 -0.000001 }
+        <Binormal> { -0.333891 -0.064678 -0.855173 }
+      }
+      <Normal> { 0.765191 0.546587 -0.340098 }
+    }
+    <Vertex> 4092 {
+      -0.413151651621 0.346534639597 2.51865816116
+      <UV>  {
+        0.743195 0.338225
+        <Tangent> { -0.908826 -0.417174 -0.000002 }
+        <Binormal> { 0.037253 -0.081158 0.181556 }
+      }
+      <Normal> { 0.965758 0.243538 -0.089297 }
+    }
+    <Vertex> 4093 {
+      -0.500524818897 0.332037061453 2.56220006943
+      <UV>  {
+        0.727614 0.348948
+        <Tangent> { -0.095986 -0.995383 0.000005 }
+        <Binormal> { -0.099520 0.009600 0.710632 }
+      }
+      <Normal> { 0.774194 0.624958 0.099979 }
+    }
+    <Vertex> 4094 {
+      -0.618205308914 0.457547187805 3.70961952209
+      <UV>  {
+        0.199542 0.539441
+        <Tangent> { 0.405726 -0.531934 0.743258 }
+        <Binormal> { -0.400636 0.199740 0.361647 }
+      }
+      <Normal> { 0.009033 0.879513 -0.475753 }
+    }
+    <Vertex> 4095 {
+      -0.623264193535 0.535088658333 3.69981431961
+      <UV>  {
+        0.206384 0.630424
+        <Tangent> { 0.535850 -0.362594 0.762489 }
+        <Binormal> { -0.233898 -0.752018 -0.193239 }
+      }
+      <Normal> { -0.329936 -0.137364 0.933927 }
+    }
+    <Vertex> 4096 {
+      -0.614644408226 0.45617467165 3.71613025665
+      <UV>  {
+        0.190225 0.536963
+        <Tangent> { 0.477711 -0.122912 0.869877 }
+        <Binormal> { 0.551587 -0.572989 -0.383878 }
+      }
+      <Normal> { -0.321543 -0.720847 0.613941 }
+    }
+    <Vertex> 4097 {
+      -0.618205308914 0.457547187805 3.70961952209
+      <UV>  {
+        0.199542 0.539441
+        <Tangent> { 0.405726 -0.531934 0.743258 }
+        <Binormal> { -0.400636 0.199740 0.361647 }
+      }
+      <Normal> { 0.009033 0.879513 -0.475753 }
+    }
+    <Vertex> 4098 {
+      -0.614644408226 0.45617467165 3.71613025665
+      <UV>  {
+        0.190225 0.536963
+        <Tangent> { 0.477711 -0.122912 0.869877 }
+        <Binormal> { 0.551587 -0.572989 -0.383878 }
+      }
+      <Normal> { -0.321543 -0.720847 0.613941 }
+    }
+    <Vertex> 4099 {
+      -0.612183630466 0.459147453308 3.72078800201
+      <UV>  {
+        0.175463 0.524074
+        <Tangent> { 0.456158 0.302665 0.836847 }
+        <Binormal> { 0.589005 -0.442778 -0.160920 }
+      }
+      <Normal> { -0.022340 -0.367595 0.929685 }
+    }
+    <Vertex> 4100 {
+      -0.616047143936 0.426442205906 3.71347522736
+      <UV>  {
+        0.196853 0.508952
+        <Tangent> { 0.299268 -0.778106 0.552258 }
+        <Binormal> { -0.552351 -0.162115 0.070905 }
+      }
+      <Normal> { 0.209418 -0.307566 0.928159 }
+    }
+    <Vertex> 4101 {
+      -0.618205308914 0.457547187805 3.70961952209
+      <UV>  {
+        0.199542 0.539441
+        <Tangent> { 0.405726 -0.531934 0.743258 }
+        <Binormal> { -0.400636 0.199740 0.361647 }
+      }
+      <Normal> { 0.009033 0.879513 -0.475753 }
+    }
+    <Vertex> 4102 {
+      -0.612183630466 0.459147453308 3.72078800201
+      <UV>  {
+        0.175463 0.524074
+        <Tangent> { 0.456158 0.302665 0.836847 }
+        <Binormal> { 0.589005 -0.442778 -0.160920 }
+      }
+      <Normal> { -0.022340 -0.367595 0.929685 }
+    }
+    <Vertex> 4103 {
+      -0.619100987911 0.408925622702 3.70769453049
+      <UV>  {
+        0.206384 0.456011
+        <Tangent> { -0.193218 -0.886340 -0.420796 }
+        <Binormal> { -0.741438 -0.135173 0.625170 }
+      }
+      <Normal> { 0.650166 -0.253090 0.716361 }
+    }
+    <Vertex> 4104 {
+      -0.618205308914 0.457547187805 3.70961952209
+      <UV>  {
+        0.199542 0.539441
+        <Tangent> { 0.405726 -0.531934 0.743258 }
+        <Binormal> { -0.400636 0.199740 0.361647 }
+      }
+      <Normal> { 0.009033 0.879513 -0.475753 }
+    }
+    <Vertex> 4105 {
+      -0.616047143936 0.426442205906 3.71347522736
+      <UV>  {
+        0.196853 0.508952
+        <Tangent> { 0.299268 -0.778106 0.552258 }
+        <Binormal> { -0.552351 -0.162115 0.070905 }
+      }
+      <Normal> { 0.209418 -0.307566 0.928159 }
+    }
+    <Vertex> 4106 {
+      -0.63299447298 0.354717135429 3.67260503769
+      <UV>  {
+        0.201895 0.505679
+        <Tangent> { 0.425842 0.486705 0.762743 }
+        <Binormal> { -0.426324 0.529292 -0.099722 }
+      }
+      <Normal> { 0.761711 0.636402 0.121403 }
+    }
+    <Vertex> 4107 {
+      -0.670358300209 0.296684384346 3.60188126564
+      <UV>  {
+        0.212037 0.504622
+        <Tangent> { 0.366556 0.573891 0.732315 }
+        <Binormal> { -0.542818 0.413163 -0.052078 }
+      }
+      <Normal> { 0.599780 0.796960 0.071108 }
+    }
+    <Vertex> 4108 {
+      -0.58921533823 0.402173370123 3.58224606514
+      <UV>  {
+        0.204407 0.553621
+        <Tangent> { 0.596568 0.126514 0.792528 }
+        <Binormal> { -0.464040 0.839425 0.215302 }
+      }
+      <Normal> { 0.747368 0.519395 -0.414228 }
+    }
+    <Vertex> 4109 {
+      -0.559974908829 0.391926527023 3.62631082535
+      <UV>  {
+        0.196561 0.551203
+        <Tangent> { 0.455838 -0.673581 0.581807 }
+        <Binormal> { 0.330565 0.711058 0.564226 }
+      }
+      <Normal> { 0.911527 -0.109165 -0.396466 }
+    }
+    <Vertex> 4110 {
+      -0.63299447298 0.354717135429 3.67260503769
+      <UV>  {
+        0.201895 0.505679
+        <Tangent> { 0.425842 0.486705 0.762743 }
+        <Binormal> { -0.426324 0.529292 -0.099722 }
+      }
+      <Normal> { 0.761711 0.636402 0.121403 }
+    }
+    <Vertex> 4111 {
+      -0.58921533823 0.402173370123 3.58224606514
+      <UV>  {
+        0.204407 0.553621
+        <Tangent> { 0.596568 0.126514 0.792528 }
+        <Binormal> { -0.464040 0.839425 0.215302 }
+      }
+      <Normal> { 0.747368 0.519395 -0.414228 }
+    }
+    <Vertex> 4112 {
+      -0.58921533823 0.402173370123 3.58224606514
+      <UV>  {
+        0.204407 0.553621
+        <Tangent> { 0.596568 0.126514 0.792528 }
+        <Binormal> { -0.464040 0.839425 0.215302 }
+      }
+      <Normal> { 0.747368 0.519395 -0.414228 }
+    }
+    <Vertex> 4113 {
+      -0.556651651859 0.458818942308 3.54816555977
+      <UV>  {
+        0.195146 0.577947
+        <Tangent> { 0.432029 -0.822972 0.368873 }
+        <Binormal> { 0.685976 0.530850 0.380924 }
+      }
+      <Normal> { 0.647603 -0.351909 -0.675802 }
+    }
+    <Vertex> 4114 {
+      -0.559974908829 0.391926527023 3.62631082535
+      <UV>  {
+        0.196561 0.551203
+        <Tangent> { 0.455838 -0.673581 0.581807 }
+        <Binormal> { 0.330565 0.711058 0.564226 }
+      }
+      <Normal> { 0.911527 -0.109165 -0.396466 }
+    }
+    <Vertex> 4115 {
+      -0.556651651859 0.458818942308 3.54816555977
+      <UV>  {
+        0.195146 0.577947
+        <Tangent> { 0.432029 -0.822972 0.368873 }
+        <Binormal> { 0.685976 0.530850 0.380924 }
+      }
+      <Normal> { 0.647603 -0.351909 -0.675802 }
+    }
+    <Vertex> 4116 {
+      -0.58921533823 0.402173370123 3.58224606514
+      <UV>  {
+        0.204407 0.553621
+        <Tangent> { 0.596568 0.126514 0.792528 }
+        <Binormal> { -0.464040 0.839425 0.215302 }
+      }
+      <Normal> { 0.747368 0.519395 -0.414228 }
+    }
+    <Vertex> 4117 {
+      -0.565525650978 0.460587263107 3.54258370399
+      <UV>  {
+        0.198023 0.577549
+        <Tangent> { 0.779358 -0.251904 0.573713 }
+        <Binormal> { -0.007266 0.911857 0.410246 }
+      }
+      <Normal> { 0.618000 0.326640 -0.715079 }
+    }
+    <Vertex> 4118 {
+      -0.557511568069 0.678431034088 3.54955410957
+      <UV>  {
+        0.156491 0.595987
+        <Tangent> { -0.253741 0.957970 0.133823 }
+        <Binormal> { 0.035513 0.022224 -0.091757 }
+      }
+      <Normal> { -0.161565 0.971587 0.172796 }
+    }
+    <Vertex> 4119 {
+      -0.553669333458 0.656759798527 3.57573604584
+      <UV>  {
+        0.148211 0.598294
+        <Tangent> { -0.668530 -0.341917 0.660424 }
+        <Binormal> { 0.570525 -0.771128 0.178296 }
+      }
+      <Normal> { -0.594806 -0.570910 -0.565874 }
+    }
+    <Vertex> 4120 {
+      -0.575717389584 0.694740235806 3.63790202141
+      <UV>  {
+        0.129114 0.568262
+        <Tangent> { -0.690189 0.722755 -0.035562 }
+        <Binormal> { -0.071780 -0.067554 0.020168 }
+      }
+      <Normal> { -0.698843 0.702597 -0.133885 }
+    }
+    <Vertex> 4121 {
+      -0.553669333458 0.656759798527 3.57573604584
+      <UV>  {
+        0.148211 0.598294
+        <Tangent> { -0.668530 -0.341917 0.660424 }
+        <Binormal> { 0.570525 -0.771128 0.178296 }
+      }
+      <Normal> { -0.594806 -0.570910 -0.565874 }
+    }
+    <Vertex> 4122 {
+      -0.613487422466 0.689811527729 3.57424902916
+      <UV>  {
+        0.118850 0.587142
+        <Tangent> { -0.813587 0.314321 -0.489161 }
+        <Binormal> { 0.143632 0.063785 -0.197907 }
+      }
+      <Normal> { -0.756157 0.535386 -0.376232 }
+    }
+    <Vertex> 4123 {
+      -0.575717389584 0.694740235806 3.63790202141
+      <UV>  {
+        0.129114 0.568262
+        <Tangent> { -0.690189 0.722755 -0.035562 }
+        <Binormal> { -0.071780 -0.067554 0.020168 }
+      }
+      <Normal> { -0.698843 0.702597 -0.133885 }
+    }
+    <Vertex> 4124 {
+      -0.575717389584 0.694740235806 3.63790202141
+      <UV>  {
+        0.129114 0.568262
+        <Tangent> { -0.690189 0.722755 -0.035562 }
+        <Binormal> { -0.071780 -0.067554 0.020168 }
+      }
+      <Normal> { -0.698843 0.702597 -0.133885 }
+    }
+    <Vertex> 4125 {
+      -0.648902714252 0.730465590954 3.58989310265
+      <UV>  {
+        0.080782 0.563270
+        <Tangent> { -0.696076 0.250625 -0.672804 }
+        <Binormal> { 0.327467 0.166905 -0.276620 }
+      }
+      <Normal> { -0.661000 0.635395 -0.399121 }
+    }
+    <Vertex> 4126 {
+      -0.610921502113 0.73588681221 3.66178560257
+      <UV>  {
+        0.107453 0.538839
+        <Tangent> { -0.323170 0.879941 -0.348231 }
+        <Binormal> { 0.739279 0.429799 0.399979 }
+      }
+      <Normal> { -0.608173 0.418287 0.674612 }
+    }
+    <Vertex> 4127 {
+      -0.575717389584 0.694740235806 3.63790202141
+      <UV>  {
+        0.129114 0.568262
+        <Tangent> { -0.690189 0.722755 -0.035562 }
+        <Binormal> { -0.071780 -0.067554 0.020168 }
+      }
+      <Normal> { -0.698843 0.702597 -0.133885 }
+    }
+    <Vertex> 4128 {
+      -0.613487422466 0.689811527729 3.57424902916
+      <UV>  {
+        0.118850 0.587142
+        <Tangent> { -0.813587 0.314321 -0.489161 }
+        <Binormal> { 0.143632 0.063785 -0.197907 }
+      }
+      <Normal> { -0.756157 0.535386 -0.376232 }
+    }
+    <Vertex> 4129 {
+      -0.648902714252 0.730465590954 3.58989310265
+      <UV>  {
+        0.080782 0.563270
+        <Tangent> { -0.696076 0.250625 -0.672804 }
+        <Binormal> { 0.327467 0.166905 -0.276620 }
+      }
+      <Normal> { -0.661000 0.635395 -0.399121 }
+    }
+    <Vertex> 4130 {
+      -0.671713113785 0.765311777592 3.59931659698
+      <UV>  {
+        0.065086 0.511768
+        <Tangent> { -0.421154 0.614721 -0.666894 }
+        <Binormal> { 0.273880 0.772495 0.539101 }
+      }
+      <Normal> { -0.928190 0.074740 0.364452 }
+    }
+    <Vertex> 4131 {
+      -0.63373208046 0.643035173416 3.67120885849
+      <UV>  {
+        0.100504 0.510874
+        <Tangent> { -0.184150 0.906832 -0.379137 }
+        <Binormal> { 0.536868 0.231666 0.293344 }
+      }
+      <Normal> { -0.214576 -0.536302 0.816248 }
+    }
+    <Vertex> 4132 {
+      -0.610921502113 0.73588681221 3.66178560257
+      <UV>  {
+        0.107453 0.538839
+        <Tangent> { -0.323170 0.879941 -0.348231 }
+        <Binormal> { 0.739279 0.429799 0.399979 }
+      }
+      <Normal> { -0.608173 0.418287 0.674612 }
+    }
+    <Vertex> 4133 {
+      -0.610921502113 0.73588681221 3.66178560257
+      <UV>  {
+        0.107453 0.538839
+        <Tangent> { -0.323170 0.879941 -0.348231 }
+        <Binormal> { 0.739279 0.429799 0.399979 }
+      }
+      <Normal> { -0.608173 0.418287 0.674612 }
+    }
+    <Vertex> 4134 {
+      -0.648902714252 0.730465590954 3.58989310265
+      <UV>  {
+        0.080782 0.563270
+        <Tangent> { -0.696076 0.250625 -0.672804 }
+        <Binormal> { 0.327467 0.166905 -0.276620 }
+      }
+      <Normal> { -0.661000 0.635395 -0.399121 }
+    }
+    <Vertex> 4135 {
+      -0.671713113785 0.765311777592 3.59931659698
+      <UV>  {
+        0.065086 0.511768
+        <Tangent> { -0.421154 0.614721 -0.666894 }
+        <Binormal> { 0.273880 0.772495 0.539101 }
+      }
+      <Normal> { -0.928190 0.074740 0.364452 }
+    }
+    <Vertex> 4136 {
+      -0.577533185482 0.52487051487 3.72063326836
+      <UV>  {
+        0.157829 0.524451
+        <Tangent> { -0.236477 0.964584 -0.116859 }
+        <Binormal> { 0.893800 0.263061 0.362674 }
+      }
+      <Normal> { -0.376080 0.000366 0.926572 }
+    }
+    <Vertex> 4137 {
+      -0.614644408226 0.45617467165 3.71613025665
+      <UV>  {
+        0.161075 0.509477
+        <Tangent> { -0.422181 0.690449 -0.587404 }
+        <Binormal> { 0.000466 0.448070 0.526337 }
+      }
+      <Normal> { -0.321543 -0.720847 0.613941 }
+    }
+    <Vertex> 4138 {
+      -0.612183630466 0.459147453308 3.72078800201
+      <UV>  {
+        0.167914 0.508983
+        <Tangent> { 0.015088 0.993949 0.108797 }
+        <Binormal> { 0.964054 -0.016457 0.016658 }
+      }
+      <Normal> { -0.022340 -0.367595 0.929685 }
+    }
+    <Vertex> 4139 {
+      -0.577533185482 0.52487051487 3.72063326836
+      <UV>  {
+        0.157829 0.524451
+        <Tangent> { -0.236477 0.964584 -0.116859 }
+        <Binormal> { 0.893800 0.263061 0.362674 }
+      }
+      <Normal> { -0.376080 0.000366 0.926572 }
+    }
+    <Vertex> 4140 {
+      -0.576185047626 0.412638217211 3.7188334465
+      <UV>  {
+        0.173877 0.521411
+        <Tangent> { 0.038369 0.990576 0.131477 }
+        <Binormal> { 0.783522 -0.018895 -0.086301 }
+      }
+      <Normal> { 0.106601 0.502884 0.857723 }
+    }
+    <Vertex> 4141 {
+      -0.528416097164 0.51596146822 3.67282247543
+      <UV>  {
+        0.165679 0.553666
+        <Tangent> { -0.104205 0.991581 0.076867 }
+        <Binormal> { 0.376964 0.039627 -0.000149 }
+      }
+      <Normal> { -0.093234 0.888607 0.449049 }
+    }
+    <Vertex> 4142 {
+      -0.577533185482 0.52487051487 3.72063326836
+      <UV>  {
+        0.157829 0.524451
+        <Tangent> { -0.236477 0.964584 -0.116859 }
+        <Binormal> { 0.893800 0.263061 0.362674 }
+      }
+      <Normal> { -0.376080 0.000366 0.926572 }
+    }
+    <Vertex> 4143 {
+      -0.612183630466 0.459147453308 3.72078800201
+      <UV>  {
+        0.167914 0.508983
+        <Tangent> { 0.015088 0.993949 0.108797 }
+        <Binormal> { 0.964054 -0.016457 0.016658 }
+      }
+      <Normal> { -0.022340 -0.367595 0.929685 }
+    }
+    <Vertex> 4144 {
+      -0.576185047626 0.412638217211 3.7188334465
+      <UV>  {
+        0.173877 0.521411
+        <Tangent> { 0.038369 0.990576 0.131477 }
+        <Binormal> { 0.783522 -0.018895 -0.086301 }
+      }
+      <Normal> { 0.106601 0.502884 0.857723 }
+    }
+    <Vertex> 4145 {
+      -0.534195184708 0.397670149803 3.65243554115
+      <UV>  {
+        0.180567 0.554282
+        <Tangent> { 0.100753 0.958168 0.267886 }
+        <Binormal> { 0.108216 0.036461 -0.171112 }
+      }
+      <Normal> { 0.272317 0.891415 0.362163 }
+    }
+    <Vertex> 4146 {
+      -0.528416097164 0.51596146822 3.67282247543
+      <UV>  {
+        0.165679 0.553666
+        <Tangent> { -0.104205 0.991581 0.076867 }
+        <Binormal> { 0.376964 0.039627 -0.000149 }
+      }
+      <Normal> { -0.093234 0.888607 0.449049 }
+    }
+    <Vertex> 4147 {
+      -0.576185047626 0.412638217211 3.7188334465
+      <UV>  {
+        0.173877 0.521411
+        <Tangent> { 0.038369 0.990576 0.131477 }
+        <Binormal> { 0.783522 -0.018895 -0.086301 }
+      }
+      <Normal> { 0.106601 0.502884 0.857723 }
+    }
+    <Vertex> 4148 {
+      -0.528416097164 0.51596146822 3.67282247543
+      <UV>  {
+        0.165679 0.553666
+        <Tangent> { -0.104205 0.991581 0.076867 }
+        <Binormal> { 0.376964 0.039627 -0.000149 }
+      }
+      <Normal> { -0.093234 0.888607 0.449049 }
+    }
+    <Vertex> 4149 {
+      -0.534195184708 0.397670149803 3.65243554115
+      <UV>  {
+        0.180567 0.554282
+        <Tangent> { 0.100753 0.958168 0.267886 }
+        <Binormal> { 0.108216 0.036461 -0.171112 }
+      }
+      <Normal> { 0.272317 0.891415 0.362163 }
+    }
+    <Vertex> 4150 {
+      -0.515881896019 0.466682434082 3.59702992439
+      <UV>  {
+        0.176397 0.578377
+        <Tangent> { -0.018876 0.974929 0.221713 }
+        <Binormal> { -0.109490 -0.009106 0.030720 }
+      }
+      <Normal> { -0.050722 0.992248 0.113346 }
+    }
+    <Vertex> 4151 {
+      -0.528416097164 0.51596146822 3.67282247543
+      <UV>  {
+        0.165679 0.553666
+        <Tangent> { -0.104205 0.991581 0.076867 }
+        <Binormal> { 0.376964 0.039627 -0.000149 }
+      }
+      <Normal> { -0.093234 0.888607 0.449049 }
+    }
+    <Vertex> 4152 {
+      -0.515881896019 0.466682434082 3.59702992439
+      <UV>  {
+        0.176397 0.578377
+        <Tangent> { -0.018876 0.974929 0.221713 }
+        <Binormal> { -0.109490 -0.009106 0.030720 }
+      }
+      <Normal> { -0.050722 0.992248 0.113346 }
+    }
+    <Vertex> 4153 {
+      -0.55328553915 0.598490417004 3.65061116219
+      <UV>  {
+        0.151496 0.561873
+        <Tangent> { -0.274817 0.960030 -0.053084 }
+        <Binormal> { 0.508488 0.151767 0.112275 }
+      }
+      <Normal> { -0.346721 0.802667 0.485275 }
+    }
+    <Vertex> 4154 {
+      -0.577533185482 0.52487051487 3.72063326836
+      <UV>  {
+        0.157829 0.524451
+        <Tangent> { -0.236477 0.964584 -0.116859 }
+        <Binormal> { 0.893800 0.263061 0.362674 }
+      }
+      <Normal> { -0.376080 0.000366 0.926572 }
+    }
+    <Vertex> 4155 {
+      -0.528416097164 0.51596146822 3.67282247543
+      <UV>  {
+        0.165679 0.553666
+        <Tangent> { -0.104205 0.991581 0.076867 }
+        <Binormal> { 0.376964 0.039627 -0.000149 }
+      }
+      <Normal> { -0.093234 0.888607 0.449049 }
+    }
+    <Vertex> 4156 {
+      -0.55328553915 0.598490417004 3.65061116219
+      <UV>  {
+        0.151496 0.561873
+        <Tangent> { -0.274817 0.960030 -0.053084 }
+        <Binormal> { 0.508488 0.151767 0.112275 }
+      }
+      <Normal> { -0.346721 0.802667 0.485275 }
+    }
+    <Vertex> 4157 {
+      -0.577533185482 0.52487051487 3.72063326836
+      <UV>  {
+        0.157829 0.524451
+        <Tangent> { -0.236477 0.964584 -0.116859 }
+        <Binormal> { 0.893800 0.263061 0.362674 }
+      }
+      <Normal> { -0.376080 0.000366 0.926572 }
+    }
+    <Vertex> 4158 {
+      -0.55328553915 0.598490417004 3.65061116219
+      <UV>  {
+        0.151496 0.561873
+        <Tangent> { -0.274817 0.960030 -0.053084 }
+        <Binormal> { 0.508488 0.151767 0.112275 }
+      }
+      <Normal> { -0.346721 0.802667 0.485275 }
+    }
+    <Vertex> 4159 {
+      -0.623264193535 0.535088658333 3.69981431961
+      <UV>  {
+        0.126562 0.510330
+        <Tangent> { -0.199818 0.946889 -0.251940 }
+        <Binormal> { 0.849718 0.269740 0.339860 }
+      }
+      <Normal> { -0.329936 -0.137364 0.933927 }
+    }
+    <Vertex> 4160 {
+      -0.577533185482 0.52487051487 3.72063326836
+      <UV>  {
+        0.157829 0.524451
+        <Tangent> { -0.236477 0.964584 -0.116859 }
+        <Binormal> { 0.893800 0.263061 0.362674 }
+      }
+      <Normal> { -0.376080 0.000366 0.926572 }
+    }
+    <Vertex> 4161 {
+      -0.623264193535 0.535088658333 3.69981431961
+      <UV>  {
+        0.126562 0.510330
+        <Tangent> { -0.199818 0.946889 -0.251940 }
+        <Binormal> { 0.849718 0.269740 0.339860 }
+      }
+      <Normal> { -0.329936 -0.137364 0.933927 }
+    }
+    <Vertex> 4162 {
+      -0.614644408226 0.45617467165 3.71613025665
+      <UV>  {
+        0.161075 0.509477
+        <Tangent> { -0.422181 0.690449 -0.587404 }
+        <Binormal> { 0.000466 0.448070 0.526337 }
+      }
+      <Normal> { -0.321543 -0.720847 0.613941 }
+    }
+    <Vertex> 4163 {
+      -0.614644408226 0.45617467165 3.71613025665
+      <UV>  {
+        0.221412 0.511372
+        <Tangent> { -0.446173 0.147262 -0.882748 }
+        <Binormal> { -0.545916 0.557765 0.368974 }
+      }
+      <Normal> { -0.321543 -0.720847 0.613941 }
+    }
+    <Vertex> 4164 {
+      -0.623264193535 0.535088658333 3.69981431961
+      <UV>  {
+        0.206384 0.630424
+        <Tangent> { 0.535850 -0.362594 0.762489 }
+        <Binormal> { -0.233898 -0.752018 -0.193239 }
+      }
+      <Normal> { -0.329936 -0.137364 0.933927 }
+    }
+    <Vertex> 4165 {
+      -0.618015706539 0.457547187805 3.70951938629
+      <UV>  {
+        0.209803 0.515909
+        <Tangent> { -0.435489 0.297392 -0.849651 }
+        <Binormal> { -0.618737 0.191948 0.384319 }
+      }
+      <Normal> { 0.009033 -0.888668 0.458388 }
+    }
+    <Vertex> 4166 {
+      -0.580490350723 0.364326179028 3.71068406105
+      <UV>  {
+        0.177230 0.521348
+        <Tangent> { 0.128214 0.955081 0.267171 }
+        <Binormal> { 0.897724 -0.004992 -0.412967 }
+      }
+      <Normal> { 0.412732 -0.146428 0.898984 }
+    }
+    <Vertex> 4167 {
+      -0.534195184708 0.397670149803 3.65243554115
+      <UV>  {
+        0.180567 0.554282
+        <Tangent> { 0.100753 0.958168 0.267886 }
+        <Binormal> { 0.108216 0.036461 -0.171112 }
+      }
+      <Normal> { 0.272317 0.891415 0.362163 }
+    }
+    <Vertex> 4168 {
+      -0.576185047626 0.412638217211 3.7188334465
+      <UV>  {
+        0.173877 0.521411
+        <Tangent> { 0.038369 0.990576 0.131477 }
+        <Binormal> { 0.783522 -0.018895 -0.086301 }
+      }
+      <Normal> { 0.106601 0.502884 0.857723 }
+    }
+    <Vertex> 4169 {
+      -0.612183630466 0.459147453308 3.72078800201
+      <UV>  {
+        0.233690 0.499255
+        <Tangent> { -0.426720 -0.344326 -0.836271 }
+        <Binormal> { -0.627524 0.415398 0.149168 }
+      }
+      <Normal> { -0.022340 -0.367595 0.929685 }
+    }
+    <Vertex> 4170 {
+      -0.614644408226 0.45617467165 3.71613025665
+      <UV>  {
+        0.221412 0.511372
+        <Tangent> { -0.446173 0.147262 -0.882748 }
+        <Binormal> { -0.545916 0.557765 0.368974 }
+      }
+      <Normal> { -0.321543 -0.720847 0.613941 }
+    }
+    <Vertex> 4171 {
+      -0.618015706539 0.457547187805 3.70951938629
+      <UV>  {
+        0.209803 0.515909
+        <Tangent> { -0.435489 0.297392 -0.849651 }
+        <Binormal> { -0.618737 0.191948 0.384319 }
+      }
+      <Normal> { 0.009033 -0.888668 0.458388 }
+    }
+    <Vertex> 4172 {
+      -0.612183630466 0.459147453308 3.72078800201
+      <UV>  {
+        0.233690 0.499255
+        <Tangent> { -0.426720 -0.344326 -0.836271 }
+        <Binormal> { -0.627524 0.415398 0.149168 }
+      }
+      <Normal> { -0.022340 -0.367595 0.929685 }
+    }
+    <Vertex> 4173 {
+      -0.618015706539 0.457547187805 3.70951938629
+      <UV>  {
+        0.209803 0.515909
+        <Tangent> { -0.435489 0.297392 -0.849651 }
+        <Binormal> { -0.618737 0.191948 0.384319 }
+      }
+      <Normal> { 0.009033 -0.888668 0.458388 }
+    }
+    <Vertex> 4174 {
+      -0.616047143936 0.426442205906 3.71347522736
+      <UV>  {
+        0.211742 0.485042
+        <Tangent> { -0.422689 0.393179 -0.816544 }
+        <Binormal> { 0.113792 0.221324 0.047666 }
+      }
+      <Normal> { 0.209418 -0.307566 0.928159 }
+    }
+    <Vertex> 4175 {
+      -0.580490350723 0.364326179028 3.71068406105
+      <UV>  {
+        0.177230 0.521348
+        <Tangent> { 0.128214 0.955081 0.267171 }
+        <Binormal> { 0.897724 -0.004992 -0.412967 }
+      }
+      <Normal> { 0.412732 -0.146428 0.898984 }
+    }
+    <Vertex> 4176 {
+      -0.612183630466 0.459147453308 3.72078800201
+      <UV>  {
+        0.167914 0.508983
+        <Tangent> { 0.015088 0.993949 0.108797 }
+        <Binormal> { 0.964054 -0.016457 0.016658 }
+      }
+      <Normal> { -0.022340 -0.367595 0.929685 }
+    }
+    <Vertex> 4177 {
+      -0.616047143936 0.426442205906 3.71347522736
+      <UV>  {
+        0.176153 0.508444
+        <Tangent> { 0.027885 0.976085 0.215592 }
+        <Binormal> { 0.972271 0.019267 -0.212986 }
+      }
+      <Normal> { 0.209418 -0.307566 0.928159 }
+    }
+    <Vertex> 4178 {
+      -0.576185047626 0.412638217211 3.7188334465
+      <UV>  {
+        0.173877 0.521411
+        <Tangent> { 0.038369 0.990576 0.131477 }
+        <Binormal> { 0.783522 -0.018895 -0.086301 }
+      }
+      <Normal> { 0.106601 0.502884 0.857723 }
+    }
+    <Vertex> 4179 {
+      -0.612183630466 0.459147453308 3.72078800201
+      <UV>  {
+        0.167914 0.508983
+        <Tangent> { 0.015088 0.993949 0.108797 }
+        <Binormal> { 0.964054 -0.016457 0.016658 }
+      }
+      <Normal> { -0.022340 -0.367595 0.929685 }
+    }
+    <Vertex> 4180 {
+      -0.580490350723 0.364326179028 3.71068406105
+      <UV>  {
+        0.177230 0.521348
+        <Tangent> { 0.128214 0.955081 0.267171 }
+        <Binormal> { 0.897724 -0.004992 -0.412967 }
+      }
+      <Normal> { 0.412732 -0.146428 0.898984 }
+    }
+    <Vertex> 4181 {
+      -0.515881896019 0.466682434082 3.59702992439
+      <UV>  {
+        0.176397 0.578377
+        <Tangent> { -0.018876 0.974929 0.221713 }
+        <Binormal> { -0.109490 -0.009106 0.030720 }
+      }
+      <Normal> { -0.050722 0.992248 0.113346 }
+    }
+    <Vertex> 4182 {
+      -0.534195184708 0.397670149803 3.65243554115
+      <UV>  {
+        0.180567 0.554282
+        <Tangent> { 0.100753 0.958168 0.267886 }
+        <Binormal> { 0.108216 0.036461 -0.171112 }
+      }
+      <Normal> { 0.272317 0.891415 0.362163 }
+    }
+    <Vertex> 4183 {
+      -0.519315719604 0.358628034592 3.54419064522
+      <UV>  {
+        0.182857 0.585162
+        <Tangent> { 0.191332 0.878406 0.437945 }
+        <Binormal> { -0.449114 0.136405 -0.077382 }
+      }
+      <Normal> { 0.295999 0.954497 -0.035401 }
+    }
+    <Vertex> 4184 {
+      -0.519315719604 0.358628034592 3.54419064522
+      <UV>  {
+        0.182857 0.585162
+        <Tangent> { 0.191332 0.878406 0.437945 }
+        <Binormal> { -0.449114 0.136405 -0.077382 }
+      }
+      <Normal> { 0.295999 0.954497 -0.035401 }
+    }
+    <Vertex> 4185 {
+      -0.534195184708 0.397670149803 3.65243554115
+      <UV>  {
+        0.180567 0.554282
+        <Tangent> { 0.100753 0.958168 0.267886 }
+        <Binormal> { 0.108216 0.036461 -0.171112 }
+      }
+      <Normal> { 0.272317 0.891415 0.362163 }
+    }
+    <Vertex> 4186 {
+      -0.550922751427 0.319019466639 3.6467602253
+      <UV>  {
+        0.190494 0.546872
+        <Tangent> { 0.472887 -0.669539 0.572797 }
+        <Binormal> { 0.176221 0.328218 0.238169 }
+      }
+      <Normal> { 0.771599 -0.588824 0.240547 }
+    }
+    <Vertex> 4187 {
+      -0.619100987911 0.408925622702 3.70769453049
+      <UV>  {
+        0.188569 0.506845
+        <Tangent> { 0.233547 0.776807 0.584830 }
+        <Binormal> { 0.704489 0.212932 -0.564162 }
+      }
+      <Normal> { 0.650166 -0.253090 0.716361 }
+    }
+    <Vertex> 4188 {
+      -0.580490350723 0.364326179028 3.71068406105
+      <UV>  {
+        0.177230 0.521348
+        <Tangent> { 0.128214 0.955081 0.267171 }
+        <Binormal> { 0.897724 -0.004992 -0.412967 }
+      }
+      <Normal> { 0.412732 -0.146428 0.898984 }
+    }
+    <Vertex> 4189 {
+      -0.616047143936 0.426442205906 3.71347522736
+      <UV>  {
+        0.176153 0.508444
+        <Tangent> { 0.027885 0.976085 0.215592 }
+        <Binormal> { 0.972271 0.019267 -0.212986 }
+      }
+      <Normal> { 0.209418 -0.307566 0.928159 }
+    }
+    <Vertex> 4190 {
+      -0.534195184708 0.397670149803 3.65243554115
+      <UV>  {
+        0.180567 0.554282
+        <Tangent> { 0.100753 0.958168 0.267886 }
+        <Binormal> { 0.108216 0.036461 -0.171112 }
+      }
+      <Normal> { 0.272317 0.891415 0.362163 }
+    }
+    <Vertex> 4191 {
+      -0.580490350723 0.364326179028 3.71068406105
+      <UV>  {
+        0.177230 0.521348
+        <Tangent> { 0.128214 0.955081 0.267171 }
+        <Binormal> { 0.897724 -0.004992 -0.412967 }
+      }
+      <Normal> { 0.412732 -0.146428 0.898984 }
+    }
+    <Vertex> 4192 {
+      -0.619100987911 0.408925622702 3.70769453049
+      <UV>  {
+        0.188569 0.506845
+        <Tangent> { 0.233547 0.776807 0.584830 }
+        <Binormal> { 0.704489 0.212932 -0.564162 }
+      }
+      <Normal> { 0.650166 -0.253090 0.716361 }
+    }
+    <Vertex> 4193 {
+      -0.534195184708 0.397670149803 3.65243554115
+      <UV>  {
+        0.180567 0.554282
+        <Tangent> { 0.100753 0.958168 0.267886 }
+        <Binormal> { 0.108216 0.036461 -0.171112 }
+      }
+      <Normal> { 0.272317 0.891415 0.362163 }
+    }
+    <Vertex> 4194 {
+      -0.619100987911 0.408925622702 3.70769453049
+      <UV>  {
+        0.188569 0.506845
+        <Tangent> { 0.233547 0.776807 0.584830 }
+        <Binormal> { 0.704489 0.212932 -0.564162 }
+      }
+      <Normal> { 0.650166 -0.253090 0.716361 }
+    }
+    <Vertex> 4195 {
+      -0.550922751427 0.319019466639 3.6467602253
+      <UV>  {
+        0.190494 0.546872
+        <Tangent> { 0.472887 -0.669539 0.572797 }
+        <Binormal> { 0.176221 0.328218 0.238169 }
+      }
+      <Normal> { 0.771599 -0.588824 0.240547 }
+    }
+    <Vertex> 4196 {
+      -0.622990012169 0.40279686451 3.70033335686
+      <UV>  {
+        0.192803 0.506492
+        <Tangent> { 0.418654 -0.577802 0.700624 }
+        <Binormal> { -0.083716 0.429421 0.404166 }
+      }
+      <Normal> { 0.870663 -0.236244 0.431349 }
+    }
+    <Vertex> 4197 {
+      -0.550922751427 0.319019466639 3.6467602253
+      <UV>  {
+        0.190494 0.546872
+        <Tangent> { 0.472887 -0.669539 0.572797 }
+        <Binormal> { 0.176221 0.328218 0.238169 }
+      }
+      <Normal> { 0.771599 -0.588824 0.240547 }
+    }
+    <Vertex> 4198 {
+      -0.619100987911 0.408925622702 3.70769453049
+      <UV>  {
+        0.188569 0.506845
+        <Tangent> { 0.233547 0.776807 0.584830 }
+        <Binormal> { 0.704489 0.212932 -0.564162 }
+      }
+      <Normal> { 0.650166 -0.253090 0.716361 }
+    }
+    <Vertex> 4199 {
+      -0.616047143936 0.426442205906 3.71347522736
+      <UV>  {
+        0.211742 0.485042
+        <Tangent> { -0.422689 0.393179 -0.816544 }
+        <Binormal> { 0.113792 0.221324 0.047666 }
+      }
+      <Normal> { 0.209418 -0.307566 0.928159 }
+    }
+    <Vertex> 4200 {
+      -0.618015706539 0.457547187805 3.70951938629
+      <UV>  {
+        0.209803 0.515909
+        <Tangent> { -0.435489 0.297392 -0.849651 }
+        <Binormal> { -0.618737 0.191948 0.384319 }
+      }
+      <Normal> { 0.009033 -0.888668 0.458388 }
+    }
+    <Vertex> 4201 {
+      -0.619100987911 0.408925622702 3.70769453049
+      <UV>  {
+        0.206384 0.456011
+        <Tangent> { -0.193218 -0.886340 -0.420796 }
+        <Binormal> { -0.741438 -0.135173 0.625170 }
+      }
+      <Normal> { 0.650166 -0.253090 0.716361 }
+    }
+    <Vertex> 4202 {
+      -0.556651651859 0.458818942308 3.54816555977
+      <UV>  {
+        0.195146 0.577947
+        <Tangent> { 0.432029 -0.822972 0.368873 }
+        <Binormal> { 0.685976 0.530850 0.380924 }
+      }
+      <Normal> { 0.647603 -0.351909 -0.675802 }
+    }
+    <Vertex> 4203 {
+      -0.519315719604 0.358628034592 3.54419064522
+      <UV>  {
+        0.182857 0.585162
+        <Tangent> { 0.191332 0.878406 0.437945 }
+        <Binormal> { -0.449114 0.136405 -0.077382 }
+      }
+      <Normal> { 0.295999 0.954497 -0.035401 }
+    }
+    <Vertex> 4204 {
+      -0.550922751427 0.319019466639 3.6467602253
+      <UV>  {
+        0.190494 0.546872
+        <Tangent> { 0.472887 -0.669539 0.572797 }
+        <Binormal> { 0.176221 0.328218 0.238169 }
+      }
+      <Normal> { 0.771599 -0.588824 0.240547 }
+    }
+    <Vertex> 4205 {
+      -0.559974908829 0.391926527023 3.62631082535
+      <UV>  {
+        0.196561 0.551203
+        <Tangent> { 0.455838 -0.673581 0.581807 }
+        <Binormal> { 0.330565 0.711058 0.564226 }
+      }
+      <Normal> { 0.911527 -0.109165 -0.396466 }
+    }
+    <Vertex> 4206 {
+      -0.550922751427 0.319019466639 3.6467602253
+      <UV>  {
+        0.190494 0.546872
+        <Tangent> { 0.472887 -0.669539 0.572797 }
+        <Binormal> { 0.176221 0.328218 0.238169 }
+      }
+      <Normal> { 0.771599 -0.588824 0.240547 }
+    }
+    <Vertex> 4207 {
+      -0.622990012169 0.40279686451 3.70033335686
+      <UV>  {
+        0.192803 0.506492
+        <Tangent> { 0.418654 -0.577802 0.700624 }
+        <Binormal> { -0.083716 0.429421 0.404166 }
+      }
+      <Normal> { 0.870663 -0.236244 0.431349 }
+    }
+    <Vertex> 4208 {
+      -0.622990012169 0.40279686451 3.70033335686
+      <UV>  {
+        0.192803 0.506492
+        <Tangent> { 0.418654 -0.577802 0.700624 }
+        <Binormal> { -0.083716 0.429421 0.404166 }
+      }
+      <Normal> { 0.870663 -0.236244 0.431349 }
+    }
+    <Vertex> 4209 {
+      -0.63299447298 0.354717135429 3.67260503769
+      <UV>  {
+        0.201895 0.505679
+        <Tangent> { 0.425842 0.486705 0.762743 }
+        <Binormal> { -0.426324 0.529292 -0.099722 }
+      }
+      <Normal> { 0.761711 0.636402 0.121403 }
+    }
+    <Vertex> 4210 {
+      -0.559974908829 0.391926527023 3.62631082535
+      <UV>  {
+        0.196561 0.551203
+        <Tangent> { 0.455838 -0.673581 0.581807 }
+        <Binormal> { 0.330565 0.711058 0.564226 }
+      }
+      <Normal> { 0.911527 -0.109165 -0.396466 }
+    }
+    <Vertex> 4211 {
+      -0.550922751427 0.319019466639 3.6467602253
+      <UV>  {
+        0.190494 0.546872
+        <Tangent> { 0.472887 -0.669539 0.572797 }
+        <Binormal> { 0.176221 0.328218 0.238169 }
+      }
+      <Normal> { 0.771599 -0.588824 0.240547 }
+    }
+    <Vertex> 4212 {
+      -0.559974908829 0.391926527023 3.62631082535
+      <UV>  {
+        0.196561 0.551203
+        <Tangent> { 0.455838 -0.673581 0.581807 }
+        <Binormal> { 0.330565 0.711058 0.564226 }
+      }
+      <Normal> { 0.911527 -0.109165 -0.396466 }
+    }
+    <Vertex> 4213 {
+      -0.556651651859 0.458818942308 3.54816555977
+      <UV>  {
+        0.195146 0.577947
+        <Tangent> { 0.432029 -0.822972 0.368873 }
+        <Binormal> { 0.685976 0.530850 0.380924 }
+      }
+      <Normal> { 0.647603 -0.351909 -0.675802 }
+    }
+    <Vertex> 4214 {
+      -0.515881896019 0.466682434082 3.59702992439
+      <UV>  {
+        0.176397 0.578377
+        <Tangent> { -0.018876 0.974929 0.221713 }
+        <Binormal> { -0.109490 -0.009106 0.030720 }
+      }
+      <Normal> { -0.050722 0.992248 0.113346 }
+    }
+    <Vertex> 4215 {
+      -0.519315719604 0.358628034592 3.54419064522
+      <UV>  {
+        0.182857 0.585162
+        <Tangent> { 0.191332 0.878406 0.437945 }
+        <Binormal> { -0.449114 0.136405 -0.077382 }
+      }
+      <Normal> { 0.295999 0.954497 -0.035401 }
+    }
+    <Vertex> 4216 {
+      -0.517375528812 0.502971053123 3.57994484901
+      <UV>  {
+        0.165618 0.589216
+        <Tangent> { -0.151679 0.984098 0.092441 }
+        <Binormal> { 0.022835 0.004578 -0.011269 }
+      }
+      <Normal> { -0.140110 0.983337 0.115574 }
+    }
+    <Vertex> 4217 {
+      -0.517375528812 0.502971053123 3.57994484901
+      <UV>  {
+        0.165618 0.589216
+        <Tangent> { -0.151679 0.984098 0.092441 }
+        <Binormal> { 0.022835 0.004578 -0.011269 }
+      }
+      <Normal> { -0.140110 0.983337 0.115574 }
+    }
+    <Vertex> 4218 {
+      -0.557511568069 0.678431034088 3.54955410957
+      <UV>  {
+        0.156491 0.595987
+        <Tangent> { -0.253741 0.957970 0.133823 }
+        <Binormal> { 0.035513 0.022224 -0.091757 }
+      }
+      <Normal> { -0.161565 0.971587 0.172796 }
+    }
+    <Vertex> 4219 {
+      -0.55328553915 0.598490417004 3.65061116219
+      <UV>  {
+        0.151496 0.561873
+        <Tangent> { -0.274817 0.960030 -0.053084 }
+        <Binormal> { 0.508488 0.151767 0.112275 }
+      }
+      <Normal> { -0.346721 0.802667 0.485275 }
+    }
+    <Vertex> 4220 {
+      -0.517375528812 0.502971053123 3.57994484901
+      <UV>  {
+        0.165618 0.589216
+        <Tangent> { -0.151679 0.984098 0.092441 }
+        <Binormal> { 0.022835 0.004578 -0.011269 }
+      }
+      <Normal> { -0.140110 0.983337 0.115574 }
+    }
+    <Vertex> 4221 {
+      -0.55328553915 0.598490417004 3.65061116219
+      <UV>  {
+        0.151496 0.561873
+        <Tangent> { -0.274817 0.960030 -0.053084 }
+        <Binormal> { 0.508488 0.151767 0.112275 }
+      }
+      <Normal> { -0.346721 0.802667 0.485275 }
+    }
+    <Vertex> 4222 {
+      -0.515881896019 0.466682434082 3.59702992439
+      <UV>  {
+        0.176397 0.578377
+        <Tangent> { -0.018876 0.974929 0.221713 }
+        <Binormal> { -0.109490 -0.009106 0.030720 }
+      }
+      <Normal> { -0.050722 0.992248 0.113346 }
+    }
+    <Vertex> 4223 {
+      -0.557511568069 0.678431034088 3.54955410957
+      <UV>  {
+        0.156491 0.595987
+        <Tangent> { -0.253741 0.957970 0.133823 }
+        <Binormal> { 0.035513 0.022224 -0.091757 }
+      }
+      <Normal> { -0.161565 0.971587 0.172796 }
+    }
+    <Vertex> 4224 {
+      -0.575717389584 0.694740235806 3.63790202141
+      <UV>  {
+        0.129114 0.568262
+        <Tangent> { -0.690189 0.722755 -0.035562 }
+        <Binormal> { -0.071780 -0.067554 0.020168 }
+      }
+      <Normal> { -0.698843 0.702597 -0.133885 }
+    }
+    <Vertex> 4225 {
+      -0.55328553915 0.598490417004 3.65061116219
+      <UV>  {
+        0.151496 0.561873
+        <Tangent> { -0.274817 0.960030 -0.053084 }
+        <Binormal> { 0.508488 0.151767 0.112275 }
+      }
+      <Normal> { -0.346721 0.802667 0.485275 }
+    }
+    <Vertex> 4226 {
+      -0.55328553915 0.598490417004 3.65061116219
+      <UV>  {
+        0.151496 0.561873
+        <Tangent> { -0.274817 0.960030 -0.053084 }
+        <Binormal> { 0.508488 0.151767 0.112275 }
+      }
+      <Normal> { -0.346721 0.802667 0.485275 }
+    }
+    <Vertex> 4227 {
+      -0.575717389584 0.694740235806 3.63790202141
+      <UV>  {
+        0.129114 0.568262
+        <Tangent> { -0.690189 0.722755 -0.035562 }
+        <Binormal> { -0.071780 -0.067554 0.020168 }
+      }
+      <Normal> { -0.698843 0.702597 -0.133885 }
+    }
+    <Vertex> 4228 {
+      -0.610921502113 0.73588681221 3.66178560257
+      <UV>  {
+        0.107453 0.538839
+        <Tangent> { -0.323170 0.879941 -0.348231 }
+        <Binormal> { 0.739279 0.429799 0.399979 }
+      }
+      <Normal> { -0.608173 0.418287 0.674612 }
+    }
+    <Vertex> 4229 {
+      -0.623264193535 0.535088658333 3.69981431961
+      <UV>  {
+        0.126562 0.510330
+        <Tangent> { -0.199818 0.946889 -0.251940 }
+        <Binormal> { 0.849718 0.269740 0.339860 }
+      }
+      <Normal> { -0.329936 -0.137364 0.933927 }
+    }
+    <Vertex> 4230 {
+      -0.55328553915 0.598490417004 3.65061116219
+      <UV>  {
+        0.151496 0.561873
+        <Tangent> { -0.274817 0.960030 -0.053084 }
+        <Binormal> { 0.508488 0.151767 0.112275 }
+      }
+      <Normal> { -0.346721 0.802667 0.485275 }
+    }
+    <Vertex> 4231 {
+      -0.610921502113 0.73588681221 3.66178560257
+      <UV>  {
+        0.107453 0.538839
+        <Tangent> { -0.323170 0.879941 -0.348231 }
+        <Binormal> { 0.739279 0.429799 0.399979 }
+      }
+      <Normal> { -0.608173 0.418287 0.674612 }
+    }
+    <Vertex> 4232 {
+      -0.63373208046 0.643035173416 3.67120885849
+      <UV>  {
+        0.100504 0.510874
+        <Tangent> { -0.184150 0.906832 -0.379137 }
+        <Binormal> { 0.536868 0.231666 0.293344 }
+      }
+      <Normal> { -0.214576 -0.536302 0.816248 }
+    }
+    <Vertex> 4233 {
+      -0.623264193535 0.535088658333 3.69981431961
+      <UV>  {
+        0.126562 0.510330
+        <Tangent> { -0.199818 0.946889 -0.251940 }
+        <Binormal> { 0.849718 0.269740 0.339860 }
+      }
+      <Normal> { -0.329936 -0.137364 0.933927 }
+    }
+    <Vertex> 4234 {
+      -0.610921502113 0.73588681221 3.66178560257
+      <UV>  {
+        0.107453 0.538839
+        <Tangent> { -0.323170 0.879941 -0.348231 }
+        <Binormal> { 0.739279 0.429799 0.399979 }
+      }
+      <Normal> { -0.608173 0.418287 0.674612 }
+    }
+    <Vertex> 4235 {
+      -0.467238277197 0.353033930063 2.40944695473
+      <UV>  {
+        0.733550 0.311328
+        <Tangent> { -0.190173 0.981751 -0.000001 }
+        <Binormal> { -0.333891 -0.064678 -0.855173 }
+      }
+      <Normal> { 0.765191 0.546587 -0.340098 }
+    }
+    <Vertex> 4236 {
+      -0.42216899991 0.60936820507 2.35096120834
+      <UV>  {
+        0.741587 0.296924
+        <Tangent> { 0.981501 0.191457 -0.000005 }
+        <Binormal> { -0.117757 0.603695 0.648954 }
+      }
+      <Normal> { -0.563707 0.551225 -0.615070 }
+    }
+    <Vertex> 4237 {
+      -0.419438511133 0.543337285519 2.33310365677
+      <UV>  {
+        0.742074 0.292526
+        <Tangent> { 0.023721 0.999719 -0.000000 }
+        <Binormal> { -0.372282 0.008834 0.356927 }
+      }
+      <Normal> { -0.377148 -0.847957 -0.372387 }
+    }
+    <Vertex> 4238 {
+      -0.415172129869 0.398978471756 2.33310365677
+      <UV>  {
+        0.742834 0.292526
+        <Tangent> { -0.059100 0.998252 -0.000000 }
+        <Binormal> { -0.329999 -0.019537 -0.561390 }
+      }
+      <Normal> { 0.605243 -0.724113 -0.330577 }
+    }
+    <Vertex> 4239 {
+      -0.42216899991 0.60936820507 2.35096120834
+      <UV>  {
+        0.741587 0.296924
+        <Tangent> { 0.981501 0.191457 -0.000005 }
+        <Binormal> { -0.117757 0.603695 0.648954 }
+      }
+      <Normal> { -0.563707 0.551225 -0.615070 }
+    }
+    <Vertex> 4240 {
+      -0.365011811256 0.686650812626 2.49576497078
+      <UV>  {
+        0.751779 0.332586
+        <Tangent> { 0.781367 -0.624071 0.000000 }
+        <Binormal> { -0.031578 -0.039537 -0.249362 }
+      }
+      <Normal> { -0.911252 0.408673 0.050600 }
+    }
+    <Vertex> 4241 {
+      -0.317989349365 0.663322031498 2.33310365677
+      <UV>  {
+        0.760165 0.292526
+        <Tangent> { 0.999379 -0.035251 0.000000 }
+        <Binormal> { 0.003804 0.107846 0.058348 }
+      }
+      <Normal> { -0.989746 0.093295 -0.107913 }
+    }
+    <Vertex> 4242 {
+      -0.419438511133 0.543337285519 2.33310365677
+      <UV>  {
+        0.742074 0.292526
+        <Tangent> { 0.023721 0.999719 -0.000000 }
+        <Binormal> { -0.372282 0.008834 0.356927 }
+      }
+      <Normal> { -0.377148 -0.847957 -0.372387 }
+    }
+    <Vertex> 4243 {
+      -0.365011811256 0.686650812626 2.49576497078
+      <UV>  {
+        0.751779 0.332586
+        <Tangent> { 0.781367 -0.624071 0.000000 }
+        <Binormal> { -0.031578 -0.039537 -0.249362 }
+      }
+      <Normal> { -0.911252 0.408673 0.050600 }
+    }
+    <Vertex> 4244 {
+      -0.307855904102 0.553441524506 2.6405684948
+      <UV>  {
+        0.761972 0.368249
+        <Tangent> { -0.086004 -0.996295 0.000000 }
+        <Binormal> { -0.666244 0.057513 -0.428747 }
+      }
+      <Normal> { -0.374920 0.642018 0.668722 }
+    }
+    <Vertex> 4245 {
+      -0.205922201276 0.545072436333 2.33310365677
+      <UV>  {
+        0.780149 0.292526
+        <Tangent> { 0.000000 -1.000000 -0.000000 }
+        <Binormal> { -0.250496 -0.000000 -0.220832 }
+      }
+      <Normal> { -0.220832 0.942564 0.250496 }
+    }
+    <Vertex> 4246 {
+      -0.317989349365 0.663322031498 2.33310365677
+      <UV>  {
+        0.760165 0.292526
+        <Tangent> { 0.999379 -0.035251 0.000000 }
+        <Binormal> { 0.003804 0.107846 0.058348 }
+      }
+      <Normal> { -0.989746 0.093295 -0.107913 }
+    }
+    <Vertex> 4247 {
+      -0.353467047215 0.346534639597 2.58475875854
+      <UV>  {
+        0.753838 0.354504
+        <Tangent> { -0.726583 -0.687079 -0.000001 }
+        <Binormal> { -0.234198 0.247664 0.227677 }
+      }
+      <Normal> { 0.819147 0.461257 0.340861 }
+    }
+    <Vertex> 4248 {
+      -0.413151651621 0.346534639597 2.51865816116
+      <UV>  {
+        0.743195 0.338225
+        <Tangent> { -0.908826 -0.417174 -0.000002 }
+        <Binormal> { 0.037253 -0.081158 0.181556 }
+      }
+      <Normal> { 0.965758 0.243538 -0.089297 }
+    }
+    <Vertex> 4249 {
+      -0.316918104887 0.361401706934 2.33310365677
+      <UV>  {
+        0.760356 0.292526
+        <Tangent> { -0.984053 0.177876 -0.000000 }
+        <Binormal> { -0.017947 -0.099286 -0.073925 }
+      }
+      <Normal> { 0.989471 -0.103732 -0.100894 }
+    }
+    <Vertex> 4250 {
+      -0.255980372429 0.361401706934 2.33310365677
+      <UV>  {
+        0.771223 0.292526
+        <Tangent> { -0.497393 -0.867525 0.000001 }
+        <Binormal> { -0.129545 0.074275 0.394267 }
+      }
+      <Normal> { 0.793054 0.590533 0.149327 }
+    }
+    <Vertex> 4251 {
+      -0.307855904102 0.553441524506 2.6405684948
+      <UV>  {
+        0.761972 0.368249
+        <Tangent> { -0.086004 -0.996295 0.000000 }
+        <Binormal> { -0.666244 0.057513 -0.428747 }
+      }
+      <Normal> { -0.374920 0.642018 0.668722 }
+    }
+    <Vertex> 4252 {
+      -0.353467047215 0.346534639597 2.58475875854
+      <UV>  {
+        0.753838 0.354504
+        <Tangent> { -0.726583 -0.687079 -0.000001 }
+        <Binormal> { -0.234198 0.247664 0.227677 }
+      }
+      <Normal> { 0.819147 0.461257 0.340861 }
+    }
+    <Vertex> 4253 {
+      -0.255980372429 0.361401706934 2.33310365677
+      <UV>  {
+        0.771223 0.292526
+        <Tangent> { -0.497393 -0.867525 0.000001 }
+        <Binormal> { -0.129545 0.074275 0.394267 }
+      }
+      <Normal> { 0.793054 0.590533 0.149327 }
+    }
+    <Vertex> 4254 {
+      -0.205922201276 0.545072436333 2.33310365677
+      <UV>  {
+        0.780149 0.292526
+        <Tangent> { 0.000000 -1.000000 -0.000000 }
+        <Binormal> { -0.250496 -0.000000 -0.220832 }
+      }
+      <Normal> { -0.220832 0.942564 0.250496 }
+    }
+    <Vertex> 4255 {
+      -0.413151651621 0.346534639597 2.51865816116
+      <UV>  {
+        0.743195 0.338225
+        <Tangent> { -0.908826 -0.417174 -0.000002 }
+        <Binormal> { 0.037253 -0.081158 0.181556 }
+      }
+      <Normal> { 0.965758 0.243538 -0.089297 }
+    }
+    <Vertex> 4256 {
+      -0.467238277197 0.353033930063 2.40944695473
+      <UV>  {
+        0.733550 0.311328
+        <Tangent> { -0.190173 0.981751 -0.000001 }
+        <Binormal> { -0.333891 -0.064678 -0.855173 }
+      }
+      <Normal> { 0.765191 0.546587 -0.340098 }
+    }
+    <Vertex> 4257 {
+      -0.415172129869 0.398978471756 2.33310365677
+      <UV>  {
+        0.742834 0.292526
+        <Tangent> { -0.059100 0.998252 -0.000000 }
+        <Binormal> { -0.329999 -0.019537 -0.561390 }
+      }
+      <Normal> { 0.605243 -0.724113 -0.330577 }
+    }
+    <Vertex> 4258 {
+      -0.316918104887 0.361401706934 2.33310365677
+      <UV>  {
+        0.760356 0.292526
+        <Tangent> { -0.984053 0.177876 -0.000000 }
+        <Binormal> { -0.017947 -0.099286 -0.073925 }
+      }
+      <Normal> { 0.989471 -0.103732 -0.100894 }
+    }
+    <Vertex> 4259 {
+      -0.415172129869 0.398978471756 2.33310365677
+      <UV>  {
+        0.742834 0.292526
+        <Tangent> { -0.059100 0.998252 -0.000000 }
+        <Binormal> { -0.329999 -0.019537 -0.561390 }
+      }
+      <Normal> { 0.605243 -0.724113 -0.330577 }
+    }
+    <Vertex> 4260 {
+      -0.419438511133 0.543337285519 2.33310365677
+      <UV>  {
+        0.742074 0.292526
+        <Tangent> { 0.023721 0.999719 -0.000000 }
+        <Binormal> { -0.372282 0.008834 0.356927 }
+      }
+      <Normal> { -0.377148 -0.847957 -0.372387 }
+    }
+    <Vertex> 4261 {
+      -0.386891871691 0.543337285519 2.16878390312
+      <UV>  {
+        0.747878 0.252057
+        <Tangent> { -0.000004 1.000000 -0.000001 }
+        <Binormal> { -0.247902 -0.000001 0.329116 }
+      }
+      <Normal> { -0.329112 -0.911161 -0.247902 }
+    }
+    <Vertex> 4262 {
+      -0.382814824581 0.398978471756 2.1700425148
+      <UV>  {
+        0.748605 0.252367
+        <Tangent> { -0.060824 0.998149 -0.000000 }
+        <Binormal> { -0.213386 -0.013003 -0.530006 }
+      }
+      <Normal> { 0.578936 -0.786828 -0.213782 }
+    }
+    <Vertex> 4263 {
+      -0.419438511133 0.543337285519 2.33310365677
+      <UV>  {
+        0.742074 0.292526
+        <Tangent> { 0.023721 0.999719 -0.000000 }
+        <Binormal> { -0.372282 0.008834 0.356927 }
+      }
+      <Normal> { -0.377148 -0.847957 -0.372387 }
+    }
+    <Vertex> 4264 {
+      -0.317989349365 0.663322031498 2.33310365677
+      <UV>  {
+        0.760165 0.292526
+        <Tangent> { 0.999379 -0.035251 0.000000 }
+        <Binormal> { 0.003804 0.107846 0.058348 }
+      }
+      <Normal> { -0.989746 0.093295 -0.107913 }
+    }
+    <Vertex> 4265 {
+      -0.289958238602 0.663322031498 2.19871282578
+      <UV>  {
+        0.765164 0.259428
+        <Tangent> { 0.997385 0.072269 -0.000000 }
+        <Binormal> { -0.000278 0.003836 0.044417 }
+      }
+      <Normal> { -0.999573 -0.027894 -0.003845 }
+    }
+    <Vertex> 4266 {
+      -0.386891871691 0.543337285519 2.16878390312
+      <UV>  {
+        0.747878 0.252057
+        <Tangent> { -0.000004 1.000000 -0.000001 }
+        <Binormal> { -0.247902 -0.000001 0.329116 }
+      }
+      <Normal> { -0.329112 -0.911161 -0.247902 }
+    }
+    <Vertex> 4267 {
+      -0.317989349365 0.663322031498 2.33310365677
+      <UV>  {
+        0.760165 0.292526
+        <Tangent> { 0.999379 -0.035251 0.000000 }
+        <Binormal> { 0.003804 0.107846 0.058348 }
+      }
+      <Normal> { -0.989746 0.093295 -0.107913 }
+    }
+    <Vertex> 4268 {
+      -0.205922201276 0.545072436333 2.33310365677
+      <UV>  {
+        0.780149 0.292526
+        <Tangent> { 0.000000 -1.000000 -0.000000 }
+        <Binormal> { -0.250496 -0.000000 -0.220832 }
+      }
+      <Normal> { -0.220832 0.942564 0.250496 }
+    }
+    <Vertex> 4269 {
+      -0.18287871778 0.545072436333 2.23177409172
+      <UV>  {
+        0.784259 0.267570
+        <Tangent> { 0.000001 -1.000000 -0.000000 }
+        <Binormal> { -0.263405 -0.000000 -0.243323 }
+      }
+      <Normal> { -0.243324 0.933470 0.263405 }
+    }
+    <Vertex> 4270 {
+      -0.289958238602 0.663322031498 2.19871282578
+      <UV>  {
+        0.765164 0.259428
+        <Tangent> { 0.997385 0.072269 -0.000000 }
+        <Binormal> { -0.000278 0.003836 0.044417 }
+      }
+      <Normal> { -0.999573 -0.027894 -0.003845 }
+    }
+    <Vertex> 4271 {
+      -0.255980372429 0.361401706934 2.33310365677
+      <UV>  {
+        0.771223 0.292526
+        <Tangent> { -0.497393 -0.867525 0.000001 }
+        <Binormal> { -0.129545 0.074275 0.394267 }
+      }
+      <Normal> { 0.793054 0.590533 0.149327 }
+    }
+    <Vertex> 4272 {
+      -0.316918104887 0.361401706934 2.33310365677
+      <UV>  {
+        0.760356 0.292526
+        <Tangent> { -0.984053 0.177876 -0.000000 }
+        <Binormal> { -0.017947 -0.099286 -0.073925 }
+      }
+      <Normal> { 0.989471 -0.103732 -0.100894 }
+    }
+    <Vertex> 4273 {
+      -0.288934320211 0.361401706934 2.19902896881
+      <UV>  {
+        0.765346 0.259506
+        <Tangent> { -0.983632 0.180187 0.000001 }
+        <Binormal> { -0.008655 -0.047249 -0.004193 }
+      }
+      <Normal> { 0.983215 -0.175848 -0.048036 }
+    }
+    <Vertex> 4274 {
+      -0.230708390474 0.361401706934 2.21700620651
+      <UV>  {
+        0.775729 0.263933
+        <Tangent> { -0.488200 -0.872732 0.000001 }
+        <Binormal> { -0.144493 0.080829 0.408301 }
+      }
+      <Normal> { 0.794580 0.584094 0.165563 }
+    }
+    <Vertex> 4275 {
+      -0.205922201276 0.545072436333 2.33310365677
+      <UV>  {
+        0.780149 0.292526
+        <Tangent> { 0.000000 -1.000000 -0.000000 }
+        <Binormal> { -0.250496 -0.000000 -0.220832 }
+      }
+      <Normal> { -0.220832 0.942564 0.250496 }
+    }
+    <Vertex> 4276 {
+      -0.255980372429 0.361401706934 2.33310365677
+      <UV>  {
+        0.771223 0.292526
+        <Tangent> { -0.497393 -0.867525 0.000001 }
+        <Binormal> { -0.129545 0.074275 0.394267 }
+      }
+      <Normal> { 0.793054 0.590533 0.149327 }
+    }
+    <Vertex> 4277 {
+      -0.230708390474 0.361401706934 2.21700620651
+      <UV>  {
+        0.775729 0.263933
+        <Tangent> { -0.488200 -0.872732 0.000001 }
+        <Binormal> { -0.144493 0.080829 0.408301 }
+      }
+      <Normal> { 0.794580 0.584094 0.165563 }
+    }
+    <Vertex> 4278 {
+      -0.18287871778 0.545072436333 2.23177409172
+      <UV>  {
+        0.784259 0.267570
+        <Tangent> { 0.000001 -1.000000 -0.000000 }
+        <Binormal> { -0.263405 -0.000000 -0.243323 }
+      }
+      <Normal> { -0.243324 0.933470 0.263405 }
+    }
+    <Vertex> 4279 {
+      -0.316918104887 0.361401706934 2.33310365677
+      <UV>  {
+        0.760356 0.292526
+        <Tangent> { -0.984053 0.177876 -0.000000 }
+        <Binormal> { -0.017947 -0.099286 -0.073925 }
+      }
+      <Normal> { 0.989471 -0.103732 -0.100894 }
+    }
+    <Vertex> 4280 {
+      -0.415172129869 0.398978471756 2.33310365677
+      <UV>  {
+        0.742834 0.292526
+        <Tangent> { -0.059100 0.998252 -0.000000 }
+        <Binormal> { -0.329999 -0.019537 -0.561390 }
+      }
+      <Normal> { 0.605243 -0.724113 -0.330577 }
+    }
+    <Vertex> 4281 {
+      -0.382814824581 0.398978471756 2.1700425148
+      <UV>  {
+        0.748605 0.252367
+        <Tangent> { -0.060824 0.998149 -0.000000 }
+        <Binormal> { -0.213386 -0.013003 -0.530006 }
+      }
+      <Normal> { 0.578936 -0.786828 -0.213782 }
+    }
+    <Vertex> 4282 {
+      -0.288934320211 0.361401706934 2.19902896881
+      <UV>  {
+        0.765346 0.259506
+        <Tangent> { -0.983632 0.180187 0.000001 }
+        <Binormal> { -0.008655 -0.047249 -0.004193 }
+      }
+      <Normal> { 0.983215 -0.175848 -0.048036 }
+    }
+    <Vertex> 4283 {
+      -0.382814824581 0.398978471756 2.1700425148
+      <UV>  {
+        0.748605 0.252367
+        <Tangent> { -0.060824 0.998149 -0.000000 }
+        <Binormal> { -0.213386 -0.013003 -0.530006 }
+      }
+      <Normal> { 0.578936 -0.786828 -0.213782 }
+    }
+    <Vertex> 4284 {
+      -0.386891871691 0.543337285519 2.16878390312
+      <UV>  {
+        0.747878 0.252057
+        <Tangent> { -0.000004 1.000000 -0.000001 }
+        <Binormal> { -0.247902 -0.000001 0.329116 }
+      }
+      <Normal> { -0.329112 -0.911161 -0.247902 }
+    }
+    <Vertex> 4285 {
+      -0.278154373169 0.543337285519 1.85525906086
+      <UV>  {
+        0.767268 0.174841
+        <Tangent> { -0.015361 0.999882 0.000000 }
+        <Binormal> { -0.309299 -0.004752 0.343384 }
+      }
+      <Normal> { -0.329722 -0.891934 -0.309336 }
+    }
+    <Vertex> 4286 {
+      -0.274078577757 0.398978471756 1.85651767254
+      <UV>  {
+        0.767995 0.175151
+        <Tangent> { -0.091331 0.995821 0.000001 }
+        <Binormal> { -0.266042 -0.024399 -0.506129 }
+      }
+      <Normal> { 0.578906 -0.770348 -0.267159 }
+    }
+    <Vertex> 4287 {
+      -0.386891871691 0.543337285519 2.16878390312
+      <UV>  {
+        0.747878 0.252057
+        <Tangent> { -0.000004 1.000000 -0.000001 }
+        <Binormal> { -0.247902 -0.000001 0.329116 }
+      }
+      <Normal> { -0.329112 -0.911161 -0.247902 }
+    }
+    <Vertex> 4288 {
+      -0.289958238602 0.663322031498 2.19871282578
+      <UV>  {
+        0.765164 0.259428
+        <Tangent> { 0.997385 0.072269 -0.000000 }
+        <Binormal> { -0.000278 0.003836 0.044417 }
+      }
+      <Normal> { -0.999573 -0.027894 -0.003845 }
+    }
+    <Vertex> 4289 {
+      -0.18122074008 0.663322031498 1.8851878643
+      <UV>  {
+        0.784554 0.182212
+        <Tangent> { 0.924314 0.381632 -0.000000 }
+        <Binormal> { -0.003541 0.008576 0.356730 }
+      }
+      <Normal> { -0.999573 -0.026765 -0.009278 }
+    }
+    <Vertex> 4290 {
+      -0.278154373169 0.543337285519 1.85525906086
+      <UV>  {
+        0.767268 0.174841
+        <Tangent> { -0.015361 0.999882 0.000000 }
+        <Binormal> { -0.309299 -0.004752 0.343384 }
+      }
+      <Normal> { -0.329722 -0.891934 -0.309336 }
+    }
+    <Vertex> 4291 {
+      -0.289958238602 0.663322031498 2.19871282578
+      <UV>  {
+        0.765164 0.259428
+        <Tangent> { 0.997385 0.072269 -0.000000 }
+        <Binormal> { -0.000278 0.003836 0.044417 }
+      }
+      <Normal> { -0.999573 -0.027894 -0.003845 }
+    }
+    <Vertex> 4292 {
+      -0.18287871778 0.545072436333 2.23177409172
+      <UV>  {
+        0.784259 0.267570
+        <Tangent> { 0.000001 -1.000000 -0.000000 }
+        <Binormal> { -0.263405 -0.000000 -0.243323 }
+      }
+      <Normal> { -0.243324 0.933470 0.263405 }
+    }
+    <Vertex> 4293 {
+      -0.0741412192583 0.545072436333 1.91824924946
+      <UV>  {
+        0.803649 0.190354
+        <Tangent> { 0.180037 -0.983660 -0.000001 }
+        <Binormal> { -0.312596 -0.057214 -0.074712 }
+      }
+      <Normal> { -0.243660 0.916288 0.317789 }
+    }
+    <Vertex> 4294 {
+      -0.18122074008 0.663322031498 1.8851878643
+      <UV>  {
+        0.784554 0.182212
+        <Tangent> { 0.924314 0.381632 -0.000000 }
+        <Binormal> { -0.003541 0.008576 0.356730 }
+      }
+      <Normal> { -0.999573 -0.026765 -0.009278 }
+    }
+    <Vertex> 4295 {
+      -0.230708390474 0.361401706934 2.21700620651
+      <UV>  {
+        0.775729 0.263933
+        <Tangent> { -0.488200 -0.872732 0.000001 }
+        <Binormal> { -0.144493 0.080829 0.408301 }
+      }
+      <Normal> { 0.794580 0.584094 0.165563 }
+    }
+    <Vertex> 4296 {
+      -0.288934320211 0.361401706934 2.19902896881
+      <UV>  {
+        0.765346 0.259506
+        <Tangent> { -0.983632 0.180187 0.000001 }
+        <Binormal> { -0.008655 -0.047249 -0.004193 }
+      }
+      <Normal> { 0.983215 -0.175848 -0.048036 }
+    }
+    <Vertex> 4297 {
+      -0.18019682169 0.361401706934 1.88550388813
+      <UV>  {
+        0.784737 0.182290
+        <Tangent> { -0.992816 0.119649 0.000002 }
+        <Binormal> { -0.007124 -0.059112 0.052778 }
+      }
+      <Normal> { 0.983337 -0.171667 -0.059542 }
+    }
+    <Vertex> 4298 {
+      -0.121972121298 0.361401706934 1.90348136425
+      <UV>  {
+        0.795120 0.186717
+        <Tangent> { -0.396922 -0.917852 0.000000 }
+        <Binormal> { -0.182579 0.078956 0.501634 }
+      }
+      <Normal> { 0.794580 0.573595 0.198920 }
+    }
+    <Vertex> 4299 {
+      -0.18287871778 0.545072436333 2.23177409172
+      <UV>  {
+        0.784259 0.267570
+        <Tangent> { 0.000001 -1.000000 -0.000000 }
+        <Binormal> { -0.263405 -0.000000 -0.243323 }
+      }
+      <Normal> { -0.243324 0.933470 0.263405 }
+    }
+    <Vertex> 4300 {
+      -0.230708390474 0.361401706934 2.21700620651
+      <UV>  {
+        0.775729 0.263933
+        <Tangent> { -0.488200 -0.872732 0.000001 }
+        <Binormal> { -0.144493 0.080829 0.408301 }
+      }
+      <Normal> { 0.794580 0.584094 0.165563 }
+    }
+    <Vertex> 4301 {
+      -0.121972121298 0.361401706934 1.90348136425
+      <UV>  {
+        0.795120 0.186717
+        <Tangent> { -0.396922 -0.917852 0.000000 }
+        <Binormal> { -0.182579 0.078956 0.501634 }
+      }
+      <Normal> { 0.794580 0.573595 0.198920 }
+    }
+    <Vertex> 4302 {
+      -0.0741412192583 0.545072436333 1.91824924946
+      <UV>  {
+        0.803649 0.190354
+        <Tangent> { 0.180037 -0.983660 -0.000001 }
+        <Binormal> { -0.312596 -0.057214 -0.074712 }
+      }
+      <Normal> { -0.243660 0.916288 0.317789 }
+    }
+    <Vertex> 4303 {
+      -0.288934320211 0.361401706934 2.19902896881
+      <UV>  {
+        0.765346 0.259506
+        <Tangent> { -0.983632 0.180187 0.000001 }
+        <Binormal> { -0.008655 -0.047249 -0.004193 }
+      }
+      <Normal> { 0.983215 -0.175848 -0.048036 }
+    }
+    <Vertex> 4304 {
+      -0.382814824581 0.398978471756 2.1700425148
+      <UV>  {
+        0.748605 0.252367
+        <Tangent> { -0.060824 0.998149 -0.000000 }
+        <Binormal> { -0.213386 -0.013003 -0.530006 }
+      }
+      <Normal> { 0.578936 -0.786828 -0.213782 }
+    }
+    <Vertex> 4305 {
+      -0.274078577757 0.398978471756 1.85651767254
+      <UV>  {
+        0.767995 0.175151
+        <Tangent> { -0.091331 0.995821 0.000001 }
+        <Binormal> { -0.266042 -0.024399 -0.506129 }
+      }
+      <Normal> { 0.578906 -0.770348 -0.267159 }
+    }
+    <Vertex> 4306 {
+      -0.18019682169 0.361401706934 1.88550388813
+      <UV>  {
+        0.784737 0.182290
+        <Tangent> { -0.992816 0.119649 0.000002 }
+        <Binormal> { -0.007124 -0.059112 0.052778 }
+      }
+      <Normal> { 0.983337 -0.171667 -0.059542 }
+    }
+    <Vertex> 4307 {
+      -1.32158434391 0.323580175638 2.17696619034
+      <UV>  {
+        0.581197 0.254072
+        <Tangent> { -0.978274 -0.207317 0.000000 }
+        <Binormal> { -0.014388 0.067892 0.009959 }
+      }
+      <Normal> { 0.977905 0.197058 0.069399 }
+    }
+    <Vertex> 4308 {
+      -1.3977534771 0.271940916777 1.90220248699
+      <UV>  {
+        0.567614 0.186402
+        <Tangent> { -0.990127 -0.140170 0.000000 }
+        <Binormal> { -0.018027 0.127336 -0.061989 }
+      }
+      <Normal> { 0.971282 0.200110 0.128605 }
+    }
+    <Vertex> 4309 {
+      -1.2935103178 0.307379871607 1.86320352554
+      <UV>  {
+        0.586203 0.176798
+        <Tangent> { -0.193729 -0.981055 -0.000001 }
+        <Binormal> { 0.074073 -0.014628 0.417289 }
+      }
+      <Normal> { 0.584826 0.807611 -0.075503 }
+    }
+    <Vertex> 4310 {
+      -1.22770380974 0.36115694046 2.14797997475
+      <UV>  {
+        0.597938 0.246933
+        <Tangent> { -0.073494 -0.997296 0.000000 }
+        <Binormal> { 0.133066 -0.009806 0.521686 }
+      }
+      <Normal> { 0.582202 0.801996 -0.133427 }
+    }
+    <Vertex> 4311 {
+      -1.42763996124 0.507250905037 2.20971155167
+      <UV>  {
+        0.562284 0.262136
+        <Tangent> { 0.000001 1.000000 0.000000 }
+        <Binormal> { 0.211341 -0.000000 0.255531 }
+      }
+      <Normal> { -0.255531 -0.943388 0.211341 }
+    }
+    <Vertex> 4312 {
+      -1.51551508904 0.479100108147 1.90226304531
+      <UV>  {
+        0.546614 0.186417
+        <Tangent> { 0.156172 0.987730 -0.000000 }
+        <Binormal> { 0.240760 -0.038067 0.118882 }
+      }
+      <Normal> { -0.267739 -0.932127 0.243751 }
+    }
+    <Vertex> 4313 {
+      -1.46240580082 0.275438755751 1.92185521126
+      <UV>  {
+        0.556085 0.191242
+        <Tangent> { -0.359490 0.933149 0.000000 }
+        <Binormal> { 0.278603 0.107330 -0.514074 }
+      }
+      <Normal> { 0.768761 -0.565508 0.298563 }
+    }
+    <Vertex> 4314 {
+      -1.37980973721 0.323580145836 2.19494366646
+      <UV>  {
+        0.570814 0.258499
+        <Tangent> { -0.490646 0.871359 0.000000 }
+        <Binormal> { 0.218059 0.122785 -0.399579 }
+      }
+      <Normal> { 0.780847 -0.572344 0.250252 }
+    }
+    <Vertex> 4315 {
+      -1.37980973721 0.323580145836 2.19494366646
+      <UV>  {
+        0.570814 0.258499
+        <Tangent> { -0.490646 0.871359 0.000000 }
+        <Binormal> { 0.218059 0.122785 -0.399579 }
+      }
+      <Normal> { 0.780847 -0.572344 0.250252 }
+    }
+    <Vertex> 4316 {
+      -1.46240580082 0.275438755751 1.92185521126
+      <UV>  {
+        0.556085 0.191242
+        <Tangent> { -0.359490 0.933149 0.000000 }
+        <Binormal> { 0.278603 0.107330 -0.514074 }
+      }
+      <Normal> { 0.768761 -0.565508 0.298563 }
+    }
+    <Vertex> 4317 {
+      -1.3977534771 0.271940916777 1.90220248699
+      <UV>  {
+        0.567614 0.186402
+        <Tangent> { -0.990127 -0.140170 0.000000 }
+        <Binormal> { -0.018027 0.127336 -0.061989 }
+      }
+      <Normal> { 0.971282 0.200110 0.128605 }
+    }
+    <Vertex> 4318 {
+      -1.32158434391 0.323580175638 2.17696619034
+      <UV>  {
+        0.581197 0.254072
+        <Tangent> { -0.978274 -0.207317 0.000000 }
+        <Binormal> { -0.014388 0.067892 0.009959 }
+      }
+      <Normal> { 0.977905 0.197058 0.069399 }
+    }
+    <Vertex> 4319 {
+      -1.32056105137 0.625500500202 2.17665028572
+      <UV>  {
+        0.581379 0.253994
+        <Tangent> { 0.998303 -0.058236 0.000000 }
+        <Binormal> { 0.008143 0.139598 -0.048215 }
+      }
+      <Normal> { -0.990112 0.009461 -0.139836 }
+    }
+    <Vertex> 4320 {
+      -1.39661681652 0.601937353611 1.84311294556
+      <UV>  {
+        0.567817 0.171850
+        <Tangent> { 0.904383 -0.426721 0.000000 }
+        <Binormal> { 0.032870 0.069663 -0.394850 }
+      }
+      <Normal> { -0.996460 0.033570 -0.077029 }
+    }
+    <Vertex> 4321 {
+      -1.51551508904 0.479100108147 1.90226304531
+      <UV>  {
+        0.546614 0.186417
+        <Tangent> { 0.156172 0.987730 -0.000000 }
+        <Binormal> { 0.240760 -0.038067 0.118882 }
+      }
+      <Normal> { -0.267739 -0.932127 0.243751 }
+    }
+    <Vertex> 4322 {
+      -1.42763996124 0.507250905037 2.20971155167
+      <UV>  {
+        0.562284 0.262136
+        <Tangent> { 0.000001 1.000000 0.000000 }
+        <Binormal> { 0.211341 -0.000000 0.255531 }
+      }
+      <Normal> { -0.255531 -0.943388 0.211341 }
+    }
+    <Vertex> 4323 {
+      -1.22362744808 0.505515754223 2.14672136307
+      <UV>  {
+        0.598665 0.246623
+        <Tangent> { 0.000002 -1.000000 0.000000 }
+        <Binormal> { 0.276253 0.000001 -0.313148 }
+      }
+      <Normal> { -0.313150 0.908597 -0.276254 }
+    }
+    <Vertex> 4324 {
+      -1.2889841795 0.464947402477 1.83373999596
+      <UV>  {
+        0.587010 0.169541
+        <Tangent> { -0.020430 -0.999791 0.000000 }
+        <Binormal> { 0.231221 -0.004725 -0.328661 }
+      }
+      <Normal> { -0.309885 0.922208 -0.231269 }
+    }
+    <Vertex> 4325 {
+      -1.39661681652 0.601937353611 1.84311294556
+      <UV>  {
+        0.567817 0.171850
+        <Tangent> { 0.904383 -0.426721 0.000000 }
+        <Binormal> { 0.032870 0.069663 -0.394850 }
+      }
+      <Normal> { -0.996460 0.033570 -0.077029 }
+    }
+    <Vertex> 4326 {
+      -1.32056105137 0.625500500202 2.17665028572
+      <UV>  {
+        0.581379 0.253994
+        <Tangent> { 0.998303 -0.058236 0.000000 }
+        <Binormal> { 0.008143 0.139598 -0.048215 }
+      }
+      <Normal> { -0.990112 0.009461 -0.139836 }
+    }
+    <Vertex> 4327 {
+      -1.22770380974 0.36115694046 2.14797997475
+      <UV>  {
+        0.597938 0.246933
+        <Tangent> { -0.073494 -0.997296 0.000000 }
+        <Binormal> { 0.133066 -0.009806 0.521686 }
+      }
+      <Normal> { 0.582202 0.801996 -0.133427 }
+    }
+    <Vertex> 4328 {
+      -1.2935103178 0.307379871607 1.86320352554
+      <UV>  {
+        0.586203 0.176798
+        <Tangent> { -0.193729 -0.981055 -0.000001 }
+        <Binormal> { 0.074073 -0.014628 0.417289 }
+      }
+      <Normal> { 0.584826 0.807611 -0.075503 }
+    }
+    <Vertex> 4329 {
+      -1.2889841795 0.464947402477 1.83373999596
+      <UV>  {
+        0.587010 0.169541
+        <Tangent> { -0.020430 -0.999791 0.000000 }
+        <Binormal> { 0.231221 -0.004725 -0.328661 }
+      }
+      <Normal> { -0.309885 0.922208 -0.231269 }
+    }
+    <Vertex> 4330 {
+      -1.22362744808 0.505515754223 2.14672136307
+      <UV>  {
+        0.598665 0.246623
+        <Tangent> { 0.000002 -1.000000 0.000000 }
+        <Binormal> { 0.276253 0.000001 -0.313148 }
+      }
+      <Normal> { -0.313150 0.908597 -0.276254 }
+    }
+    <Vertex> 4331 {
+      -1.2770768404 0.333747625351 2.3424911499
+      <UV>  {
+        0.589134 0.294838
+        <Tangent> { -0.978858 -0.204539 0.000002 }
+        <Binormal> { 0.003914 -0.018729 0.051751 }
+      }
+      <Normal> { 0.987945 0.153569 -0.019135 }
+    }
+    <Vertex> 4332 {
+      -1.32158434391 0.323580175638 2.17696619034
+      <UV>  {
+        0.581197 0.254072
+        <Tangent> { -0.978274 -0.207317 0.000000 }
+        <Binormal> { -0.014388 0.067892 0.009959 }
+      }
+      <Normal> { 0.977905 0.197058 0.069399 }
+    }
+    <Vertex> 4333 {
+      -1.22770380974 0.36115694046 2.14797997475
+      <UV>  {
+        0.597938 0.246933
+        <Tangent> { -0.073494 -0.997296 0.000000 }
+        <Binormal> { 0.133066 -0.009806 0.521686 }
+      }
+      <Normal> { 0.582202 0.801996 -0.133427 }
+    }
+    <Vertex> 4334 {
+      -1.17178046703 0.375529587269 2.3399617672
+      <UV>  {
+        0.607911 0.294215
+        <Tangent> { -0.079536 -0.996832 -0.000000 }
+        <Binormal> { 0.258221 -0.020603 0.530135 }
+      }
+      <Normal> { 0.592669 0.762627 -0.259041 }
+    }
+    <Vertex> 4335 {
+      -1.39920830727 0.52942109108 2.32723879814
+      <UV>  {
+        0.567355 0.291081
+        <Tangent> { 0.000001 1.000000 -0.000000 }
+        <Binormal> { 0.239326 -0.000000 0.221655 }
+      }
+      <Normal> { -0.221656 -0.945280 0.239326 }
+    }
+    <Vertex> 4336 {
+      -1.42763996124 0.507250905037 2.20971155167
+      <UV>  {
+        0.562284 0.262136
+        <Tangent> { 0.000001 1.000000 0.000000 }
+        <Binormal> { 0.211341 -0.000000 0.255531 }
+      }
+      <Normal> { -0.255531 -0.943388 0.211341 }
+    }
+    <Vertex> 4337 {
+      -1.37980973721 0.323580145836 2.19494366646
+      <UV>  {
+        0.570814 0.258499
+        <Tangent> { -0.490646 0.871359 0.000000 }
+        <Binormal> { 0.218059 0.122785 -0.399579 }
+      }
+      <Normal> { 0.780847 -0.572344 0.250252 }
+    }
+    <Vertex> 4338 {
+      -1.34271013737 0.332866221666 2.3421933651
+      <UV>  {
+        0.577430 0.294764
+        <Tangent> { -0.494630 0.869104 0.000000 }
+        <Binormal> { 0.197735 0.112536 -0.412237 }
+      }
+      <Normal> { 0.794641 -0.562822 0.227515 }
+    }
+    <Vertex> 4339 {
+      -1.34271013737 0.332866221666 2.3421933651
+      <UV>  {
+        0.577430 0.294764
+        <Tangent> { -0.494630 0.869104 0.000000 }
+        <Binormal> { 0.197735 0.112536 -0.412237 }
+      }
+      <Normal> { 0.794641 -0.562822 0.227515 }
+    }
+    <Vertex> 4340 {
+      -1.37980973721 0.323580145836 2.19494366646
+      <UV>  {
+        0.570814 0.258499
+        <Tangent> { -0.490646 0.871359 0.000000 }
+        <Binormal> { 0.218059 0.122785 -0.399579 }
+      }
+      <Normal> { 0.780847 -0.572344 0.250252 }
+    }
+    <Vertex> 4341 {
+      -1.32158434391 0.323580175638 2.17696619034
+      <UV>  {
+        0.581197 0.254072
+        <Tangent> { -0.978274 -0.207317 0.000000 }
+        <Binormal> { -0.014388 0.067892 0.009959 }
+      }
+      <Normal> { 0.977905 0.197058 0.069399 }
+    }
+    <Vertex> 4342 {
+      -1.2770768404 0.333747625351 2.3424911499
+      <UV>  {
+        0.589134 0.294838
+        <Tangent> { -0.978858 -0.204539 0.000002 }
+        <Binormal> { 0.003914 -0.018729 0.051751 }
+      }
+      <Normal> { 0.987945 0.153569 -0.019135 }
+    }
+    <Vertex> 4343 {
+      -1.28016793728 0.658052742481 2.3183157444
+      <UV>  {
+        0.588583 0.288884
+        <Tangent> { 0.999984 0.005672 0.000000 }
+        <Binormal> { -0.001206 0.212680 -0.102861 }
+      }
+      <Normal> { -0.971068 -0.108371 -0.212683 }
+    }
+    <Vertex> 4344 {
+      -1.32056105137 0.625500500202 2.17665028572
+      <UV>  {
+        0.581379 0.253994
+        <Tangent> { 0.998303 -0.058236 0.000000 }
+        <Binormal> { 0.008143 0.139598 -0.048215 }
+      }
+      <Normal> { -0.990112 0.009461 -0.139836 }
+    }
+    <Vertex> 4345 {
+      -1.42763996124 0.507250905037 2.20971155167
+      <UV>  {
+        0.562284 0.262136
+        <Tangent> { 0.000001 1.000000 0.000000 }
+        <Binormal> { 0.211341 -0.000000 0.255531 }
+      }
+      <Normal> { -0.255531 -0.943388 0.211341 }
+    }
+    <Vertex> 4346 {
+      -1.39920830727 0.52942109108 2.32723879814
+      <UV>  {
+        0.567355 0.291081
+        <Tangent> { 0.000001 1.000000 -0.000000 }
+        <Binormal> { 0.239326 -0.000000 0.221655 }
+      }
+      <Normal> { -0.221656 -0.945280 0.239326 }
+    }
+    <Vertex> 4347 {
+      -1.16921508312 0.530645668507 2.32842087746
+      <UV>  {
+        0.608368 0.291372
+        <Tangent> { 0.037505 -0.999296 -0.000001 }
+        <Binormal> { 0.396432 0.014879 -0.334985 }
+      }
+      <Normal> { -0.366802 0.841456 -0.396710 }
+    }
+    <Vertex> 4348 {
+      -1.22362744808 0.505515754223 2.14672136307
+      <UV>  {
+        0.598665 0.246623
+        <Tangent> { 0.000002 -1.000000 0.000000 }
+        <Binormal> { 0.276253 0.000001 -0.313148 }
+      }
+      <Normal> { -0.313150 0.908597 -0.276254 }
+    }
+    <Vertex> 4349 {
+      -1.32056105137 0.625500500202 2.17665028572
+      <UV>  {
+        0.581379 0.253994
+        <Tangent> { 0.998303 -0.058236 0.000000 }
+        <Binormal> { 0.008143 0.139598 -0.048215 }
+      }
+      <Normal> { -0.990112 0.009461 -0.139836 }
+    }
+    <Vertex> 4350 {
+      -1.28016793728 0.658052742481 2.3183157444
+      <UV>  {
+        0.588583 0.288884
+        <Tangent> { 0.999984 0.005672 0.000000 }
+        <Binormal> { -0.001206 0.212680 -0.102861 }
+      }
+      <Normal> { -0.971068 -0.108371 -0.212683 }
+    }
+    <Vertex> 4351 {
+      -1.17178046703 0.375529587269 2.3399617672
+      <UV>  {
+        0.607911 0.294215
+        <Tangent> { -0.079536 -0.996832 -0.000000 }
+        <Binormal> { 0.258221 -0.020603 0.530135 }
+      }
+      <Normal> { 0.592669 0.762627 -0.259041 }
+    }
+    <Vertex> 4352 {
+      -1.22770380974 0.36115694046 2.14797997475
+      <UV>  {
+        0.597938 0.246933
+        <Tangent> { -0.073494 -0.997296 0.000000 }
+        <Binormal> { 0.133066 -0.009806 0.521686 }
+      }
+      <Normal> { 0.582202 0.801996 -0.133427 }
+    }
+    <Vertex> 4353 {
+      -1.22362744808 0.505515754223 2.14672136307
+      <UV>  {
+        0.598665 0.246623
+        <Tangent> { 0.000002 -1.000000 0.000000 }
+        <Binormal> { 0.276253 0.000001 -0.313148 }
+      }
+      <Normal> { -0.313150 0.908597 -0.276254 }
+    }
+    <Vertex> 4354 {
+      -1.16921508312 0.530645668507 2.32842087746
+      <UV>  {
+        0.608368 0.291372
+        <Tangent> { 0.037505 -0.999296 -0.000001 }
+        <Binormal> { 0.396432 0.014879 -0.334985 }
+      }
+      <Normal> { -0.366802 0.841456 -0.396710 }
+    }
+    <Vertex> 4355 {
+      -1.18476033211 0.346534639597 2.51865816116
+      <UV>  {
+        0.605596 0.338225
+        <Tangent> { -0.924914 0.380176 0.000001 }
+        <Binormal> { -0.009978 -0.024274 -0.189064 }
+      }
+      <Normal> { 0.979766 -0.198309 -0.026246 }
+    }
+    <Vertex> 4356 {
+      -1.2770768404 0.333747625351 2.3424911499
+      <UV>  {
+        0.589134 0.294838
+        <Tangent> { -0.978858 -0.204539 0.000002 }
+        <Binormal> { 0.003914 -0.018729 0.051751 }
+      }
+      <Normal> { 0.987945 0.153569 -0.019135 }
+    }
+    <Vertex> 4357 {
+      -1.17178046703 0.375529587269 2.3399617672
+      <UV>  {
+        0.607911 0.294215
+        <Tangent> { -0.079536 -0.996832 -0.000000 }
+        <Binormal> { 0.258221 -0.020603 0.530135 }
+      }
+      <Normal> { 0.592669 0.762627 -0.259041 }
+    }
+    <Vertex> 4358 {
+      -1.13067364693 0.353033930063 2.40944695473
+      <UV>  {
+        0.615241 0.311328
+        <Tangent> { -0.474669 -0.880164 -0.000001 }
+        <Binormal> { 0.262112 -0.141357 0.950311 }
+      }
+      <Normal> { 0.793451 -0.530778 -0.297800 }
+    }
+    <Vertex> 4359 {
+      -1.29005539417 0.553441524506 2.6405684948
+      <UV>  {
+        0.586819 0.368249
+        <Tangent> { -0.085397 0.996347 -0.000000 }
+        <Binormal> { 0.668042 0.057258 0.427901 }
+      }
+      <Normal> { -0.374584 -0.640370 0.670492 }
+    }
+    <Vertex> 4360 {
+      -1.39920830727 0.52942109108 2.32723879814
+      <UV>  {
+        0.567355 0.291081
+        <Tangent> { 0.000001 1.000000 -0.000000 }
+        <Binormal> { 0.239326 -0.000000 0.221655 }
+      }
+      <Normal> { -0.221656 -0.945280 0.239326 }
+    }
+    <Vertex> 4361 {
+      -1.34271013737 0.332866221666 2.3421933651
+      <UV>  {
+        0.577430 0.294764
+        <Tangent> { -0.494630 0.869104 0.000000 }
+        <Binormal> { 0.197735 0.112536 -0.412237 }
+      }
+      <Normal> { 0.794641 -0.562822 0.227515 }
+    }
+    <Vertex> 4362 {
+      -1.24444425106 0.346534639597 2.58475875854
+      <UV>  {
+        0.594953 0.354504
+        <Tangent> { -0.745666 0.666320 0.000001 }
+        <Binormal> { 0.255287 0.285688 -0.217503 }
+      }
+      <Normal> { 0.814295 -0.435957 0.383129 }
+    }
+    <Vertex> 4363 {
+      -1.24444425106 0.346534639597 2.58475875854
+      <UV>  {
+        0.594953 0.354504
+        <Tangent> { -0.745666 0.666320 0.000001 }
+        <Binormal> { 0.255287 0.285688 -0.217503 }
+      }
+      <Normal> { 0.814295 -0.435957 0.383129 }
+    }
+    <Vertex> 4364 {
+      -1.34271013737 0.332866221666 2.3421933651
+      <UV>  {
+        0.577430 0.294764
+        <Tangent> { -0.494630 0.869104 0.000000 }
+        <Binormal> { 0.197735 0.112536 -0.412237 }
+      }
+      <Normal> { 0.794641 -0.562822 0.227515 }
+    }
+    <Vertex> 4365 {
+      -1.2770768404 0.333747625351 2.3424911499
+      <UV>  {
+        0.589134 0.294838
+        <Tangent> { -0.978858 -0.204539 0.000002 }
+        <Binormal> { 0.003914 -0.018729 0.051751 }
+      }
+      <Normal> { 0.987945 0.153569 -0.019135 }
+    }
+    <Vertex> 4366 {
+      -1.18476033211 0.346534639597 2.51865816116
+      <UV>  {
+        0.605596 0.338225
+        <Tangent> { -0.924914 0.380176 0.000001 }
+        <Binormal> { -0.009978 -0.024274 -0.189064 }
+      }
+      <Normal> { 0.979766 -0.198309 -0.026246 }
+    }
+    <Vertex> 4367 {
+      -1.23289883137 0.686650812626 2.49576497078
+      <UV>  {
+        0.597012 0.332586
+        <Tangent> { 0.777539 0.628834 0.000000 }
+        <Binormal> { 0.029343 -0.036282 0.257319 }
+      }
+      <Normal> { -0.912290 -0.406873 0.046663 }
+    }
+    <Vertex> 4368 {
+      -1.28016793728 0.658052742481 2.3183157444
+      <UV>  {
+        0.588583 0.288884
+        <Tangent> { 0.999984 0.005672 0.000000 }
+        <Binormal> { -0.001206 0.212680 -0.102861 }
+      }
+      <Normal> { -0.971068 -0.108371 -0.212683 }
+    }
+    <Vertex> 4369 {
+      -1.39920830727 0.52942109108 2.32723879814
+      <UV>  {
+        0.567355 0.291081
+        <Tangent> { 0.000001 1.000000 -0.000000 }
+        <Binormal> { 0.239326 -0.000000 0.221655 }
+      }
+      <Normal> { -0.221656 -0.945280 0.239326 }
+    }
+    <Vertex> 4370 {
+      -1.29005539417 0.553441524506 2.6405684948
+      <UV>  {
+        0.586819 0.368249
+        <Tangent> { -0.085397 0.996347 -0.000000 }
+        <Binormal> { 0.668042 0.057258 0.427901 }
+      }
+      <Normal> { -0.374584 -0.640370 0.670492 }
+    }
+    <Vertex> 4371 {
+      -1.17574238777 0.60936820507 2.35096120834
+      <UV>  {
+        0.607204 0.296924
+        <Tangent> { 0.527684 0.849441 0.000001 }
+        <Binormal> { -0.500015 0.310616 0.221739 }
+      }
+      <Normal> { -0.598559 -0.543321 -0.588641 }
+    }
+    <Vertex> 4372 {
+      -1.16921508312 0.530645668507 2.32842087746
+      <UV>  {
+        0.608368 0.291372
+        <Tangent> { 0.037505 -0.999296 -0.000001 }
+        <Binormal> { 0.396432 0.014879 -0.334985 }
+      }
+      <Normal> { -0.366802 0.841456 -0.396710 }
+    }
+    <Vertex> 4373 {
+      -1.28016793728 0.658052742481 2.3183157444
+      <UV>  {
+        0.588583 0.288884
+        <Tangent> { 0.999984 0.005672 0.000000 }
+        <Binormal> { -0.001206 0.212680 -0.102861 }
+      }
+      <Normal> { -0.971068 -0.108371 -0.212683 }
+    }
+    <Vertex> 4374 {
+      -1.23289883137 0.686650812626 2.49576497078
+      <UV>  {
+        0.597012 0.332586
+        <Tangent> { 0.777539 0.628834 0.000000 }
+        <Binormal> { 0.029343 -0.036282 0.257319 }
+      }
+      <Normal> { -0.912290 -0.406873 0.046663 }
+    }
+    <Vertex> 4375 {
+      -1.13067364693 0.353033930063 2.40944695473
+      <UV>  {
+        0.615241 0.311328
+        <Tangent> { -0.474669 -0.880164 -0.000001 }
+        <Binormal> { 0.262112 -0.141357 0.950311 }
+      }
+      <Normal> { 0.793451 -0.530778 -0.297800 }
+    }
+    <Vertex> 4376 {
+      -1.17178046703 0.375529587269 2.3399617672
+      <UV>  {
+        0.607911 0.294215
+        <Tangent> { -0.079536 -0.996832 -0.000000 }
+        <Binormal> { 0.258221 -0.020603 0.530135 }
+      }
+      <Normal> { 0.592669 0.762627 -0.259041 }
+    }
+    <Vertex> 4377 {
+      -1.16921508312 0.530645668507 2.32842087746
+      <UV>  {
+        0.608368 0.291372
+        <Tangent> { 0.037505 -0.999296 -0.000001 }
+        <Binormal> { 0.396432 0.014879 -0.334985 }
+      }
+      <Normal> { -0.366802 0.841456 -0.396710 }
+    }
+    <Vertex> 4378 {
+      -1.17574238777 0.60936820507 2.35096120834
+      <UV>  {
+        0.607204 0.296924
+        <Tangent> { 0.527684 0.849441 0.000001 }
+        <Binormal> { -0.500015 0.310616 0.221739 }
+      }
+      <Normal> { -0.598559 -0.543321 -0.588641 }
+    }
+    <Vertex> 4379 {
+      -1.12863707542 0.262316524982 2.51226186752
+      <UV>  {
+        0.615605 0.336649
+        <Tangent> { -0.197553 0.980292 -0.000011 }
+        <Binormal> { -0.025408 -0.005126 -0.457018 }
+      }
+      <Normal> { 0.623646 -0.781243 -0.025910 }
+    }
+    <Vertex> 4380 {
+      -1.09738719463 0.332037091255 2.56220006943
+      <UV>  {
+        0.621177 0.348948
+        <Tangent> { -0.095998 0.995382 -0.000005 }
+        <Binormal> { 0.099514 0.009594 -0.710623 }
+      }
+      <Normal> { 0.774194 -0.624958 0.099979 }
+    }
+    <Vertex> 4381 {
+      -1.18476033211 0.346534639597 2.51865816116
+      <UV>  {
+        0.605596 0.338225
+        <Tangent> { -0.924914 0.380176 0.000001 }
+        <Binormal> { -0.009978 -0.024274 -0.189064 }
+      }
+      <Normal> { 0.979766 -0.198309 -0.026246 }
+    }
+    <Vertex> 4382 {
+      -1.13067364693 0.353033930063 2.40944695473
+      <UV>  {
+        0.615241 0.311328
+        <Tangent> { -0.474669 -0.880164 -0.000001 }
+        <Binormal> { 0.262112 -0.141357 0.950311 }
+      }
+      <Normal> { 0.793451 -0.530778 -0.297800 }
+    }
+    <Vertex> 4383 {
+      -1.15707170963 0.332037091255 2.62830042839
+      <UV>  {
+        0.610534 0.365228
+        <Tangent> { -0.635894 0.771777 0.000001 }
+        <Binormal> { 0.268651 0.221351 -0.267224 }
+      }
+      <Normal> { 0.777612 -0.523545 0.348094 }
+    }
+    <Vertex> 4384 {
+      -1.17065942287 0.553441524506 2.67915606499
+      <UV>  {
+        0.608111 0.377753
+        <Tangent> { 0.000002 1.000000 -0.000003 }
+        <Binormal> { 0.724447 -0.000000 0.403332 }
+      }
+      <Normal> { -0.403333 -0.558977 0.724448 }
+    }
+    <Vertex> 4385 {
+      -1.29005539417 0.553441524506 2.6405684948
+      <UV>  {
+        0.586819 0.368249
+        <Tangent> { -0.085397 0.996347 -0.000000 }
+        <Binormal> { 0.668042 0.057258 0.427901 }
+      }
+      <Normal> { -0.374584 -0.640370 0.670492 }
+    }
+    <Vertex> 4386 {
+      -1.24444425106 0.346534639597 2.58475875854
+      <UV>  {
+        0.594953 0.354504
+        <Tangent> { -0.745666 0.666320 0.000001 }
+        <Binormal> { 0.255287 0.285688 -0.217503 }
+      }
+      <Normal> { 0.814295 -0.435957 0.383129 }
+    }
+    <Vertex> 4387 {
+      -1.15707170963 0.332037091255 2.62830042839
+      <UV>  {
+        0.610534 0.365228
+        <Tangent> { -0.635894 0.771777 0.000001 }
+        <Binormal> { 0.268651 0.221351 -0.267224 }
+      }
+      <Normal> { 0.777612 -0.523545 0.348094 }
+    }
+    <Vertex> 4388 {
+      -1.24444425106 0.346534639597 2.58475875854
+      <UV>  {
+        0.594953 0.354504
+        <Tangent> { -0.745666 0.666320 0.000001 }
+        <Binormal> { 0.255287 0.285688 -0.217503 }
+      }
+      <Normal> { 0.814295 -0.435957 0.383129 }
+    }
+    <Vertex> 4389 {
+      -1.18476033211 0.346534639597 2.51865816116
+      <UV>  {
+        0.605596 0.338225
+        <Tangent> { -0.924914 0.380176 0.000001 }
+        <Binormal> { -0.009978 -0.024274 -0.189064 }
+      }
+      <Normal> { 0.979766 -0.198309 -0.026246 }
+    }
+    <Vertex> 4390 {
+      -1.09738719463 0.332037091255 2.56220006943
+      <UV>  {
+        0.621177 0.348948
+        <Tangent> { -0.095998 0.995382 -0.000005 }
+        <Binormal> { 0.099514 0.009594 -0.710623 }
+      }
+      <Normal> { 0.774194 -0.624958 0.099979 }
+    }
+    <Vertex> 4391 {
+      -1.01693797112 0.257360965014 2.38021206856
+      <UV>  {
+        0.635523 0.304128
+        <Tangent> { -0.786703 0.617332 -0.000002 }
+        <Binormal> { -0.228569 -0.291279 -0.025337 }
+      }
+      <Normal> { 0.746147 -0.553301 -0.370251 }
+    }
+    <Vertex> 4392 {
+      -1.12863707542 0.262316524982 2.51226186752
+      <UV>  {
+        0.615605 0.336649
+        <Tangent> { -0.197553 0.980292 -0.000011 }
+        <Binormal> { -0.025408 -0.005126 -0.457018 }
+      }
+      <Normal> { 0.623646 -0.781243 -0.025910 }
+    }
+    <Vertex> 4393 {
+      -1.13067364693 0.353033930063 2.40944695473
+      <UV>  {
+        0.615241 0.311328
+        <Tangent> { -0.474669 -0.880164 -0.000001 }
+        <Binormal> { 0.262112 -0.141357 0.950311 }
+      }
+      <Normal> { 0.793451 -0.530778 -0.297800 }
+    }
+    <Vertex> 4394 {
+      -1.01693797112 0.257360965014 2.38021206856
+      <UV>  {
+        0.635523 0.304128
+        <Tangent> { -0.786703 0.617332 -0.000002 }
+        <Binormal> { -0.228569 -0.291279 -0.025337 }
+      }
+      <Normal> { 0.746147 -0.553301 -0.370251 }
+    }
+    <Vertex> 4395 {
+      -1.13067364693 0.353033930063 2.40944695473
+      <UV>  {
+        0.615241 0.311328
+        <Tangent> { -0.474669 -0.880164 -0.000001 }
+        <Binormal> { 0.262112 -0.141357 0.950311 }
+      }
+      <Normal> { 0.793451 -0.530778 -0.297800 }
+    }
+    <Vertex> 4396 {
+      -0.945782721043 0.239068865776 2.29864048958
+      <UV>  {
+        0.648212 0.284038
+        <Tangent> { -0.814765 0.579792 -0.000006 }
+        <Binormal> { -0.117830 -0.165584 -0.031149 }
+      }
+      <Normal> { 0.815394 -0.542009 -0.203223 }
+    }
+    <Vertex> 4397 {
+      -0.945381581783 0.242823407054 1.98095083237
+      <UV>  {
+        0.648284 0.205797
+        <Tangent> { -0.898934 0.438085 0.000000 }
+        <Binormal> { -0.001484 -0.003045 0.032492 }
+      }
+      <Normal> { 0.884213 -0.467055 -0.003388 }
+    }
+    <Vertex> 4398 {
+      -0.811058819294 0.193938553333 1.93732297421
+      <UV>  {
+        0.672237 0.195052
+        <Tangent> { -0.989569 0.144057 0.000000 }
+        <Binormal> { 0.000422 0.002899 0.020005 }
+      }
+      <Normal> { 0.986480 -0.163823 0.002930 }
+    }
+    <Vertex> 4399 {
+      -0.811058819294 0.193938553333 2.13745093346
+      <UV>  {
+        0.672237 0.244340
+        <Tangent> { -0.979178 0.203005 -0.000002 }
+        <Binormal> { -0.054718 -0.263929 0.048896 }
+      }
+      <Normal> { 0.931761 -0.243110 -0.269539 }
+    }
+    <Vertex> 4400 {
+      -0.945782721043 0.239068865776 2.29864048958
+      <UV>  {
+        0.648212 0.284038
+        <Tangent> { -0.814765 0.579792 -0.000006 }
+        <Binormal> { -0.117830 -0.165584 -0.031149 }
+      }
+      <Normal> { 0.815394 -0.542009 -0.203223 }
+    }
+    <Vertex> 4401 {
+      -0.811058819294 0.193938553333 1.73719501495
+      <UV>  {
+        0.672237 0.145764
+        <Tangent> { -0.984745 0.174004 -0.000000 }
+        <Binormal> { 0.004078 0.023081 -0.050322 }
+      }
+      <Normal> { 0.991974 -0.124180 0.023438 }
+    }
+    <Vertex> 4402 {
+      -0.811058819294 0.193938553333 1.93732297421
+      <UV>  {
+        0.672237 0.195052
+        <Tangent> { -0.989569 0.144057 0.000000 }
+        <Binormal> { 0.000422 0.002899 0.020005 }
+      }
+      <Normal> { 0.986480 -0.163823 0.002930 }
+    }
+    <Vertex> 4403 {
+      -0.945381581783 0.242823407054 1.98095083237
+      <UV>  {
+        0.648284 0.205797
+        <Tangent> { -0.898934 0.438085 0.000000 }
+        <Binormal> { -0.001484 -0.003045 0.032492 }
+      }
+      <Normal> { 0.884213 -0.467055 -0.003388 }
+    }
+    <Vertex> 4404 {
+      -0.972172021866 0.242823392153 1.73511087894
+      <UV>  {
+        0.643506 0.145251
+        <Tangent> { -0.798005 0.602651 -0.000000 }
+        <Binormal> { 0.039156 0.051849 -0.139007 }
+      }
+      <Normal> { 0.872311 -0.484573 0.064974 }
+    }
+    <Vertex> 4405 {
+      -1.23289883137 0.686650812626 2.49576497078
+      <UV>  {
+        0.597012 0.332586
+        <Tangent> { 0.777539 0.628834 0.000000 }
+        <Binormal> { 0.029343 -0.036282 0.257319 }
+      }
+      <Normal> { -0.912290 -0.406873 0.046663 }
+    }
+    <Vertex> 4406 {
+      -1.07096540928 0.78954154253 2.29773759842
+      <UV>  {
+        0.625889 0.283816
+        <Tangent> { 0.684976 0.728566 -0.000000 }
+        <Binormal> { 0.059900 -0.056316 0.201738 }
+      }
+      <Normal> { -0.815485 -0.572863 0.082217 }
+    }
+    <Vertex> 4407 {
+      -1.17574238777 0.60936820507 2.35096120834
+      <UV>  {
+        0.607204 0.296924
+        <Tangent> { 0.527684 0.849441 0.000001 }
+        <Binormal> { -0.500015 0.310616 0.221739 }
+      }
+      <Normal> { -0.598559 -0.543321 -0.588641 }
+    }
+    <Vertex> 4408 {
+      -1.29005539417 0.553441524506 2.6405684948
+      <UV>  {
+        0.586819 0.368249
+        <Tangent> { -0.085397 0.996347 -0.000000 }
+        <Binormal> { 0.668042 0.057258 0.427901 }
+      }
+      <Normal> { -0.374584 -0.640370 0.670492 }
+    }
+    <Vertex> 4409 {
+      -1.12625908852 0.650411248207 2.6022465229
+      <UV>  {
+        0.616029 0.358811
+        <Tangent> { 0.921269 0.388927 -0.000001 }
+        <Binormal> { 0.194327 -0.460310 0.040536 }
+      }
+      <Normal> { -0.812891 -0.299173 0.499649 }
+    }
+    <Vertex> 4410 {
+      -1.23289883137 0.686650812626 2.49576497078
+      <UV>  {
+        0.597012 0.332586
+        <Tangent> { 0.777539 0.628834 0.000000 }
+        <Binormal> { 0.029343 -0.036282 0.257319 }
+      }
+      <Normal> { -0.912290 -0.406873 0.046663 }
+    }
+    <Vertex> 4411 {
+      -1.23289883137 0.686650812626 2.49576497078
+      <UV>  {
+        0.597012 0.332586
+        <Tangent> { 0.777539 0.628834 0.000000 }
+        <Binormal> { 0.029343 -0.036282 0.257319 }
+      }
+      <Normal> { -0.912290 -0.406873 0.046663 }
+    }
+    <Vertex> 4412 {
+      -1.12625908852 0.650411248207 2.6022465229
+      <UV>  {
+        0.616029 0.358811
+        <Tangent> { 0.921269 0.388927 -0.000001 }
+        <Binormal> { 0.194327 -0.460310 0.040536 }
+      }
+      <Normal> { -0.812891 -0.299173 0.499649 }
+    }
+    <Vertex> 4413 {
+      -1.07096540928 0.78954154253 2.29773759842
+      <UV>  {
+        0.625889 0.283816
+        <Tangent> { 0.684976 0.728566 -0.000000 }
+        <Binormal> { 0.059900 -0.056316 0.201738 }
+      }
+      <Normal> { -0.815485 -0.572863 0.082217 }
+    }
+    <Vertex> 4414 {
+      -1.07096540928 0.78954154253 2.29773759842
+      <UV>  {
+        0.625889 0.283816
+        <Tangent> { 0.684976 0.728566 -0.000000 }
+        <Binormal> { 0.059900 -0.056316 0.201738 }
+      }
+      <Normal> { -0.815485 -0.572863 0.082217 }
+    }
+    <Vertex> 4415 {
+      -1.12625908852 0.650411248207 2.6022465229
+      <UV>  {
+        0.616029 0.358811
+        <Tangent> { 0.921269 0.388927 -0.000001 }
+        <Binormal> { 0.194327 -0.460310 0.040536 }
+      }
+      <Normal> { -0.812891 -0.299173 0.499649 }
+    }
+    <Vertex> 4416 {
+      -0.962463319302 0.747381031513 2.56392455101
+      <UV>  {
+        0.645238 0.349373
+        <Tangent> { 0.897380 0.441259 -0.000001 }
+        <Binormal> { 0.127892 -0.260091 0.015805 }
+      }
+      <Normal> { -0.865688 -0.408063 0.289834 }
+    }
+    <Vertex> 4417 {
+      -0.904786109924 0.848143100739 2.29773759842
+      <UV>  {
+        0.655523 0.283816
+        <Tangent> { 0.963060 0.269286 -0.000000 }
+        <Binormal> { 0.046597 -0.166648 -0.003668 }
+      }
+      <Normal> { -0.947508 -0.268746 0.173040 }
+    }
+    <Vertex> 4418 {
+      -0.904786109924 0.848143100739 2.29773759842
+      <UV>  {
+        0.655523 0.283816
+        <Tangent> { 0.963060 0.269286 -0.000000 }
+        <Binormal> { 0.046597 -0.166648 -0.003668 }
+      }
+      <Normal> { -0.947508 -0.268746 0.173040 }
+    }
+    <Vertex> 4419 {
+      -0.962463319302 0.747381031513 2.56392455101
+      <UV>  {
+        0.645238 0.349373
+        <Tangent> { 0.897380 0.441259 -0.000001 }
+        <Binormal> { 0.127892 -0.260091 0.015805 }
+      }
+      <Normal> { -0.865688 -0.408063 0.289834 }
+    }
+    <Vertex> 4420 {
+      -0.799244344234 0.844350874424 2.52560257912
+      <UV>  {
+        0.674344 0.339935
+        <Tangent> { 1.000000 0.000703 -0.000000 }
+        <Binormal> { 0.000148 -0.211096 -0.000076 }
+      }
+      <Normal> { -0.977447 -0.000763 0.211097 }
+    }
+    <Vertex> 4421 {
+      -0.79939943552 0.852555811405 2.29773759842
+      <UV>  {
+        0.674316 0.283816
+        <Tangent> { 1.000000 0.000117 0.000000 }
+        <Binormal> { 0.000017 -0.144353 -0.000312 }
+      }
+      <Normal> { -0.989502 -0.000427 0.144353 }
+    }
+    <Vertex> 4422 {
+      -0.962463319302 0.747381031513 2.56392455101
+      <UV>  {
+        0.645238 0.349373
+        <Tangent> { 0.897380 0.441259 -0.000001 }
+        <Binormal> { 0.127892 -0.260091 0.015805 }
+      }
+      <Normal> { -0.865688 -0.408063 0.289834 }
+    }
+    <Vertex> 4423 {
+      -0.799244344234 0.811275839806 2.65514659882
+      <UV>  {
+        0.674344 0.371839
+        <Tangent> { 1.000000 0.000551 0.000000 }
+        <Binormal> { 0.000248 -0.450636 0.000034 }
+      }
+      <Normal> { -0.892697 -0.000458 0.450636 }
+    }
+    <Vertex> 4424 {
+      -0.799244344234 0.844350874424 2.52560257912
+      <UV>  {
+        0.674344 0.339935
+        <Tangent> { 1.000000 0.000703 -0.000000 }
+        <Binormal> { 0.000148 -0.211096 -0.000076 }
+      }
+      <Normal> { -0.977447 -0.000763 0.211097 }
+    }
+    <Vertex> 4425 {
+      -1.29005539417 0.553441524506 2.6405684948
+      <UV>  {
+        0.586819 0.368249
+        <Tangent> { -0.085397 0.996347 -0.000000 }
+        <Binormal> { 0.668042 0.057258 0.427901 }
+      }
+      <Normal> { -0.374584 -0.640370 0.670492 }
+    }
+    <Vertex> 4426 {
+      -1.17065942287 0.553441524506 2.67915606499
+      <UV>  {
+        0.608111 0.377753
+        <Tangent> { 0.000002 1.000000 -0.000003 }
+        <Binormal> { 0.724447 -0.000000 0.403332 }
+      }
+      <Normal> { -0.403333 -0.558977 0.724448 }
+    }
+    <Vertex> 4427 {
+      -1.12625908852 0.650411248207 2.6022465229
+      <UV>  {
+        0.616029 0.358811
+        <Tangent> { 0.921269 0.388927 -0.000001 }
+        <Binormal> { 0.194327 -0.460310 0.040536 }
+      }
+      <Normal> { -0.812891 -0.299173 0.499649 }
+    }
+    <Vertex> 4428 {
+      -1.12625908852 0.650411248207 2.6022465229
+      <UV>  {
+        0.616029 0.358811
+        <Tangent> { 0.921269 0.388927 -0.000001 }
+        <Binormal> { 0.194327 -0.460310 0.040536 }
+      }
+      <Normal> { -0.812891 -0.299173 0.499649 }
+    }
+    <Vertex> 4429 {
+      -1.17065942287 0.553441524506 2.67915606499
+      <UV>  {
+        0.608111 0.377753
+        <Tangent> { 0.000002 1.000000 -0.000003 }
+        <Binormal> { 0.724447 -0.000000 0.403332 }
+      }
+      <Normal> { -0.403333 -0.558977 0.724448 }
+    }
+    <Vertex> 4430 {
+      -0.799244344234 0.811275839806 2.65514659882
+      <UV>  {
+        0.674344 0.371839
+        <Tangent> { 1.000000 0.000551 0.000000 }
+        <Binormal> { 0.000248 -0.450636 0.000034 }
+      }
+      <Normal> { -0.892697 -0.000458 0.450636 }
+    }
+    <Vertex> 4431 {
+      -0.962463319302 0.747381031513 2.56392455101
+      <UV>  {
+        0.645238 0.349373
+        <Tangent> { 0.897380 0.441259 -0.000001 }
+        <Binormal> { 0.127892 -0.260091 0.015805 }
+      }
+      <Normal> { -0.865688 -0.408063 0.289834 }
+    }
+    <Vertex> 4432 {
+      -0.900494158268 0.886614203453 1.98095083237
+      <UV>  {
+        0.656289 0.205797
+        <Tangent> { 0.989715 0.143055 0.000000 }
+        <Binormal> { 0.013464 -0.093151 -0.001249 }
+      }
+      <Normal> { -0.985107 -0.143651 0.094119 }
+    }
+    <Vertex> 4433 {
+      -0.904786109924 0.848143100739 2.29773759842
+      <UV>  {
+        0.655523 0.283816
+        <Tangent> { 0.963060 0.269286 -0.000000 }
+        <Binormal> { 0.046597 -0.166648 -0.003668 }
+      }
+      <Normal> { -0.947508 -0.268746 0.173040 }
+    }
+    <Vertex> 4434 {
+      -0.79939943552 0.852555811405 2.29773759842
+      <UV>  {
+        0.674316 0.283816
+        <Tangent> { 1.000000 0.000117 0.000000 }
+        <Binormal> { 0.000017 -0.144353 -0.000312 }
+      }
+      <Normal> { -0.989502 -0.000427 0.144353 }
+    }
+    <Vertex> 4435 {
+      -0.79939943552 0.886614203453 1.98095083237
+      <UV>  {
+        0.674316 0.205797
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.071474 -0.000030 }
+      }
+      <Normal> { -0.997436 -0.000031 0.071474 }
+    }
+    <Vertex> 4436 {
+      -1.07634973526 0.823948204517 1.98095083237
+      <UV>  {
+        0.624929 0.205797
+        <Tangent> { 0.602979 0.797757 0.000000 }
+        <Binormal> { 0.093977 -0.071032 0.219804 }
+      }
+      <Normal> { -0.759270 -0.640004 0.117801 }
+    }
+    <Vertex> 4437 {
+      -1.07096540928 0.78954154253 2.29773759842
+      <UV>  {
+        0.625889 0.283816
+        <Tangent> { 0.684976 0.728566 -0.000000 }
+        <Binormal> { 0.059900 -0.056316 0.201738 }
+      }
+      <Normal> { -0.815485 -0.572863 0.082217 }
+    }
+    <Vertex> 4438 {
+      -0.904786109924 0.848143100739 2.29773759842
+      <UV>  {
+        0.655523 0.283816
+        <Tangent> { 0.963060 0.269286 -0.000000 }
+        <Binormal> { 0.046597 -0.166648 -0.003668 }
+      }
+      <Normal> { -0.947508 -0.268746 0.173040 }
+    }
+    <Vertex> 4439 {
+      -0.900494158268 0.886614203453 1.98095083237
+      <UV>  {
+        0.656289 0.205797
+        <Tangent> { 0.989715 0.143055 0.000000 }
+        <Binormal> { 0.013464 -0.093151 -0.001249 }
+      }
+      <Normal> { -0.985107 -0.143651 0.094119 }
+    }
+    <Vertex> 4440 {
+      -1.1690350771 0.642686128616 1.98095083237
+      <UV>  {
+        0.608401 0.205797
+        <Tangent> { -0.000001 1.000000 0.000000 }
+        <Binormal> { 0.059542 0.000000 0.116917 }
+      }
+      <Normal> { -0.116916 -0.991333 0.059542 }
+    }
+    <Vertex> 4441 {
+      -1.17574238777 0.60936820507 2.35096120834
+      <UV>  {
+        0.607204 0.296924
+        <Tangent> { 0.527684 0.849441 0.000001 }
+        <Binormal> { -0.500015 0.310616 0.221739 }
+      }
+      <Normal> { -0.598559 -0.543321 -0.588641 }
+    }
+    <Vertex> 4442 {
+      -1.07096540928 0.78954154253 2.29773759842
+      <UV>  {
+        0.625889 0.283816
+        <Tangent> { 0.684976 0.728566 -0.000000 }
+        <Binormal> { 0.059900 -0.056316 0.201738 }
+      }
+      <Normal> { -0.815485 -0.572863 0.082217 }
+    }
+    <Vertex> 4443 {
+      -1.07634973526 0.823948204517 1.98095083237
+      <UV>  {
+        0.624929 0.205797
+        <Tangent> { 0.602979 0.797757 0.000000 }
+        <Binormal> { 0.093977 -0.071032 0.219804 }
+      }
+      <Normal> { -0.759270 -0.640004 0.117801 }
+    }
+    <Vertex> 4444 {
+      -1.10903036594 0.35787281394 1.98095083237
+      <UV>  {
+        0.619101 0.205797
+        <Tangent> { -0.329322 0.944218 0.000000 }
+        <Binormal> { -0.000086 -0.000030 -0.232635 }
+      }
+      <Normal> { 0.539933 -0.841670 -0.000092 }
+    }
+    <Vertex> 4445 {
+      -1.13067364693 0.353033930063 2.40944695473
+      <UV>  {
+        0.615241 0.311328
+        <Tangent> { -0.474669 -0.880164 -0.000001 }
+        <Binormal> { 0.262112 -0.141357 0.950311 }
+      }
+      <Normal> { 0.793451 -0.530778 -0.297800 }
+    }
+    <Vertex> 4446 {
+      -1.17574238777 0.60936820507 2.35096120834
+      <UV>  {
+        0.607204 0.296924
+        <Tangent> { 0.527684 0.849441 0.000001 }
+        <Binormal> { -0.500015 0.310616 0.221739 }
+      }
+      <Normal> { -0.598559 -0.543321 -0.588641 }
+    }
+    <Vertex> 4447 {
+      -1.1690350771 0.642686128616 1.98095083237
+      <UV>  {
+        0.608401 0.205797
+        <Tangent> { -0.000001 1.000000 0.000000 }
+        <Binormal> { 0.059542 0.000000 0.116917 }
+      }
+      <Normal> { -0.116916 -0.991333 0.059542 }
+    }
+    <Vertex> 4448 {
+      -0.945381581783 0.242823407054 1.98095083237
+      <UV>  {
+        0.648284 0.205797
+        <Tangent> { -0.898934 0.438085 0.000000 }
+        <Binormal> { -0.001484 -0.003045 0.032492 }
+      }
+      <Normal> { 0.884213 -0.467055 -0.003388 }
+    }
+    <Vertex> 4449 {
+      -0.945782721043 0.239068865776 2.29864048958
+      <UV>  {
+        0.648212 0.284038
+        <Tangent> { -0.814765 0.579792 -0.000006 }
+        <Binormal> { -0.117830 -0.165584 -0.031149 }
+      }
+      <Normal> { 0.815394 -0.542009 -0.203223 }
+    }
+    <Vertex> 4450 {
+      -1.13067364693 0.353033930063 2.40944695473
+      <UV>  {
+        0.615241 0.311328
+        <Tangent> { -0.474669 -0.880164 -0.000001 }
+        <Binormal> { 0.262112 -0.141357 0.950311 }
+      }
+      <Normal> { 0.793451 -0.530778 -0.297800 }
+    }
+    <Vertex> 4451 {
+      -1.10903036594 0.35787281394 1.98095083237
+      <UV>  {
+        0.619101 0.205797
+        <Tangent> { -0.329322 0.944218 0.000000 }
+        <Binormal> { -0.000086 -0.000030 -0.232635 }
+      }
+      <Normal> { 0.539933 -0.841670 -0.000092 }
+    }
+    <Vertex> 4452 {
+      -0.900494158268 0.893809199333 1.73511087894
+      <UV>  {
+        0.656289 0.145251
+        <Tangent> { 0.999123 0.039661 -0.013448 }
+        <Binormal> { 0.001072 -0.042483 -0.045679 }
+      }
+      <Normal> { -0.994781 -0.085208 0.055910 }
+    }
+    <Vertex> 4453 {
+      -0.900494158268 0.886614203453 1.98095083237
+      <UV>  {
+        0.656289 0.205797
+        <Tangent> { 0.989715 0.143055 0.000000 }
+        <Binormal> { 0.013464 -0.093151 -0.001249 }
+      }
+      <Normal> { -0.985107 -0.143651 0.094119 }
+    }
+    <Vertex> 4454 {
+      -0.79939943552 0.886614203453 1.98095083237
+      <UV>  {
+        0.674316 0.205797
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.071474 -0.000030 }
+      }
+      <Normal> { -0.997436 -0.000031 0.071474 }
+    }
+    <Vertex> 4455 {
+      -0.79939943552 0.893809199333 1.73511087894
+      <UV>  {
+        0.674316 0.145251
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.031953 0.000031 }
+      }
+      <Normal> { -0.999481 0.000031 0.031953 }
+    }
+    <Vertex> 4456 {
+      -1.11637353897 0.869484186172 1.73511087894
+      <UV>  {
+        0.617791 0.145251
+        <Tangent> { 0.671056 0.741407 0.000000 }
+        <Binormal> { 0.085461 -0.077352 0.141854 }
+      }
+      <Normal> { -0.764916 -0.633717 0.115268 }
+    }
+    <Vertex> 4457 {
+      -1.07634973526 0.823948204517 1.98095083237
+      <UV>  {
+        0.624929 0.205797
+        <Tangent> { 0.602979 0.797757 0.000000 }
+        <Binormal> { 0.093977 -0.071032 0.219804 }
+      }
+      <Normal> { -0.759270 -0.640004 0.117801 }
+    }
+    <Vertex> 4458 {
+      -0.900494158268 0.886614203453 1.98095083237
+      <UV>  {
+        0.656289 0.205797
+        <Tangent> { 0.989715 0.143055 0.000000 }
+        <Binormal> { 0.013464 -0.093151 -0.001249 }
+      }
+      <Normal> { -0.985107 -0.143651 0.094119 }
+    }
+    <Vertex> 4459 {
+      -0.900494158268 0.893809199333 1.73511087894
+      <UV>  {
+        0.656289 0.145251
+        <Tangent> { 0.999123 0.039661 -0.013448 }
+        <Binormal> { 0.001072 -0.042483 -0.045679 }
+      }
+      <Normal> { -0.994781 -0.085208 0.055910 }
+    }
+    <Vertex> 4460 {
+      -1.19295608997 0.642686128616 1.73511087894
+      <UV>  {
+        0.604135 0.145251
+        <Tangent> { 0.105813 0.994386 -0.000000 }
+        <Binormal> { 0.117747 -0.012530 -0.069615 }
+      }
+      <Normal> { -0.035585 -0.992309 0.118412 }
+    }
+    <Vertex> 4461 {
+      -1.1690350771 0.642686128616 1.98095083237
+      <UV>  {
+        0.608401 0.205797
+        <Tangent> { -0.000001 1.000000 0.000000 }
+        <Binormal> { 0.059542 0.000000 0.116917 }
+      }
+      <Normal> { -0.116916 -0.991333 0.059542 }
+    }
+    <Vertex> 4462 {
+      -1.07634973526 0.823948204517 1.98095083237
+      <UV>  {
+        0.624929 0.205797
+        <Tangent> { 0.602979 0.797757 0.000000 }
+        <Binormal> { 0.093977 -0.071032 0.219804 }
+      }
+      <Normal> { -0.759270 -0.640004 0.117801 }
+    }
+    <Vertex> 4463 {
+      -1.11637353897 0.869484186172 1.73511087894
+      <UV>  {
+        0.617791 0.145251
+        <Tangent> { 0.671056 0.741407 0.000000 }
+        <Binormal> { 0.085461 -0.077352 0.141854 }
+      }
+      <Normal> { -0.764916 -0.633717 0.115268 }
+    }
+    <Vertex> 4464 {
+      -1.12893414497 0.396429210901 1.73511087894
+      <UV>  {
+        0.615552 0.145251
+        <Tangent> { -0.338895 0.940824 0.000000 }
+        <Binormal> { 0.088435 0.031855 -0.195189 }
+      }
+      <Normal> { 0.514481 -0.852321 0.093997 }
+    }
+    <Vertex> 4465 {
+      -1.10903036594 0.35787281394 1.98095083237
+      <UV>  {
+        0.619101 0.205797
+        <Tangent> { -0.329322 0.944218 0.000000 }
+        <Binormal> { -0.000086 -0.000030 -0.232635 }
+      }
+      <Normal> { 0.539933 -0.841670 -0.000092 }
+    }
+    <Vertex> 4466 {
+      -1.1690350771 0.642686128616 1.98095083237
+      <UV>  {
+        0.608401 0.205797
+        <Tangent> { -0.000001 1.000000 0.000000 }
+        <Binormal> { 0.059542 0.000000 0.116917 }
+      }
+      <Normal> { -0.116916 -0.991333 0.059542 }
+    }
+    <Vertex> 4467 {
+      -1.19295608997 0.642686128616 1.73511087894
+      <UV>  {
+        0.604135 0.145251
+        <Tangent> { 0.105813 0.994386 -0.000000 }
+        <Binormal> { 0.117747 -0.012530 -0.069615 }
+      }
+      <Normal> { -0.035585 -0.992309 0.118412 }
+    }
+    <Vertex> 4468 {
+      -0.972172021866 0.242823392153 1.73511087894
+      <UV>  {
+        0.643506 0.145251
+        <Tangent> { -0.798005 0.602651 -0.000000 }
+        <Binormal> { 0.039156 0.051849 -0.139007 }
+      }
+      <Normal> { 0.872311 -0.484573 0.064974 }
+    }
+    <Vertex> 4469 {
+      -0.945381581783 0.242823407054 1.98095083237
+      <UV>  {
+        0.648284 0.205797
+        <Tangent> { -0.898934 0.438085 0.000000 }
+        <Binormal> { -0.001484 -0.003045 0.032492 }
+      }
+      <Normal> { 0.884213 -0.467055 -0.003388 }
+    }
+    <Vertex> 4470 {
+      -1.10903036594 0.35787281394 1.98095083237
+      <UV>  {
+        0.619101 0.205797
+        <Tangent> { -0.329322 0.944218 0.000000 }
+        <Binormal> { -0.000086 -0.000030 -0.232635 }
+      }
+      <Normal> { 0.539933 -0.841670 -0.000092 }
+    }
+    <Vertex> 4471 {
+      -1.12893414497 0.396429210901 1.73511087894
+      <UV>  {
+        0.615552 0.145251
+        <Tangent> { -0.338895 0.940824 0.000000 }
+        <Binormal> { 0.088435 0.031855 -0.195189 }
+      }
+      <Normal> { 0.514481 -0.852321 0.093997 }
+    }
+    <Vertex> 4472 {
+      -0.925781726837 0.903709948063 1.42609405518
+      <UV>  {
+        0.651779 0.069145
+        <Tangent> { -0.813381 -0.157384 -0.560037 }
+        <Binormal> { -0.048269 0.559483 -0.087124 }
+      }
+      <Normal> { -0.996307 -0.085665 0.001862 }
+    }
+    <Vertex> 4473 {
+      -0.945430755615 0.904367208481 1.18573212624
+      <UV>  {
+        0.648275 0.163810
+        <Tangent> { 1.000000 -0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.020600 -0.135899 }
+      }
+      <Normal> { -0.990478 -0.135899 0.020600 }
+    }
+    <Vertex> 4474 {
+      -1.18857944012 0.828676462173 1.18573212624
+      <UV>  {
+        0.604915 0.163810
+        <Tangent> { -0.000011 1.000000 0.000000 }
+        <Binormal> { 0.101077 0.000001 0.792206 }
+      }
+      <Normal> { -0.792199 -0.601764 0.101077 }
+    }
+    <Vertex> 4475 {
+      -1.14534759521 0.876408278942 1.42609405518
+      <UV>  {
+        0.612625 0.069145
+        <Tangent> { 0.000001 -0.216838 0.976208 }
+        <Binormal> { 0.594299 -0.758455 -0.168471 }
+      }
+      <Normal> { -0.776940 -0.625202 0.073916 }
+    }
+    <Vertex> 4476 {
+      -1.14534759521 0.876408278942 1.42609405518
+      <UV>  {
+        0.612625 0.069145
+        <Tangent> { 0.000001 -0.216838 0.976208 }
+        <Binormal> { 0.594299 -0.758455 -0.168471 }
+      }
+      <Normal> { -0.776940 -0.625202 0.073916 }
+    }
+    <Vertex> 4477 {
+      -1.18857944012 0.828676462173 1.18573212624
+      <UV>  {
+        0.604915 0.163810
+        <Tangent> { -0.000011 1.000000 0.000000 }
+        <Binormal> { 0.101077 0.000001 0.792206 }
+      }
+      <Normal> { -0.792199 -0.601764 0.101077 }
+    }
+    <Vertex> 4478 {
+      -1.30402612686 0.65607303381 1.18573212624
+      <UV>  {
+        0.584328 0.163810
+        <Tangent> { 0.000002 -0.759216 0.650838 }
+        <Binormal> { 0.473972 -0.070831 -0.082627 }
+      }
+      <Normal> { -0.108829 -0.971862 0.208838 }
+    }
+    <Vertex> 4479 {
+      -1.22726786137 0.587606191635 1.5213162899
+      <UV>  {
+        0.598016 0.092597
+        <Tangent> { -0.000001 -0.495202 0.868778 }
+        <Binormal> { 0.770900 -0.021927 -0.012497 }
+      }
+      <Normal> { -0.025239 -0.984893 0.171148 }
+    }
+    <Vertex> 4480 {
+      -1.22726786137 0.587606191635 1.5213162899
+      <UV>  {
+        0.598016 0.092597
+        <Tangent> { -0.000001 -0.495202 0.868778 }
+        <Binormal> { 0.770900 -0.021927 -0.012497 }
+      }
+      <Normal> { -0.025239 -0.984893 0.171148 }
+    }
+    <Vertex> 4481 {
+      -1.30402612686 0.65607303381 1.18573212624
+      <UV>  {
+        0.584328 0.163810
+        <Tangent> { 0.000002 -0.759216 0.650838 }
+        <Binormal> { 0.473972 -0.070831 -0.082627 }
+      }
+      <Normal> { -0.108829 -0.971862 0.208838 }
+    }
+    <Vertex> 4482 {
+      -1.19120538235 0.244999676943 1.18573212624
+      <UV>  {
+        0.604447 0.163810
+        <Tangent> { -0.000002 0.932435 -0.361338 }
+        <Binormal> { -0.110928 -0.230596 -0.595053 }
+      }
+      <Normal> { 0.638173 -0.750450 0.171850 }
+    }
+    <Vertex> 4483 {
+      -1.13007700443 0.368170946836 1.5213162899
+      <UV>  {
+        0.615348 0.092597
+        <Tangent> { 0.000002 0.968325 -0.249692 }
+        <Binormal> { -0.019089 -0.135754 -0.526468 }
+      }
+      <Normal> { 0.543687 -0.817225 0.191015 }
+    }
+    <Vertex> 4484 {
+      -1.13007700443 0.368170946836 1.5213162899
+      <UV>  {
+        0.615348 0.092597
+        <Tangent> { 0.000002 0.968325 -0.249692 }
+        <Binormal> { -0.019089 -0.135754 -0.526468 }
+      }
+      <Normal> { 0.543687 -0.817225 0.191015 }
+    }
+    <Vertex> 4485 {
+      -1.19120538235 0.244999676943 1.18573212624
+      <UV>  {
+        0.604447 0.163810
+        <Tangent> { -0.000002 0.932435 -0.361338 }
+        <Binormal> { -0.110928 -0.230596 -0.595053 }
+      }
+      <Normal> { 0.638173 -0.750450 0.171850 }
+    }
+    <Vertex> 4486 {
+      -1.04687559605 0.210964486003 1.17381608486
+      <UV>  {
+        0.630185 0.160875
+        <Tangent> { 0.000002 -0.946844 -0.321694 }
+        <Binormal> { -0.165625 -0.306437 0.901938 }
+      }
+      <Normal> { 0.952574 -0.294870 0.074740 }
+    }
+    <Vertex> 4487 {
+      -1.00633370876 0.212417304516 1.5213162899
+      <UV>  {
+        0.637414 0.092597
+        <Tangent> { -0.000002 0.884919 -0.465745 }
+        <Binormal> { -0.078608 -0.419152 -0.796391 }
+      }
+      <Normal> { 0.899960 -0.416028 0.130131 }
+    }
+    <Vertex> 4488 {
+      -1.00633370876 0.212417304516 1.5213162899
+      <UV>  {
+        0.637414 0.092597
+        <Tangent> { -0.000002 0.884919 -0.465745 }
+        <Binormal> { -0.078608 -0.419152 -0.796391 }
+      }
+      <Normal> { 0.899960 -0.416028 0.130131 }
+    }
+    <Vertex> 4489 {
+      -1.04687559605 0.210964486003 1.17381608486
+      <UV>  {
+        0.630185 0.160875
+        <Tangent> { 0.000002 -0.946844 -0.321694 }
+        <Binormal> { -0.165625 -0.306437 0.901938 }
+      }
+      <Normal> { 0.952574 -0.294870 0.074740 }
+    }
+    <Vertex> 4490 {
+      -0.830359101295 0.177602529526 1.16401350498
+      <UV>  {
+        0.668795 0.158461
+        <Tangent> { -0.000010 0.457700 -0.889107 }
+        <Binormal> { -0.101963 -0.881265 -0.453662 }
+      }
+      <Normal> { 0.991180 -0.129307 0.028413 }
+    }
+    <Vertex> 4491 {
+      -0.805163741112 0.19499745965 1.52329516411
+      <UV>  {
+        0.673288 0.093084
+        <Tangent> { -0.999933 0.000325 0.011564 }
+        <Binormal> { 0.001173 0.048880 0.100076 }
+      }
+      <Normal> { 0.994232 -0.100406 0.037385 }
+    }
+    <Vertex> 4492 {
+      -1.11637353897 0.869484186172 1.73511087894
+      <UV>  {
+        0.617791 0.145251
+        <Tangent> { 0.671056 0.741407 0.000000 }
+        <Binormal> { 0.085461 -0.077352 0.141854 }
+      }
+      <Normal> { -0.764916 -0.633717 0.115268 }
+    }
+    <Vertex> 4493 {
+      -0.900494158268 0.893809199333 1.73511087894
+      <UV>  {
+        0.656289 0.145251
+        <Tangent> { 0.999123 0.039661 -0.013448 }
+        <Binormal> { 0.001072 -0.042483 -0.045679 }
+      }
+      <Normal> { -0.994781 -0.085208 0.055910 }
+    }
+    <Vertex> 4494 {
+      -0.925781726837 0.903709948063 1.42609405518
+      <UV>  {
+        0.651779 0.069145
+        <Tangent> { -0.813381 -0.157384 -0.560037 }
+        <Binormal> { -0.048269 0.559483 -0.087124 }
+      }
+      <Normal> { -0.996307 -0.085665 0.001862 }
+    }
+    <Vertex> 4495 {
+      -1.14534759521 0.876408278942 1.42609405518
+      <UV>  {
+        0.612625 0.069145
+        <Tangent> { 0.000001 -0.216838 0.976208 }
+        <Binormal> { 0.594299 -0.758455 -0.168471 }
+      }
+      <Normal> { -0.776940 -0.625202 0.073916 }
+    }
+    <Vertex> 4496 {
+      -1.19295608997 0.642686128616 1.73511087894
+      <UV>  {
+        0.604135 0.145251
+        <Tangent> { 0.105813 0.994386 -0.000000 }
+        <Binormal> { 0.117747 -0.012530 -0.069615 }
+      }
+      <Normal> { -0.035585 -0.992309 0.118412 }
+    }
+    <Vertex> 4497 {
+      -1.11637353897 0.869484186172 1.73511087894
+      <UV>  {
+        0.617791 0.145251
+        <Tangent> { 0.671056 0.741407 0.000000 }
+        <Binormal> { 0.085461 -0.077352 0.141854 }
+      }
+      <Normal> { -0.764916 -0.633717 0.115268 }
+    }
+    <Vertex> 4498 {
+      -1.14534759521 0.876408278942 1.42609405518
+      <UV>  {
+        0.612625 0.069145
+        <Tangent> { 0.000001 -0.216838 0.976208 }
+        <Binormal> { 0.594299 -0.758455 -0.168471 }
+      }
+      <Normal> { -0.776940 -0.625202 0.073916 }
+    }
+    <Vertex> 4499 {
+      -1.22726786137 0.587606191635 1.5213162899
+      <UV>  {
+        0.598016 0.092597
+        <Tangent> { -0.000001 -0.495202 0.868778 }
+        <Binormal> { 0.770900 -0.021927 -0.012497 }
+      }
+      <Normal> { -0.025239 -0.984893 0.171148 }
+    }
+    <Vertex> 4500 {
+      -1.12893414497 0.396429210901 1.73511087894
+      <UV>  {
+        0.615552 0.145251
+        <Tangent> { -0.338895 0.940824 0.000000 }
+        <Binormal> { 0.088435 0.031855 -0.195189 }
+      }
+      <Normal> { 0.514481 -0.852321 0.093997 }
+    }
+    <Vertex> 4501 {
+      -1.19295608997 0.642686128616 1.73511087894
+      <UV>  {
+        0.604135 0.145251
+        <Tangent> { 0.105813 0.994386 -0.000000 }
+        <Binormal> { 0.117747 -0.012530 -0.069615 }
+      }
+      <Normal> { -0.035585 -0.992309 0.118412 }
+    }
+    <Vertex> 4502 {
+      -1.22726786137 0.587606191635 1.5213162899
+      <UV>  {
+        0.598016 0.092597
+        <Tangent> { -0.000001 -0.495202 0.868778 }
+        <Binormal> { 0.770900 -0.021927 -0.012497 }
+      }
+      <Normal> { -0.025239 -0.984893 0.171148 }
+    }
+    <Vertex> 4503 {
+      -1.13007700443 0.368170946836 1.5213162899
+      <UV>  {
+        0.615348 0.092597
+        <Tangent> { 0.000002 0.968325 -0.249692 }
+        <Binormal> { -0.019089 -0.135754 -0.526468 }
+      }
+      <Normal> { 0.543687 -0.817225 0.191015 }
+    }
+    <Vertex> 4504 {
+      -0.972172021866 0.242823392153 1.73511087894
+      <UV>  {
+        0.643506 0.145251
+        <Tangent> { -0.798005 0.602651 -0.000000 }
+        <Binormal> { 0.039156 0.051849 -0.139007 }
+      }
+      <Normal> { 0.872311 -0.484573 0.064974 }
+    }
+    <Vertex> 4505 {
+      -1.12893414497 0.396429210901 1.73511087894
+      <UV>  {
+        0.615552 0.145251
+        <Tangent> { -0.338895 0.940824 0.000000 }
+        <Binormal> { 0.088435 0.031855 -0.195189 }
+      }
+      <Normal> { 0.514481 -0.852321 0.093997 }
+    }
+    <Vertex> 4506 {
+      -1.13007700443 0.368170946836 1.5213162899
+      <UV>  {
+        0.615348 0.092597
+        <Tangent> { 0.000002 0.968325 -0.249692 }
+        <Binormal> { -0.019089 -0.135754 -0.526468 }
+      }
+      <Normal> { 0.543687 -0.817225 0.191015 }
+    }
+    <Vertex> 4507 {
+      -1.00633370876 0.212417304516 1.5213162899
+      <UV>  {
+        0.637414 0.092597
+        <Tangent> { -0.000002 0.884919 -0.465745 }
+        <Binormal> { -0.078608 -0.419152 -0.796391 }
+      }
+      <Normal> { 0.899960 -0.416028 0.130131 }
+    }
+    <Vertex> 4508 {
+      -0.811058819294 0.193938553333 1.73719501495
+      <UV>  {
+        0.672237 0.145764
+        <Tangent> { -0.984745 0.174004 -0.000000 }
+        <Binormal> { 0.004078 0.023081 -0.050322 }
+      }
+      <Normal> { 0.991974 -0.124180 0.023438 }
+    }
+    <Vertex> 4509 {
+      -0.972172021866 0.242823392153 1.73511087894
+      <UV>  {
+        0.643506 0.145251
+        <Tangent> { -0.798005 0.602651 -0.000000 }
+        <Binormal> { 0.039156 0.051849 -0.139007 }
+      }
+      <Normal> { 0.872311 -0.484573 0.064974 }
+    }
+    <Vertex> 4510 {
+      -1.00633370876 0.212417304516 1.5213162899
+      <UV>  {
+        0.637414 0.092597
+        <Tangent> { -0.000002 0.884919 -0.465745 }
+        <Binormal> { -0.078608 -0.419152 -0.796391 }
+      }
+      <Normal> { 0.899960 -0.416028 0.130131 }
+    }
+    <Vertex> 4511 {
+      -0.805163741112 0.19499745965 1.52329516411
+      <UV>  {
+        0.673288 0.093084
+        <Tangent> { -0.999933 0.000325 0.011564 }
+        <Binormal> { 0.001173 0.048880 0.100076 }
+      }
+      <Normal> { 0.994232 -0.100406 0.037385 }
+    }
+    <Vertex> 4512 {
+      -1.01487398148 0.333781808615 2.71730446815
+      <UV>  {
+        0.635892 0.387148
+        <Tangent> { -0.976982 -0.213320 0.000000 }
+        <Binormal> { -0.194812 0.892215 -0.193170 }
+      }
+      <Normal> { 0.309214 0.265236 0.913236 }
+    }
+    <Vertex> 4513 {
+      -1.01197469234 0.542782783508 2.72307682037
+      <UV>  {
+        0.636409 0.388569
+        <Tangent> { -0.987804 0.155701 0.000000 }
+        <Binormal> { 0.155677 0.987653 -0.000122 }
+      }
+      <Normal> { 0.016663 -0.002503 0.999847 }
+    }
+    <Vertex> 4514 {
+      -1.03242897987 0.546006858349 2.72307682037
+      <UV>  {
+        0.632761 0.388569
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.077242 -0.185888 0.979522 }
+    }
+    <Vertex> 4515 {
+      -1.03746521473 0.324602454901 2.71730446815
+      <UV>  {
+        0.631863 0.387148
+        <Tangent> { -0.500221 0.865898 0.000001 }
+        <Binormal> { 0.740058 0.427525 -0.408763 }
+      }
+      <Normal> { 0.513993 -0.072573 0.854671 }
+    }
+    <Vertex> 4516 {
+      -0.919638752937 0.246393978596 2.45197629929
+      <UV>  {
+        0.652875 0.321802
+        <Tangent> { -0.556088 -0.831123 0.000000 }
+        <Binormal> { -0.304249 0.203567 0.076815 }
+      }
+      <Normal> { 0.579547 0.728050 0.366070 }
+    }
+    <Vertex> 4517 {
+      -0.983844518661 0.292673647404 2.65394926071
+      <UV>  {
+        0.641425 0.371544
+        <Tangent> { -0.571599 -0.820533 0.000000 }
+        <Binormal> { -0.438626 0.305555 0.061233 }
+      }
+      <Normal> { 0.532029 0.656606 0.534562 }
+    }
+    <Vertex> 4518 {
+      -0.994256973267 0.272368133068 2.65394926071
+      <UV>  {
+        0.639568 0.371544
+        <Tangent> { -0.839546 -0.543289 -0.000000 }
+        <Binormal> { -0.247412 0.382326 0.290043 }
+      }
+      <Normal> { 0.864223 0.213782 0.455397 }
+    }
+    <Vertex> 4519 {
+      -0.929967820644 0.233308747411 2.45197629929
+      <UV>  {
+        0.651033 0.321802
+        <Tangent> { -0.889493 -0.456948 0.000001 }
+        <Binormal> { -0.145506 0.283242 0.145826 }
+      }
+      <Normal> { 0.899777 0.298288 0.318430 }
+    }
+    <Vertex> 4520 {
+      -0.983844518661 0.292673647404 2.65394926071
+      <UV>  {
+        0.641425 0.371544
+        <Tangent> { -0.571599 -0.820533 0.000000 }
+        <Binormal> { -0.438626 0.305555 0.061233 }
+      }
+      <Normal> { 0.532029 0.656606 0.534562 }
+    }
+    <Vertex> 4521 {
+      -1.01487398148 0.333781808615 2.71730446815
+      <UV>  {
+        0.635892 0.387148
+        <Tangent> { -0.976982 -0.213320 0.000000 }
+        <Binormal> { -0.194812 0.892215 -0.193170 }
+      }
+      <Normal> { 0.309214 0.265236 0.913236 }
+    }
+    <Vertex> 4522 {
+      -1.03746521473 0.324602454901 2.71730446815
+      <UV>  {
+        0.631863 0.387148
+        <Tangent> { -0.500221 0.865898 0.000001 }
+        <Binormal> { 0.740058 0.427525 -0.408763 }
+      }
+      <Normal> { 0.513993 -0.072573 0.854671 }
+    }
+    <Vertex> 4523 {
+      -0.994256973267 0.272368133068 2.65394926071
+      <UV>  {
+        0.639568 0.371544
+        <Tangent> { -0.839546 -0.543289 -0.000000 }
+        <Binormal> { -0.247412 0.382326 0.290043 }
+      }
+      <Normal> { 0.864223 0.213782 0.455397 }
+    }
+    <Vertex> 4524 {
+      -0.851948320866 0.219411045313 2.28988718987
+      <UV>  {
+        0.664946 0.281882
+        <Tangent> { -0.718689 -0.695332 0.000000 }
+        <Binormal> { -0.267505 0.276491 -0.123779 }
+      }
+      <Normal> { 0.571307 0.724967 0.384716 }
+    }
+    <Vertex> 4525 {
+      -0.919638752937 0.246393978596 2.45197629929
+      <UV>  {
+        0.652875 0.321802
+        <Tangent> { -0.556088 -0.831123 0.000000 }
+        <Binormal> { -0.304249 0.203567 0.076815 }
+      }
+      <Normal> { 0.579547 0.728050 0.366070 }
+    }
+    <Vertex> 4526 {
+      -0.929967820644 0.233308747411 2.45197629929
+      <UV>  {
+        0.651033 0.321802
+        <Tangent> { -0.889493 -0.456948 0.000001 }
+        <Binormal> { -0.145506 0.283242 0.145826 }
+      }
+      <Normal> { 0.899777 0.298288 0.318430 }
+    }
+    <Vertex> 4527 {
+      -0.868287622929 0.206048235297 2.28988718987
+      <UV>  {
+        0.662032 0.281882
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.928007 0.290811 0.232795 }
+    }
+    <Vertex> 4528 {
+      -0.799244344234 0.200150445104 2.14461088181
+      <UV>  {
+        0.674344 0.246103
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.769646 0.000763 0.638417 }
+    }
+    <Vertex> 4529 {
+      -0.851948320866 0.219411045313 2.28988718987
+      <UV>  {
+        0.664946 0.281882
+        <Tangent> { -0.718689 -0.695332 0.000000 }
+        <Binormal> { -0.267505 0.276491 -0.123779 }
+      }
+      <Normal> { 0.571307 0.724967 0.384716 }
+    }
+    <Vertex> 4530 {
+      -0.868287622929 0.206048235297 2.28988718987
+      <UV>  {
+        0.662032 0.281882
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.928007 0.290811 0.232795 }
+    }
+    <Vertex> 4531 {
+      -0.799244344234 0.186503902078 2.14461088181
+      <UV>  {
+        0.674344 0.246103
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.996796 -0.000824 -0.079806 }
+    }
+    <Vertex> 4532 {
+      -0.799244344234 0.716523706913 2.72622847557
+      <UV>  {
+        0.674344 0.389346
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.006439 0.000000 0.999969 }
+    }
+    <Vertex> 4533 {
+      -0.799244344234 0.741046607494 2.72622847557
+      <UV>  {
+        0.674344 0.389346
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.236732 -0.000061 0.971557 }
+    }
+    <Vertex> 4534 {
+      -1.03242897987 0.546006858349 2.72307682037
+      <UV>  {
+        0.632761 0.388569
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.077242 -0.185888 0.979522 }
+    }
+    <Vertex> 4535 {
+      -1.01197469234 0.542782783508 2.72307682037
+      <UV>  {
+        0.636409 0.388569
+        <Tangent> { -0.987804 0.155701 0.000000 }
+        <Binormal> { 0.155677 0.987653 -0.000122 }
+      }
+      <Normal> { 0.016663 -0.002503 0.999847 }
+    }
+    <Vertex> 4536 {
+      -1.03746521473 0.324602454901 2.71730446815
+      <UV>  {
+        0.631863 0.387148
+        <Tangent> { -0.500221 0.865898 0.000001 }
+        <Binormal> { 0.740058 0.427525 -0.408763 }
+      }
+      <Normal> { 0.513993 -0.072573 0.854671 }
+    }
+    <Vertex> 4537 {
+      -1.03242897987 0.546006858349 2.72307682037
+      <UV>  {
+        0.632761 0.388569
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.077242 -0.185888 0.979522 }
+    }
+    <Vertex> 4538 {
+      -1.15921676159 0.546006917953 2.69551420212
+      <UV>  {
+        0.610151 0.381781
+        <Tangent> { 0.000002 1.000000 -0.000001 }
+        <Binormal> { 0.779931 -0.000001 0.250251 }
+      }
+      <Normal> { -0.250252 -0.573626 0.779931 }
+    }
+    <Vertex> 4539 {
+      -1.14562916756 0.324602454901 2.64465856552
+      <UV>  {
+        0.612574 0.369256
+        <Tangent> { -0.408237 0.912876 -0.000002 }
+        <Binormal> { 0.381035 0.170397 -0.394700 }
+      }
+      <Normal> { 0.694449 -0.586047 0.417402 }
+    }
+    <Vertex> 4540 {
+      -0.929967820644 0.233308747411 2.45197629929
+      <UV>  {
+        0.651033 0.321802
+        <Tangent> { -0.889493 -0.456948 0.000001 }
+        <Binormal> { -0.145506 0.283242 0.145826 }
+      }
+      <Normal> { 0.899777 0.298288 0.318430 }
+    }
+    <Vertex> 4541 {
+      -0.994256973267 0.272368133068 2.65394926071
+      <UV>  {
+        0.639568 0.371544
+        <Tangent> { -0.839546 -0.543289 -0.000000 }
+        <Binormal> { -0.247412 0.382326 0.290043 }
+      }
+      <Normal> { 0.864223 0.213782 0.455397 }
+    }
+    <Vertex> 4542 {
+      -1.08594453335 0.324602454901 2.57855820656
+      <UV>  {
+        0.623218 0.352977
+        <Tangent> { -0.223137 0.974787 0.000003 }
+        <Binormal> { 0.231687 0.053038 -0.704889 }
+      }
+      <Normal> { 0.836238 -0.494156 0.237678 }
+    }
+    <Vertex> 4543 {
+      -1.11719441414 0.254881888628 2.52862000465
+      <UV>  {
+        0.617645 0.340678
+        <Tangent> { -0.117096 0.993121 -0.000005 }
+        <Binormal> { 0.198973 0.023456 -0.788830 }
+      }
+      <Normal> { 0.851436 -0.484634 0.200354 }
+    }
+    <Vertex> 4544 {
+      -0.994256973267 0.272368133068 2.65394926071
+      <UV>  {
+        0.639568 0.371544
+        <Tangent> { -0.839546 -0.543289 -0.000000 }
+        <Binormal> { -0.247412 0.382326 0.290043 }
+      }
+      <Normal> { 0.864223 0.213782 0.455397 }
+    }
+    <Vertex> 4545 {
+      -1.03746521473 0.324602454901 2.71730446815
+      <UV>  {
+        0.631863 0.387148
+        <Tangent> { -0.500221 0.865898 0.000001 }
+        <Binormal> { 0.740058 0.427525 -0.408763 }
+      }
+      <Normal> { 0.513993 -0.072573 0.854671 }
+    }
+    <Vertex> 4546 {
+      -1.14562916756 0.324602454901 2.64465856552
+      <UV>  {
+        0.612574 0.369256
+        <Tangent> { -0.408237 0.912876 -0.000002 }
+        <Binormal> { 0.381035 0.170397 -0.394700 }
+      }
+      <Normal> { 0.694449 -0.586047 0.417402 }
+    }
+    <Vertex> 4547 {
+      -1.08594453335 0.324602454901 2.57855820656
+      <UV>  {
+        0.623218 0.352977
+        <Tangent> { -0.223137 0.974787 0.000003 }
+        <Binormal> { 0.231687 0.053038 -0.704889 }
+      }
+      <Normal> { 0.836238 -0.494156 0.237678 }
+    }
+    <Vertex> 4548 {
+      -0.868287622929 0.206048235297 2.28988718987
+      <UV>  {
+        0.662032 0.281882
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.928007 0.290811 0.232795 }
+    }
+    <Vertex> 4549 {
+      -0.929967820644 0.233308747411 2.45197629929
+      <UV>  {
+        0.651033 0.321802
+        <Tangent> { -0.889493 -0.456948 0.000001 }
+        <Binormal> { -0.145506 0.283242 0.145826 }
+      }
+      <Normal> { 0.899777 0.298288 0.318430 }
+    }
+    <Vertex> 4550 {
+      -1.11719441414 0.254881888628 2.52862000465
+      <UV>  {
+        0.617645 0.340678
+        <Tangent> { -0.117096 0.993121 -0.000005 }
+        <Binormal> { 0.198973 0.023456 -0.788830 }
+      }
+      <Normal> { 0.851436 -0.484634 0.200354 }
+    }
+    <Vertex> 4551 {
+      -1.00549530983 0.24992634356 2.38737201691
+      <UV>  {
+        0.637564 0.305891
+        <Tangent> { -0.833934 0.551864 -0.000024 }
+        <Binormal> { -0.072497 -0.109561 -0.220075 }
+      }
+      <Normal> { 0.927519 -0.349895 -0.131352 }
+    }
+    <Vertex> 4552 {
+      -0.799244344234 0.186503902078 2.14461088181
+      <UV>  {
+        0.674344 0.246103
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.996796 -0.000824 -0.079806 }
+    }
+    <Vertex> 4553 {
+      -0.868287622929 0.206048235297 2.28988718987
+      <UV>  {
+        0.662032 0.281882
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { 0.928007 0.290811 0.232795 }
+    }
+    <Vertex> 4554 {
+      -1.00549530983 0.24992634356 2.38737201691
+      <UV>  {
+        0.637564 0.305891
+        <Tangent> { -0.833934 0.551864 -0.000024 }
+        <Binormal> { -0.072497 -0.109561 -0.220075 }
+      }
+      <Normal> { 0.927519 -0.349895 -0.131352 }
+    }
+    <Vertex> 4555 {
+      -0.934740543365 0.225198209286 2.3067035675
+      <UV>  {
+        0.650181 0.286024
+        <Tangent> { -0.711901 0.702280 -0.000031 }
+        <Binormal> { -0.124538 -0.126255 -0.270114 }
+      }
+      <Normal> { 0.863399 -0.472304 -0.177313 }
+    }
+    <Vertex> 4556 {
+      -1.03242897987 0.546006858349 2.72307682037
+      <UV>  {
+        0.632761 0.388569
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.077242 -0.185888 0.979522 }
+    }
+    <Vertex> 4557 {
+      -0.799244344234 0.741046607494 2.72622847557
+      <UV>  {
+        0.674344 0.389346
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+      <Normal> { -0.236732 -0.000061 0.971557 }
+    }
+    <Vertex> 4558 {
+      -0.799244344234 0.803841233253 2.67150473595
+      <UV>  {
+        0.674344 0.375868
+        <Tangent> { 1.000000 0.000647 0.000000 }
+        <Binormal> { 0.000484 -0.748588 0.000215 }
+      }
+      <Normal> { -0.663015 -0.000214 0.748589 }
+    }
+    <Vertex> 4559 {
+      -1.15921676159 0.546006917953 2.69551420212
+      <UV>  {
+        0.610151 0.381781
+        <Tangent> { 0.000002 1.000000 -0.000001 }
+        <Binormal> { 0.779931 -0.000001 0.250251 }
+      }
+      <Normal> { -0.250252 -0.573626 0.779931 }
+    }
+    <Vertex> 4560 {
+      -1.14562916756 0.324602454901 2.64465856552
+      <UV>  {
+        0.612574 0.369256
+        <Tangent> { -0.408237 0.912876 -0.000002 }
+        <Binormal> { 0.381035 0.170397 -0.394700 }
+      }
+      <Normal> { 0.694449 -0.586047 0.417402 }
+    }
+    <Vertex> 4561 {
+      -1.15921676159 0.546006917953 2.69551420212
+      <UV>  {
+        0.610151 0.381781
+        <Tangent> { 0.000002 1.000000 -0.000001 }
+        <Binormal> { 0.779931 -0.000001 0.250251 }
+      }
+      <Normal> { -0.250252 -0.573626 0.779931 }
+    }
+    <Vertex> 4562 {
+      -1.17065942287 0.553441524506 2.67915606499
+      <UV>  {
+        0.608111 0.377753
+        <Tangent> { 0.000002 1.000000 -0.000003 }
+        <Binormal> { 0.724447 -0.000000 0.403332 }
+      }
+      <Normal> { -0.403333 -0.558977 0.724448 }
+    }
+    <Vertex> 4563 {
+      -1.15707170963 0.332037091255 2.62830042839
+      <UV>  {
+        0.610534 0.365228
+        <Tangent> { -0.635894 0.771777 0.000001 }
+        <Binormal> { 0.268651 0.221351 -0.267224 }
+      }
+      <Normal> { 0.777612 -0.523545 0.348094 }
+    }
+    <Vertex> 4564 {
+      -1.11719441414 0.254881888628 2.52862000465
+      <UV>  {
+        0.617645 0.340678
+        <Tangent> { -0.117096 0.993121 -0.000005 }
+        <Binormal> { 0.198973 0.023456 -0.788830 }
+      }
+      <Normal> { 0.851436 -0.484634 0.200354 }
+    }
+    <Vertex> 4565 {
+      -1.08594453335 0.324602454901 2.57855820656
+      <UV>  {
+        0.623218 0.352977
+        <Tangent> { -0.223137 0.974787 0.000003 }
+        <Binormal> { 0.231687 0.053038 -0.704889 }
+      }
+      <Normal> { 0.836238 -0.494156 0.237678 }
+    }
+    <Vertex> 4566 {
+      -1.09738719463 0.332037091255 2.56220006943
+      <UV>  {
+        0.621177 0.348948
+        <Tangent> { -0.095998 0.995382 -0.000005 }
+        <Binormal> { 0.099514 0.009594 -0.710623 }
+      }
+      <Normal> { 0.774194 -0.624958 0.099979 }
+    }
+    <Vertex> 4567 {
+      -1.12863707542 0.262316524982 2.51226186752
+      <UV>  {
+        0.615605 0.336649
+        <Tangent> { -0.197553 0.980292 -0.000011 }
+        <Binormal> { -0.025408 -0.005126 -0.457018 }
+      }
+      <Normal> { 0.623646 -0.781243 -0.025910 }
+    }
+    <Vertex> 4568 {
+      -1.08594453335 0.324602454901 2.57855820656
+      <UV>  {
+        0.623218 0.352977
+        <Tangent> { -0.223137 0.974787 0.000003 }
+        <Binormal> { 0.231687 0.053038 -0.704889 }
+      }
+      <Normal> { 0.836238 -0.494156 0.237678 }
+    }
+    <Vertex> 4569 {
+      -1.14562916756 0.324602454901 2.64465856552
+      <UV>  {
+        0.612574 0.369256
+        <Tangent> { -0.408237 0.912876 -0.000002 }
+        <Binormal> { 0.381035 0.170397 -0.394700 }
+      }
+      <Normal> { 0.694449 -0.586047 0.417402 }
+    }
+    <Vertex> 4570 {
+      -1.15707170963 0.332037091255 2.62830042839
+      <UV>  {
+        0.610534 0.365228
+        <Tangent> { -0.635894 0.771777 0.000001 }
+        <Binormal> { 0.268651 0.221351 -0.267224 }
+      }
+      <Normal> { 0.777612 -0.523545 0.348094 }
+    }
+    <Vertex> 4571 {
+      -1.09738719463 0.332037091255 2.56220006943
+      <UV>  {
+        0.621177 0.348948
+        <Tangent> { -0.095998 0.995382 -0.000005 }
+        <Binormal> { 0.099514 0.009594 -0.710623 }
+      }
+      <Normal> { 0.774194 -0.624958 0.099979 }
+    }
+    <Vertex> 4572 {
+      -1.00549530983 0.24992634356 2.38737201691
+      <UV>  {
+        0.637564 0.305891
+        <Tangent> { -0.833934 0.551864 -0.000024 }
+        <Binormal> { -0.072497 -0.109561 -0.220075 }
+      }
+      <Normal> { 0.927519 -0.349895 -0.131352 }
+    }
+    <Vertex> 4573 {
+      -1.11719441414 0.254881888628 2.52862000465
+      <UV>  {
+        0.617645 0.340678
+        <Tangent> { -0.117096 0.993121 -0.000005 }
+        <Binormal> { 0.198973 0.023456 -0.788830 }
+      }
+      <Normal> { 0.851436 -0.484634 0.200354 }
+    }
+    <Vertex> 4574 {
+      -1.12863707542 0.262316524982 2.51226186752
+      <UV>  {
+        0.615605 0.336649
+        <Tangent> { -0.197553 0.980292 -0.000011 }
+        <Binormal> { -0.025408 -0.005126 -0.457018 }
+      }
+      <Normal> { 0.623646 -0.781243 -0.025910 }
+    }
+    <Vertex> 4575 {
+      -1.01693797112 0.257360965014 2.38021206856
+      <UV>  {
+        0.635523 0.304128
+        <Tangent> { -0.786703 0.617332 -0.000002 }
+        <Binormal> { -0.228569 -0.291279 -0.025337 }
+      }
+      <Normal> { 0.746147 -0.553301 -0.370251 }
+    }
+    <Vertex> 4576 {
+      -0.934740543365 0.225198209286 2.3067035675
+      <UV>  {
+        0.650181 0.286024
+        <Tangent> { -0.711901 0.702280 -0.000031 }
+        <Binormal> { -0.124538 -0.126255 -0.270114 }
+      }
+      <Normal> { 0.863399 -0.472304 -0.177313 }
+    }
+    <Vertex> 4577 {
+      -1.00549530983 0.24992634356 2.38737201691
+      <UV>  {
+        0.637564 0.305891
+        <Tangent> { -0.833934 0.551864 -0.000024 }
+        <Binormal> { -0.072497 -0.109561 -0.220075 }
+      }
+      <Normal> { 0.927519 -0.349895 -0.131352 }
+    }
+    <Vertex> 4578 {
+      -1.01693797112 0.257360965014 2.38021206856
+      <UV>  {
+        0.635523 0.304128
+        <Tangent> { -0.786703 0.617332 -0.000002 }
+        <Binormal> { -0.228569 -0.291279 -0.025337 }
+      }
+      <Normal> { 0.746147 -0.553301 -0.370251 }
+    }
+    <Vertex> 4579 {
+      -0.945782721043 0.239068865776 2.29864048958
+      <UV>  {
+        0.648212 0.284038
+        <Tangent> { -0.814765 0.579792 -0.000006 }
+        <Binormal> { -0.117830 -0.165584 -0.031149 }
+      }
+      <Normal> { 0.815394 -0.542009 -0.203223 }
+    }
+    <Vertex> 4580 {
+      -0.799244344234 0.186503902078 2.14461088181
+      <UV>  {
+        0.674344 0.246103
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+      <Normal> { 0.996796 -0.000824 -0.079806 }
+    }
+    <Vertex> 4581 {
+      -0.934740543365 0.225198209286 2.3067035675
+      <UV>  {
+        0.650181 0.286024
+        <Tangent> { -0.711901 0.702280 -0.000031 }
+        <Binormal> { -0.124538 -0.126255 -0.270114 }
+      }
+      <Normal> { 0.863399 -0.472304 -0.177313 }
+    }
+    <Vertex> 4582 {
+      -0.945782721043 0.239068865776 2.29864048958
+      <UV>  {
+        0.648212 0.284038
+        <Tangent> { -0.814765 0.579792 -0.000006 }
+        <Binormal> { -0.117830 -0.165584 -0.031149 }
+      }
+      <Normal> { 0.815394 -0.542009 -0.203223 }
+    }
+    <Vertex> 4583 {
+      -0.811058819294 0.193938553333 2.13745093346
+      <UV>  {
+        0.672237 0.244340
+        <Tangent> { -0.979178 0.203005 -0.000002 }
+        <Binormal> { -0.054718 -0.263929 0.048896 }
+      }
+      <Normal> { 0.931761 -0.243110 -0.269539 }
+    }
+    <Vertex> 4584 {
+      -1.15921676159 0.546006917953 2.69551420212
+      <UV>  {
+        0.610151 0.381781
+        <Tangent> { 0.000002 1.000000 -0.000001 }
+        <Binormal> { 0.779931 -0.000001 0.250251 }
+      }
+      <Normal> { -0.250252 -0.573626 0.779931 }
+    }
+    <Vertex> 4585 {
+      -0.799244344234 0.803841233253 2.67150473595
+      <UV>  {
+        0.674344 0.375868
+        <Tangent> { 1.000000 0.000647 0.000000 }
+        <Binormal> { 0.000484 -0.748588 0.000215 }
+      }
+      <Normal> { -0.663015 -0.000214 0.748589 }
+    }
+    <Vertex> 4586 {
+      -0.799244344234 0.811275839806 2.65514659882
+      <UV>  {
+        0.674344 0.371839
+        <Tangent> { 1.000000 0.000551 0.000000 }
+        <Binormal> { 0.000248 -0.450636 0.000034 }
+      }
+      <Normal> { -0.892697 -0.000458 0.450636 }
+    }
+    <Vertex> 4587 {
+      -1.17065942287 0.553441524506 2.67915606499
+      <UV>  {
+        0.608111 0.377753
+        <Tangent> { 0.000002 1.000000 -0.000003 }
+        <Binormal> { 0.724447 -0.000000 0.403332 }
+      }
+      <Normal> { -0.403333 -0.558977 0.724448 }
+    }
+    <Vertex> 4588 {
+      -0.795793235302 0.903709948063 1.46868264675
+      <UV>  {
+        0.674475 0.082089
+        <Tangent> { 0.981749 -0.000259 0.190179 }
+        <Binormal> { -0.000045 -0.208451 -0.000049 }
+      }
+      <Normal> { -0.999817 0.000214 0.018647 }
+    }
+    <Vertex> 4589 {
+      -0.925781726837 0.903709948063 1.42609405518
+      <UV>  {
+        0.651779 0.069145
+        <Tangent> { -0.813381 -0.157384 -0.560037 }
+        <Binormal> { -0.048269 0.559483 -0.087124 }
+      }
+      <Normal> { -0.996307 -0.085665 0.001862 }
+    }
+    <Vertex> 4590 {
+      -0.900494158268 0.893809199333 1.73511087894
+      <UV>  {
+        0.656289 0.145251
+        <Tangent> { 0.999123 0.039661 -0.013448 }
+        <Binormal> { 0.001072 -0.042483 -0.045679 }
+      }
+      <Normal> { -0.994781 -0.085208 0.055910 }
+    }
+    <Vertex> 4591 {
+      -0.79939943552 0.893809199333 1.73511087894
+      <UV>  {
+        0.674316 0.145251
+        <Tangent> { 1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.031953 0.000031 }
+      }
+      <Normal> { -0.999481 0.000031 0.031953 }
+    }
+    <Vertex> 4592 {
+      -0.652492344379 0.904367208481 1.18573212624
+      <UV>  {
+        0.700514 0.163810
+        <Tangent> { -0.934690 -0.355343 0.009253 }
+        <Binormal> { -0.007057 0.006720 -0.454781 }
+      }
+      <Normal> { -0.993896 0.108707 0.017029 }
+    }
+    <Vertex> 4593 {
+      -0.945430755615 0.904367208481 1.18573212624
+      <UV>  {
+        0.648275 0.163810
+        <Tangent> { 1.000000 -0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.020600 -0.135899 }
+      }
+      <Normal> { -0.990478 -0.135899 0.020600 }
+    }
+    <Vertex> 4594 {
+      -0.925781726837 0.903709948063 1.42609405518
+      <UV>  {
+        0.651779 0.069145
+        <Tangent> { -0.813381 -0.157384 -0.560037 }
+        <Binormal> { -0.048269 0.559483 -0.087124 }
+      }
+      <Normal> { -0.996307 -0.085665 0.001862 }
+    }
+    <Vertex> 4595 {
+      -0.795793235302 0.903709948063 1.46868264675
+      <UV>  {
+        0.675444 0.077179
+        <Tangent> { -0.861346 0.000450 -0.508019 }
+        <Binormal> { 0.000117 0.523987 0.000266 }
+      }
+      <Normal> { -0.999817 0.000214 0.018647 }
+    }
+    <Vertex> 4596 {
+      -0.551048219204 0.210964515805 1.17381608486
+      <UV>  {
+        0.718604 0.160875
+        <Tangent> { -0.000001 0.971949 0.235191 }
+        <Binormal> { 0.003293 0.224037 -0.925854 }
+      }
+      <Normal> { 0.952574 0.294870 0.074740 }
+    }
+    <Vertex> 4597 {
+      -0.767564117908 0.177602604032 1.16401350498
+      <UV>  {
+        0.679994 0.158461
+        <Tangent> { 0.993061 0.087092 0.079022 }
+        <Binormal> { -0.007743 0.050109 0.042085 }
+      }
+      <Normal> { 0.991180 0.129307 0.028413 }
+    }
+    <Vertex> 4598 {
+      -0.761709451675 0.17346984148 0.763181328773
+      <UV>  {
+        0.681038 0.059743
+        <Tangent> { -0.990179 -0.139806 0.000000 }
+        <Binormal> { -0.002688 0.019038 0.001083 }
+      }
+      <Normal> { 0.990143 0.138707 0.019227 }
+    }
+    <Vertex> 4599 {
+      -0.504742026329 0.206831738353 0.772983908653
+      <UV>  {
+        0.726862 0.062157
+        <Tangent> { -0.964045 -0.265740 0.000001 }
+        <Binormal> { -0.003471 0.012593 0.026956 }
+      }
+      <Normal> { 0.970763 0.239631 0.013062 }
+    }
+    <Vertex> 4600 {
+      -0.406718462706 0.244999691844 1.18573212624
+      <UV>  {
+        0.744342 0.163810
+        <Tangent> { 0.000005 0.995066 0.099210 }
+        <Binormal> { 0.096519 0.063382 -0.635719 }
+      }
+      <Normal> { 0.638874 0.749840 0.171758 }
+    }
+    <Vertex> 4601 {
+      -0.551048219204 0.210964515805 1.17381608486
+      <UV>  {
+        0.718604 0.160875
+        <Tangent> { -0.000001 0.971949 0.235191 }
+        <Binormal> { 0.003293 0.224037 -0.925854 }
+      }
+      <Normal> { 0.952574 0.294870 0.074740 }
+    }
+    <Vertex> 4602 {
+      -0.504742026329 0.206831738353 0.772983908653
+      <UV>  {
+        0.726862 0.062157
+        <Tangent> { -0.964045 -0.265740 0.000001 }
+        <Binormal> { -0.003471 0.012593 0.026956 }
+      }
+      <Normal> { 0.970763 0.239631 0.013062 }
+    }
+    <Vertex> 4603 {
+      -0.333448022604 0.286327302456 0.784900069237
+      <UV>  {
+        0.757408 0.065092
+        <Tangent> { -0.402214 -0.915546 0.000000 }
+        <Binormal> { -0.096006 0.042177 0.347648 }
+      }
+      <Normal> { 0.693045 0.713218 0.104862 }
+    }
+    <Vertex> 4604 {
+      -0.29316085577 0.656073093414 1.18573212624
+      <UV>  {
+        0.764592 0.163810
+        <Tangent> { -0.406959 0.547875 -0.730902 }
+        <Binormal> { 0.824753 0.164894 -0.335612 }
+      }
+      <Normal> { -0.109256 0.971770 0.208960 }
+    }
+    <Vertex> 4605 {
+      -0.406718462706 0.244999691844 1.18573212624
+      <UV>  {
+        0.744342 0.163810
+        <Tangent> { 0.000005 0.995066 0.099210 }
+        <Binormal> { 0.096519 0.063382 -0.635719 }
+      }
+      <Normal> { 0.638874 0.749840 0.171758 }
+    }
+    <Vertex> 4606 {
+      -0.333448022604 0.286327302456 0.784900069237
+      <UV>  {
+        0.757408 0.065092
+        <Tangent> { -0.402214 -0.915546 0.000000 }
+        <Binormal> { -0.096006 0.042177 0.347648 }
+      }
+      <Normal> { 0.693045 0.713218 0.104862 }
+    }
+    <Vertex> 4607 {
+      -0.198674947023 0.656073093414 0.784900069237
+      <UV>  {
+        0.781442 0.065092
+        <Tangent> { 0.179491 -0.983760 0.000000 }
+        <Binormal> { -0.190525 -0.034762 0.016198 }
+      }
+      <Normal> { -0.160131 0.967895 0.193670 }
+    }
+    <Vertex> 4608 {
+      -0.409344285727 0.828676402569 1.18573212624
+      <UV>  {
+        0.743874 0.163810
+        <Tangent> { 0.000004 -1.000000 0.000000 }
+        <Binormal> { -0.100925 -0.000000 -0.793052 }
+      }
+      <Normal> { -0.793054 0.600696 0.100925 }
+    }
+    <Vertex> 4609 {
+      -0.29316085577 0.656073093414 1.18573212624
+      <UV>  {
+        0.764592 0.163810
+        <Tangent> { -0.406959 0.547875 -0.730902 }
+        <Binormal> { 0.824753 0.164894 -0.335612 }
+      }
+      <Normal> { -0.109256 0.971770 0.208960 }
+    }
+    <Vertex> 4610 {
+      -0.198674947023 0.656073093414 0.784900069237
+      <UV>  {
+        0.781442 0.065092
+        <Tangent> { 0.179491 -0.983760 0.000000 }
+        <Binormal> { -0.190525 -0.034762 0.016198 }
+      }
+      <Normal> { -0.160131 0.967895 0.193670 }
+    }
+    <Vertex> 4611 {
+      -0.336564660072 0.828676402569 0.784900069237
+      <UV>  {
+        0.756852 0.065092
+        <Tangent> { 0.841559 -0.540165 0.000000 }
+        <Binormal> { -0.067902 -0.105789 0.058710 }
+      }
+      <Normal> { -0.801691 0.584338 0.125706 }
+    }
+    <Vertex> 4612 {
+      -0.652492344379 0.904367208481 1.18573212624
+      <UV>  {
+        0.700514 0.163810
+        <Tangent> { -0.934690 -0.355343 0.009253 }
+        <Binormal> { -0.007057 0.006720 -0.454781 }
+      }
+      <Normal> { -0.993896 0.108707 0.017029 }
+    }
+    <Vertex> 4613 {
+      -0.409344285727 0.828676402569 1.18573212624
+      <UV>  {
+        0.743874 0.163810
+        <Tangent> { 0.000004 -1.000000 0.000000 }
+        <Binormal> { -0.100925 -0.000000 -0.793052 }
+      }
+      <Normal> { -0.793054 0.600696 0.100925 }
+    }
+    <Vertex> 4614 {
+      -0.336564660072 0.828676402569 0.784900069237
+      <UV>  {
+        0.756852 0.065092
+        <Tangent> { 0.841559 -0.540165 0.000000 }
+        <Binormal> { -0.067902 -0.105789 0.058710 }
+      }
+      <Normal> { -0.801691 0.584338 0.125706 }
+    }
+    <Vertex> 4615 {
+      -0.625139534473 0.933296620846 0.784900069237
+      <UV>  {
+        0.705392 0.065092
+        <Tangent> { 0.992777 -0.119974 0.000000 }
+        <Binormal> { -0.008879 -0.073473 0.043047 }
+      }
+      <Normal> { -0.983947 0.162267 0.074007 }
+    }
+    <Vertex> 4616 {
+      -1.18857944012 0.828676462173 1.18573212624
+      <UV>  {
+        0.604915 0.163810
+        <Tangent> { -0.000011 1.000000 0.000000 }
+        <Binormal> { 0.101077 0.000001 0.792206 }
+      }
+      <Normal> { -0.792199 -0.601764 0.101077 }
+    }
+    <Vertex> 4617 {
+      -0.945430755615 0.904367208481 1.18573212624
+      <UV>  {
+        0.648275 0.163810
+        <Tangent> { 1.000000 -0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.020600 -0.135899 }
+      }
+      <Normal> { -0.990478 -0.135899 0.020600 }
+    }
+    <Vertex> 4618 {
+      -0.972806692123 0.93329668045 0.784900069237
+      <UV>  {
+        0.643393 0.065092
+        <Tangent> { 0.975691 0.219151 0.000000 }
+        <Binormal> { 0.016219 -0.072208 0.057311 }
+      }
+      <Normal> { -0.983947 -0.162267 0.074007 }
+    }
+    <Vertex> 4619 {
+      -1.26138210297 0.828676462173 0.784900069237
+      <UV>  {
+        0.591932 0.065092
+        <Tangent> { 0.693413 0.720540 0.000000 }
+        <Binormal> { 0.090730 -0.087314 0.170978 }
+      }
+      <Normal> { -0.800775 -0.585528 0.125919 }
+    }
+    <Vertex> 4620 {
+      -1.30402612686 0.65607303381 1.18573212624
+      <UV>  {
+        0.584328 0.163810
+        <Tangent> { 0.000002 -0.759216 0.650838 }
+        <Binormal> { 0.473972 -0.070831 -0.082627 }
+      }
+      <Normal> { -0.108829 -0.971862 0.208838 }
+    }
+    <Vertex> 4621 {
+      -1.18857944012 0.828676462173 1.18573212624
+      <UV>  {
+        0.604915 0.163810
+        <Tangent> { -0.000011 1.000000 0.000000 }
+        <Binormal> { 0.101077 0.000001 0.792206 }
+      }
+      <Normal> { -0.792199 -0.601764 0.101077 }
+    }
+    <Vertex> 4622 {
+      -1.26138210297 0.828676462173 0.784900069237
+      <UV>  {
+        0.591932 0.065092
+        <Tangent> { 0.693413 0.720540 0.000000 }
+        <Binormal> { 0.090730 -0.087314 0.170978 }
+      }
+      <Normal> { -0.800775 -0.585528 0.125919 }
+    }
+    <Vertex> 4623 {
+      -1.39839804173 0.65607303381 0.784900069237
+      <UV>  {
+        0.567499 0.065092
+        <Tangent> { -0.129371 0.991596 0.000000 }
+        <Binormal> { 0.192013 0.025051 0.283439 }
+      }
+      <Normal> { -0.159551 -0.967986 0.193640 }
+    }
+    <Vertex> 4624 {
+      -1.19120538235 0.244999676943 1.18573212624
+      <UV>  {
+        0.604447 0.163810
+        <Tangent> { -0.000002 0.932435 -0.361338 }
+        <Binormal> { -0.110928 -0.230596 -0.595053 }
+      }
+      <Normal> { 0.638173 -0.750450 0.171850 }
+    }
+    <Vertex> 4625 {
+      -1.30402612686 0.65607303381 1.18573212624
+      <UV>  {
+        0.584328 0.163810
+        <Tangent> { 0.000002 -0.759216 0.650838 }
+        <Binormal> { 0.473972 -0.070831 -0.082627 }
+      }
+      <Normal> { -0.108829 -0.971862 0.208838 }
+    }
+    <Vertex> 4626 {
+      -1.39839804173 0.65607303381 0.784900069237
+      <UV>  {
+        0.567499 0.065092
+        <Tangent> { -0.129371 0.991596 0.000000 }
+        <Binormal> { 0.192013 0.025051 0.283439 }
+      }
+      <Normal> { -0.159551 -0.967986 0.193640 }
+    }
+    <Vertex> 4627 {
+      -1.26449882984 0.286327302456 0.784900069237
+      <UV>  {
+        0.591377 0.065092
+        <Tangent> { -0.654909 0.755708 -0.000000 }
+        <Binormal> { 0.079337 0.068755 -0.055740 }
+      }
+      <Normal> { 0.692373 -0.713828 0.104984 }
+    }
+    <Vertex> 4628 {
+      -1.04687559605 0.210964486003 1.17381608486
+      <UV>  {
+        0.630185 0.160875
+        <Tangent> { 0.000002 -0.946844 -0.321694 }
+        <Binormal> { -0.165625 -0.306437 0.901938 }
+      }
+      <Normal> { 0.952574 -0.294870 0.074740 }
+    }
+    <Vertex> 4629 {
+      -1.19120538235 0.244999676943 1.18573212624
+      <UV>  {
+        0.604447 0.163810
+        <Tangent> { -0.000002 0.932435 -0.361338 }
+        <Binormal> { -0.110928 -0.230596 -0.595053 }
+      }
+      <Normal> { 0.638173 -0.750450 0.171850 }
+    }
+    <Vertex> 4630 {
+      -1.26449882984 0.286327302456 0.784900069237
+      <UV>  {
+        0.591377 0.065092
+        <Tangent> { -0.654909 0.755708 -0.000000 }
+        <Binormal> { 0.079337 0.068755 -0.055740 }
+      }
+      <Normal> { 0.692373 -0.713828 0.104984 }
+    }
+    <Vertex> 4631 {
+      -1.09320425987 0.206831738353 0.772983908653
+      <UV>  {
+        0.621923 0.062157
+        <Tangent> { -0.970759 0.240055 -0.000000 }
+        <Binormal> { 0.003136 0.012680 -0.000412 }
+      }
+      <Normal> { 0.970763 -0.239631 0.013062 }
+    }
+    <Vertex> 4632 {
+      -0.830359101295 0.177602529526 1.16401350498
+      <UV>  {
+        0.668795 0.158461
+        <Tangent> { -0.000010 0.457700 -0.889107 }
+        <Binormal> { -0.101963 -0.881265 -0.453662 }
+      }
+      <Normal> { 0.991180 -0.129307 0.028413 }
+    }
+    <Vertex> 4633 {
+      -1.04687559605 0.210964486003 1.17381608486
+      <UV>  {
+        0.630185 0.160875
+        <Tangent> { 0.000002 -0.946844 -0.321694 }
+        <Binormal> { -0.165625 -0.306437 0.901938 }
+      }
+      <Normal> { 0.952574 -0.294870 0.074740 }
+    }
+    <Vertex> 4634 {
+      -1.09320425987 0.206831738353 0.772983908653
+      <UV>  {
+        0.621923 0.062157
+        <Tangent> { -0.970759 0.240055 -0.000000 }
+        <Binormal> { 0.003136 0.012680 -0.000412 }
+      }
+      <Normal> { 0.970763 -0.239631 0.013062 }
+    }
+    <Vertex> 4635 {
+      -0.836236774921 0.173469752073 0.763181328773
+      <UV>  {
+        0.667747 0.059743
+        <Tangent> { -0.991736 0.128295 -0.000000 }
+        <Binormal> { 0.002467 0.019068 0.010530 }
+      }
+      <Normal> { 0.990143 -0.138707 0.019227 }
+    }
+    <Vertex> 4636 {
+      -0.945430755615 0.904367208481 1.18573212624
+      <UV>  {
+        0.648275 0.163810
+        <Tangent> { 1.000000 -0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.020600 -0.135899 }
+      }
+      <Normal> { -0.990478 -0.135899 0.020600 }
+    }
+    <Vertex> 4637 {
+      -0.652492344379 0.904367208481 1.18573212624
+      <UV>  {
+        0.700514 0.163810
+        <Tangent> { -0.934690 -0.355343 0.009253 }
+        <Binormal> { -0.007057 0.006720 -0.454781 }
+      }
+      <Normal> { -0.993896 0.108707 0.017029 }
+    }
+    <Vertex> 4638 {
+      -0.625139534473 0.933296620846 0.784900069237
+      <UV>  {
+        0.705392 0.065092
+        <Tangent> { 0.992777 -0.119974 0.000000 }
+        <Binormal> { -0.008879 -0.073473 0.043047 }
+      }
+      <Normal> { -0.983947 0.162267 0.074007 }
+    }
+    <Vertex> 4639 {
+      -0.972806692123 0.93329668045 0.784900069237
+      <UV>  {
+        0.643393 0.065092
+        <Tangent> { 0.975691 0.219151 0.000000 }
+        <Binormal> { 0.016219 -0.072208 0.057311 }
+      }
+      <Normal> { -0.983947 -0.162267 0.074007 }
+    }
+    <Vertex> 4640 {
+      -0.616795361042 0.0533049069345 3.38618993759
+      <UV>  {
+        0.991412 0.684074
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4641 {
+      -0.626801013947 0.0542302802205 3.39834690094
+      <UV>  {
+        0.988386 0.689165
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4642 {
+      -0.638087749481 0.0533736161888 3.38709259033
+      <UV>  {
+        0.984974 0.684452
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4643 {
+      -0.630067169666 0.0526318624616 3.37734770775
+      <UV>  {
+        0.987399 0.680371
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4644 {
+      -0.609360635281 0.0522491894662 3.37232041359
+      <UV>  {
+        0.993659 0.678266
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4645 {
+      -0.616795361042 0.0533049069345 3.38618993759
+      <UV>  {
+        0.991412 0.684074
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4646 {
+      -0.630067169666 0.0526318624616 3.37734770775
+      <UV>  {
+        0.987399 0.680371
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4647 {
+      -0.624107480049 0.0517855919898 3.36622977257
+      <UV>  {
+        0.989201 0.675716
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4648 {
+      -0.604782342911 0.05110367015 3.35727095604
+      <UV>  {
+        0.995043 0.671964
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4649 {
+      -0.609360635281 0.0522491894662 3.37232041359
+      <UV>  {
+        0.993659 0.678266
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4650 {
+      -0.624107480049 0.0517855919898 3.36622977257
+      <UV>  {
+        0.989201 0.675716
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4651 {
+      -0.620437502861 0.0508673265576 3.35416603088
+      <UV>  {
+        0.990310 0.670663
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4652 {
+      -0.60323625803 0.0499123707414 3.34162020683
+      <UV>  {
+        0.995511 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4653 {
+      -0.604782342911 0.05110367015 3.35727095604
+      <UV>  {
+        0.995043 0.671964
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4654 {
+      -0.620437502861 0.0508673265576 3.35416603088
+      <UV>  {
+        0.990310 0.670663
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4655 {
+      -0.619198203087 0.0499123707414 3.34162020683
+      <UV>  {
+        0.990685 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4656 {
+      -0.604782342911 0.0487210676074 3.32596969604
+      <UV>  {
+        0.995043 0.658856
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4657 {
+      -0.60323625803 0.0499123707414 3.34162020683
+      <UV>  {
+        0.995511 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4658 {
+      -0.619198203087 0.0499123707414 3.34162020683
+      <UV>  {
+        0.990685 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4659 {
+      -0.620437502861 0.0489574149251 3.3290746212
+      <UV>  {
+        0.990310 0.660156
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4660 {
+      -0.609360635281 0.0475755482912 3.31092023849
+      <UV>  {
+        0.993659 0.652554
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4661 {
+      -0.604782342911 0.0487210676074 3.32596969604
+      <UV>  {
+        0.995043 0.658856
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4662 {
+      -0.620437502861 0.0489574149251 3.3290746212
+      <UV>  {
+        0.990310 0.660156
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4663 {
+      -0.624107480049 0.048039149493 3.31701087952
+      <UV>  {
+        0.989201 0.655104
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4664 {
+      -0.616795361042 0.0465198308229 3.29705071449
+      <UV>  {
+        0.991412 0.646745
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4665 {
+      -0.609360635281 0.0475755482912 3.31092023849
+      <UV>  {
+        0.993659 0.652554
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4666 {
+      -0.624107480049 0.048039149493 3.31701087952
+      <UV>  {
+        0.989201 0.655104
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4667 {
+      -0.630067169666 0.0471928790212 3.30589294434
+      <UV>  {
+        0.987399 0.650448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4668 {
+      -0.626801013947 0.0455944798887 3.28489398956
+      <UV>  {
+        0.988386 0.641654
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4669 {
+      -0.616795361042 0.0465198308229 3.29705071449
+      <UV>  {
+        0.991412 0.646745
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4670 {
+      -0.630067169666 0.0471928790212 3.30589294434
+      <UV>  {
+        0.987399 0.650448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4671 {
+      -0.638087749481 0.046451125294 3.29614830017
+      <UV>  {
+        0.984974 0.646367
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4672 {
+      -0.638992965221 0.044835075736 3.27491736412
+      <UV>  {
+        0.984700 0.637477
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4673 {
+      -0.626801013947 0.0455944798887 3.28489398956
+      <UV>  {
+        0.988386 0.641654
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4674 {
+      -0.638087749481 0.046451125294 3.29614830017
+      <UV>  {
+        0.984974 0.646367
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4675 {
+      -0.647860944271 0.0458423681557 3.28815078735
+      <UV>  {
+        0.982019 0.643018
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4676 {
+      -0.652902603149 0.0442707724869 3.2675037384
+      <UV>  {
+        0.980495 0.634372
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4677 {
+      -0.638992965221 0.044835075736 3.27491736412
+      <UV>  {
+        0.984700 0.637477
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4678 {
+      -0.647860944271 0.0458423681557 3.28815078735
+      <UV>  {
+        0.982019 0.643018
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4679 {
+      -0.659010887146 0.0453900359571 3.28220796585
+      <UV>  {
+        0.978648 0.640530
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4680 {
+      -0.66799557209 0.0439232699573 3.26293849945
+      <UV>  {
+        0.975931 0.632460
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4681 {
+      -0.652902603149 0.0442707724869 3.2675037384
+      <UV>  {
+        0.980495 0.634372
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4682 {
+      -0.659010887146 0.0453900359571 3.28220796585
+      <UV>  {
+        0.978648 0.640530
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4683 {
+      -0.671109557152 0.045111477375 3.2785487175
+      <UV>  {
+        0.974990 0.638997
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4684 {
+      -0.683691561222 0.0438059456646 3.26139712334
+      <UV>  {
+        0.971186 0.631815
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4685 {
+      -0.66799557209 0.0439232699573 3.26293849945
+      <UV>  {
+        0.975931 0.632460
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4686 {
+      -0.671109557152 0.045111477375 3.2785487175
+      <UV>  {
+        0.974990 0.638997
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4687 {
+      -0.683691561222 0.0450174286962 3.277312994
+      <UV>  {
+        0.971186 0.638480
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4688 {
+      -0.699387669563 0.0439232736826 3.26293849945
+      <UV>  {
+        0.966440 0.632460
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4689 {
+      -0.683691561222 0.0438059456646 3.26139712334
+      <UV>  {
+        0.971186 0.631815
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4690 {
+      -0.683691561222 0.0450174286962 3.277312994
+      <UV>  {
+        0.971186 0.638480
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4691 {
+      -0.696273684502 0.045111477375 3.2785487175
+      <UV>  {
+        0.967382 0.638997
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4692 {
+      -0.71448045969 0.0442707762122 3.2675037384
+      <UV>  {
+        0.961877 0.634372
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4693 {
+      -0.699387669563 0.0439232736826 3.26293849945
+      <UV>  {
+        0.966440 0.632460
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4694 {
+      -0.696273684502 0.045111477375 3.2785487175
+      <UV>  {
+        0.967382 0.638997
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4695 {
+      -0.708372116089 0.0453900396824 3.28220796585
+      <UV>  {
+        0.963724 0.640530
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4696 {
+      -0.728390097618 0.0448350794613 3.27491736412
+      <UV>  {
+        0.957671 0.637477
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4697 {
+      -0.71448045969 0.0442707762122 3.2675037384
+      <UV>  {
+        0.961877 0.634372
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4698 {
+      -0.708372116089 0.0453900396824 3.28220796585
+      <UV>  {
+        0.963724 0.640530
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4699 {
+      -0.719522178173 0.045842371881 3.28815078735
+      <UV>  {
+        0.960353 0.643018
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4700 {
+      -0.740582108498 0.045594483614 3.28489398956
+      <UV>  {
+        0.953985 0.641654
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4701 {
+      -0.728390097618 0.0448350794613 3.27491736412
+      <UV>  {
+        0.957671 0.637477
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4702 {
+      -0.719522178173 0.045842371881 3.28815078735
+      <UV>  {
+        0.960353 0.643018
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4703 {
+      -0.729295313358 0.0464511290193 3.29614830017
+      <UV>  {
+        0.957398 0.646367
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4704 {
+      -0.750587701797 0.0465198382735 3.29705071449
+      <UV>  {
+        0.950960 0.646745
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4705 {
+      -0.740582108498 0.045594483614 3.28489398956
+      <UV>  {
+        0.953985 0.641654
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4706 {
+      -0.729295313358 0.0464511290193 3.29614830017
+      <UV>  {
+        0.957398 0.646367
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4707 {
+      -0.737315893173 0.0471928827465 3.30589294434
+      <UV>  {
+        0.954973 0.650448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4708 {
+      -0.758022487164 0.0475755557418 3.31092023849
+      <UV>  {
+        0.948712 0.652554
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4709 {
+      -0.750587701797 0.0465198382735 3.29705071449
+      <UV>  {
+        0.950960 0.646745
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4710 {
+      -0.737315893173 0.0471928827465 3.30589294434
+      <UV>  {
+        0.954973 0.650448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4711 {
+      -0.743275702 0.0480391532183 3.31701087952
+      <UV>  {
+        0.953171 0.655104
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4712 {
+      -0.762600958347 0.048721075058 3.32596969604
+      <UV>  {
+        0.947328 0.658856
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4713 {
+      -0.758022487164 0.0475755557418 3.31092023849
+      <UV>  {
+        0.948712 0.652554
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4714 {
+      -0.743275702 0.0480391532183 3.31701087952
+      <UV>  {
+        0.953171 0.655104
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4715 {
+      -0.746945798397 0.0489574186504 3.3290746212
+      <UV>  {
+        0.952061 0.660156
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4716 {
+      -0.76414680481 0.0499123744667 3.34162020683
+      <UV>  {
+        0.946860 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4717 {
+      -0.762600958347 0.048721075058 3.32596969604
+      <UV>  {
+        0.947328 0.658856
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4718 {
+      -0.746945798397 0.0489574186504 3.3290746212
+      <UV>  {
+        0.952061 0.660156
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4719 {
+      -0.748184978962 0.0499123744667 3.34162020683
+      <UV>  {
+        0.951686 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4720 {
+      -0.762600958347 0.0511036776006 3.35727119446
+      <UV>  {
+        0.947328 0.671964
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4721 {
+      -0.76414680481 0.0499123744667 3.34162020683
+      <UV>  {
+        0.946860 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4722 {
+      -0.748184978962 0.0499123744667 3.34162020683
+      <UV>  {
+        0.951686 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4723 {
+      -0.746945798397 0.0508673302829 3.3541662693
+      <UV>  {
+        0.952061 0.670664
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4724 {
+      -0.758022427559 0.0522492155433 3.37232065201
+      <UV>  {
+        0.948712 0.678266
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4725 {
+      -0.762600958347 0.0511036776006 3.35727119446
+      <UV>  {
+        0.947328 0.671964
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4726 {
+      -0.746945798397 0.0508673302829 3.3541662693
+      <UV>  {
+        0.952061 0.670664
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4727 {
+      -0.74327558279 0.051785595715 3.36622977257
+      <UV>  {
+        0.953171 0.675716
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4728 {
+      -0.750587522984 0.0533049143851 3.38618993759
+      <UV>  {
+        0.950960 0.684074
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4729 {
+      -0.758022427559 0.0522492155433 3.37232065201
+      <UV>  {
+        0.948712 0.678266
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4730 {
+      -0.74327558279 0.051785595715 3.36622977257
+      <UV>  {
+        0.953171 0.675716
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4731 {
+      -0.737315833569 0.0526318661869 3.37734770775
+      <UV>  {
+        0.954973 0.680371
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4732 {
+      -0.740581929684 0.0542302839458 3.39834690094
+      <UV>  {
+        0.953985 0.689165
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4733 {
+      -0.750587522984 0.0533049143851 3.38618993759
+      <UV>  {
+        0.950960 0.684074
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4734 {
+      -0.737315833569 0.0526318661869 3.37734770775
+      <UV>  {
+        0.954973 0.680371
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4735 {
+      -0.729295253754 0.0533736199141 3.38709259033
+      <UV>  {
+        0.957398 0.684452
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4736 {
+      -0.728389918804 0.0549896880984 3.40832352638
+      <UV>  {
+        0.957671 0.693343
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4737 {
+      -0.740581929684 0.0542302839458 3.39834690094
+      <UV>  {
+        0.953985 0.689165
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4738 {
+      -0.729295253754 0.0533736199141 3.38709259033
+      <UV>  {
+        0.957398 0.684452
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4739 {
+      -0.719522118568 0.0539823770523 3.39509010315
+      <UV>  {
+        0.960353 0.687801
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4740 {
+      -0.714480340481 0.0555539727211 3.41573691368
+      <UV>  {
+        0.961877 0.696448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4741 {
+      -0.728389918804 0.0549896880984 3.40832352638
+      <UV>  {
+        0.957671 0.693343
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4742 {
+      -0.719522118568 0.0539823770523 3.39509010315
+      <UV>  {
+        0.960353 0.687801
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4743 {
+      -0.70837199688 0.0544347092509 3.40103268623
+      <UV>  {
+        0.963724 0.690290
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4744 {
+      -0.699387431145 0.055901452899 3.42030215263
+      <UV>  {
+        0.966440 0.698359
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4745 {
+      -0.714480340481 0.0555539727211 3.41573691368
+      <UV>  {
+        0.961877 0.696448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4746 {
+      -0.70837199688 0.0544347092509 3.40103268623
+      <UV>  {
+        0.963724 0.690290
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4747 {
+      -0.696273446083 0.054713267833 3.404692173
+      <UV>  {
+        0.967382 0.691822
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4748 {
+      -0.683691442013 0.0560187995434 3.42184352875
+      <UV>  {
+        0.971186 0.699005
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4749 {
+      -0.699387431145 0.055901452899 3.42030215263
+      <UV>  {
+        0.966440 0.698359
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4750 {
+      -0.696273446083 0.054713267833 3.404692173
+      <UV>  {
+        0.967382 0.691822
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4751 {
+      -0.683691442013 0.0548073165119 3.40592765808
+      <UV>  {
+        0.971186 0.692340
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4752 {
+      -0.667995333672 0.055901452899 3.42030191422
+      <UV>  {
+        0.975931 0.698359
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4753 {
+      -0.683691442013 0.0560187995434 3.42184352875
+      <UV>  {
+        0.971186 0.699005
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4754 {
+      -0.683691442013 0.0548073165119 3.40592765808
+      <UV>  {
+        0.971186 0.692340
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4755 {
+      -0.671109378338 0.0547132492065 3.40469193459
+      <UV>  {
+        0.974990 0.691822
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4756 {
+      -0.652902603149 0.0555539727211 3.41573691368
+      <UV>  {
+        0.980495 0.696448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4757 {
+      -0.667995333672 0.055901452899 3.42030191422
+      <UV>  {
+        0.975931 0.698359
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4758 {
+      -0.671109378338 0.0547132492065 3.40469193459
+      <UV>  {
+        0.974990 0.691822
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4759 {
+      -0.659010887146 0.0544347055256 3.40103268623
+      <UV>  {
+        0.978648 0.690290
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4760 {
+      -0.638992905617 0.0549896657467 3.40832352638
+      <UV>  {
+        0.984700 0.693343
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4761 {
+      -0.652902603149 0.0555539727211 3.41573691368
+      <UV>  {
+        0.980495 0.696448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4762 {
+      -0.659010887146 0.0544347055256 3.40103268623
+      <UV>  {
+        0.978648 0.690290
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4763 {
+      -0.647860825062 0.053982373327 3.39509010315
+      <UV>  {
+        0.982019 0.687801
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4764 {
+      -0.626801013947 0.0542302802205 3.39834690094
+      <UV>  {
+        0.988386 0.689165
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4765 {
+      -0.638992905617 0.0549896657467 3.40832352638
+      <UV>  {
+        0.984700 0.693343
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4766 {
+      -0.647860825062 0.053982373327 3.39509010315
+      <UV>  {
+        0.982019 0.687801
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4767 {
+      -0.638087749481 0.0533736161888 3.38709259033
+      <UV>  {
+        0.984974 0.684452
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4768 {
+      -0.638087749481 0.0533736161888 3.38709259033
+      <UV>  {
+        0.984974 0.684452
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4769 {
+      -0.647860825062 0.053982373327 3.39509010315
+      <UV>  {
+        0.982019 0.687801
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4770 {
+      -0.647860825062 0.0772661790252 3.39331769943
+      <UV>  {
+        0.982019 0.687801
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4771 {
+      -0.638087749481 0.0766574367881 3.38532018661
+      <UV>  {
+        0.984974 0.684452
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4772 {
+      -0.647860825062 0.053982373327 3.39509010315
+      <UV>  {
+        0.982019 0.687801
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4773 {
+      -0.659010887146 0.0544347055256 3.40103268623
+      <UV>  {
+        0.978648 0.690290
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4774 {
+      -0.659010887146 0.077718526125 3.39926028252
+      <UV>  {
+        0.978648 0.690290
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4775 {
+      -0.647860825062 0.0772661790252 3.39331769943
+      <UV>  {
+        0.982019 0.687801
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4776 {
+      -0.659010887146 0.0544347055256 3.40103268623
+      <UV>  {
+        0.978648 0.690290
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4777 {
+      -0.671109378338 0.0547132492065 3.40469193459
+      <UV>  {
+        0.974990 0.691822
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4778 {
+      -0.671109378338 0.0779970511794 3.40291953087
+      <UV>  {
+        0.974990 0.691822
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4779 {
+      -0.659010887146 0.077718526125 3.39926028252
+      <UV>  {
+        0.978648 0.690290
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4780 {
+      -0.671109378338 0.0547132492065 3.40469193459
+      <UV>  {
+        0.974990 0.691822
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4781 {
+      -0.683691442013 0.0548073165119 3.40592765808
+      <UV>  {
+        0.971186 0.692340
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4782 {
+      -0.683691442013 0.0780911147594 3.40415525436
+      <UV>  {
+        0.971186 0.692340
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4783 {
+      -0.671109378338 0.0779970511794 3.40291953087
+      <UV>  {
+        0.974990 0.691822
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4784 {
+      -0.683691442013 0.0548073165119 3.40592765808
+      <UV>  {
+        0.971186 0.692340
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4785 {
+      -0.696273446083 0.054713267833 3.404692173
+      <UV>  {
+        0.967382 0.691822
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4786 {
+      -0.696273446083 0.0779970735312 3.40291976929
+      <UV>  {
+        0.967382 0.691822
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4787 {
+      -0.683691442013 0.0780911147594 3.40415525436
+      <UV>  {
+        0.971186 0.692340
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4788 {
+      -0.696273446083 0.054713267833 3.404692173
+      <UV>  {
+        0.967382 0.691822
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4789 {
+      -0.70837199688 0.0544347092509 3.40103268623
+      <UV>  {
+        0.963724 0.690290
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4790 {
+      -0.70837199688 0.077718526125 3.39926028252
+      <UV>  {
+        0.963724 0.690290
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4791 {
+      -0.696273446083 0.0779970735312 3.40291976929
+      <UV>  {
+        0.967382 0.691822
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4792 {
+      -0.70837199688 0.0544347092509 3.40103268623
+      <UV>  {
+        0.963724 0.690290
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4793 {
+      -0.719522118568 0.0539823770523 3.39509010315
+      <UV>  {
+        0.960353 0.687801
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4794 {
+      -0.719522118568 0.0772661790252 3.39331769943
+      <UV>  {
+        0.960353 0.687801
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4795 {
+      -0.70837199688 0.077718526125 3.39926028252
+      <UV>  {
+        0.963724 0.690290
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4796 {
+      -0.719522118568 0.0539823770523 3.39509010315
+      <UV>  {
+        0.960353 0.687801
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4797 {
+      -0.729295253754 0.0533736199141 3.38709259033
+      <UV>  {
+        0.957398 0.684452
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4798 {
+      -0.729295253754 0.0766574442387 3.38532018661
+      <UV>  {
+        0.957398 0.684452
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4799 {
+      -0.719522118568 0.0772661790252 3.39331769943
+      <UV>  {
+        0.960353 0.687801
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4800 {
+      -0.729295253754 0.0533736199141 3.38709259033
+      <UV>  {
+        0.957398 0.684452
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4801 {
+      -0.737315833569 0.0526318661869 3.37734770775
+      <UV>  {
+        0.954973 0.680371
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4802 {
+      -0.737315833569 0.075915671885 3.37557530403
+      <UV>  {
+        0.954973 0.680371
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4803 {
+      -0.729295253754 0.0766574442387 3.38532018661
+      <UV>  {
+        0.957398 0.684452
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4804 {
+      -0.737315833569 0.0526318661869 3.37734770775
+      <UV>  {
+        0.954973 0.680371
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4805 {
+      -0.74327558279 0.051785595715 3.36622977257
+      <UV>  {
+        0.953171 0.675716
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4806 {
+      -0.74327558279 0.0750693976879 3.36445736885
+      <UV>  {
+        0.953171 0.675716
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4807 {
+      -0.737315833569 0.075915671885 3.37557530403
+      <UV>  {
+        0.954973 0.680371
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4808 {
+      -0.74327558279 0.051785595715 3.36622977257
+      <UV>  {
+        0.953171 0.675716
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4809 {
+      -0.746945798397 0.0508673302829 3.3541662693
+      <UV>  {
+        0.952061 0.670664
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4810 {
+      -0.746945798397 0.0741511508822 3.35239386559
+      <UV>  {
+        0.952061 0.670664
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4811 {
+      -0.74327558279 0.0750693976879 3.36445736885
+      <UV>  {
+        0.953171 0.675716
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4812 {
+      -0.746945798397 0.0508673302829 3.3541662693
+      <UV>  {
+        0.952061 0.670664
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4813 {
+      -0.748184978962 0.0499123744667 3.34162020683
+      <UV>  {
+        0.951686 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4814 {
+      -0.748184978962 0.0731961801648 3.33984804153
+      <UV>  {
+        0.951686 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4815 {
+      -0.746945798397 0.0741511508822 3.35239386559
+      <UV>  {
+        0.952061 0.670664
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4816 {
+      -0.748184978962 0.0499123744667 3.34162020683
+      <UV>  {
+        0.951686 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4817 {
+      -0.746945798397 0.0489574186504 3.3290746212
+      <UV>  {
+        0.952061 0.660156
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4818 {
+      -0.746945798397 0.0722412392497 3.3273024559
+      <UV>  {
+        0.952061 0.660156
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4819 {
+      -0.748184978962 0.0731961801648 3.33984804153
+      <UV>  {
+        0.951686 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4820 {
+      -0.746945798397 0.0489574186504 3.3290746212
+      <UV>  {
+        0.952061 0.660156
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4821 {
+      -0.743275702 0.0480391532183 3.31701087952
+      <UV>  {
+        0.953171 0.655104
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4822 {
+      -0.743275702 0.0713229775429 3.31523871422
+      <UV>  {
+        0.953171 0.655104
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4823 {
+      -0.746945798397 0.0722412392497 3.3273024559
+      <UV>  {
+        0.952061 0.660156
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4824 {
+      -0.743275702 0.0480391532183 3.31701087952
+      <UV>  {
+        0.953171 0.655104
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4825 {
+      -0.737315893173 0.0471928827465 3.30589294434
+      <UV>  {
+        0.954973 0.650448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4826 {
+      -0.737315893173 0.0704767033458 3.30412077904
+      <UV>  {
+        0.954973 0.650448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4827 {
+      -0.743275702 0.0713229775429 3.31523871422
+      <UV>  {
+        0.953171 0.655104
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4828 {
+      -0.737315893173 0.0471928827465 3.30589294434
+      <UV>  {
+        0.954973 0.650448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4829 {
+      -0.729295313358 0.0464511290193 3.29614830017
+      <UV>  {
+        0.957398 0.646367
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4830 {
+      -0.729295313358 0.0697349309921 3.29437589645
+      <UV>  {
+        0.957398 0.646367
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4831 {
+      -0.737315893173 0.0704767033458 3.30412077904
+      <UV>  {
+        0.954973 0.650448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4832 {
+      -0.729295313358 0.0464511290193 3.29614830017
+      <UV>  {
+        0.957398 0.646367
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4833 {
+      -0.719522178173 0.045842371881 3.28815078735
+      <UV>  {
+        0.960353 0.643018
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4834 {
+      -0.719522178173 0.0691261962056 3.28637838364
+      <UV>  {
+        0.960353 0.643018
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4835 {
+      -0.729295313358 0.0697349309921 3.29437589645
+      <UV>  {
+        0.957398 0.646367
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4836 {
+      -0.719522178173 0.045842371881 3.28815078735
+      <UV>  {
+        0.960353 0.643018
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4837 {
+      -0.708372116089 0.0453900396824 3.28220796585
+      <UV>  {
+        0.963724 0.640530
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4838 {
+      -0.708372116089 0.0686738416553 3.28043580055
+      <UV>  {
+        0.963724 0.640530
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4839 {
+      -0.719522178173 0.0691261962056 3.28637838364
+      <UV>  {
+        0.960353 0.643018
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4840 {
+      -0.708372116089 0.0453900396824 3.28220796585
+      <UV>  {
+        0.963724 0.640530
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4841 {
+      -0.696273684502 0.045111477375 3.2785487175
+      <UV>  {
+        0.967382 0.638997
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4842 {
+      -0.696273684502 0.0683953016996 3.27677631378
+      <UV>  {
+        0.967382 0.638997
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4843 {
+      -0.708372116089 0.0686738416553 3.28043580055
+      <UV>  {
+        0.963724 0.640530
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4844 {
+      -0.696273684502 0.045111477375 3.2785487175
+      <UV>  {
+        0.967382 0.638997
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4845 {
+      -0.683691561222 0.0450174286962 3.277312994
+      <UV>  {
+        0.971186 0.638480
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4846 {
+      -0.683691561222 0.0683012530208 3.2755408287
+      <UV>  {
+        0.971186 0.638480
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4847 {
+      -0.696273684502 0.0683953016996 3.27677631378
+      <UV>  {
+        0.967382 0.638997
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4848 {
+      -0.683691561222 0.0450174286962 3.277312994
+      <UV>  {
+        0.971186 0.638480
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4849 {
+      -0.671109557152 0.045111477375 3.2785487175
+      <UV>  {
+        0.974990 0.638997
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4850 {
+      -0.671109557152 0.0683953016996 3.27677631378
+      <UV>  {
+        0.974990 0.638997
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4851 {
+      -0.683691561222 0.0683012530208 3.2755408287
+      <UV>  {
+        0.971186 0.638480
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4852 {
+      -0.671109557152 0.045111477375 3.2785487175
+      <UV>  {
+        0.974990 0.638997
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4853 {
+      -0.659010887146 0.0453900359571 3.28220796585
+      <UV>  {
+        0.978648 0.640530
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4854 {
+      -0.659010887146 0.0686738416553 3.28043580055
+      <UV>  {
+        0.978648 0.640530
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4855 {
+      -0.671109557152 0.0683953016996 3.27677631378
+      <UV>  {
+        0.974990 0.638997
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4856 {
+      -0.659010887146 0.0453900359571 3.28220796585
+      <UV>  {
+        0.978648 0.640530
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4857 {
+      -0.647860944271 0.0458423681557 3.28815078735
+      <UV>  {
+        0.982019 0.643018
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4858 {
+      -0.647860944271 0.069126188755 3.28637838364
+      <UV>  {
+        0.982019 0.643018
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4859 {
+      -0.659010887146 0.0686738416553 3.28043580055
+      <UV>  {
+        0.978648 0.640530
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4860 {
+      -0.647860944271 0.0458423681557 3.28815078735
+      <UV>  {
+        0.982019 0.643018
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4861 {
+      -0.638087749481 0.046451125294 3.29614830017
+      <UV>  {
+        0.984974 0.646367
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4862 {
+      -0.638087749481 0.0697349309921 3.29437589645
+      <UV>  {
+        0.984974 0.646367
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4863 {
+      -0.647860944271 0.069126188755 3.28637838364
+      <UV>  {
+        0.982019 0.643018
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4864 {
+      -0.638087749481 0.046451125294 3.29614830017
+      <UV>  {
+        0.984974 0.646367
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4865 {
+      -0.630067169666 0.0471928790212 3.30589294434
+      <UV>  {
+        0.987399 0.650448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4866 {
+      -0.630067169666 0.0704766958952 3.30412077904
+      <UV>  {
+        0.987399 0.650448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4867 {
+      -0.638087749481 0.0697349309921 3.29437589645
+      <UV>  {
+        0.984974 0.646367
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4868 {
+      -0.630067169666 0.0471928790212 3.30589294434
+      <UV>  {
+        0.987399 0.650448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4869 {
+      -0.624107480049 0.048039149493 3.31701087952
+      <UV>  {
+        0.989201 0.655104
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4870 {
+      -0.624107480049 0.0713229700923 3.31523871422
+      <UV>  {
+        0.989201 0.655104
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4871 {
+      -0.630067169666 0.0704766958952 3.30412077904
+      <UV>  {
+        0.987399 0.650448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4872 {
+      -0.624107480049 0.048039149493 3.31701087952
+      <UV>  {
+        0.989201 0.655104
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4873 {
+      -0.620437502861 0.0489574149251 3.3290746212
+      <UV>  {
+        0.990310 0.660156
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4874 {
+      -0.620437502861 0.0722412392497 3.3273024559
+      <UV>  {
+        0.990310 0.660156
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4875 {
+      -0.624107480049 0.0713229700923 3.31523871422
+      <UV>  {
+        0.989201 0.655104
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4876 {
+      -0.620437502861 0.0489574149251 3.3290746212
+      <UV>  {
+        0.990310 0.660156
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4877 {
+      -0.619198203087 0.0499123707414 3.34162020683
+      <UV>  {
+        0.990685 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4878 {
+      -0.619198143482 0.0731961727142 3.33984804153
+      <UV>  {
+        0.990685 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4879 {
+      -0.620437502861 0.0722412392497 3.3273024559
+      <UV>  {
+        0.990310 0.660156
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4880 {
+      -0.619198203087 0.0499123707414 3.34162020683
+      <UV>  {
+        0.990685 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4881 {
+      -0.620437502861 0.0508673265576 3.35416603088
+      <UV>  {
+        0.990310 0.670663
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4882 {
+      -0.620437502861 0.0741511285305 3.35239362717
+      <UV>  {
+        0.990310 0.670663
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4883 {
+      -0.619198143482 0.0731961727142 3.33984804153
+      <UV>  {
+        0.990685 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4884 {
+      -0.620437502861 0.0508673265576 3.35416603088
+      <UV>  {
+        0.990310 0.670663
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4885 {
+      -0.624107480049 0.0517855919898 3.36622977257
+      <UV>  {
+        0.989201 0.675716
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4886 {
+      -0.624107480049 0.0750693902373 3.36445736885
+      <UV>  {
+        0.989201 0.675716
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4887 {
+      -0.620437502861 0.0741511285305 3.35239362717
+      <UV>  {
+        0.990310 0.670663
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4888 {
+      -0.624107480049 0.0517855919898 3.36622977257
+      <UV>  {
+        0.989201 0.675716
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4889 {
+      -0.630067169666 0.0526318624616 3.37734770775
+      <UV>  {
+        0.987399 0.680371
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4890 {
+      -0.630067169666 0.0759156644344 3.37557530403
+      <UV>  {
+        0.987399 0.680371
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4891 {
+      -0.624107480049 0.0750693902373 3.36445736885
+      <UV>  {
+        0.989201 0.675716
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4892 {
+      -0.630067169666 0.0526318624616 3.37734770775
+      <UV>  {
+        0.987399 0.680371
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4893 {
+      -0.638087749481 0.0533736161888 3.38709259033
+      <UV>  {
+        0.984974 0.684452
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4894 {
+      -0.638087749481 0.0766574367881 3.38532018661
+      <UV>  {
+        0.984974 0.684452
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4895 {
+      -0.630067169666 0.0759156644344 3.37557530403
+      <UV>  {
+        0.987399 0.680371
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4896 {
+      -0.638992905617 0.0549896657467 3.40832352638
+      <UV>  {
+        0.984700 0.693343
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4897 {
+      -0.626801013947 0.0542302802205 3.39834690094
+      <UV>  {
+        0.988386 0.689165
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4898 {
+      -0.626801013947 0.0775140821934 3.39657449722
+      <UV>  {
+        0.988386 0.689165
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4899 {
+      -0.638992905617 0.0782734900713 3.40655112267
+      <UV>  {
+        0.984700 0.693343
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4900 {
+      -0.652902603149 0.0555539727211 3.41573691368
+      <UV>  {
+        0.980495 0.696448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4901 {
+      -0.638992905617 0.0549896657467 3.40832352638
+      <UV>  {
+        0.984700 0.693343
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4902 {
+      -0.638992905617 0.0782734900713 3.40655112267
+      <UV>  {
+        0.984700 0.693343
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4903 {
+      -0.652902543545 0.078837774694 3.41396450996
+      <UV>  {
+        0.980495 0.696448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4904 {
+      -0.667995333672 0.055901452899 3.42030191422
+      <UV>  {
+        0.975931 0.698359
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4905 {
+      -0.652902603149 0.0555539727211 3.41573691368
+      <UV>  {
+        0.980495 0.696448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4906 {
+      -0.652902543545 0.078837774694 3.41396450996
+      <UV>  {
+        0.980495 0.696448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4907 {
+      -0.667995333672 0.0791852548718 3.4185295105
+      <UV>  {
+        0.975931 0.698359
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4908 {
+      -0.683691442013 0.0560187995434 3.42184352875
+      <UV>  {
+        0.971186 0.699005
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4909 {
+      -0.667995333672 0.055901452899 3.42030191422
+      <UV>  {
+        0.975931 0.698359
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4910 {
+      -0.667995333672 0.0791852548718 3.4185295105
+      <UV>  {
+        0.975931 0.698359
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4911 {
+      -0.683691442013 0.0793026015162 3.42007112503
+      <UV>  {
+        0.971186 0.699005
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4912 {
+      -0.699387431145 0.055901452899 3.42030215263
+      <UV>  {
+        0.966440 0.698359
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4913 {
+      -0.683691442013 0.0560187995434 3.42184352875
+      <UV>  {
+        0.971186 0.699005
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4914 {
+      -0.683691442013 0.0793026015162 3.42007112503
+      <UV>  {
+        0.971186 0.699005
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4915 {
+      -0.699387431145 0.0791852772236 3.41852974892
+      <UV>  {
+        0.966440 0.698359
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4916 {
+      -0.714480340481 0.0555539727211 3.41573691368
+      <UV>  {
+        0.961877 0.696448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4917 {
+      -0.699387431145 0.055901452899 3.42030215263
+      <UV>  {
+        0.966440 0.698359
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4918 {
+      -0.699387431145 0.0791852772236 3.41852974892
+      <UV>  {
+        0.966440 0.698359
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4919 {
+      -0.714480340481 0.078837774694 3.41396450996
+      <UV>  {
+        0.961877 0.696448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4920 {
+      -0.728389918804 0.0549896880984 3.40832352638
+      <UV>  {
+        0.957671 0.693343
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4921 {
+      -0.714480340481 0.0555539727211 3.41573691368
+      <UV>  {
+        0.961877 0.696448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4922 {
+      -0.714480340481 0.078837774694 3.41396450996
+      <UV>  {
+        0.961877 0.696448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4923 {
+      -0.728389918804 0.0782734900713 3.40655136108
+      <UV>  {
+        0.957671 0.693343
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4924 {
+      -0.740581929684 0.0542302839458 3.39834690094
+      <UV>  {
+        0.953985 0.689165
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4925 {
+      -0.728389918804 0.0549896880984 3.40832352638
+      <UV>  {
+        0.957671 0.693343
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4926 {
+      -0.728389918804 0.0782734900713 3.40655136108
+      <UV>  {
+        0.957671 0.693343
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4927 {
+      -0.740581929684 0.077514089644 3.39657449722
+      <UV>  {
+        0.953985 0.689165
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4928 {
+      -0.750587522984 0.0533049143851 3.38618993759
+      <UV>  {
+        0.950960 0.684074
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4929 {
+      -0.740581929684 0.0542302839458 3.39834690094
+      <UV>  {
+        0.953985 0.689165
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4930 {
+      -0.740581929684 0.077514089644 3.39657449722
+      <UV>  {
+        0.953985 0.689165
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4931 {
+      -0.750587522984 0.0765887349844 3.38441777229
+      <UV>  {
+        0.950960 0.684074
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4932 {
+      -0.758022427559 0.0522492155433 3.37232065201
+      <UV>  {
+        0.948712 0.678266
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4933 {
+      -0.750587522984 0.0533049143851 3.38618993759
+      <UV>  {
+        0.950960 0.684074
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4934 {
+      -0.750587522984 0.0765887349844 3.38441777229
+      <UV>  {
+        0.950960 0.684074
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4935 {
+      -0.758022427559 0.0755330175161 3.37054824829
+      <UV>  {
+        0.948712 0.678266
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4936 {
+      -0.762600958347 0.0511036776006 3.35727119446
+      <UV>  {
+        0.947328 0.671964
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4937 {
+      -0.758022427559 0.0522492155433 3.37232065201
+      <UV>  {
+        0.948712 0.678266
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4938 {
+      -0.758022427559 0.0755330175161 3.37054824829
+      <UV>  {
+        0.948712 0.678266
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4939 {
+      -0.762600958347 0.0743874981999 3.35549879074
+      <UV>  {
+        0.947328 0.671964
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 4940 {
+      -0.762600958347 0.048721075058 3.32596969604
+      <UV>  {
+        0.947328 0.658856
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4941 {
+      -0.76414680481 0.0499123744667 3.34162020683
+      <UV>  {
+        0.946860 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4942 {
+      -0.76414680481 0.0731961801648 3.33984804153
+      <UV>  {
+        0.946860 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4943 {
+      -0.762600958347 0.0720048770308 3.32419729233
+      <UV>  {
+        0.947328 0.658856
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4944 {
+      -0.758022487164 0.0475755557418 3.31092023849
+      <UV>  {
+        0.948712 0.652554
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4945 {
+      -0.762600958347 0.048721075058 3.32596969604
+      <UV>  {
+        0.947328 0.658856
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4946 {
+      -0.762600958347 0.0720048770308 3.32419729233
+      <UV>  {
+        0.947328 0.658856
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4947 {
+      -0.758022487164 0.0708593577147 3.3091480732
+      <UV>  {
+        0.948712 0.652554
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4948 {
+      -0.750587701797 0.0465198382735 3.29705071449
+      <UV>  {
+        0.950960 0.646745
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4949 {
+      -0.758022487164 0.0475755557418 3.31092023849
+      <UV>  {
+        0.948712 0.652554
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4950 {
+      -0.758022487164 0.0708593577147 3.3091480732
+      <UV>  {
+        0.948712 0.652554
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4951 {
+      -0.750587701797 0.0698036402464 3.29527854919
+      <UV>  {
+        0.950960 0.646745
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4952 {
+      -0.740582108498 0.045594483614 3.28489398956
+      <UV>  {
+        0.953985 0.641654
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4953 {
+      -0.750587701797 0.0465198382735 3.29705071449
+      <UV>  {
+        0.950960 0.646745
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4954 {
+      -0.750587701797 0.0698036402464 3.29527854919
+      <UV>  {
+        0.950960 0.646745
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4955 {
+      -0.740582108498 0.0688782855868 3.28312158585
+      <UV>  {
+        0.953985 0.641654
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4956 {
+      -0.728390097618 0.0448350794613 3.27491736412
+      <UV>  {
+        0.957671 0.637477
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4957 {
+      -0.740582108498 0.045594483614 3.28489398956
+      <UV>  {
+        0.953985 0.641654
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4958 {
+      -0.740582108498 0.0688782855868 3.28312158585
+      <UV>  {
+        0.953985 0.641654
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4959 {
+      -0.728390097618 0.0681188777089 3.2731449604
+      <UV>  {
+        0.957671 0.637477
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4960 {
+      -0.71448045969 0.0442707762122 3.2675037384
+      <UV>  {
+        0.961877 0.634372
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4961 {
+      -0.728390097618 0.0448350794613 3.27491736412
+      <UV>  {
+        0.957671 0.637477
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4962 {
+      -0.728390097618 0.0681188777089 3.2731449604
+      <UV>  {
+        0.957671 0.637477
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4963 {
+      -0.71448045969 0.0675545781851 3.2657315731
+      <UV>  {
+        0.961877 0.634372
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4964 {
+      -0.699387669563 0.0439232736826 3.26293849945
+      <UV>  {
+        0.966440 0.632460
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4965 {
+      -0.71448045969 0.0442707762122 3.2675037384
+      <UV>  {
+        0.961877 0.634372
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4966 {
+      -0.71448045969 0.0675545781851 3.2657315731
+      <UV>  {
+        0.961877 0.634372
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4967 {
+      -0.699387669563 0.0672070980072 3.26116633415
+      <UV>  {
+        0.966440 0.632460
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4968 {
+      -0.683691561222 0.0438059456646 3.26139712334
+      <UV>  {
+        0.971186 0.631815
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4969 {
+      -0.699387669563 0.0439232736826 3.26293849945
+      <UV>  {
+        0.966440 0.632460
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4970 {
+      -0.699387669563 0.0672070980072 3.26116633415
+      <UV>  {
+        0.966440 0.632460
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4971 {
+      -0.683691561222 0.067089766264 3.25962471962
+      <UV>  {
+        0.971186 0.631815
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4972 {
+      -0.66799557209 0.0439232699573 3.26293849945
+      <UV>  {
+        0.975931 0.632460
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4973 {
+      -0.683691561222 0.0438059456646 3.26139712334
+      <UV>  {
+        0.971186 0.631815
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4974 {
+      -0.683691561222 0.067089766264 3.25962471962
+      <UV>  {
+        0.971186 0.631815
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4975 {
+      -0.66799557209 0.0672070905566 3.26116633415
+      <UV>  {
+        0.975931 0.632460
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4976 {
+      -0.652902603149 0.0442707724869 3.2675037384
+      <UV>  {
+        0.980495 0.634372
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4977 {
+      -0.66799557209 0.0439232699573 3.26293849945
+      <UV>  {
+        0.975931 0.632460
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4978 {
+      -0.66799557209 0.0672070905566 3.26116633415
+      <UV>  {
+        0.975931 0.632460
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4979 {
+      -0.652902603149 0.0675545707345 3.2657315731
+      <UV>  {
+        0.980495 0.634372
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4980 {
+      -0.638992965221 0.044835075736 3.27491736412
+      <UV>  {
+        0.984700 0.637477
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4981 {
+      -0.652902603149 0.0442707724869 3.2675037384
+      <UV>  {
+        0.980495 0.634372
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4982 {
+      -0.652902603149 0.0675545707345 3.2657315731
+      <UV>  {
+        0.980495 0.634372
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4983 {
+      -0.638992965221 0.0681188777089 3.2731449604
+      <UV>  {
+        0.984700 0.637477
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4984 {
+      -0.626801013947 0.0455944798887 3.28489398956
+      <UV>  {
+        0.988386 0.641654
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4985 {
+      -0.638992965221 0.044835075736 3.27491736412
+      <UV>  {
+        0.984700 0.637477
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4986 {
+      -0.638992965221 0.0681188777089 3.2731449604
+      <UV>  {
+        0.984700 0.637477
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4987 {
+      -0.626801013947 0.0688782855868 3.28312158585
+      <UV>  {
+        0.988386 0.641654
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4988 {
+      -0.616795361042 0.0465198308229 3.29705071449
+      <UV>  {
+        0.991412 0.646745
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4989 {
+      -0.626801013947 0.0455944798887 3.28489398956
+      <UV>  {
+        0.988386 0.641654
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4990 {
+      -0.626801013947 0.0688782855868 3.28312158585
+      <UV>  {
+        0.988386 0.641654
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4991 {
+      -0.616795361042 0.0698036327958 3.29527854919
+      <UV>  {
+        0.991412 0.646745
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4992 {
+      -0.609360635281 0.0475755482912 3.31092023849
+      <UV>  {
+        0.993659 0.652554
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4993 {
+      -0.616795361042 0.0465198308229 3.29705071449
+      <UV>  {
+        0.991412 0.646745
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4994 {
+      -0.616795361042 0.0698036327958 3.29527854919
+      <UV>  {
+        0.991412 0.646745
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4995 {
+      -0.609360635281 0.0708593502641 3.3091480732
+      <UV>  {
+        0.993659 0.652554
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4996 {
+      -0.604782342911 0.0487210676074 3.32596969604
+      <UV>  {
+        0.995043 0.658856
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4997 {
+      -0.609360635281 0.0475755482912 3.31092023849
+      <UV>  {
+        0.993659 0.652554
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4998 {
+      -0.609360635281 0.0708593502641 3.3091480732
+      <UV>  {
+        0.993659 0.652554
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 4999 {
+      -0.604782342911 0.0720048695803 3.32419729233
+      <UV>  {
+        0.995043 0.658856
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5000 {
+      -0.60323625803 0.0499123707414 3.34162020683
+      <UV>  {
+        0.995511 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5001 {
+      -0.604782342911 0.0487210676074 3.32596969604
+      <UV>  {
+        0.995043 0.658856
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5002 {
+      -0.604782342911 0.0720048695803 3.32419729233
+      <UV>  {
+        0.995043 0.658856
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5003 {
+      -0.60323625803 0.0731961727142 3.33984804153
+      <UV>  {
+        0.995511 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5004 {
+      -0.604782342911 0.05110367015 3.35727095604
+      <UV>  {
+        0.995043 0.671964
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5005 {
+      -0.60323625803 0.0499123707414 3.34162020683
+      <UV>  {
+        0.995511 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5006 {
+      -0.60323625803 0.0731961727142 3.33984804153
+      <UV>  {
+        0.995511 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5007 {
+      -0.604782342911 0.0743874683976 3.35549879074
+      <UV>  {
+        0.995043 0.671964
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5008 {
+      -0.609360635281 0.0522491894662 3.37232041359
+      <UV>  {
+        0.993659 0.678266
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5009 {
+      -0.604782342911 0.05110367015 3.35727095604
+      <UV>  {
+        0.995043 0.671964
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5010 {
+      -0.604782342911 0.0743874683976 3.35549879074
+      <UV>  {
+        0.995043 0.671964
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5011 {
+      -0.609360635281 0.0755329951644 3.37054800987
+      <UV>  {
+        0.993659 0.678266
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5012 {
+      -0.616795361042 0.0533049069345 3.38618993759
+      <UV>  {
+        0.991412 0.684074
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5013 {
+      -0.609360635281 0.0522491894662 3.37232041359
+      <UV>  {
+        0.993659 0.678266
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5014 {
+      -0.609360635281 0.0755329951644 3.37054800987
+      <UV>  {
+        0.993659 0.678266
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5015 {
+      -0.616795361042 0.0765887275338 3.38441777229
+      <UV>  {
+        0.991412 0.684074
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5016 {
+      -0.626801013947 0.0542302802205 3.39834690094
+      <UV>  {
+        0.988386 0.689165
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5017 {
+      -0.616795361042 0.0533049069345 3.38618993759
+      <UV>  {
+        0.991412 0.684074
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5018 {
+      -0.616795361042 0.0765887275338 3.38441777229
+      <UV>  {
+        0.991412 0.684074
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5019 {
+      -0.626801013947 0.0775140821934 3.39657449722
+      <UV>  {
+        0.988386 0.689165
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5020 {
+      -0.638087749481 0.0766574367881 3.38532018661
+      <UV>  {
+        0.984974 0.684452
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5021 {
+      -0.626801013947 0.0775140821934 3.39657449722
+      <UV>  {
+        0.988386 0.689165
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5022 {
+      -0.616795361042 0.0765887275338 3.38441777229
+      <UV>  {
+        0.991412 0.684074
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5023 {
+      -0.630067169666 0.0759156644344 3.37557530403
+      <UV>  {
+        0.987399 0.680371
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5024 {
+      -0.630067169666 0.0759156644344 3.37557530403
+      <UV>  {
+        0.987399 0.680371
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5025 {
+      -0.616795361042 0.0765887275338 3.38441777229
+      <UV>  {
+        0.991412 0.684074
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5026 {
+      -0.609360635281 0.0755329951644 3.37054800987
+      <UV>  {
+        0.993659 0.678266
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5027 {
+      -0.624107480049 0.0750693902373 3.36445736885
+      <UV>  {
+        0.989201 0.675716
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5028 {
+      -0.624107480049 0.0750693902373 3.36445736885
+      <UV>  {
+        0.989201 0.675716
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5029 {
+      -0.609360635281 0.0755329951644 3.37054800987
+      <UV>  {
+        0.993659 0.678266
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5030 {
+      -0.604782342911 0.0743874683976 3.35549879074
+      <UV>  {
+        0.995043 0.671964
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5031 {
+      -0.620437502861 0.0741511285305 3.35239362717
+      <UV>  {
+        0.990310 0.670663
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5032 {
+      -0.620437502861 0.0741511285305 3.35239362717
+      <UV>  {
+        0.990310 0.670663
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5033 {
+      -0.604782342911 0.0743874683976 3.35549879074
+      <UV>  {
+        0.995043 0.671964
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5034 {
+      -0.60323625803 0.0731961727142 3.33984804153
+      <UV>  {
+        0.995511 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5035 {
+      -0.619198143482 0.0731961727142 3.33984804153
+      <UV>  {
+        0.990685 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5036 {
+      -0.619198143482 0.0731961727142 3.33984804153
+      <UV>  {
+        0.990685 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5037 {
+      -0.60323625803 0.0731961727142 3.33984804153
+      <UV>  {
+        0.995511 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5038 {
+      -0.604782342911 0.0720048695803 3.32419729233
+      <UV>  {
+        0.995043 0.658856
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5039 {
+      -0.620437502861 0.0722412392497 3.3273024559
+      <UV>  {
+        0.990310 0.660156
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5040 {
+      -0.620437502861 0.0722412392497 3.3273024559
+      <UV>  {
+        0.990310 0.660156
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5041 {
+      -0.604782342911 0.0720048695803 3.32419729233
+      <UV>  {
+        0.995043 0.658856
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5042 {
+      -0.609360635281 0.0708593502641 3.3091480732
+      <UV>  {
+        0.993659 0.652554
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5043 {
+      -0.624107480049 0.0713229700923 3.31523871422
+      <UV>  {
+        0.989201 0.655104
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5044 {
+      -0.624107480049 0.0713229700923 3.31523871422
+      <UV>  {
+        0.989201 0.655104
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5045 {
+      -0.609360635281 0.0708593502641 3.3091480732
+      <UV>  {
+        0.993659 0.652554
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5046 {
+      -0.616795361042 0.0698036327958 3.29527854919
+      <UV>  {
+        0.991412 0.646745
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5047 {
+      -0.630067169666 0.0704766958952 3.30412077904
+      <UV>  {
+        0.987399 0.650448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5048 {
+      -0.630067169666 0.0704766958952 3.30412077904
+      <UV>  {
+        0.987399 0.650448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5049 {
+      -0.616795361042 0.0698036327958 3.29527854919
+      <UV>  {
+        0.991412 0.646745
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5050 {
+      -0.626801013947 0.0688782855868 3.28312158585
+      <UV>  {
+        0.988386 0.641654
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5051 {
+      -0.638087749481 0.0697349309921 3.29437589645
+      <UV>  {
+        0.984974 0.646367
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5052 {
+      -0.638087749481 0.0697349309921 3.29437589645
+      <UV>  {
+        0.984974 0.646367
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5053 {
+      -0.626801013947 0.0688782855868 3.28312158585
+      <UV>  {
+        0.988386 0.641654
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5054 {
+      -0.638992965221 0.0681188777089 3.2731449604
+      <UV>  {
+        0.984700 0.637477
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5055 {
+      -0.647860944271 0.069126188755 3.28637838364
+      <UV>  {
+        0.982019 0.643018
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5056 {
+      -0.647860944271 0.069126188755 3.28637838364
+      <UV>  {
+        0.982019 0.643018
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5057 {
+      -0.638992965221 0.0681188777089 3.2731449604
+      <UV>  {
+        0.984700 0.637477
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5058 {
+      -0.652902603149 0.0675545707345 3.2657315731
+      <UV>  {
+        0.980495 0.634372
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5059 {
+      -0.659010887146 0.0686738416553 3.28043580055
+      <UV>  {
+        0.978648 0.640530
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5060 {
+      -0.659010887146 0.0686738416553 3.28043580055
+      <UV>  {
+        0.978648 0.640530
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5061 {
+      -0.652902603149 0.0675545707345 3.2657315731
+      <UV>  {
+        0.980495 0.634372
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5062 {
+      -0.66799557209 0.0672070905566 3.26116633415
+      <UV>  {
+        0.975931 0.632460
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5063 {
+      -0.671109557152 0.0683953016996 3.27677631378
+      <UV>  {
+        0.974990 0.638997
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5064 {
+      -0.671109557152 0.0683953016996 3.27677631378
+      <UV>  {
+        0.974990 0.638997
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5065 {
+      -0.66799557209 0.0672070905566 3.26116633415
+      <UV>  {
+        0.975931 0.632460
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5066 {
+      -0.683691561222 0.067089766264 3.25962471962
+      <UV>  {
+        0.971186 0.631815
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5067 {
+      -0.683691561222 0.0683012530208 3.2755408287
+      <UV>  {
+        0.971186 0.638480
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5068 {
+      -0.683691561222 0.0683012530208 3.2755408287
+      <UV>  {
+        0.971186 0.638480
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5069 {
+      -0.683691561222 0.067089766264 3.25962471962
+      <UV>  {
+        0.971186 0.631815
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5070 {
+      -0.699387669563 0.0672070980072 3.26116633415
+      <UV>  {
+        0.966440 0.632460
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5071 {
+      -0.696273684502 0.0683953016996 3.27677631378
+      <UV>  {
+        0.967382 0.638997
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5072 {
+      -0.696273684502 0.0683953016996 3.27677631378
+      <UV>  {
+        0.967382 0.638997
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5073 {
+      -0.699387669563 0.0672070980072 3.26116633415
+      <UV>  {
+        0.966440 0.632460
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5074 {
+      -0.71448045969 0.0675545781851 3.2657315731
+      <UV>  {
+        0.961877 0.634372
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5075 {
+      -0.708372116089 0.0686738416553 3.28043580055
+      <UV>  {
+        0.963724 0.640530
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5076 {
+      -0.708372116089 0.0686738416553 3.28043580055
+      <UV>  {
+        0.963724 0.640530
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5077 {
+      -0.71448045969 0.0675545781851 3.2657315731
+      <UV>  {
+        0.961877 0.634372
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5078 {
+      -0.728390097618 0.0681188777089 3.2731449604
+      <UV>  {
+        0.957671 0.637477
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5079 {
+      -0.719522178173 0.0691261962056 3.28637838364
+      <UV>  {
+        0.960353 0.643018
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5080 {
+      -0.719522178173 0.0691261962056 3.28637838364
+      <UV>  {
+        0.960353 0.643018
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5081 {
+      -0.728390097618 0.0681188777089 3.2731449604
+      <UV>  {
+        0.957671 0.637477
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5082 {
+      -0.740582108498 0.0688782855868 3.28312158585
+      <UV>  {
+        0.953985 0.641654
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5083 {
+      -0.729295313358 0.0697349309921 3.29437589645
+      <UV>  {
+        0.957398 0.646367
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5084 {
+      -0.729295313358 0.0697349309921 3.29437589645
+      <UV>  {
+        0.957398 0.646367
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5085 {
+      -0.740582108498 0.0688782855868 3.28312158585
+      <UV>  {
+        0.953985 0.641654
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5086 {
+      -0.750587701797 0.0698036402464 3.29527854919
+      <UV>  {
+        0.950960 0.646745
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5087 {
+      -0.737315893173 0.0704767033458 3.30412077904
+      <UV>  {
+        0.954973 0.650448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5088 {
+      -0.737315893173 0.0704767033458 3.30412077904
+      <UV>  {
+        0.954973 0.650448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5089 {
+      -0.750587701797 0.0698036402464 3.29527854919
+      <UV>  {
+        0.950960 0.646745
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5090 {
+      -0.758022487164 0.0708593577147 3.3091480732
+      <UV>  {
+        0.948712 0.652554
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5091 {
+      -0.743275702 0.0713229775429 3.31523871422
+      <UV>  {
+        0.953171 0.655104
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5092 {
+      -0.743275702 0.0713229775429 3.31523871422
+      <UV>  {
+        0.953171 0.655104
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5093 {
+      -0.758022487164 0.0708593577147 3.3091480732
+      <UV>  {
+        0.948712 0.652554
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5094 {
+      -0.762600958347 0.0720048770308 3.32419729233
+      <UV>  {
+        0.947328 0.658856
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5095 {
+      -0.746945798397 0.0722412392497 3.3273024559
+      <UV>  {
+        0.952061 0.660156
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5096 {
+      -0.746945798397 0.0722412392497 3.3273024559
+      <UV>  {
+        0.952061 0.660156
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5097 {
+      -0.762600958347 0.0720048770308 3.32419729233
+      <UV>  {
+        0.947328 0.658856
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5098 {
+      -0.76414680481 0.0731961801648 3.33984804153
+      <UV>  {
+        0.946860 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5099 {
+      -0.748184978962 0.0731961801648 3.33984804153
+      <UV>  {
+        0.951686 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5100 {
+      -0.748184978962 0.0731961801648 3.33984804153
+      <UV>  {
+        0.951686 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5101 {
+      -0.76414680481 0.0731961801648 3.33984804153
+      <UV>  {
+        0.946860 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5102 {
+      -0.762600958347 0.0743874981999 3.35549879074
+      <UV>  {
+        0.947328 0.671964
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5103 {
+      -0.746945798397 0.0741511508822 3.35239386559
+      <UV>  {
+        0.952061 0.670664
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5104 {
+      -0.746945798397 0.0741511508822 3.35239386559
+      <UV>  {
+        0.952061 0.670664
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5105 {
+      -0.762600958347 0.0743874981999 3.35549879074
+      <UV>  {
+        0.947328 0.671964
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5106 {
+      -0.758022427559 0.0755330175161 3.37054824829
+      <UV>  {
+        0.948712 0.678266
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5107 {
+      -0.74327558279 0.0750693976879 3.36445736885
+      <UV>  {
+        0.953171 0.675716
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5108 {
+      -0.74327558279 0.0750693976879 3.36445736885
+      <UV>  {
+        0.953171 0.675716
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5109 {
+      -0.758022427559 0.0755330175161 3.37054824829
+      <UV>  {
+        0.948712 0.678266
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5110 {
+      -0.750587522984 0.0765887349844 3.38441777229
+      <UV>  {
+        0.950960 0.684074
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5111 {
+      -0.737315833569 0.075915671885 3.37557530403
+      <UV>  {
+        0.954973 0.680371
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5112 {
+      -0.737315833569 0.075915671885 3.37557530403
+      <UV>  {
+        0.954973 0.680371
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5113 {
+      -0.750587522984 0.0765887349844 3.38441777229
+      <UV>  {
+        0.950960 0.684074
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5114 {
+      -0.740581929684 0.077514089644 3.39657449722
+      <UV>  {
+        0.953985 0.689165
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5115 {
+      -0.729295253754 0.0766574442387 3.38532018661
+      <UV>  {
+        0.957398 0.684452
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5116 {
+      -0.729295253754 0.0766574442387 3.38532018661
+      <UV>  {
+        0.957398 0.684452
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5117 {
+      -0.740581929684 0.077514089644 3.39657449722
+      <UV>  {
+        0.953985 0.689165
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5118 {
+      -0.728389918804 0.0782734900713 3.40655136108
+      <UV>  {
+        0.957671 0.693343
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5119 {
+      -0.719522118568 0.0772661790252 3.39331769943
+      <UV>  {
+        0.960353 0.687801
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5120 {
+      -0.719522118568 0.0772661790252 3.39331769943
+      <UV>  {
+        0.960353 0.687801
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5121 {
+      -0.728389918804 0.0782734900713 3.40655136108
+      <UV>  {
+        0.957671 0.693343
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5122 {
+      -0.714480340481 0.078837774694 3.41396450996
+      <UV>  {
+        0.961877 0.696448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5123 {
+      -0.70837199688 0.077718526125 3.39926028252
+      <UV>  {
+        0.963724 0.690290
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5124 {
+      -0.70837199688 0.077718526125 3.39926028252
+      <UV>  {
+        0.963724 0.690290
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5125 {
+      -0.714480340481 0.078837774694 3.41396450996
+      <UV>  {
+        0.961877 0.696448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5126 {
+      -0.699387431145 0.0791852772236 3.41852974892
+      <UV>  {
+        0.966440 0.698359
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5127 {
+      -0.696273446083 0.0779970735312 3.40291976929
+      <UV>  {
+        0.967382 0.691822
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5128 {
+      -0.696273446083 0.0779970735312 3.40291976929
+      <UV>  {
+        0.967382 0.691822
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5129 {
+      -0.699387431145 0.0791852772236 3.41852974892
+      <UV>  {
+        0.966440 0.698359
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5130 {
+      -0.683691442013 0.0793026015162 3.42007112503
+      <UV>  {
+        0.971186 0.699005
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5131 {
+      -0.683691442013 0.0780911147594 3.40415525436
+      <UV>  {
+        0.971186 0.692340
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5132 {
+      -0.683691442013 0.0780911147594 3.40415525436
+      <UV>  {
+        0.971186 0.692340
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5133 {
+      -0.683691442013 0.0793026015162 3.42007112503
+      <UV>  {
+        0.971186 0.699005
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5134 {
+      -0.667995333672 0.0791852548718 3.4185295105
+      <UV>  {
+        0.975931 0.698359
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5135 {
+      -0.671109378338 0.0779970511794 3.40291953087
+      <UV>  {
+        0.974990 0.691822
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5136 {
+      -0.671109378338 0.0779970511794 3.40291953087
+      <UV>  {
+        0.974990 0.691822
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5137 {
+      -0.667995333672 0.0791852548718 3.4185295105
+      <UV>  {
+        0.975931 0.698359
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5138 {
+      -0.652902543545 0.078837774694 3.41396450996
+      <UV>  {
+        0.980495 0.696448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5139 {
+      -0.659010887146 0.077718526125 3.39926028252
+      <UV>  {
+        0.978648 0.690290
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5140 {
+      -0.659010887146 0.077718526125 3.39926028252
+      <UV>  {
+        0.978648 0.690290
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5141 {
+      -0.652902543545 0.078837774694 3.41396450996
+      <UV>  {
+        0.980495 0.696448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5142 {
+      -0.638992905617 0.0782734900713 3.40655112267
+      <UV>  {
+        0.984700 0.693343
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5143 {
+      -0.647860825062 0.0772661790252 3.39331769943
+      <UV>  {
+        0.982019 0.687801
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5144 {
+      -0.647860825062 0.0772661790252 3.39331769943
+      <UV>  {
+        0.982019 0.687801
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5145 {
+      -0.638992905617 0.0782734900713 3.40655112267
+      <UV>  {
+        0.984700 0.693343
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5146 {
+      -0.626801013947 0.0775140821934 3.39657449722
+      <UV>  {
+        0.988386 0.689165
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5147 {
+      -0.638087749481 0.0766574367881 3.38532018661
+      <UV>  {
+        0.984974 0.684452
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5148 {
+      -0.89316868782 0.0772661864758 3.39331769943
+      <UV>  {
+        0.907851 0.687801
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5149 {
+      -0.884300708771 0.0782734975219 3.40655112267
+      <UV>  {
+        0.910532 0.693343
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5150 {
+      -0.872108817101 0.077514089644 3.39657449722
+      <UV>  {
+        0.914219 0.689165
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5151 {
+      -0.88339561224 0.0766574516892 3.38532018661
+      <UV>  {
+        0.910806 0.684452
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5152 {
+      -0.904318749905 0.0777185410261 3.39926028252
+      <UV>  {
+        0.904480 0.690290
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5153 {
+      -0.898210406303 0.0788377821445 3.41396450996
+      <UV>  {
+        0.906327 0.696448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5154 {
+      -0.884300708771 0.0782734975219 3.40655112267
+      <UV>  {
+        0.910532 0.693343
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5155 {
+      -0.89316868782 0.0772661864758 3.39331769943
+      <UV>  {
+        0.907851 0.687801
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5156 {
+      -0.916417241096 0.07799705863 3.40291953087
+      <UV>  {
+        0.900822 0.691822
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5157 {
+      -0.913303136826 0.0791852623224 3.4185295105
+      <UV>  {
+        0.901764 0.698359
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5158 {
+      -0.898210406303 0.0788377821445 3.41396450996
+      <UV>  {
+        0.906327 0.696448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5159 {
+      -0.904318749905 0.0777185410261 3.39926028252
+      <UV>  {
+        0.904480 0.690290
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5160 {
+      -0.928999245167 0.0780911296606 3.40415525436
+      <UV>  {
+        0.897018 0.692340
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5161 {
+      -0.928999245167 0.0793026089668 3.42007112503
+      <UV>  {
+        0.897018 0.699005
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5162 {
+      -0.913303136826 0.0791852623224 3.4185295105
+      <UV>  {
+        0.901764 0.698359
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5163 {
+      -0.916417241096 0.07799705863 3.40291953087
+      <UV>  {
+        0.900822 0.691822
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5164 {
+      -0.941581308842 0.0779970809817 3.40291976929
+      <UV>  {
+        0.893214 0.691822
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5165 {
+      -0.944695293903 0.0791852846742 3.41852974892
+      <UV>  {
+        0.892272 0.698359
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5166 {
+      -0.928999245167 0.0793026089668 3.42007112503
+      <UV>  {
+        0.897018 0.699005
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5167 {
+      -0.928999245167 0.0780911296606 3.40415525436
+      <UV>  {
+        0.897018 0.692340
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5168 {
+      -0.953679859638 0.0777185410261 3.39926028252
+      <UV>  {
+        0.889556 0.690290
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5169 {
+      -0.959788203239 0.0788377895951 3.41396450996
+      <UV>  {
+        0.887709 0.696448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5170 {
+      -0.944695293903 0.0791852846742 3.41852974892
+      <UV>  {
+        0.892272 0.698359
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5171 {
+      -0.941581308842 0.0779970809817 3.40291976929
+      <UV>  {
+        0.893214 0.691822
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5172 {
+      -0.964829921722 0.0772661939263 3.39331769943
+      <UV>  {
+        0.886185 0.687801
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5173 {
+      -0.973697781563 0.0782735049725 3.40655136108
+      <UV>  {
+        0.883504 0.693343
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5174 {
+      -0.959788203239 0.0788377895951 3.41396450996
+      <UV>  {
+        0.887709 0.696448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5175 {
+      -0.953679859638 0.0777185410261 3.39926028252
+      <UV>  {
+        0.889556 0.690290
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5176 {
+      -0.974603056908 0.0766574516892 3.38532018661
+      <UV>  {
+        0.883230 0.684452
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5177 {
+      -0.985889792442 0.0775140970945 3.39657449722
+      <UV>  {
+        0.879817 0.689165
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5178 {
+      -0.973697781563 0.0782735049725 3.40655136108
+      <UV>  {
+        0.883504 0.693343
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5179 {
+      -0.964829921722 0.0772661939263 3.39331769943
+      <UV>  {
+        0.886185 0.687801
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5180 {
+      -0.982623636723 0.0759156793356 3.37557530403
+      <UV>  {
+        0.880805 0.680371
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5181 {
+      -0.995895385742 0.0765887498856 3.38441777229
+      <UV>  {
+        0.876792 0.684074
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5182 {
+      -0.985889792442 0.0775140970945 3.39657449722
+      <UV>  {
+        0.879817 0.689165
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5183 {
+      -0.974603056908 0.0766574516892 3.38532018661
+      <UV>  {
+        0.883230 0.684452
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5184 {
+      -0.988583445549 0.0750694125891 3.36445736885
+      <UV>  {
+        0.879003 0.675716
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5185 {
+      -1.00333023071 0.0755330324173 3.37054824829
+      <UV>  {
+        0.874544 0.678266
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5186 {
+      -0.995895385742 0.0765887498856 3.38441777229
+      <UV>  {
+        0.876792 0.684074
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5187 {
+      -0.982623636723 0.0759156793356 3.37557530403
+      <UV>  {
+        0.880805 0.680371
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5188 {
+      -0.992253601551 0.0741511657834 3.35239386559
+      <UV>  {
+        0.877893 0.670664
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5189 {
+      -1.00790882111 0.0743875056505 3.35549879074
+      <UV>  {
+        0.873160 0.671964
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5190 {
+      -1.00333023071 0.0755330324173 3.37054824829
+      <UV>  {
+        0.874544 0.678266
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5191 {
+      -0.988583445549 0.0750694125891 3.36445736885
+      <UV>  {
+        0.879003 0.675716
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5192 {
+      -0.993492841721 0.0731961876154 3.33984804153
+      <UV>  {
+        0.877519 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5193 {
+      -1.00945460796 0.0731961876154 3.33984804153
+      <UV>  {
+        0.872693 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5194 {
+      -1.00790882111 0.0743875056505 3.35549879074
+      <UV>  {
+        0.873160 0.671964
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5195 {
+      -0.992253601551 0.0741511657834 3.35239386559
+      <UV>  {
+        0.877893 0.670664
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5196 {
+      -0.992253601551 0.0722412541509 3.3273024559
+      <UV>  {
+        0.877893 0.660156
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5197 {
+      -1.00790882111 0.072004891932 3.32419729233
+      <UV>  {
+        0.873160 0.658856
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5198 {
+      -1.00945460796 0.0731961876154 3.33984804153
+      <UV>  {
+        0.872693 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5199 {
+      -0.993492841721 0.0731961876154 3.33984804153
+      <UV>  {
+        0.877519 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5200 {
+      -0.988583505154 0.0713229849935 3.31523871422
+      <UV>  {
+        0.879003 0.655104
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5201 {
+      -1.00333034992 0.0708593651652 3.3091480732
+      <UV>  {
+        0.874544 0.652554
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5202 {
+      -1.00790882111 0.072004891932 3.32419729233
+      <UV>  {
+        0.873160 0.658856
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5203 {
+      -0.992253601551 0.0722412541509 3.3273024559
+      <UV>  {
+        0.877893 0.660156
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5204 {
+      -0.982623755932 0.0704767182469 3.30412077904
+      <UV>  {
+        0.880805 0.650448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5205 {
+      -0.995895564556 0.069803647697 3.29527854919
+      <UV>  {
+        0.876792 0.646745
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5206 {
+      -1.00333034992 0.0708593651652 3.3091480732
+      <UV>  {
+        0.874544 0.652554
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5207 {
+      -0.988583505154 0.0713229849935 3.31523871422
+      <UV>  {
+        0.879003 0.655104
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5208 {
+      -0.974603176117 0.0697349458933 3.29437589645
+      <UV>  {
+        0.883230 0.646367
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5209 {
+      -0.985889911652 0.068878300488 3.28312158585
+      <UV>  {
+        0.879817 0.641654
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5210 {
+      -0.995895564556 0.069803647697 3.29527854919
+      <UV>  {
+        0.876792 0.646745
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5211 {
+      -0.982623755932 0.0704767182469 3.30412077904
+      <UV>  {
+        0.880805 0.650448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5212 {
+      -0.964829981327 0.0691262036562 3.28637838364
+      <UV>  {
+        0.886185 0.643018
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5213 {
+      -0.973697960377 0.0681188926101 3.2731449604
+      <UV>  {
+        0.883504 0.637477
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5214 {
+      -0.985889911652 0.068878300488 3.28312158585
+      <UV>  {
+        0.879817 0.641654
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5215 {
+      -0.974603176117 0.0697349458933 3.29437589645
+      <UV>  {
+        0.883230 0.646367
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5216 {
+      -0.953679919243 0.0686738491058 3.28043580055
+      <UV>  {
+        0.889556 0.640530
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5217 {
+      -0.959788262844 0.0675545856357 3.2657315731
+      <UV>  {
+        0.887709 0.634372
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5218 {
+      -0.973697960377 0.0681188926101 3.2731449604
+      <UV>  {
+        0.883504 0.637477
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5219 {
+      -0.964829981327 0.0691262036562 3.28637838364
+      <UV>  {
+        0.886185 0.643018
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5220 {
+      -0.94158154726 0.0683953091502 3.27677631378
+      <UV>  {
+        0.893214 0.638997
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5221 {
+      -0.944695532322 0.0672071054578 3.26116633415
+      <UV>  {
+        0.892272 0.632460
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5222 {
+      -0.959788262844 0.0675545856357 3.2657315731
+      <UV>  {
+        0.887709 0.634372
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5223 {
+      -0.953679919243 0.0686738491058 3.28043580055
+      <UV>  {
+        0.889556 0.640530
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5224 {
+      -0.928999423981 0.0683012604713 3.2755408287
+      <UV>  {
+        0.897018 0.638480
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5225 {
+      -0.928999423981 0.0670897811651 3.25962471962
+      <UV>  {
+        0.897018 0.631815
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5226 {
+      -0.944695532322 0.0672071054578 3.26116633415
+      <UV>  {
+        0.892272 0.632460
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5227 {
+      -0.94158154726 0.0683953091502 3.27677631378
+      <UV>  {
+        0.893214 0.638997
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5228 {
+      -0.916417360306 0.0683953091502 3.27677631378
+      <UV>  {
+        0.900822 0.638997
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5229 {
+      -0.913303375244 0.0672071054578 3.26116633415
+      <UV>  {
+        0.901763 0.632460
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5230 {
+      -0.928999423981 0.0670897811651 3.25962471962
+      <UV>  {
+        0.897018 0.631815
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5231 {
+      -0.928999423981 0.0683012604713 3.2755408287
+      <UV>  {
+        0.897018 0.638480
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5232 {
+      -0.904318749905 0.0686738491058 3.28043580055
+      <UV>  {
+        0.904480 0.640530
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5233 {
+      -0.898210406303 0.0675545856357 3.2657315731
+      <UV>  {
+        0.906327 0.634372
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5234 {
+      -0.913303375244 0.0672071054578 3.26116633415
+      <UV>  {
+        0.901763 0.632460
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5235 {
+      -0.916417360306 0.0683953091502 3.27677631378
+      <UV>  {
+        0.900822 0.638997
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5236 {
+      -0.893168747425 0.0691262036562 3.28637838364
+      <UV>  {
+        0.907851 0.643018
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5237 {
+      -0.884300768375 0.0681188851595 3.2731449604
+      <UV>  {
+        0.910532 0.637477
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5238 {
+      -0.898210406303 0.0675545856357 3.2657315731
+      <UV>  {
+        0.906327 0.634372
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5239 {
+      -0.904318749905 0.0686738491058 3.28043580055
+      <UV>  {
+        0.904480 0.640530
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5240 {
+      -0.88339561224 0.0697349384427 3.29437589645
+      <UV>  {
+        0.910806 0.646367
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5241 {
+      -0.872108817101 0.0688782930374 3.28312158585
+      <UV>  {
+        0.914219 0.641654
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5242 {
+      -0.884300768375 0.0681188851595 3.2731449604
+      <UV>  {
+        0.910532 0.637477
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5243 {
+      -0.893168747425 0.0691262036562 3.28637838364
+      <UV>  {
+        0.907851 0.643018
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5244 {
+      -0.875375032425 0.0704767107964 3.30412077904
+      <UV>  {
+        0.913231 0.650448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5245 {
+      -0.862103164196 0.0698036402464 3.29527854919
+      <UV>  {
+        0.917244 0.646745
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5246 {
+      -0.872108817101 0.0688782930374 3.28312158585
+      <UV>  {
+        0.914219 0.641654
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5247 {
+      -0.88339561224 0.0697349384427 3.29437589645
+      <UV>  {
+        0.910806 0.646367
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5248 {
+      -0.869415283203 0.0713229775429 3.31523871422
+      <UV>  {
+        0.915033 0.655104
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5249 {
+      -0.854668438435 0.0708593577147 3.3091480732
+      <UV>  {
+        0.919492 0.652554
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5250 {
+      -0.862103164196 0.0698036402464 3.29527854919
+      <UV>  {
+        0.917244 0.646745
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5251 {
+      -0.875375032425 0.0704767107964 3.30412077904
+      <UV>  {
+        0.913231 0.650448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5252 {
+      -0.86574536562 0.0722412467003 3.3273024559
+      <UV>  {
+        0.916142 0.660156
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5253 {
+      -0.850090205669 0.0720048844814 3.32419729233
+      <UV>  {
+        0.920876 0.658856
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5254 {
+      -0.854668438435 0.0708593577147 3.3091480732
+      <UV>  {
+        0.919492 0.652554
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5255 {
+      -0.869415283203 0.0713229775429 3.31523871422
+      <UV>  {
+        0.915033 0.655104
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5256 {
+      -0.864506006241 0.0731961801648 3.33984804153
+      <UV>  {
+        0.916517 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5257 {
+      -0.848544120789 0.0731961801648 3.33984804153
+      <UV>  {
+        0.921343 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5258 {
+      -0.850090205669 0.0720048844814 3.32419729233
+      <UV>  {
+        0.920876 0.658856
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5259 {
+      -0.86574536562 0.0722412467003 3.3273024559
+      <UV>  {
+        0.916142 0.660156
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5260 {
+      -0.86574536562 0.0741511359811 3.35239362717
+      <UV>  {
+        0.916142 0.670663
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5261 {
+      -0.850090205669 0.0743874832988 3.35549879074
+      <UV>  {
+        0.920876 0.671964
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5262 {
+      -0.848544120789 0.0731961801648 3.33984804153
+      <UV>  {
+        0.921343 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5263 {
+      -0.864506006241 0.0731961801648 3.33984804153
+      <UV>  {
+        0.916517 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5264 {
+      -0.869415283203 0.0750694051385 3.36445736885
+      <UV>  {
+        0.915033 0.675716
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5265 {
+      -0.854668438435 0.075533002615 3.37054800987
+      <UV>  {
+        0.919492 0.678266
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5266 {
+      -0.850090205669 0.0743874832988 3.35549879074
+      <UV>  {
+        0.920876 0.671964
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5267 {
+      -0.86574536562 0.0741511359811 3.35239362717
+      <UV>  {
+        0.916142 0.670663
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5268 {
+      -0.875375032425 0.0759156793356 3.37557530403
+      <UV>  {
+        0.913231 0.680371
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5269 {
+      -0.862103164196 0.076588742435 3.38441777229
+      <UV>  {
+        0.917244 0.684074
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5270 {
+      -0.854668438435 0.075533002615 3.37054800987
+      <UV>  {
+        0.919492 0.678266
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5271 {
+      -0.869415283203 0.0750694051385 3.36445736885
+      <UV>  {
+        0.915033 0.675716
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5272 {
+      -0.88339561224 0.0766574516892 3.38532018661
+      <UV>  {
+        0.910806 0.684452
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5273 {
+      -0.872108817101 0.077514089644 3.39657449722
+      <UV>  {
+        0.914219 0.689165
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5274 {
+      -0.862103164196 0.076588742435 3.38441777229
+      <UV>  {
+        0.917244 0.684074
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5275 {
+      -0.875375032425 0.0759156793356 3.37557530403
+      <UV>  {
+        0.913231 0.680371
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5276 {
+      -0.872108817101 0.0542302913964 3.39834690094
+      <UV>  {
+        0.914219 0.689165
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5277 {
+      -0.862103164196 0.0533049181104 3.38618993759
+      <UV>  {
+        0.917244 0.684074
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5278 {
+      -0.862103164196 0.076588742435 3.38441777229
+      <UV>  {
+        0.917244 0.684074
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5279 {
+      -0.872108817101 0.077514089644 3.39657449722
+      <UV>  {
+        0.914219 0.689165
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5280 {
+      -0.862103164196 0.0533049181104 3.38618993759
+      <UV>  {
+        0.917244 0.684074
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5281 {
+      -0.854668438435 0.0522492006421 3.37232041359
+      <UV>  {
+        0.919492 0.678266
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5282 {
+      -0.854668438435 0.075533002615 3.37054800987
+      <UV>  {
+        0.919492 0.678266
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5283 {
+      -0.862103164196 0.076588742435 3.38441777229
+      <UV>  {
+        0.917244 0.684074
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5284 {
+      -0.854668438435 0.0522492006421 3.37232041359
+      <UV>  {
+        0.919492 0.678266
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5285 {
+      -0.850090205669 0.0511036813259 3.35727095604
+      <UV>  {
+        0.920876 0.671964
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5286 {
+      -0.850090205669 0.0743874832988 3.35549879074
+      <UV>  {
+        0.920876 0.671964
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5287 {
+      -0.854668438435 0.075533002615 3.37054800987
+      <UV>  {
+        0.919492 0.678266
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5288 {
+      -0.848544120789 0.0499123781919 3.34162020683
+      <UV>  {
+        0.921343 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5289 {
+      -0.850090205669 0.0487210787833 3.32596969604
+      <UV>  {
+        0.920876 0.658856
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5290 {
+      -0.850090205669 0.0720048844814 3.32419729233
+      <UV>  {
+        0.920876 0.658856
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5291 {
+      -0.848544120789 0.0731961801648 3.33984804153
+      <UV>  {
+        0.921343 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5292 {
+      -0.850090205669 0.0487210787833 3.32596969604
+      <UV>  {
+        0.920876 0.658856
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5293 {
+      -0.854668438435 0.0475755594671 3.31092023849
+      <UV>  {
+        0.919492 0.652554
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5294 {
+      -0.854668438435 0.0708593577147 3.3091480732
+      <UV>  {
+        0.919492 0.652554
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5295 {
+      -0.850090205669 0.0720048844814 3.32419729233
+      <UV>  {
+        0.920876 0.658856
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5296 {
+      -0.854668438435 0.0475755594671 3.31092023849
+      <UV>  {
+        0.919492 0.652554
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5297 {
+      -0.862103164196 0.0465198419988 3.29705071449
+      <UV>  {
+        0.917244 0.646745
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5298 {
+      -0.862103164196 0.0698036402464 3.29527854919
+      <UV>  {
+        0.917244 0.646745
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5299 {
+      -0.854668438435 0.0708593577147 3.3091480732
+      <UV>  {
+        0.919492 0.652554
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5300 {
+      -0.862103164196 0.0465198419988 3.29705071449
+      <UV>  {
+        0.917244 0.646745
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5301 {
+      -0.872108817101 0.0455944910645 3.28489398956
+      <UV>  {
+        0.914219 0.641654
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5302 {
+      -0.872108817101 0.0688782930374 3.28312158585
+      <UV>  {
+        0.914219 0.641654
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5303 {
+      -0.862103164196 0.0698036402464 3.29527854919
+      <UV>  {
+        0.917244 0.646745
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5304 {
+      -0.872108817101 0.0455944910645 3.28489398956
+      <UV>  {
+        0.914219 0.641654
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5305 {
+      -0.884300768375 0.0448350869119 3.27491736412
+      <UV>  {
+        0.910532 0.637477
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5306 {
+      -0.884300768375 0.0681188851595 3.2731449604
+      <UV>  {
+        0.910532 0.637477
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5307 {
+      -0.872108817101 0.0688782930374 3.28312158585
+      <UV>  {
+        0.914219 0.641654
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5308 {
+      -0.884300768375 0.0448350869119 3.27491736412
+      <UV>  {
+        0.910532 0.637477
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5309 {
+      -0.898210406303 0.0442707836628 3.2675037384
+      <UV>  {
+        0.906327 0.634372
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5310 {
+      -0.898210406303 0.0675545856357 3.2657315731
+      <UV>  {
+        0.906327 0.634372
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5311 {
+      -0.884300768375 0.0681188851595 3.2731449604
+      <UV>  {
+        0.910532 0.637477
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5312 {
+      -0.898210406303 0.0442707836628 3.2675037384
+      <UV>  {
+        0.906327 0.634372
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5313 {
+      -0.913303375244 0.0439232811332 3.26293849945
+      <UV>  {
+        0.901763 0.632460
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5314 {
+      -0.913303375244 0.0672071054578 3.26116633415
+      <UV>  {
+        0.901763 0.632460
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5315 {
+      -0.898210406303 0.0675545856357 3.2657315731
+      <UV>  {
+        0.906327 0.634372
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5316 {
+      -0.913303375244 0.0439232811332 3.26293849945
+      <UV>  {
+        0.901763 0.632460
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5317 {
+      -0.928999423981 0.0438059568405 3.26139712334
+      <UV>  {
+        0.897018 0.631815
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5318 {
+      -0.928999423981 0.0670897811651 3.25962471962
+      <UV>  {
+        0.897018 0.631815
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5319 {
+      -0.913303375244 0.0672071054578 3.26116633415
+      <UV>  {
+        0.901763 0.632460
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5320 {
+      -0.928999423981 0.0438059568405 3.26139712334
+      <UV>  {
+        0.897018 0.631815
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5321 {
+      -0.944695532322 0.0439232848585 3.26293849945
+      <UV>  {
+        0.892272 0.632460
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5322 {
+      -0.944695532322 0.0672071054578 3.26116633415
+      <UV>  {
+        0.892272 0.632460
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5323 {
+      -0.928999423981 0.0670897811651 3.25962471962
+      <UV>  {
+        0.897018 0.631815
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5324 {
+      -0.944695532322 0.0439232848585 3.26293849945
+      <UV>  {
+        0.892272 0.632460
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5325 {
+      -0.959788262844 0.0442707836628 3.2675037384
+      <UV>  {
+        0.887709 0.634372
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5326 {
+      -0.959788262844 0.0675545856357 3.2657315731
+      <UV>  {
+        0.887709 0.634372
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5327 {
+      -0.944695532322 0.0672071054578 3.26116633415
+      <UV>  {
+        0.892272 0.632460
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5328 {
+      -0.959788262844 0.0442707836628 3.2675037384
+      <UV>  {
+        0.887709 0.634372
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5329 {
+      -0.973697960377 0.0448350906372 3.27491736412
+      <UV>  {
+        0.883504 0.637477
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5330 {
+      -0.973697960377 0.0681188926101 3.2731449604
+      <UV>  {
+        0.883504 0.637477
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5331 {
+      -0.959788262844 0.0675545856357 3.2657315731
+      <UV>  {
+        0.887709 0.634372
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5332 {
+      -0.973697960377 0.0448350906372 3.27491736412
+      <UV>  {
+        0.883504 0.637477
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5333 {
+      -0.985889911652 0.0455944947898 3.28489398956
+      <UV>  {
+        0.879817 0.641654
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5334 {
+      -0.985889911652 0.068878300488 3.28312158585
+      <UV>  {
+        0.879817 0.641654
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5335 {
+      -0.973697960377 0.0681188926101 3.2731449604
+      <UV>  {
+        0.883504 0.637477
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5336 {
+      -0.985889911652 0.0455944947898 3.28489398956
+      <UV>  {
+        0.879817 0.641654
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5337 {
+      -0.995895564556 0.0465198457241 3.29705071449
+      <UV>  {
+        0.876792 0.646745
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5338 {
+      -0.995895564556 0.069803647697 3.29527854919
+      <UV>  {
+        0.876792 0.646745
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5339 {
+      -0.985889911652 0.068878300488 3.28312158585
+      <UV>  {
+        0.879817 0.641654
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5340 {
+      -0.995895564556 0.0465198457241 3.29705071449
+      <UV>  {
+        0.876792 0.646745
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5341 {
+      -1.00333034992 0.0475755669177 3.31092023849
+      <UV>  {
+        0.874544 0.652554
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5342 {
+      -1.00333034992 0.0708593651652 3.3091480732
+      <UV>  {
+        0.874544 0.652554
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5343 {
+      -0.995895564556 0.069803647697 3.29527854919
+      <UV>  {
+        0.876792 0.646745
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5344 {
+      -1.00333034992 0.0475755669177 3.31092023849
+      <UV>  {
+        0.874544 0.652554
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5345 {
+      -1.00790882111 0.0487210862339 3.32596969604
+      <UV>  {
+        0.873160 0.658856
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5346 {
+      -1.00790882111 0.072004891932 3.32419729233
+      <UV>  {
+        0.873160 0.658856
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5347 {
+      -1.00333034992 0.0708593651652 3.3091480732
+      <UV>  {
+        0.874544 0.652554
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5348 {
+      -1.00790882111 0.0487210862339 3.32596969604
+      <UV>  {
+        0.873160 0.658856
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5349 {
+      -1.00945460796 0.0499123856425 3.34162020683
+      <UV>  {
+        0.872693 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5350 {
+      -1.00945460796 0.0731961876154 3.33984804153
+      <UV>  {
+        0.872693 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5351 {
+      -1.00790882111 0.072004891932 3.32419729233
+      <UV>  {
+        0.873160 0.658856
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5352 {
+      -1.00945460796 0.0499123856425 3.34162020683
+      <UV>  {
+        0.872693 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5353 {
+      -1.00790882111 0.0511036850512 3.35727119446
+      <UV>  {
+        0.873160 0.671964
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5354 {
+      -1.00790882111 0.0743875056505 3.35549879074
+      <UV>  {
+        0.873160 0.671964
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5355 {
+      -1.00945460796 0.0731961876154 3.33984804153
+      <UV>  {
+        0.872693 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5356 {
+      -1.00790882111 0.0511036850512 3.35727119446
+      <UV>  {
+        0.873160 0.671964
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5357 {
+      -1.00333023071 0.0522492267191 3.37232065201
+      <UV>  {
+        0.874544 0.678266
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5358 {
+      -1.00333023071 0.0755330324173 3.37054824829
+      <UV>  {
+        0.874544 0.678266
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5359 {
+      -1.00790882111 0.0743875056505 3.35549879074
+      <UV>  {
+        0.873160 0.671964
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5360 {
+      -1.00333023071 0.0522492267191 3.37232065201
+      <UV>  {
+        0.874544 0.678266
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5361 {
+      -0.995895385742 0.053304925561 3.38618993759
+      <UV>  {
+        0.876792 0.684074
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5362 {
+      -0.995895385742 0.0765887498856 3.38441777229
+      <UV>  {
+        0.876792 0.684074
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5363 {
+      -1.00333023071 0.0755330324173 3.37054824829
+      <UV>  {
+        0.874544 0.678266
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5364 {
+      -0.995895385742 0.053304925561 3.38618993759
+      <UV>  {
+        0.876792 0.684074
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5365 {
+      -0.985889792442 0.0542302951217 3.39834690094
+      <UV>  {
+        0.879817 0.689165
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5366 {
+      -0.985889792442 0.0775140970945 3.39657449722
+      <UV>  {
+        0.879817 0.689165
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5367 {
+      -0.995895385742 0.0765887498856 3.38441777229
+      <UV>  {
+        0.876792 0.684074
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5368 {
+      -0.985889792442 0.0542302951217 3.39834690094
+      <UV>  {
+        0.879817 0.689165
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5369 {
+      -0.973697781563 0.0549896992743 3.40832352638
+      <UV>  {
+        0.883504 0.693343
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5370 {
+      -0.973697781563 0.0782735049725 3.40655136108
+      <UV>  {
+        0.883504 0.693343
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5371 {
+      -0.985889792442 0.0775140970945 3.39657449722
+      <UV>  {
+        0.879817 0.689165
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5372 {
+      -0.973697781563 0.0549896992743 3.40832352638
+      <UV>  {
+        0.883504 0.693343
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5373 {
+      -0.959788203239 0.055553983897 3.41573691368
+      <UV>  {
+        0.887709 0.696448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5374 {
+      -0.959788203239 0.0788377895951 3.41396450996
+      <UV>  {
+        0.887709 0.696448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5375 {
+      -0.973697781563 0.0782735049725 3.40655136108
+      <UV>  {
+        0.883504 0.693343
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5376 {
+      -0.959788203239 0.055553983897 3.41573691368
+      <UV>  {
+        0.887709 0.696448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5377 {
+      -0.944695293903 0.0559014640749 3.42030215263
+      <UV>  {
+        0.892272 0.698359
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5378 {
+      -0.944695293903 0.0791852846742 3.41852974892
+      <UV>  {
+        0.892272 0.698359
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5379 {
+      -0.959788203239 0.0788377895951 3.41396450996
+      <UV>  {
+        0.887709 0.696448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5380 {
+      -0.944695293903 0.0559014640749 3.42030215263
+      <UV>  {
+        0.892272 0.698359
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5381 {
+      -0.928999245167 0.0560188107193 3.42184352875
+      <UV>  {
+        0.897018 0.699005
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5382 {
+      -0.928999245167 0.0793026089668 3.42007112503
+      <UV>  {
+        0.897018 0.699005
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5383 {
+      -0.944695293903 0.0791852846742 3.41852974892
+      <UV>  {
+        0.892272 0.698359
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5384 {
+      -0.928999245167 0.0560188107193 3.42184352875
+      <UV>  {
+        0.897018 0.699005
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5385 {
+      -0.913303136826 0.0559014640749 3.42030191422
+      <UV>  {
+        0.901764 0.698359
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5386 {
+      -0.913303136826 0.0791852623224 3.4185295105
+      <UV>  {
+        0.901764 0.698359
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5387 {
+      -0.928999245167 0.0793026089668 3.42007112503
+      <UV>  {
+        0.897018 0.699005
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5388 {
+      -0.913303136826 0.0559014640749 3.42030191422
+      <UV>  {
+        0.901764 0.698359
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5389 {
+      -0.898210406303 0.0555539801717 3.41573691368
+      <UV>  {
+        0.906327 0.696448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5390 {
+      -0.898210406303 0.0788377821445 3.41396450996
+      <UV>  {
+        0.906327 0.696448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5391 {
+      -0.913303136826 0.0791852623224 3.4185295105
+      <UV>  {
+        0.901764 0.698359
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5392 {
+      -0.898210406303 0.0555539801717 3.41573691368
+      <UV>  {
+        0.906327 0.696448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5393 {
+      -0.884300708771 0.0549896769226 3.40832352638
+      <UV>  {
+        0.910532 0.693343
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5394 {
+      -0.884300708771 0.0782734975219 3.40655112267
+      <UV>  {
+        0.910532 0.693343
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5395 {
+      -0.898210406303 0.0788377821445 3.41396450996
+      <UV>  {
+        0.906327 0.696448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5396 {
+      -0.884300708771 0.0549896769226 3.40832352638
+      <UV>  {
+        0.910532 0.693343
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5397 {
+      -0.872108817101 0.0542302913964 3.39834690094
+      <UV>  {
+        0.914219 0.689165
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5398 {
+      -0.872108817101 0.077514089644 3.39657449722
+      <UV>  {
+        0.914219 0.689165
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5399 {
+      -0.884300708771 0.0782734975219 3.40655112267
+      <UV>  {
+        0.910532 0.693343
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5400 {
+      -0.875375032425 0.0526318736374 3.37734770775
+      <UV>  {
+        0.913231 0.680371
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5401 {
+      -0.88339561224 0.0533736273646 3.38709259033
+      <UV>  {
+        0.910806 0.684452
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5402 {
+      -0.88339561224 0.0766574516892 3.38532018661
+      <UV>  {
+        0.910806 0.684452
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5403 {
+      -0.875375032425 0.0759156793356 3.37557530403
+      <UV>  {
+        0.913231 0.680371
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5404 {
+      -0.869415283203 0.0517856031656 3.36622977257
+      <UV>  {
+        0.915033 0.675716
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5405 {
+      -0.875375032425 0.0526318736374 3.37734770775
+      <UV>  {
+        0.913231 0.680371
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5406 {
+      -0.875375032425 0.0759156793356 3.37557530403
+      <UV>  {
+        0.913231 0.680371
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5407 {
+      -0.869415283203 0.0750694051385 3.36445736885
+      <UV>  {
+        0.915033 0.675716
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5408 {
+      -0.86574536562 0.0508673340082 3.35416603088
+      <UV>  {
+        0.916142 0.670663
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5409 {
+      -0.869415283203 0.0517856031656 3.36622977257
+      <UV>  {
+        0.915033 0.675716
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5410 {
+      -0.869415283203 0.0750694051385 3.36445736885
+      <UV>  {
+        0.915033 0.675716
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5411 {
+      -0.86574536562 0.0741511359811 3.35239362717
+      <UV>  {
+        0.916142 0.670663
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5412 {
+      -0.864506006241 0.0499123819172 3.34162020683
+      <UV>  {
+        0.916517 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5413 {
+      -0.86574536562 0.0508673340082 3.35416603088
+      <UV>  {
+        0.916142 0.670663
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5414 {
+      -0.86574536562 0.0741511359811 3.35239362717
+      <UV>  {
+        0.916142 0.670663
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5415 {
+      -0.864506006241 0.0731961801648 3.33984804153
+      <UV>  {
+        0.916517 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5416 {
+      -0.86574536562 0.048957426101 3.3290746212
+      <UV>  {
+        0.916142 0.660156
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5417 {
+      -0.864506006241 0.0499123819172 3.34162020683
+      <UV>  {
+        0.916517 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5418 {
+      -0.864506006241 0.0731961801648 3.33984804153
+      <UV>  {
+        0.916517 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5419 {
+      -0.86574536562 0.0722412467003 3.3273024559
+      <UV>  {
+        0.916142 0.660156
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5420 {
+      -0.869415283203 0.0480391606688 3.31701087952
+      <UV>  {
+        0.915033 0.655104
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5421 {
+      -0.86574536562 0.048957426101 3.3290746212
+      <UV>  {
+        0.916142 0.660156
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5422 {
+      -0.86574536562 0.0722412467003 3.3273024559
+      <UV>  {
+        0.916142 0.660156
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5423 {
+      -0.869415283203 0.0713229775429 3.31523871422
+      <UV>  {
+        0.915033 0.655104
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5424 {
+      -0.875375032425 0.047192890197 3.30589294434
+      <UV>  {
+        0.913231 0.650448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5425 {
+      -0.869415283203 0.0480391606688 3.31701087952
+      <UV>  {
+        0.915033 0.655104
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5426 {
+      -0.869415283203 0.0713229775429 3.31523871422
+      <UV>  {
+        0.915033 0.655104
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5427 {
+      -0.875375032425 0.0704767107964 3.30412077904
+      <UV>  {
+        0.913231 0.650448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5428 {
+      -0.88339561224 0.0464511364698 3.29614830017
+      <UV>  {
+        0.910806 0.646367
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5429 {
+      -0.875375032425 0.047192890197 3.30589294434
+      <UV>  {
+        0.913231 0.650448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5430 {
+      -0.875375032425 0.0704767107964 3.30412077904
+      <UV>  {
+        0.913231 0.650448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5431 {
+      -0.88339561224 0.0697349384427 3.29437589645
+      <UV>  {
+        0.910806 0.646367
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5432 {
+      -0.893168747425 0.0458423793316 3.28815078735
+      <UV>  {
+        0.907851 0.643018
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5433 {
+      -0.88339561224 0.0464511364698 3.29614830017
+      <UV>  {
+        0.910806 0.646367
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5434 {
+      -0.88339561224 0.0697349384427 3.29437589645
+      <UV>  {
+        0.910806 0.646367
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5435 {
+      -0.893168747425 0.0691262036562 3.28637838364
+      <UV>  {
+        0.907851 0.643018
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5436 {
+      -0.904318749905 0.045390047133 3.28220796585
+      <UV>  {
+        0.904480 0.640530
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5437 {
+      -0.893168747425 0.0458423793316 3.28815078735
+      <UV>  {
+        0.907851 0.643018
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5438 {
+      -0.893168747425 0.0691262036562 3.28637838364
+      <UV>  {
+        0.907851 0.643018
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5439 {
+      -0.904318749905 0.0686738491058 3.28043580055
+      <UV>  {
+        0.904480 0.640530
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5440 {
+      -0.916417360306 0.0451114885509 3.2785487175
+      <UV>  {
+        0.900822 0.638997
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5441 {
+      -0.904318749905 0.045390047133 3.28220796585
+      <UV>  {
+        0.904480 0.640530
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5442 {
+      -0.904318749905 0.0686738491058 3.28043580055
+      <UV>  {
+        0.904480 0.640530
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5443 {
+      -0.916417360306 0.0683953091502 3.27677631378
+      <UV>  {
+        0.900822 0.638997
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5444 {
+      -0.928999423981 0.045017439872 3.277312994
+      <UV>  {
+        0.897018 0.638480
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5445 {
+      -0.916417360306 0.0451114885509 3.2785487175
+      <UV>  {
+        0.900822 0.638997
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5446 {
+      -0.916417360306 0.0683953091502 3.27677631378
+      <UV>  {
+        0.900822 0.638997
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5447 {
+      -0.928999423981 0.0683012604713 3.2755408287
+      <UV>  {
+        0.897018 0.638480
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5448 {
+      -0.94158154726 0.0451114885509 3.2785487175
+      <UV>  {
+        0.893214 0.638997
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5449 {
+      -0.928999423981 0.045017439872 3.277312994
+      <UV>  {
+        0.897018 0.638480
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5450 {
+      -0.928999423981 0.0683012604713 3.2755408287
+      <UV>  {
+        0.897018 0.638480
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5451 {
+      -0.94158154726 0.0683953091502 3.27677631378
+      <UV>  {
+        0.893214 0.638997
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5452 {
+      -0.953679919243 0.0453900508583 3.28220796585
+      <UV>  {
+        0.889556 0.640530
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5453 {
+      -0.94158154726 0.0451114885509 3.2785487175
+      <UV>  {
+        0.893214 0.638997
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5454 {
+      -0.94158154726 0.0683953091502 3.27677631378
+      <UV>  {
+        0.893214 0.638997
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5455 {
+      -0.953679919243 0.0686738491058 3.28043580055
+      <UV>  {
+        0.889556 0.640530
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5456 {
+      -0.964829981327 0.0458423830569 3.28815078735
+      <UV>  {
+        0.886185 0.643018
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5457 {
+      -0.953679919243 0.0453900508583 3.28220796585
+      <UV>  {
+        0.889556 0.640530
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5458 {
+      -0.953679919243 0.0686738491058 3.28043580055
+      <UV>  {
+        0.889556 0.640530
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5459 {
+      -0.964829981327 0.0691262036562 3.28637838364
+      <UV>  {
+        0.886185 0.643018
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5460 {
+      -0.974603176117 0.0464511401951 3.29614830017
+      <UV>  {
+        0.883230 0.646367
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5461 {
+      -0.964829981327 0.0458423830569 3.28815078735
+      <UV>  {
+        0.886185 0.643018
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5462 {
+      -0.964829981327 0.0691262036562 3.28637838364
+      <UV>  {
+        0.886185 0.643018
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5463 {
+      -0.974603176117 0.0697349458933 3.29437589645
+      <UV>  {
+        0.883230 0.646367
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5464 {
+      -0.982623755932 0.0471928939223 3.30589294434
+      <UV>  {
+        0.880805 0.650448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5465 {
+      -0.974603176117 0.0464511401951 3.29614830017
+      <UV>  {
+        0.883230 0.646367
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5466 {
+      -0.974603176117 0.0697349458933 3.29437589645
+      <UV>  {
+        0.883230 0.646367
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5467 {
+      -0.982623755932 0.0704767182469 3.30412077904
+      <UV>  {
+        0.880805 0.650448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5468 {
+      -0.988583505154 0.0480391643941 3.31701087952
+      <UV>  {
+        0.879003 0.655104
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5469 {
+      -0.982623755932 0.0471928939223 3.30589294434
+      <UV>  {
+        0.880805 0.650448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5470 {
+      -0.982623755932 0.0704767182469 3.30412077904
+      <UV>  {
+        0.880805 0.650448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5471 {
+      -0.988583505154 0.0713229849935 3.31523871422
+      <UV>  {
+        0.879003 0.655104
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5472 {
+      -0.992253601551 0.0489574298263 3.3290746212
+      <UV>  {
+        0.877893 0.660156
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5473 {
+      -0.988583505154 0.0480391643941 3.31701087952
+      <UV>  {
+        0.879003 0.655104
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5474 {
+      -0.988583505154 0.0713229849935 3.31523871422
+      <UV>  {
+        0.879003 0.655104
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5475 {
+      -0.992253601551 0.0722412541509 3.3273024559
+      <UV>  {
+        0.877893 0.660156
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5476 {
+      -0.993492841721 0.0499123856425 3.34162020683
+      <UV>  {
+        0.877519 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5477 {
+      -0.992253601551 0.0489574298263 3.3290746212
+      <UV>  {
+        0.877893 0.660156
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5478 {
+      -0.992253601551 0.0722412541509 3.3273024559
+      <UV>  {
+        0.877893 0.660156
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5479 {
+      -0.993492841721 0.0731961876154 3.33984804153
+      <UV>  {
+        0.877519 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5480 {
+      -0.992253601551 0.0508673414588 3.3541662693
+      <UV>  {
+        0.877893 0.670664
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5481 {
+      -0.993492841721 0.0499123856425 3.34162020683
+      <UV>  {
+        0.877519 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5482 {
+      -0.993492841721 0.0731961876154 3.33984804153
+      <UV>  {
+        0.877519 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5483 {
+      -0.992253601551 0.0741511657834 3.35239386559
+      <UV>  {
+        0.877893 0.670664
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5484 {
+      -0.988583445549 0.0517856068909 3.36622977257
+      <UV>  {
+        0.879003 0.675716
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5485 {
+      -0.992253601551 0.0508673414588 3.3541662693
+      <UV>  {
+        0.877893 0.670664
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5486 {
+      -0.992253601551 0.0741511657834 3.35239386559
+      <UV>  {
+        0.877893 0.670664
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5487 {
+      -0.988583445549 0.0750694125891 3.36445736885
+      <UV>  {
+        0.879003 0.675716
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5488 {
+      -0.982623636723 0.0526318773627 3.37734770775
+      <UV>  {
+        0.880805 0.680371
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5489 {
+      -0.988583445549 0.0517856068909 3.36622977257
+      <UV>  {
+        0.879003 0.675716
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5490 {
+      -0.988583445549 0.0750694125891 3.36445736885
+      <UV>  {
+        0.879003 0.675716
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5491 {
+      -0.982623636723 0.0759156793356 3.37557530403
+      <UV>  {
+        0.880805 0.680371
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5492 {
+      -0.974603056908 0.0533736310899 3.38709259033
+      <UV>  {
+        0.883230 0.684452
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5493 {
+      -0.982623636723 0.0526318773627 3.37734770775
+      <UV>  {
+        0.880805 0.680371
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5494 {
+      -0.982623636723 0.0759156793356 3.37557530403
+      <UV>  {
+        0.880805 0.680371
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5495 {
+      -0.974603056908 0.0766574516892 3.38532018661
+      <UV>  {
+        0.883230 0.684452
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5496 {
+      -0.964829921722 0.0539823882282 3.39508986473
+      <UV>  {
+        0.886185 0.687801
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5497 {
+      -0.974603056908 0.0533736310899 3.38709259033
+      <UV>  {
+        0.883230 0.684452
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5498 {
+      -0.974603056908 0.0766574516892 3.38532018661
+      <UV>  {
+        0.883230 0.684452
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5499 {
+      -0.964829921722 0.0772661939263 3.39331769943
+      <UV>  {
+        0.886185 0.687801
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5500 {
+      -0.953679859638 0.0544347204268 3.40103268623
+      <UV>  {
+        0.889556 0.690290
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5501 {
+      -0.964829921722 0.0539823882282 3.39508986473
+      <UV>  {
+        0.886185 0.687801
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5502 {
+      -0.964829921722 0.0772661939263 3.39331769943
+      <UV>  {
+        0.886185 0.687801
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5503 {
+      -0.953679859638 0.0777185410261 3.39926028252
+      <UV>  {
+        0.889556 0.690290
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5504 {
+      -0.941581308842 0.0547132790089 3.404692173
+      <UV>  {
+        0.893214 0.691822
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5505 {
+      -0.953679859638 0.0544347204268 3.40103268623
+      <UV>  {
+        0.889556 0.690290
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5506 {
+      -0.953679859638 0.0777185410261 3.39926028252
+      <UV>  {
+        0.889556 0.690290
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5507 {
+      -0.941581308842 0.0779970809817 3.40291976929
+      <UV>  {
+        0.893214 0.691822
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5508 {
+      -0.928999245167 0.0548073276877 3.40592765808
+      <UV>  {
+        0.897018 0.692340
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5509 {
+      -0.941581308842 0.0547132790089 3.404692173
+      <UV>  {
+        0.893214 0.691822
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5510 {
+      -0.941581308842 0.0779970809817 3.40291976929
+      <UV>  {
+        0.893214 0.691822
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5511 {
+      -0.928999245167 0.0780911296606 3.40415525436
+      <UV>  {
+        0.897018 0.692340
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5512 {
+      -0.916417241096 0.0547132603824 3.40469193459
+      <UV>  {
+        0.900822 0.691822
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5513 {
+      -0.928999245167 0.0548073276877 3.40592765808
+      <UV>  {
+        0.897018 0.692340
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5514 {
+      -0.928999245167 0.0780911296606 3.40415525436
+      <UV>  {
+        0.897018 0.692340
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5515 {
+      -0.916417241096 0.07799705863 3.40291953087
+      <UV>  {
+        0.900822 0.691822
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5516 {
+      -0.904318749905 0.0544347167015 3.40103268623
+      <UV>  {
+        0.904480 0.690290
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5517 {
+      -0.916417241096 0.0547132603824 3.40469193459
+      <UV>  {
+        0.900822 0.691822
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5518 {
+      -0.916417241096 0.07799705863 3.40291953087
+      <UV>  {
+        0.900822 0.691822
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5519 {
+      -0.904318749905 0.0777185410261 3.39926028252
+      <UV>  {
+        0.904480 0.690290
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5520 {
+      -0.89316868782 0.0539823845029 3.39508986473
+      <UV>  {
+        0.907851 0.687801
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5521 {
+      -0.904318749905 0.0544347167015 3.40103268623
+      <UV>  {
+        0.904480 0.690290
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5522 {
+      -0.904318749905 0.0777185410261 3.39926028252
+      <UV>  {
+        0.904480 0.690290
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5523 {
+      -0.89316868782 0.0772661864758 3.39331769943
+      <UV>  {
+        0.907851 0.687801
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5524 {
+      -0.88339561224 0.0533736273646 3.38709259033
+      <UV>  {
+        0.910806 0.684452
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5525 {
+      -0.89316868782 0.0539823845029 3.39508986473
+      <UV>  {
+        0.907851 0.687801
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5526 {
+      -0.89316868782 0.0772661864758 3.39331769943
+      <UV>  {
+        0.907851 0.687801
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5527 {
+      -0.88339561224 0.0766574516892 3.38532018661
+      <UV>  {
+        0.910806 0.684452
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5528 {
+      -0.872108817101 0.0542302913964 3.39834690094
+      <UV>  {
+        0.914219 0.689165
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5529 {
+      -0.884300708771 0.0549896769226 3.40832352638
+      <UV>  {
+        0.910532 0.693343
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5530 {
+      -0.89316868782 0.0539823845029 3.39508986473
+      <UV>  {
+        0.907851 0.687801
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5531 {
+      -0.88339561224 0.0533736273646 3.38709259033
+      <UV>  {
+        0.910806 0.684452
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5532 {
+      -0.884300708771 0.0549896769226 3.40832352638
+      <UV>  {
+        0.910532 0.693343
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5533 {
+      -0.898210406303 0.0555539801717 3.41573691368
+      <UV>  {
+        0.906327 0.696448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5534 {
+      -0.904318749905 0.0544347167015 3.40103268623
+      <UV>  {
+        0.904480 0.690290
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5535 {
+      -0.89316868782 0.0539823845029 3.39508986473
+      <UV>  {
+        0.907851 0.687801
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5536 {
+      -0.898210406303 0.0555539801717 3.41573691368
+      <UV>  {
+        0.906327 0.696448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5537 {
+      -0.913303136826 0.0559014640749 3.42030191422
+      <UV>  {
+        0.901764 0.698359
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5538 {
+      -0.916417241096 0.0547132603824 3.40469193459
+      <UV>  {
+        0.900822 0.691822
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5539 {
+      -0.904318749905 0.0544347167015 3.40103268623
+      <UV>  {
+        0.904480 0.690290
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5540 {
+      -0.913303136826 0.0559014640749 3.42030191422
+      <UV>  {
+        0.901764 0.698359
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5541 {
+      -0.928999245167 0.0560188107193 3.42184352875
+      <UV>  {
+        0.897018 0.699005
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5542 {
+      -0.928999245167 0.0548073276877 3.40592765808
+      <UV>  {
+        0.897018 0.692340
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5543 {
+      -0.916417241096 0.0547132603824 3.40469193459
+      <UV>  {
+        0.900822 0.691822
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5544 {
+      -0.928999245167 0.0560188107193 3.42184352875
+      <UV>  {
+        0.897018 0.699005
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5545 {
+      -0.944695293903 0.0559014640749 3.42030215263
+      <UV>  {
+        0.892272 0.698359
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5546 {
+      -0.941581308842 0.0547132790089 3.404692173
+      <UV>  {
+        0.893214 0.691822
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5547 {
+      -0.928999245167 0.0548073276877 3.40592765808
+      <UV>  {
+        0.897018 0.692340
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5548 {
+      -0.944695293903 0.0559014640749 3.42030215263
+      <UV>  {
+        0.892272 0.698359
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5549 {
+      -0.959788203239 0.055553983897 3.41573691368
+      <UV>  {
+        0.887709 0.696448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5550 {
+      -0.953679859638 0.0544347204268 3.40103268623
+      <UV>  {
+        0.889556 0.690290
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5551 {
+      -0.941581308842 0.0547132790089 3.404692173
+      <UV>  {
+        0.893214 0.691822
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5552 {
+      -0.959788203239 0.055553983897 3.41573691368
+      <UV>  {
+        0.887709 0.696448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5553 {
+      -0.973697781563 0.0549896992743 3.40832352638
+      <UV>  {
+        0.883504 0.693343
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5554 {
+      -0.964829921722 0.0539823882282 3.39508986473
+      <UV>  {
+        0.886185 0.687801
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5555 {
+      -0.953679859638 0.0544347204268 3.40103268623
+      <UV>  {
+        0.889556 0.690290
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5556 {
+      -0.973697781563 0.0549896992743 3.40832352638
+      <UV>  {
+        0.883504 0.693343
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5557 {
+      -0.985889792442 0.0542302951217 3.39834690094
+      <UV>  {
+        0.879817 0.689165
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5558 {
+      -0.974603056908 0.0533736310899 3.38709259033
+      <UV>  {
+        0.883230 0.684452
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5559 {
+      -0.964829921722 0.0539823882282 3.39508986473
+      <UV>  {
+        0.886185 0.687801
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5560 {
+      -0.985889792442 0.0542302951217 3.39834690094
+      <UV>  {
+        0.879817 0.689165
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5561 {
+      -0.995895385742 0.053304925561 3.38618993759
+      <UV>  {
+        0.876792 0.684074
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5562 {
+      -0.982623636723 0.0526318773627 3.37734770775
+      <UV>  {
+        0.880805 0.680371
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5563 {
+      -0.974603056908 0.0533736310899 3.38709259033
+      <UV>  {
+        0.883230 0.684452
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5564 {
+      -0.995895385742 0.053304925561 3.38618993759
+      <UV>  {
+        0.876792 0.684074
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5565 {
+      -1.00333023071 0.0522492267191 3.37232065201
+      <UV>  {
+        0.874544 0.678266
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5566 {
+      -0.988583445549 0.0517856068909 3.36622977257
+      <UV>  {
+        0.879003 0.675716
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5567 {
+      -0.982623636723 0.0526318773627 3.37734770775
+      <UV>  {
+        0.880805 0.680371
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5568 {
+      -1.00333023071 0.0522492267191 3.37232065201
+      <UV>  {
+        0.874544 0.678266
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5569 {
+      -1.00790882111 0.0511036850512 3.35727119446
+      <UV>  {
+        0.873160 0.671964
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5570 {
+      -0.992253601551 0.0508673414588 3.3541662693
+      <UV>  {
+        0.877893 0.670664
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5571 {
+      -0.988583445549 0.0517856068909 3.36622977257
+      <UV>  {
+        0.879003 0.675716
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5572 {
+      -1.00790882111 0.0511036850512 3.35727119446
+      <UV>  {
+        0.873160 0.671964
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5573 {
+      -1.00945460796 0.0499123856425 3.34162020683
+      <UV>  {
+        0.872693 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5574 {
+      -0.993492841721 0.0499123856425 3.34162020683
+      <UV>  {
+        0.877519 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5575 {
+      -0.992253601551 0.0508673414588 3.3541662693
+      <UV>  {
+        0.877893 0.670664
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5576 {
+      -1.00945460796 0.0499123856425 3.34162020683
+      <UV>  {
+        0.872693 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5577 {
+      -1.00790882111 0.0487210862339 3.32596969604
+      <UV>  {
+        0.873160 0.658856
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5578 {
+      -0.992253601551 0.0489574298263 3.3290746212
+      <UV>  {
+        0.877893 0.660156
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5579 {
+      -0.993492841721 0.0499123856425 3.34162020683
+      <UV>  {
+        0.877519 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5580 {
+      -1.00790882111 0.0487210862339 3.32596969604
+      <UV>  {
+        0.873160 0.658856
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5581 {
+      -1.00333034992 0.0475755669177 3.31092023849
+      <UV>  {
+        0.874544 0.652554
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5582 {
+      -0.988583505154 0.0480391643941 3.31701087952
+      <UV>  {
+        0.879003 0.655104
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5583 {
+      -0.992253601551 0.0489574298263 3.3290746212
+      <UV>  {
+        0.877893 0.660156
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5584 {
+      -1.00333034992 0.0475755669177 3.31092023849
+      <UV>  {
+        0.874544 0.652554
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5585 {
+      -0.995895564556 0.0465198457241 3.29705071449
+      <UV>  {
+        0.876792 0.646745
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5586 {
+      -0.982623755932 0.0471928939223 3.30589294434
+      <UV>  {
+        0.880805 0.650448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5587 {
+      -0.988583505154 0.0480391643941 3.31701087952
+      <UV>  {
+        0.879003 0.655104
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5588 {
+      -0.995895564556 0.0465198457241 3.29705071449
+      <UV>  {
+        0.876792 0.646745
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5589 {
+      -0.985889911652 0.0455944947898 3.28489398956
+      <UV>  {
+        0.879817 0.641654
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5590 {
+      -0.974603176117 0.0464511401951 3.29614830017
+      <UV>  {
+        0.883230 0.646367
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5591 {
+      -0.982623755932 0.0471928939223 3.30589294434
+      <UV>  {
+        0.880805 0.650448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5592 {
+      -0.985889911652 0.0455944947898 3.28489398956
+      <UV>  {
+        0.879817 0.641654
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5593 {
+      -0.973697960377 0.0448350906372 3.27491736412
+      <UV>  {
+        0.883504 0.637477
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5594 {
+      -0.964829981327 0.0458423830569 3.28815078735
+      <UV>  {
+        0.886185 0.643018
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5595 {
+      -0.974603176117 0.0464511401951 3.29614830017
+      <UV>  {
+        0.883230 0.646367
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5596 {
+      -0.973697960377 0.0448350906372 3.27491736412
+      <UV>  {
+        0.883504 0.637477
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5597 {
+      -0.959788262844 0.0442707836628 3.2675037384
+      <UV>  {
+        0.887709 0.634372
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5598 {
+      -0.953679919243 0.0453900508583 3.28220796585
+      <UV>  {
+        0.889556 0.640530
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5599 {
+      -0.964829981327 0.0458423830569 3.28815078735
+      <UV>  {
+        0.886185 0.643018
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5600 {
+      -0.959788262844 0.0442707836628 3.2675037384
+      <UV>  {
+        0.887709 0.634372
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5601 {
+      -0.944695532322 0.0439232848585 3.26293849945
+      <UV>  {
+        0.892272 0.632460
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5602 {
+      -0.94158154726 0.0451114885509 3.2785487175
+      <UV>  {
+        0.893214 0.638997
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5603 {
+      -0.953679919243 0.0453900508583 3.28220796585
+      <UV>  {
+        0.889556 0.640530
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5604 {
+      -0.944695532322 0.0439232848585 3.26293849945
+      <UV>  {
+        0.892272 0.632460
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5605 {
+      -0.928999423981 0.0438059568405 3.26139712334
+      <UV>  {
+        0.897018 0.631815
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5606 {
+      -0.928999423981 0.045017439872 3.277312994
+      <UV>  {
+        0.897018 0.638480
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5607 {
+      -0.94158154726 0.0451114885509 3.2785487175
+      <UV>  {
+        0.893214 0.638997
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5608 {
+      -0.928999423981 0.0438059568405 3.26139712334
+      <UV>  {
+        0.897018 0.631815
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5609 {
+      -0.913303375244 0.0439232811332 3.26293849945
+      <UV>  {
+        0.901763 0.632460
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5610 {
+      -0.916417360306 0.0451114885509 3.2785487175
+      <UV>  {
+        0.900822 0.638997
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5611 {
+      -0.928999423981 0.045017439872 3.277312994
+      <UV>  {
+        0.897018 0.638480
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5612 {
+      -0.913303375244 0.0439232811332 3.26293849945
+      <UV>  {
+        0.901763 0.632460
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5613 {
+      -0.898210406303 0.0442707836628 3.2675037384
+      <UV>  {
+        0.906327 0.634372
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5614 {
+      -0.904318749905 0.045390047133 3.28220796585
+      <UV>  {
+        0.904480 0.640530
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5615 {
+      -0.916417360306 0.0451114885509 3.2785487175
+      <UV>  {
+        0.900822 0.638997
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5616 {
+      -0.898210406303 0.0442707836628 3.2675037384
+      <UV>  {
+        0.906327 0.634372
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5617 {
+      -0.884300768375 0.0448350869119 3.27491736412
+      <UV>  {
+        0.910532 0.637477
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5618 {
+      -0.893168747425 0.0458423793316 3.28815078735
+      <UV>  {
+        0.907851 0.643018
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5619 {
+      -0.904318749905 0.045390047133 3.28220796585
+      <UV>  {
+        0.904480 0.640530
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5620 {
+      -0.884300768375 0.0448350869119 3.27491736412
+      <UV>  {
+        0.910532 0.637477
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5621 {
+      -0.872108817101 0.0455944910645 3.28489398956
+      <UV>  {
+        0.914219 0.641654
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5622 {
+      -0.88339561224 0.0464511364698 3.29614830017
+      <UV>  {
+        0.910806 0.646367
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5623 {
+      -0.893168747425 0.0458423793316 3.28815078735
+      <UV>  {
+        0.907851 0.643018
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5624 {
+      -0.872108817101 0.0455944910645 3.28489398956
+      <UV>  {
+        0.914219 0.641654
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5625 {
+      -0.862103164196 0.0465198419988 3.29705071449
+      <UV>  {
+        0.917244 0.646745
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5626 {
+      -0.875375032425 0.047192890197 3.30589294434
+      <UV>  {
+        0.913231 0.650448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5627 {
+      -0.88339561224 0.0464511364698 3.29614830017
+      <UV>  {
+        0.910806 0.646367
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5628 {
+      -0.862103164196 0.0465198419988 3.29705071449
+      <UV>  {
+        0.917244 0.646745
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5629 {
+      -0.854668438435 0.0475755594671 3.31092023849
+      <UV>  {
+        0.919492 0.652554
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5630 {
+      -0.869415283203 0.0480391606688 3.31701087952
+      <UV>  {
+        0.915033 0.655104
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5631 {
+      -0.875375032425 0.047192890197 3.30589294434
+      <UV>  {
+        0.913231 0.650448
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5632 {
+      -0.854668438435 0.0475755594671 3.31092023849
+      <UV>  {
+        0.919492 0.652554
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5633 {
+      -0.850090205669 0.0487210787833 3.32596969604
+      <UV>  {
+        0.920876 0.658856
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5634 {
+      -0.86574536562 0.048957426101 3.3290746212
+      <UV>  {
+        0.916142 0.660156
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5635 {
+      -0.869415283203 0.0480391606688 3.31701087952
+      <UV>  {
+        0.915033 0.655104
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5636 {
+      -0.850090205669 0.0487210787833 3.32596969604
+      <UV>  {
+        0.920876 0.658856
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5637 {
+      -0.848544120789 0.0499123781919 3.34162020683
+      <UV>  {
+        0.921343 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5638 {
+      -0.864506006241 0.0499123819172 3.34162020683
+      <UV>  {
+        0.916517 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5639 {
+      -0.86574536562 0.048957426101 3.3290746212
+      <UV>  {
+        0.916142 0.660156
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5640 {
+      -0.848544120789 0.0499123781919 3.34162020683
+      <UV>  {
+        0.921343 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5641 {
+      -0.850090205669 0.0511036813259 3.35727095604
+      <UV>  {
+        0.920876 0.671964
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5642 {
+      -0.86574536562 0.0508673340082 3.35416603088
+      <UV>  {
+        0.916142 0.670663
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5643 {
+      -0.864506006241 0.0499123819172 3.34162020683
+      <UV>  {
+        0.916517 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5644 {
+      -0.850090205669 0.0511036813259 3.35727095604
+      <UV>  {
+        0.920876 0.671964
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5645 {
+      -0.854668438435 0.0522492006421 3.37232041359
+      <UV>  {
+        0.919492 0.678266
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5646 {
+      -0.869415283203 0.0517856031656 3.36622977257
+      <UV>  {
+        0.915033 0.675716
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5647 {
+      -0.86574536562 0.0508673340082 3.35416603088
+      <UV>  {
+        0.916142 0.670663
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5648 {
+      -0.854668438435 0.0522492006421 3.37232041359
+      <UV>  {
+        0.919492 0.678266
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5649 {
+      -0.862103164196 0.0533049181104 3.38618993759
+      <UV>  {
+        0.917244 0.684074
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5650 {
+      -0.875375032425 0.0526318736374 3.37734770775
+      <UV>  {
+        0.913231 0.680371
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5651 {
+      -0.869415283203 0.0517856031656 3.36622977257
+      <UV>  {
+        0.915033 0.675716
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5652 {
+      -0.862103164196 0.0533049181104 3.38618993759
+      <UV>  {
+        0.917244 0.684074
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5653 {
+      -0.872108817101 0.0542302913964 3.39834690094
+      <UV>  {
+        0.914219 0.689165
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5654 {
+      -0.88339561224 0.0533736273646 3.38709259033
+      <UV>  {
+        0.910806 0.684452
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5655 {
+      -0.875375032425 0.0526318736374 3.37734770775
+      <UV>  {
+        0.913231 0.680371
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5656 {
+      -0.850090205669 0.0511036813259 3.35727095604
+      <UV>  {
+        0.920876 0.671964
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5657 {
+      -0.848544120789 0.0499123781919 3.34162020683
+      <UV>  {
+        0.921343 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5658 {
+      -0.828640460968 0.0500611774623 3.34357523918
+      <UV>  {
+        0.927361 0.666228
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5659 {
+      -0.830186545849 0.051252476871 3.35922598839
+      <UV>  {
+        0.926894 0.672782
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5660 {
+      -0.848544120789 0.0499123781919 3.34162020683
+      <UV>  {
+        0.921343 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5661 {
+      -0.848544120789 0.0731961801648 3.33984804153
+      <UV>  {
+        0.921343 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5662 {
+      -0.828640460968 0.0733449831605 3.34180283546
+      <UV>  {
+        0.927361 0.666228
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5663 {
+      -0.828640460968 0.0500611774623 3.34357523918
+      <UV>  {
+        0.927361 0.666228
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5664 {
+      -0.848544120789 0.0731961801648 3.33984804153
+      <UV>  {
+        0.921343 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5665 {
+      -0.850090205669 0.0743874832988 3.35549879074
+      <UV>  {
+        0.920876 0.671964
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5666 {
+      -0.830186545849 0.0745362788439 3.35745358467
+      <UV>  {
+        0.926894 0.672782
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5667 {
+      -0.828640460968 0.0733449831605 3.34180283546
+      <UV>  {
+        0.927361 0.666228
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5668 {
+      -0.850090205669 0.0743874832988 3.35549879074
+      <UV>  {
+        0.920876 0.671964
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5669 {
+      -0.850090205669 0.0511036813259 3.35727095604
+      <UV>  {
+        0.920876 0.671964
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5670 {
+      -0.830186545849 0.051252476871 3.35922598839
+      <UV>  {
+        0.926894 0.672782
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5671 {
+      -0.830186545849 0.0745362788439 3.35745358467
+      <UV>  {
+        0.926894 0.672782
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5672 {
+      -0.76414680481 0.0731961801648 3.33984804153
+      <UV>  {
+        0.946860 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5673 {
+      -0.76414680481 0.0499123744667 3.34162020683
+      <UV>  {
+        0.946860 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5674 {
+      -0.784050524235 0.0500611551106 3.34357500076
+      <UV>  {
+        0.940843 0.666228
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5675 {
+      -0.784050524235 0.0733449608088 3.34180259705
+      <UV>  {
+        0.940843 0.666228
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5676 {
+      -0.762600958347 0.0743874981999 3.35549879074
+      <UV>  {
+        0.947328 0.671964
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5677 {
+      -0.76414680481 0.0731961801648 3.33984804153
+      <UV>  {
+        0.946860 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5678 {
+      -0.784050524235 0.0733449608088 3.34180259705
+      <UV>  {
+        0.940843 0.666228
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5679 {
+      -0.782504677773 0.0745362788439 3.35745334625
+      <UV>  {
+        0.941310 0.672782
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5680 {
+      -0.762600958347 0.0511036776006 3.35727119446
+      <UV>  {
+        0.947328 0.671964
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5681 {
+      -0.762600958347 0.0743874981999 3.35549879074
+      <UV>  {
+        0.947328 0.671964
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5682 {
+      -0.782504677773 0.0745362788439 3.35745334625
+      <UV>  {
+        0.941310 0.672782
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5683 {
+      -0.782504677773 0.0512524545193 3.35922574997
+      <UV>  {
+        0.941310 0.672782
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5684 {
+      -0.76414680481 0.0499123744667 3.34162020683
+      <UV>  {
+        0.946860 0.665410
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5685 {
+      -0.762600958347 0.0511036776006 3.35727119446
+      <UV>  {
+        0.947328 0.671964
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5686 {
+      -0.782504677773 0.0512524545193 3.35922574997
+      <UV>  {
+        0.941310 0.672782
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5687 {
+      -0.784050524235 0.0500611551106 3.34357500076
+      <UV>  {
+        0.940843 0.666228
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5688 {
+      -0.830186545849 0.051252476871 3.35922598839
+      <UV>  {
+        0.926894 0.672782
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5689 {
+      -0.828640460968 0.0500611774623 3.34357523918
+      <UV>  {
+        0.927361 0.666228
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5690 {
+      -0.784050524235 0.0500611551106 3.34357500076
+      <UV>  {
+        0.940843 0.666228
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5691 {
+      -0.782504677773 0.0512524545193 3.35922574997
+      <UV>  {
+        0.941310 0.672782
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { 0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5692 {
+      -0.828640460968 0.0500611774623 3.34357523918
+      <UV>  {
+        0.927361 0.666228
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5693 {
+      -0.828640460968 0.0733449831605 3.34180283546
+      <UV>  {
+        0.927361 0.666228
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5694 {
+      -0.784050524235 0.0733449608088 3.34180259705
+      <UV>  {
+        0.940843 0.666228
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5695 {
+      -0.784050524235 0.0500611551106 3.34357500076
+      <UV>  {
+        0.940843 0.666228
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5696 {
+      -0.830186545849 0.051252476871 3.35922598839
+      <UV>  {
+        0.926894 0.672782
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5697 {
+      -0.782504677773 0.0512524545193 3.35922574997
+      <UV>  {
+        0.941310 0.672782
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5698 {
+      -0.782504677773 0.0745362788439 3.35745334625
+      <UV>  {
+        0.941310 0.672782
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5699 {
+      -0.830186545849 0.0745362788439 3.35745358467
+      <UV>  {
+        0.926894 0.672782
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 -0.000000 }
+      }
+    }
+    <Vertex> 5700 {
+      -0.828640460968 0.0733449831605 3.34180283546
+      <UV>  {
+        0.927361 0.666228
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5701 {
+      -0.830186545849 0.0745362788439 3.35745358467
+      <UV>  {
+        0.926894 0.672782
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5702 {
+      -0.782504677773 0.0745362788439 3.35745334625
+      <UV>  {
+        0.941310 0.672782
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5703 {
+      -0.784050524235 0.0733449608088 3.34180259705
+      <UV>  {
+        0.940843 0.666228
+        <Tangent> { 0.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.000000 0.000000 }
+      }
+    }
+    <Vertex> 5704 {
+      -0.945430755615 0.904367208481 1.19364929199
+      <UV>  {
+        0.648275 0.163810
+        <Tangent> { -1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.020600 -0.135899 }
+      }
+      <Normal> { 0.990478 0.135899 -0.020600 }
+    }
+    <Vertex> 5705 {
+      -0.972806692123 0.93329668045 0.792817175388
+      <UV>  {
+        0.643393 0.065092
+        <Tangent> { -0.975691 -0.219151 0.000000 }
+        <Binormal> { 0.016219 -0.072208 0.057311 }
+      }
+      <Normal> { 0.983947 0.162267 -0.074007 }
+    }
+    <Vertex> 5706 {
+      -0.625139534473 0.933296620846 0.792817175388
+      <UV>  {
+        0.705392 0.065092
+        <Tangent> { -0.992777 0.119974 0.000000 }
+        <Binormal> { -0.008879 -0.073473 0.043047 }
+      }
+      <Normal> { 0.983947 -0.162267 -0.074007 }
+    }
+    <Vertex> 5707 {
+      -0.652492344379 0.904367208481 1.19364929199
+      <UV>  {
+        0.700514 0.163810
+        <Tangent> { 0.934690 0.355343 -0.009253 }
+        <Binormal> { -0.007057 0.006721 -0.454781 }
+      }
+      <Normal> { 0.993896 -0.108707 -0.017029 }
+    }
+    <Vertex> 5708 {
+      -0.830359101295 0.177602529526 1.17193055153
+      <UV>  {
+        0.668795 0.158461
+        <Tangent> { 0.000010 -0.457700 0.889106 }
+        <Binormal> { -0.101963 -0.881264 -0.453662 }
+      }
+      <Normal> { -0.991180 0.129307 -0.028413 }
+    }
+    <Vertex> 5709 {
+      -0.836236774921 0.173469752073 0.771098434925
+      <UV>  {
+        0.667747 0.059743
+        <Tangent> { 0.991736 -0.128295 0.000000 }
+        <Binormal> { 0.002467 0.019068 0.010530 }
+      }
+      <Normal> { -0.990143 0.138707 -0.019227 }
+    }
+    <Vertex> 5710 {
+      -1.09320425987 0.206831738353 0.780901014805
+      <UV>  {
+        0.621923 0.062157
+        <Tangent> { 0.970759 -0.240055 0.000000 }
+        <Binormal> { 0.003136 0.012680 -0.000412 }
+      }
+      <Normal> { -0.970763 0.239631 -0.013062 }
+    }
+    <Vertex> 5711 {
+      -1.04687559605 0.210964486003 1.18173325062
+      <UV>  {
+        0.630185 0.160875
+        <Tangent> { -0.000002 0.946844 0.321694 }
+        <Binormal> { -0.165625 -0.306437 0.901938 }
+      }
+      <Normal> { -0.952574 0.294870 -0.074740 }
+    }
+    <Vertex> 5712 {
+      -1.04687559605 0.210964486003 1.18173325062
+      <UV>  {
+        0.630185 0.160875
+        <Tangent> { -0.000002 0.946844 0.321694 }
+        <Binormal> { -0.165625 -0.306437 0.901938 }
+      }
+      <Normal> { -0.952574 0.294870 -0.074740 }
+    }
+    <Vertex> 5713 {
+      -1.09320425987 0.206831738353 0.780901014805
+      <UV>  {
+        0.621923 0.062157
+        <Tangent> { 0.970759 -0.240055 0.000000 }
+        <Binormal> { 0.003136 0.012680 -0.000412 }
+      }
+      <Normal> { -0.970763 0.239631 -0.013062 }
+    }
+    <Vertex> 5714 {
+      -1.26449882984 0.286327302456 0.792817175388
+      <UV>  {
+        0.591377 0.065092
+        <Tangent> { 0.654909 -0.755708 0.000000 }
+        <Binormal> { 0.079337 0.068755 -0.055740 }
+      }
+      <Normal> { -0.692373 0.713828 -0.104984 }
+    }
+    <Vertex> 5715 {
+      -1.19120538235 0.244999676943 1.19364929199
+      <UV>  {
+        0.604447 0.163810
+        <Tangent> { 0.000002 -0.932435 0.361338 }
+        <Binormal> { -0.110928 -0.230596 -0.595053 }
+      }
+      <Normal> { -0.638173 0.750450 -0.171850 }
+    }
+    <Vertex> 5716 {
+      -1.19120538235 0.244999676943 1.19364929199
+      <UV>  {
+        0.604447 0.163810
+        <Tangent> { 0.000002 -0.932435 0.361338 }
+        <Binormal> { -0.110928 -0.230596 -0.595053 }
+      }
+      <Normal> { -0.638173 0.750450 -0.171850 }
+    }
+    <Vertex> 5717 {
+      -1.26449882984 0.286327302456 0.792817175388
+      <UV>  {
+        0.591377 0.065092
+        <Tangent> { 0.654909 -0.755708 0.000000 }
+        <Binormal> { 0.079337 0.068755 -0.055740 }
+      }
+      <Normal> { -0.692373 0.713828 -0.104984 }
+    }
+    <Vertex> 5718 {
+      -1.39839804173 0.65607303381 0.792817175388
+      <UV>  {
+        0.567499 0.065092
+        <Tangent> { 0.129371 -0.991596 0.000000 }
+        <Binormal> { 0.192013 0.025051 0.283439 }
+      }
+      <Normal> { 0.159551 0.967986 -0.193640 }
+    }
+    <Vertex> 5719 {
+      -1.30402612686 0.65607303381 1.19364929199
+      <UV>  {
+        0.584328 0.163810
+        <Tangent> { -0.000002 0.759216 -0.650838 }
+        <Binormal> { 0.473972 -0.070831 -0.082627 }
+      }
+      <Normal> { 0.108829 0.971862 -0.208838 }
+    }
+    <Vertex> 5720 {
+      -1.30402612686 0.65607303381 1.19364929199
+      <UV>  {
+        0.584328 0.163810
+        <Tangent> { -0.000002 0.759216 -0.650838 }
+        <Binormal> { 0.473972 -0.070831 -0.082627 }
+      }
+      <Normal> { 0.108829 0.971862 -0.208838 }
+    }
+    <Vertex> 5721 {
+      -1.39839804173 0.65607303381 0.792817175388
+      <UV>  {
+        0.567499 0.065092
+        <Tangent> { 0.129371 -0.991596 0.000000 }
+        <Binormal> { 0.192013 0.025051 0.283439 }
+      }
+      <Normal> { 0.159551 0.967986 -0.193640 }
+    }
+    <Vertex> 5722 {
+      -1.26138210297 0.828676462173 0.792817175388
+      <UV>  {
+        0.591932 0.065092
+        <Tangent> { -0.693413 -0.720540 0.000000 }
+        <Binormal> { 0.090730 -0.087314 0.170978 }
+      }
+      <Normal> { 0.800775 0.585528 -0.125919 }
+    }
+    <Vertex> 5723 {
+      -1.18857944012 0.828676462173 1.19364929199
+      <UV>  {
+        0.604915 0.163810
+        <Tangent> { 0.000011 -1.000000 0.000000 }
+        <Binormal> { 0.101077 0.000001 0.792206 }
+      }
+      <Normal> { 0.792199 0.601764 -0.101077 }
+    }
+    <Vertex> 5724 {
+      -1.18857944012 0.828676462173 1.19364929199
+      <UV>  {
+        0.604915 0.163810
+        <Tangent> { 0.000011 -1.000000 0.000000 }
+        <Binormal> { 0.101077 0.000001 0.792206 }
+      }
+      <Normal> { 0.792199 0.601764 -0.101077 }
+    }
+    <Vertex> 5725 {
+      -1.26138210297 0.828676462173 0.792817175388
+      <UV>  {
+        0.591932 0.065092
+        <Tangent> { -0.693413 -0.720540 0.000000 }
+        <Binormal> { 0.090730 -0.087314 0.170978 }
+      }
+      <Normal> { 0.800775 0.585528 -0.125919 }
+    }
+    <Vertex> 5726 {
+      -0.972806692123 0.93329668045 0.792817175388
+      <UV>  {
+        0.643393 0.065092
+        <Tangent> { -0.975691 -0.219151 0.000000 }
+        <Binormal> { 0.016219 -0.072208 0.057311 }
+      }
+      <Normal> { 0.983947 0.162267 -0.074007 }
+    }
+    <Vertex> 5727 {
+      -0.945430755615 0.904367208481 1.19364929199
+      <UV>  {
+        0.648275 0.163810
+        <Tangent> { -1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.020600 -0.135899 }
+      }
+      <Normal> { 0.990478 0.135899 -0.020600 }
+    }
+    <Vertex> 5728 {
+      -0.652492344379 0.904367208481 1.19364929199
+      <UV>  {
+        0.700514 0.163810
+        <Tangent> { 0.934690 0.355343 -0.009253 }
+        <Binormal> { -0.007057 0.006721 -0.454781 }
+      }
+      <Normal> { 0.993896 -0.108707 -0.017029 }
+    }
+    <Vertex> 5729 {
+      -0.625139534473 0.933296620846 0.792817175388
+      <UV>  {
+        0.705392 0.065092
+        <Tangent> { -0.992777 0.119974 0.000000 }
+        <Binormal> { -0.008879 -0.073473 0.043047 }
+      }
+      <Normal> { 0.983947 -0.162267 -0.074007 }
+    }
+    <Vertex> 5730 {
+      -0.336564660072 0.828676402569 0.792817175388
+      <UV>  {
+        0.756852 0.065092
+        <Tangent> { -0.841559 0.540165 0.000000 }
+        <Binormal> { -0.067902 -0.105789 0.058710 }
+      }
+      <Normal> { 0.801691 -0.584338 -0.125706 }
+    }
+    <Vertex> 5731 {
+      -0.409344285727 0.828676402569 1.19364929199
+      <UV>  {
+        0.743874 0.163810
+        <Tangent> { -0.000004 1.000000 0.000000 }
+        <Binormal> { -0.100925 -0.000000 -0.793052 }
+      }
+      <Normal> { 0.793054 -0.600696 -0.100925 }
+    }
+    <Vertex> 5732 {
+      -0.409344285727 0.828676402569 1.19364929199
+      <UV>  {
+        0.743874 0.163810
+        <Tangent> { -0.000004 1.000000 0.000000 }
+        <Binormal> { -0.100925 -0.000000 -0.793052 }
+      }
+      <Normal> { 0.793054 -0.600696 -0.100925 }
+    }
+    <Vertex> 5733 {
+      -0.336564660072 0.828676402569 0.792817175388
+      <UV>  {
+        0.756852 0.065092
+        <Tangent> { -0.841559 0.540165 0.000000 }
+        <Binormal> { -0.067902 -0.105789 0.058710 }
+      }
+      <Normal> { 0.801691 -0.584338 -0.125706 }
+    }
+    <Vertex> 5734 {
+      -0.198674947023 0.656073093414 0.792817175388
+      <UV>  {
+        0.781442 0.065092
+        <Tangent> { -0.179491 0.983760 0.000000 }
+        <Binormal> { -0.190525 -0.034762 0.016198 }
+      }
+      <Normal> { 0.160131 -0.967895 -0.193670 }
+    }
+    <Vertex> 5735 {
+      -0.29316085577 0.656073093414 1.19364929199
+      <UV>  {
+        0.764592 0.163810
+        <Tangent> { 0.406959 -0.547875 0.730902 }
+        <Binormal> { 0.824753 0.164894 -0.335612 }
+      }
+      <Normal> { 0.109256 -0.971770 -0.208960 }
+    }
+    <Vertex> 5736 {
+      -0.29316085577 0.656073093414 1.19364929199
+      <UV>  {
+        0.764592 0.163810
+        <Tangent> { 0.406959 -0.547875 0.730902 }
+        <Binormal> { 0.824753 0.164894 -0.335612 }
+      }
+      <Normal> { 0.109256 -0.971770 -0.208960 }
+    }
+    <Vertex> 5737 {
+      -0.198674947023 0.656073093414 0.792817175388
+      <UV>  {
+        0.781442 0.065092
+        <Tangent> { -0.179491 0.983760 0.000000 }
+        <Binormal> { -0.190525 -0.034762 0.016198 }
+      }
+      <Normal> { 0.160131 -0.967895 -0.193670 }
+    }
+    <Vertex> 5738 {
+      -0.333448022604 0.286327302456 0.792817175388
+      <UV>  {
+        0.757408 0.065092
+        <Tangent> { 0.402214 0.915546 -0.000000 }
+        <Binormal> { -0.096006 0.042177 0.347648 }
+      }
+      <Normal> { -0.693045 -0.713218 -0.104862 }
+    }
+    <Vertex> 5739 {
+      -0.406718462706 0.244999691844 1.19364929199
+      <UV>  {
+        0.744342 0.163810
+        <Tangent> { -0.000005 -0.995067 -0.099210 }
+        <Binormal> { 0.096519 0.063382 -0.635719 }
+      }
+      <Normal> { -0.638874 -0.749840 -0.171758 }
+    }
+    <Vertex> 5740 {
+      -0.406718462706 0.244999691844 1.19364929199
+      <UV>  {
+        0.744342 0.163810
+        <Tangent> { -0.000005 -0.995067 -0.099210 }
+        <Binormal> { 0.096519 0.063382 -0.635719 }
+      }
+      <Normal> { -0.638874 -0.749840 -0.171758 }
+    }
+    <Vertex> 5741 {
+      -0.333448022604 0.286327302456 0.792817175388
+      <UV>  {
+        0.757408 0.065092
+        <Tangent> { 0.402214 0.915546 -0.000000 }
+        <Binormal> { -0.096006 0.042177 0.347648 }
+      }
+      <Normal> { -0.693045 -0.713218 -0.104862 }
+    }
+    <Vertex> 5742 {
+      -0.504742026329 0.206831738353 0.780901014805
+      <UV>  {
+        0.726862 0.062157
+        <Tangent> { 0.964045 0.265741 -0.000001 }
+        <Binormal> { -0.003471 0.012593 0.026956 }
+      }
+      <Normal> { -0.970763 -0.239631 -0.013062 }
+    }
+    <Vertex> 5743 {
+      -0.551048219204 0.210964515805 1.18173325062
+      <UV>  {
+        0.718604 0.160875
+        <Tangent> { 0.000000 -0.971949 -0.235191 }
+        <Binormal> { 0.003293 0.224037 -0.925854 }
+      }
+      <Normal> { -0.952574 -0.294870 -0.074740 }
+    }
+    <Vertex> 5744 {
+      -0.551048219204 0.210964515805 1.18173325062
+      <UV>  {
+        0.718604 0.160875
+        <Tangent> { 0.000000 -0.971949 -0.235191 }
+        <Binormal> { 0.003293 0.224037 -0.925854 }
+      }
+      <Normal> { -0.952574 -0.294870 -0.074740 }
+    }
+    <Vertex> 5745 {
+      -0.504742026329 0.206831738353 0.780901014805
+      <UV>  {
+        0.726862 0.062157
+        <Tangent> { 0.964045 0.265741 -0.000001 }
+        <Binormal> { -0.003471 0.012593 0.026956 }
+      }
+      <Normal> { -0.970763 -0.239631 -0.013062 }
+    }
+    <Vertex> 5746 {
+      -0.761709451675 0.17346984148 0.771098434925
+      <UV>  {
+        0.681038 0.059743
+        <Tangent> { 0.990179 0.139806 0.000000 }
+        <Binormal> { -0.002688 0.019038 0.001083 }
+      }
+      <Normal> { -0.990143 -0.138707 -0.019227 }
+    }
+    <Vertex> 5747 {
+      -0.767564117908 0.177602604032 1.17193055153
+      <UV>  {
+        0.679994 0.158461
+        <Tangent> { -0.993061 -0.087092 -0.079022 }
+        <Binormal> { -0.007743 0.050109 0.042085 }
+      }
+      <Normal> { -0.991180 -0.129307 -0.028413 }
+    }
+    <Vertex> 5748 {
+      -0.652492344379 0.904367208481 1.19364929199
+      <UV>  {
+        0.700514 0.163810
+        <Tangent> { 0.934690 0.355343 -0.009253 }
+        <Binormal> { -0.007057 0.006721 -0.454781 }
+      }
+      <Normal> { 0.993896 -0.108707 -0.017029 }
+    }
+    <Vertex> 5749 {
+      -0.795793235302 0.903709948063 1.47659981251
+      <UV>  {
+        0.675444 0.077179
+        <Tangent> { 0.861345 -0.000450 0.508020 }
+        <Binormal> { 0.000172 0.510265 0.000161 }
+      }
+      <Normal> { 0.999969 -0.000336 -0.002625 }
+    }
+    <Vertex> 5750 {
+      -0.925781726837 0.903709948063 1.43401110172
+      <UV>  {
+        0.651779 0.069145
+        <Tangent> { 0.983937 0.107703 0.142364 }
+        <Binormal> { -0.012052 0.109484 0.000472 }
+      }
+      <Normal> { 0.993469 0.109226 0.032472 }
+    }
+    <Vertex> 5751 {
+      -0.945430755615 0.904367208481 1.19364929199
+      <UV>  {
+        0.648275 0.163810
+        <Tangent> { -1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.020600 -0.135899 }
+      }
+      <Normal> { 0.990478 0.135899 -0.020600 }
+    }
+    <Vertex> 5752 {
+      -1.00633370876 0.212417304516 1.52923333645
+      <UV>  {
+        0.637414 0.092597
+        <Tangent> { -0.894187 0.447065 0.023718 }
+        <Binormal> { -0.069837 -0.145082 0.101762 }
+      }
+      <Normal> { -0.926725 0.349528 -0.137669 }
+    }
+    <Vertex> 5753 {
+      -0.805163741112 0.19499745965 1.53121221066
+      <UV>  {
+        0.673288 0.093084
+        <Tangent> { -0.996069 0.085530 -0.023038 }
+        <Binormal> { -0.000453 -0.014596 -0.034584 }
+      }
+      <Normal> { -0.992065 0.119907 -0.037599 }
+    }
+    <Vertex> 5754 {
+      -0.830359101295 0.177602529526 1.17193055153
+      <UV>  {
+        0.668795 0.158461
+        <Tangent> { 0.000010 -0.457700 0.889106 }
+        <Binormal> { -0.101963 -0.881264 -0.453662 }
+      }
+      <Normal> { -0.991180 0.129307 -0.028413 }
+    }
+    <Vertex> 5755 {
+      -1.04687559605 0.210964486003 1.18173325062
+      <UV>  {
+        0.630185 0.160875
+        <Tangent> { -0.000002 0.946844 0.321694 }
+        <Binormal> { -0.165625 -0.306437 0.901938 }
+      }
+      <Normal> { -0.952574 0.294870 -0.074740 }
+    }
+    <Vertex> 5756 {
+      -1.13007700443 0.368170946836 1.52923333645
+      <UV>  {
+        0.615348 0.092597
+        <Tangent> { -0.619986 0.783715 0.037520 }
+        <Binormal> { -0.212073 -0.166494 -0.026609 }
+      }
+      <Normal> { -0.582171 0.778832 -0.233314 }
+    }
+    <Vertex> 5757 {
+      -1.00633370876 0.212417304516 1.52923333645
+      <UV>  {
+        0.637414 0.092597
+        <Tangent> { -0.894187 0.447065 0.023718 }
+        <Binormal> { -0.069837 -0.145082 0.101762 }
+      }
+      <Normal> { -0.926725 0.349528 -0.137669 }
+    }
+    <Vertex> 5758 {
+      -1.04687559605 0.210964486003 1.18173325062
+      <UV>  {
+        0.630185 0.160875
+        <Tangent> { -0.000002 0.946844 0.321694 }
+        <Binormal> { -0.165625 -0.306437 0.901938 }
+      }
+      <Normal> { -0.952574 0.294870 -0.074740 }
+    }
+    <Vertex> 5759 {
+      -1.19120538235 0.244999676943 1.19364929199
+      <UV>  {
+        0.604447 0.163810
+        <Tangent> { 0.000002 -0.932435 0.361338 }
+        <Binormal> { -0.110928 -0.230596 -0.595053 }
+      }
+      <Normal> { -0.638173 0.750450 -0.171850 }
+    }
+    <Vertex> 5760 {
+      -1.22726786137 0.587606191635 1.52923333645
+      <UV>  {
+        0.598016 0.092597
+        <Tangent> { -0.083302 0.949482 -0.302564 }
+        <Binormal> { 0.082775 -0.036646 -0.137789 }
+      }
+      <Normal> { 0.059755 0.972991 -0.222877 }
+    }
+    <Vertex> 5761 {
+      -1.13007700443 0.368170946836 1.52923333645
+      <UV>  {
+        0.615348 0.092597
+        <Tangent> { -0.619986 0.783715 0.037520 }
+        <Binormal> { -0.212073 -0.166494 -0.026609 }
+      }
+      <Normal> { -0.582171 0.778832 -0.233314 }
+    }
+    <Vertex> 5762 {
+      -1.19120538235 0.244999676943 1.19364929199
+      <UV>  {
+        0.604447 0.163810
+        <Tangent> { 0.000002 -0.932435 0.361338 }
+        <Binormal> { -0.110928 -0.230596 -0.595053 }
+      }
+      <Normal> { -0.638173 0.750450 -0.171850 }
+    }
+    <Vertex> 5763 {
+      -1.30402612686 0.65607303381 1.19364929199
+      <UV>  {
+        0.584328 0.163810
+        <Tangent> { -0.000002 0.759216 -0.650838 }
+        <Binormal> { 0.473972 -0.070831 -0.082627 }
+      }
+      <Normal> { 0.108829 0.971862 -0.208838 }
+    }
+    <Vertex> 5764 {
+      -1.14534759521 0.876408278942 1.43401110172
+      <UV>  {
+        0.612625 0.069145
+        <Tangent> { 0.351529 0.833842 -0.425599 }
+        <Binormal> { 0.201225 -0.306768 -0.434821 }
+      }
+      <Normal> { 0.782220 0.618519 -0.074374 }
+    }
+    <Vertex> 5765 {
+      -1.22726786137 0.587606191635 1.52923333645
+      <UV>  {
+        0.598016 0.092597
+        <Tangent> { -0.083302 0.949482 -0.302564 }
+        <Binormal> { 0.082775 -0.036646 -0.137789 }
+      }
+      <Normal> { 0.059755 0.972991 -0.222877 }
+    }
+    <Vertex> 5766 {
+      -1.30402612686 0.65607303381 1.19364929199
+      <UV>  {
+        0.584328 0.163810
+        <Tangent> { -0.000002 0.759216 -0.650838 }
+        <Binormal> { 0.473972 -0.070831 -0.082627 }
+      }
+      <Normal> { 0.108829 0.971862 -0.208838 }
+    }
+    <Vertex> 5767 {
+      -1.18857944012 0.828676462173 1.19364929199
+      <UV>  {
+        0.604915 0.163810
+        <Tangent> { 0.000011 -1.000000 0.000000 }
+        <Binormal> { 0.101077 0.000001 0.792206 }
+      }
+      <Normal> { 0.792199 0.601764 -0.101077 }
+    }
+    <Vertex> 5768 {
+      -0.925781726837 0.903709948063 1.43401110172
+      <UV>  {
+        0.651779 0.069145
+        <Tangent> { 0.983937 0.107703 0.142364 }
+        <Binormal> { -0.012052 0.109484 0.000472 }
+      }
+      <Normal> { 0.993469 0.109226 0.032472 }
+    }
+    <Vertex> 5769 {
+      -1.14534759521 0.876408278942 1.43401110172
+      <UV>  {
+        0.612625 0.069145
+        <Tangent> { 0.351529 0.833842 -0.425599 }
+        <Binormal> { 0.201225 -0.306768 -0.434821 }
+      }
+      <Normal> { 0.782220 0.618519 -0.074374 }
+    }
+    <Vertex> 5770 {
+      -1.18857944012 0.828676462173 1.19364929199
+      <UV>  {
+        0.604915 0.163810
+        <Tangent> { 0.000011 -1.000000 0.000000 }
+        <Binormal> { 0.101077 0.000001 0.792206 }
+      }
+      <Normal> { 0.792199 0.601764 -0.101077 }
+    }
+    <Vertex> 5771 {
+      -0.945430755615 0.904367208481 1.19364929199
+      <UV>  {
+        0.648275 0.163810
+        <Tangent> { -1.000000 0.000000 0.000000 }
+        <Binormal> { -0.000000 -0.020600 -0.135899 }
+      }
+      <Normal> { 0.990478 0.135899 -0.020600 }
+    }
+    <Vertex> 5772 {
+      -0.795793235302 0.903709948063 1.47659981251
+      <UV>  {
+        0.674475 0.082089
+        <Tangent> { 0.858557 0.000611 -0.512718 }
+        <Binormal> { -0.000174 -0.510449 -0.000899 }
+      }
+      <Normal> { 0.999969 -0.000336 -0.002625 }
+    }
+    <Vertex> 5773 {
+      -0.652492344379 0.904367208481 1.19364929199
+      <UV>  {
+        0.700514 0.163810
+        <Tangent> { 0.934690 0.355343 -0.009253 }
+        <Binormal> { -0.007057 0.006721 -0.454781 }
+      }
+      <Normal> { 0.993896 -0.108707 -0.017029 }
+    }
+    <Vertex> 5774 {
+      -0.672129571438 0.903709948063 1.43401110172
+      <UV>  {
+        0.697012 0.069145
+        <Tangent> { 0.971364 -0.141825 -0.190627 }
+        <Binormal> { -0.025465 -0.220740 0.034471 }
+      }
+      <Normal> { 0.993439 -0.109561 0.032289 }
+    }
+    <Vertex> 5775 {
+      -0.672129571438 0.903709948063 1.43401110172
+      <UV>  {
+        0.697012 0.069145
+        <Tangent> { 0.971364 -0.141825 -0.190627 }
+        <Binormal> { -0.025465 -0.220740 0.034471 }
+      }
+      <Normal> { 0.993439 -0.109561 0.032289 }
+    }
+    <Vertex> 5776 {
+      -0.652492344379 0.904367208481 1.19364929199
+      <UV>  {
+        0.700514 0.163810
+        <Tangent> { 0.934690 0.355343 -0.009253 }
+        <Binormal> { -0.007057 0.006721 -0.454781 }
+      }
+      <Normal> { 0.993896 -0.108707 -0.017029 }
+    }
+    <Vertex> 5777 {
+      -0.409344285727 0.828676402569 1.19364929199
+      <UV>  {
+        0.743874 0.163810
+        <Tangent> { -0.000004 1.000000 0.000000 }
+        <Binormal> { -0.100925 -0.000000 -0.793052 }
+      }
+      <Normal> { 0.793054 -0.600696 -0.100925 }
+    }
+    <Vertex> 5778 {
+      -0.452564358711 0.876408278942 1.43401110172
+      <UV>  {
+        0.736166 0.069145
+        <Tangent> { 0.354668 -0.832992 0.424659 }
+        <Binormal> { 0.324134 0.358846 0.433185 }
+      }
+      <Normal> { 0.782983 -0.617573 -0.074282 }
+    }
+    <Vertex> 5779 {
+      -0.452564358711 0.876408278942 1.43401110172
+      <UV>  {
+        0.736166 0.069145
+        <Tangent> { 0.354668 -0.832992 0.424659 }
+        <Binormal> { 0.324134 0.358846 0.433185 }
+      }
+      <Normal> { 0.782983 -0.617573 -0.074282 }
+    }
+    <Vertex> 5780 {
+      -0.409344285727 0.828676402569 1.19364929199
+      <UV>  {
+        0.743874 0.163810
+        <Tangent> { -0.000004 1.000000 0.000000 }
+        <Binormal> { -0.100925 -0.000000 -0.793052 }
+      }
+      <Normal> { 0.793054 -0.600696 -0.100925 }
+    }
+    <Vertex> 5781 {
+      -0.29316085577 0.656073093414 1.19364929199
+      <UV>  {
+        0.764592 0.163810
+        <Tangent> { 0.406959 -0.547875 0.730902 }
+        <Binormal> { 0.824753 0.164894 -0.335612 }
+      }
+      <Normal> { 0.109256 -0.971770 -0.208960 }
+    }
+    <Vertex> 5782 {
+      -0.369988232851 0.587606191635 1.52923333645
+      <UV>  {
+        0.750892 0.092597
+        <Tangent> { -0.084044 -0.949631 0.301890 }
+        <Binormal> { 0.505571 -0.000627 0.138775 }
+      }
+      <Normal> { 0.060030 -0.972930 -0.223090 }
+    }
+    <Vertex> 5783 {
+      -0.369988232851 0.587606191635 1.52923333645
+      <UV>  {
+        0.750892 0.092597
+        <Tangent> { -0.084044 -0.949631 0.301890 }
+        <Binormal> { 0.505571 -0.000627 0.138775 }
+      }
+      <Normal> { 0.060030 -0.972930 -0.223090 }
+    }
+    <Vertex> 5784 {
+      -0.29316085577 0.656073093414 1.19364929199
+      <UV>  {
+        0.764592 0.163810
+        <Tangent> { 0.406959 -0.547875 0.730902 }
+        <Binormal> { 0.824753 0.164894 -0.335612 }
+      }
+      <Normal> { 0.109256 -0.971770 -0.208960 }
+    }
+    <Vertex> 5785 {
+      -0.406718462706 0.244999691844 1.19364929199
+      <UV>  {
+        0.744342 0.163810
+        <Tangent> { -0.000005 -0.995067 -0.099210 }
+        <Binormal> { 0.096519 0.063382 -0.635719 }
+      }
+      <Normal> { -0.638874 -0.749840 -0.171758 }
+    }
+    <Vertex> 5786 {
+      -0.467810660601 0.368170946836 1.52923333645
+      <UV>  {
+        0.733448 0.092597
+        <Tangent> { -0.621452 -0.782549 -0.037608 }
+        <Binormal> { 0.153263 -0.123033 0.027491 }
+      }
+      <Normal> { -0.582934 -0.778283 -0.233253 }
+    }
+    <Vertex> 5787 {
+      -0.467810660601 0.368170946836 1.52923333645
+      <UV>  {
+        0.733448 0.092597
+        <Tangent> { -0.621452 -0.782549 -0.037608 }
+        <Binormal> { 0.153263 -0.123033 0.027491 }
+      }
+      <Normal> { -0.582934 -0.778283 -0.233253 }
+    }
+    <Vertex> 5788 {
+      -0.406718462706 0.244999691844 1.19364929199
+      <UV>  {
+        0.744342 0.163810
+        <Tangent> { -0.000005 -0.995067 -0.099210 }
+        <Binormal> { 0.096519 0.063382 -0.635719 }
+      }
+      <Normal> { -0.638874 -0.749840 -0.171758 }
+    }
+    <Vertex> 5789 {
+      -0.551048219204 0.210964515805 1.18173325062
+      <UV>  {
+        0.718604 0.160875
+        <Tangent> { 0.000000 -0.971949 -0.235191 }
+        <Binormal> { 0.003293 0.224037 -0.925854 }
+      }
+      <Normal> { -0.952574 -0.294870 -0.074740 }
+    }
+    <Vertex> 5790 {
+      -0.591554045677 0.212417289615 1.52923333645
+      <UV>  {
+        0.711381 0.092597
+        <Tangent> { -0.894187 -0.447064 -0.023718 }
+        <Binormal> { 0.053243 -0.101094 -0.101761 }
+      }
+      <Normal> { -0.926725 -0.349528 -0.137638 }
+    }
+    <Vertex> 5791 {
+      -0.591554045677 0.212417289615 1.52923333645
+      <UV>  {
+        0.711381 0.092597
+        <Tangent> { -0.894187 -0.447064 -0.023718 }
+        <Binormal> { 0.053243 -0.101094 -0.101761 }
+      }
+      <Normal> { -0.926725 -0.349528 -0.137638 }
+    }
+    <Vertex> 5792 {
+      -0.551048219204 0.210964515805 1.18173325062
+      <UV>  {
+        0.718604 0.160875
+        <Tangent> { 0.000000 -0.971949 -0.235191 }
+        <Binormal> { 0.003293 0.224037 -0.925854 }
+      }
+      <Normal> { -0.952574 -0.294870 -0.074740 }
+    }
+    <Vertex> 5793 {
+      -0.767564117908 0.177602604032 1.17193055153
+      <UV>  {
+        0.679994 0.158461
+        <Tangent> { -0.993061 -0.087092 -0.079022 }
+        <Binormal> { -0.007743 0.050109 0.042085 }
+      }
+      <Normal> { -0.991180 -0.129307 -0.028413 }
+    }
+    <Vertex> 5794 {
+      -0.792723953724 0.194997489452 1.53121221066
+      <UV>  {
+        0.675507 0.093084
+        <Tangent> { -0.996069 -0.085530 0.023038 }
+        <Binormal> { 0.005976 -0.060276 0.034584 }
+      }
+      <Normal> { -0.992065 -0.119907 -0.037568 }
+    }
+    <Vertex> 5795 {
+      -0.964792191982 0.412160426378 3.70354008675
+      <UV>  {
+        0.211742 0.485042
+        <Tangent> { 0.195072 0.382376 -0.903181 }
+        <Binormal> { 0.561197 -0.433908 -0.062493 }
+      }
+      <Normal> { 0.278848 0.226234 0.933287 }
+    }
+    <Vertex> 5796 {
+      -0.963128566742 0.462167054415 3.69639062881
+      <UV>  {
+        0.209803 0.515909
+        <Tangent> { 0.205914 0.288612 -0.935042 }
+        <Binormal> { -0.974950 0.035031 -0.203889 }
+      }
+      <Normal> { 0.009339 -0.977081 -0.212531 }
+    }
+    <Vertex> 5797 {
+      -0.962588012218 0.383999526501 3.69290518761
+      <UV>  {
+        0.206384 0.456011
+        <Tangent> { 0.122084 -0.879967 -0.459079 }
+        <Binormal> { -0.515226 -0.418423 0.665022 }
+      }
+      <Normal> { 0.735496 0.145878 0.661611 }
+    }
+    <Vertex> 5798 {
+      -0.967580795288 0.464739769697 3.71699404716
+      <UV>  {
+        0.233690 0.499255
+        <Tangent> { 0.204357 -0.334484 -0.919977 }
+        <Binormal> { -0.065617 -0.149050 0.039616 }
+      }
+      <Normal> { -0.051088 0.277474 0.959349 }
+    }
+    <Vertex> 5799 {
+      -0.963128566742 0.462167054415 3.69639062881
+      <UV>  {
+        0.209803 0.515909
+        <Tangent> { 0.205914 0.288612 -0.935042 }
+        <Binormal> { -0.974950 0.035031 -0.203889 }
+      }
+      <Normal> { 0.009339 -0.977081 -0.212531 }
+    }
+    <Vertex> 5800 {
+      -0.964792191982 0.412160426378 3.70354008675
+      <UV>  {
+        0.211742 0.485042
+        <Tangent> { 0.195072 0.382376 -0.903181 }
+        <Binormal> { 0.561197 -0.433908 -0.062493 }
+      }
+      <Normal> { 0.278848 0.226234 0.933287 }
+    }
+    <Vertex> 5801 {
+      -0.967580795288 0.464739769697 3.71699404716
+      <UV>  {
+        0.233690 0.499255
+        <Tangent> { 0.204357 -0.334484 -0.919977 }
+        <Binormal> { -0.065617 -0.149050 0.039616 }
+      }
+      <Normal> { -0.051088 0.277474 0.959349 }
+    }
+    <Vertex> 5802 {
+      -0.965804696083 0.459960520267 3.70842456818
+      <UV>  {
+        0.221412 0.511372
+        <Tangent> { 0.218335 0.142610 -0.965398 }
+        <Binormal> { 0.760872 0.370650 0.226832 }
+      }
+      <Normal> { -0.495376 0.715354 0.492752 }
+    }
+    <Vertex> 5803 {
+      -0.963128566742 0.462167054415 3.69639062881
+      <UV>  {
+        0.209803 0.515909
+        <Tangent> { 0.205914 0.288612 -0.935042 }
+        <Binormal> { -0.974950 0.035031 -0.203889 }
+      }
+      <Normal> { 0.009339 -0.977081 -0.212531 }
+    }
+    <Vertex> 5804 {
+      -0.965804696083 0.459960520267 3.70842456818
+      <UV>  {
+        0.221412 0.511372
+        <Tangent> { 0.218335 0.142610 -0.965398 }
+        <Binormal> { 0.760872 0.370650 0.226832 }
+      }
+      <Normal> { -0.495376 0.715354 0.492752 }
+    }
+    <Vertex> 5805 {
+      -0.959583103657 0.586828351021 3.67840743065
+      <UV>  {
+        0.206384 0.630424
+        <Tangent> { -0.072779 -0.352383 0.933022 }
+        <Binormal> { -0.506739 -0.236176 -0.128726 }
+      }
+      <Normal> { -0.325327 0.193548 0.925565 }
+    }
+    <Vertex> 5806 {
+      -0.963128566742 0.462167054415 3.69639062881
+      <UV>  {
+        0.209803 0.515909
+        <Tangent> { 0.205914 0.288612 -0.935042 }
+        <Binormal> { -0.974950 0.035031 -0.203889 }
+      }
+      <Normal> { 0.009339 -0.977081 -0.212531 }
+    }
+    <Vertex> 5807 {
+      -0.980877578259 0.73588681221 3.65170836449
+      <UV>  {
+        0.106627 0.482697
+        <Tangent> { 0.322955 0.862606 -0.389371 }
+        <Binormal> { 0.345896 0.099676 0.507715 }
+      }
+      <Normal> { -0.729545 -0.376507 0.570940 }
+    }
+    <Vertex> 5808 {
+      -0.959583103657 0.586828351021 3.67840743065
+      <UV>  {
+        0.126562 0.510330
+        <Tangent> { 0.151144 0.942088 -0.299375 }
+        <Binormal> { 0.929908 -0.042499 0.335741 }
+      }
+      <Normal> { -0.325327 0.193548 0.925565 }
+    }
+    <Vertex> 5809 {
+      -0.952726721764 0.637134134769 3.64532756805
+      <UV>  {
+        0.100504 0.510874
+        <Tangent> { 0.178688 0.881947 -0.436166 }
+        <Binormal> { 0.879602 -0.032982 0.293664 }
+      }
+      <Normal> { -0.178014 0.764824 0.619098 }
+    }
+    <Vertex> 5810 {
+      -0.980877578259 0.73588681221 3.65170836449
+      <UV>  {
+        0.106627 0.482697
+        <Tangent> { 0.322955 0.862606 -0.389371 }
+        <Binormal> { 0.345896 0.099676 0.507715 }
+      }
+      <Normal> { -0.729545 -0.376507 0.570940 }
+    }
+    <Vertex> 5811 {
+      -1.02415037155 0.599487245083 3.65477275848
+      <UV>  {
+        0.143569 0.467275
+        <Tangent> { 0.284786 0.947927 -0.142590 }
+        <Binormal> { 0.556991 -0.147163 0.134113 }
+      }
+      <Normal> { -0.335765 -0.646687 0.684866 }
+    }
+    <Vertex> 5812 {
+      -0.959583103657 0.586828351021 3.67840743065
+      <UV>  {
+        0.126562 0.510330
+        <Tangent> { 0.151144 0.942088 -0.299375 }
+        <Binormal> { 0.929908 -0.042499 0.335741 }
+      }
+      <Normal> { -0.325327 0.193548 0.925565 }
+    }
+    <Vertex> 5813 {
+      -0.980877578259 0.73588681221 3.65170836449
+      <UV>  {
+        0.106627 0.482697
+        <Tangent> { 0.322955 0.862606 -0.389371 }
+        <Binormal> { 0.345896 0.099676 0.507715 }
+      }
+      <Normal> { -0.729545 -0.376507 0.570940 }
+    }
+    <Vertex> 5814 {
+      -1.00427472591 0.69357329607 3.61381483078
+      <UV>  {
+        0.125321 0.449419
+        <Tangent> { 0.769877 0.476242 -0.424833 }
+        <Binormal> { -0.330559 0.441194 -0.104452 }
+      }
+      <Normal> { -0.774926 -0.615040 -0.145451 }
+    }
+    <Vertex> 5815 {
+      -1.02415037155 0.599487245083 3.65477275848
+      <UV>  {
+        0.143569 0.467275
+        <Tangent> { 0.284786 0.947927 -0.142590 }
+        <Binormal> { 0.556991 -0.147163 0.134113 }
+      }
+      <Normal> { -0.335765 -0.646687 0.684866 }
+    }
+    <Vertex> 5816 {
+      -1.02415037155 0.599487245083 3.65477275848
+      <UV>  {
+        0.143569 0.467275
+        <Tangent> { 0.284786 0.947927 -0.142590 }
+        <Binormal> { 0.556991 -0.147163 0.134113 }
+      }
+      <Normal> { -0.335765 -0.646687 0.684866 }
+    }
+    <Vertex> 5817 {
+      -1.00427472591 0.69357329607 3.61381483078
+      <UV>  {
+        0.125321 0.449419
+        <Tangent> { 0.769877 0.476242 -0.424833 }
+        <Binormal> { -0.330559 0.441194 -0.104452 }
+      }
+      <Normal> { -0.774926 -0.615040 -0.145451 }
+    }
+    <Vertex> 5818 {
+      -1.05468857288 0.681957066059 3.58738565445
+      <UV>  {
+        0.147591 0.428733
+        <Tangent> { 0.499162 0.840796 -0.209524 }
+        <Binormal> { 0.218168 -0.042002 0.351207 }
+      }
+      <Normal> { -0.740501 -0.543718 0.394971 }
+    }
+    <Vertex> 5819 {
+      -1.08304440975 0.471715003252 3.62692809105
+      <UV>  {
+        0.168926 0.447105
+        <Tangent> { -0.067483 0.951570 0.299934 }
+        <Binormal> { 0.713102 0.053510 -0.009322 }
+      }
+      <Normal> { 0.072085 -0.878323 0.472549 }
+    }
+    <Vertex> 5820 {
+      -1.02415037155 0.599487245083 3.65477275848
+      <UV>  {
+        0.143569 0.467275
+        <Tangent> { 0.284786 0.947927 -0.142590 }
+        <Binormal> { 0.556991 -0.147163 0.134113 }
+      }
+      <Normal> { -0.335765 -0.646687 0.684866 }
+    }
+    <Vertex> 5821 {
+      -1.09491026402 0.506183505058 3.61213350296
+      <UV>  {
+        0.160037 0.432341
+        <Tangent> { 0.036745 0.968536 0.246145 }
+        <Binormal> { 0.616552 -0.014414 -0.035324 }
+      }
+      <Normal> { 0.001770 -0.914670 0.404126 }
+    }
+    <Vertex> 5822 {
+      -1.02415037155 0.599487245083 3.65477275848
+      <UV>  {
+        0.143569 0.467275
+        <Tangent> { 0.284786 0.947927 -0.142590 }
+        <Binormal> { 0.556991 -0.147163 0.134113 }
+      }
+      <Normal> { -0.335765 -0.646687 0.684866 }
+    }
+    <Vertex> 5823 {
+      -1.05468857288 0.681957066059 3.58738565445
+      <UV>  {
+        0.147591 0.428733
+        <Tangent> { 0.499162 0.840796 -0.209524 }
+        <Binormal> { 0.218168 -0.042002 0.351207 }
+      }
+      <Normal> { -0.740501 -0.543718 0.394971 }
+    }
+    <Vertex> 5824 {
+      -1.09491026402 0.506183505058 3.61213350296
+      <UV>  {
+        0.160037 0.432341
+        <Tangent> { 0.036745 0.968536 0.246145 }
+        <Binormal> { 0.616552 -0.014414 -0.035324 }
+      }
+      <Normal> { 0.001770 -0.914670 0.404126 }
+    }
+    <Vertex> 5825 {
+      -1.06799948215 0.360434889793 3.5243742466
+      <UV>  {
+        0.177029 0.431948
+        <Tangent> { -0.026974 0.806736 0.590297 }
+        <Binormal> { 0.673066 0.136936 -0.156389 }
+      }
+      <Normal> { 0.226142 -0.965667 0.127720 }
+    }
+    <Vertex> 5826 {
+      -1.09491026402 0.506183505058 3.61213350296
+      <UV>  {
+        0.160037 0.432341
+        <Tangent> { 0.036745 0.968536 0.246145 }
+        <Binormal> { 0.616552 -0.014414 -0.035324 }
+      }
+      <Normal> { 0.001770 -0.914670 0.404126 }
+    }
+    <Vertex> 5827 {
+      -1.07922279835 0.468281447887 3.51183009148
+      <UV>  {
+        0.171338 0.422852
+        <Tangent> { -0.155648 0.854525 0.495541 }
+        <Binormal> { 0.394556 0.040043 0.054878 }
+      }
+      <Normal> { 0.115574 -0.987091 -0.110691 }
+    }
+    <Vertex> 5828 {
+      -1.09491026402 0.506183505058 3.61213350296
+      <UV>  {
+        0.160037 0.432341
+        <Tangent> { 0.036745 0.968536 0.246145 }
+        <Binormal> { 0.616552 -0.014414 -0.035324 }
+      }
+      <Normal> { 0.001770 -0.914670 0.404126 }
+    }
+    <Vertex> 5829 {
+      -1.06799948215 0.360434889793 3.5243742466
+      <UV>  {
+        0.177029 0.431948
+        <Tangent> { -0.026974 0.806736 0.590297 }
+        <Binormal> { 0.673066 0.136936 -0.156389 }
+      }
+      <Normal> { 0.226142 -0.965667 0.127720 }
+    }
+    <Vertex> 5830 {
+      -1.08304440975 0.471715003252 3.62692809105
+      <UV>  {
+        0.168926 0.447105
+        <Tangent> { -0.067483 0.951570 0.299934 }
+        <Binormal> { 0.713102 0.053510 -0.009322 }
+      }
+      <Normal> { 0.072085 -0.878323 0.472549 }
+    }
+    <Vertex> 5831 {
+      -1.08221054077 0.455381184816 3.60566711426
+      <UV>  {
+        0.182799 0.442976
+        <Tangent> { -0.121686 -0.989148 -0.082327 }
+        <Binormal> { 0.803045 -0.145463 0.560746 }
+      }
+      <Normal> { 0.549669 -0.140049 -0.823511 }
+    }
+    <Vertex> 5832 {
+      -1.03507113457 0.40360480547 3.61973619461
+      <UV>  {
+        0.191494 0.461505
+        <Tangent> { -0.503842 -0.612272 0.609316 }
+        <Binormal> { 0.529557 0.159991 0.598657 }
+      }
+      <Normal> { 0.755882 -0.269631 -0.596576 }
+    }
+    <Vertex> 5833 {
+      -1.02724683285 0.315504878759 3.65195417404
+      <UV>  {
+        0.186814 0.475295
+        <Tangent> { -0.011500 -0.995014 -0.099069 }
+        <Binormal> { 0.165313 -0.096009 0.945095 }
+      }
+      <Normal> { 0.952940 0.269112 -0.139348 }
+    }
+    <Vertex> 5834 {
+      -1.03507113457 0.40360480547 3.61973619461
+      <UV>  {
+        0.191494 0.461505
+        <Tangent> { -0.503842 -0.612272 0.609316 }
+        <Binormal> { 0.529557 0.159991 0.598657 }
+      }
+      <Normal> { 0.755882 -0.269631 -0.596576 }
+    }
+    <Vertex> 5835 {
+      -0.953047275543 0.358118653297 3.64687371254
+      <UV>  {
+        0.201895 0.505679
+        <Tangent> { -0.476015 0.410196 0.777913 }
+        <Binormal> { 0.483597 0.600646 -0.020803 }
+      }
+      <Normal> { 0.778680 -0.627308 -0.010712 }
+    }
+    <Vertex> 5836 {
+      -0.959780991077 0.374146461487 3.67936205864
+      <UV>  {
+        0.192803 0.506492
+        <Tangent> { -0.302867 -0.744804 0.594591 }
+        <Binormal> { -0.156437 0.592711 0.662765 }
+      }
+      <Normal> { 0.976287 0.212561 0.040345 }
+    }
+    <Vertex> 5837 {
+      -0.959780991077 0.374146461487 3.67936205864
+      <UV>  {
+        0.192803 0.506492
+        <Tangent> { -0.302867 -0.744804 0.594591 }
+        <Binormal> { -0.156437 0.592711 0.662765 }
+      }
+      <Normal> { 0.976287 0.212561 0.040345 }
+    }
+    <Vertex> 5838 {
+      -1.02724683285 0.315504878759 3.65195417404
+      <UV>  {
+        0.186814 0.475295
+        <Tangent> { -0.011500 -0.995014 -0.099069 }
+        <Binormal> { 0.165313 -0.096009 0.945095 }
+      }
+      <Normal> { 0.952940 0.269112 -0.139348 }
+    }
+    <Vertex> 5839 {
+      -1.03507113457 0.40360480547 3.61973619461
+      <UV>  {
+        0.191494 0.461505
+        <Tangent> { -0.503842 -0.612272 0.609316 }
+        <Binormal> { 0.529557 0.159991 0.598657 }
+      }
+      <Normal> { 0.755882 -0.269631 -0.596576 }
+    }
+    <Vertex> 5840 {
+      -1.02724683285 0.315504878759 3.65195417404
+      <UV>  {
+        0.186814 0.475295
+        <Tangent> { -0.011500 -0.995014 -0.099069 }
+        <Binormal> { 0.165313 -0.096009 0.945095 }
+      }
+      <Normal> { 0.952940 0.269112 -0.139348 }
+    }
+    <Vertex> 5841 {
+      -1.06799948215 0.360434889793 3.5243742466
+      <UV>  {
+        0.177029 0.431948
+        <Tangent> { -0.026974 0.806736 0.590297 }
+        <Binormal> { 0.673066 0.136936 -0.156389 }
+      }
+      <Normal> { 0.226142 -0.965667 0.127720 }
+    }
+    <Vertex> 5842 {
+      -1.08221054077 0.455381184816 3.60566711426
+      <UV>  {
+        0.182799 0.442976
+        <Tangent> { -0.121686 -0.989148 -0.082327 }
+        <Binormal> { 0.803045 -0.145463 0.560746 }
+      }
+      <Normal> { 0.549669 -0.140049 -0.823511 }
+    }
+    <Vertex> 5843 {
+      -0.962588012218 0.383999526501 3.69290518761
+      <UV>  {
+        0.206384 0.456011
+        <Tangent> { 0.122084 -0.879967 -0.459079 }
+        <Binormal> { -0.515226 -0.418423 0.665022 }
+      }
+      <Normal> { 0.735496 0.145878 0.661611 }
+    }
+    <Vertex> 5844 {
+      -0.963477313519 0.462167054415 3.69631838799
+      <UV>  {
+        0.199542 0.539441
+        <Tangent> { -0.161994 -0.519464 0.838996 }
+        <Binormal> { -0.923536 0.039149 -0.154077 }
+      }
+      <Normal> { 0.009339 0.981079 0.193304 }
+    }
+    <Vertex> 5845 {
+      -0.964792191982 0.412160426378 3.70354008675
+      <UV>  {
+        0.196853 0.508952
+        <Tangent> { -0.123361 -0.767907 0.628571 }
+        <Binormal> { -0.858881 0.290407 0.186220 }
+      }
+      <Normal> { 0.278848 0.226234 0.933287 }
+    }
+    <Vertex> 5846 {
+      -0.962588012218 0.383999526501 3.69290518761
+      <UV>  {
+        0.188569 0.506845
+        <Tangent> { -0.307237 0.751947 0.583251 }
+        <Binormal> { 0.412412 0.632250 -0.597873 }
+      }
+      <Normal> { 0.735496 0.145878 0.661611 }
+    }
+    <Vertex> 5847 {
+      -1.02724683285 0.315504878759 3.65195417404
+      <UV>  {
+        0.186814 0.475295
+        <Tangent> { -0.011500 -0.995014 -0.099069 }
+        <Binormal> { 0.165313 -0.096009 0.945095 }
+      }
+      <Normal> { 0.952940 0.269112 -0.139348 }
+    }
+    <Vertex> 5848 {
+      -0.959780991077 0.374146461487 3.67936205864
+      <UV>  {
+        0.192803 0.506492
+        <Tangent> { -0.302867 -0.744804 0.594591 }
+        <Binormal> { -0.156437 0.592711 0.662765 }
+      }
+      <Normal> { 0.976287 0.212561 0.040345 }
+    }
+    <Vertex> 5849 {
+      -1.02724683285 0.315504878759 3.65195417404
+      <UV>  {
+        0.186814 0.475295
+        <Tangent> { -0.011500 -0.995014 -0.099069 }
+        <Binormal> { 0.165313 -0.096009 0.945095 }
+      }
+      <Normal> { 0.952940 0.269112 -0.139348 }
+    }
+    <Vertex> 5850 {
+      -0.962588012218 0.383999526501 3.69290518761
+      <UV>  {
+        0.188569 0.506845
+        <Tangent> { -0.307237 0.751947 0.583251 }
+        <Binormal> { 0.412412 0.632250 -0.597873 }
+      }
+      <Normal> { 0.735496 0.145878 0.661611 }
+    }
+    <Vertex> 5851 {
+      -1.04522585869 0.411795854568 3.65984106064
+      <UV>  {
+        0.174900 0.468998
+        <Tangent> { -0.169212 0.943762 0.284043 }
+        <Binormal> { 0.641088 0.162442 -0.157816 }
+      }
+      <Normal> { 0.319163 -0.847438 0.424238 }
+    }
+    <Vertex> 5852 {
+      -0.962588012218 0.383999526501 3.69290518761
+      <UV>  {
+        0.188569 0.506845
+        <Tangent> { -0.307237 0.751947 0.583251 }
+        <Binormal> { 0.412412 0.632250 -0.597873 }
+      }
+      <Normal> { 0.735496 0.145878 0.661611 }
+    }
+    <Vertex> 5853 {
+      -1.01181662083 0.364326119423 3.70028686523
+      <UV>  {
+        0.176241 0.493689
+        <Tangent> { -0.201844 0.942395 0.266739 }
+        <Binormal> { 0.838110 0.306705 -0.449390 }
+      }
+      <Normal> { 0.497482 -0.096286 0.862087 }
+    }
+    <Vertex> 5854 {
+      -1.04522585869 0.411795854568 3.65984106064
+      <UV>  {
+        0.174900 0.468998
+        <Tangent> { -0.169212 0.943762 0.284043 }
+        <Binormal> { 0.641088 0.162442 -0.157816 }
+      }
+      <Normal> { 0.319163 -0.847438 0.424238 }
+    }
+    <Vertex> 5855 {
+      -0.964792191982 0.412160426378 3.70354008675
+      <UV>  {
+        0.176134 0.506723
+        <Tangent> { -0.098750 0.953957 0.283222 }
+        <Binormal> { 0.826241 0.171138 -0.288349 }
+      }
+      <Normal> { 0.278848 0.226234 0.933287 }
+    }
+    <Vertex> 5856 {
+      -1.01181662083 0.364326119423 3.70028686523
+      <UV>  {
+        0.176241 0.493689
+        <Tangent> { -0.201844 0.942395 0.266739 }
+        <Binormal> { 0.838110 0.306705 -0.449390 }
+      }
+      <Normal> { 0.497482 -0.096286 0.862087 }
+    }
+    <Vertex> 5857 {
+      -0.962588012218 0.383999526501 3.69290518761
+      <UV>  {
+        0.188569 0.506845
+        <Tangent> { -0.307237 0.751947 0.583251 }
+        <Binormal> { 0.412412 0.632250 -0.597873 }
+      }
+      <Normal> { 0.735496 0.145878 0.661611 }
+    }
+    <Vertex> 5858 {
+      -1.02724683285 0.315504878759 3.65195417404
+      <UV>  {
+        0.186814 0.475295
+        <Tangent> { -0.011500 -0.995014 -0.099069 }
+        <Binormal> { 0.165313 -0.096009 0.945095 }
+      }
+      <Normal> { 0.952940 0.269112 -0.139348 }
+    }
+    <Vertex> 5859 {
+      -1.04522585869 0.411795854568 3.65984106064
+      <UV>  {
+        0.174900 0.468998
+        <Tangent> { -0.169212 0.943762 0.284043 }
+        <Binormal> { 0.641088 0.162442 -0.157816 }
+      }
+      <Normal> { 0.319163 -0.847438 0.424238 }
+    }
+    <Vertex> 5860 {
+      -1.06799948215 0.360434889793 3.5243742466
+      <UV>  {
+        0.177029 0.431948
+        <Tangent> { -0.026974 0.806736 0.590297 }
+        <Binormal> { 0.673066 0.136936 -0.156389 }
+      }
+      <Normal> { 0.226142 -0.965667 0.127720 }
+    }
+    <Vertex> 5861 {
+      -1.06799948215 0.360434889793 3.5243742466
+      <UV>  {
+        0.177029 0.431948
+        <Tangent> { -0.026974 0.806736 0.590297 }
+        <Binormal> { 0.673066 0.136936 -0.156389 }
+      }
+      <Normal> { 0.226142 -0.965667 0.127720 }
+    }
+    <Vertex> 5862 {
+      -1.04522585869 0.411795854568 3.65984106064
+      <UV>  {
+        0.174900 0.468998
+        <Tangent> { -0.169212 0.943762 0.284043 }
+        <Binormal> { 0.641088 0.162442 -0.157816 }
+      }
+      <Normal> { 0.319163 -0.847438 0.424238 }
+    }
+    <Vertex> 5863 {
+      -1.08304440975 0.471715003252 3.62692809105
+      <UV>  {
+        0.168926 0.447105
+        <Tangent> { -0.067483 0.951570 0.299934 }
+        <Binormal> { 0.713102 0.053510 -0.009322 }
+      }
+      <Normal> { 0.072085 -0.878323 0.472549 }
+    }
+    <Vertex> 5864 {
+      -1.01181662083 0.364326119423 3.70028686523
+      <UV>  {
+        0.176241 0.493689
+        <Tangent> { -0.201844 0.942395 0.266739 }
+        <Binormal> { 0.838110 0.306705 -0.449390 }
+      }
+      <Normal> { 0.497482 -0.096286 0.862087 }
+    }
+    <Vertex> 5865 {
+      -0.967580795288 0.464739769697 3.71699404716
+      <UV>  {
+        0.167931 0.507586
+        <Tangent> { -0.092529 0.989811 0.108222 }
+        <Binormal> { 0.919546 0.083239 0.024893 }
+      }
+      <Normal> { -0.051088 0.277474 0.959349 }
+    }
+    <Vertex> 5866 {
+      -1.01620674133 0.412638217211 3.70839118958
+      <UV>  {
+        0.172868 0.494292
+        <Tangent> { -0.069763 0.991157 0.112879 }
+        <Binormal> { 0.877826 0.068441 -0.058428 }
+      }
+      <Normal> { 0.098453 -0.561235 0.821741 }
+    }
+    <Vertex> 5867 {
+      -0.964792191982 0.412160426378 3.70354008675
+      <UV>  {
+        0.176134 0.506723
+        <Tangent> { -0.098750 0.953957 0.283222 }
+        <Binormal> { 0.826241 0.171138 -0.288349 }
+      }
+      <Normal> { 0.278848 0.226234 0.933287 }
+    }
+    <Vertex> 5868 {
+      -0.967580795288 0.464739769697 3.71699404716
+      <UV>  {
+        0.167931 0.507586
+        <Tangent> { -0.092529 0.989811 0.108222 }
+        <Binormal> { 0.919546 0.083239 0.024893 }
+      }
+      <Normal> { -0.051088 0.277474 0.959349 }
+    }
+    <Vertex> 5869 {
+      -1.01181662083 0.364326119423 3.70028686523
+      <UV>  {
+        0.176241 0.493689
+        <Tangent> { -0.201844 0.942395 0.266739 }
+        <Binormal> { 0.838110 0.306705 -0.449390 }
+      }
+      <Normal> { 0.497482 -0.096286 0.862087 }
+    }
+    <Vertex> 5870 {
+      -0.964792191982 0.412160426378 3.70354008675
+      <UV>  {
+        0.196853 0.508952
+        <Tangent> { -0.123361 -0.767907 0.628571 }
+        <Binormal> { -0.858881 0.290407 0.186220 }
+      }
+      <Normal> { 0.278848 0.226234 0.933287 }
+    }
+    <Vertex> 5871 {
+      -0.963477313519 0.462167054415 3.69631838799
+      <UV>  {
+        0.199542 0.539441
+        <Tangent> { -0.161994 -0.519464 0.838996 }
+        <Binormal> { -0.923536 0.039149 -0.154077 }
+      }
+      <Normal> { 0.009339 0.981079 0.193304 }
+    }
+    <Vertex> 5872 {
+      -0.967580795288 0.464739769697 3.71699404716
+      <UV>  {
+        0.175463 0.524074
+        <Tangent> { -0.181790 0.293762 0.938433 }
+        <Binormal> { 0.021429 0.126458 -0.035434 }
+      }
+      <Normal> { -0.051088 0.277474 0.959349 }
+    }
+    <Vertex> 5873 {
+      -0.963477313519 0.462167054415 3.69631838799
+      <UV>  {
+        0.199542 0.539441
+        <Tangent> { -0.161994 -0.519464 0.838996 }
+        <Binormal> { -0.923536 0.039149 -0.154077 }
+      }
+      <Normal> { 0.009339 0.981079 0.193304 }
+    }
+    <Vertex> 5874 {
+      -0.965804696083 0.459960520267 3.70842456818
+      <UV>  {
+        0.190225 0.536963
+        <Tangent> { -0.185767 -0.119004 0.975361 }
+        <Binormal> { -0.756368 -0.391634 -0.191841 }
+      }
+      <Normal> { -0.495376 0.715354 0.492752 }
+    }
+    <Vertex> 5875 {
+      -0.967580795288 0.464739769697 3.71699404716
+      <UV>  {
+        0.175463 0.524074
+        <Tangent> { -0.181790 0.293762 0.938433 }
+        <Binormal> { 0.021429 0.126458 -0.035434 }
+      }
+      <Normal> { -0.051088 0.277474 0.959349 }
+    }
+    <Vertex> 5876 {
+      -1.01620674133 0.412638217211 3.70839118958
+      <UV>  {
+        0.172868 0.494292
+        <Tangent> { -0.069763 0.991157 0.112879 }
+        <Binormal> { 0.877826 0.068441 -0.058428 }
+      }
+      <Normal> { 0.098453 -0.561235 0.821741 }
+    }
+    <Vertex> 5877 {
+      -1.04522585869 0.411795854568 3.65984106064
+      <UV>  {
+        0.174900 0.468998
+        <Tangent> { -0.169212 0.943762 0.284043 }
+        <Binormal> { 0.641088 0.162442 -0.157816 }
+      }
+      <Normal> { 0.319163 -0.847438 0.424238 }
+    }
+    <Vertex> 5878 {
+      -1.01181662083 0.364326119423 3.70028686523
+      <UV>  {
+        0.176241 0.493689
+        <Tangent> { -0.201844 0.942395 0.266739 }
+        <Binormal> { 0.838110 0.306705 -0.449390 }
+      }
+      <Normal> { 0.497482 -0.096286 0.862087 }
+    }
+    <Vertex> 5879 {
+      -0.963477313519 0.462167054415 3.69631838799
+      <UV>  {
+        0.199542 0.539441
+        <Tangent> { -0.161994 -0.519464 0.838996 }
+        <Binormal> { -0.923536 0.039149 -0.154077 }
+      }
+      <Normal> { 0.009339 0.981079 0.193304 }
+    }
+    <Vertex> 5880 {
+      -0.959583103657 0.586828351021 3.67840743065
+      <UV>  {
+        0.206384 0.630424
+        <Tangent> { -0.072779 -0.352383 0.933022 }
+        <Binormal> { -0.506739 -0.236176 -0.128726 }
+      }
+      <Normal> { -0.325327 0.193548 0.925565 }
+    }
+    <Vertex> 5881 {
+      -0.965804696083 0.459960520267 3.70842456818
+      <UV>  {
+        0.190225 0.536963
+        <Tangent> { -0.185767 -0.119004 0.975361 }
+        <Binormal> { -0.756368 -0.391634 -0.191841 }
+      }
+      <Normal> { -0.495376 0.715354 0.492752 }
+    }
+    <Vertex> 5882 {
+      -0.965804696083 0.459960520267 3.70842456818
+      <UV>  {
+        0.161109 0.508099
+        <Tangent> { -0.007226 0.863042 -0.505081 }
+        <Binormal> { 0.786577 0.253766 0.422361 }
+      }
+      <Normal> { -0.495376 0.715354 0.492752 }
+    }
+    <Vertex> 5883 {
+      -0.959583103657 0.586828351021 3.67840743065
+      <UV>  {
+        0.126562 0.510330
+        <Tangent> { 0.151144 0.942088 -0.299375 }
+        <Binormal> { 0.929908 -0.042499 0.335741 }
+      }
+      <Normal> { -0.325327 0.193548 0.925565 }
+    }
+    <Vertex> 5884 {
+      -1.01487743855 0.52487051487 3.71020483971
+      <UV>  {
+        0.156816 0.493520
+        <Tangent> { 0.131157 0.975903 -0.174387 }
+        <Binormal> { 0.857108 -0.048422 0.373650 }
+      }
+      <Normal> { -0.402264 -0.144261 0.904050 }
+    }
+    <Vertex> 5885 {
+      -0.959583103657 0.586828351021 3.67840743065
+      <UV>  {
+        0.126562 0.510330
+        <Tangent> { 0.151144 0.942088 -0.299375 }
+        <Binormal> { 0.929908 -0.042499 0.335741 }
+      }
+      <Normal> { -0.325327 0.193548 0.925565 }
+    }
+    <Vertex> 5886 {
+      -1.02415037155 0.599487245083 3.65477275848
+      <UV>  {
+        0.143569 0.467275
+        <Tangent> { 0.284786 0.947927 -0.142590 }
+        <Binormal> { 0.556991 -0.147163 0.134113 }
+      }
+      <Normal> { -0.335765 -0.646687 0.684866 }
+    }
+    <Vertex> 5887 {
+      -1.01487743855 0.52487051487 3.71020483971
+      <UV>  {
+        0.156816 0.493520
+        <Tangent> { 0.131157 0.975903 -0.174387 }
+        <Binormal> { 0.857108 -0.048422 0.373650 }
+      }
+      <Normal> { -0.402264 -0.144261 0.904050 }
+    }
+    <Vertex> 5888 {
+      -1.02415037155 0.599487245083 3.65477275848
+      <UV>  {
+        0.143569 0.467275
+        <Tangent> { 0.284786 0.947927 -0.142590 }
+        <Binormal> { 0.556991 -0.147163 0.134113 }
+      }
+      <Normal> { -0.335765 -0.646687 0.684866 }
+    }
+    <Vertex> 5889 {
+      -1.04394853115 0.517404675484 3.6827852726
+      <UV>  {
+        0.159974 0.474314
+        <Tangent> { 0.084719 0.996379 0.007131 }
+        <Binormal> { 0.593865 -0.050709 0.030042 }
+      }
+      <Normal> { -0.098270 -0.801141 0.590289 }
+    }
+    <Vertex> 5890 {
+      -1.01487743855 0.52487051487 3.71020483971
+      <UV>  {
+        0.156816 0.493520
+        <Tangent> { 0.131157 0.975903 -0.174387 }
+        <Binormal> { 0.857108 -0.048422 0.373650 }
+      }
+      <Normal> { -0.402264 -0.144261 0.904050 }
+    }
+    <Vertex> 5891 {
+      -1.02415037155 0.599487245083 3.65477275848
+      <UV>  {
+        0.143569 0.467275
+        <Tangent> { 0.284786 0.947927 -0.142590 }
+        <Binormal> { 0.556991 -0.147163 0.134113 }
+      }
+      <Normal> { -0.335765 -0.646687 0.684866 }
+    }
+    <Vertex> 5892 {
+      -1.08304440975 0.471715003252 3.62692809105
+      <UV>  {
+        0.168926 0.447105
+        <Tangent> { -0.067483 0.951570 0.299934 }
+        <Binormal> { 0.713102 0.053510 -0.009322 }
+      }
+      <Normal> { 0.072085 -0.878323 0.472549 }
+    }
+    <Vertex> 5893 {
+      -1.04394853115 0.517404675484 3.6827852726
+      <UV>  {
+        0.159974 0.474314
+        <Tangent> { 0.084719 0.996379 0.007131 }
+        <Binormal> { 0.593865 -0.050709 0.030042 }
+      }
+      <Normal> { -0.098270 -0.801141 0.590289 }
+    }
+    <Vertex> 5894 {
+      -1.08304440975 0.471715003252 3.62692809105
+      <UV>  {
+        0.168926 0.447105
+        <Tangent> { -0.067483 0.951570 0.299934 }
+        <Binormal> { 0.713102 0.053510 -0.009322 }
+      }
+      <Normal> { 0.072085 -0.878323 0.472549 }
+    }
+    <Vertex> 5895 {
+      -1.04522585869 0.411795854568 3.65984106064
+      <UV>  {
+        0.174900 0.468998
+        <Tangent> { -0.169212 0.943762 0.284043 }
+        <Binormal> { 0.641088 0.162442 -0.157816 }
+      }
+      <Normal> { 0.319163 -0.847438 0.424238 }
+    }
+    <Vertex> 5896 {
+      -1.04394853115 0.517404675484 3.6827852726
+      <UV>  {
+        0.159974 0.474314
+        <Tangent> { 0.084719 0.996379 0.007131 }
+        <Binormal> { 0.593865 -0.050709 0.030042 }
+      }
+      <Normal> { -0.098270 -0.801141 0.590289 }
+    }
+    <Vertex> 5897 {
+      -1.01620674133 0.412638217211 3.70839118958
+      <UV>  {
+        0.172868 0.494292
+        <Tangent> { -0.069763 0.991157 0.112879 }
+        <Binormal> { 0.877826 0.068441 -0.058428 }
+      }
+      <Normal> { 0.098453 -0.561235 0.821741 }
+    }
+    <Vertex> 5898 {
+      -1.04394853115 0.517404675484 3.6827852726
+      <UV>  {
+        0.159974 0.474314
+        <Tangent> { 0.084719 0.996379 0.007131 }
+        <Binormal> { 0.593865 -0.050709 0.030042 }
+      }
+      <Normal> { -0.098270 -0.801141 0.590289 }
+    }
+    <Vertex> 5899 {
+      -1.04522585869 0.411795854568 3.65984106064
+      <UV>  {
+        0.174900 0.468998
+        <Tangent> { -0.169212 0.943762 0.284043 }
+        <Binormal> { 0.641088 0.162442 -0.157816 }
+      }
+      <Normal> { 0.319163 -0.847438 0.424238 }
+    }
+    <Vertex> 5900 {
+      -1.01620674133 0.412638217211 3.70839118958
+      <UV>  {
+        0.172868 0.494292
+        <Tangent> { -0.069763 0.991157 0.112879 }
+        <Binormal> { 0.877826 0.068441 -0.058428 }
+      }
+      <Normal> { 0.098453 -0.561235 0.821741 }
+    }
+    <Vertex> 5901 {
+      -0.967580795288 0.464739769697 3.71699404716
+      <UV>  {
+        0.167931 0.507586
+        <Tangent> { -0.092529 0.989811 0.108222 }
+        <Binormal> { 0.919546 0.083239 0.024893 }
+      }
+      <Normal> { -0.051088 0.277474 0.959349 }
+    }
+    <Vertex> 5902 {
+      -1.01487743855 0.52487051487 3.71020483971
+      <UV>  {
+        0.156816 0.493520
+        <Tangent> { 0.131157 0.975903 -0.174387 }
+        <Binormal> { 0.857108 -0.048422 0.373650 }
+      }
+      <Normal> { -0.402264 -0.144261 0.904050 }
+    }
+    <Vertex> 5903 {
+      -1.04394853115 0.517404675484 3.6827852726
+      <UV>  {
+        0.159974 0.474314
+        <Tangent> { 0.084719 0.996379 0.007131 }
+        <Binormal> { 0.593865 -0.050709 0.030042 }
+      }
+      <Normal> { -0.098270 -0.801141 0.590289 }
+    }
+    <Vertex> 5904 {
+      -1.01620674133 0.412638217211 3.70839118958
+      <UV>  {
+        0.172868 0.494292
+        <Tangent> { -0.069763 0.991157 0.112879 }
+        <Binormal> { 0.877826 0.068441 -0.058428 }
+      }
+      <Normal> { 0.098453 -0.561235 0.821741 }
+    }
+    <Vertex> 5905 {
+      -1.01487743855 0.52487051487 3.71020483971
+      <UV>  {
+        0.156816 0.493520
+        <Tangent> { 0.131157 0.975903 -0.174387 }
+        <Binormal> { 0.857108 -0.048422 0.373650 }
+      }
+      <Normal> { -0.402264 -0.144261 0.904050 }
+    }
+    <Vertex> 5906 {
+      -0.967580795288 0.464739769697 3.71699404716
+      <UV>  {
+        0.167931 0.507586
+        <Tangent> { -0.092529 0.989811 0.108222 }
+        <Binormal> { 0.919546 0.083239 0.024893 }
+      }
+      <Normal> { -0.051088 0.277474 0.959349 }
+    }
+    <Vertex> 5907 {
+      -0.965804696083 0.459960520267 3.70842456818
+      <UV>  {
+        0.161109 0.508099
+        <Tangent> { -0.007226 0.863042 -0.505081 }
+        <Binormal> { 0.786577 0.253766 0.422361 }
+      }
+      <Normal> { -0.495376 0.715354 0.492752 }
+    }
+    <Vertex> 5908 {
+      -1.01487743855 0.52487051487 3.71020483971
+      <UV>  {
+        0.156816 0.493520
+        <Tangent> { 0.131157 0.975903 -0.174387 }
+        <Binormal> { 0.857108 -0.048422 0.373650 }
+      }
+      <Normal> { -0.402264 -0.144261 0.904050 }
+    }
+    <Vertex> 5909 {
+      -0.919438242912 0.765311717987 3.58987641335
+      <UV>  {
+        0.065086 0.511768
+        <Tangent> { 0.403050 0.688682 -0.602716 }
+        <Binormal> { 0.245406 0.394504 0.614882 }
+      }
+      <Normal> { -0.918058 -0.043092 0.394055 }
+    }
+    <Vertex> 5910 {
+      -0.942148864269 0.730465531349 3.58021497726
+      <UV>  {
+        0.079010 0.457726
+        <Tangent> { 0.690948 0.260648 -0.674280 }
+        <Binormal> { -0.539686 0.714498 -0.276832 }
+      }
+      <Normal> { -0.650502 -0.646046 -0.399274 }
+    }
+    <Vertex> 5911 {
+      -0.980877578259 0.73588681221 3.65170836449
+      <UV>  {
+        0.106627 0.482697
+        <Tangent> { 0.322955 0.862606 -0.389371 }
+        <Binormal> { 0.345896 0.099676 0.507715 }
+      }
+      <Normal> { -0.729545 -0.376507 0.570940 }
+    }
+    <Vertex> 5912 {
+      -0.980877578259 0.73588681221 3.65170836449
+      <UV>  {
+        0.106627 0.482697
+        <Tangent> { 0.322955 0.862606 -0.389371 }
+        <Binormal> { 0.345896 0.099676 0.507715 }
+      }
+      <Normal> { -0.729545 -0.376507 0.570940 }
+    }
+    <Vertex> 5913 {
+      -0.952726721764 0.637134134769 3.64532756805
+      <UV>  {
+        0.100504 0.510874
+        <Tangent> { 0.178688 0.881947 -0.436166 }
+        <Binormal> { 0.879602 -0.032982 0.293664 }
+      }
+      <Normal> { -0.178014 0.764824 0.619098 }
+    }
+    <Vertex> 5914 {
+      -0.919438242912 0.765311717987 3.58987641335
+      <UV>  {
+        0.065086 0.511768
+        <Tangent> { 0.403050 0.688682 -0.602716 }
+        <Binormal> { 0.245406 0.394504 0.614882 }
+      }
+      <Normal> { -0.918058 -0.043092 0.394055 }
+    }
+    <Vertex> 5915 {
+      -0.942148864269 0.730465531349 3.58021497726
+      <UV>  {
+        0.079010 0.457726
+        <Tangent> { 0.690948 0.260648 -0.674280 }
+        <Binormal> { -0.539686 0.714498 -0.276832 }
+      }
+      <Normal> { -0.650502 -0.646046 -0.399274 }
+    }
+    <Vertex> 5916 {
+      -0.965546011925 0.688152253628 3.54232120514
+      <UV>  {
+        0.117842 0.428791
+        <Tangent> { 0.809437 0.306163 -0.501075 }
+        <Binormal> { -0.374567 0.667533 -0.197205 }
+      }
+      <Normal> { -0.769890 -0.534837 -0.348094 }
+    }
+    <Vertex> 5917 {
+      -1.00427472591 0.69357329607 3.61381483078
+      <UV>  {
+        0.125321 0.449419
+        <Tangent> { 0.769877 0.476242 -0.424833 }
+        <Binormal> { -0.330559 0.441194 -0.104452 }
+      }
+      <Normal> { -0.774926 -0.615040 -0.145451 }
+    }
+    <Vertex> 5918 {
+      -0.980877578259 0.73588681221 3.65170836449
+      <UV>  {
+        0.106627 0.482697
+        <Tangent> { 0.322955 0.862606 -0.389371 }
+        <Binormal> { 0.345896 0.099676 0.507715 }
+      }
+      <Normal> { -0.729545 -0.376507 0.570940 }
+    }
+    <Vertex> 5919 {
+      -0.942148864269 0.730465531349 3.58021497726
+      <UV>  {
+        0.079010 0.457726
+        <Tangent> { 0.690948 0.260648 -0.674280 }
+        <Binormal> { -0.539686 0.714498 -0.276832 }
+      }
+      <Normal> { -0.650502 -0.646046 -0.399274 }
+    }
+    <Vertex> 5920 {
+      -1.00427472591 0.69357329607 3.61381483078
+      <UV>  {
+        0.125321 0.449419
+        <Tangent> { 0.769877 0.476242 -0.424833 }
+        <Binormal> { -0.330559 0.441194 -0.104452 }
+      }
+      <Normal> { -0.774926 -0.615040 -0.145451 }
+    }
+    <Vertex> 5921 {
+      -1.00427472591 0.69357329607 3.61381483078
+      <UV>  {
+        0.125321 0.449419
+        <Tangent> { 0.769877 0.476242 -0.424833 }
+        <Binormal> { -0.330559 0.441194 -0.104452 }
+      }
+      <Normal> { -0.774926 -0.615040 -0.145451 }
+    }
+    <Vertex> 5922 {
+      -0.965546011925 0.688152253628 3.54232120514
+      <UV>  {
+        0.117842 0.428791
+        <Tangent> { 0.809437 0.306163 -0.501075 }
+        <Binormal> { -0.374567 0.667533 -0.197205 }
+      }
+      <Normal> { -0.769890 -0.534837 -0.348094 }
+    }
+    <Vertex> 5923 {
+      -1.03704082966 0.656402409077 3.55907583237
+      <UV>  {
+        0.144927 0.420628
+        <Tangent> { 0.888200 -0.123555 -0.442533 }
+        <Binormal> { -0.010973 0.812325 -0.248825 }
+      }
+      <Normal> { -0.858577 -0.160710 -0.486801 }
+    }
+    <Vertex> 5924 {
+      -1.00427472591 0.69357329607 3.61381483078
+      <UV>  {
+        0.125321 0.449419
+        <Tangent> { 0.769877 0.476242 -0.424833 }
+        <Binormal> { -0.330559 0.441194 -0.104452 }
+      }
+      <Normal> { -0.774926 -0.615040 -0.145451 }
+    }
+    <Vertex> 5925 {
+      -1.03704082966 0.656402409077 3.55907583237
+      <UV>  {
+        0.144927 0.420628
+        <Tangent> { 0.888200 -0.123555 -0.442533 }
+        <Binormal> { -0.010973 0.812325 -0.248825 }
+      }
+      <Normal> { -0.858577 -0.160710 -0.486801 }
+    }
+    <Vertex> 5926 {
+      -1.05468857288 0.681957066059 3.58738565445
+      <UV>  {
+        0.147591 0.428733
+        <Tangent> { 0.499162 0.840796 -0.209524 }
+        <Binormal> { 0.218168 -0.042002 0.351207 }
+      }
+      <Normal> { -0.740501 -0.543718 0.394971 }
+    }
+    <Vertex> 5927 {
+      -1.04411172867 0.470957279205 3.53533625603
+      <UV>  {
+        0.187934 0.433246
+        <Tangent> { -0.688937 0.108502 0.716655 }
+        <Binormal> { 0.370932 0.153829 0.333295 }
+      }
+      <Normal> { 0.661733 -0.588000 -0.465072 }
+    }
+    <Vertex> 5928 {
+      -0.99697214365 0.419180899858 3.54940533638
+      <UV>  {
+        0.201582 0.453247
+        <Tangent> { -0.619149 0.251002 0.744078 }
+        <Binormal> { 0.384416 0.324114 0.210539 }
+      }
+      <Normal> { 0.707389 -0.626820 -0.326640 }
+    }
+    <Vertex> 5929 {
+      -1.08221054077 0.455381184816 3.60566711426
+      <UV>  {
+        0.182799 0.442976
+        <Tangent> { -0.121686 -0.989148 -0.082327 }
+        <Binormal> { 0.803045 -0.145463 0.560746 }
+      }
+      <Normal> { 0.549669 -0.140049 -0.823511 }
+    }
+    <Vertex> 5930 {
+      -1.03507113457 0.40360480547 3.61973619461
+      <UV>  {
+        0.191494 0.461505
+        <Tangent> { -0.503842 -0.612272 0.609316 }
+        <Binormal> { 0.529557 0.159991 0.598657 }
+      }
+      <Normal> { 0.755882 -0.269631 -0.596576 }
+    }
+    <Vertex> 5931 {
+      -1.08221054077 0.455381184816 3.60566711426
+      <UV>  {
+        0.182799 0.442976
+        <Tangent> { -0.121686 -0.989148 -0.082327 }
+        <Binormal> { 0.803045 -0.145463 0.560746 }
+      }
+      <Normal> { 0.549669 -0.140049 -0.823511 }
+    }
+    <Vertex> 5932 {
+      -0.99697214365 0.419180899858 3.54940533638
+      <UV>  {
+        0.201582 0.453247
+        <Tangent> { -0.619149 0.251002 0.744078 }
+        <Binormal> { 0.384416 0.324114 0.210539 }
+      }
+      <Normal> { 0.707389 -0.626820 -0.326640 }
+    }
+    <Vertex> 5933 {
+      -0.99697214365 0.419180899858 3.54940533638
+      <UV>  {
+        0.201582 0.453247
+        <Tangent> { -0.619149 0.251002 0.744078 }
+        <Binormal> { 0.384416 0.324114 0.210539 }
+      }
+      <Normal> { 0.707389 -0.626820 -0.326640 }
+    }
+    <Vertex> 5934 {
+      -0.953047275543 0.358118653297 3.64687371254
+      <UV>  {
+        0.201895 0.505679
+        <Tangent> { -0.476015 0.410196 0.777913 }
+        <Binormal> { 0.483597 0.600646 -0.020803 }
+      }
+      <Normal> { 0.778680 -0.627308 -0.010712 }
+    }
+    <Vertex> 5935 {
+      -1.03507113457 0.40360480547 3.61973619461
+      <UV>  {
+        0.191494 0.461505
+        <Tangent> { -0.503842 -0.612272 0.609316 }
+        <Binormal> { 0.529557 0.159991 0.598657 }
+      }
+      <Normal> { 0.755882 -0.269631 -0.596576 }
+    }
+    <Vertex> 5936 {
+      -0.99697214365 0.419180899858 3.54940533638
+      <UV>  {
+        0.201582 0.453247
+        <Tangent> { -0.619149 0.251002 0.744078 }
+        <Binormal> { 0.384416 0.324114 0.210539 }
+      }
+      <Normal> { 0.707389 -0.626820 -0.326640 }
+    }
+    <Vertex> 5937 {
+      -0.920819759369 0.296684384346 3.59242653847
+      <UV>  {
+        0.212037 0.504622
+        <Tangent> { -0.375471 0.710564 0.595081 }
+        <Binormal> { 0.558248 0.328519 -0.040040 }
+      }
+      <Normal> { 0.509598 -0.857753 0.067293 }
+    }
+    <Vertex> 5938 {
+      -0.953047275543 0.358118653297 3.64687371254
+      <UV>  {
+        0.201895 0.505679
+        <Tangent> { -0.476015 0.410196 0.777913 }
+        <Binormal> { 0.483597 0.600646 -0.020803 }
+      }
+      <Normal> { 0.778680 -0.627308 -0.010712 }
+    }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 0 1 2 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3 4 5 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 6 7 8 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 9 10 11 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 12 13 14 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 15 16 17 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 18 19 20 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 21 22 23 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 24 25 26 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 27 28 29 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 30 31 32 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 33 34 35 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 36 37 38 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 39 40 41 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 42 43 44 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 45 46 47 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 48 49 50 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 51 52 53 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 54 55 56 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 57 58 59 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 60 61 62 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 63 64 65 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 66 67 68 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 69 70 71 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 72 73 74 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 75 76 77 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 78 79 80 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 81 82 83 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 84 85 86 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 87 88 89 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 90 91 92 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 93 94 95 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 96 97 98 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 99 100 101 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 102 103 104 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 105 106 107 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 108 109 110 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 111 112 113 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 114 115 116 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 117 118 119 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 120 121 122 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 123 124 125 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 126 127 128 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 129 130 131 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 132 133 134 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 135 136 137 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 138 139 140 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 141 142 143 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 144 145 146 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 147 148 149 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 150 151 152 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 153 154 155 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 156 157 158 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 159 160 161 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 162 163 164 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 165 166 167 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 168 169 170 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 171 172 173 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 174 175 176 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 177 178 179 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 180 181 182 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 183 184 185 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 186 187 188 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 189 190 191 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 192 193 194 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 195 196 197 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 198 199 200 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 201 202 203 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 204 205 206 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 207 208 209 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 210 211 212 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 213 214 215 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 216 217 218 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 219 220 221 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 222 223 224 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 225 226 227 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 228 229 230 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 231 232 233 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 234 235 236 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 237 238 239 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 240 241 242 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 243 244 245 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 246 247 248 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 249 250 251 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 252 253 254 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 255 256 257 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 258 259 260 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 261 262 263 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 264 265 266 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 267 268 269 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 270 271 272 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 273 274 275 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 276 277 278 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 279 280 281 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 282 283 284 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 285 286 287 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 288 289 290 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 291 292 293 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 294 295 296 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 297 298 299 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 300 301 302 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 303 304 305 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 306 307 308 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 309 310 311 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 312 313 314 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 315 316 317 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 318 319 320 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 321 322 323 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 324 325 326 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 327 328 329 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 330 331 332 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 333 334 335 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 336 337 338 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 339 340 341 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 342 343 344 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 345 346 347 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 348 349 350 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 351 352 353 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 354 355 356 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 357 358 359 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 360 361 362 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 363 364 365 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 366 367 368 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 369 370 371 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 372 373 374 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 375 376 377 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 378 379 380 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 381 382 383 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 384 385 386 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 387 388 389 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 390 391 392 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 393 394 395 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 396 397 398 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 399 400 401 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 402 403 404 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 405 406 407 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 408 409 410 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 411 412 413 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 414 415 416 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 417 418 419 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 420 421 422 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 423 424 425 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 426 427 428 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 429 430 431 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 432 433 434 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 435 436 437 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 438 439 440 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 441 442 443 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 444 445 446 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 447 448 449 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 450 451 452 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 453 454 455 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 456 457 458 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 459 460 461 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 462 463 464 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 465 466 467 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 468 469 470 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 471 472 473 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 474 475 476 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 477 478 479 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 480 481 482 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 483 484 485 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 486 487 488 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 489 490 491 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 492 493 494 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 495 496 497 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 498 499 500 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 501 502 503 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 504 505 506 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 507 508 509 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 510 511 512 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 513 514 515 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 516 517 518 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 519 520 521 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 522 523 524 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 525 526 527 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 528 529 530 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 531 532 533 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 534 535 536 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 537 538 539 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 540 541 542 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 543 544 545 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 546 547 548 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 549 550 551 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 552 553 554 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 555 556 557 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 558 559 560 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 561 562 563 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 564 565 566 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 567 568 569 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 570 571 572 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 573 574 575 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 576 577 578 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 579 580 581 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 582 583 584 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 585 586 587 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 588 589 590 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 591 592 593 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 594 595 596 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 597 598 599 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 600 601 602 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 603 604 605 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 606 607 608 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 609 610 611 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 612 613 614 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 615 616 617 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 618 619 620 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 621 622 623 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 624 625 626 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 627 628 629 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 630 631 632 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 633 634 635 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 636 637 638 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 639 640 641 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 642 643 644 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 645 646 647 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 648 649 650 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 651 652 653 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 654 655 656 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 657 658 659 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 660 661 662 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 663 664 665 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 666 667 668 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 669 670 671 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 672 673 674 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 675 676 677 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 678 679 680 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 681 682 683 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 684 685 686 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 687 688 689 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 690 691 692 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 693 694 695 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 696 697 698 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 699 700 701 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 702 703 704 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 705 706 707 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 708 709 710 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 711 712 713 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 714 715 716 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 717 718 719 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 720 721 722 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 723 724 725 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 726 727 728 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 729 730 731 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 732 733 734 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 735 736 737 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 738 739 740 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 741 742 743 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 744 745 746 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 747 748 749 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 750 751 752 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 753 754 755 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 756 757 758 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 759 760 761 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 762 763 764 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 765 766 767 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 768 769 770 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 771 772 773 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 774 775 776 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 777 778 779 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 780 781 782 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 783 784 785 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 786 787 788 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 789 790 791 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 792 793 794 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 795 796 797 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 798 799 800 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 801 802 803 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 804 805 806 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 807 808 809 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 810 811 812 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 813 814 815 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 816 817 818 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 819 820 821 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 822 823 824 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 825 826 827 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 828 829 830 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 831 832 833 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 834 835 836 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 837 838 839 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 840 841 842 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 843 844 845 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 846 847 848 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 849 850 851 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 852 853 854 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 855 856 857 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 858 859 860 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 861 862 863 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 864 865 866 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 867 868 869 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 870 871 872 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 873 874 875 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 876 877 878 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 879 880 881 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 882 883 884 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 885 886 887 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 888 889 890 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 891 892 893 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 894 895 896 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 897 898 899 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 900 901 902 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 903 904 905 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 906 907 908 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 909 910 911 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 912 913 914 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 915 916 917 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 918 919 920 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 921 922 923 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 924 925 926 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 927 928 929 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 930 931 932 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 933 934 935 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 936 937 938 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 939 940 941 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 942 943 944 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 945 946 947 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 948 949 950 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 951 952 953 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 954 955 956 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 957 958 959 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 960 961 962 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 963 964 965 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 966 967 968 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 969 970 971 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 972 973 974 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 975 976 977 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 978 979 980 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 981 982 983 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 984 985 986 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 987 988 989 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 990 991 992 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 993 994 995 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 996 997 998 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 999 1000 1001 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1002 1003 1004 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1005 1006 1007 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1008 1009 1010 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1011 1012 1013 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1014 1015 1016 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1017 1018 1019 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1020 1021 1022 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1023 1024 1025 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1026 1027 1028 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1029 1030 1031 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1032 1033 1034 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1035 1036 1037 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1038 1039 1040 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1041 1042 1043 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1044 1045 1046 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1047 1048 1049 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1050 1051 1052 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1053 1054 1055 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1056 1057 1058 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1059 1060 1061 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1062 1063 1064 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1065 1066 1067 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1068 1069 1070 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1071 1072 1073 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1074 1075 1076 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1077 1078 1079 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1080 1081 1082 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1083 1084 1085 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1086 1087 1088 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1089 1090 1091 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1092 1093 1094 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1095 1096 1097 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1098 1099 1100 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1101 1102 1103 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1104 1105 1106 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1107 1108 1109 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1110 1111 1112 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1113 1114 1115 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1116 1117 1118 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1119 1120 1121 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1122 1123 1124 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1125 1126 1127 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1128 1129 1130 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1131 1132 1133 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1134 1135 1136 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1137 1138 1139 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1140 1141 1142 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1143 1144 1145 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1146 1147 1148 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1149 1150 1151 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1152 1153 1154 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1155 1156 1157 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1158 1159 1160 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1161 1162 1163 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1164 1165 1166 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1167 1168 1169 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1170 1171 1172 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1173 1174 1175 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1176 1177 1178 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1179 1180 1181 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1182 1183 1184 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1185 1186 1187 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1188 1189 1190 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1191 1192 1193 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1194 1195 1196 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1197 1198 1199 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1200 1201 1202 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1203 1204 1205 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1206 1207 1208 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1209 1210 1211 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1212 1213 1214 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1215 1216 1217 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1218 1219 1220 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1221 1222 1223 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1224 1225 1226 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1227 1228 1229 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1230 1231 1232 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1233 1234 1235 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1236 1237 1238 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1239 1240 1241 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1242 1243 1244 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1245 1246 1247 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1248 1249 1250 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1251 1252 1253 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1254 1255 1256 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1257 1258 1259 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1260 1261 1262 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1263 1264 1265 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1266 1267 1268 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1269 1270 1271 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1272 1273 1274 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1275 1276 1277 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1278 1279 1280 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1281 1282 1283 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1284 1285 1286 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1287 1288 1289 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1290 1291 1292 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1293 1294 1295 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1296 1297 1298 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1299 1300 1301 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1302 1303 1304 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1305 1306 1307 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1308 1309 1310 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1311 1312 1313 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1314 1315 1316 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1317 1318 1319 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1320 1321 1322 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1323 1324 1325 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1326 1327 1328 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1329 1330 1331 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1332 1333 1334 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1335 1336 1337 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1338 1339 1340 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1341 1342 1343 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1344 1345 1346 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1347 1348 1349 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1350 1351 1352 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1353 1354 1355 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1356 1357 1358 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1359 1360 1361 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1362 1363 1364 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1365 1366 1367 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1368 1369 1370 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1371 1372 1373 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1374 1375 1376 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1377 1378 1379 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1380 1381 1382 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1383 1384 1385 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1386 1387 1388 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1389 1390 1391 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1392 1393 1394 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1395 1396 1397 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1398 1399 1400 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1401 1402 1403 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1404 1405 1406 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1407 1408 1409 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1410 1411 1412 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1413 1414 1415 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1416 1417 1418 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1419 1420 1421 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1422 1423 1424 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1425 1426 1427 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1428 1429 1430 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1431 1432 1433 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1434 1435 1436 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1437 1438 1439 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1440 1441 1442 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1443 1444 1445 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1446 1447 1448 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1449 1450 1451 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1452 1453 1454 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1455 1456 1457 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1458 1459 1460 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1461 1462 1463 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1464 1465 1466 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1467 1468 1469 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1470 1471 1472 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1473 1474 1475 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1476 1477 1478 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1479 1480 1481 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1482 1483 1484 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1485 1486 1487 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1488 1489 1490 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1491 1492 1493 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1494 1495 1496 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1497 1498 1499 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1500 1501 1502 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1503 1504 1505 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1506 1507 1508 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1509 1510 1511 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1512 1513 1514 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1515 1516 1517 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1518 1519 1520 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1521 1522 1523 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1524 1525 1526 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1527 1528 1529 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1530 1531 1532 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1533 1534 1535 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1536 1537 1538 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1539 1540 1541 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1542 1543 1544 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1545 1546 1547 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1548 1549 1550 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1551 1552 1553 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1554 1555 1556 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1557 1558 1559 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1560 1561 1562 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1563 1564 1565 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1566 1567 1568 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1569 1570 1571 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1572 1573 1574 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1575 1576 1577 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1578 1579 1580 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1581 1582 1583 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1584 1585 1586 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1587 1588 1589 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1590 1591 1592 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1593 1594 1595 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1596 1597 1598 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1599 1600 1601 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1602 1603 1604 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1605 1606 1607 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1608 1609 1610 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1611 1612 1613 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1614 1615 1616 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1617 1618 1619 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1620 1621 1622 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1623 1624 1625 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1626 1627 1628 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1629 1630 1631 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1632 1633 1634 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1635 1636 1637 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1638 1639 1640 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1641 1642 1643 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1644 1645 1646 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1647 1648 1649 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1650 1651 1652 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1653 1654 1655 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1656 1657 1658 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1659 1660 1661 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1662 1663 1664 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1665 1666 1667 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1668 1669 1670 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1671 1672 1673 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1674 1675 1676 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1677 1678 1679 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1680 1681 1682 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1683 1684 1685 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1686 1687 1688 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1689 1690 1691 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1692 1693 1694 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1695 1696 1697 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1698 1699 1700 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1701 1702 1703 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1704 1705 1706 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1707 1708 1709 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1710 1711 1712 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1713 1714 1715 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1716 1717 1718 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1719 1720 1721 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1722 1723 1724 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1725 1726 1727 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1728 1729 1730 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1731 1732 1733 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1734 1735 1736 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1737 1738 1739 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1740 1741 1742 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1743 1744 1745 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1746 1747 1748 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1749 1750 1751 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1752 1753 1754 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1755 1756 1757 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1758 1759 1760 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1761 1762 1763 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1764 1765 1766 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1767 1768 1769 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1770 1771 1772 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1773 1774 1775 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1776 1777 1778 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1779 1780 1781 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1782 1783 1784 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1785 1786 1787 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1788 1789 1790 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1791 1792 1793 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1794 1795 1796 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1797 1798 1799 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1800 1801 1802 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1803 1804 1805 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1806 1807 1808 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1809 1810 1811 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1812 1813 1814 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1815 1816 1817 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1818 1819 1820 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1821 1822 1823 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1824 1825 1826 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1827 1828 1829 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1830 1831 1832 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1833 1834 1835 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1836 1837 1838 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1839 1840 1841 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1842 1843 1844 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1845 1846 1847 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1848 1849 1850 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1851 1852 1853 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1854 1855 1856 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1857 1858 1859 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1860 1861 1862 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1863 1864 1865 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1866 1867 1868 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1869 1870 1871 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1872 1873 1874 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1875 1876 1877 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1878 1879 1880 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1881 1882 1883 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1884 1885 1886 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1887 1888 1889 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1890 1891 1892 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1893 1894 1895 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1896 1897 1898 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1899 1900 1901 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1902 1903 1904 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1905 1906 1907 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1908 1909 1910 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1911 1912 1913 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1914 1915 1916 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1917 1918 1919 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1920 1921 1922 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1923 1924 1925 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1926 1927 1928 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1929 1930 1931 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1932 1933 1934 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1935 1936 1937 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1938 1939 1940 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1941 1942 1943 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1944 1945 1946 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1947 1948 1949 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1950 1951 1952 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1953 1954 1955 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1956 1957 1958 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1959 1960 1961 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1962 1963 1964 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1965 1966 1967 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1968 1969 1970 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1971 1972 1973 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1974 1975 1976 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1977 1978 1979 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1980 1981 1982 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1983 1984 1985 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1986 1987 1988 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1989 1990 1991 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1992 1993 1994 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1995 1996 1997 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 1998 1999 2000 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2001 2002 2003 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2004 2005 2006 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2007 2008 2009 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2010 2011 2012 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2013 2014 2015 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2016 2017 2018 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2019 2020 2021 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2022 2023 2024 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2025 2026 2027 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2028 2029 2030 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2031 2032 2033 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2034 2035 2036 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2037 2038 2039 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2040 2041 2042 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2043 2044 2045 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2046 2047 2048 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2049 2050 2051 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2052 2053 2054 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2055 2056 2057 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2058 2059 2060 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2061 2062 2063 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2064 2065 2066 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2067 2068 2069 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2070 2071 2072 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2073 2074 2075 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2076 2077 2078 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2079 2080 2081 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2082 2083 2084 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2085 2086 2087 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2088 2089 2090 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2091 2092 2093 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2094 2095 2096 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2097 2098 2099 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2100 2101 2102 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2103 2104 2105 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2106 2107 2108 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2109 2110 2111 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2112 2113 2114 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2115 2116 2117 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2118 2119 2120 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2121 2122 2123 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2124 2125 2126 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2127 2128 2129 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2130 2131 2132 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2133 2134 2135 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2136 2137 2138 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2139 2140 2141 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2142 2143 2144 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2145 2146 2147 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2148 2149 2150 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2151 2152 2153 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2154 2155 2156 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2157 2158 2159 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2160 2161 2162 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2163 2164 2165 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2166 2167 2168 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2169 2170 2171 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2172 2173 2174 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2175 2176 2177 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2178 2179 2180 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2181 2182 2183 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2184 2185 2186 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2187 2188 2189 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2190 2191 2192 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2193 2194 2195 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2196 2197 2198 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2199 2200 2201 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2202 2203 2204 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2205 2206 2207 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2208 2209 2210 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2211 2212 2213 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2214 2215 2216 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2217 2218 2219 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2220 2221 2222 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2223 2224 2225 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2226 2227 2228 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2229 2230 2231 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2232 2233 2234 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2235 2236 2237 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2238 2239 2240 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2241 2242 2243 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2244 2245 2246 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2247 2248 2249 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2250 2251 2252 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2253 2254 2255 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2256 2257 2258 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2259 2260 2261 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2262 2263 2264 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2265 2266 2267 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2268 2269 2270 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2271 2272 2273 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2274 2275 2276 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2277 2278 2279 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2280 2281 2282 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2283 2284 2285 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2286 2287 2288 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2289 2290 2291 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2292 2293 2294 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2295 2296 2297 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2298 2299 2300 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2301 2302 2303 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2304 2305 2306 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2307 2308 2309 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2310 2311 2312 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2313 2314 2315 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2316 2317 2318 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2319 2320 2321 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2322 2323 2324 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2325 2326 2327 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2328 2329 2330 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2331 2332 2333 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2334 2335 2336 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2337 2338 2339 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2340 2341 2342 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2343 2344 2345 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2346 2347 2348 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2349 2350 2351 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2352 2353 2354 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2355 2356 2357 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2358 2359 2360 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2361 2362 2363 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2364 2365 2366 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2367 2368 2369 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2370 2371 2372 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2373 2374 2375 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2376 2377 2378 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2379 2380 2381 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2382 2383 2384 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2385 2386 2387 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2388 2389 2390 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2391 2392 2393 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2394 2395 2396 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2397 2398 2399 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2400 2401 2402 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2403 2404 2405 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2406 2407 2408 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2409 2410 2411 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2412 2413 2414 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2415 2416 2417 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2418 2419 2420 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2421 2422 2423 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2424 2425 2426 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2427 2428 2429 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2430 2431 2432 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2433 2434 2435 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2436 2437 2438 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2439 2440 2441 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2442 2443 2444 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2445 2446 2447 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2448 2449 2450 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2451 2452 2453 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2454 2455 2456 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2457 2458 2459 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2460 2461 2462 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2463 2464 2465 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2466 2467 2468 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2469 2470 2471 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2472 2473 2474 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2475 2476 2477 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2478 2479 2480 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2481 2482 2483 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2484 2485 2486 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2487 2488 2489 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2490 2491 2492 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2493 2494 2495 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2496 2497 2498 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2499 2500 2501 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2502 2503 2504 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2505 2506 2507 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2508 2509 2510 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2511 2512 2513 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2514 2515 2516 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2517 2518 2519 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2520 2521 2522 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2523 2524 2525 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2526 2527 2528 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2529 2530 2531 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2532 2533 2534 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2535 2536 2537 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2538 2539 2540 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2541 2542 2543 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2544 2545 2546 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2547 2548 2549 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2550 2551 2552 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2553 2554 2555 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2556 2557 2558 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2559 2560 2561 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2562 2563 2564 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2565 2566 2567 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2568 2569 2570 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2571 2572 2573 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2574 2575 2576 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2577 2578 2579 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2580 2581 2582 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2583 2584 2585 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2586 2587 2588 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2589 2590 2591 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2592 2593 2594 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2595 2596 2597 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2598 2599 2600 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2601 2602 2603 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2604 2605 2606 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2607 2608 2609 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2610 2611 2612 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2613 2614 2615 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2616 2617 2618 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2619 2620 2621 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2622 2623 2624 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2625 2626 2627 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2628 2629 2630 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2631 2632 2633 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2634 2635 2636 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2637 2638 2639 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2640 2641 2642 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2643 2644 2645 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2646 2647 2648 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2649 2650 2651 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2652 2653 2654 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2655 2656 2657 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2658 2659 2660 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2661 2662 2663 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2664 2665 2666 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2667 2668 2669 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2670 2671 2672 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2673 2674 2675 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2676 2677 2678 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2679 2680 2681 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2682 2683 2684 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2685 2686 2687 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2688 2689 2690 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2691 2692 2693 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2694 2695 2696 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2697 2698 2699 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2700 2701 2702 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2703 2704 2705 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2706 2707 2708 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2709 2710 2711 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2712 2713 2714 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2715 2716 2717 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2718 2719 2720 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2721 2722 2723 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2724 2725 2726 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2727 2728 2729 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2730 2731 2732 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2733 2734 2735 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2736 2737 2738 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2739 2740 2741 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2742 2743 2744 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2745 2746 2747 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2748 2749 2750 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2751 2752 2753 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2754 2755 2756 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2757 2758 2759 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2760 2761 2762 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2763 2764 2765 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2766 2767 2768 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2769 2770 2771 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2772 2773 2774 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2775 2776 2777 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2778 2779 2780 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2781 2782 2783 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2784 2785 2786 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2787 2788 2789 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2790 2791 2792 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2793 2794 2795 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2796 2797 2798 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2799 2800 2801 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2802 2803 2804 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2805 2806 2807 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2808 2809 2810 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2811 2812 2813 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2814 2815 2816 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2817 2818 2819 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2820 2821 2822 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2823 2824 2825 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2826 2827 2828 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2829 2830 2831 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2832 2833 2834 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2835 2836 2837 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2838 2839 2840 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2841 2842 2843 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2844 2845 2846 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2847 2848 2849 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2850 2851 2852 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2853 2854 2855 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2856 2857 2858 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2859 2860 2861 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2862 2863 2864 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2865 2866 2867 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2868 2869 2870 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2871 2872 2873 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2874 2875 2876 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2877 2878 2879 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2880 2881 2882 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2883 2884 2885 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2886 2887 2888 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2889 2890 2891 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2892 2893 2894 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2895 2896 2897 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2898 2899 2900 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2901 2902 2903 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2904 2905 2906 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2907 2908 2909 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2910 2911 2912 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2913 2914 2915 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2916 2917 2918 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2919 2920 2921 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2922 2923 2924 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2925 2926 2927 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2928 2929 2930 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2931 2932 2933 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2934 2935 2936 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2937 2938 2939 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2940 2941 2942 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2943 2944 2945 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2946 2947 2948 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2949 2950 2951 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2952 2953 2954 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2955 2956 2957 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2958 2959 2960 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2961 2962 2963 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2964 2965 2966 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2967 2968 2969 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2970 2971 2972 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2973 2974 2975 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2976 2977 2978 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2979 2980 2981 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2982 2983 2984 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2985 2986 2987 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2988 2989 2990 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2991 2992 2993 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2994 2995 2996 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 2997 2998 2999 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3000 3001 3002 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3003 3004 3005 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3006 3007 3008 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3009 3010 3011 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3012 3013 3014 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3015 3016 3017 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3018 3019 3020 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3021 3022 3023 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3024 3025 3026 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3027 3028 3029 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3030 3031 3032 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3033 3034 3035 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3036 3037 3038 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3039 3040 3041 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3042 3043 3044 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3045 3046 3047 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3048 3049 3050 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3051 3052 3053 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3054 3055 3056 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3057 3058 3059 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3060 3061 3062 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3063 3064 3065 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3066 3067 3068 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3069 3070 3071 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3072 3073 3074 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3075 3076 3077 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3078 3079 3080 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3081 3082 3083 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3084 3085 3086 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3087 3088 3089 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3090 3091 3092 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3093 3094 3095 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3096 3097 3098 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3099 3100 3101 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3102 3103 3104 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3105 3106 3107 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3108 3109 3110 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3111 3112 3113 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3114 3115 3116 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3117 3118 3119 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3120 3121 3122 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3123 3124 3125 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3126 3127 3128 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3129 3130 3131 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3132 3133 3134 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3135 3136 3137 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3138 3139 3140 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3141 3142 3143 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3144 3145 3146 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3147 3148 3149 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3150 3151 3152 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3153 3154 3155 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3156 3157 3158 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3159 3160 3161 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3162 3163 3164 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3165 3166 3167 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3168 3169 3170 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3171 3172 3173 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3174 3175 3176 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3177 3178 3179 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3180 3181 3182 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3183 3184 3185 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3186 3187 3188 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3189 3190 3191 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3192 3193 3194 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3195 3196 3197 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3198 3199 3200 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3201 3202 3203 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3204 3205 3206 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3207 3208 3209 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3210 3211 3212 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3213 3214 3215 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3216 3217 3218 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3219 3220 3221 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3222 3223 3224 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3225 3226 3227 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3228 3229 3230 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3231 3232 3233 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3234 3235 3236 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3237 3238 3239 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3240 3241 3242 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3243 3244 3245 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3246 3247 3248 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3249 3250 3251 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3252 3253 3254 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3255 3256 3257 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3258 3259 3260 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3261 3262 3263 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3264 3265 3266 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3267 3268 3269 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3270 3271 3272 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3273 3274 3275 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3276 3277 3278 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3279 3280 3281 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3282 3283 3284 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3285 3286 3287 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3288 3289 3290 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3291 3292 3293 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3294 3295 3296 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3297 3298 3299 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3300 3301 3302 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3303 3304 3305 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3306 3307 3308 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3309 3310 3311 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3312 3313 3314 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3315 3316 3317 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3318 3319 3320 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3321 3322 3323 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3324 3325 3326 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3327 3328 3329 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3330 3331 3332 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3333 3334 3335 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3336 3337 3338 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3339 3340 3341 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3342 3343 3344 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3345 3346 3347 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3348 3349 3350 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3351 3352 3353 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3354 3355 3356 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3357 3358 3359 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3360 3361 3362 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3363 3364 3365 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3366 3367 3368 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3369 3370 3371 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3372 3373 3374 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3375 3376 3377 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3378 3379 3380 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3381 3382 3383 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3384 3385 3386 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3387 3388 3389 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3390 3391 3392 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3393 3394 3395 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3396 3397 3398 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3399 3400 3401 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3402 3403 3404 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3405 3406 3407 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3408 3409 3410 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3411 3412 3413 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3414 3415 3416 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3417 3418 3419 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3420 3421 3422 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3423 3424 3425 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3426 3427 3428 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3429 3430 3431 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3432 3433 3434 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3435 3436 3437 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3438 3439 3440 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3441 3442 3443 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3444 3445 3446 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3447 3448 3449 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3450 3451 3452 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3453 3454 3455 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3456 3457 3458 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3459 3460 3461 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3462 3463 3464 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3465 3466 3467 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3468 3469 3470 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3471 3472 3473 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3474 3475 3476 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3477 3478 3479 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3480 3481 3482 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3483 3484 3485 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3486 3487 3488 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3489 3490 3491 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3492 3493 3494 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3495 3496 3497 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3498 3499 3500 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3501 3502 3503 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3504 3505 3506 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3507 3508 3509 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3510 3511 3512 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3513 3514 3515 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3516 3517 3518 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3519 3520 3521 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3522 3523 3524 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3525 3526 3527 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3528 3529 3530 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3531 3532 3533 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3534 3535 3536 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3537 3538 3539 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3540 3541 3542 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3543 3544 3545 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3546 3547 3548 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3549 3550 3551 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3552 3553 3554 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3555 3556 3557 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3558 3559 3560 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3561 3562 3563 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3564 3565 3566 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3567 3568 3569 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3570 3571 3572 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3573 3574 3575 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3576 3577 3578 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3579 3580 3581 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3582 3583 3584 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3585 3586 3587 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3588 3589 3590 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3591 3592 3593 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3594 3595 3596 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3597 3598 3599 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3600 3601 3602 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3603 3604 3605 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3606 3607 3608 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3609 3610 3611 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3612 3613 3614 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3615 3616 3617 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3618 3619 3620 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3621 3622 3623 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3624 3625 3626 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3627 3628 3629 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3630 3631 3632 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3633 3634 3635 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3636 3637 3638 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3639 3640 3641 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3642 3643 3644 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3645 3646 3647 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3648 3649 3650 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3651 3652 3653 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3654 3655 3656 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3657 3658 3659 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3660 3661 3662 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3663 3664 3665 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3666 3667 3668 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3669 3670 3671 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3672 3673 3674 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3675 3676 3677 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3678 3679 3680 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3681 3682 3683 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3684 3685 3686 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3687 3688 3689 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3690 3691 3692 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3693 3694 3695 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3696 3697 3698 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3699 3700 3701 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3702 3703 3704 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3705 3706 3707 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3708 3709 3710 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3711 3712 3713 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3714 3715 3716 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3717 3718 3719 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3720 3721 3722 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3723 3724 3725 3726 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3727 3728 3729 3730 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3731 3732 3733 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3734 3735 3736 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3737 3738 3739 3740 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3741 3742 3743 3744 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3745 3746 3747 3748 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3749 3750 3751 3752 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3753 3754 3755 3756 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3757 3758 3759 3760 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3761 3762 3763 3764 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3765 3766 3767 3768 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3769 3770 3771 3772 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3773 3774 3775 3776 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3777 3778 3779 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3780 3781 3782 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3783 3784 3785 3786 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3787 3788 3789 3790 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3791 3792 3793 3794 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3795 3796 3797 3798 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3799 3800 3801 3802 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3803 3804 3805 3806 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3807 3808 3809 3810 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3811 3812 3813 3814 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3815 3816 3817 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3818 3819 3820 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3821 3822 3823 3824 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3825 3826 3827 3828 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3829 3830 3831 3832 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3833 3834 3835 3836 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3837 3838 3839 3840 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3841 3842 3843 3844 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3845 3846 3847 3848 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3849 3850 3851 3852 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3853 3854 3855 3856 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3857 3858 3859 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3860 3861 3862 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3863 3864 3865 3866 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3867 3868 3869 3870 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3871 3872 3873 3874 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3875 3876 3877 3878 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3879 3880 3881 3882 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3883 3884 3885 3886 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3887 3888 3889 3890 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3891 3892 3893 3894 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3895 3896 3897 3898 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3899 3900 3901 3902 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3903 3904 3905 3906 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3907 3908 3909 3910 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3911 3912 3913 3914 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3915 3916 3917 3918 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3919 3920 3921 3922 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3923 3924 3925 3926 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3927 3928 3929 3930 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3931 3932 3933 3934 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3935 3936 3937 3938 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3939 3940 3941 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3942 3943 3944 3945 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3946 3947 3948 3949 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3950 3951 3952 3953 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3954 3955 3956 3957 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3958 3959 3960 3961 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3962 3963 3964 3965 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3966 3967 3968 3969 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3970 3971 3972 3973 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3974 3975 3976 3977 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3978 3979 3980 3981 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3982 3983 3984 3985 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3986 3987 3988 3989 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3990 3991 3992 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3993 3994 3995 3996 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 3997 3998 3999 4000 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4001 4002 4003 4004 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4005 4006 4007 4008 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4009 4010 4011 4012 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4013 4014 4015 4016 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4017 4018 4019 4020 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4021 4022 4023 4024 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4025 4026 4027 4028 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4029 4030 4031 4032 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4033 4034 4035 4036 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4037 4038 4039 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4040 4041 4042 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4043 4044 4045 4046 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4047 4048 4049 4050 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4051 4052 4053 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4054 4055 4056 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4057 4058 4059 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4060 4061 4062 4063 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4064 4065 4066 4067 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4068 4069 4070 4071 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4072 4073 4074 4075 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4076 4077 4078 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4079 4080 4081 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4082 4083 4084 4085 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4086 4087 4088 4089 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4090 4091 4092 4093 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4094 4095 4096 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4097 4098 4099 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4100 4101 4102 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4103 4104 4105 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4106 4107 4108 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4109 4110 4111 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4112 4113 4114 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4115 4116 4117 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4118 4119 4120 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4121 4122 4123 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4124 4125 4126 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4127 4128 4129 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4130 4131 4132 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4133 4134 4135 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4136 4137 4138 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4139 4140 4141 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4142 4143 4144 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4145 4146 4147 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4148 4149 4150 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4151 4152 4153 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4154 4155 4156 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4157 4158 4159 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4160 4161 4162 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4163 4164 4165 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4166 4167 4168 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4169 4170 4171 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4172 4173 4174 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4175 4176 4177 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4178 4179 4180 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4181 4182 4183 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4184 4185 4186 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4187 4188 4189 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4190 4191 4192 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4193 4194 4195 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4196 4197 4198 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4199 4200 4201 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4202 4203 4204 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4205 4206 4207 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4208 4209 4210 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4211 4212 4213 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4214 4215 4216 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4217 4218 4219 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4220 4221 4222 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4223 4224 4225 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4226 4227 4228 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4229 4230 4231 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4232 4233 4234 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4235 4236 4237 4238 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4239 4240 4241 4242 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4243 4244 4245 4246 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4247 4248 4249 4250 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4251 4252 4253 4254 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4255 4256 4257 4258 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4259 4260 4261 4262 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4263 4264 4265 4266 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4267 4268 4269 4270 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4271 4272 4273 4274 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4275 4276 4277 4278 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4279 4280 4281 4282 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4283 4284 4285 4286 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4287 4288 4289 4290 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4291 4292 4293 4294 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4295 4296 4297 4298 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4299 4300 4301 4302 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4303 4304 4305 4306 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4307 4308 4309 4310 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4311 4312 4313 4314 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4315 4316 4317 4318 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4319 4320 4321 4322 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4323 4324 4325 4326 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4327 4328 4329 4330 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4331 4332 4333 4334 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4335 4336 4337 4338 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4339 4340 4341 4342 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4343 4344 4345 4346 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4347 4348 4349 4350 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4351 4352 4353 4354 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4355 4356 4357 4358 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4359 4360 4361 4362 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4363 4364 4365 4366 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4367 4368 4369 4370 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4371 4372 4373 4374 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4375 4376 4377 4378 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4379 4380 4381 4382 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4383 4384 4385 4386 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4387 4388 4389 4390 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4391 4392 4393 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4394 4395 4396 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4397 4398 4399 4400 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4401 4402 4403 4404 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4405 4406 4407 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4408 4409 4410 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4411 4412 4413 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4414 4415 4416 4417 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4418 4419 4420 4421 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4422 4423 4424 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4425 4426 4427 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4428 4429 4430 4431 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4432 4433 4434 4435 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4436 4437 4438 4439 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4440 4441 4442 4443 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4444 4445 4446 4447 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4448 4449 4450 4451 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4452 4453 4454 4455 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4456 4457 4458 4459 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4460 4461 4462 4463 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4464 4465 4466 4467 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4468 4469 4470 4471 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4472 4473 4474 4475 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4476 4477 4478 4479 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4480 4481 4482 4483 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4484 4485 4486 4487 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4488 4489 4490 4491 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4492 4493 4494 4495 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4496 4497 4498 4499 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4500 4501 4502 4503 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4504 4505 4506 4507 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4508 4509 4510 4511 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4512 4513 4514 4515 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4516 4517 4518 4519 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4520 4521 4522 4523 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4524 4525 4526 4527 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4528 4529 4530 4531 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4532 4533 4534 4535 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4536 4537 4538 4539 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4540 4541 4542 4543 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4544 4545 4546 4547 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4548 4549 4550 4551 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4552 4553 4554 4555 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4556 4557 4558 4559 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4560 4561 4562 4563 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4564 4565 4566 4567 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4568 4569 4570 4571 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4572 4573 4574 4575 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4576 4577 4578 4579 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4580 4581 4582 4583 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4584 4585 4586 4587 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4588 4589 4590 4591 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4592 4593 4594 4595 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4596 4597 4598 4599 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4600 4601 4602 4603 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4604 4605 4606 4607 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4608 4609 4610 4611 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4612 4613 4614 4615 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4616 4617 4618 4619 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4620 4621 4622 4623 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4624 4625 4626 4627 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4628 4629 4630 4631 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4632 4633 4634 4635 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 4636 4637 4638 4639 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 -0.997116 0.075899
+    }
+    <VertexRef> { 4640 4641 4642 4643 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 -0.997116 0.075898
+    }
+    <VertexRef> { 4644 4645 4646 4647 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 -0.997116 0.075898
+    }
+    <VertexRef> { 4648 4649 4650 4651 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000000 -0.997116 0.075898
+    }
+    <VertexRef> { 4652 4653 4654 4655 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 -0.997115 0.075899
+    }
+    <VertexRef> { 4656 4657 4658 4659 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 -0.997116 0.075898
+    }
+    <VertexRef> { 4660 4661 4662 4663 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000000 -0.997116 0.075898
+    }
+    <VertexRef> { 4664 4665 4666 4667 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000001 -0.997115 0.075899
+    }
+    <VertexRef> { 4668 4669 4670 4671 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000001 -0.997116 0.075898
+    }
+    <VertexRef> { 4672 4673 4674 4675 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000001 -0.997116 0.075898
+    }
+    <VertexRef> { 4676 4677 4678 4679 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000001 -0.997115 0.075899
+    }
+    <VertexRef> { 4680 4681 4682 4683 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 -0.997116 0.075898
+    }
+    <VertexRef> { 4684 4685 4686 4687 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000000 -0.997116 0.075898
+    }
+    <VertexRef> { 4688 4689 4690 4691 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000001 -0.997116 0.075899
+    }
+    <VertexRef> { 4692 4693 4694 4695 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000001 -0.997116 0.075898
+    }
+    <VertexRef> { 4696 4697 4698 4699 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000001 -0.997116 0.075898
+    }
+    <VertexRef> { 4700 4701 4702 4703 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000001 -0.997116 0.075899
+    }
+    <VertexRef> { 4704 4705 4706 4707 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 -0.997116 0.075898
+    }
+    <VertexRef> { 4708 4709 4710 4711 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 -0.997116 0.075898
+    }
+    <VertexRef> { 4712 4713 4714 4715 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000000 -0.997115 0.075899
+    }
+    <VertexRef> { 4716 4717 4718 4719 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 -0.997116 0.075897
+    }
+    <VertexRef> { 4720 4721 4722 4723 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000000 -0.997115 0.075899
+    }
+    <VertexRef> { 4724 4725 4726 4727 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000000 -0.997116 0.075898
+    }
+    <VertexRef> { 4728 4729 4730 4731 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 -0.997116 0.075898
+    }
+    <VertexRef> { 4732 4733 4734 4735 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 -0.997116 0.075899
+    }
+    <VertexRef> { 4736 4737 4738 4739 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000001 -0.997115 0.075899
+    }
+    <VertexRef> { 4740 4741 4742 4743 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 -0.997116 0.075898
+    }
+    <VertexRef> { 4744 4745 4746 4747 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000001 -0.997116 0.075898
+    }
+    <VertexRef> { 4748 4749 4750 4751 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 -0.997116 0.075899
+    }
+    <VertexRef> { 4752 4753 4754 4755 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 -0.997115 0.075899
+    }
+    <VertexRef> { 4756 4757 4758 4759 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 -0.997116 0.075899
+    }
+    <VertexRef> { 4760 4761 4762 4763 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000000 -0.997116 0.075898
+    }
+    <VertexRef> { 4764 4765 4766 4767 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.634398 -0.058673 -0.770777
+    }
+    <VertexRef> { 4768 4769 4770 4771 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.471393 -0.066940 -0.879379
+    }
+    <VertexRef> { 4772 4773 4774 4775 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.290270 -0.072634 -0.954184
+    }
+    <VertexRef> { 4776 4777 4778 4779 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.098023 -0.075537 -0.992313
+    }
+    <VertexRef> { 4780 4781 4782 4783 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.098005 -0.075537 -0.992315
+    }
+    <VertexRef> { 4784 4785 4786 4787 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.290286 -0.072634 -0.954179
+    }
+    <VertexRef> { 4788 4789 4790 4791 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.471391 -0.066940 -0.879380
+    }
+    <VertexRef> { 4792 4793 4794 4795 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.634395 -0.058673 -0.770779
+    }
+    <VertexRef> { 4796 4797 4798 4799 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.773009 -0.048152 -0.632564
+    }
+    <VertexRef> { 4800 4801 4802 4803 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.881925 -0.035780 -0.470031
+    }
+    <VertexRef> { 4804 4805 4806 4807 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.956936 -0.022034 -0.289462
+    }
+    <VertexRef> { 4808 4809 4810 4811 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.995185 -0.007439 -0.097730
+    }
+    <VertexRef> { 4812 4813 4814 4815 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.995185 0.007439 0.097732
+    }
+    <VertexRef> { 4816 4817 4818 4819 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.956940 0.022030 0.289449
+    }
+    <VertexRef> { 4820 4821 4822 4823 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.881923 0.035775 0.470035
+    }
+    <VertexRef> { 4824 4825 4826 4827 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.773006 0.048149 0.632569
+    }
+    <VertexRef> { 4828 4829 4830 4831 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.634395 0.058673 0.770779
+    }
+    <VertexRef> { 4832 4833 4834 4835 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.471400 0.066935 0.879376
+    }
+    <VertexRef> { 4836 4837 4838 4839 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.290280 0.072629 0.954182
+    }
+    <VertexRef> { 4840 4841 4842 4843 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.098013 0.075532 0.992315
+    }
+    <VertexRef> { 4844 4845 4846 4847 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.098014 0.075532 0.992315
+    }
+    <VertexRef> { 4848 4849 4850 4851 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.290275 0.072629 0.954183
+    }
+    <VertexRef> { 4852 4853 4854 4855 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.471404 0.066935 0.879373
+    }
+    <VertexRef> { 4856 4857 4858 4859 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.634393 0.058673 0.770781
+    }
+    <VertexRef> { 4860 4861 4862 4863 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.773006 0.048149 0.632569
+    }
+    <VertexRef> { 4864 4865 4866 4867 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.881927 0.035774 0.470027
+    }
+    <VertexRef> { 4868 4869 4870 4871 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.956943 0.022030 0.289440
+    }
+    <VertexRef> { 4872 4873 4874 4875 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.995184 0.007441 0.097744
+    }
+    <VertexRef> { 4876 4877 4878 4879 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.995184 -0.007439 -0.097743
+    }
+    <VertexRef> { 4880 4881 4882 4883 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.956943 -0.022033 -0.289440
+    }
+    <VertexRef> { 4884 4885 4886 4887 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.881927 -0.035779 -0.470027
+    }
+    <VertexRef> { 4888 4889 4890 4891 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.773009 -0.048152 -0.632564
+    }
+    <VertexRef> { 4892 4893 4894 4895 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.634388 0.058673 0.770785
+    }
+    <VertexRef> { 4896 4897 4898 4899 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.471395 0.066939 0.879378
+    }
+    <VertexRef> { 4900 4901 4902 4903 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.290277 0.072634 0.954182
+    }
+    <VertexRef> { 4904 4905 4906 4907 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.098026 0.075537 0.992313
+    }
+    <VertexRef> { 4908 4909 4910 4911 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.098012 0.075537 0.992314
+    }
+    <VertexRef> { 4912 4913 4914 4915 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.290288 0.072634 0.954179
+    }
+    <VertexRef> { 4916 4917 4918 4919 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.471391 0.066935 0.879380
+    }
+    <VertexRef> { 4920 4921 4922 4923 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.634389 0.058670 0.770785
+    }
+    <VertexRef> { 4924 4925 4926 4927 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.773015 0.048148 0.632558
+    }
+    <VertexRef> { 4928 4929 4930 4931 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.881918 0.035778 0.470042
+    }
+    <VertexRef> { 4932 4933 4934 4935 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.956938 0.022034 0.289454
+    }
+    <VertexRef> { 4936 4937 4938 4939 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.995185 -0.007439 -0.097730
+    }
+    <VertexRef> { 4940 4941 4942 4943 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.956939 -0.022032 -0.289453
+    }
+    <VertexRef> { 4944 4945 4946 4947 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.881923 -0.035775 -0.470034
+    }
+    <VertexRef> { 4948 4949 4950 4951 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.773015 -0.048148 -0.632559
+    }
+    <VertexRef> { 4952 4953 4954 4955 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.634384 -0.058674 -0.770788
+    }
+    <VertexRef> { 4956 4957 4958 4959 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.471401 -0.066935 -0.879375
+    }
+    <VertexRef> { 4960 4961 4962 4963 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.290290 -0.072624 -0.954179
+    }
+    <VertexRef> { 4964 4965 4966 4967 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.098019 -0.075532 -0.992314
+    }
+    <VertexRef> { 4968 4969 4970 4971 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.098019 -0.075532 -0.992314
+    }
+    <VertexRef> { 4972 4973 4974 4975 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.290287 -0.072624 -0.954180
+    }
+    <VertexRef> { 4976 4977 4978 4979 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.471401 -0.066935 -0.879375
+    }
+    <VertexRef> { 4980 4981 4982 4983 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.634386 -0.058674 -0.770786
+    }
+    <VertexRef> { 4984 4985 4986 4987 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.773013 -0.048148 -0.632561
+    }
+    <VertexRef> { 4988 4989 4990 4991 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.881925 -0.035775 -0.470031
+    }
+    <VertexRef> { 4992 4993 4994 4995 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.956942 -0.022031 -0.289443
+    }
+    <VertexRef> { 4996 4997 4998 4999 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.995184 -0.007440 -0.097745
+    }
+    <VertexRef> { 5000 5001 5002 5003 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.995184 0.007439 0.097745
+    }
+    <VertexRef> { 5004 5005 5006 5007 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.956942 0.022031 0.289443
+    }
+    <VertexRef> { 5008 5009 5010 5011 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.881926 0.035777 0.470027
+    }
+    <VertexRef> { 5012 5013 5014 5015 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.773013 0.048148 0.632561
+    }
+    <VertexRef> { 5016 5017 5018 5019 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000001 0.997116 -0.075899
+    }
+    <VertexRef> { 5020 5021 5022 5023 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000000 0.997116 -0.075898
+    }
+    <VertexRef> { 5024 5025 5026 5027 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000001 0.997116 -0.075898
+    }
+    <VertexRef> { 5028 5029 5030 5031 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000001 0.997116 -0.075898
+    }
+    <VertexRef> { 5032 5033 5034 5035 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000000 0.997116 -0.075898
+    }
+    <VertexRef> { 5036 5037 5038 5039 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000001 0.997116 -0.075899
+    }
+    <VertexRef> { 5040 5041 5042 5043 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000001 0.997116 -0.075899
+    }
+    <VertexRef> { 5044 5045 5046 5047 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000000 0.997116 -0.075898
+    }
+    <VertexRef> { 5048 5049 5050 5051 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000000 0.997116 -0.075898
+    }
+    <VertexRef> { 5052 5053 5054 5055 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 0.997115 -0.075900
+    }
+    <VertexRef> { 5056 5057 5058 5059 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000001 0.997115 -0.075899
+    }
+    <VertexRef> { 5060 5061 5062 5063 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000000 0.997116 -0.075898
+    }
+    <VertexRef> { 5064 5065 5066 5067 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 0.997116 -0.075898
+    }
+    <VertexRef> { 5068 5069 5070 5071 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000001 0.997116 -0.075898
+    }
+    <VertexRef> { 5072 5073 5074 5075 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000000 0.997115 -0.075900
+    }
+    <VertexRef> { 5076 5077 5078 5079 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 0.997116 -0.075898
+    }
+    <VertexRef> { 5080 5081 5082 5083 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000000 0.997116 -0.075899
+    }
+    <VertexRef> { 5084 5085 5086 5087 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000001 0.997116 -0.075899
+    }
+    <VertexRef> { 5088 5089 5090 5091 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000001 0.997116 -0.075898
+    }
+    <VertexRef> { 5092 5093 5094 5095 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 0.997116 -0.075898
+    }
+    <VertexRef> { 5096 5097 5098 5099 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000000 0.997115 -0.075899
+    }
+    <VertexRef> { 5100 5101 5102 5103 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000000 0.997116 -0.075898
+    }
+    <VertexRef> { 5104 5105 5106 5107 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 0.997116 -0.075898
+    }
+    <VertexRef> { 5108 5109 5110 5111 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000001 0.997116 -0.075899
+    }
+    <VertexRef> { 5112 5113 5114 5115 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000001 0.997116 -0.075897
+    }
+    <VertexRef> { 5116 5117 5118 5119 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000001 0.997116 -0.075898
+    }
+    <VertexRef> { 5120 5121 5122 5123 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 0.997116 -0.075898
+    }
+    <VertexRef> { 5124 5125 5126 5127 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000000 0.997116 -0.075899
+    }
+    <VertexRef> { 5128 5129 5130 5131 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000000 0.997116 -0.075899
+    }
+    <VertexRef> { 5132 5133 5134 5135 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 0.997116 -0.075898
+    }
+    <VertexRef> { 5136 5137 5138 5139 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000000 0.997116 -0.075899
+    }
+    <VertexRef> { 5140 5141 5142 5143 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 0.997116 -0.075898
+    }
+    <VertexRef> { 5144 5145 5146 5147 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 0.997116 -0.075898
+    }
+    <VertexRef> { 5148 5149 5150 5151 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000000 0.997116 -0.075898
+    }
+    <VertexRef> { 5152 5153 5154 5155 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 0.997116 -0.075898
+    }
+    <VertexRef> { 5156 5157 5158 5159 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000000 0.997116 -0.075898
+    }
+    <VertexRef> { 5160 5161 5162 5163 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 0.997116 -0.075898
+    }
+    <VertexRef> { 5164 5165 5166 5167 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000000 0.997116 -0.075898
+    }
+    <VertexRef> { 5168 5169 5170 5171 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000001 0.997116 -0.075898
+    }
+    <VertexRef> { 5172 5173 5174 5175 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000000 0.997116 -0.075897
+    }
+    <VertexRef> { 5176 5177 5178 5179 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000001 0.997116 -0.075899
+    }
+    <VertexRef> { 5180 5181 5182 5183 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000000 0.997116 -0.075898
+    }
+    <VertexRef> { 5184 5185 5186 5187 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 0.997116 -0.075898
+    }
+    <VertexRef> { 5188 5189 5190 5191 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 0.997115 -0.075899
+    }
+    <VertexRef> { 5192 5193 5194 5195 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 0.997116 -0.075898
+    }
+    <VertexRef> { 5196 5197 5198 5199 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 0.997115 -0.075899
+    }
+    <VertexRef> { 5200 5201 5202 5203 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000001 0.997116 -0.075899
+    }
+    <VertexRef> { 5204 5205 5206 5207 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 0.997116 -0.075898
+    }
+    <VertexRef> { 5208 5209 5210 5211 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 0.997116 -0.075898
+    }
+    <VertexRef> { 5212 5213 5214 5215 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000001 0.997115 -0.075899
+    }
+    <VertexRef> { 5216 5217 5218 5219 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000001 0.997115 -0.075898
+    }
+    <VertexRef> { 5220 5221 5222 5223 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 0.997116 -0.075898
+    }
+    <VertexRef> { 5224 5225 5226 5227 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000000 0.997116 -0.075898
+    }
+    <VertexRef> { 5228 5229 5230 5231 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000001 0.997116 -0.075898
+    }
+    <VertexRef> { 5232 5233 5234 5235 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 0.997115 -0.075900
+    }
+    <VertexRef> { 5236 5237 5238 5239 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000000 0.997116 -0.075898
+    }
+    <VertexRef> { 5240 5241 5242 5243 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000000 0.997116 -0.075898
+    }
+    <VertexRef> { 5244 5245 5246 5247 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000001 0.997116 -0.075899
+    }
+    <VertexRef> { 5248 5249 5250 5251 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000000 0.997116 -0.075899
+    }
+    <VertexRef> { 5252 5253 5254 5255 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000000 0.997116 -0.075898
+    }
+    <VertexRef> { 5256 5257 5258 5259 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000000 0.997116 -0.075899
+    }
+    <VertexRef> { 5260 5261 5262 5263 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000001 0.997116 -0.075898
+    }
+    <VertexRef> { 5264 5265 5266 5267 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000001 0.997116 -0.075898
+    }
+    <VertexRef> { 5268 5269 5270 5271 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000001 0.997116 -0.075898
+    }
+    <VertexRef> { 5272 5273 5274 5275 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.773013 0.048148 0.632561
+    }
+    <VertexRef> { 5276 5277 5278 5279 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.881926 0.035777 0.470027
+    }
+    <VertexRef> { 5280 5281 5282 5283 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.956943 0.022031 0.289439
+    }
+    <VertexRef> { 5284 5285 5286 5287 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.995184 -0.007440 -0.097745
+    }
+    <VertexRef> { 5288 5289 5290 5291 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.956943 -0.022031 -0.289439
+    }
+    <VertexRef> { 5292 5293 5294 5295 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.881925 -0.035775 -0.470031
+    }
+    <VertexRef> { 5296 5297 5298 5299 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.773013 -0.048148 -0.632561
+    }
+    <VertexRef> { 5300 5301 5302 5303 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.634386 -0.058674 -0.770786
+    }
+    <VertexRef> { 5304 5305 5306 5307 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.471401 -0.066935 -0.879375
+    }
+    <VertexRef> { 5308 5309 5310 5311 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.290287 -0.072624 -0.954180
+    }
+    <VertexRef> { 5312 5313 5314 5315 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.098019 -0.075532 -0.992314
+    }
+    <VertexRef> { 5316 5317 5318 5319 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.098019 -0.075532 -0.992314
+    }
+    <VertexRef> { 5320 5321 5322 5323 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.290291 -0.072624 -0.954179
+    }
+    <VertexRef> { 5324 5325 5326 5327 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.471400 -0.066935 -0.879376
+    }
+    <VertexRef> { 5328 5329 5330 5331 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.634386 -0.058674 -0.770786
+    }
+    <VertexRef> { 5332 5333 5334 5335 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.773013 -0.048148 -0.632561
+    }
+    <VertexRef> { 5336 5337 5338 5339 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.881923 -0.035775 -0.470034
+    }
+    <VertexRef> { 5340 5341 5342 5343 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.956939 -0.022032 -0.289453
+    }
+    <VertexRef> { 5344 5345 5346 5347 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.995186 -0.007439 -0.097727
+    }
+    <VertexRef> { 5348 5349 5350 5351 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.995186 0.007439 0.097725
+    }
+    <VertexRef> { 5352 5353 5354 5355 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.956937 0.022034 0.289458
+    }
+    <VertexRef> { 5356 5357 5358 5359 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.881920 0.035778 0.470039
+    }
+    <VertexRef> { 5360 5361 5362 5363 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.773015 0.048148 0.632558
+    }
+    <VertexRef> { 5364 5365 5366 5367 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.634389 0.058670 0.770784
+    }
+    <VertexRef> { 5368 5369 5370 5371 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.471391 0.066935 0.879380
+    }
+    <VertexRef> { 5372 5373 5374 5375 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.290288 0.072634 0.954179
+    }
+    <VertexRef> { 5376 5377 5378 5379 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.098011 0.075537 0.992314
+    }
+    <VertexRef> { 5380 5381 5382 5383 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.098026 0.075537 0.992313
+    }
+    <VertexRef> { 5384 5385 5386 5387 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.290278 0.072634 0.954182
+    }
+    <VertexRef> { 5388 5389 5390 5391 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.471394 0.066940 0.879379
+    }
+    <VertexRef> { 5392 5393 5394 5395 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.634388 0.058673 0.770785
+    }
+    <VertexRef> { 5396 5397 5398 5399 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.773009 -0.048152 -0.632564
+    }
+    <VertexRef> { 5400 5401 5402 5403 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.881925 -0.035780 -0.470031
+    }
+    <VertexRef> { 5404 5405 5406 5407 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.956944 -0.022032 -0.289435
+    }
+    <VertexRef> { 5408 5409 5410 5411 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.995184 -0.007440 -0.097745
+    }
+    <VertexRef> { 5412 5413 5414 5415 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.995184 0.007440 0.097746
+    }
+    <VertexRef> { 5416 5417 5418 5419 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.956944 0.022029 0.289436
+    }
+    <VertexRef> { 5420 5421 5422 5423 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.881925 0.035775 0.470031
+    }
+    <VertexRef> { 5424 5425 5426 5427 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.773006 0.048149 0.632569
+    }
+    <VertexRef> { 5428 5429 5430 5431 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.634395 0.058673 0.770779
+    }
+    <VertexRef> { 5432 5433 5434 5435 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.471402 0.066935 0.879374
+    }
+    <VertexRef> { 5436 5437 5438 5439 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.290276 0.072629 0.954183
+    }
+    <VertexRef> { 5440 5441 5442 5443 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.098013 0.075532 0.992315
+    }
+    <VertexRef> { 5444 5445 5446 5447 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.098013 0.075532 0.992315
+    }
+    <VertexRef> { 5448 5449 5450 5451 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.290281 0.072629 0.954181
+    }
+    <VertexRef> { 5452 5453 5454 5455 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.471400 0.066935 0.879376
+    }
+    <VertexRef> { 5456 5457 5458 5459 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.634393 0.058673 0.770781
+    }
+    <VertexRef> { 5460 5461 5462 5463 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.773006 0.048149 0.632569
+    }
+    <VertexRef> { 5464 5465 5466 5467 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.881925 0.035775 0.470031
+    }
+    <VertexRef> { 5468 5469 5470 5471 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.956940 0.022030 0.289449
+    }
+    <VertexRef> { 5472 5473 5474 5475 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.995184 0.007439 0.097737
+    }
+    <VertexRef> { 5476 5477 5478 5479 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.995185 -0.007439 -0.097734
+    }
+    <VertexRef> { 5480 5481 5482 5483 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.956937 -0.022034 -0.289458
+    }
+    <VertexRef> { 5484 5485 5486 5487 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.881923 -0.035780 -0.470034
+    }
+    <VertexRef> { 5488 5489 5490 5491 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.773009 -0.048152 -0.632564
+    }
+    <VertexRef> { 5492 5493 5494 5495 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.634390 -0.058669 -0.770784
+    }
+    <VertexRef> { 5496 5497 5498 5499 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.471400 -0.066935 -0.879376
+    }
+    <VertexRef> { 5500 5501 5502 5503 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.290286 -0.072634 -0.954179
+    }
+    <VertexRef> { 5504 5505 5506 5507 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.098004 -0.075537 -0.992315
+    }
+    <VertexRef> { 5508 5509 5510 5511 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.098023 -0.075537 -0.992313
+    }
+    <VertexRef> { 5512 5513 5514 5515 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.290270 -0.072634 -0.954184
+    }
+    <VertexRef> { 5516 5517 5518 5519 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.471400 -0.066935 -0.879376
+    }
+    <VertexRef> { 5520 5521 5522 5523 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.634392 -0.058669 -0.770782
+    }
+    <VertexRef> { 5524 5525 5526 5527 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000001 -0.997116 0.075898
+    }
+    <VertexRef> { 5528 5529 5530 5531 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000000 -0.997116 0.075898
+    }
+    <VertexRef> { 5532 5533 5534 5535 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 -0.997115 0.075899
+    }
+    <VertexRef> { 5536 5537 5538 5539 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 -0.997116 0.075899
+    }
+    <VertexRef> { 5540 5541 5542 5543 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000001 -0.997116 0.075898
+    }
+    <VertexRef> { 5544 5545 5546 5547 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 -0.997116 0.075898
+    }
+    <VertexRef> { 5548 5549 5550 5551 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000001 -0.997116 0.075898
+    }
+    <VertexRef> { 5552 5553 5554 5555 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000001 -0.997115 0.075899
+    }
+    <VertexRef> { 5556 5557 5558 5559 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 -0.997116 0.075898
+    }
+    <VertexRef> { 5560 5561 5562 5563 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000000 -0.997116 0.075898
+    }
+    <VertexRef> { 5564 5565 5566 5567 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000000 -0.997115 0.075899
+    }
+    <VertexRef> { 5568 5569 5570 5571 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 -0.997116 0.075897
+    }
+    <VertexRef> { 5572 5573 5574 5575 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000000 -0.997115 0.075899
+    }
+    <VertexRef> { 5576 5577 5578 5579 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 -0.997116 0.075898
+    }
+    <VertexRef> { 5580 5581 5582 5583 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 -0.997116 0.075898
+    }
+    <VertexRef> { 5584 5585 5586 5587 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000001 -0.997115 0.075899
+    }
+    <VertexRef> { 5588 5589 5590 5591 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000001 -0.997116 0.075898
+    }
+    <VertexRef> { 5592 5593 5594 5595 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000001 -0.997116 0.075898
+    }
+    <VertexRef> { 5596 5597 5598 5599 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000001 -0.997116 0.075899
+    }
+    <VertexRef> { 5600 5601 5602 5603 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000000 -0.997116 0.075898
+    }
+    <VertexRef> { 5604 5605 5606 5607 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 -0.997116 0.075898
+    }
+    <VertexRef> { 5608 5609 5610 5611 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000001 -0.997115 0.075899
+    }
+    <VertexRef> { 5612 5613 5614 5615 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000001 -0.997116 0.075898
+    }
+    <VertexRef> { 5616 5617 5618 5619 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000001 -0.997116 0.075898
+    }
+    <VertexRef> { 5620 5621 5622 5623 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000001 -0.997116 0.075899
+    }
+    <VertexRef> { 5624 5625 5626 5627 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000000 -0.997116 0.075898
+    }
+    <VertexRef> { 5628 5629 5630 5631 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 -0.997116 0.075898
+    }
+    <VertexRef> { 5632 5633 5634 5635 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 -0.997115 0.075899
+    }
+    <VertexRef> { 5636 5637 5638 5639 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000000 -0.997116 0.075898
+    }
+    <VertexRef> { 5640 5641 5642 5643 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000000 -0.997116 0.075898
+    }
+    <VertexRef> { 5644 5645 5646 5647 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 -0.997116 0.075898
+    }
+    <VertexRef> { 5648 5649 5650 5651 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 -0.997116 0.075899
+    }
+    <VertexRef> { 5652 5653 5654 5655 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000001 -0.997116 0.075898
+    }
+    <VertexRef> { 5656 5657 5658 5659 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.098028 -0.075532 -0.992313
+    }
+    <VertexRef> { 5660 5661 5662 5663 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 0.997116 -0.075898
+    }
+    <VertexRef> { 5664 5665 5666 5667 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.098028 0.075532 0.992313
+    }
+    <VertexRef> { 5668 5669 5670 5671 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.098016 -0.075532 -0.992314
+    }
+    <VertexRef> { 5672 5673 5674 5675 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000000 0.997115 -0.075899
+    }
+    <VertexRef> { 5676 5677 5678 5679 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.098010 0.075537 0.992315
+    }
+    <VertexRef> { 5680 5681 5682 5683 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000000 -0.997116 0.075898
+    }
+    <VertexRef> { 5684 5685 5686 5687 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 -0.997116 0.075898
+    }
+    <VertexRef> { 5688 5689 5690 5691 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000005 -0.075902 -0.997115
+    }
+    <VertexRef> { 5692 5693 5694 5695 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { 0.000005 0.075902 0.997115
+    }
+    <VertexRef> { 5696 5697 5698 5699 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <Normal> { -0.000000 0.997116 -0.075899
+    }
+    <VertexRef> { 5700 5701 5702 5703 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5704 5705 5706 5707 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5708 5709 5710 5711 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5712 5713 5714 5715 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5716 5717 5718 5719 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5720 5721 5722 5723 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5724 5725 5726 5727 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5728 5729 5730 5731 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5732 5733 5734 5735 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5736 5737 5738 5739 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5740 5741 5742 5743 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5744 5745 5746 5747 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5748 5749 5750 5751 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5752 5753 5754 5755 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5756 5757 5758 5759 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5760 5761 5762 5763 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5764 5765 5766 5767 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5768 5769 5770 5771 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5772 5773 5774 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5775 5776 5777 5778 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5779 5780 5781 5782 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5783 5784 5785 5786 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5787 5788 5789 5790 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5791 5792 5793 5794 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5795 5796 5797 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5798 5799 5800 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5801 5802 5803 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5804 5805 5806 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5807 5808 5809 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5810 5811 5812 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5813 5814 5815 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5816 5817 5818 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5819 5820 5821 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5822 5823 5824 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5825 5826 5827 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5828 5829 5830 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5831 5832 5833 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5834 5835 5836 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5837 5838 5839 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5840 5841 5842 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5843 5844 5845 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5846 5847 5848 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5849 5850 5851 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5852 5853 5854 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5855 5856 5857 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5858 5859 5860 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5861 5862 5863 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5864 5865 5866 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5867 5868 5869 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5870 5871 5872 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5873 5874 5875 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5876 5877 5878 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5879 5880 5881 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5882 5883 5884 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5885 5886 5887 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5888 5889 5890 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5891 5892 5893 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5894 5895 5896 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5897 5898 5899 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5900 5901 5902 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5903 5904 5905 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5906 5907 5908 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5909 5910 5911 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5912 5913 5914 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5915 5916 5917 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5918 5919 5920 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5921 5922 5923 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5924 5925 5926 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5927 5928 5929 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5930 5931 5932 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5933 5934 5935 <Ref> { stand_None } }
+  }
+  <Polygon> {
+    <TRef> { Material.001_00_Tex.001 }
+    <MRef> { Material.001 }
+    <VertexRef> { 5936 5937 5938 <Ref> { stand_None } }
+  }
+}
\ No newline at end of file

=== added file 'bunnyexample/data/models/doc_hare.jpg'
Binary files bunnyexample/data/models/doc_hare.jpg	1970-01-01 00:00:00 +0000 and bunnyexample/data/models/doc_hare.jpg	2010-08-26 12:58:47 +0000 differ
=== added file 'bunnyexample/data/models/hase.jpg'
Binary files bunnyexample/data/models/hase.jpg	1970-01-01 00:00:00 +0000 and bunnyexample/data/models/hase.jpg	2010-08-26 12:58:47 +0000 differ
=== added file 'bunnyexample/data/models/rabbit.egg'
--- bunnyexample/data/models/rabbit.egg	1970-01-01 00:00:00 +0000
+++ bunnyexample/data/models/rabbit.egg	2010-08-26 12:58:47 +0000
@@ -0,0 +1,47385 @@
+<CoordinateSystem> { Z-up }
+
+<Comment> { "Egg laid by Chicken for Blender, version R85" }
+
+<Material> Material.001 {
+  <Scalar> diffr {1.0}
+  <Scalar> diffg {1.0}
+  <Scalar> diffb {1.0}
+  <Scalar> specr {0.0878603905439}
+  <Scalar> specg {0.0878603905439}
+  <Scalar> specb {0.0878603905439}
+  <Scalar> shininess {12.5}
+}
+<Texture> Material.001_00_Tex.001 {
+  "./hase.jpg"
+  <Scalar> saved-result { 1 }
+  <Scalar> envtype { MODULATE }
+  <Scalar> minfilter { LINEAR_MIPMAP_LINEAR }
+  <Scalar> magfilter { LINEAR_MIPMAP_LINEAR }
+  <Scalar> wrap { REPEAT }
+}
+<Group> Armature {
+  <DART> { 1 }
+  <Group> stand_None {
+    <VertexPool> stand_None {
+      <Vertex> 0 {
+        0.156737193465 0.860853374004 1.82312560081
+        <UV>  {
+          0.649423 0.795159
+          <Tangent> { 0.965665 0.180272 0.187063 }
+          <Binormal> { 0.076296 -0.373315 -0.034096 }
+        }
+        <Normal> { -0.955870 -0.213752 0.201422 }
+      }
+      <Vertex> 1 {
+        0.156737193465 0.827808439732 1.96710419655
+        <UV>  {
+          0.649350 0.795621
+          <Tangent> { 0.958624 0.284640 -0.004550 }
+          <Binormal> { 0.048190 -0.162223 0.004639 }
+        }
+        <Normal> { -0.945341 -0.275857 0.173711 }
+      }
+      <Vertex> 2 {
+        0.248577296734 0.837095499039 2.04249405861
+        <UV>  {
+          0.648925 0.795825
+          <Tangent> { 0.946851 0.191528 0.258439 }
+          <Binormal> { 0.035273 -0.429389 0.188988 }
+        }
+        <Normal> { -0.982665 0.000824 0.185278 }
+      }
+      <Vertex> 3 {
+        0.248577296734 0.889273703098 1.70570719242
+        <UV>  {
+          0.649330 0.794802
+          <Tangent> { 0.890040 0.111216 0.442108 }
+          <Binormal> { -0.000158 -0.442230 0.111566 }
+        }
+        <Normal> { -0.999969 0.000397 0.000153 }
+      }
+      <Vertex> 4 {
+        0.156737193465 0.878551721573 1.65056669712
+        <UV>  {
+          0.649543 0.794800
+          <Tangent> { 0.934992 0.126979 0.331160 }
+          <Binormal> { 0.025217 -0.278278 0.035506 }
+        }
+        <Normal> { -0.993774 -0.096988 -0.054353 }
+      }
+      <Vertex> 5 {
+        0.156737193465 0.860853374004 1.82312560081
+        <UV>  {
+          0.649423 0.795159
+          <Tangent> { 0.965665 0.180272 0.187063 }
+          <Binormal> { 0.076296 -0.373315 -0.034096 }
+        }
+        <Normal> { -0.955870 -0.213752 0.201422 }
+      }
+      <Vertex> 6 {
+        0.156737193465 0.860853374004 1.82312560081
+        <UV>  {
+          0.649423 0.795159
+          <Tangent> { 0.965665 0.180272 0.187063 }
+          <Binormal> { 0.076296 -0.373315 -0.034096 }
+        }
+        <Normal> { -0.955870 -0.213752 0.201422 }
+      }
+      <Vertex> 7 {
+        0.248577296734 0.870299816132 1.89070272446
+        <UV>  {
+          0.649090 0.795267
+          <Tangent> { 0.935473 0.150576 0.319713 }
+          <Binormal> { 0.023501 -0.463169 0.149377 }
+        }
+        <Normal> { -0.987487 0.000732 0.157628 }
+      }
+      <Vertex> 8 {
+        0.248577296734 0.889273703098 1.70570719242
+        <UV>  {
+          0.649330 0.794802
+          <Tangent> { 0.890040 0.111216 0.442108 }
+          <Binormal> { -0.000158 -0.442230 0.111566 }
+        }
+        <Normal> { -0.999969 0.000397 0.000153 }
+      }
+      <Vertex> 9 {
+        0.248577296734 0.837095499039 2.04249405861
+        <UV>  {
+          0.648925 0.795825
+          <Tangent> { 0.946851 0.191528 0.258439 }
+          <Binormal> { 0.035273 -0.429389 0.188988 }
+        }
+        <Normal> { -0.982665 0.000824 0.185278 }
+      }
+      <Vertex> 10 {
+        0.248577296734 0.870299816132 1.89070272446
+        <UV>  {
+          0.649090 0.795267
+          <Tangent> { 0.935473 0.150576 0.319713 }
+          <Binormal> { 0.023501 -0.463169 0.149377 }
+        }
+        <Normal> { -0.987487 0.000732 0.157628 }
+      }
+      <Vertex> 11 {
+        0.156737193465 0.860853374004 1.82312560081
+        <UV>  {
+          0.649423 0.795159
+          <Tangent> { 0.965665 0.180272 0.187063 }
+          <Binormal> { 0.076296 -0.373315 -0.034096 }
+        }
+        <Normal> { -0.955870 -0.213752 0.201422 }
+      }
+      <Vertex> 12 {
+        0.156737193465 0.860853374004 1.82312560081
+        <UV>  {
+          0.649423 0.795159
+          <Tangent> { 0.965665 0.180272 0.187063 }
+          <Binormal> { 0.076296 -0.373315 -0.034096 }
+        }
+        <Normal> { -0.955870 -0.213752 0.201422 }
+      }
+      <Vertex> 13 {
+        -0.0524541735649 0.837193250656 1.78695416451
+        <UV>  {
+          0.649901 0.795087
+          <Tangent> { 0.806805 0.586348 -0.072538 }
+          <Binormal> { 0.080167 -0.103790 0.052688 }
+        }
+        <Normal> { -0.822047 -0.532121 0.202551 }
+      }
+      <Vertex> 14 {
+        -0.0524541772902 0.772172868252 1.91015005112
+        <UV>  {
+          0.650046 0.795370
+          <Tangent> { 0.691803 0.690915 -0.209870 }
+          <Binormal> { 0.005273 0.015896 0.069711 }
+        }
+        <Normal> { -0.741508 -0.639790 0.201972 }
+      }
+      <Vertex> 15 {
+        0.156737193465 0.860853374004 1.82312560081
+        <UV>  {
+          0.649423 0.795159
+          <Tangent> { 0.965665 0.180272 0.187063 }
+          <Binormal> { 0.076296 -0.373315 -0.034096 }
+        }
+        <Normal> { -0.955870 -0.213752 0.201422 }
+      }
+      <Vertex> 16 {
+        -0.0524541772902 0.772172868252 1.91015005112
+        <UV>  {
+          0.650046 0.795370
+          <Tangent> { 0.691803 0.690915 -0.209870 }
+          <Binormal> { 0.005273 0.015896 0.069711 }
+        }
+        <Normal> { -0.741508 -0.639790 0.201972 }
+      }
+      <Vertex> 17 {
+        0.156737193465 0.827808439732 1.96710419655
+        <UV>  {
+          0.649350 0.795621
+          <Tangent> { 0.958624 0.284640 -0.004550 }
+          <Binormal> { 0.048190 -0.162223 0.004639 }
+        }
+        <Normal> { -0.945341 -0.275857 0.173711 }
+      }
+      <Vertex> 18 {
+        0.156737193465 0.878551721573 1.65056669712
+        <UV>  {
+          0.649543 0.794800
+          <Tangent> { 0.934992 0.126979 0.331160 }
+          <Binormal> { 0.025217 -0.278278 0.035506 }
+        }
+        <Normal> { -0.993774 -0.096988 -0.054353 }
+      }
+      <Vertex> 19 {
+        -0.0524541735649 0.850881814957 1.65349030495
+        <UV>  {
+          0.649874 0.794859
+          <Tangent> { 0.867854 0.496437 0.019474 }
+          <Binormal> { 0.009983 -0.017003 -0.011439 }
+        }
+        <Normal> { -0.862270 -0.506424 0.000244 }
+      }
+      <Vertex> 20 {
+        -0.0524541735649 0.837193250656 1.78695416451
+        <UV>  {
+          0.649901 0.795087
+          <Tangent> { 0.806805 0.586348 -0.072538 }
+          <Binormal> { 0.080167 -0.103790 0.052688 }
+        }
+        <Normal> { -0.822047 -0.532121 0.202551 }
+      }
+      <Vertex> 21 {
+        0.156737193465 0.878551721573 1.65056669712
+        <UV>  {
+          0.649543 0.794800
+          <Tangent> { 0.934992 0.126979 0.331160 }
+          <Binormal> { 0.025217 -0.278278 0.035506 }
+        }
+        <Normal> { -0.993774 -0.096988 -0.054353 }
+      }
+      <Vertex> 22 {
+        -0.0524541735649 0.837193250656 1.78695416451
+        <UV>  {
+          0.649901 0.795087
+          <Tangent> { 0.806805 0.586348 -0.072538 }
+          <Binormal> { 0.080167 -0.103790 0.052688 }
+        }
+        <Normal> { -0.822047 -0.532121 0.202551 }
+      }
+      <Vertex> 23 {
+        0.156737193465 0.860853374004 1.82312560081
+        <UV>  {
+          0.649423 0.795159
+          <Tangent> { 0.965665 0.180272 0.187063 }
+          <Binormal> { 0.076296 -0.373315 -0.034096 }
+        }
+        <Normal> { -0.955870 -0.213752 0.201422 }
+      }
+      <Vertex> 24 {
+        0.156737193465 0.827808439732 1.96710419655
+        <UV>  {
+          0.649350 0.795621
+          <Tangent> { 0.958624 0.284640 -0.004550 }
+          <Binormal> { 0.048190 -0.162223 0.004639 }
+        }
+        <Normal> { -0.945341 -0.275857 0.173711 }
+      }
+      <Vertex> 25 {
+        0.156737193465 0.801260888577 2.13966321945
+        <UV>  {
+          0.649375 0.796439
+          <Tangent> { 0.951074 0.308486 -0.017172 }
+          <Binormal> { 0.064709 -0.200067 -0.010175 }
+        }
+        <Normal> { -0.923154 -0.310129 0.227027 }
+      }
+      <Vertex> 26 {
+        0.248577296734 0.837095499039 2.04249405861
+        <UV>  {
+          0.648925 0.795825
+          <Tangent> { 0.946851 0.191528 0.258439 }
+          <Binormal> { 0.035273 -0.429389 0.188988 }
+        }
+        <Normal> { -0.982665 0.000824 0.185278 }
+      }
+      <Vertex> 27 {
+        0.156737193465 0.801260888577 2.13966321945
+        <UV>  {
+          0.649375 0.796439
+          <Tangent> { 0.951074 0.308486 -0.017172 }
+          <Binormal> { 0.064709 -0.200067 -0.010175 }
+        }
+        <Normal> { -0.923154 -0.310129 0.227027 }
+      }
+      <Vertex> 28 {
+        0.248577296734 0.808634579182 2.22748970985
+        <UV>  {
+          0.648570 0.796917
+          <Tangent> { 0.955544 0.213206 0.203665 }
+          <Binormal> { 0.041821 -0.387908 0.209868 }
+        }
+        <Normal> { -0.980377 0.000885 0.196997 }
+      }
+      <Vertex> 29 {
+        0.248577296734 0.837095499039 2.04249405861
+        <UV>  {
+          0.648925 0.795825
+          <Tangent> { 0.946851 0.191528 0.258439 }
+          <Binormal> { 0.035273 -0.429389 0.188988 }
+        }
+        <Normal> { -0.982665 0.000824 0.185278 }
+      }
+      <Vertex> 30 {
+        0.156737193465 0.827808439732 1.96710419655
+        <UV>  {
+          0.649350 0.795621
+          <Tangent> { 0.958624 0.284640 -0.004550 }
+          <Binormal> { 0.048190 -0.162223 0.004639 }
+        }
+        <Normal> { -0.945341 -0.275857 0.173711 }
+      }
+      <Vertex> 31 {
+        -0.0524541772902 0.772172868252 1.91015005112
+        <UV>  {
+          0.650046 0.795370
+          <Tangent> { 0.691803 0.690915 -0.209870 }
+          <Binormal> { 0.005273 0.015896 0.069711 }
+        }
+        <Normal> { -0.741508 -0.639790 0.201972 }
+      }
+      <Vertex> 32 {
+        -0.0524541772902 0.75163936615 2.04361510277
+        <UV>  {
+          0.650229 0.795781
+          <Tangent> { 0.678928 0.675887 -0.286764 }
+          <Binormal> { -0.079051 0.113637 0.080680 }
+        }
+        <Normal> { -0.757256 -0.635029 0.152470 }
+      }
+      <Vertex> 33 {
+        0.156737193465 0.827808439732 1.96710419655
+        <UV>  {
+          0.649350 0.795621
+          <Tangent> { 0.958624 0.284640 -0.004550 }
+          <Binormal> { 0.048190 -0.162223 0.004639 }
+        }
+        <Normal> { -0.945341 -0.275857 0.173711 }
+      }
+      <Vertex> 34 {
+        -0.0524541772902 0.75163936615 2.04361510277
+        <UV>  {
+          0.650229 0.795781
+          <Tangent> { 0.678928 0.675887 -0.286764 }
+          <Binormal> { -0.079051 0.113637 0.080680 }
+        }
+        <Normal> { -0.757256 -0.635029 0.152470 }
+      }
+      <Vertex> 35 {
+        0.156737193465 0.801260888577 2.13966321945
+        <UV>  {
+          0.649375 0.796439
+          <Tangent> { 0.951074 0.308486 -0.017172 }
+          <Binormal> { 0.064709 -0.200067 -0.010175 }
+        }
+        <Normal> { -0.923154 -0.310129 0.227027 }
+      }
+      <Vertex> 36 {
+        0.136407986283 0.697590112686 2.39519929886
+        <UV>  {
+          0.650546 0.798447
+          <Tangent> { 0.940265 0.240200 -0.241259 }
+          <Binormal> { -0.022642 0.011791 -0.076505 }
+        }
+        <Normal> { -0.921659 -0.316813 0.223945 }
+      }
+      <Vertex> 37 {
+        0.136407986283 0.664598822594 2.5284216404
+        <UV>  {
+          0.651917 0.800182
+          <Tangent> { 0.587049 0.665448 -0.461035 }
+          <Binormal> { 0.102367 0.065831 0.225367 }
+        }
+        <Normal> { -0.747765 -0.463729 0.475112 }
+      }
+      <Vertex> 38 {
+        0.248577296734 0.680560708046 2.64017224312
+        <UV>  {
+          0.646546 0.805109
+          <Tangent> { 0.793784 0.577454 -0.190930 }
+          <Binormal> { 0.153232 -0.025472 0.560017 }
+        }
+        <Normal> { -0.964476 0.003876 0.264077 }
+      }
+      <Vertex> 39 {
+        0.136407986283 0.697590112686 2.39519929886
+        <UV>  {
+          0.650546 0.798447
+          <Tangent> { 0.940265 0.240200 -0.241259 }
+          <Binormal> { -0.022642 0.011791 -0.076505 }
+        }
+        <Normal> { -0.921659 -0.316813 0.223945 }
+      }
+      <Vertex> 40 {
+        0.248577296734 0.761199831963 2.41722893715
+        <UV>  {
+          0.648099 0.798559
+          <Tangent> { 0.909434 0.342338 0.236079 }
+          <Binormal> { 0.103694 -0.501140 0.327248 }
+        }
+        <Normal> { -0.952757 0.001190 0.303720 }
+      }
+      <Vertex> 41 {
+        0.156737193465 0.801260888577 2.13966321945
+        <UV>  {
+          0.649375 0.796439
+          <Tangent> { 0.951074 0.308486 -0.017172 }
+          <Binormal> { 0.064709 -0.200067 -0.010175 }
+        }
+        <Normal> { -0.923154 -0.310129 0.227027 }
+      }
+      <Vertex> 42 {
+        0.156737193465 0.801260888577 2.13966321945
+        <UV>  {
+          0.649375 0.796439
+          <Tangent> { 0.951074 0.308486 -0.017172 }
+          <Binormal> { 0.064709 -0.200067 -0.010175 }
+        }
+        <Normal> { -0.923154 -0.310129 0.227027 }
+      }
+      <Vertex> 43 {
+        0.248577296734 0.761199831963 2.41722893715
+        <UV>  {
+          0.648099 0.798559
+          <Tangent> { 0.909434 0.342338 0.236079 }
+          <Binormal> { 0.103694 -0.501140 0.327248 }
+        }
+        <Normal> { -0.952757 0.001190 0.303720 }
+      }
+      <Vertex> 44 {
+        0.248577296734 0.808634579182 2.22748970985
+        <UV>  {
+          0.648570 0.796917
+          <Tangent> { 0.955544 0.213206 0.203665 }
+          <Binormal> { 0.041821 -0.387908 0.209868 }
+        }
+        <Normal> { -0.980377 0.000885 0.196997 }
+      }
+      <Vertex> 45 {
+        0.136407986283 0.697590112686 2.39519929886
+        <UV>  {
+          0.650546 0.798447
+          <Tangent> { 0.940265 0.240200 -0.241259 }
+          <Binormal> { -0.022642 0.011791 -0.076505 }
+        }
+        <Normal> { -0.921659 -0.316813 0.223945 }
+      }
+      <Vertex> 46 {
+        0.248577296734 0.680560708046 2.64017224312
+        <UV>  {
+          0.646546 0.805109
+          <Tangent> { 0.793784 0.577454 -0.190930 }
+          <Binormal> { 0.153232 -0.025472 0.560017 }
+        }
+        <Normal> { -0.964476 0.003876 0.264077 }
+      }
+      <Vertex> 47 {
+        0.248577296734 0.761199831963 2.41722893715
+        <UV>  {
+          0.648099 0.798559
+          <Tangent> { 0.909434 0.342338 0.236079 }
+          <Binormal> { 0.103694 -0.501140 0.327248 }
+        }
+        <Normal> { -0.952757 0.001190 0.303720 }
+      }
+      <Vertex> 48 {
+        -0.144294291735 0.604476988316 1.87379169464
+        <UV>  {
+          0.650445 0.795094
+          <Tangent> { 0.059913 0.805873 -0.589049 }
+          <Binormal> { -0.570928 0.070188 0.037954 }
+        }
+        <Normal> { -0.120884 -0.992492 0.016999 }
+      }
+      <Vertex> 49 {
+        -0.144294291735 0.599374771118 1.9809384346
+        <UV>  {
+          0.650611 0.795336
+          <Tangent> { -0.030275 0.790662 -0.611504 }
+          <Binormal> { -0.554917 0.024527 0.059186 }
+        }
+        <Normal> { -0.036683 -0.996918 0.069185 }
+      }
+      <Vertex> 50 {
+        -0.0524541772902 0.75163936615 2.04361510277
+        <UV>  {
+          0.650229 0.795781
+          <Tangent> { 0.678928 0.675887 -0.286764 }
+          <Binormal> { -0.079051 0.113637 0.080680 }
+        }
+        <Normal> { -0.757256 -0.635029 0.152470 }
+      }
+      <Vertex> 51 {
+        -0.0524541735649 0.837193250656 1.78695416451
+        <UV>  {
+          0.649901 0.795087
+          <Tangent> { 0.806805 0.586348 -0.072538 }
+          <Binormal> { 0.080167 -0.103790 0.052688 }
+        }
+        <Normal> { -0.822047 -0.532121 0.202551 }
+      }
+      <Vertex> 52 {
+        -0.0524541735649 0.850881814957 1.65349030495
+        <UV>  {
+          0.649874 0.794859
+          <Tangent> { 0.867854 0.496437 0.019474 }
+          <Binormal> { 0.009983 -0.017003 -0.011439 }
+        }
+        <Normal> { -0.862270 -0.506424 0.000244 }
+      }
+      <Vertex> 53 {
+        -0.144294291735 0.61468142271 1.7156226635
+        <UV>  {
+          0.650256 0.794832
+          <Tangent> { -0.075039 0.878583 -0.471658 }
+          <Binormal> { -0.255915 0.037770 0.111071 }
+        }
+        <Normal> { -0.043397 -0.972076 0.230567 }
+      }
+      <Vertex> 54 {
+        -0.0524541772902 0.772172868252 1.91015005112
+        <UV>  {
+          0.650046 0.795370
+          <Tangent> { 0.691803 0.690915 -0.209870 }
+          <Binormal> { 0.005273 0.015896 0.069711 }
+        }
+        <Normal> { -0.741508 -0.639790 0.201972 }
+      }
+      <Vertex> 55 {
+        -0.0524541735649 0.837193250656 1.78695416451
+        <UV>  {
+          0.649901 0.795087
+          <Tangent> { 0.806805 0.586348 -0.072538 }
+          <Binormal> { 0.080167 -0.103790 0.052688 }
+        }
+        <Normal> { -0.822047 -0.532121 0.202551 }
+      }
+      <Vertex> 56 {
+        -0.144294291735 0.61468142271 1.7156226635
+        <UV>  {
+          0.650256 0.794832
+          <Tangent> { -0.075039 0.878583 -0.471658 }
+          <Binormal> { -0.255915 0.037770 0.111071 }
+        }
+        <Normal> { -0.043397 -0.972076 0.230567 }
+      }
+      <Vertex> 57 {
+        -0.0524541772902 0.75163936615 2.04361510277
+        <UV>  {
+          0.650229 0.795781
+          <Tangent> { 0.678928 0.675887 -0.286764 }
+          <Binormal> { -0.079051 0.113637 0.080680 }
+        }
+        <Normal> { -0.757256 -0.635029 0.152470 }
+      }
+      <Vertex> 58 {
+        -0.0524541772902 0.772172868252 1.91015005112
+        <UV>  {
+          0.650046 0.795370
+          <Tangent> { 0.691803 0.690915 -0.209870 }
+          <Binormal> { 0.005273 0.015896 0.069711 }
+        }
+        <Normal> { -0.741508 -0.639790 0.201972 }
+      }
+      <Vertex> 59 {
+        -0.144294291735 0.604476988316 1.87379169464
+        <UV>  {
+          0.650445 0.795094
+          <Tangent> { 0.059913 0.805873 -0.589049 }
+          <Binormal> { -0.570928 0.070188 0.037954 }
+        }
+        <Normal> { -0.120884 -0.992492 0.016999 }
+      }
+      <Vertex> 60 {
+        -0.0524541772902 0.772172868252 1.91015005112
+        <UV>  {
+          0.650046 0.795370
+          <Tangent> { 0.691803 0.690915 -0.209870 }
+          <Binormal> { 0.005273 0.015896 0.069711 }
+        }
+        <Normal> { -0.741508 -0.639790 0.201972 }
+      }
+      <Vertex> 61 {
+        -0.144294291735 0.61468142271 1.7156226635
+        <UV>  {
+          0.650256 0.794832
+          <Tangent> { -0.075039 0.878583 -0.471658 }
+          <Binormal> { -0.255915 0.037770 0.111071 }
+        }
+        <Normal> { -0.043397 -0.972076 0.230567 }
+      }
+      <Vertex> 62 {
+        -0.144294291735 0.604476988316 1.87379169464
+        <UV>  {
+          0.650445 0.795094
+          <Tangent> { 0.059913 0.805873 -0.589049 }
+          <Binormal> { -0.570928 0.070188 0.037954 }
+        }
+        <Normal> { -0.120884 -0.992492 0.016999 }
+      }
+      <Vertex> 63 {
+        -0.0524541921914 0.428092598915 1.83828532696
+        <UV>  {
+          0.650699 0.794697
+          <Tangent> { -0.306493 0.641532 -0.703206 }
+          <Binormal> { -0.590175 -0.386295 -0.095186 }
+        }
+        <Normal> { 0.547990 -0.836451 -0.003082 }
+      }
+      <Vertex> 64 {
+        -0.0626586526632 0.399097323418 2.01623797417
+        <UV>  {
+          0.651191 0.794974
+          <Tangent> { -0.216551 0.674406 -0.705891 }
+          <Binormal> { -0.585484 -0.437054 -0.237947 }
+        }
+        <Normal> { 0.607562 -0.793329 -0.037782 }
+      }
+      <Vertex> 65 {
+        -0.144294291735 0.599374771118 1.9809384346
+        <UV>  {
+          0.650611 0.795336
+          <Tangent> { -0.030275 0.790662 -0.611504 }
+          <Binormal> { -0.554917 0.024527 0.059186 }
+        }
+        <Normal> { -0.036683 -0.996918 0.069185 }
+      }
+      <Vertex> 66 {
+        -0.0524541921914 0.383790642023 1.67912471294
+        <UV>  {
+          0.650453 0.794523
+          <Tangent> { -0.408776 0.298393 -0.862476 }
+          <Binormal> { -0.601913 -0.472101 0.121946 }
+        }
+        <Normal> { 0.629292 -0.757683 0.172826 }
+      }
+      <Vertex> 67 {
+        -0.0524541921914 0.428092598915 1.83828532696
+        <UV>  {
+          0.650699 0.794697
+          <Tangent> { -0.306493 0.641532 -0.703206 }
+          <Binormal> { -0.590175 -0.386295 -0.095186 }
+        }
+        <Normal> { 0.547990 -0.836451 -0.003082 }
+      }
+      <Vertex> 68 {
+        -0.144294291735 0.61468142271 1.7156226635
+        <UV>  {
+          0.650256 0.794832
+          <Tangent> { -0.075039 0.878583 -0.471658 }
+          <Binormal> { -0.255915 0.037770 0.111071 }
+        }
+        <Normal> { -0.043397 -0.972076 0.230567 }
+      }
+      <Vertex> 69 {
+        -0.144294291735 0.61468142271 1.7156226635
+        <UV>  {
+          0.650256 0.794832
+          <Tangent> { -0.075039 0.878583 -0.471658 }
+          <Binormal> { -0.255915 0.037770 0.111071 }
+        }
+        <Normal> { -0.043397 -0.972076 0.230567 }
+      }
+      <Vertex> 70 {
+        -0.0524541921914 0.428092598915 1.83828532696
+        <UV>  {
+          0.650699 0.794697
+          <Tangent> { -0.306493 0.641532 -0.703206 }
+          <Binormal> { -0.590175 -0.386295 -0.095186 }
+        }
+        <Normal> { 0.547990 -0.836451 -0.003082 }
+      }
+      <Vertex> 71 {
+        -0.144294291735 0.604476988316 1.87379169464
+        <UV>  {
+          0.650445 0.795094
+          <Tangent> { 0.059913 0.805873 -0.589049 }
+          <Binormal> { -0.570928 0.070188 0.037954 }
+        }
+        <Normal> { -0.120884 -0.992492 0.016999 }
+      }
+      <Vertex> 72 {
+        -0.0524541921914 0.428092598915 1.83828532696
+        <UV>  {
+          0.650699 0.794697
+          <Tangent> { -0.306493 0.641532 -0.703206 }
+          <Binormal> { -0.590175 -0.386295 -0.095186 }
+        }
+        <Normal> { 0.547990 -0.836451 -0.003082 }
+      }
+      <Vertex> 73 {
+        -0.144294291735 0.599374771118 1.9809384346
+        <UV>  {
+          0.650611 0.795336
+          <Tangent> { -0.030275 0.790662 -0.611504 }
+          <Binormal> { -0.554917 0.024527 0.059186 }
+        }
+        <Normal> { -0.036683 -0.996918 0.069185 }
+      }
+      <Vertex> 74 {
+        -0.144294291735 0.604476988316 1.87379169464
+        <UV>  {
+          0.650445 0.795094
+          <Tangent> { 0.059913 0.805873 -0.589049 }
+          <Binormal> { -0.570928 0.070188 0.037954 }
+        }
+        <Normal> { -0.120884 -0.992492 0.016999 }
+      }
+      <Vertex> 75 {
+        0.248577281833 0.339249521494 2.58159637451
+        <UV>  {
+          0.658666 0.788178
+          <Tangent> { -0.615326 -0.523065 -0.589727 }
+          <Binormal> { -0.358842 0.011902 0.363862 }
+        }
+        <Normal> { 0.712149 0.014039 0.701865 }
+      }
+      <Vertex> 76 {
+        0.248577281833 0.42441290617 2.64491581917
+        <UV>  {
+          0.671441 0.794732
+          <Tangent> { -0.761562 -0.220702 -0.609355 }
+          <Binormal> { -0.125630 -0.044728 0.173211 }
+        }
+        <Normal> { 0.808618 0.006897 0.588275 }
+      }
+      <Vertex> 77 {
+        0.0598745495081 0.338298797607 2.49082612991
+        <UV>  {
+          0.654942 0.794264
+          <Tangent> { -0.609046 -0.458734 -0.647013 }
+          <Binormal> { -0.516575 -0.075597 0.539861 }
+        }
+        <Normal> { 0.698691 -0.360149 0.618122 }
+      }
+      <Vertex> 78 {
+        0.248577281833 0.42441290617 2.64491581917
+        <UV>  {
+          0.671441 0.794732
+          <Tangent> { -0.761562 -0.220702 -0.609355 }
+          <Binormal> { -0.125630 -0.044728 0.173211 }
+        }
+        <Normal> { 0.808618 0.006897 0.588275 }
+      }
+      <Vertex> 79 {
+        0.121021576226 0.538147985935 2.69525051117
+        <UV>  {
+          0.659424 0.809136
+          <Tangent> { 0.195805 0.951251 -0.238289 }
+          <Binormal> { -0.129769 -0.016778 -0.173612 }
+        }
+        <Normal> { -0.021973 -0.993408 0.112430 }
+      }
+      <Vertex> 80 {
+        0.0914445966482 0.540606319904 2.59080433846
+        <UV>  {
+          0.657024 0.801213
+          <Tangent> { -0.551407 0.702741 -0.449562 }
+          <Binormal> { 0.206998 0.343634 0.283266 }
+        }
+        <Normal> { 0.126774 -0.675283 0.726554 }
+      }
+      <Vertex> 81 {
+        0.0598745495081 0.338298797607 2.49082612991
+        <UV>  {
+          0.654942 0.794264
+          <Tangent> { -0.609046 -0.458734 -0.647013 }
+          <Binormal> { -0.516575 -0.075597 0.539861 }
+        }
+        <Normal> { 0.698691 -0.360149 0.618122 }
+      }
+      <Vertex> 82 {
+        0.248577281833 0.42441290617 2.64491581917
+        <UV>  {
+          0.671441 0.794732
+          <Tangent> { -0.761562 -0.220702 -0.609355 }
+          <Binormal> { -0.125630 -0.044728 0.173211 }
+        }
+        <Normal> { 0.808618 0.006897 0.588275 }
+      }
+      <Vertex> 83 {
+        0.0914445966482 0.540606319904 2.59080433846
+        <UV>  {
+          0.657024 0.801213
+          <Tangent> { -0.551407 0.702741 -0.449562 }
+          <Binormal> { 0.206998 0.343634 0.283266 }
+        }
+        <Normal> { 0.126774 -0.675283 0.726554 }
+      }
+      <Vertex> 84 {
+        0.121021576226 0.538147985935 2.69525051117
+        <UV>  {
+          0.659424 0.809136
+          <Tangent> { 0.195805 0.951251 -0.238289 }
+          <Binormal> { -0.129769 -0.016778 -0.173612 }
+        }
+        <Normal> { -0.021973 -0.993408 0.112430 }
+      }
+      <Vertex> 85 {
+        0.136407986283 0.664598822594 2.5284216404
+        <UV>  {
+          0.651917 0.800182
+          <Tangent> { 0.587049 0.665448 -0.461035 }
+          <Binormal> { 0.102367 0.065831 0.225367 }
+        }
+        <Normal> { -0.747765 -0.463729 0.475112 }
+      }
+      <Vertex> 86 {
+        0.0914445966482 0.540606319904 2.59080433846
+        <UV>  {
+          0.657024 0.801213
+          <Tangent> { -0.551407 0.702741 -0.449562 }
+          <Binormal> { 0.206998 0.343634 0.283266 }
+        }
+        <Normal> { 0.126774 -0.675283 0.726554 }
+      }
+      <Vertex> 87 {
+        0.121021576226 0.538147985935 2.69525051117
+        <UV>  {
+          0.659424 0.809136
+          <Tangent> { 0.195805 0.951251 -0.238289 }
+          <Binormal> { -0.129769 -0.016778 -0.173612 }
+        }
+        <Normal> { -0.021973 -0.993408 0.112430 }
+      }
+      <Vertex> 88 {
+        0.248577296734 0.680560708046 2.64017224312
+        <UV>  {
+          0.646546 0.805109
+          <Tangent> { 0.793784 0.577454 -0.190930 }
+          <Binormal> { 0.153232 -0.025472 0.560017 }
+        }
+        <Normal> { -0.964476 0.003876 0.264077 }
+      }
+      <Vertex> 89 {
+        0.136407986283 0.664598822594 2.5284216404
+        <UV>  {
+          0.651917 0.800182
+          <Tangent> { 0.587049 0.665448 -0.461035 }
+          <Binormal> { 0.102367 0.065831 0.225367 }
+        }
+        <Normal> { -0.747765 -0.463729 0.475112 }
+      }
+      <Vertex> 90 {
+        -0.0321249887347 0.678654849529 2.31012940407
+        <UV>  {
+          0.651015 0.797031
+          <Tangent> { 0.876909 0.418021 -0.237251 }
+          <Binormal> { -0.168835 0.343648 -0.018552 }
+        }
+        <Normal> { -0.883663 -0.442396 -0.152806 }
+      }
+      <Vertex> 91 {
+        0.136407986283 0.697590112686 2.39519929886
+        <UV>  {
+          0.650546 0.798447
+          <Tangent> { 0.940265 0.240200 -0.241259 }
+          <Binormal> { -0.022642 0.011791 -0.076505 }
+        }
+        <Normal> { -0.921659 -0.316813 0.223945 }
+      }
+      <Vertex> 92 {
+        0.156737193465 0.801260888577 2.13966321945
+        <UV>  {
+          0.649375 0.796439
+          <Tangent> { 0.951074 0.308486 -0.017172 }
+          <Binormal> { 0.064709 -0.200067 -0.010175 }
+        }
+        <Normal> { -0.923154 -0.310129 0.227027 }
+      }
+      <Vertex> 93 {
+        0.156737193465 0.801260888577 2.13966321945
+        <UV>  {
+          0.649375 0.796439
+          <Tangent> { 0.951074 0.308486 -0.017172 }
+          <Binormal> { 0.064709 -0.200067 -0.010175 }
+        }
+        <Normal> { -0.923154 -0.310129 0.227027 }
+      }
+      <Vertex> 94 {
+        -0.0524541772902 0.75163936615 2.04361510277
+        <UV>  {
+          0.650229 0.795781
+          <Tangent> { 0.678928 0.675887 -0.286764 }
+          <Binormal> { -0.079051 0.113637 0.080680 }
+        }
+        <Normal> { -0.757256 -0.635029 0.152470 }
+      }
+      <Vertex> 95 {
+        -0.0321249887347 0.678654849529 2.31012940407
+        <UV>  {
+          0.651015 0.797031
+          <Tangent> { 0.876909 0.418021 -0.237251 }
+          <Binormal> { -0.168835 0.343648 -0.018552 }
+        }
+        <Normal> { -0.883663 -0.442396 -0.152806 }
+      }
+      <Vertex> 96 {
+        -0.0524541772902 0.75163936615 2.04361510277
+        <UV>  {
+          0.650229 0.795781
+          <Tangent> { 0.678928 0.675887 -0.286764 }
+          <Binormal> { -0.079051 0.113637 0.080680 }
+        }
+        <Normal> { -0.757256 -0.635029 0.152470 }
+      }
+      <Vertex> 97 {
+        -0.144294291735 0.599374771118 1.9809384346
+        <UV>  {
+          0.650611 0.795336
+          <Tangent> { -0.030275 0.790662 -0.611504 }
+          <Binormal> { -0.554917 0.024527 0.059186 }
+        }
+        <Normal> { -0.036683 -0.996918 0.069185 }
+      }
+      <Vertex> 98 {
+        -0.0321249887347 0.678654849529 2.31012940407
+        <UV>  {
+          0.651015 0.797031
+          <Tangent> { 0.876909 0.418021 -0.237251 }
+          <Binormal> { -0.168835 0.343648 -0.018552 }
+        }
+        <Normal> { -0.883663 -0.442396 -0.152806 }
+      }
+      <Vertex> 99 {
+        -0.144294291735 0.599374771118 1.9809384346
+        <UV>  {
+          0.650611 0.795336
+          <Tangent> { -0.030275 0.790662 -0.611504 }
+          <Binormal> { -0.554917 0.024527 0.059186 }
+        }
+        <Normal> { -0.036683 -0.996918 0.069185 }
+      }
+      <Vertex> 100 {
+        -0.0995700731874 0.56683498621 2.26410222054
+        <UV>  {
+          0.651349 0.796230
+          <Tangent> { 0.521179 0.843492 -0.129974 }
+          <Binormal> { -0.779357 0.444531 -0.240253 }
+        }
+        <Normal> { -0.048219 -0.539018 -0.840907 }
+      }
+      <Vertex> 101 {
+        -0.0321249887347 0.678654849529 2.31012940407
+        <UV>  {
+          0.651015 0.797031
+          <Tangent> { 0.876909 0.418021 -0.237251 }
+          <Binormal> { -0.168835 0.343648 -0.018552 }
+        }
+        <Normal> { -0.883663 -0.442396 -0.152806 }
+      }
+      <Vertex> 102 {
+        -0.0626586526632 0.399097323418 2.01623797417
+        <UV>  {
+          0.651191 0.794974
+          <Tangent> { -0.216551 0.674406 -0.705891 }
+          <Binormal> { -0.585484 -0.437054 -0.237947 }
+        }
+        <Normal> { 0.607562 -0.793329 -0.037782 }
+      }
+      <Vertex> 103 {
+        -0.0995700731874 0.56683498621 2.26410222054
+        <UV>  {
+          0.651349 0.796230
+          <Tangent> { 0.521179 0.843492 -0.129974 }
+          <Binormal> { -0.779357 0.444531 -0.240253 }
+        }
+        <Normal> { -0.048219 -0.539018 -0.840907 }
+      }
+      <Vertex> 104 {
+        -0.144294291735 0.599374771118 1.9809384346
+        <UV>  {
+          0.650611 0.795336
+          <Tangent> { -0.030275 0.790662 -0.611504 }
+          <Binormal> { -0.554917 0.024527 0.059186 }
+        }
+        <Normal> { -0.036683 -0.996918 0.069185 }
+      }
+      <Vertex> 105 {
+        -0.0626586526632 0.399097323418 2.01623797417
+        <UV>  {
+          0.651191 0.794974
+          <Tangent> { -0.216551 0.674406 -0.705891 }
+          <Binormal> { -0.585484 -0.437054 -0.237947 }
+        }
+        <Normal> { 0.607562 -0.793329 -0.037782 }
+      }
+      <Vertex> 106 {
+        -0.0703917145729 0.381648719311 2.29257559776
+        <UV>  {
+          0.652019 0.795588
+          <Tangent> { 0.645275 0.735718 -0.205763 }
+          <Binormal> { -0.302043 0.002151 -0.939522 }
+        }
+        <Normal> { 0.794916 -0.549669 -0.256813 }
+      }
+      <Vertex> 107 {
+        -0.0995700731874 0.56683498621 2.26410222054
+        <UV>  {
+          0.651349 0.796230
+          <Tangent> { 0.521179 0.843492 -0.129974 }
+          <Binormal> { -0.779357 0.444531 -0.240253 }
+        }
+        <Normal> { -0.048219 -0.539018 -0.840907 }
+      }
+      <Vertex> 108 {
+        0.248577296734 0.84658241272 1.49699413776
+        <UV>  {
+          0.649579 0.794540
+          <Tangent> { 0.908300 -0.144252 0.392661 }
+          <Binormal> { -0.111732 -0.949147 -0.090233 }
+        }
+        <Normal> { -0.640126 0.002319 0.768242 }
+      }
+      <Vertex> 109 {
+        0.156737193465 0.836657643318 1.45827651024
+        <UV>  {
+          0.649696 0.794560
+          <Tangent> { 0.617216 0.363600 0.697739 }
+          <Binormal> { 0.388254 -0.530031 -0.067242 }
+        }
+        <Normal> { -0.808802 -0.585406 -0.055574 }
+      }
+      <Vertex> 110 {
+        0.156737193465 0.878551721573 1.65056669712
+        <UV>  {
+          0.649543 0.794800
+          <Tangent> { 0.934992 0.126979 0.331160 }
+          <Binormal> { 0.025217 -0.278278 0.035506 }
+        }
+        <Normal> { -0.993774 -0.096988 -0.054353 }
+      }
+      <Vertex> 111 {
+        0.248577296734 0.84658241272 1.49699413776
+        <UV>  {
+          0.649579 0.794540
+          <Tangent> { 0.908300 -0.144252 0.392661 }
+          <Binormal> { -0.111732 -0.949147 -0.090233 }
+        }
+        <Normal> { -0.640126 0.002319 0.768242 }
+      }
+      <Vertex> 112 {
+        0.156737193465 0.878551721573 1.65056669712
+        <UV>  {
+          0.649543 0.794800
+          <Tangent> { 0.934992 0.126979 0.331160 }
+          <Binormal> { 0.025217 -0.278278 0.035506 }
+        }
+        <Normal> { -0.993774 -0.096988 -0.054353 }
+      }
+      <Vertex> 113 {
+        0.248577296734 0.889273703098 1.70570719242
+        <UV>  {
+          0.649330 0.794802
+          <Tangent> { 0.890040 0.111216 0.442108 }
+          <Binormal> { -0.000158 -0.442230 0.111566 }
+        }
+        <Normal> { -0.999969 0.000397 0.000153 }
+      }
+      <Vertex> 114 {
+        -0.149396538734 0.420796751976 1.41969335079
+        <UV>  {
+          0.650182 0.794475
+          <Tangent> { -0.547890 0.180647 -0.816813 }
+          <Binormal> { -0.475941 -0.421729 0.225975 }
+        }
+        <Normal> { 0.707938 -0.645863 0.285684 }
+      }
+      <Vertex> 115 {
+        -0.144294291735 0.61468142271 1.7156226635
+        <UV>  {
+          0.650256 0.794832
+          <Tangent> { -0.075039 0.878583 -0.471658 }
+          <Binormal> { -0.255915 0.037770 0.111071 }
+        }
+        <Normal> { -0.043397 -0.972076 0.230567 }
+      }
+      <Vertex> 116 {
+        -0.220827713609 0.609579205513 1.61868023872
+        <UV>  {
+          0.650168 0.794690
+          <Tangent> { -0.245564 0.884755 -0.396115 }
+          <Binormal> { 0.088794 0.117800 0.208070 }
+        }
+        <Normal> { 0.006684 -0.871395 0.490493 }
+      }
+      <Vertex> 117 {
+        -0.149396538734 0.420796751976 1.41969335079
+        <UV>  {
+          0.650182 0.794475
+          <Tangent> { -0.547890 0.180647 -0.816813 }
+          <Binormal> { -0.475941 -0.421729 0.225975 }
+        }
+        <Normal> { 0.707938 -0.645863 0.285684 }
+      }
+      <Vertex> 118 {
+        -0.0524541921914 0.383790642023 1.67912471294
+        <UV>  {
+          0.650453 0.794523
+          <Tangent> { -0.408776 0.298393 -0.862476 }
+          <Binormal> { -0.601913 -0.472101 0.121946 }
+        }
+        <Normal> { 0.629292 -0.757683 0.172826 }
+      }
+      <Vertex> 119 {
+        -0.144294291735 0.61468142271 1.7156226635
+        <UV>  {
+          0.650256 0.794832
+          <Tangent> { -0.075039 0.878583 -0.471658 }
+          <Binormal> { -0.255915 0.037770 0.111071 }
+        }
+        <Normal> { -0.043397 -0.972076 0.230567 }
+      }
+      <Vertex> 120 {
+        -0.149396538734 0.420796751976 1.41969335079
+        <UV>  {
+          0.650182 0.794475
+          <Tangent> { -0.547890 0.180647 -0.816813 }
+          <Binormal> { -0.475941 -0.421729 0.225975 }
+        }
+        <Normal> { 0.707938 -0.645863 0.285684 }
+      }
+      <Vertex> 121 {
+        0.0961812138557 0.245635911822 1.39633226395
+        <UV>  {
+          0.650203 0.794295
+          <Tangent> { -0.002658 -0.050058 -0.998743 }
+          <Binormal> { -0.361617 -0.931054 0.047628 }
+        }
+        <Normal> { 0.932249 -0.361644 0.008545 }
+      }
+      <Vertex> 122 {
+        0.0117017161101 0.309294193983 1.53859758377
+        <UV>  {
+          0.650328 0.794372
+          <Tangent> { -0.320497 0.167922 -0.932247 }
+          <Binormal> { -0.474547 -0.764612 0.025418 }
+        }
+        <Normal> { 0.848048 -0.523637 0.081057 }
+      }
+      <Vertex> 123 {
+        -0.149396538734 0.420796751976 1.41969335079
+        <UV>  {
+          0.650182 0.794475
+          <Tangent> { -0.547890 0.180647 -0.816813 }
+          <Binormal> { -0.475941 -0.421729 0.225975 }
+        }
+        <Normal> { 0.707938 -0.645863 0.285684 }
+      }
+      <Vertex> 124 {
+        0.0117017161101 0.309294193983 1.53859758377
+        <UV>  {
+          0.650328 0.794372
+          <Tangent> { -0.320497 0.167922 -0.932247 }
+          <Binormal> { -0.474547 -0.764612 0.025418 }
+        }
+        <Normal> { 0.848048 -0.523637 0.081057 }
+      }
+      <Vertex> 125 {
+        -0.0524541921914 0.383790642023 1.67912471294
+        <UV>  {
+          0.650453 0.794523
+          <Tangent> { -0.408776 0.298393 -0.862476 }
+          <Binormal> { -0.601913 -0.472101 0.121946 }
+        }
+        <Normal> { 0.629292 -0.757683 0.172826 }
+      }
+      <Vertex> 126 {
+        -0.144294291735 0.61468142271 1.7156226635
+        <UV>  {
+          0.650256 0.794832
+          <Tangent> { -0.075039 0.878583 -0.471658 }
+          <Binormal> { -0.255915 0.037770 0.111071 }
+        }
+        <Normal> { -0.043397 -0.972076 0.230567 }
+      }
+      <Vertex> 127 {
+        -0.149396508932 0.793259441853 1.42989778519
+        <UV>  {
+          0.649962 0.794617
+          <Tangent> { 0.842038 0.534473 -0.072872 }
+          <Binormal> { 0.033799 -0.048777 0.032793 }
+        }
+        <Normal> { -0.854060 -0.503159 0.131840 }
+      }
+      <Vertex> 128 {
+        -0.220827713609 0.609579205513 1.61868023872
+        <UV>  {
+          0.650168 0.794690
+          <Tangent> { -0.245564 0.884755 -0.396115 }
+          <Binormal> { 0.088794 0.117800 0.208070 }
+        }
+        <Normal> { 0.006684 -0.871395 0.490493 }
+      }
+      <Vertex> 129 {
+        -0.149396508932 0.793259441853 1.42989778519
+        <UV>  {
+          0.649962 0.794617
+          <Tangent> { 0.842038 0.534473 -0.072872 }
+          <Binormal> { 0.033799 -0.048777 0.032793 }
+        }
+        <Normal> { -0.854060 -0.503159 0.131840 }
+      }
+      <Vertex> 130 {
+        -0.144294291735 0.61468142271 1.7156226635
+        <UV>  {
+          0.650256 0.794832
+          <Tangent> { -0.075039 0.878583 -0.471658 }
+          <Binormal> { -0.255915 0.037770 0.111071 }
+        }
+        <Normal> { -0.043397 -0.972076 0.230567 }
+      }
+      <Vertex> 131 {
+        -0.0524541735649 0.850881814957 1.65349030495
+        <UV>  {
+          0.649874 0.794859
+          <Tangent> { 0.867854 0.496437 0.019474 }
+          <Binormal> { 0.009983 -0.017003 -0.011439 }
+        }
+        <Normal> { -0.862270 -0.506424 0.000244 }
+      }
+      <Vertex> 132 {
+        0.156737193465 0.878551721573 1.65056669712
+        <UV>  {
+          0.649543 0.794800
+          <Tangent> { 0.934992 0.126979 0.331160 }
+          <Binormal> { 0.025217 -0.278278 0.035506 }
+        }
+        <Normal> { -0.993774 -0.096988 -0.054353 }
+      }
+      <Vertex> 133 {
+        0.156737193465 0.836657643318 1.45827651024
+        <UV>  {
+          0.649696 0.794560
+          <Tangent> { 0.617216 0.363600 0.697739 }
+          <Binormal> { 0.388254 -0.530031 -0.067242 }
+        }
+        <Normal> { -0.808802 -0.585406 -0.055574 }
+      }
+      <Vertex> 134 {
+        -0.0524541735649 0.850881814957 1.65349030495
+        <UV>  {
+          0.649874 0.794859
+          <Tangent> { 0.867854 0.496437 0.019474 }
+          <Binormal> { 0.009983 -0.017003 -0.011439 }
+        }
+        <Normal> { -0.862270 -0.506424 0.000244 }
+      }
+      <Vertex> 135 {
+        -0.0524541735649 0.850881814957 1.65349030495
+        <UV>  {
+          0.649874 0.794859
+          <Tangent> { 0.867854 0.496437 0.019474 }
+          <Binormal> { 0.009983 -0.017003 -0.011439 }
+        }
+        <Normal> { -0.862270 -0.506424 0.000244 }
+      }
+      <Vertex> 136 {
+        0.156737193465 0.836657643318 1.45827651024
+        <UV>  {
+          0.649696 0.794560
+          <Tangent> { 0.617216 0.363600 0.697739 }
+          <Binormal> { 0.388254 -0.530031 -0.067242 }
+        }
+        <Normal> { -0.808802 -0.585406 -0.055574 }
+      }
+      <Vertex> 137 {
+        -0.149396508932 0.793259441853 1.42989778519
+        <UV>  {
+          0.649962 0.794617
+          <Tangent> { 0.842038 0.534473 -0.072872 }
+          <Binormal> { 0.033799 -0.048777 0.032793 }
+        }
+        <Normal> { -0.854060 -0.503159 0.131840 }
+      }
+      <Vertex> 138 {
+        0.0138747924939 0.772850513458 1.16458189487
+        <UV>  {
+          0.649916 0.794448
+          <Tangent> { 0.718605 0.151286 0.678763 }
+          <Binormal> { -0.309063 -0.257579 0.384615 }
+        }
+        <Normal> { -0.830012 0.360485 -0.425550 }
+      }
+      <Vertex> 139 {
+        -0.149396508932 0.793259441853 1.42989778519
+        <UV>  {
+          0.649962 0.794617
+          <Tangent> { 0.842038 0.534473 -0.072872 }
+          <Binormal> { 0.033799 -0.048777 0.032793 }
+        }
+        <Normal> { -0.854060 -0.503159 0.131840 }
+      }
+      <Vertex> 140 {
+        0.156737193465 0.836657643318 1.45827651024
+        <UV>  {
+          0.649696 0.794560
+          <Tangent> { 0.617216 0.363600 0.697739 }
+          <Binormal> { 0.388254 -0.530031 -0.067242 }
+        }
+        <Normal> { -0.808802 -0.585406 -0.055574 }
+      }
+      <Vertex> 141 {
+        0.156737193465 0.836657643318 1.45827651024
+        <UV>  {
+          0.649696 0.794560
+          <Tangent> { 0.617216 0.363600 0.697739 }
+          <Binormal> { 0.388254 -0.530031 -0.067242 }
+        }
+        <Normal> { -0.808802 -0.585406 -0.055574 }
+      }
+      <Vertex> 142 {
+        0.156737178564 0.695588648319 1.23194479942
+        <UV>  {
+          0.649853 0.794382
+          <Tangent> { 0.542004 0.598110 0.590335 }
+          <Binormal> { -0.709437 0.254847 0.393153 }
+        }
+        <Normal> { -0.370037 0.317026 -0.873226 }
+      }
+      <Vertex> 143 {
+        0.0138747924939 0.772850513458 1.16458189487
+        <UV>  {
+          0.649916 0.794448
+          <Tangent> { 0.718605 0.151286 0.678763 }
+          <Binormal> { -0.309063 -0.257579 0.384615 }
+        }
+        <Normal> { -0.830012 0.360485 -0.425550 }
+      }
+      <Vertex> 144 {
+        0.0961812138557 0.245635911822 1.39633226395
+        <UV>  {
+          0.650203 0.794295
+          <Tangent> { -0.002658 -0.050058 -0.998743 }
+          <Binormal> { -0.361617 -0.931054 0.047628 }
+        }
+        <Normal> { 0.932249 -0.361644 0.008545 }
+      }
+      <Vertex> 145 {
+        -0.149396538734 0.420796751976 1.41969335079
+        <UV>  {
+          0.650182 0.794475
+          <Tangent> { -0.547890 0.180647 -0.816813 }
+          <Binormal> { -0.475941 -0.421729 0.225975 }
+        }
+        <Normal> { 0.707938 -0.645863 0.285684 }
+      }
+      <Vertex> 146 {
+        0.0138747692108 0.257525444031 1.20029759407
+        <UV>  {
+          0.650097 0.794354
+          <Tangent> { 0.231639 0.560627 -0.795010 }
+          <Binormal> { 0.020848 -0.673143 -0.468614 }
+        }
+        <Normal> { 0.930296 0.228523 -0.286874 }
+      }
+      <Vertex> 147 {
+        0.0138747692108 0.257525444031 1.20029759407
+        <UV>  {
+          0.650097 0.794354
+          <Tangent> { 0.231639 0.560627 -0.795010 }
+          <Binormal> { 0.020848 -0.673143 -0.468614 }
+        }
+        <Normal> { 0.930296 0.228523 -0.286874 }
+      }
+      <Vertex> 148 {
+        0.156737163663 0.263334274292 1.29201555252
+        <UV>  {
+          0.650105 0.794269
+          <Tangent> { 0.217641 0.741558 -0.634606 }
+          <Binormal> { -0.449672 -0.454621 -0.685457 }
+        }
+        <Normal> { 0.872585 -0.176366 -0.455458 }
+      }
+      <Vertex> 149 {
+        0.0961812138557 0.245635911822 1.39633226395
+        <UV>  {
+          0.650203 0.794295
+          <Tangent> { -0.002658 -0.050058 -0.998743 }
+          <Binormal> { -0.361617 -0.931054 0.047628 }
+        }
+        <Normal> { 0.932249 -0.361644 0.008545 }
+      }
+      <Vertex> 150 {
+        0.0138747692108 0.257525444031 1.20029759407
+        <UV>  {
+          0.650097 0.794354
+          <Tangent> { 0.231639 0.560627 -0.795010 }
+          <Binormal> { 0.020848 -0.673143 -0.468614 }
+        }
+        <Normal> { 0.930296 0.228523 -0.286874 }
+      }
+      <Vertex> 151 {
+        0.049590382725 0.589170277119 1.0778440237
+        <UV>  {
+          0.649963 0.794393
+          <Tangent> { 0.316545 0.740380 0.592990 }
+          <Binormal> { -0.946266 0.202894 0.251803 }
+        }
+        <Normal> { -0.065401 0.642506 -0.763482 }
+      }
+      <Vertex> 152 {
+        0.156737163663 0.263334274292 1.29201555252
+        <UV>  {
+          0.650105 0.794269
+          <Tangent> { 0.217641 0.741558 -0.634606 }
+          <Binormal> { -0.449672 -0.454621 -0.685457 }
+        }
+        <Normal> { 0.872585 -0.176366 -0.455458 }
+      }
+      <Vertex> 153 {
+        0.176724329591 0.299050122499 1.22716104984
+        <UV>  {
+          0.650045 0.794257
+          <Tangent> { 0.426728 0.904132 0.021168 }
+          <Binormal> { -0.719629 0.353289 -0.582684 }
+        }
+        <Normal> { 0.591144 -0.112980 -0.798578 }
+      }
+      <Vertex> 154 {
+        0.156737163663 0.263334274292 1.29201555252
+        <UV>  {
+          0.650105 0.794269
+          <Tangent> { 0.217641 0.741558 -0.634606 }
+          <Binormal> { -0.449672 -0.454621 -0.685457 }
+        }
+        <Normal> { 0.872585 -0.176366 -0.455458 }
+      }
+      <Vertex> 155 {
+        0.049590382725 0.589170277119 1.0778440237
+        <UV>  {
+          0.649963 0.794393
+          <Tangent> { 0.316545 0.740380 0.592990 }
+          <Binormal> { -0.946266 0.202894 0.251803 }
+        }
+        <Normal> { -0.065401 0.642506 -0.763482 }
+      }
+      <Vertex> 156 {
+        0.049590382725 0.589170277119 1.0778440237
+        <UV>  {
+          0.649963 0.794393
+          <Tangent> { 0.316545 0.740380 0.592990 }
+          <Binormal> { -0.946266 0.202894 0.251803 }
+        }
+        <Normal> { -0.065401 0.642506 -0.763482 }
+      }
+      <Vertex> 157 {
+        0.156737178564 0.695588648319 1.23194479942
+        <UV>  {
+          0.649853 0.794382
+          <Tangent> { 0.542004 0.598110 0.590335 }
+          <Binormal> { -0.709437 0.254847 0.393153 }
+        }
+        <Normal> { -0.370037 0.317026 -0.873226 }
+      }
+      <Vertex> 158 {
+        0.176724329591 0.299050122499 1.22716104984
+        <UV>  {
+          0.650045 0.794257
+          <Tangent> { 0.426728 0.904132 0.021168 }
+          <Binormal> { -0.719629 0.353289 -0.582684 }
+        }
+        <Normal> { 0.591144 -0.112980 -0.798578 }
+      }
+      <Vertex> 159 {
+        0.156737178564 0.695588648319 1.23194479942
+        <UV>  {
+          0.649853 0.794382
+          <Tangent> { 0.542004 0.598110 0.590335 }
+          <Binormal> { -0.709437 0.254847 0.393153 }
+        }
+        <Normal> { -0.370037 0.317026 -0.873226 }
+      }
+      <Vertex> 160 {
+        0.049590382725 0.589170277119 1.0778440237
+        <UV>  {
+          0.649963 0.794393
+          <Tangent> { 0.316545 0.740380 0.592990 }
+          <Binormal> { -0.946266 0.202894 0.251803 }
+        }
+        <Normal> { -0.065401 0.642506 -0.763482 }
+      }
+      <Vertex> 161 {
+        0.0138747924939 0.772850513458 1.16458189487
+        <UV>  {
+          0.649916 0.794448
+          <Tangent> { 0.718605 0.151286 0.678763 }
+          <Binormal> { -0.309063 -0.257579 0.384615 }
+        }
+        <Normal> { -0.830012 0.360485 -0.425550 }
+      }
+      <Vertex> 162 {
+        -0.0321249887347 0.678654849529 2.31012940407
+        <UV>  {
+          0.651015 0.797031
+          <Tangent> { 0.876909 0.418021 -0.237251 }
+          <Binormal> { -0.168835 0.343648 -0.018552 }
+        }
+        <Normal> { -0.883663 -0.442396 -0.152806 }
+      }
+      <Vertex> 163 {
+        -0.17220941186 0.55247682333 2.23525571823
+        <UV>  {
+          0.651560 0.796370
+          <Tangent> { 0.466217 0.022298 0.884389 }
+          <Binormal> { -0.468252 0.164265 0.242703 }
+        }
+        <Normal> { -0.248756 0.508682 -0.824213 }
+      }
+      <Vertex> 164 {
+        -0.223292261362 0.666887700558 2.33797073364
+        <UV>  {
+          0.651628 0.796895
+          <Tangent> { 0.866739 -0.458915 0.195346 }
+          <Binormal> { 0.086908 -0.068416 -0.546330 }
+        }
+        <Normal> { -0.983673 -0.109500 -0.142766 }
+      }
+      <Vertex> 165 {
+        -0.223292261362 0.666887700558 2.33797073364
+        <UV>  {
+          0.651628 0.796895
+          <Tangent> { 0.866739 -0.458915 0.195346 }
+          <Binormal> { 0.086908 -0.068416 -0.546330 }
+        }
+        <Normal> { -0.983673 -0.109500 -0.142766 }
+      }
+      <Vertex> 166 {
+        0.136407986283 0.697590112686 2.39519929886
+        <UV>  {
+          0.650546 0.798447
+          <Tangent> { 0.940265 0.240200 -0.241259 }
+          <Binormal> { -0.022642 0.011791 -0.076505 }
+        }
+        <Normal> { -0.921659 -0.316813 0.223945 }
+      }
+      <Vertex> 167 {
+        -0.0321249887347 0.678654849529 2.31012940407
+        <UV>  {
+          0.651015 0.797031
+          <Tangent> { 0.876909 0.418021 -0.237251 }
+          <Binormal> { -0.168835 0.343648 -0.018552 }
+        }
+        <Normal> { -0.883663 -0.442396 -0.152806 }
+      }
+      <Vertex> 168 {
+        0.136407986283 0.664598822594 2.5284216404
+        <UV>  {
+          0.651917 0.800182
+          <Tangent> { 0.587049 0.665448 -0.461035 }
+          <Binormal> { 0.102367 0.065831 0.225367 }
+        }
+        <Normal> { -0.747765 -0.463729 0.475112 }
+      }
+      <Vertex> 169 {
+        0.136407986283 0.697590112686 2.39519929886
+        <UV>  {
+          0.650546 0.798447
+          <Tangent> { 0.940265 0.240200 -0.241259 }
+          <Binormal> { -0.022642 0.011791 -0.076505 }
+        }
+        <Normal> { -0.921659 -0.316813 0.223945 }
+      }
+      <Vertex> 170 {
+        -0.223292261362 0.666887700558 2.33797073364
+        <UV>  {
+          0.651628 0.796895
+          <Tangent> { 0.866739 -0.458915 0.195346 }
+          <Binormal> { 0.086908 -0.068416 -0.546330 }
+        }
+        <Normal> { -0.983673 -0.109500 -0.142766 }
+      }
+      <Vertex> 171 {
+        -0.223292261362 0.666887700558 2.33797073364
+        <UV>  {
+          0.651628 0.796895
+          <Tangent> { 0.866739 -0.458915 0.195346 }
+          <Binormal> { 0.086908 -0.068416 -0.546330 }
+        }
+        <Normal> { -0.983673 -0.109500 -0.142766 }
+      }
+      <Vertex> 172 {
+        -0.279904454947 0.529526770115 2.4410879612
+        <UV>  {
+          0.652025 0.797015
+          <Tangent> { -0.278661 0.636894 -0.718829 }
+          <Binormal> { 0.037163 0.311905 0.261946 }
+        }
+        <Normal> { -0.136753 -0.627461 0.766533 }
+      }
+      <Vertex> 173 {
+        0.136407986283 0.664598822594 2.5284216404
+        <UV>  {
+          0.651917 0.800182
+          <Tangent> { 0.587049 0.665448 -0.461035 }
+          <Binormal> { 0.102367 0.065831 0.225367 }
+        }
+        <Normal> { -0.747765 -0.463729 0.475112 }
+      }
+      <Vertex> 174 {
+        -0.279904454947 0.529526770115 2.4410879612
+        <UV>  {
+          0.652025 0.797015
+          <Tangent> { -0.278661 0.636894 -0.718829 }
+          <Binormal> { 0.037163 0.311905 0.261946 }
+        }
+        <Normal> { -0.136753 -0.627461 0.766533 }
+      }
+      <Vertex> 175 {
+        0.0914445966482 0.540606319904 2.59080433846
+        <UV>  {
+          0.657024 0.801213
+          <Tangent> { -0.551407 0.702741 -0.449562 }
+          <Binormal> { 0.206998 0.343634 0.283266 }
+        }
+        <Normal> { 0.126774 -0.675283 0.726554 }
+      }
+      <Vertex> 176 {
+        0.136407986283 0.664598822594 2.5284216404
+        <UV>  {
+          0.651917 0.800182
+          <Tangent> { 0.587049 0.665448 -0.461035 }
+          <Binormal> { 0.102367 0.065831 0.225367 }
+        }
+        <Normal> { -0.747765 -0.463729 0.475112 }
+      }
+      <Vertex> 177 {
+        -0.279904454947 0.529526770115 2.4410879612
+        <UV>  {
+          0.652025 0.797015
+          <Tangent> { -0.278661 0.636894 -0.718829 }
+          <Binormal> { 0.037163 0.311905 0.261946 }
+        }
+        <Normal> { -0.136753 -0.627461 0.766533 }
+      }
+      <Vertex> 178 {
+        0.0598745495081 0.338298797607 2.49082612991
+        <UV>  {
+          0.654942 0.794264
+          <Tangent> { -0.609046 -0.458734 -0.647013 }
+          <Binormal> { -0.516575 -0.075597 0.539861 }
+        }
+        <Normal> { 0.698691 -0.360149 0.618122 }
+      }
+      <Vertex> 179 {
+        0.0914445966482 0.540606319904 2.59080433846
+        <UV>  {
+          0.657024 0.801213
+          <Tangent> { -0.551407 0.702741 -0.449562 }
+          <Binormal> { 0.206998 0.343634 0.283266 }
+        }
+        <Normal> { 0.126774 -0.675283 0.726554 }
+      }
+      <Vertex> 180 {
+        0.0598745495081 0.338298797607 2.49082612991
+        <UV>  {
+          0.654942 0.794264
+          <Tangent> { -0.609046 -0.458734 -0.647013 }
+          <Binormal> { -0.516575 -0.075597 0.539861 }
+        }
+        <Normal> { 0.698691 -0.360149 0.618122 }
+      }
+      <Vertex> 181 {
+        -0.279904454947 0.529526770115 2.4410879612
+        <UV>  {
+          0.652025 0.797015
+          <Tangent> { -0.278661 0.636894 -0.718829 }
+          <Binormal> { 0.037163 0.311905 0.261946 }
+        }
+        <Normal> { -0.136753 -0.627461 0.766533 }
+      }
+      <Vertex> 182 {
+        -0.251144945621 0.379294753075 2.39263415337
+        <UV>  {
+          0.652179 0.796281
+          <Tangent> { -0.463592 -0.080018 -0.882428 }
+          <Binormal> { -0.355516 -0.586699 0.239975 }
+        }
+        <Normal> { 0.855342 -0.370006 0.362560 }
+      }
+      <Vertex> 183 {
+        -0.251144945621 0.379294753075 2.39263415337
+        <UV>  {
+          0.652179 0.796281
+          <Tangent> { -0.463592 -0.080018 -0.882428 }
+          <Binormal> { -0.355516 -0.586699 0.239975 }
+        }
+        <Normal> { 0.855342 -0.370006 0.362560 }
+      }
+      <Vertex> 184 {
+        -0.0268633309752 0.359876453876 2.42605423927
+        <UV>  {
+          0.653230 0.795023
+          <Tangent> { 0.390604 0.342591 -0.854436 }
+          <Binormal> { -0.224579 -0.813801 -0.428964 }
+        }
+        <Normal> { 0.967803 -0.249367 -0.033601 }
+      }
+      <Vertex> 185 {
+        0.0598745495081 0.338298797607 2.49082612991
+        <UV>  {
+          0.654942 0.794264
+          <Tangent> { -0.609046 -0.458734 -0.647013 }
+          <Binormal> { -0.516575 -0.075597 0.539861 }
+        }
+        <Normal> { 0.698691 -0.360149 0.618122 }
+      }
+      <Vertex> 186 {
+        -0.251144945621 0.379294753075 2.39263415337
+        <UV>  {
+          0.652179 0.796281
+          <Tangent> { -0.463592 -0.080018 -0.882428 }
+          <Binormal> { -0.355516 -0.586699 0.239975 }
+        }
+        <Normal> { 0.855342 -0.370006 0.362560 }
+      }
+      <Vertex> 187 {
+        -0.198053300381 0.351298213005 2.28843545914
+        <UV>  {
+          0.652044 0.796048
+          <Tangent> { 0.268215 0.247929 -0.930909 }
+          <Binormal> { 0.193669 -0.838229 -0.167446 }
+        }
+        <Normal> { 0.950957 0.254738 -0.175329 }
+      }
+      <Vertex> 188 {
+        -0.0268633309752 0.359876453876 2.42605423927
+        <UV>  {
+          0.653230 0.795023
+          <Tangent> { 0.390604 0.342591 -0.854436 }
+          <Binormal> { -0.224579 -0.813801 -0.428964 }
+        }
+        <Normal> { 0.967803 -0.249367 -0.033601 }
+      }
+      <Vertex> 189 {
+        -0.0268633309752 0.359876453876 2.42605423927
+        <UV>  {
+          0.653230 0.795023
+          <Tangent> { 0.390604 0.342591 -0.854436 }
+          <Binormal> { -0.224579 -0.813801 -0.428964 }
+        }
+        <Normal> { 0.967803 -0.249367 -0.033601 }
+      }
+      <Vertex> 190 {
+        -0.198053300381 0.351298213005 2.28843545914
+        <UV>  {
+          0.652044 0.796048
+          <Tangent> { 0.268215 0.247929 -0.930909 }
+          <Binormal> { 0.193669 -0.838229 -0.167446 }
+        }
+        <Normal> { 0.950957 0.254738 -0.175329 }
+      }
+      <Vertex> 191 {
+        -0.167449593544 0.444012314081 2.22806406021
+        <UV>  {
+          0.651759 0.796087
+          <Tangent> { 0.623661 0.652467 0.430503 }
+          <Binormal> { -0.716081 0.642020 0.064333 }
+        }
+        <Normal> { 0.400403 0.522050 -0.753044 }
+      }
+      <Vertex> 192 {
+        -0.0703917145729 0.381648719311 2.29257559776
+        <UV>  {
+          0.652019 0.795588
+          <Tangent> { 0.645275 0.735718 -0.205763 }
+          <Binormal> { -0.302043 0.002151 -0.939522 }
+        }
+        <Normal> { 0.794916 -0.549669 -0.256813 }
+      }
+      <Vertex> 193 {
+        -0.0268633309752 0.359876453876 2.42605423927
+        <UV>  {
+          0.653230 0.795023
+          <Tangent> { 0.390604 0.342591 -0.854436 }
+          <Binormal> { -0.224579 -0.813801 -0.428964 }
+        }
+        <Normal> { 0.967803 -0.249367 -0.033601 }
+      }
+      <Vertex> 194 {
+        -0.167449593544 0.444012314081 2.22806406021
+        <UV>  {
+          0.651759 0.796087
+          <Tangent> { 0.623661 0.652467 0.430503 }
+          <Binormal> { -0.716081 0.642020 0.064333 }
+        }
+        <Normal> { 0.400403 0.522050 -0.753044 }
+      }
+      <Vertex> 195 {
+        -0.167449593544 0.444012314081 2.22806406021
+        <UV>  {
+          0.651759 0.796087
+          <Tangent> { 0.623661 0.652467 0.430503 }
+          <Binormal> { -0.716081 0.642020 0.064333 }
+        }
+        <Normal> { 0.400403 0.522050 -0.753044 }
+      }
+      <Vertex> 196 {
+        -0.0995700731874 0.56683498621 2.26410222054
+        <UV>  {
+          0.651349 0.796230
+          <Tangent> { 0.521179 0.843492 -0.129974 }
+          <Binormal> { -0.779357 0.444531 -0.240253 }
+        }
+        <Normal> { -0.048219 -0.539018 -0.840907 }
+      }
+      <Vertex> 197 {
+        -0.0703917145729 0.381648719311 2.29257559776
+        <UV>  {
+          0.652019 0.795588
+          <Tangent> { 0.645275 0.735718 -0.205763 }
+          <Binormal> { -0.302043 0.002151 -0.939522 }
+        }
+        <Normal> { 0.794916 -0.549669 -0.256813 }
+      }
+      <Vertex> 198 {
+        -0.0321249887347 0.678654849529 2.31012940407
+        <UV>  {
+          0.651015 0.797031
+          <Tangent> { 0.876909 0.418021 -0.237251 }
+          <Binormal> { -0.168835 0.343648 -0.018552 }
+        }
+        <Normal> { -0.883663 -0.442396 -0.152806 }
+      }
+      <Vertex> 199 {
+        -0.0995700731874 0.56683498621 2.26410222054
+        <UV>  {
+          0.651349 0.796230
+          <Tangent> { 0.521179 0.843492 -0.129974 }
+          <Binormal> { -0.779357 0.444531 -0.240253 }
+        }
+        <Normal> { -0.048219 -0.539018 -0.840907 }
+      }
+      <Vertex> 200 {
+        -0.17220941186 0.55247682333 2.23525571823
+        <UV>  {
+          0.651560 0.796370
+          <Tangent> { 0.466217 0.022298 0.884389 }
+          <Binormal> { -0.468252 0.164265 0.242703 }
+        }
+        <Normal> { -0.248756 0.508682 -0.824213 }
+      }
+      <Vertex> 201 {
+        -0.17220941186 0.55247682333 2.23525571823
+        <UV>  {
+          0.651560 0.796370
+          <Tangent> { 0.466217 0.022298 0.884389 }
+          <Binormal> { -0.468252 0.164265 0.242703 }
+        }
+        <Normal> { -0.248756 0.508682 -0.824213 }
+      }
+      <Vertex> 202 {
+        -0.0995700731874 0.56683498621 2.26410222054
+        <UV>  {
+          0.651349 0.796230
+          <Tangent> { 0.521179 0.843492 -0.129974 }
+          <Binormal> { -0.779357 0.444531 -0.240253 }
+        }
+        <Normal> { -0.048219 -0.539018 -0.840907 }
+      }
+      <Vertex> 203 {
+        -0.167449593544 0.444012314081 2.22806406021
+        <UV>  {
+          0.651759 0.796087
+          <Tangent> { 0.623661 0.652467 0.430503 }
+          <Binormal> { -0.716081 0.642020 0.064333 }
+        }
+        <Normal> { 0.400403 0.522050 -0.753044 }
+      }
+      <Vertex> 204 {
+        -0.516265273094 0.479841262102 2.00192165375
+        <UV>  {
+          0.651767 0.796273
+          <Tangent> { 0.021332 0.867875 -0.496324 }
+          <Binormal> { -0.215813 0.248195 0.424720 }
+        }
+        <Normal> { -0.509781 -0.830042 0.226020 }
+      }
+      <Vertex> 205 {
+        -0.223292261362 0.666887700558 2.33797073364
+        <UV>  {
+          0.651628 0.796895
+          <Tangent> { 0.866739 -0.458915 0.195346 }
+          <Binormal> { 0.086908 -0.068416 -0.546330 }
+        }
+        <Normal> { -0.983673 -0.109500 -0.142766 }
+      }
+      <Vertex> 206 {
+        -0.42640838027 0.493491858244 1.87759721279
+        <UV>  {
+          0.651758 0.796242
+          <Tangent> { -0.601098 0.704292 0.377697 }
+          <Binormal> { -0.644671 -0.698571 0.276643 }
+        }
+        <Normal> { -0.543321 0.176366 -0.820765 }
+      }
+      <Vertex> 207 {
+        -0.223292261362 0.666887700558 2.33797073364
+        <UV>  {
+          0.651628 0.796895
+          <Tangent> { 0.866739 -0.458915 0.195346 }
+          <Binormal> { 0.086908 -0.068416 -0.546330 }
+        }
+        <Normal> { -0.983673 -0.109500 -0.142766 }
+      }
+      <Vertex> 208 {
+        -0.516265273094 0.479841262102 2.00192165375
+        <UV>  {
+          0.651767 0.796273
+          <Tangent> { 0.021332 0.867875 -0.496324 }
+          <Binormal> { -0.215813 0.248195 0.424720 }
+        }
+        <Normal> { -0.509781 -0.830042 0.226020 }
+      }
+      <Vertex> 209 {
+        -0.279904454947 0.529526770115 2.4410879612
+        <UV>  {
+          0.652025 0.797015
+          <Tangent> { -0.278661 0.636894 -0.718829 }
+          <Binormal> { 0.037163 0.311905 0.261946 }
+        }
+        <Normal> { -0.136753 -0.627461 0.766533 }
+      }
+      <Vertex> 210 {
+        -0.516265273094 0.479841262102 2.00192165375
+        <UV>  {
+          0.651767 0.796273
+          <Tangent> { 0.021332 0.867875 -0.496324 }
+          <Binormal> { -0.215813 0.248195 0.424720 }
+        }
+        <Normal> { -0.509781 -0.830042 0.226020 }
+      }
+      <Vertex> 211 {
+        -0.47253677249 0.404162049294 2.1069419384
+        <UV>  {
+          0.651776 0.796304
+          <Tangent> { -0.261703 0.706388 -0.657668 }
+          <Binormal> { -0.037263 -0.012277 0.001642 }
+        }
+        <Normal> { 0.268410 -0.730766 0.627613 }
+      }
+      <Vertex> 212 {
+        -0.279904454947 0.529526770115 2.4410879612
+        <UV>  {
+          0.652025 0.797015
+          <Tangent> { -0.278661 0.636894 -0.718829 }
+          <Binormal> { 0.037163 0.311905 0.261946 }
+        }
+        <Normal> { -0.136753 -0.627461 0.766533 }
+      }
+      <Vertex> 213 {
+        -0.47253677249 0.404162049294 2.1069419384
+        <UV>  {
+          0.651776 0.796304
+          <Tangent> { -0.261703 0.706388 -0.657668 }
+          <Binormal> { -0.037263 -0.012277 0.001642 }
+        }
+        <Normal> { 0.268410 -0.730766 0.627613 }
+      }
+      <Vertex> 214 {
+        -0.251144945621 0.379294753075 2.39263415337
+        <UV>  {
+          0.652179 0.796281
+          <Tangent> { -0.463592 -0.080018 -0.882428 }
+          <Binormal> { -0.355516 -0.586699 0.239975 }
+        }
+        <Normal> { 0.855342 -0.370006 0.362560 }
+      }
+      <Vertex> 215 {
+        -0.279904454947 0.529526770115 2.4410879612
+        <UV>  {
+          0.652025 0.797015
+          <Tangent> { -0.278661 0.636894 -0.718829 }
+          <Binormal> { 0.037163 0.311905 0.261946 }
+        }
+        <Normal> { -0.136753 -0.627461 0.766533 }
+      }
+      <Vertex> 216 {
+        -0.223292261362 0.666887700558 2.33797073364
+        <UV>  {
+          0.651628 0.796895
+          <Tangent> { 0.866739 -0.458915 0.195346 }
+          <Binormal> { 0.086908 -0.068416 -0.546330 }
+        }
+        <Normal> { -0.983673 -0.109500 -0.142766 }
+      }
+      <Vertex> 217 {
+        -0.340605050325 0.40765145421 1.94320487976
+        <UV>  {
+          0.651752 0.796245
+          <Tangent> { 0.251919 -0.937288 0.240892 }
+          <Binormal> { 0.386740 0.155148 0.199223 }
+        }
+        <Normal> { 0.000671 0.788324 -0.615223 }
+      }
+      <Vertex> 218 {
+        -0.42640838027 0.493491858244 1.87759721279
+        <UV>  {
+          0.651758 0.796242
+          <Tangent> { -0.601098 0.704292 0.377697 }
+          <Binormal> { -0.644671 -0.698571 0.276643 }
+        }
+        <Normal> { -0.543321 0.176366 -0.820765 }
+      }
+      <Vertex> 219 {
+        -0.223292261362 0.666887700558 2.33797073364
+        <UV>  {
+          0.651628 0.796895
+          <Tangent> { 0.866739 -0.458915 0.195346 }
+          <Binormal> { 0.086908 -0.068416 -0.546330 }
+        }
+        <Normal> { -0.983673 -0.109500 -0.142766 }
+      }
+      <Vertex> 220 {
+        -0.17220941186 0.55247682333 2.23525571823
+        <UV>  {
+          0.651560 0.796370
+          <Tangent> { 0.466217 0.022298 0.884389 }
+          <Binormal> { -0.468252 0.164265 0.242703 }
+        }
+        <Normal> { -0.248756 0.508682 -0.824213 }
+      }
+      <Vertex> 221 {
+        -0.340605050325 0.40765145421 1.94320487976
+        <UV>  {
+          0.651752 0.796245
+          <Tangent> { 0.251919 -0.937288 0.240892 }
+          <Binormal> { 0.386740 0.155148 0.199223 }
+        }
+        <Normal> { 0.000671 0.788324 -0.615223 }
+      }
+      <Vertex> 222 {
+        -0.17220941186 0.55247682333 2.23525571823
+        <UV>  {
+          0.651560 0.796370
+          <Tangent> { 0.466217 0.022298 0.884389 }
+          <Binormal> { -0.468252 0.164265 0.242703 }
+        }
+        <Normal> { -0.248756 0.508682 -0.824213 }
+      }
+      <Vertex> 223 {
+        -0.333772152662 0.363321483135 2.02427983284
+        <UV>  {
+          0.651773 0.796248
+          <Tangent> { -0.114987 -0.240612 -0.963786 }
+          <Binormal> { 0.778786 -0.622503 0.062495 }
+        }
+        <Normal> { 0.609821 0.732566 -0.302347 }
+      }
+      <Vertex> 224 {
+        -0.340605050325 0.40765145421 1.94320487976
+        <UV>  {
+          0.651752 0.796245
+          <Tangent> { 0.251919 -0.937288 0.240892 }
+          <Binormal> { 0.386740 0.155148 0.199223 }
+        }
+        <Normal> { 0.000671 0.788324 -0.615223 }
+      }
+      <Vertex> 225 {
+        -0.333772152662 0.363321483135 2.02427983284
+        <UV>  {
+          0.651773 0.796248
+          <Tangent> { -0.114987 -0.240612 -0.963786 }
+          <Binormal> { 0.778786 -0.622503 0.062495 }
+        }
+        <Normal> { 0.609821 0.732566 -0.302347 }
+      }
+      <Vertex> 226 {
+        -0.17220941186 0.55247682333 2.23525571823
+        <UV>  {
+          0.651560 0.796370
+          <Tangent> { 0.466217 0.022298 0.884389 }
+          <Binormal> { -0.468252 0.164265 0.242703 }
+        }
+        <Normal> { -0.248756 0.508682 -0.824213 }
+      }
+      <Vertex> 227 {
+        -0.167449593544 0.444012314081 2.22806406021
+        <UV>  {
+          0.651759 0.796087
+          <Tangent> { 0.623661 0.652467 0.430503 }
+          <Binormal> { -0.716081 0.642020 0.064333 }
+        }
+        <Normal> { 0.400403 0.522050 -0.753044 }
+      }
+      <Vertex> 228 {
+        -0.384607583284 0.351681262255 2.10695934296
+        <UV>  {
+          0.651809 0.796257
+          <Tangent> { -0.405870 -0.431429 -0.805691 }
+          <Binormal> { -0.137294 -0.604288 0.392745 }
+        }
+        <Normal> { 0.932096 0.023133 0.361431 }
+      }
+      <Vertex> 229 {
+        -0.251144945621 0.379294753075 2.39263415337
+        <UV>  {
+          0.652179 0.796281
+          <Tangent> { -0.463592 -0.080018 -0.882428 }
+          <Binormal> { -0.355516 -0.586699 0.239975 }
+        }
+        <Normal> { 0.855342 -0.370006 0.362560 }
+      }
+      <Vertex> 230 {
+        -0.47253677249 0.404162049294 2.1069419384
+        <UV>  {
+          0.651776 0.796304
+          <Tangent> { -0.261703 0.706388 -0.657668 }
+          <Binormal> { -0.037263 -0.012277 0.001642 }
+        }
+        <Normal> { 0.268410 -0.730766 0.627613 }
+      }
+      <Vertex> 231 {
+        -0.198053300381 0.351298213005 2.28843545914
+        <UV>  {
+          0.652044 0.796048
+          <Tangent> { 0.268215 0.247929 -0.930909 }
+          <Binormal> { 0.193669 -0.838229 -0.167446 }
+        }
+        <Normal> { 0.950957 0.254738 -0.175329 }
+      }
+      <Vertex> 232 {
+        -0.251144945621 0.379294753075 2.39263415337
+        <UV>  {
+          0.652179 0.796281
+          <Tangent> { -0.463592 -0.080018 -0.882428 }
+          <Binormal> { -0.355516 -0.586699 0.239975 }
+        }
+        <Normal> { 0.855342 -0.370006 0.362560 }
+      }
+      <Vertex> 233 {
+        -0.384607583284 0.351681262255 2.10695934296
+        <UV>  {
+          0.651809 0.796257
+          <Tangent> { -0.405870 -0.431429 -0.805691 }
+          <Binormal> { -0.137294 -0.604288 0.392745 }
+        }
+        <Normal> { 0.932096 0.023133 0.361431 }
+      }
+      <Vertex> 234 {
+        -0.198053300381 0.351298213005 2.28843545914
+        <UV>  {
+          0.652044 0.796048
+          <Tangent> { 0.268215 0.247929 -0.930909 }
+          <Binormal> { 0.193669 -0.838229 -0.167446 }
+        }
+        <Normal> { 0.950957 0.254738 -0.175329 }
+      }
+      <Vertex> 235 {
+        -0.384607583284 0.351681262255 2.10695934296
+        <UV>  {
+          0.651809 0.796257
+          <Tangent> { -0.405870 -0.431429 -0.805691 }
+          <Binormal> { -0.137294 -0.604288 0.392745 }
+        }
+        <Normal> { 0.932096 0.023133 0.361431 }
+      }
+      <Vertex> 236 {
+        -0.333772152662 0.363321483135 2.02427983284
+        <UV>  {
+          0.651773 0.796248
+          <Tangent> { -0.114987 -0.240612 -0.963786 }
+          <Binormal> { 0.778786 -0.622503 0.062495 }
+        }
+        <Normal> { 0.609821 0.732566 -0.302347 }
+      }
+      <Vertex> 237 {
+        -0.333772152662 0.363321483135 2.02427983284
+        <UV>  {
+          0.651773 0.796248
+          <Tangent> { -0.114987 -0.240612 -0.963786 }
+          <Binormal> { 0.778786 -0.622503 0.062495 }
+        }
+        <Normal> { 0.609821 0.732566 -0.302347 }
+      }
+      <Vertex> 238 {
+        -0.167449593544 0.444012314081 2.22806406021
+        <UV>  {
+          0.651759 0.796087
+          <Tangent> { 0.623661 0.652467 0.430503 }
+          <Binormal> { -0.716081 0.642020 0.064333 }
+        }
+        <Normal> { 0.400403 0.522050 -0.753044 }
+      }
+      <Vertex> 239 {
+        -0.198053300381 0.351298213005 2.28843545914
+        <UV>  {
+          0.652044 0.796048
+          <Tangent> { 0.268215 0.247929 -0.930909 }
+          <Binormal> { 0.193669 -0.838229 -0.167446 }
+        }
+        <Normal> { 0.950957 0.254738 -0.175329 }
+      }
+      <Vertex> 240 {
+        -0.612223505974 0.328746289015 1.87060773373
+        <UV>  {
+          0.651771 0.796263
+          <Tangent> { 0.279057 0.762125 0.584203 }
+          <Binormal> { 0.131268 -0.290256 0.315952 }
+        }
+        <Normal> { -0.659749 -0.669607 -0.341044 }
+      }
+      <Vertex> 241 {
+        -0.42640838027 0.493491858244 1.87759721279
+        <UV>  {
+          0.651758 0.796242
+          <Tangent> { -0.601098 0.704292 0.377697 }
+          <Binormal> { -0.644671 -0.698571 0.276643 }
+        }
+        <Normal> { -0.543321 0.176366 -0.820765 }
+      }
+      <Vertex> 242 {
+        -0.513370156288 0.303423255682 1.8055306673
+        <UV>  {
+          0.651769 0.796259
+          <Tangent> { 0.196817 0.766166 0.611762 }
+          <Binormal> { -0.933730 0.027001 0.266585 }
+        }
+        <Normal> { -0.234443 0.441847 -0.865902 }
+      }
+      <Vertex> 243 {
+        -0.42640838027 0.493491858244 1.87759721279
+        <UV>  {
+          0.651758 0.796242
+          <Tangent> { -0.601098 0.704292 0.377697 }
+          <Binormal> { -0.644671 -0.698571 0.276643 }
+        }
+        <Normal> { -0.543321 0.176366 -0.820765 }
+      }
+      <Vertex> 244 {
+        -0.612223505974 0.328746289015 1.87060773373
+        <UV>  {
+          0.651771 0.796263
+          <Tangent> { 0.279057 0.762125 0.584203 }
+          <Binormal> { 0.131268 -0.290256 0.315952 }
+        }
+        <Normal> { -0.659749 -0.669607 -0.341044 }
+      }
+      <Vertex> 245 {
+        -0.516265273094 0.479841262102 2.00192165375
+        <UV>  {
+          0.651767 0.796273
+          <Tangent> { 0.021332 0.867875 -0.496324 }
+          <Binormal> { -0.215813 0.248195 0.424720 }
+        }
+        <Normal> { -0.509781 -0.830042 0.226020 }
+      }
+      <Vertex> 246 {
+        -0.612223505974 0.328746289015 1.87060773373
+        <UV>  {
+          0.651771 0.796263
+          <Tangent> { 0.279057 0.762125 0.584203 }
+          <Binormal> { 0.131268 -0.290256 0.315952 }
+        }
+        <Normal> { -0.659749 -0.669607 -0.341044 }
+      }
+      <Vertex> 247 {
+        -0.542625010014 0.262826532125 2.03891277313
+        <UV>  {
+          0.651775 0.796269
+          <Tangent> { 0.601270 0.776240 0.189540 }
+          <Binormal> { 0.758748 -0.485374 -0.419147 }
+        }
+        <Normal> { 0.164861 -0.484268 0.859218 }
+      }
+      <Vertex> 248 {
+        -0.516265273094 0.479841262102 2.00192165375
+        <UV>  {
+          0.651767 0.796273
+          <Tangent> { 0.021332 0.867875 -0.496324 }
+          <Binormal> { -0.215813 0.248195 0.424720 }
+        }
+        <Normal> { -0.509781 -0.830042 0.226020 }
+      }
+      <Vertex> 249 {
+        -0.542625010014 0.262826532125 2.03891277313
+        <UV>  {
+          0.651775 0.796269
+          <Tangent> { 0.601270 0.776240 0.189540 }
+          <Binormal> { 0.758748 -0.485374 -0.419147 }
+        }
+        <Normal> { 0.164861 -0.484268 0.859218 }
+      }
+      <Vertex> 250 {
+        -0.47253677249 0.404162049294 2.1069419384
+        <UV>  {
+          0.651776 0.796304
+          <Tangent> { -0.261703 0.706388 -0.657668 }
+          <Binormal> { -0.037263 -0.012277 0.001642 }
+        }
+        <Normal> { 0.268410 -0.730766 0.627613 }
+      }
+      <Vertex> 251 {
+        -0.516265273094 0.479841262102 2.00192165375
+        <UV>  {
+          0.651767 0.796273
+          <Tangent> { 0.021332 0.867875 -0.496324 }
+          <Binormal> { -0.215813 0.248195 0.424720 }
+        }
+        <Normal> { -0.509781 -0.830042 0.226020 }
+      }
+      <Vertex> 252 {
+        -0.42640838027 0.493491858244 1.87759721279
+        <UV>  {
+          0.651758 0.796242
+          <Tangent> { -0.601098 0.704292 0.377697 }
+          <Binormal> { -0.644671 -0.698571 0.276643 }
+        }
+        <Normal> { -0.543321 0.176366 -0.820765 }
+      }
+      <Vertex> 253 {
+        -0.454008966684 0.251655757427 1.91505205631
+        <UV>  {
+          0.651770 0.796259
+          <Tangent> { -0.001030 -0.825955 -0.563734 }
+          <Binormal> { 0.506868 -0.300391 0.439191 }
+        }
+        <Normal> { 0.532792 0.845424 -0.036653 }
+      }
+      <Vertex> 254 {
+        -0.513370156288 0.303423255682 1.8055306673
+        <UV>  {
+          0.651769 0.796259
+          <Tangent> { 0.196817 0.766166 0.611762 }
+          <Binormal> { -0.933730 0.027001 0.266585 }
+        }
+        <Normal> { -0.234443 0.441847 -0.865902 }
+      }
+      <Vertex> 255 {
+        -0.42640838027 0.493491858244 1.87759721279
+        <UV>  {
+          0.651758 0.796242
+          <Tangent> { -0.601098 0.704292 0.377697 }
+          <Binormal> { -0.644671 -0.698571 0.276643 }
+        }
+        <Normal> { -0.543321 0.176366 -0.820765 }
+      }
+      <Vertex> 256 {
+        -0.340605050325 0.40765145421 1.94320487976
+        <UV>  {
+          0.651752 0.796245
+          <Tangent> { 0.251919 -0.937288 0.240892 }
+          <Binormal> { 0.386740 0.155148 0.199223 }
+        }
+        <Normal> { 0.000671 0.788324 -0.615223 }
+      }
+      <Vertex> 257 {
+        -0.454008966684 0.251655757427 1.91505205631
+        <UV>  {
+          0.651770 0.796259
+          <Tangent> { -0.001030 -0.825955 -0.563734 }
+          <Binormal> { 0.506868 -0.300391 0.439191 }
+        }
+        <Normal> { 0.532792 0.845424 -0.036653 }
+      }
+      <Vertex> 258 {
+        -0.454008966684 0.251655757427 1.91505205631
+        <UV>  {
+          0.651770 0.796259
+          <Tangent> { -0.001030 -0.825955 -0.563734 }
+          <Binormal> { 0.506868 -0.300391 0.439191 }
+        }
+        <Normal> { 0.532792 0.845424 -0.036653 }
+      }
+      <Vertex> 259 {
+        -0.340605050325 0.40765145421 1.94320487976
+        <UV>  {
+          0.651752 0.796245
+          <Tangent> { 0.251919 -0.937288 0.240892 }
+          <Binormal> { 0.386740 0.155148 0.199223 }
+        }
+        <Normal> { 0.000671 0.788324 -0.615223 }
+      }
+      <Vertex> 260 {
+        -0.333772152662 0.363321483135 2.02427983284
+        <UV>  {
+          0.651773 0.796248
+          <Tangent> { -0.114987 -0.240612 -0.963786 }
+          <Binormal> { 0.778786 -0.622503 0.062495 }
+        }
+        <Normal> { 0.609821 0.732566 -0.302347 }
+      }
+      <Vertex> 261 {
+        -0.384607583284 0.351681262255 2.10695934296
+        <UV>  {
+          0.651809 0.796257
+          <Tangent> { -0.405870 -0.431429 -0.805691 }
+          <Binormal> { -0.137294 -0.604288 0.392745 }
+        }
+        <Normal> { 0.932096 0.023133 0.361431 }
+      }
+      <Vertex> 262 {
+        -0.47253677249 0.404162049294 2.1069419384
+        <UV>  {
+          0.651776 0.796304
+          <Tangent> { -0.261703 0.706388 -0.657668 }
+          <Binormal> { -0.037263 -0.012277 0.001642 }
+        }
+        <Normal> { 0.268410 -0.730766 0.627613 }
+      }
+      <Vertex> 263 {
+        -0.542625010014 0.262826532125 2.03891277313
+        <UV>  {
+          0.651775 0.796269
+          <Tangent> { 0.601270 0.776240 0.189540 }
+          <Binormal> { 0.758748 -0.485374 -0.419147 }
+        }
+        <Normal> { 0.164861 -0.484268 0.859218 }
+      }
+      <Vertex> 264 {
+        -0.384607583284 0.351681262255 2.10695934296
+        <UV>  {
+          0.651809 0.796257
+          <Tangent> { -0.405870 -0.431429 -0.805691 }
+          <Binormal> { -0.137294 -0.604288 0.392745 }
+        }
+        <Normal> { 0.932096 0.023133 0.361431 }
+      }
+      <Vertex> 265 {
+        -0.542625010014 0.262826532125 2.03891277313
+        <UV>  {
+          0.651775 0.796269
+          <Tangent> { 0.601270 0.776240 0.189540 }
+          <Binormal> { 0.758748 -0.485374 -0.419147 }
+        }
+        <Normal> { 0.164861 -0.484268 0.859218 }
+      }
+      <Vertex> 266 {
+        -0.454008966684 0.251655757427 1.91505205631
+        <UV>  {
+          0.651770 0.796259
+          <Tangent> { -0.001030 -0.825955 -0.563734 }
+          <Binormal> { 0.506868 -0.300391 0.439191 }
+        }
+        <Normal> { 0.532792 0.845424 -0.036653 }
+      }
+      <Vertex> 267 {
+        -0.454008966684 0.251655757427 1.91505205631
+        <UV>  {
+          0.651770 0.796259
+          <Tangent> { -0.001030 -0.825955 -0.563734 }
+          <Binormal> { 0.506868 -0.300391 0.439191 }
+        }
+        <Normal> { 0.532792 0.845424 -0.036653 }
+      }
+      <Vertex> 268 {
+        -0.333772152662 0.363321483135 2.02427983284
+        <UV>  {
+          0.651773 0.796248
+          <Tangent> { -0.114987 -0.240612 -0.963786 }
+          <Binormal> { 0.778786 -0.622503 0.062495 }
+        }
+        <Normal> { 0.609821 0.732566 -0.302347 }
+      }
+      <Vertex> 269 {
+        -0.384607583284 0.351681262255 2.10695934296
+        <UV>  {
+          0.651809 0.796257
+          <Tangent> { -0.405870 -0.431429 -0.805691 }
+          <Binormal> { -0.137294 -0.604288 0.392745 }
+        }
+        <Normal> { 0.932096 0.023133 0.361431 }
+      }
+      <Vertex> 270 {
+        -0.343281209469 0.609579205513 1.30489325523
+        <UV>  {
+          0.650061 0.794514
+          <Tangent> { -0.002374 0.831929 -0.554878 }
+          <Binormal> { -0.255914 0.038477 0.058783 }
+        }
+        <Normal> { -0.067965 -0.944212 0.322153 }
+      }
+      <Vertex> 271 {
+        -0.149396508932 0.793259441853 1.42989778519
+        <UV>  {
+          0.649962 0.794617
+          <Tangent> { 0.842038 0.534473 -0.072872 }
+          <Binormal> { 0.033799 -0.048777 0.032793 }
+        }
+        <Normal> { -0.854060 -0.503159 0.131840 }
+      }
+      <Vertex> 272 {
+        -0.231032162905 0.793259441853 1.11355960369
+        <UV>  {
+          0.649994 0.794479
+          <Tangent> { 0.845819 0.475403 0.242038 }
+          <Binormal> { 0.079526 -0.230136 0.174116 }
+        }
+        <Normal> { -0.945494 -0.325571 0.001526 }
+      }
+      <Vertex> 273 {
+        -0.149396508932 0.793259441853 1.42989778519
+        <UV>  {
+          0.649962 0.794617
+          <Tangent> { 0.842038 0.534473 -0.072872 }
+          <Binormal> { 0.033799 -0.048777 0.032793 }
+        }
+        <Normal> { -0.854060 -0.503159 0.131840 }
+      }
+      <Vertex> 274 {
+        -0.343281209469 0.609579205513 1.30489325523
+        <UV>  {
+          0.650061 0.794514
+          <Tangent> { -0.002374 0.831929 -0.554878 }
+          <Binormal> { -0.255914 0.038477 0.058783 }
+        }
+        <Normal> { -0.067965 -0.944212 0.322153 }
+      }
+      <Vertex> 275 {
+        -0.220827713609 0.609579205513 1.61868023872
+        <UV>  {
+          0.650168 0.794690
+          <Tangent> { -0.245564 0.884755 -0.396115 }
+          <Binormal> { 0.088794 0.117800 0.208070 }
+        }
+        <Normal> { 0.006684 -0.871395 0.490493 }
+      }
+      <Vertex> 276 {
+        -0.149396508932 0.793259441853 1.42989778519
+        <UV>  {
+          0.649962 0.794617
+          <Tangent> { 0.842038 0.534473 -0.072872 }
+          <Binormal> { 0.033799 -0.048777 0.032793 }
+        }
+        <Normal> { -0.854060 -0.503159 0.131840 }
+      }
+      <Vertex> 277 {
+        0.0138747924939 0.772850513458 1.16458189487
+        <UV>  {
+          0.649916 0.794448
+          <Tangent> { 0.718605 0.151286 0.678763 }
+          <Binormal> { -0.309063 -0.257579 0.384615 }
+        }
+        <Normal> { -0.830012 0.360485 -0.425550 }
+      }
+      <Vertex> 278 {
+        -0.231032162905 0.793259441853 1.11355960369
+        <UV>  {
+          0.649994 0.794479
+          <Tangent> { 0.845819 0.475403 0.242038 }
+          <Binormal> { 0.079526 -0.230136 0.174116 }
+        }
+        <Normal> { -0.945494 -0.325571 0.001526 }
+      }
+      <Vertex> 279 {
+        -0.149396538734 0.420796751976 1.41969335079
+        <UV>  {
+          0.650182 0.794475
+          <Tangent> { -0.547890 0.180647 -0.816813 }
+          <Binormal> { -0.475941 -0.421729 0.225975 }
+        }
+        <Normal> { 0.707938 -0.645863 0.285684 }
+      }
+      <Vertex> 280 {
+        -0.220827713609 0.609579205513 1.61868023872
+        <UV>  {
+          0.650168 0.794690
+          <Tangent> { -0.245564 0.884755 -0.396115 }
+          <Binormal> { 0.088794 0.117800 0.208070 }
+        }
+        <Normal> { 0.006684 -0.871395 0.490493 }
+      }
+      <Vertex> 281 {
+        -0.343281209469 0.609579205513 1.30489325523
+        <UV>  {
+          0.650061 0.794514
+          <Tangent> { -0.002374 0.831929 -0.554878 }
+          <Binormal> { -0.255914 0.038477 0.058783 }
+        }
+        <Normal> { -0.067965 -0.944212 0.322153 }
+      }
+      <Vertex> 282 {
+        -0.231032192707 0.303445518017 1.12631523609
+        <UV>  {
+          0.650074 0.794431
+          <Tangent> { -0.277297 0.215542 -0.936295 }
+          <Binormal> { -0.516965 -0.683489 -0.004238 }
+        }
+        <Normal> { 0.783746 -0.593921 0.181494 }
+      }
+      <Vertex> 283 {
+        -0.149396538734 0.420796751976 1.41969335079
+        <UV>  {
+          0.650182 0.794475
+          <Tangent> { -0.547890 0.180647 -0.816813 }
+          <Binormal> { -0.475941 -0.421729 0.225975 }
+        }
+        <Normal> { 0.707938 -0.645863 0.285684 }
+      }
+      <Vertex> 284 {
+        -0.343281209469 0.609579205513 1.30489325523
+        <UV>  {
+          0.650061 0.794514
+          <Tangent> { -0.002374 0.831929 -0.554878 }
+          <Binormal> { -0.255914 0.038477 0.058783 }
+        }
+        <Normal> { -0.067965 -0.944212 0.322153 }
+      }
+      <Vertex> 285 {
+        -0.149396538734 0.420796751976 1.41969335079
+        <UV>  {
+          0.650182 0.794475
+          <Tangent> { -0.547890 0.180647 -0.816813 }
+          <Binormal> { -0.475941 -0.421729 0.225975 }
+        }
+        <Normal> { 0.707938 -0.645863 0.285684 }
+      }
+      <Vertex> 286 {
+        -0.231032192707 0.303445518017 1.12631523609
+        <UV>  {
+          0.650074 0.794431
+          <Tangent> { -0.277297 0.215542 -0.936295 }
+          <Binormal> { -0.516965 -0.683489 -0.004238 }
+        }
+        <Normal> { 0.783746 -0.593921 0.181494 }
+      }
+      <Vertex> 287 {
+        0.0138747692108 0.257525444031 1.20029759407
+        <UV>  {
+          0.650097 0.794354
+          <Tangent> { 0.231639 0.560627 -0.795010 }
+          <Binormal> { 0.020848 -0.673143 -0.468614 }
+        }
+        <Normal> { 0.930296 0.228523 -0.286874 }
+      }
+      <Vertex> 288 {
+        0.0138747924939 0.772850513458 1.16458189487
+        <UV>  {
+          0.649916 0.794448
+          <Tangent> { 0.718605 0.151286 0.678763 }
+          <Binormal> { -0.309063 -0.257579 0.384615 }
+        }
+        <Normal> { -0.830012 0.360485 -0.425550 }
+      }
+      <Vertex> 289 {
+        0.049590382725 0.589170277119 1.0778440237
+        <UV>  {
+          0.649963 0.794393
+          <Tangent> { 0.316545 0.740380 0.592990 }
+          <Binormal> { -0.946266 0.202894 0.251803 }
+        }
+        <Normal> { -0.065401 0.642506 -0.763482 }
+      }
+      <Vertex> 290 {
+        -0.123885378242 0.721828222275 0.978350579739
+        <UV>  {
+          0.649986 0.794445
+          <Tangent> { 0.561980 -0.061048 0.824895 }
+          <Binormal> { -0.399414 -0.510930 0.234298 }
+        }
+        <Normal> { -0.814142 0.505356 -0.285867 }
+      }
+      <Vertex> 291 {
+        -0.123885378242 0.721828222275 0.978350579739
+        <UV>  {
+          0.649986 0.794445
+          <Tangent> { 0.561980 -0.061048 0.824895 }
+          <Binormal> { -0.399414 -0.510930 0.234298 }
+        }
+        <Normal> { -0.814142 0.505356 -0.285867 }
+      }
+      <Vertex> 292 {
+        -0.231032162905 0.793259441853 1.11355960369
+        <UV>  {
+          0.649994 0.794479
+          <Tangent> { 0.845819 0.475403 0.242038 }
+          <Binormal> { 0.079526 -0.230136 0.174116 }
+        }
+        <Normal> { -0.945494 -0.325571 0.001526 }
+      }
+      <Vertex> 293 {
+        0.0138747924939 0.772850513458 1.16458189487
+        <UV>  {
+          0.649916 0.794448
+          <Tangent> { 0.718605 0.151286 0.678763 }
+          <Binormal> { -0.309063 -0.257579 0.384615 }
+        }
+        <Normal> { -0.830012 0.360485 -0.425550 }
+      }
+      <Vertex> 294 {
+        -0.123885393143 0.29324105382 1.01916837692
+        <UV>  {
+          0.650056 0.794410
+          <Tangent> { 0.599764 0.587115 -0.543672 }
+          <Binormal> { -0.041295 -0.222390 -0.285716 }
+        }
+        <Normal> { 0.847163 0.352916 -0.397137 }
+      }
+      <Vertex> 295 {
+        0.0138747692108 0.257525444031 1.20029759407
+        <UV>  {
+          0.650097 0.794354
+          <Tangent> { 0.231639 0.560627 -0.795010 }
+          <Binormal> { 0.020848 -0.673143 -0.468614 }
+        }
+        <Normal> { 0.930296 0.228523 -0.286874 }
+      }
+      <Vertex> 296 {
+        -0.231032192707 0.303445518017 1.12631523609
+        <UV>  {
+          0.650074 0.794431
+          <Tangent> { -0.277297 0.215542 -0.936295 }
+          <Binormal> { -0.516965 -0.683489 -0.004238 }
+        }
+        <Normal> { 0.783746 -0.593921 0.181494 }
+      }
+      <Vertex> 297 {
+        -0.123885378242 0.721828222275 0.978350579739
+        <UV>  {
+          0.649986 0.794445
+          <Tangent> { 0.561980 -0.061048 0.824895 }
+          <Binormal> { -0.399414 -0.510930 0.234298 }
+        }
+        <Normal> { -0.814142 0.505356 -0.285867 }
+      }
+      <Vertex> 298 {
+        0.049590382725 0.589170277119 1.0778440237
+        <UV>  {
+          0.649963 0.794393
+          <Tangent> { 0.316545 0.740380 0.592990 }
+          <Binormal> { -0.946266 0.202894 0.251803 }
+        }
+        <Normal> { -0.065401 0.642506 -0.763482 }
+      }
+      <Vertex> 299 {
+        -0.0396986156702 0.589170277119 0.922226071358
+        <UV>  {
+          0.649993 0.794421
+          <Tangent> { 0.081985 0.626177 0.775358 }
+          <Binormal> { -0.956771 -0.075792 0.162377 }
+        }
+        <Normal> { -0.141667 0.898556 -0.415326 }
+      }
+      <Vertex> 300 {
+        -0.0396986156702 0.589170277119 0.922226071358
+        <UV>  {
+          0.649993 0.794421
+          <Tangent> { 0.081985 0.626177 0.775358 }
+          <Binormal> { -0.956771 -0.075792 0.162377 }
+        }
+        <Normal> { -0.141667 0.898556 -0.415326 }
+      }
+      <Vertex> 301 {
+        0.049590382725 0.589170277119 1.0778440237
+        <UV>  {
+          0.649963 0.794393
+          <Tangent> { 0.316545 0.740380 0.592990 }
+          <Binormal> { -0.946266 0.202894 0.251803 }
+        }
+        <Normal> { -0.065401 0.642506 -0.763482 }
+      }
+      <Vertex> 302 {
+        0.0138747692108 0.257525444031 1.20029759407
+        <UV>  {
+          0.650097 0.794354
+          <Tangent> { 0.231639 0.560627 -0.795010 }
+          <Binormal> { 0.020848 -0.673143 -0.468614 }
+        }
+        <Normal> { 0.930296 0.228523 -0.286874 }
+      }
+      <Vertex> 303 {
+        0.0138747692108 0.257525444031 1.20029759407
+        <UV>  {
+          0.650097 0.794354
+          <Tangent> { 0.231639 0.560627 -0.795010 }
+          <Binormal> { 0.020848 -0.673143 -0.468614 }
+        }
+        <Normal> { 0.930296 0.228523 -0.286874 }
+      }
+      <Vertex> 304 {
+        -0.123885393143 0.29324105382 1.01916837692
+        <UV>  {
+          0.650056 0.794410
+          <Tangent> { 0.599764 0.587115 -0.543672 }
+          <Binormal> { -0.041295 -0.222390 -0.285716 }
+        }
+        <Normal> { 0.847163 0.352916 -0.397137 }
+      }
+      <Vertex> 305 {
+        -0.0396986156702 0.589170277119 0.922226071358
+        <UV>  {
+          0.649993 0.794421
+          <Tangent> { 0.081985 0.626177 0.775358 }
+          <Binormal> { -0.956771 -0.075792 0.162377 }
+        }
+        <Normal> { -0.141667 0.898556 -0.415326 }
+      }
+      <Vertex> 306 {
+        -0.435636401176 0.609579205513 0.912191033363
+        <UV>  {
+          0.650021 0.794452
+          <Tangent> { 0.204003 0.858697 -0.470130 }
+          <Binormal> { -0.323345 0.010494 -0.121142 }
+        }
+        <Normal> { -0.092349 -0.982543 0.161382 }
+      }
+      <Vertex> 307 {
+        -0.231032162905 0.793259441853 1.11355960369
+        <UV>  {
+          0.649994 0.794479
+          <Tangent> { 0.845819 0.475403 0.242038 }
+          <Binormal> { 0.079526 -0.230136 0.174116 }
+        }
+        <Normal> { -0.945494 -0.325571 0.001526 }
+      }
+      <Vertex> 308 {
+        -0.336136698723 0.772850513458 0.79374486208
+        <UV>  {
+          0.650008 0.794446
+          <Tangent> { 0.708789 0.688672 0.152803 }
+          <Binormal> { 0.119813 -0.198577 0.339212 }
+        }
+        <Normal> { -0.910123 -0.405713 0.083956 }
+      }
+      <Vertex> 309 {
+        -0.231032162905 0.793259441853 1.11355960369
+        <UV>  {
+          0.649994 0.794479
+          <Tangent> { 0.845819 0.475403 0.242038 }
+          <Binormal> { 0.079526 -0.230136 0.174116 }
+        }
+        <Normal> { -0.945494 -0.325571 0.001526 }
+      }
+      <Vertex> 310 {
+        -0.435636401176 0.609579205513 0.912191033363
+        <UV>  {
+          0.650021 0.794452
+          <Tangent> { 0.204003 0.858697 -0.470130 }
+          <Binormal> { -0.323345 0.010494 -0.121142 }
+        }
+        <Normal> { -0.092349 -0.982543 0.161382 }
+      }
+      <Vertex> 311 {
+        -0.343281209469 0.609579205513 1.30489325523
+        <UV>  {
+          0.650061 0.794514
+          <Tangent> { -0.002374 0.831929 -0.554878 }
+          <Binormal> { -0.255914 0.038477 0.058783 }
+        }
+        <Normal> { -0.067965 -0.944212 0.322153 }
+      }
+      <Vertex> 312 {
+        -0.231032162905 0.793259441853 1.11355960369
+        <UV>  {
+          0.649994 0.794479
+          <Tangent> { 0.845819 0.475403 0.242038 }
+          <Binormal> { 0.079526 -0.230136 0.174116 }
+        }
+        <Normal> { -0.945494 -0.325571 0.001526 }
+      }
+      <Vertex> 313 {
+        -0.123885378242 0.721828222275 0.978350579739
+        <UV>  {
+          0.649986 0.794445
+          <Tangent> { 0.561980 -0.061048 0.824895 }
+          <Binormal> { -0.399414 -0.510930 0.234298 }
+        }
+        <Normal> { -0.814142 0.505356 -0.285867 }
+      }
+      <Vertex> 314 {
+        -0.336136698723 0.772850513458 0.79374486208
+        <UV>  {
+          0.650008 0.794446
+          <Tangent> { 0.708789 0.688672 0.152803 }
+          <Binormal> { 0.119813 -0.198577 0.339212 }
+        }
+        <Normal> { -0.910123 -0.405713 0.083956 }
+      }
+      <Vertex> 315 {
+        -0.231032192707 0.303445518017 1.12631523609
+        <UV>  {
+          0.650074 0.794431
+          <Tangent> { -0.277297 0.215542 -0.936295 }
+          <Binormal> { -0.516965 -0.683489 -0.004238 }
+        }
+        <Normal> { 0.783746 -0.593921 0.181494 }
+      }
+      <Vertex> 316 {
+        -0.343281209469 0.609579205513 1.30489325523
+        <UV>  {
+          0.650061 0.794514
+          <Tangent> { -0.002374 0.831929 -0.554878 }
+          <Binormal> { -0.255914 0.038477 0.058783 }
+        }
+        <Normal> { -0.067965 -0.944212 0.322153 }
+      }
+      <Vertex> 317 {
+        -0.435636401176 0.609579205513 0.912191033363
+        <UV>  {
+          0.650021 0.794452
+          <Tangent> { 0.204003 0.858697 -0.470130 }
+          <Binormal> { -0.323345 0.010494 -0.121142 }
+        }
+        <Normal> { -0.092349 -0.982543 0.161382 }
+      }
+      <Vertex> 318 {
+        -0.335018128157 0.385081171989 0.807944178581
+        <UV>  {
+          0.650028 0.794435
+          <Tangent> { 0.149333 0.244456 -0.958092 }
+          <Binormal> { -0.569096 -0.757537 -0.281987 }
+        }
+        <Normal> { 0.817225 -0.550523 -0.170354 }
+      }
+      <Vertex> 319 {
+        -0.231032192707 0.303445518017 1.12631523609
+        <UV>  {
+          0.650074 0.794431
+          <Tangent> { -0.277297 0.215542 -0.936295 }
+          <Binormal> { -0.516965 -0.683489 -0.004238 }
+        }
+        <Normal> { 0.783746 -0.593921 0.181494 }
+      }
+      <Vertex> 320 {
+        -0.435636401176 0.609579205513 0.912191033363
+        <UV>  {
+          0.650021 0.794452
+          <Tangent> { 0.204003 0.858697 -0.470130 }
+          <Binormal> { -0.323345 0.010494 -0.121142 }
+        }
+        <Normal> { -0.092349 -0.982543 0.161382 }
+      }
+      <Vertex> 321 {
+        -0.231032192707 0.303445518017 1.12631523609
+        <UV>  {
+          0.650074 0.794431
+          <Tangent> { -0.277297 0.215542 -0.936295 }
+          <Binormal> { -0.516965 -0.683489 -0.004238 }
+        }
+        <Normal> { 0.783746 -0.593921 0.181494 }
+      }
+      <Vertex> 322 {
+        -0.335018128157 0.385081171989 0.807944178581
+        <UV>  {
+          0.650028 0.794435
+          <Tangent> { 0.149333 0.244456 -0.958092 }
+          <Binormal> { -0.569096 -0.757537 -0.281987 }
+        }
+        <Normal> { 0.817225 -0.550523 -0.170354 }
+      }
+      <Vertex> 323 {
+        -0.123885393143 0.29324105382 1.01916837692
+        <UV>  {
+          0.650056 0.794410
+          <Tangent> { 0.599764 0.587115 -0.543672 }
+          <Binormal> { -0.041295 -0.222390 -0.285716 }
+        }
+        <Normal> { 0.847163 0.352916 -0.397137 }
+      }
+      <Vertex> 324 {
+        -0.123885378242 0.721828222275 0.978350579739
+        <UV>  {
+          0.649986 0.794445
+          <Tangent> { 0.561980 -0.061048 0.824895 }
+          <Binormal> { -0.399414 -0.510930 0.234298 }
+        }
+        <Normal> { -0.814142 0.505356 -0.285867 }
+      }
+      <Vertex> 325 {
+        -0.0396986156702 0.589170277119 0.922226071358
+        <UV>  {
+          0.649993 0.794421
+          <Tangent> { 0.081985 0.626177 0.775358 }
+          <Binormal> { -0.956771 -0.075792 0.162377 }
+        }
+        <Normal> { -0.141667 0.898556 -0.415326 }
+      }
+      <Vertex> 326 {
+        -0.216667205095 0.772850513458 0.757513582706
+        <UV>  {
+          0.650004 0.794442
+          <Tangent> { 0.789176 -0.130916 0.600052 }
+          <Binormal> { -0.291975 -0.476946 0.279943 }
+        }
+        <Normal> { -0.865322 0.498276 -0.053591 }
+      }
+      <Vertex> 327 {
+        -0.216667205095 0.772850513458 0.757513582706
+        <UV>  {
+          0.650004 0.794442
+          <Tangent> { 0.789176 -0.130916 0.600052 }
+          <Binormal> { -0.291975 -0.476946 0.279943 }
+        }
+        <Normal> { -0.865322 0.498276 -0.053591 }
+      }
+      <Vertex> 328 {
+        -0.336136698723 0.772850513458 0.79374486208
+        <UV>  {
+          0.650008 0.794446
+          <Tangent> { 0.708789 0.688672 0.152803 }
+          <Binormal> { 0.119813 -0.198577 0.339212 }
+        }
+        <Normal> { -0.910123 -0.405713 0.083956 }
+      }
+      <Vertex> 329 {
+        -0.123885378242 0.721828222275 0.978350579739
+        <UV>  {
+          0.649986 0.794445
+          <Tangent> { 0.561980 -0.061048 0.824895 }
+          <Binormal> { -0.399414 -0.510930 0.234298 }
+        }
+        <Normal> { -0.814142 0.505356 -0.285867 }
+      }
+      <Vertex> 330 {
+        -0.219650581479 0.374876707792 0.813192129135
+        <UV>  {
+          0.650029 0.794429
+          <Tangent> { 0.893785 0.343917 -0.287871 }
+          <Binormal> { -0.043636 0.099599 -0.016493 }
+        }
+        <Normal> { 0.865352 0.314524 -0.390149 }
+      }
+      <Vertex> 331 {
+        -0.123885393143 0.29324105382 1.01916837692
+        <UV>  {
+          0.650056 0.794410
+          <Tangent> { 0.599764 0.587115 -0.543672 }
+          <Binormal> { -0.041295 -0.222390 -0.285716 }
+        }
+        <Normal> { 0.847163 0.352916 -0.397137 }
+      }
+      <Vertex> 332 {
+        -0.335018128157 0.385081171989 0.807944178581
+        <UV>  {
+          0.650028 0.794435
+          <Tangent> { 0.149333 0.244456 -0.958092 }
+          <Binormal> { -0.569096 -0.757537 -0.281987 }
+        }
+        <Normal> { 0.817225 -0.550523 -0.170354 }
+      }
+      <Vertex> 333 {
+        -0.216667205095 0.772850513458 0.757513582706
+        <UV>  {
+          0.650004 0.794442
+          <Tangent> { 0.789176 -0.130916 0.600052 }
+          <Binormal> { -0.291975 -0.476946 0.279943 }
+        }
+        <Normal> { -0.865322 0.498276 -0.053591 }
+      }
+      <Vertex> 334 {
+        -0.0396986156702 0.589170277119 0.922226071358
+        <UV>  {
+          0.649993 0.794421
+          <Tangent> { 0.081985 0.626177 0.775358 }
+          <Binormal> { -0.956771 -0.075792 0.162377 }
+        }
+        <Normal> { -0.141667 0.898556 -0.415326 }
+      }
+      <Vertex> 335 {
+        -0.096777305007 0.589170277119 0.727677464485
+        <UV>  {
+          0.650006 0.794433
+          <Tangent> { -0.298562 0.680688 0.668972 }
+          <Binormal> { -0.819216 -0.111819 -0.251838 }
+        }
+        <Normal> { -0.053529 0.965545 -0.254585 }
+      }
+      <Vertex> 336 {
+        -0.096777305007 0.589170277119 0.727677464485
+        <UV>  {
+          0.650006 0.794433
+          <Tangent> { -0.298562 0.680688 0.668972 }
+          <Binormal> { -0.819216 -0.111819 -0.251838 }
+        }
+        <Normal> { -0.053529 0.965545 -0.254585 }
+      }
+      <Vertex> 337 {
+        -0.0396986156702 0.589170277119 0.922226071358
+        <UV>  {
+          0.649993 0.794421
+          <Tangent> { 0.081985 0.626177 0.775358 }
+          <Binormal> { -0.956771 -0.075792 0.162377 }
+        }
+        <Normal> { -0.141667 0.898556 -0.415326 }
+      }
+      <Vertex> 338 {
+        -0.123885393143 0.29324105382 1.01916837692
+        <UV>  {
+          0.650056 0.794410
+          <Tangent> { 0.599764 0.587115 -0.543672 }
+          <Binormal> { -0.041295 -0.222390 -0.285716 }
+        }
+        <Normal> { 0.847163 0.352916 -0.397137 }
+      }
+      <Vertex> 339 {
+        -0.123885393143 0.29324105382 1.01916837692
+        <UV>  {
+          0.650056 0.794410
+          <Tangent> { 0.599764 0.587115 -0.543672 }
+          <Binormal> { -0.041295 -0.222390 -0.285716 }
+        }
+        <Normal> { 0.847163 0.352916 -0.397137 }
+      }
+      <Vertex> 340 {
+        -0.219650581479 0.374876707792 0.813192129135
+        <UV>  {
+          0.650029 0.794429
+          <Tangent> { 0.893785 0.343917 -0.287871 }
+          <Binormal> { -0.043636 0.099599 -0.016493 }
+        }
+        <Normal> { 0.865352 0.314524 -0.390149 }
+      }
+      <Vertex> 341 {
+        -0.096777305007 0.589170277119 0.727677464485
+        <UV>  {
+          0.650006 0.794433
+          <Tangent> { -0.298562 0.680688 0.668972 }
+          <Binormal> { -0.819216 -0.111819 -0.251838 }
+        }
+        <Normal> { -0.053529 0.965545 -0.254585 }
+      }
+      <Vertex> 342 {
+        -0.449243366718 0.61468142271 0.536181986332
+        <UV>  {
+          0.650012 0.794439
+          <Tangent> { -0.272937 0.200516 -0.940903 }
+          <Binormal> { -0.827162 0.071699 0.255223 }
+        }
+        <Normal> { 0.016602 -0.947295 0.319926 }
+      }
+      <Vertex> 343 {
+        -0.336136698723 0.772850513458 0.79374486208
+        <UV>  {
+          0.650008 0.794446
+          <Tangent> { 0.708789 0.688672 0.152803 }
+          <Binormal> { 0.119813 -0.198577 0.339212 }
+        }
+        <Normal> { -0.910123 -0.405713 0.083956 }
+      }
+      <Vertex> 344 {
+        -0.35600438714 0.793259441853 0.480154633522
+        <UV>  {
+          0.650010 0.794439
+          <Tangent> { 0.987258 0.105761 0.118897 }
+          <Binormal> { 0.068456 -0.519512 -0.106303 }
+        }
+        <Normal> { -0.884793 -0.202460 0.419660 }
+      }
+      <Vertex> 345 {
+        -0.336136698723 0.772850513458 0.79374486208
+        <UV>  {
+          0.650008 0.794446
+          <Tangent> { 0.708789 0.688672 0.152803 }
+          <Binormal> { 0.119813 -0.198577 0.339212 }
+        }
+        <Normal> { -0.910123 -0.405713 0.083956 }
+      }
+      <Vertex> 346 {
+        -0.449243366718 0.61468142271 0.536181986332
+        <UV>  {
+          0.650012 0.794439
+          <Tangent> { -0.272937 0.200516 -0.940903 }
+          <Binormal> { -0.827162 0.071699 0.255223 }
+        }
+        <Normal> { 0.016602 -0.947295 0.319926 }
+      }
+      <Vertex> 347 {
+        -0.435636401176 0.609579205513 0.912191033363
+        <UV>  {
+          0.650021 0.794452
+          <Tangent> { 0.204003 0.858697 -0.470130 }
+          <Binormal> { -0.323345 0.010494 -0.121142 }
+        }
+        <Normal> { -0.092349 -0.982543 0.161382 }
+      }
+      <Vertex> 348 {
+        -0.336136698723 0.772850513458 0.79374486208
+        <UV>  {
+          0.650008 0.794446
+          <Tangent> { 0.708789 0.688672 0.152803 }
+          <Binormal> { 0.119813 -0.198577 0.339212 }
+        }
+        <Normal> { -0.910123 -0.405713 0.083956 }
+      }
+      <Vertex> 349 {
+        -0.216667205095 0.772850513458 0.757513582706
+        <UV>  {
+          0.650004 0.794442
+          <Tangent> { 0.789176 -0.130916 0.600052 }
+          <Binormal> { -0.291975 -0.476946 0.279943 }
+        }
+        <Normal> { -0.865322 0.498276 -0.053591 }
+      }
+      <Vertex> 350 {
+        -0.35600438714 0.793259441853 0.480154633522
+        <UV>  {
+          0.650010 0.794439
+          <Tangent> { 0.987258 0.105761 0.118897 }
+          <Binormal> { 0.068456 -0.519512 -0.106303 }
+        }
+        <Normal> { -0.884793 -0.202460 0.419660 }
+      }
+      <Vertex> 351 {
+        -0.335018128157 0.385081171989 0.807944178581
+        <UV>  {
+          0.650028 0.794435
+          <Tangent> { 0.149333 0.244456 -0.958092 }
+          <Binormal> { -0.569096 -0.757537 -0.281987 }
+        }
+        <Normal> { 0.817225 -0.550523 -0.170354 }
+      }
+      <Vertex> 352 {
+        -0.435636401176 0.609579205513 0.912191033363
+        <UV>  {
+          0.650021 0.794452
+          <Tangent> { 0.204003 0.858697 -0.470130 }
+          <Binormal> { -0.323345 0.010494 -0.121142 }
+        }
+        <Normal> { -0.092349 -0.982543 0.161382 }
+      }
+      <Vertex> 353 {
+        -0.449243366718 0.61468142271 0.536181986332
+        <UV>  {
+          0.650012 0.794439
+          <Tangent> { -0.272937 0.200516 -0.940903 }
+          <Binormal> { -0.827162 0.071699 0.255223 }
+        }
+        <Normal> { 0.016602 -0.947295 0.319926 }
+      }
+      <Vertex> 354 {
+        -0.3545127213 0.512636899948 0.500786542892
+        <UV>  {
+          0.650013 0.794437
+          <Tangent> { 0.037811 -0.679233 -0.732948 }
+          <Binormal> { -0.460892 -0.661630 0.589365 }
+        }
+        <Normal> { 0.887112 -0.348857 0.302103 }
+      }
+      <Vertex> 355 {
+        -0.335018128157 0.385081171989 0.807944178581
+        <UV>  {
+          0.650028 0.794435
+          <Tangent> { 0.149333 0.244456 -0.958092 }
+          <Binormal> { -0.569096 -0.757537 -0.281987 }
+        }
+        <Normal> { 0.817225 -0.550523 -0.170354 }
+      }
+      <Vertex> 356 {
+        -0.449243366718 0.61468142271 0.536181986332
+        <UV>  {
+          0.650012 0.794439
+          <Tangent> { -0.272937 0.200516 -0.940903 }
+          <Binormal> { -0.827162 0.071699 0.255223 }
+        }
+        <Normal> { 0.016602 -0.947295 0.319926 }
+      }
+      <Vertex> 357 {
+        -0.335018128157 0.385081171989 0.807944178581
+        <UV>  {
+          0.650028 0.794435
+          <Tangent> { 0.149333 0.244456 -0.958092 }
+          <Binormal> { -0.569096 -0.757537 -0.281987 }
+        }
+        <Normal> { 0.817225 -0.550523 -0.170354 }
+      }
+      <Vertex> 358 {
+        -0.3545127213 0.512636899948 0.500786542892
+        <UV>  {
+          0.650013 0.794437
+          <Tangent> { 0.037811 -0.679233 -0.732948 }
+          <Binormal> { -0.460892 -0.661630 0.589365 }
+        }
+        <Normal> { 0.887112 -0.348857 0.302103 }
+      }
+      <Vertex> 359 {
+        -0.219650581479 0.374876707792 0.813192129135
+        <UV>  {
+          0.650029 0.794429
+          <Tangent> { 0.893785 0.343917 -0.287871 }
+          <Binormal> { -0.043636 0.099599 -0.016493 }
+        }
+        <Normal> { 0.865352 0.314524 -0.390149 }
+      }
+      <Vertex> 360 {
+        -0.216667205095 0.772850513458 0.757513582706
+        <UV>  {
+          0.650004 0.794442
+          <Tangent> { 0.789176 -0.130916 0.600052 }
+          <Binormal> { -0.291975 -0.476946 0.279943 }
+        }
+        <Normal> { -0.865322 0.498276 -0.053591 }
+      }
+      <Vertex> 361 {
+        -0.096777305007 0.589170277119 0.727677464485
+        <UV>  {
+          0.650006 0.794433
+          <Tangent> { -0.298562 0.680688 0.668972 }
+          <Binormal> { -0.819216 -0.111819 -0.251838 }
+        }
+        <Normal> { -0.053529 0.965545 -0.254585 }
+      }
+      <Vertex> 362 {
+        -0.251364469528 0.772850513458 0.46946310997
+        <UV>  {
+          0.650009 0.794439
+          <Tangent> { -0.098030 -0.593124 0.799121 }
+          <Binormal> { -0.631669 -0.559348 -0.492648 }
+        }
+        <Normal> { -0.718314 0.679373 0.149663 }
+      }
+      <Vertex> 363 {
+        -0.251364469528 0.772850513458 0.46946310997
+        <UV>  {
+          0.650009 0.794439
+          <Tangent> { -0.098030 -0.593124 0.799121 }
+          <Binormal> { -0.631669 -0.559348 -0.492648 }
+        }
+        <Normal> { -0.718314 0.679373 0.149663 }
+      }
+      <Vertex> 364 {
+        -0.35600438714 0.793259441853 0.480154633522
+        <UV>  {
+          0.650010 0.794439
+          <Tangent> { 0.987258 0.105761 0.118897 }
+          <Binormal> { 0.068456 -0.519512 -0.106303 }
+        }
+        <Normal> { -0.884793 -0.202460 0.419660 }
+      }
+      <Vertex> 365 {
+        -0.216667205095 0.772850513458 0.757513582706
+        <UV>  {
+          0.650004 0.794442
+          <Tangent> { 0.789176 -0.130916 0.600052 }
+          <Binormal> { -0.291975 -0.476946 0.279943 }
+        }
+        <Normal> { -0.865322 0.498276 -0.053591 }
+      }
+      <Vertex> 366 {
+        -0.257331192493 0.502432405949 0.514491260052
+        <UV>  {
+          0.650014 0.794436
+          <Tangent> { 0.932289 0.333661 -0.139667 }
+          <Binormal> { 0.117225 -0.356164 -0.068381 }
+        }
+        <Normal> { 0.934446 0.261086 0.242042 }
+      }
+      <Vertex> 367 {
+        -0.219650581479 0.374876707792 0.813192129135
+        <UV>  {
+          0.650029 0.794429
+          <Tangent> { 0.893785 0.343917 -0.287871 }
+          <Binormal> { -0.043636 0.099599 -0.016493 }
+        }
+        <Normal> { 0.865352 0.314524 -0.390149 }
+      }
+      <Vertex> 368 {
+        -0.3545127213 0.512636899948 0.500786542892
+        <UV>  {
+          0.650013 0.794437
+          <Tangent> { 0.037811 -0.679233 -0.732948 }
+          <Binormal> { -0.460892 -0.661630 0.589365 }
+        }
+        <Normal> { 0.887112 -0.348857 0.302103 }
+      }
+      <Vertex> 369 {
+        -0.251364469528 0.772850513458 0.46946310997
+        <UV>  {
+          0.650009 0.794439
+          <Tangent> { -0.098030 -0.593124 0.799121 }
+          <Binormal> { -0.631669 -0.559348 -0.492648 }
+        }
+        <Normal> { -0.718314 0.679373 0.149663 }
+      }
+      <Vertex> 370 {
+        -0.096777305007 0.589170277119 0.727677464485
+        <UV>  {
+          0.650006 0.794433
+          <Tangent> { -0.298562 0.680688 0.668972 }
+          <Binormal> { -0.819216 -0.111819 -0.251838 }
+        }
+        <Normal> { -0.053529 0.965545 -0.254585 }
+      }
+      <Vertex> 371 {
+        -0.121100708842 0.594272494316 0.461548179388
+        <UV>  {
+          0.650009 0.794437
+          <Tangent> { 0.026867 0.947363 0.319033 }
+          <Binormal> { -0.227259 0.090500 -0.249599 }
+        }
+        <Normal> { 0.290506 0.953398 0.081179 }
+      }
+      <Vertex> 372 {
+        -0.121100708842 0.594272494316 0.461548179388
+        <UV>  {
+          0.650009 0.794437
+          <Tangent> { 0.026867 0.947363 0.319033 }
+          <Binormal> { -0.227259 0.090500 -0.249599 }
+        }
+        <Normal> { 0.290506 0.953398 0.081179 }
+      }
+      <Vertex> 373 {
+        -0.096777305007 0.589170277119 0.727677464485
+        <UV>  {
+          0.650006 0.794433
+          <Tangent> { -0.298562 0.680688 0.668972 }
+          <Binormal> { -0.819216 -0.111819 -0.251838 }
+        }
+        <Normal> { -0.053529 0.965545 -0.254585 }
+      }
+      <Vertex> 374 {
+        -0.219650581479 0.374876707792 0.813192129135
+        <UV>  {
+          0.650029 0.794429
+          <Tangent> { 0.893785 0.343917 -0.287871 }
+          <Binormal> { -0.043636 0.099599 -0.016493 }
+        }
+        <Normal> { 0.865352 0.314524 -0.390149 }
+      }
+      <Vertex> 375 {
+        -0.219650581479 0.374876707792 0.813192129135
+        <UV>  {
+          0.650029 0.794429
+          <Tangent> { 0.893785 0.343917 -0.287871 }
+          <Binormal> { -0.043636 0.099599 -0.016493 }
+        }
+        <Normal> { 0.865352 0.314524 -0.390149 }
+      }
+      <Vertex> 376 {
+        -0.257331192493 0.502432405949 0.514491260052
+        <UV>  {
+          0.650014 0.794436
+          <Tangent> { 0.932289 0.333661 -0.139667 }
+          <Binormal> { 0.117225 -0.356164 -0.068381 }
+        }
+        <Normal> { 0.934446 0.261086 0.242042 }
+      }
+      <Vertex> 377 {
+        -0.121100708842 0.594272494316 0.461548179388
+        <UV>  {
+          0.650009 0.794437
+          <Tangent> { 0.026867 0.947363 0.319033 }
+          <Binormal> { -0.227259 0.090500 -0.249599 }
+        }
+        <Normal> { 0.290506 0.953398 0.081179 }
+      }
+      <Vertex> 378 {
+        -0.595351994038 -0.137318626046 1.73596918583
+        <UV>  {
+          0.651770 0.796263
+          <Tangent> { -0.628629 -0.694744 0.349510 }
+          <Binormal> { 0.321718 -0.273965 0.034064 }
+        }
+        <Normal> { 0.497238 0.495346 -0.712272 }
+      }
+      <Vertex> 379 {
+        -0.63707357645 -0.127948760986 1.73504376411
+        <UV>  {
+          0.651770 0.796263
+          <Tangent> { -0.604747 0.638267 0.476337 }
+          <Binormal> { -0.376791 -0.414826 0.077479 }
+        }
+        <Normal> { 0.251595 -0.393658 -0.884121 }
+      }
+      <Vertex> 380 {
+        -0.575305581093 0.155120283365 1.75453960896
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { -0.891742 0.235179 -0.386636 }
+          <Binormal> { -0.019075 -0.786336 -0.434309 }
+        }
+        <Normal> { 0.014771 0.483139 -0.875393 }
+      }
+      <Vertex> 381 {
+        -0.595351994038 -0.137318626046 1.73596918583
+        <UV>  {
+          0.651770 0.796263
+          <Tangent> { -0.628629 -0.694744 0.349510 }
+          <Binormal> { 0.321718 -0.273965 0.034064 }
+        }
+        <Normal> { 0.497238 0.495346 -0.712272 }
+      }
+      <Vertex> 382 {
+        -0.575305581093 0.155120283365 1.75453960896
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { -0.891742 0.235179 -0.386636 }
+          <Binormal> { -0.019075 -0.786336 -0.434309 }
+        }
+        <Normal> { 0.014771 0.483139 -0.875393 }
+      }
+      <Vertex> 383 {
+        -0.540413320065 -0.0360557101667 1.79304671288
+        <UV>  {
+          0.651771 0.796263
+          <Tangent> { -0.438414 0.177128 -0.881146 }
+          <Binormal> { 0.754482 -0.319938 -0.439706 }
+        }
+        <Normal> { 0.198706 0.922666 -0.330393 }
+      }
+      <Vertex> 384 {
+        -0.63707357645 -0.127948760986 1.73504376411
+        <UV>  {
+          0.651770 0.796263
+          <Tangent> { -0.604747 0.638267 0.476337 }
+          <Binormal> { -0.376791 -0.414826 0.077479 }
+        }
+        <Normal> { 0.251595 -0.393658 -0.884121 }
+      }
+      <Vertex> 385 {
+        -0.645846128464 0.0942840576172 1.70568716526
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { -0.420906 -0.823351 -0.380658 }
+          <Binormal> { 0.905976 -0.402479 -0.131219 }
+        }
+        <Normal> { 0.045167 0.400098 -0.915342 }
+      }
+      <Vertex> 386 {
+        -0.575305581093 0.155120283365 1.75453960896
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { -0.891742 0.235179 -0.386636 }
+          <Binormal> { -0.019075 -0.786336 -0.434309 }
+        }
+        <Normal> { 0.014771 0.483139 -0.875393 }
+      }
+      <Vertex> 387 {
+        -0.540413320065 -0.0360557101667 1.79304671288
+        <UV>  {
+          0.651771 0.796263
+          <Tangent> { -0.438414 0.177128 -0.881146 }
+          <Binormal> { 0.754482 -0.319938 -0.439706 }
+        }
+        <Normal> { 0.198706 0.922666 -0.330393 }
+      }
+      <Vertex> 388 {
+        -0.575305581093 0.155120283365 1.75453960896
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { -0.891742 0.235179 -0.386636 }
+          <Binormal> { -0.019075 -0.786336 -0.434309 }
+        }
+        <Normal> { 0.014771 0.483139 -0.875393 }
+      }
+      <Vertex> 389 {
+        -0.608754038811 0.178599119186 1.72715365887
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { 0.128456 -0.983286 -0.128900 }
+          <Binormal> { 0.879527 0.173011 -0.443282 }
+        }
+        <Normal> { -0.458174 0.056429 -0.887051 }
+      }
+      <Vertex> 390 {
+        -0.608754038811 0.178599119186 1.72715365887
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { 0.128456 -0.983286 -0.128900 }
+          <Binormal> { 0.879527 0.173011 -0.443282 }
+        }
+        <Normal> { -0.458174 0.056429 -0.887051 }
+      }
+      <Vertex> 391 {
+        -0.513370156288 0.303423255682 1.8055306673
+        <UV>  {
+          0.651769 0.796259
+          <Tangent> { 0.196817 0.766166 0.611762 }
+          <Binormal> { -0.933730 0.027001 0.266585 }
+        }
+        <Normal> { -0.234443 0.441847 -0.865902 }
+      }
+      <Vertex> 392 {
+        -0.540413320065 -0.0360557101667 1.79304671288
+        <UV>  {
+          0.651771 0.796263
+          <Tangent> { -0.438414 0.177128 -0.881146 }
+          <Binormal> { 0.754482 -0.319938 -0.439706 }
+        }
+        <Normal> { 0.198706 0.922666 -0.330393 }
+      }
+      <Vertex> 393 {
+        -0.645846128464 0.0942840576172 1.70568716526
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { -0.420906 -0.823351 -0.380658 }
+          <Binormal> { 0.905976 -0.402479 -0.131219 }
+        }
+        <Normal> { 0.045167 0.400098 -0.915342 }
+      }
+      <Vertex> 394 {
+        -0.608754038811 0.178599119186 1.72715365887
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { 0.128456 -0.983286 -0.128900 }
+          <Binormal> { 0.879527 0.173011 -0.443282 }
+        }
+        <Normal> { -0.458174 0.056429 -0.887051 }
+      }
+      <Vertex> 395 {
+        -0.575305581093 0.155120283365 1.75453960896
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { -0.891742 0.235179 -0.386636 }
+          <Binormal> { -0.019075 -0.786336 -0.434309 }
+        }
+        <Normal> { 0.014771 0.483139 -0.875393 }
+      }
+      <Vertex> 396 {
+        -0.645846128464 0.0942840576172 1.70568716526
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { -0.420906 -0.823351 -0.380658 }
+          <Binormal> { 0.905976 -0.402479 -0.131219 }
+        }
+        <Normal> { 0.045167 0.400098 -0.915342 }
+      }
+      <Vertex> 397 {
+        -0.739853024483 0.0506323538721 1.66195082664
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { -0.497757 -0.089816 -0.862636 }
+      }
+      <Vertex> 398 {
+        -0.608754038811 0.178599119186 1.72715365887
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { 0.128456 -0.983286 -0.128900 }
+          <Binormal> { 0.879527 0.173011 -0.443282 }
+        }
+        <Normal> { -0.458174 0.056429 -0.887051 }
+      }
+      <Vertex> 399 {
+        -0.608754038811 0.178599119186 1.72715365887
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { 0.128456 -0.983286 -0.128900 }
+          <Binormal> { 0.879527 0.173011 -0.443282 }
+        }
+        <Normal> { -0.458174 0.056429 -0.887051 }
+      }
+      <Vertex> 400 {
+        -0.612223505974 0.328746289015 1.87060773373
+        <UV>  {
+          0.651771 0.796263
+          <Tangent> { 0.279057 0.762125 0.584203 }
+          <Binormal> { 0.131268 -0.290256 0.315952 }
+        }
+        <Normal> { -0.659749 -0.669607 -0.341044 }
+      }
+      <Vertex> 401 {
+        -0.513370156288 0.303423255682 1.8055306673
+        <UV>  {
+          0.651769 0.796259
+          <Tangent> { 0.196817 0.766166 0.611762 }
+          <Binormal> { -0.933730 0.027001 0.266585 }
+        }
+        <Normal> { -0.234443 0.441847 -0.865902 }
+      }
+      <Vertex> 402 {
+        -0.739853024483 0.0506323538721 1.66195082664
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { -0.497757 -0.089816 -0.862636 }
+      }
+      <Vertex> 403 {
+        -0.867887079716 0.0691117420793 1.72112596035
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { 0.286961 0.789978 0.541837 }
+          <Binormal> { 0.216560 -0.216526 0.200994 }
+        }
+        <Normal> { -0.543107 -0.794702 -0.270943 }
+      }
+      <Vertex> 404 {
+        -0.608754038811 0.178599119186 1.72715365887
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { 0.128456 -0.983286 -0.128900 }
+          <Binormal> { 0.879527 0.173011 -0.443282 }
+        }
+        <Normal> { -0.458174 0.056429 -0.887051 }
+      }
+      <Vertex> 405 {
+        -0.608754038811 0.178599119186 1.72715365887
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { 0.128456 -0.983286 -0.128900 }
+          <Binormal> { 0.879527 0.173011 -0.443282 }
+        }
+        <Normal> { -0.458174 0.056429 -0.887051 }
+      }
+      <Vertex> 406 {
+        -0.867887079716 0.0691117420793 1.72112596035
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { 0.286961 0.789978 0.541837 }
+          <Binormal> { 0.216560 -0.216526 0.200994 }
+        }
+        <Normal> { -0.543107 -0.794702 -0.270943 }
+      }
+      <Vertex> 407 {
+        -0.612223505974 0.328746289015 1.87060773373
+        <UV>  {
+          0.651771 0.796263
+          <Tangent> { 0.279057 0.762125 0.584203 }
+          <Binormal> { 0.131268 -0.290256 0.315952 }
+        }
+        <Normal> { -0.659749 -0.669607 -0.341044 }
+      }
+      <Vertex> 408 {
+        -0.812710523605 -0.122363202274 1.54978144169
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 0.000000 -0.000000 }
+        }
+        <Normal> { 0.198126 0.287454 -0.937040 }
+      }
+      <Vertex> 409 {
+        -0.739853024483 0.0506323538721 1.66195082664
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { -0.497757 -0.089816 -0.862636 }
+      }
+      <Vertex> 410 {
+        -0.645846128464 0.0942840576172 1.70568716526
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { -0.420906 -0.823351 -0.380658 }
+          <Binormal> { 0.905976 -0.402479 -0.131219 }
+        }
+        <Normal> { 0.045167 0.400098 -0.915342 }
+      }
+      <Vertex> 411 {
+        -0.812710523605 -0.122363202274 1.54978144169
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 0.000000 -0.000000 }
+        }
+        <Normal> { 0.198126 0.287454 -0.937040 }
+      }
+      <Vertex> 412 {
+        -0.8746124506 -0.0847666561604 1.62616789341
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 0.000000 -0.000000 }
+        }
+        <Normal> { 0.011109 -0.842555 -0.538469 }
+      }
+      <Vertex> 413 {
+        -0.739853024483 0.0506323538721 1.66195082664
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { -0.497757 -0.089816 -0.862636 }
+      }
+      <Vertex> 414 {
+        -0.739853024483 0.0506323538721 1.66195082664
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { -0.497757 -0.089816 -0.862636 }
+      }
+      <Vertex> 415 {
+        -0.8746124506 -0.0847666561604 1.62616789341
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 0.000000 -0.000000 }
+        }
+        <Normal> { 0.011109 -0.842555 -0.538469 }
+      }
+      <Vertex> 416 {
+        -0.867887079716 0.0691117420793 1.72112596035
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { 0.286961 0.789978 0.541837 }
+          <Binormal> { 0.216560 -0.216526 0.200994 }
+        }
+        <Normal> { -0.543107 -0.794702 -0.270943 }
+      }
+      <Vertex> 417 {
+        -0.58712375164 0.084441460669 1.86722207069
+        <UV>  {
+          0.651770 0.796264
+          <Tangent> { 0.564094 0.747894 0.349851 }
+          <Binormal> { 0.689760 -0.193931 -0.697583 }
+        }
+        <Normal> { 0.453871 -0.634816 0.625263 }
+      }
+      <Vertex> 418 {
+        -0.648916065693 -0.16037145257 1.77259171009
+        <UV>  {
+          0.651770 0.796263
+          <Tangent> { -0.437193 0.210776 0.874320 }
+          <Binormal> { 0.634329 0.578098 0.177824 }
+        }
+        <Normal> { 0.678426 -0.733818 -0.034455 }
+      }
+      <Vertex> 419 {
+        -0.607193887234 -0.16974131763 1.77351844311
+        <UV>  {
+          0.651770 0.796263
+          <Tangent> { -0.725444 0.066796 0.685033 }
+          <Binormal> { 0.089038 0.915983 0.004975 }
+        }
+        <Normal> { 0.910916 -0.090732 0.402478 }
+      }
+      <Vertex> 420 {
+        -0.55824559927 -0.0919111594558 1.86338913441
+        <UV>  {
+          0.651770 0.796264
+          <Tangent> { -0.613786 -0.101605 -0.782907 }
+          <Binormal> { 0.372055 -0.250414 -0.259186 }
+        }
+        <Normal> { 0.694723 0.537278 0.478164 }
+      }
+      <Vertex> 421 {
+        -0.58712375164 0.084441460669 1.86722207069
+        <UV>  {
+          0.651770 0.796264
+          <Tangent> { 0.564094 0.747894 0.349851 }
+          <Binormal> { 0.689760 -0.193931 -0.697583 }
+        }
+        <Normal> { 0.453871 -0.634816 0.625263 }
+      }
+      <Vertex> 422 {
+        -0.607193887234 -0.16974131763 1.77351844311
+        <UV>  {
+          0.651770 0.796263
+          <Tangent> { -0.725444 0.066796 0.685033 }
+          <Binormal> { 0.089038 0.915983 0.004975 }
+        }
+        <Normal> { 0.910916 -0.090732 0.402478 }
+      }
+      <Vertex> 423 {
+        -0.58712375164 0.084441460669 1.86722207069
+        <UV>  {
+          0.651770 0.796264
+          <Tangent> { 0.564094 0.747894 0.349851 }
+          <Binormal> { 0.689760 -0.193931 -0.697583 }
+        }
+        <Normal> { 0.453871 -0.634816 0.625263 }
+      }
+      <Vertex> 424 {
+        -0.663678348064 0.0384279862046 1.776029706
+        <UV>  {
+          0.651770 0.796263
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.951018 -0.080050 0.298563 }
+      }
+      <Vertex> 425 {
+        -0.648916065693 -0.16037145257 1.77259171009
+        <UV>  {
+          0.651770 0.796263
+          <Tangent> { -0.437193 0.210776 0.874320 }
+          <Binormal> { 0.634329 0.578098 0.177824 }
+        }
+        <Normal> { 0.678426 -0.733818 -0.034455 }
+      }
+      <Vertex> 426 {
+        -0.593618035316 0.0926086381078 1.92925977707
+        <UV>  {
+          0.651770 0.796264
+          <Tangent> { -0.496206 0.439319 0.748814 }
+          <Binormal> { 0.078128 0.881615 -0.465459 }
+        }
+        <Normal> { 0.864650 0.172460 0.471786 }
+      }
+      <Vertex> 427 {
+        -0.58712375164 0.084441460669 1.86722207069
+        <UV>  {
+          0.651770 0.796264
+          <Tangent> { 0.564094 0.747894 0.349851 }
+          <Binormal> { 0.689760 -0.193931 -0.697583 }
+        }
+        <Normal> { 0.453871 -0.634816 0.625263 }
+      }
+      <Vertex> 428 {
+        -0.55824559927 -0.0919111594558 1.86338913441
+        <UV>  {
+          0.651770 0.796264
+          <Tangent> { -0.613786 -0.101605 -0.782907 }
+          <Binormal> { 0.372055 -0.250414 -0.259186 }
+        }
+        <Normal> { 0.694723 0.537278 0.478164 }
+      }
+      <Vertex> 429 {
+        -0.55824559927 -0.0919111594558 1.86338913441
+        <UV>  {
+          0.651770 0.796264
+          <Tangent> { -0.613786 -0.101605 -0.782907 }
+          <Binormal> { 0.372055 -0.250414 -0.259186 }
+        }
+        <Normal> { 0.694723 0.537278 0.478164 }
+      }
+      <Vertex> 430 {
+        -0.454008966684 0.251655757427 1.91505205631
+        <UV>  {
+          0.651770 0.796259
+          <Tangent> { -0.001030 -0.825955 -0.563734 }
+          <Binormal> { 0.506868 -0.300391 0.439191 }
+        }
+        <Normal> { 0.532792 0.845424 -0.036653 }
+      }
+      <Vertex> 431 {
+        -0.593618035316 0.0926086381078 1.92925977707
+        <UV>  {
+          0.651770 0.796264
+          <Tangent> { -0.496206 0.439319 0.748814 }
+          <Binormal> { 0.078128 0.881615 -0.465459 }
+        }
+        <Normal> { 0.864650 0.172460 0.471786 }
+      }
+      <Vertex> 432 {
+        -0.58712375164 0.084441460669 1.86722207069
+        <UV>  {
+          0.651770 0.796264
+          <Tangent> { 0.564094 0.747894 0.349851 }
+          <Binormal> { 0.689760 -0.193931 -0.697583 }
+        }
+        <Normal> { 0.453871 -0.634816 0.625263 }
+      }
+      <Vertex> 433 {
+        -0.593618035316 0.0926086381078 1.92925977707
+        <UV>  {
+          0.651770 0.796264
+          <Tangent> { -0.496206 0.439319 0.748814 }
+          <Binormal> { 0.078128 0.881615 -0.465459 }
+        }
+        <Normal> { 0.864650 0.172460 0.471786 }
+      }
+      <Vertex> 434 {
+        -0.663678348064 0.0384279862046 1.776029706
+        <UV>  {
+          0.651770 0.796263
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.951018 -0.080050 0.298563 }
+      }
+      <Vertex> 435 {
+        -0.593618035316 0.0926086381078 1.92925977707
+        <UV>  {
+          0.651770 0.796264
+          <Tangent> { -0.496206 0.439319 0.748814 }
+          <Binormal> { 0.078128 0.881615 -0.465459 }
+        }
+        <Normal> { 0.864650 0.172460 0.471786 }
+      }
+      <Vertex> 436 {
+        -0.813502132893 0.0347265079618 1.80917429924
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { -0.186410 0.916101 0.354978 }
+          <Binormal> { 0.545084 0.364279 -0.653863 }
+        }
+        <Normal> { 0.657918 0.274361 0.701315 }
+      }
+      <Vertex> 437 {
+        -0.663678348064 0.0384279862046 1.776029706
+        <UV>  {
+          0.651770 0.796263
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.951018 -0.080050 0.298563 }
+      }
+      <Vertex> 438 {
+        -0.454008966684 0.251655757427 1.91505205631
+        <UV>  {
+          0.651770 0.796259
+          <Tangent> { -0.001030 -0.825955 -0.563734 }
+          <Binormal> { 0.506868 -0.300391 0.439191 }
+        }
+        <Normal> { 0.532792 0.845424 -0.036653 }
+      }
+      <Vertex> 439 {
+        -0.542625010014 0.262826532125 2.03891277313
+        <UV>  {
+          0.651775 0.796269
+          <Tangent> { 0.601270 0.776240 0.189540 }
+          <Binormal> { 0.758748 -0.485374 -0.419147 }
+        }
+        <Normal> { 0.164861 -0.484268 0.859218 }
+      }
+      <Vertex> 440 {
+        -0.593618035316 0.0926086381078 1.92925977707
+        <UV>  {
+          0.651770 0.796264
+          <Tangent> { -0.496206 0.439319 0.748814 }
+          <Binormal> { 0.078128 0.881615 -0.465459 }
+        }
+        <Normal> { 0.864650 0.172460 0.471786 }
+      }
+      <Vertex> 441 {
+        -0.593618035316 0.0926086381078 1.92925977707
+        <UV>  {
+          0.651770 0.796264
+          <Tangent> { -0.496206 0.439319 0.748814 }
+          <Binormal> { 0.078128 0.881615 -0.465459 }
+        }
+        <Normal> { 0.864650 0.172460 0.471786 }
+      }
+      <Vertex> 442 {
+        -0.877468705177 -0.00936864875257 1.83545899391
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { -0.076207 0.890415 0.448724 }
+          <Binormal> { 0.843035 0.295865 -0.443920 }
+        }
+        <Normal> { 0.533219 -0.405042 0.742668 }
+      }
+      <Vertex> 443 {
+        -0.813502132893 0.0347265079618 1.80917429924
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { -0.186410 0.916101 0.354978 }
+          <Binormal> { 0.545084 0.364279 -0.653863 }
+        }
+        <Normal> { 0.657918 0.274361 0.701315 }
+      }
+      <Vertex> 444 {
+        -0.542625010014 0.262826532125 2.03891277313
+        <UV>  {
+          0.651775 0.796269
+          <Tangent> { 0.601270 0.776240 0.189540 }
+          <Binormal> { 0.758748 -0.485374 -0.419147 }
+        }
+        <Normal> { 0.164861 -0.484268 0.859218 }
+      }
+      <Vertex> 445 {
+        -0.877468705177 -0.00936864875257 1.83545899391
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { -0.076207 0.890415 0.448724 }
+          <Binormal> { 0.843035 0.295865 -0.443920 }
+        }
+        <Normal> { 0.533219 -0.405042 0.742668 }
+      }
+      <Vertex> 446 {
+        -0.593618035316 0.0926086381078 1.92925977707
+        <UV>  {
+          0.651770 0.796264
+          <Tangent> { -0.496206 0.439319 0.748814 }
+          <Binormal> { 0.078128 0.881615 -0.465459 }
+        }
+        <Normal> { 0.864650 0.172460 0.471786 }
+      }
+      <Vertex> 447 {
+        -0.663678348064 0.0384279862046 1.776029706
+        <UV>  {
+          0.651770 0.796263
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.951018 -0.080050 0.298563 }
+      }
+      <Vertex> 448 {
+        -0.813502132893 0.0347265079618 1.80917429924
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { -0.186410 0.916101 0.354978 }
+          <Binormal> { 0.545084 0.364279 -0.653863 }
+        }
+        <Normal> { 0.657918 0.274361 0.701315 }
+      }
+      <Vertex> 449 {
+        -0.812710523605 -0.233838051558 1.76856315136
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { -0.277239 0.678358 0.680418 }
+          <Binormal> { 0.510646 0.698218 -0.488039 }
+        }
+        <Normal> { 0.838343 -0.290933 0.460952 }
+      }
+      <Vertex> 450 {
+        -0.813502132893 0.0347265079618 1.80917429924
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { -0.186410 0.916101 0.354978 }
+          <Binormal> { 0.545084 0.364279 -0.653863 }
+        }
+        <Normal> { 0.657918 0.274361 0.701315 }
+      }
+      <Vertex> 451 {
+        -0.8746124506 -0.154574751854 1.76317322254
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { -0.055029 0.784640 0.617505 }
+          <Binormal> { 0.858946 0.243123 -0.232382 }
+        }
+        <Normal> { 0.353710 -0.820521 0.448958 }
+      }
+      <Vertex> 452 {
+        -0.812710523605 -0.233838051558 1.76856315136
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { -0.277239 0.678358 0.680418 }
+          <Binormal> { 0.510646 0.698218 -0.488039 }
+        }
+        <Normal> { 0.838343 -0.290933 0.460952 }
+      }
+      <Vertex> 453 {
+        -0.877468705177 -0.00936864875257 1.83545899391
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { -0.076207 0.890415 0.448724 }
+          <Binormal> { 0.843035 0.295865 -0.443920 }
+        }
+        <Normal> { 0.533219 -0.405042 0.742668 }
+      }
+      <Vertex> 454 {
+        -0.8746124506 -0.154574751854 1.76317322254
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { -0.055029 0.784640 0.617505 }
+          <Binormal> { 0.858946 0.243123 -0.232382 }
+        }
+        <Normal> { 0.353710 -0.820521 0.448958 }
+      }
+      <Vertex> 455 {
+        -0.813502132893 0.0347265079618 1.80917429924
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { -0.186410 0.916101 0.354978 }
+          <Binormal> { 0.545084 0.364279 -0.653863 }
+        }
+        <Normal> { 0.657918 0.274361 0.701315 }
+      }
+      <Vertex> 456 {
+        -0.542625010014 0.262826532125 2.03891277313
+        <UV>  {
+          0.651775 0.796269
+          <Tangent> { 0.601270 0.776240 0.189540 }
+          <Binormal> { 0.758748 -0.485374 -0.419147 }
+        }
+        <Normal> { 0.164861 -0.484268 0.859218 }
+      }
+      <Vertex> 457 {
+        -0.612223505974 0.328746289015 1.87060773373
+        <UV>  {
+          0.651771 0.796263
+          <Tangent> { 0.279057 0.762125 0.584203 }
+          <Binormal> { 0.131268 -0.290256 0.315952 }
+        }
+        <Normal> { -0.659749 -0.669607 -0.341044 }
+      }
+      <Vertex> 458 {
+        -0.867887079716 0.0691117420793 1.72112596035
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { 0.286961 0.789978 0.541837 }
+          <Binormal> { 0.216560 -0.216526 0.200994 }
+        }
+        <Normal> { -0.543107 -0.794702 -0.270943 }
+      }
+      <Vertex> 459 {
+        -0.867887079716 0.0691117420793 1.72112596035
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { 0.286961 0.789978 0.541837 }
+          <Binormal> { 0.216560 -0.216526 0.200994 }
+        }
+        <Normal> { -0.543107 -0.794702 -0.270943 }
+      }
+      <Vertex> 460 {
+        -0.877468705177 -0.00936864875257 1.83545899391
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { -0.076207 0.890415 0.448724 }
+          <Binormal> { 0.843035 0.295865 -0.443920 }
+        }
+        <Normal> { 0.533219 -0.405042 0.742668 }
+      }
+      <Vertex> 461 {
+        -0.542625010014 0.262826532125 2.03891277313
+        <UV>  {
+          0.651775 0.796269
+          <Tangent> { 0.601270 0.776240 0.189540 }
+          <Binormal> { 0.758748 -0.485374 -0.419147 }
+        }
+        <Normal> { 0.164861 -0.484268 0.859218 }
+      }
+      <Vertex> 462 {
+        -0.8746124506 -0.0847666561604 1.62616789341
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 0.000000 -0.000000 }
+        }
+        <Normal> { 0.011109 -0.842555 -0.538469 }
+      }
+      <Vertex> 463 {
+        -0.8746124506 -0.154574751854 1.76317322254
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { -0.055029 0.784640 0.617505 }
+          <Binormal> { 0.858946 0.243123 -0.232382 }
+        }
+        <Normal> { 0.353710 -0.820521 0.448958 }
+      }
+      <Vertex> 464 {
+        -0.867887079716 0.0691117420793 1.72112596035
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { 0.286961 0.789978 0.541837 }
+          <Binormal> { 0.216560 -0.216526 0.200994 }
+        }
+        <Normal> { -0.543107 -0.794702 -0.270943 }
+      }
+      <Vertex> 465 {
+        -0.867887079716 0.0691117420793 1.72112596035
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { 0.286961 0.789978 0.541837 }
+          <Binormal> { 0.216560 -0.216526 0.200994 }
+        }
+        <Normal> { -0.543107 -0.794702 -0.270943 }
+      }
+      <Vertex> 466 {
+        -0.8746124506 -0.154574751854 1.76317322254
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { -0.055029 0.784640 0.617505 }
+          <Binormal> { 0.858946 0.243123 -0.232382 }
+        }
+        <Normal> { 0.353710 -0.820521 0.448958 }
+      }
+      <Vertex> 467 {
+        -0.877468705177 -0.00936864875257 1.83545899391
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { -0.076207 0.890415 0.448724 }
+          <Binormal> { 0.843035 0.295865 -0.443920 }
+        }
+        <Normal> { 0.533219 -0.405042 0.742668 }
+      }
+      <Vertex> 468 {
+        -0.513370156288 0.303423255682 1.8055306673
+        <UV>  {
+          0.651769 0.796259
+          <Tangent> { 0.196817 0.766166 0.611762 }
+          <Binormal> { -0.933730 0.027001 0.266585 }
+        }
+        <Normal> { -0.234443 0.441847 -0.865902 }
+      }
+      <Vertex> 469 {
+        -0.454008966684 0.251655757427 1.91505205631
+        <UV>  {
+          0.651770 0.796259
+          <Tangent> { -0.001030 -0.825955 -0.563734 }
+          <Binormal> { 0.506868 -0.300391 0.439191 }
+        }
+        <Normal> { 0.532792 0.845424 -0.036653 }
+      }
+      <Vertex> 470 {
+        -0.540413320065 -0.0360557101667 1.79304671288
+        <UV>  {
+          0.651771 0.796263
+          <Tangent> { -0.438414 0.177128 -0.881146 }
+          <Binormal> { 0.754482 -0.319938 -0.439706 }
+        }
+        <Normal> { 0.198706 0.922666 -0.330393 }
+      }
+      <Vertex> 471 {
+        -0.540413320065 -0.0360557101667 1.79304671288
+        <UV>  {
+          0.651771 0.796263
+          <Tangent> { -0.438414 0.177128 -0.881146 }
+          <Binormal> { 0.754482 -0.319938 -0.439706 }
+        }
+        <Normal> { 0.198706 0.922666 -0.330393 }
+      }
+      <Vertex> 472 {
+        -0.454008966684 0.251655757427 1.91505205631
+        <UV>  {
+          0.651770 0.796259
+          <Tangent> { -0.001030 -0.825955 -0.563734 }
+          <Binormal> { 0.506868 -0.300391 0.439191 }
+        }
+        <Normal> { 0.532792 0.845424 -0.036653 }
+      }
+      <Vertex> 473 {
+        -0.55824559927 -0.0919111594558 1.86338913441
+        <UV>  {
+          0.651770 0.796264
+          <Tangent> { -0.613786 -0.101605 -0.782907 }
+          <Binormal> { 0.372055 -0.250414 -0.259186 }
+        }
+        <Normal> { 0.694723 0.537278 0.478164 }
+      }
+      <Vertex> 474 {
+        -0.55824559927 -0.0919111594558 1.86338913441
+        <UV>  {
+          0.651770 0.796264
+          <Tangent> { -0.613786 -0.101605 -0.782907 }
+          <Binormal> { 0.372055 -0.250414 -0.259186 }
+        }
+        <Normal> { 0.694723 0.537278 0.478164 }
+      }
+      <Vertex> 475 {
+        -0.595351994038 -0.137318626046 1.73596918583
+        <UV>  {
+          0.651770 0.796263
+          <Tangent> { -0.628629 -0.694744 0.349510 }
+          <Binormal> { 0.321718 -0.273965 0.034064 }
+        }
+        <Normal> { 0.497238 0.495346 -0.712272 }
+      }
+      <Vertex> 476 {
+        -0.540413320065 -0.0360557101667 1.79304671288
+        <UV>  {
+          0.651771 0.796263
+          <Tangent> { -0.438414 0.177128 -0.881146 }
+          <Binormal> { 0.754482 -0.319938 -0.439706 }
+        }
+        <Normal> { 0.198706 0.922666 -0.330393 }
+      }
+      <Vertex> 477 {
+        -0.595351994038 -0.137318626046 1.73596918583
+        <UV>  {
+          0.651770 0.796263
+          <Tangent> { -0.628629 -0.694744 0.349510 }
+          <Binormal> { 0.321718 -0.273965 0.034064 }
+        }
+        <Normal> { 0.497238 0.495346 -0.712272 }
+      }
+      <Vertex> 478 {
+        -0.55824559927 -0.0919111594558 1.86338913441
+        <UV>  {
+          0.651770 0.796264
+          <Tangent> { -0.613786 -0.101605 -0.782907 }
+          <Binormal> { 0.372055 -0.250414 -0.259186 }
+        }
+        <Normal> { 0.694723 0.537278 0.478164 }
+      }
+      <Vertex> 479 {
+        -0.607193887234 -0.16974131763 1.77351844311
+        <UV>  {
+          0.651770 0.796263
+          <Tangent> { -0.725444 0.066796 0.685033 }
+          <Binormal> { 0.089038 0.915983 0.004975 }
+        }
+        <Normal> { 0.910916 -0.090732 0.402478 }
+      }
+      <Vertex> 480 {
+        -0.648916065693 -0.16037145257 1.77259171009
+        <UV>  {
+          0.651770 0.796263
+          <Tangent> { -0.437193 0.210776 0.874320 }
+          <Binormal> { 0.634329 0.578098 0.177824 }
+        }
+        <Normal> { 0.678426 -0.733818 -0.034455 }
+      }
+      <Vertex> 481 {
+        -0.63707357645 -0.127948760986 1.73504376411
+        <UV>  {
+          0.651770 0.796263
+          <Tangent> { -0.604747 0.638267 0.476337 }
+          <Binormal> { -0.376791 -0.414826 0.077479 }
+        }
+        <Normal> { 0.251595 -0.393658 -0.884121 }
+      }
+      <Vertex> 482 {
+        -0.595351994038 -0.137318626046 1.73596918583
+        <UV>  {
+          0.651770 0.796263
+          <Tangent> { -0.628629 -0.694744 0.349510 }
+          <Binormal> { 0.321718 -0.273965 0.034064 }
+        }
+        <Normal> { 0.497238 0.495346 -0.712272 }
+      }
+      <Vertex> 483 {
+        -0.607193887234 -0.16974131763 1.77351844311
+        <UV>  {
+          0.651770 0.796263
+          <Tangent> { -0.725444 0.066796 0.685033 }
+          <Binormal> { 0.089038 0.915983 0.004975 }
+        }
+        <Normal> { 0.910916 -0.090732 0.402478 }
+      }
+      <Vertex> 484 {
+        -0.648916065693 -0.16037145257 1.77259171009
+        <UV>  {
+          0.651770 0.796263
+          <Tangent> { -0.437193 0.210776 0.874320 }
+          <Binormal> { 0.634329 0.578098 0.177824 }
+        }
+        <Normal> { 0.678426 -0.733818 -0.034455 }
+      }
+      <Vertex> 485 {
+        -0.595351994038 -0.137318626046 1.73596918583
+        <UV>  {
+          0.651770 0.796263
+          <Tangent> { -0.628629 -0.694744 0.349510 }
+          <Binormal> { 0.321718 -0.273965 0.034064 }
+        }
+        <Normal> { 0.497238 0.495346 -0.712272 }
+      }
+      <Vertex> 486 {
+        -0.63707357645 -0.127948760986 1.73504376411
+        <UV>  {
+          0.651770 0.796263
+          <Tangent> { -0.604747 0.638267 0.476337 }
+          <Binormal> { -0.376791 -0.414826 0.077479 }
+        }
+        <Normal> { 0.251595 -0.393658 -0.884121 }
+      }
+      <Vertex> 487 {
+        -0.663678348064 0.0384279862046 1.776029706
+        <UV>  {
+          0.651770 0.796263
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.951018 -0.080050 0.298563 }
+      }
+      <Vertex> 488 {
+        -0.645846128464 0.0942840576172 1.70568716526
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { -0.420906 -0.823351 -0.380658 }
+          <Binormal> { 0.905976 -0.402479 -0.131219 }
+        }
+        <Normal> { 0.045167 0.400098 -0.915342 }
+      }
+      <Vertex> 489 {
+        -0.663678348064 0.0384279862046 1.776029706
+        <UV>  {
+          0.651770 0.796263
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.951018 -0.080050 0.298563 }
+      }
+      <Vertex> 490 {
+        -0.63707357645 -0.127948760986 1.73504376411
+        <UV>  {
+          0.651770 0.796263
+          <Tangent> { -0.604747 0.638267 0.476337 }
+          <Binormal> { -0.376791 -0.414826 0.077479 }
+        }
+        <Normal> { 0.251595 -0.393658 -0.884121 }
+      }
+      <Vertex> 491 {
+        -0.648916065693 -0.16037145257 1.77259171009
+        <UV>  {
+          0.651770 0.796263
+          <Tangent> { -0.437193 0.210776 0.874320 }
+          <Binormal> { 0.634329 0.578098 0.177824 }
+        }
+        <Normal> { 0.678426 -0.733818 -0.034455 }
+      }
+      <Vertex> 492 {
+        -0.812710523605 -0.122363202274 1.54978144169
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 0.000000 -0.000000 }
+        }
+        <Normal> { 0.198126 0.287454 -0.937040 }
+      }
+      <Vertex> 493 {
+        -0.645846128464 0.0942840576172 1.70568716526
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { -0.420906 -0.823351 -0.380658 }
+          <Binormal> { 0.905976 -0.402479 -0.131219 }
+        }
+        <Normal> { 0.045167 0.400098 -0.915342 }
+      }
+      <Vertex> 494 {
+        -0.663678348064 0.0384279862046 1.776029706
+        <UV>  {
+          0.651770 0.796263
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.951018 -0.080050 0.298563 }
+      }
+      <Vertex> 495 {
+        -0.663678348064 0.0384279862046 1.776029706
+        <UV>  {
+          0.651770 0.796263
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.951018 -0.080050 0.298563 }
+      }
+      <Vertex> 496 {
+        -0.812710523605 -0.233838051558 1.76856315136
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { -0.277239 0.678358 0.680418 }
+          <Binormal> { 0.510646 0.698218 -0.488039 }
+        }
+        <Normal> { 0.838343 -0.290933 0.460952 }
+      }
+      <Vertex> 497 {
+        -0.812710523605 -0.122363202274 1.54978144169
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 0.000000 -0.000000 }
+        }
+        <Normal> { 0.198126 0.287454 -0.937040 }
+      }
+      <Vertex> 498 {
+        -0.812710523605 -0.233838051558 1.76856315136
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { -0.277239 0.678358 0.680418 }
+          <Binormal> { 0.510646 0.698218 -0.488039 }
+        }
+        <Normal> { 0.838343 -0.290933 0.460952 }
+      }
+      <Vertex> 499 {
+        -0.8746124506 -0.0847666561604 1.62616789341
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 0.000000 -0.000000 }
+        }
+        <Normal> { 0.011109 -0.842555 -0.538469 }
+      }
+      <Vertex> 500 {
+        -0.812710523605 -0.122363202274 1.54978144169
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 0.000000 -0.000000 }
+        }
+        <Normal> { 0.198126 0.287454 -0.937040 }
+      }
+      <Vertex> 501 {
+        -0.812710523605 -0.233838051558 1.76856315136
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { -0.277239 0.678358 0.680418 }
+          <Binormal> { 0.510646 0.698218 -0.488039 }
+        }
+        <Normal> { 0.838343 -0.290933 0.460952 }
+      }
+      <Vertex> 502 {
+        -0.8746124506 -0.154574751854 1.76317322254
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { -0.055029 0.784640 0.617505 }
+          <Binormal> { 0.858946 0.243123 -0.232382 }
+        }
+        <Normal> { 0.353710 -0.820521 0.448958 }
+      }
+      <Vertex> 503 {
+        -0.8746124506 -0.0847666561604 1.62616789341
+        <UV>  {
+          0.651770 0.796262
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 0.000000 -0.000000 }
+        }
+        <Normal> { 0.011109 -0.842555 -0.538469 }
+      }
+      <Vertex> 504 {
+        -0.360149979591 -0.150652810931 0.284994393587
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.772881 -0.134281 0.620136 }
+      }
+      <Vertex> 505 {
+        -0.419814646244 0.0228229537606 0.414554357529
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.264901 -0.166692 0.949736 }
+      }
+      <Vertex> 506 {
+        -0.439952015877 -0.196572870016 0.339524447918
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.664479 0.104282 0.739952 }
+      }
+      <Vertex> 507 {
+        -0.439952015877 -0.196572870016 0.339524447918
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.664479 0.104282 0.739952 }
+      }
+      <Vertex> 508 {
+        -0.419814646244 0.0228229537606 0.414554357529
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.264901 -0.166692 0.949736 }
+      }
+      <Vertex> 509 {
+        -0.49124583602 0.0228229574859 0.475781112909
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.258766 -0.437239 0.861293 }
+      }
+      <Vertex> 510 {
+        -0.312994241714 -0.196572870016 0.393934935331
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.566240 -0.635029 0.525437 }
+      }
+      <Vertex> 511 {
+        -0.353485673666 0.0228229500353 0.531905651093
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.206030 -0.648946 0.732383 }
+      }
+      <Vertex> 512 {
+        -0.419814646244 0.0228229537606 0.414554357529
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.264901 -0.166692 0.949736 }
+      }
+      <Vertex> 513 {
+        -0.312994241714 -0.196572870016 0.393934935331
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.566240 -0.635029 0.525437 }
+      }
+      <Vertex> 514 {
+        -0.419814646244 0.0228229537606 0.414554357529
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.264901 -0.166692 0.949736 }
+      }
+      <Vertex> 515 {
+        -0.360149979591 -0.150652810931 0.284994393587
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.772881 -0.134281 0.620136 }
+      }
+      <Vertex> 516 {
+        -0.256670415401 -0.196572870016 0.422953873873
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.699728 0.167882 0.694388 }
+      }
+      <Vertex> 517 {
+        -0.251441121101 0.02282294631 0.572723448277
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.234596 -0.094821 0.967437 }
+      }
+      <Vertex> 518 {
+        -0.312994241714 -0.196572870016 0.393934935331
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.566240 -0.635029 0.525437 }
+      }
+      <Vertex> 519 {
+        -0.251441121101 0.02282294631 0.572723448277
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.234596 -0.094821 0.967437 }
+      }
+      <Vertex> 520 {
+        -0.353485673666 0.0228229500353 0.531905651093
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.206030 -0.648946 0.732383 }
+      }
+      <Vertex> 521 {
+        -0.312994241714 -0.196572870016 0.393934935331
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.566240 -0.635029 0.525437 }
+      }
+      <Vertex> 522 {
+        -0.49124583602 0.0228229574859 0.475781112909
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.258766 -0.437239 0.861293 }
+      }
+      <Vertex> 523 {
+        -0.468054145575 -0.196572870016 0.254739761353
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.540269 -0.819147 0.192450 }
+      }
+      <Vertex> 524 {
+        -0.439952015877 -0.196572870016 0.339524447918
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.664479 0.104282 0.739952 }
+      }
+      <Vertex> 525 {
+        -0.49124583602 0.0228229574859 0.475781112909
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.258766 -0.437239 0.861293 }
+      }
+      <Vertex> 526 {
+        -0.588188171387 0.0228229612112 0.343123167753
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.265297 -0.910672 0.316660 }
+      }
+      <Vertex> 527 {
+        -0.468054145575 -0.196572870016 0.254739761353
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.540269 -0.819147 0.192450 }
+      }
+      <Vertex> 528 {
+        -0.475308865309 -0.196572870016 0.0951356887817
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 0.000000 -0.000000 }
+        }
+        <Normal> { 0.461959 -0.502152 -0.731010 }
+      }
+      <Vertex> 529 {
+        -0.468054145575 -0.196572870016 0.254739761353
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.540269 -0.819147 0.192450 }
+      }
+      <Vertex> 530 {
+        -0.598392665386 0.0228229612112 0.118625126779
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.900106 -0.020449 0.435114 }
+          <Binormal> { 0.393475 0.466754 -0.792034 }
+        }
+        <Normal> { 0.186895 -0.884121 -0.428175 }
+      }
+      <Vertex> 531 {
+        -0.468054145575 -0.196572870016 0.254739761353
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.540269 -0.819147 0.192450 }
+      }
+      <Vertex> 532 {
+        -0.588188171387 0.0228229612112 0.343123167753
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.265297 -0.910672 0.316660 }
+      }
+      <Vertex> 533 {
+        -0.598392665386 0.0228229612112 0.118625126779
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.900106 -0.020449 0.435114 }
+          <Binormal> { 0.393475 0.466754 -0.792034 }
+        }
+        <Normal> { 0.186895 -0.884121 -0.428175 }
+      }
+      <Vertex> 534 {
+        -0.224263295531 -0.196572870016 0.393934935331
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.545671 0.759880 0.353191 }
+      }
+      <Vertex> 535 {
+        -0.185112148523 0.0228229444474 0.531905651093
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.192785 0.697226 0.690390 }
+      }
+      <Vertex> 536 {
+        -0.256670415401 -0.196572870016 0.422953873873
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.699728 0.167882 0.694388 }
+      }
+      <Vertex> 537 {
+        -0.185112148523 0.0228229444474 0.531905651093
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.192785 0.697226 0.690390 }
+      }
+      <Vertex> 538 {
+        -0.251441121101 0.02282294631 0.572723448277
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.234596 -0.094821 0.967437 }
+      }
+      <Vertex> 539 {
+        -0.256670415401 -0.196572870016 0.422953873873
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.699728 0.167882 0.694388 }
+      }
+      <Vertex> 540 {
+        -0.224263295531 -0.196572870016 0.393934935331
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.545671 0.759880 0.353191 }
+      }
+      <Vertex> 541 {
+        -0.134090483189 0.0228229407221 0.414554357529
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.255104 0.208258 0.944182 }
+      }
+      <Vertex> 542 {
+        -0.185112148523 0.0228229444474 0.531905651093
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.192785 0.697226 0.690390 }
+      }
+      <Vertex> 543 {
+        -0.224263295531 -0.196572870016 0.393934935331
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.545671 0.759880 0.353191 }
+      }
+      <Vertex> 544 {
+        -0.187989637256 -0.150652825832 0.284994393587
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.833491 0.097690 0.543779 }
+      }
+      <Vertex> 545 {
+        -0.134090483189 0.0228229407221 0.414554357529
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.255104 0.208258 0.944182 }
+      }
+      <Vertex> 546 {
+        -0.187989637256 -0.150652825832 0.284994393587
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.833491 0.097690 0.543779 }
+      }
+      <Vertex> 547 {
+        -0.0973054990172 -0.196572884917 0.361288636923
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.672689 -0.125767 0.729148 }
+      }
+      <Vertex> 548 {
+        -0.134090483189 0.0228229407221 0.414554357529
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.255104 0.208258 0.944182 }
+      }
+      <Vertex> 549 {
+        -0.0973054990172 -0.196572884917 0.361288636923
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.672689 -0.125767 0.729148 }
+      }
+      <Vertex> 550 {
+        -0.0524542108178 0.0228229369968 0.485985577106
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.241340 0.353679 0.903684 }
+      }
+      <Vertex> 551 {
+        -0.134090483189 0.0228229407221 0.414554357529
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.255104 0.208258 0.944182 }
+      }
+      <Vertex> 552 {
+        -0.0524542108178 0.0228229369968 0.485985577106
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.241340 0.353679 0.903684 }
+      }
+      <Vertex> 553 {
+        -0.0973054990172 -0.196572884917 0.361288636923
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.672689 -0.125767 0.729148 }
+      }
+      <Vertex> 554 {
+        -0.0670508742332 -0.196572884917 0.281486600637
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.526048 0.821925 0.218299 }
+      }
+      <Vertex> 555 {
+        0.0546925850213 0.0228229332715 0.373736530542
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.288461 0.883267 0.369579 }
+      }
+      <Vertex> 556 {
+        -0.0524542108178 0.0228229369968 0.485985577106
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.241340 0.353679 0.903684 }
+      }
+      <Vertex> 557 {
+        -0.0670508742332 -0.196572884917 0.281486600637
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.526048 0.821925 0.218299 }
+      }
+      <Vertex> 558 {
+        -0.0670508742332 -0.196572884917 0.281486600637
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.526048 0.821925 0.218299 }
+      }
+      <Vertex> 559 {
+        -0.0597961470485 -0.196572884917 0.100118331611
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 0.000000 -0.000000 }
+        }
+        <Normal> { 0.426283 0.486038 -0.762871 }
+      }
+      <Vertex> 560 {
+        0.0648970454931 0.0228229332715 0.118625126779
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 0.000000 -0.000000 }
+        }
+        <Normal> { 0.214484 0.875729 -0.432508 }
+      }
+      <Vertex> 561 {
+        -0.0670508742332 -0.196572884917 0.281486600637
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.526048 0.821925 0.218299 }
+      }
+      <Vertex> 562 {
+        0.0648970454931 0.0228229332715 0.118625126779
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 0.000000 -0.000000 }
+        }
+        <Normal> { 0.214484 0.875729 -0.432508 }
+      }
+      <Vertex> 563 {
+        0.0546925850213 0.0228229332715 0.373736530542
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.288461 0.883267 0.369579 }
+      }
+      <Vertex> 564 {
+        -0.466389298439 0.242218777537 0.455372184515
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.216885 -0.936218 0.276507 }
+          <Binormal> { -0.950187 -0.263229 -0.145957 }
+        }
+        <Normal> { -0.191900 0.155400 0.969024 }
+      }
+      <Vertex> 565 {
+        -0.419814646244 0.0228229537606 0.414554357529
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.264901 -0.166692 0.949736 }
+      }
+      <Vertex> 566 {
+        -0.403713852167 0.242218777537 0.397329360247
+        <UV>  {
+          0.650012 0.794437
+          <Tangent> { 0.324790 -0.703698 0.631918 }
+          <Binormal> { -0.548257 -0.451346 -0.220824 }
+        }
+        <Normal> { -0.223487 -0.195685 0.954833 }
+      }
+      <Vertex> 567 {
+        -0.49124583602 0.0228229574859 0.475781112909
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.258766 -0.437239 0.861293 }
+      }
+      <Vertex> 568 {
+        -0.419814646244 0.0228229537606 0.414554357529
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.264901 -0.166692 0.949736 }
+      }
+      <Vertex> 569 {
+        -0.466389298439 0.242218777537 0.455372184515
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.216885 -0.936218 0.276507 }
+          <Binormal> { -0.950187 -0.263229 -0.145957 }
+        }
+        <Normal> { -0.191900 0.155400 0.969024 }
+      }
+      <Vertex> 570 {
+        -0.419814646244 0.0228229537606 0.414554357529
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.264901 -0.166692 0.949736 }
+      }
+      <Vertex> 571 {
+        -0.353485673666 0.0228229500353 0.531905651093
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.206030 -0.648946 0.732383 }
+      }
+      <Vertex> 572 {
+        -0.342559367418 0.242218777537 0.505527496338
+        <UV>  {
+          0.650012 0.794437
+          <Tangent> { 0.749986 0.366654 0.550489 }
+          <Binormal> { 0.623099 -0.670890 -0.402062 }
+        }
+        <Normal> { -0.221900 -0.644551 0.731620 }
+      }
+      <Vertex> 573 {
+        -0.403713852167 0.242218777537 0.397329360247
+        <UV>  {
+          0.650012 0.794437
+          <Tangent> { 0.324790 -0.703698 0.631918 }
+          <Binormal> { -0.548257 -0.451346 -0.220824 }
+        }
+        <Normal> { -0.223487 -0.195685 0.954833 }
+      }
+      <Vertex> 574 {
+        -0.419814646244 0.0228229537606 0.414554357529
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.264901 -0.166692 0.949736 }
+      }
+      <Vertex> 575 {
+        -0.342559367418 0.242218777537 0.505527496338
+        <UV>  {
+          0.650012 0.794437
+          <Tangent> { 0.749986 0.366654 0.550489 }
+          <Binormal> { 0.623099 -0.670890 -0.402062 }
+        }
+        <Normal> { -0.221900 -0.644551 0.731620 }
+      }
+      <Vertex> 576 {
+        -0.342559367418 0.242218777537 0.505527496338
+        <UV>  {
+          0.650012 0.794437
+          <Tangent> { 0.749986 0.366654 0.550489 }
+          <Binormal> { 0.623099 -0.670890 -0.402062 }
+        }
+        <Normal> { -0.221900 -0.644551 0.731620 }
+      }
+      <Vertex> 577 {
+        -0.251441121101 0.02282294631 0.572723448277
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.234596 -0.094821 0.967437 }
+      }
+      <Vertex> 578 {
+        -0.252851814032 0.242218762636 0.543161392212
+        <UV>  {
+          0.650012 0.794437
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 0.000000 }
+        }
+        <Normal> { -0.249336 0.186377 0.950285 }
+      }
+      <Vertex> 579 {
+        -0.342559367418 0.242218777537 0.505527496338
+        <UV>  {
+          0.650012 0.794437
+          <Tangent> { 0.749986 0.366654 0.550489 }
+          <Binormal> { 0.623099 -0.670890 -0.402062 }
+        }
+        <Normal> { -0.221900 -0.644551 0.731620 }
+      }
+      <Vertex> 580 {
+        -0.353485673666 0.0228229500353 0.531905651093
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.206030 -0.648946 0.732383 }
+      }
+      <Vertex> 581 {
+        -0.251441121101 0.02282294631 0.572723448277
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.234596 -0.094821 0.967437 }
+      }
+      <Vertex> 582 {
+        -0.466389298439 0.242218777537 0.455372184515
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.216885 -0.936218 0.276507 }
+          <Binormal> { -0.950187 -0.263229 -0.145957 }
+        }
+        <Normal> { -0.191900 0.155400 0.969024 }
+      }
+      <Vertex> 583 {
+        -0.581281602383 0.247321009636 0.33425655961
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { -0.165258 -0.920560 0.353862 }
+      }
+      <Vertex> 584 {
+        -0.49124583602 0.0228229574859 0.475781112909
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.258766 -0.437239 0.861293 }
+      }
+      <Vertex> 585 {
+        -0.581281602383 0.247321009636 0.33425655961
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { -0.165258 -0.920560 0.353862 }
+      }
+      <Vertex> 586 {
+        -0.588188171387 0.0228229612112 0.343123167753
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.265297 -0.910672 0.316660 }
+      }
+      <Vertex> 587 {
+        -0.49124583602 0.0228229574859 0.475781112909
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.258766 -0.437239 0.861293 }
+      }
+      <Vertex> 588 {
+        -0.598392665386 0.0228229612112 0.118625126779
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.900106 -0.020449 0.435114 }
+          <Binormal> { 0.393475 0.466754 -0.792034 }
+        }
+        <Normal> { 0.186895 -0.884121 -0.428175 }
+      }
+      <Vertex> 589 {
+        -0.581281602383 0.247321009636 0.33425655961
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { -0.165258 -0.920560 0.353862 }
+      }
+      <Vertex> 590 {
+        -0.590689480305 0.247321009636 0.127270013094
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.115221 -0.983781 -0.137472 }
+          <Binormal> { 0.591881 0.091064 -0.155592 }
+        }
+        <Normal> { -0.075076 -0.709372 -0.700766 }
+      }
+      <Vertex> 591 {
+        -0.598392665386 0.0228229612112 0.118625126779
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.900106 -0.020449 0.435114 }
+          <Binormal> { 0.393475 0.466754 -0.792034 }
+        }
+        <Normal> { 0.186895 -0.884121 -0.428175 }
+      }
+      <Vertex> 592 {
+        -0.588188171387 0.0228229612112 0.343123167753
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.265297 -0.910672 0.316660 }
+      }
+      <Vertex> 593 {
+        -0.581281602383 0.247321009636 0.33425655961
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { -0.165258 -0.920560 0.353862 }
+      }
+      <Vertex> 594 {
+        -0.252851814032 0.242218762636 0.543161392212
+        <UV>  {
+          0.650012 0.794437
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 0.000000 }
+        }
+        <Normal> { -0.249336 0.186377 0.950285 }
+      }
+      <Vertex> 595 {
+        -0.185112148523 0.0228229444474 0.531905651093
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.192785 0.697226 0.690390 }
+      }
+      <Vertex> 596 {
+        -0.195677220821 0.242218762636 0.505527496338
+        <UV>  {
+          0.650012 0.794437
+          <Tangent> { -0.766141 0.218842 -0.604240 }
+          <Binormal> { 0.598524 0.585406 -0.546872 }
+        }
+        <Normal> { -0.234046 0.780633 0.579485 }
+      }
+      <Vertex> 597 {
+        -0.252851814032 0.242218762636 0.543161392212
+        <UV>  {
+          0.650012 0.794437
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 0.000000 }
+        }
+        <Normal> { -0.249336 0.186377 0.950285 }
+      }
+      <Vertex> 598 {
+        -0.251441121101 0.02282294631 0.572723448277
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.234596 -0.094821 0.967437 }
+      }
+      <Vertex> 599 {
+        -0.185112148523 0.0228229444474 0.531905651093
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.192785 0.697226 0.690390 }
+      }
+      <Vertex> 600 {
+        -0.185112148523 0.0228229444474 0.531905651093
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.192785 0.697226 0.690390 }
+      }
+      <Vertex> 601 {
+        -0.134090483189 0.0228229407221 0.414554357529
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.255104 0.208258 0.944182 }
+      }
+      <Vertex> 602 {
+        -0.195677220821 0.242218762636 0.505527496338
+        <UV>  {
+          0.650012 0.794437
+          <Tangent> { -0.766141 0.218842 -0.604240 }
+          <Binormal> { 0.598524 0.585406 -0.546872 }
+        }
+        <Normal> { -0.234046 0.780633 0.579485 }
+      }
+      <Vertex> 603 {
+        -0.134090483189 0.0228229407221 0.414554357529
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.255104 0.208258 0.944182 }
+      }
+      <Vertex> 604 {
+        -0.148634821177 0.242218762636 0.397329360247
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { -0.202378 0.947951 -0.245796 }
+          <Binormal> { 0.966212 0.234190 0.107652 }
+        }
+        <Normal> { -0.159612 0.215705 0.963317 }
+      }
+      <Vertex> 605 {
+        -0.195677220821 0.242218762636 0.505527496338
+        <UV>  {
+          0.650012 0.794437
+          <Tangent> { -0.766141 0.218842 -0.604240 }
+          <Binormal> { 0.598524 0.585406 -0.546872 }
+        }
+        <Normal> { -0.234046 0.780633 0.579485 }
+      }
+      <Vertex> 606 {
+        -0.134090483189 0.0228229407221 0.414554357529
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.255104 0.208258 0.944182 }
+      }
+      <Vertex> 607 {
+        -0.0769482627511 0.242218762636 0.463189959526
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.694103 -0.638742 0.332009 }
+          <Binormal> { -0.551455 -0.717107 -0.226739 }
+        }
+        <Normal> { -0.132450 -0.204779 0.969787 }
+      }
+      <Vertex> 608 {
+        -0.148634821177 0.242218762636 0.397329360247
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { -0.202378 0.947951 -0.245796 }
+          <Binormal> { 0.966212 0.234190 0.107652 }
+        }
+        <Normal> { -0.159612 0.215705 0.963317 }
+      }
+      <Vertex> 609 {
+        -0.134090483189 0.0228229407221 0.414554357529
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.255104 0.208258 0.944182 }
+      }
+      <Vertex> 610 {
+        -0.0524542108178 0.0228229369968 0.485985577106
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.241340 0.353679 0.903684 }
+      }
+      <Vertex> 611 {
+        -0.0769482627511 0.242218762636 0.463189959526
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.694103 -0.638742 0.332009 }
+          <Binormal> { -0.551455 -0.717107 -0.226739 }
+        }
+        <Normal> { -0.132450 -0.204779 0.969787 }
+      }
+      <Vertex> 612 {
+        0.0575557462871 0.237116530538 0.35969543457
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 0.000000 }
+        }
+        <Normal> { -0.147221 0.904996 0.399091 }
+      }
+      <Vertex> 613 {
+        -0.0769482627511 0.242218762636 0.463189959526
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.694103 -0.638742 0.332009 }
+          <Binormal> { -0.551455 -0.717107 -0.226739 }
+        }
+        <Normal> { -0.132450 -0.204779 0.969787 }
+      }
+      <Vertex> 614 {
+        -0.0524542108178 0.0228229369968 0.485985577106
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.241340 0.353679 0.903684 }
+      }
+      <Vertex> 615 {
+        0.0575557462871 0.237116530538 0.35969543457
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 0.000000 }
+        }
+        <Normal> { -0.147221 0.904996 0.399091 }
+      }
+      <Vertex> 616 {
+        -0.0524542108178 0.0228229369968 0.485985577106
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.241340 0.353679 0.903684 }
+      }
+      <Vertex> 617 {
+        0.0546925850213 0.0228229332715 0.373736530542
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.288461 0.883267 0.369579 }
+      }
+      <Vertex> 618 {
+        0.0648970454931 0.0228229332715 0.118625126779
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 0.000000 -0.000000 }
+        }
+        <Normal> { 0.214484 0.875729 -0.432508 }
+      }
+      <Vertex> 619 {
+        0.0669642239809 0.237116530538 0.124484717846
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 0.000000 }
+        }
+        <Normal> { -0.032807 0.703879 -0.709525 }
+      }
+      <Vertex> 620 {
+        0.0575557462871 0.237116530538 0.35969543457
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 0.000000 }
+        }
+        <Normal> { -0.147221 0.904996 0.399091 }
+      }
+      <Vertex> 621 {
+        0.0546925850213 0.0228229332715 0.373736530542
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.288461 0.883267 0.369579 }
+      }
+      <Vertex> 622 {
+        0.0648970454931 0.0228229332715 0.118625126779
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 0.000000 -0.000000 }
+        }
+        <Normal> { 0.214484 0.875729 -0.432508 }
+      }
+      <Vertex> 623 {
+        0.0575557462871 0.237116530538 0.35969543457
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 0.000000 }
+        }
+        <Normal> { -0.147221 0.904996 0.399091 }
+      }
+      <Vertex> 624 {
+        -0.475308865309 -0.196572870016 0.0951356887817
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 0.000000 -0.000000 }
+        }
+        <Normal> { 0.461959 -0.502152 -0.731010 }
+      }
+      <Vertex> 625 {
+        -0.399406373501 -0.298617422581 0.174749642611
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.993316 -0.055727 0.100803 }
+      }
+      <Vertex> 626 {
+        -0.468054145575 -0.196572870016 0.254739761353
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.540269 -0.819147 0.192450 }
+      }
+      <Vertex> 627 {
+        -0.399406373501 -0.298617422581 0.174749642611
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.993316 -0.055727 0.100803 }
+      }
+      <Vertex> 628 {
+        -0.439952015877 -0.196572870016 0.339524447918
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.664479 0.104282 0.739952 }
+      }
+      <Vertex> 629 {
+        -0.468054145575 -0.196572870016 0.254739761353
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.540269 -0.819147 0.192450 }
+      }
+      <Vertex> 630 {
+        -0.399406373501 -0.298617422581 0.174749642611
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.993316 -0.055727 0.100803 }
+      }
+      <Vertex> 631 {
+        -0.360149979591 -0.150652810931 0.284994393587
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.772881 -0.134281 0.620136 }
+      }
+      <Vertex> 632 {
+        -0.439952015877 -0.196572870016 0.339524447918
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.664479 0.104282 0.739952 }
+      }
+      <Vertex> 633 {
+        -0.360149979591 -0.150652810931 0.284994393587
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.772881 -0.134281 0.620136 }
+      }
+      <Vertex> 634 {
+        -0.292259573936 -0.349639713764 0.174749642611
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.971282 -0.004944 0.237831 }
+      }
+      <Vertex> 635 {
+        -0.312994241714 -0.196572870016 0.393934935331
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.566240 -0.635029 0.525437 }
+      }
+      <Vertex> 636 {
+        -0.292259573936 -0.349639713764 0.174749642611
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.971282 -0.004944 0.237831 }
+      }
+      <Vertex> 637 {
+        -0.256670415401 -0.196572870016 0.422953873873
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.699728 0.167882 0.694388 }
+      }
+      <Vertex> 638 {
+        -0.312994241714 -0.196572870016 0.393934935331
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.566240 -0.635029 0.525437 }
+      }
+      <Vertex> 639 {
+        -0.224263295531 -0.196572870016 0.393934935331
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.545671 0.759880 0.353191 }
+      }
+      <Vertex> 640 {
+        -0.256670415401 -0.196572870016 0.422953873873
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.699728 0.167882 0.694388 }
+      }
+      <Vertex> 641 {
+        -0.292259573936 -0.349639713764 0.174749642611
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.971282 -0.004944 0.237831 }
+      }
+      <Vertex> 642 {
+        -0.187989637256 -0.150652825832 0.284994393587
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.833491 0.097690 0.543779 }
+      }
+      <Vertex> 643 {
+        -0.224263295531 -0.196572870016 0.393934935331
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.545671 0.759880 0.353191 }
+      }
+      <Vertex> 644 {
+        -0.292259573936 -0.349639713764 0.174749642611
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.971282 -0.004944 0.237831 }
+      }
+      <Vertex> 645 {
+        -0.187989637256 -0.150652825832 0.284994393587
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.833491 0.097690 0.543779 }
+      }
+      <Vertex> 646 {
+        -0.118783816695 -0.298617452383 0.169647410512
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.994751 0.083773 0.058229 }
+      }
+      <Vertex> 647 {
+        -0.0973054990172 -0.196572884917 0.361288636923
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.672689 -0.125767 0.729148 }
+      }
+      <Vertex> 648 {
+        -0.118783816695 -0.298617452383 0.169647410512
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.994751 0.083773 0.058229 }
+      }
+      <Vertex> 649 {
+        -0.0670508742332 -0.196572884917 0.281486600637
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.526048 0.821925 0.218299 }
+      }
+      <Vertex> 650 {
+        -0.0973054990172 -0.196572884917 0.361288636923
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.672689 -0.125767 0.729148 }
+      }
+      <Vertex> 651 {
+        -0.118783816695 -0.298617452383 0.169647410512
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.994751 0.083773 0.058229 }
+      }
+      <Vertex> 652 {
+        -0.0597961470485 -0.196572884917 0.100118331611
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 0.000000 -0.000000 }
+        }
+        <Normal> { 0.426283 0.486038 -0.762871 }
+      }
+      <Vertex> 653 {
+        -0.0670508742332 -0.196572884917 0.281486600637
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.526048 0.821925 0.218299 }
+      }
+      <Vertex> 654 {
+        -0.118783816695 -0.298617452383 0.169647410512
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.994751 0.083773 0.058229 }
+      }
+      <Vertex> 655 {
+        -0.174908325076 -0.242492929101 0.118625126779
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 0.000000 -0.000000 }
+        }
+        <Normal> { 0.593951 -0.003754 -0.804468 }
+      }
+      <Vertex> 656 {
+        -0.0597961470485 -0.196572884917 0.100118331611
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 0.000000 -0.000000 }
+        }
+        <Normal> { 0.426283 0.486038 -0.762871 }
+      }
+      <Vertex> 657 {
+        -0.118783816695 -0.298617452383 0.169647410512
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.994751 0.083773 0.058229 }
+      }
+      <Vertex> 658 {
+        -0.187989637256 -0.150652825832 0.284994393587
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.833491 0.097690 0.543779 }
+      }
+      <Vertex> 659 {
+        -0.174908325076 -0.242492929101 0.118625126779
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 0.000000 -0.000000 }
+        }
+        <Normal> { 0.593951 -0.003754 -0.804468 }
+      }
+      <Vertex> 660 {
+        -0.187989637256 -0.150652825832 0.284994393587
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.833491 0.097690 0.543779 }
+      }
+      <Vertex> 661 {
+        -0.292259573936 -0.349639713764 0.174749642611
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.971282 -0.004944 0.237831 }
+      }
+      <Vertex> 662 {
+        -0.174908325076 -0.242492929101 0.118625126779
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 0.000000 -0.000000 }
+        }
+        <Normal> { 0.593951 -0.003754 -0.804468 }
+      }
+      <Vertex> 663 {
+        -0.292259573936 -0.349639713764 0.174749642611
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.971282 -0.004944 0.237831 }
+      }
+      <Vertex> 664 {
+        -0.358588546515 -0.242492929101 0.108420670033
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 0.000000 -0.000000 }
+        }
+        <Normal> { 0.528703 0.011658 -0.848720 }
+      }
+      <Vertex> 665 {
+        -0.174908325076 -0.242492929101 0.118625126779
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 0.000000 -0.000000 }
+        }
+        <Normal> { 0.593951 -0.003754 -0.804468 }
+      }
+      <Vertex> 666 {
+        -0.292259573936 -0.349639713764 0.174749642611
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.971282 -0.004944 0.237831 }
+      }
+      <Vertex> 667 {
+        -0.360149979591 -0.150652810931 0.284994393587
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.772881 -0.134281 0.620136 }
+      }
+      <Vertex> 668 {
+        -0.358588546515 -0.242492929101 0.108420670033
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 0.000000 -0.000000 }
+        }
+        <Normal> { 0.528703 0.011658 -0.848720 }
+      }
+      <Vertex> 669 {
+        -0.360149979591 -0.150652810931 0.284994393587
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.772881 -0.134281 0.620136 }
+      }
+      <Vertex> 670 {
+        -0.399406373501 -0.298617422581 0.174749642611
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.993316 -0.055727 0.100803 }
+      }
+      <Vertex> 671 {
+        -0.358588546515 -0.242492929101 0.108420670033
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 0.000000 -0.000000 }
+        }
+        <Normal> { 0.528703 0.011658 -0.848720 }
+      }
+      <Vertex> 672 {
+        -0.399406373501 -0.298617422581 0.174749642611
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { 0.993316 -0.055727 0.100803 }
+      }
+      <Vertex> 673 {
+        -0.475308865309 -0.196572870016 0.0951356887817
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 0.000000 -0.000000 }
+        }
+        <Normal> { 0.461959 -0.502152 -0.731010 }
+      }
+      <Vertex> 674 {
+        -0.358588546515 -0.242492929101 0.108420670033
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 0.000000 -0.000000 }
+        }
+        <Normal> { 0.528703 0.011658 -0.848720 }
+      }
+      <Vertex> 675 {
+        0.0575557462871 0.237116530538 0.35969543457
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 0.000000 }
+        }
+        <Normal> { -0.147221 0.904996 0.399091 }
+      }
+      <Vertex> 676 {
+        0.0669642239809 0.237116530538 0.124484717846
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 0.000000 }
+        }
+        <Normal> { -0.032807 0.703879 -0.709525 }
+      }
+      <Vertex> 677 {
+        0.0325491055846 0.431001216173 0.105976678431
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.296484 0.381318 0.875610 }
+          <Binormal> { -0.913989 -0.067540 0.338892 }
+        }
+        <Normal> { -0.251381 0.819727 -0.514603 }
+      }
+      <Vertex> 678 {
+        0.0325491055846 0.431001216173 0.105976678431
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.296484 0.381318 0.875610 }
+          <Binormal> { -0.913989 -0.067540 0.338892 }
+        }
+        <Normal> { -0.251381 0.819727 -0.514603 }
+      }
+      <Vertex> 679 {
+        0.0257870350033 0.431001216173 0.275035321712
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { -0.368346 0.906406 0.206759 }
+          <Binormal> { 0.080275 0.037291 -0.020465 }
+        }
+        <Normal> { -0.340556 0.893582 0.292398 }
+      }
+      <Vertex> 680 {
+        0.0575557462871 0.237116530538 0.35969543457
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 0.000000 }
+        }
+        <Normal> { -0.147221 0.904996 0.399091 }
+      }
+      <Vertex> 681 {
+        0.0257870350033 0.431001216173 0.275035321712
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { -0.368346 0.906406 0.206759 }
+          <Binormal> { 0.080275 0.037291 -0.020465 }
+        }
+        <Normal> { -0.340556 0.893582 0.292398 }
+      }
+      <Vertex> 682 {
+        -0.086035348475 0.46671679616 0.410647988319
+        <UV>  {
+          0.650011 0.794437
+          <Tangent> { 0.415119 -0.045712 0.908618 }
+          <Binormal> { -0.610560 -0.513121 0.253131 }
+        }
+        <Normal> { -0.227363 0.634816 0.738426 }
+      }
+      <Vertex> 683 {
+        0.0575557462871 0.237116530538 0.35969543457
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 0.000000 }
+        }
+        <Normal> { -0.147221 0.904996 0.399091 }
+      }
+      <Vertex> 684 {
+        -0.0769482627511 0.242218762636 0.463189959526
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.694103 -0.638742 0.332009 }
+          <Binormal> { -0.551455 -0.717107 -0.226739 }
+        }
+        <Normal> { -0.132450 -0.204779 0.969787 }
+      }
+      <Vertex> 685 {
+        0.0575557462871 0.237116530538 0.35969543457
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 0.000000 }
+        }
+        <Normal> { -0.147221 0.904996 0.399091 }
+      }
+      <Vertex> 686 {
+        -0.086035348475 0.46671679616 0.410647988319
+        <UV>  {
+          0.650011 0.794437
+          <Tangent> { 0.415119 -0.045712 0.908618 }
+          <Binormal> { -0.610560 -0.513121 0.253131 }
+        }
+        <Normal> { -0.227363 0.634816 0.738426 }
+      }
+      <Vertex> 687 {
+        -0.086035348475 0.46671679616 0.410647988319
+        <UV>  {
+          0.650011 0.794437
+          <Tangent> { 0.415119 -0.045712 0.908618 }
+          <Binormal> { -0.610560 -0.513121 0.253131 }
+        }
+        <Normal> { -0.227363 0.634816 0.738426 }
+      }
+      <Vertex> 688 {
+        -0.148634821177 0.242218762636 0.397329360247
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { -0.202378 0.947951 -0.245796 }
+          <Binormal> { 0.966212 0.234190 0.107652 }
+        }
+        <Normal> { -0.159612 0.215705 0.963317 }
+      }
+      <Vertex> 689 {
+        -0.0769482627511 0.242218762636 0.463189959526
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.694103 -0.638742 0.332009 }
+          <Binormal> { -0.551455 -0.717107 -0.226739 }
+        }
+        <Normal> { -0.132450 -0.204779 0.969787 }
+      }
+      <Vertex> 690 {
+        -0.086035348475 0.46671679616 0.410647988319
+        <UV>  {
+          0.650011 0.794437
+          <Tangent> { 0.415119 -0.045712 0.908618 }
+          <Binormal> { -0.610560 -0.513121 0.253131 }
+        }
+        <Normal> { -0.227363 0.634816 0.738426 }
+      }
+      <Vertex> 691 {
+        -0.266836851835 0.420796751976 0.463025540113
+        <UV>  {
+          0.650012 0.794437
+          <Tangent> { -0.090021 0.993060 -0.075300 }
+          <Binormal> { 0.994090 0.084993 -0.067539 }
+        }
+        <Normal> { 0.060671 0.080935 0.994842 }
+      }
+      <Vertex> 692 {
+        -0.148634821177 0.242218762636 0.397329360247
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { -0.202378 0.947951 -0.245796 }
+          <Binormal> { 0.966212 0.234190 0.107652 }
+        }
+        <Normal> { -0.159612 0.215705 0.963317 }
+      }
+      <Vertex> 693 {
+        -0.148634821177 0.242218762636 0.397329360247
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { -0.202378 0.947951 -0.245796 }
+          <Binormal> { 0.966212 0.234190 0.107652 }
+        }
+        <Normal> { -0.159612 0.215705 0.963317 }
+      }
+      <Vertex> 694 {
+        -0.266836851835 0.420796751976 0.463025540113
+        <UV>  {
+          0.650012 0.794437
+          <Tangent> { -0.090021 0.993060 -0.075300 }
+          <Binormal> { 0.994090 0.084993 -0.067539 }
+        }
+        <Normal> { 0.060671 0.080935 0.994842 }
+      }
+      <Vertex> 695 {
+        -0.195677220821 0.242218762636 0.505527496338
+        <UV>  {
+          0.650012 0.794437
+          <Tangent> { -0.766141 0.218842 -0.604240 }
+          <Binormal> { 0.598524 0.585406 -0.546872 }
+        }
+        <Normal> { -0.234046 0.780633 0.579485 }
+      }
+      <Vertex> 696 {
+        -0.266836851835 0.420796751976 0.463025540113
+        <UV>  {
+          0.650012 0.794437
+          <Tangent> { -0.090021 0.993060 -0.075300 }
+          <Binormal> { 0.994090 0.084993 -0.067539 }
+        }
+        <Normal> { 0.060671 0.080935 0.994842 }
+      }
+      <Vertex> 697 {
+        -0.252851814032 0.242218762636 0.543161392212
+        <UV>  {
+          0.650012 0.794437
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 0.000000 }
+        }
+        <Normal> { -0.249336 0.186377 0.950285 }
+      }
+      <Vertex> 698 {
+        -0.195677220821 0.242218762636 0.505527496338
+        <UV>  {
+          0.650012 0.794437
+          <Tangent> { -0.766141 0.218842 -0.604240 }
+          <Binormal> { 0.598524 0.585406 -0.546872 }
+        }
+        <Normal> { -0.234046 0.780633 0.579485 }
+      }
+      <Vertex> 699 {
+        -0.266836851835 0.420796751976 0.463025540113
+        <UV>  {
+          0.650012 0.794437
+          <Tangent> { -0.090021 0.993060 -0.075300 }
+          <Binormal> { 0.994090 0.084993 -0.067539 }
+        }
+        <Normal> { 0.060671 0.080935 0.994842 }
+      }
+      <Vertex> 700 {
+        -0.342559367418 0.242218777537 0.505527496338
+        <UV>  {
+          0.650012 0.794437
+          <Tangent> { 0.749986 0.366654 0.550489 }
+          <Binormal> { 0.623099 -0.670890 -0.402062 }
+        }
+        <Normal> { -0.221900 -0.644551 0.731620 }
+      }
+      <Vertex> 701 {
+        -0.252851814032 0.242218762636 0.543161392212
+        <UV>  {
+          0.650012 0.794437
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 0.000000 }
+        }
+        <Normal> { -0.249336 0.186377 0.950285 }
+      }
+      <Vertex> 702 {
+        -0.403713852167 0.242218777537 0.397329360247
+        <UV>  {
+          0.650012 0.794437
+          <Tangent> { 0.324790 -0.703698 0.631918 }
+          <Binormal> { -0.548257 -0.451346 -0.220824 }
+        }
+        <Normal> { -0.223487 -0.195685 0.954833 }
+      }
+      <Vertex> 703 {
+        -0.342559367418 0.242218777537 0.505527496338
+        <UV>  {
+          0.650012 0.794437
+          <Tangent> { 0.749986 0.366654 0.550489 }
+          <Binormal> { 0.623099 -0.670890 -0.402062 }
+        }
+        <Normal> { -0.221900 -0.644551 0.731620 }
+      }
+      <Vertex> 704 {
+        -0.266836851835 0.420796751976 0.463025540113
+        <UV>  {
+          0.650012 0.794437
+          <Tangent> { -0.090021 0.993060 -0.075300 }
+          <Binormal> { 0.994090 0.084993 -0.067539 }
+        }
+        <Normal> { 0.060671 0.080935 0.994842 }
+      }
+      <Vertex> 705 {
+        -0.46958565712 0.415694534779 0.38525891304
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { -0.374614 -0.897986 -0.230836 }
+          <Binormal> { -0.897271 0.304471 0.271707 }
+        }
+        <Normal> { 0.110660 -0.460036 0.880947 }
+      }
+      <Vertex> 706 {
+        -0.466389298439 0.242218777537 0.455372184515
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.216885 -0.936218 0.276507 }
+          <Binormal> { -0.950187 -0.263229 -0.145957 }
+        }
+        <Normal> { -0.191900 0.155400 0.969024 }
+      }
+      <Vertex> 707 {
+        -0.403713852167 0.242218777537 0.397329360247
+        <UV>  {
+          0.650012 0.794437
+          <Tangent> { 0.324790 -0.703698 0.631918 }
+          <Binormal> { -0.548257 -0.451346 -0.220824 }
+        }
+        <Normal> { -0.223487 -0.195685 0.954833 }
+      }
+      <Vertex> 708 {
+        -0.403713852167 0.242218777537 0.397329360247
+        <UV>  {
+          0.650012 0.794437
+          <Tangent> { 0.324790 -0.703698 0.631918 }
+          <Binormal> { -0.548257 -0.451346 -0.220824 }
+        }
+        <Normal> { -0.223487 -0.195685 0.954833 }
+      }
+      <Vertex> 709 {
+        -0.266836851835 0.420796751976 0.463025540113
+        <UV>  {
+          0.650012 0.794437
+          <Tangent> { -0.090021 0.993060 -0.075300 }
+          <Binormal> { 0.994090 0.084993 -0.067539 }
+        }
+        <Normal> { 0.060671 0.080935 0.994842 }
+      }
+      <Vertex> 710 {
+        -0.46958565712 0.415694534779 0.38525891304
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { -0.374614 -0.897986 -0.230836 }
+          <Binormal> { -0.897271 0.304471 0.271707 }
+        }
+        <Normal> { 0.110660 -0.460036 0.880947 }
+      }
+      <Vertex> 711 {
+        -0.46958565712 0.415694534779 0.38525891304
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { -0.374614 -0.897986 -0.230836 }
+          <Binormal> { -0.897271 0.304471 0.271707 }
+        }
+        <Normal> { 0.110660 -0.460036 0.880947 }
+      }
+      <Vertex> 712 {
+        -0.581281602383 0.247321009636 0.33425655961
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { -0.165258 -0.920560 0.353862 }
+      }
+      <Vertex> 713 {
+        -0.466389298439 0.242218777537 0.455372184515
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.216885 -0.936218 0.276507 }
+          <Binormal> { -0.950187 -0.263229 -0.145957 }
+        }
+        <Normal> { -0.191900 0.155400 0.969024 }
+      }
+      <Vertex> 714 {
+        -0.549134194851 0.425898998976 0.266795277596
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { -0.204279 -0.384030 -0.900439 }
+          <Binormal> { -0.939187 0.238698 0.111267 }
+        }
+        <Normal> { -0.217200 -0.953001 0.211097 }
+      }
+      <Vertex> 715 {
+        -0.581281602383 0.247321009636 0.33425655961
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { -0.165258 -0.920560 0.353862 }
+      }
+      <Vertex> 716 {
+        -0.46958565712 0.415694534779 0.38525891304
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { -0.374614 -0.897986 -0.230836 }
+          <Binormal> { -0.897271 0.304471 0.271707 }
+        }
+        <Normal> { 0.110660 -0.460036 0.880947 }
+      }
+      <Vertex> 717 {
+        -0.549134194851 0.425898998976 0.266795277596
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { -0.204279 -0.384030 -0.900439 }
+          <Binormal> { -0.939187 0.238698 0.111267 }
+        }
+        <Normal> { -0.217200 -0.953001 0.211097 }
+      }
+      <Vertex> 718 {
+        -0.555896282196 0.425898998976 0.118023470044
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.398255 -0.281887 -0.872888 }
+          <Binormal> { -0.611590 0.410206 -0.411509 }
+        }
+        <Normal> { -0.260231 -0.849086 -0.459639 }
+      }
+      <Vertex> 719 {
+        -0.581281602383 0.247321009636 0.33425655961
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { -0.165258 -0.920560 0.353862 }
+      }
+      <Vertex> 720 {
+        -0.555896282196 0.425898998976 0.118023470044
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.398255 -0.281887 -0.872888 }
+          <Binormal> { -0.611590 0.410206 -0.411509 }
+        }
+        <Normal> { -0.260231 -0.849086 -0.459639 }
+      }
+      <Vertex> 721 {
+        -0.590689480305 0.247321009636 0.127270013094
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.115221 -0.983781 -0.137472 }
+          <Binormal> { 0.591881 0.091064 -0.155592 }
+        }
+        <Normal> { -0.075076 -0.709372 -0.700766 }
+      }
+      <Vertex> 722 {
+        -0.581281602383 0.247321009636 0.33425655961
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { 0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { -0.165258 -0.920560 0.353862 }
+      }
+      <Vertex> 723 {
+        0.0325491055846 0.431001216173 0.105976678431
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.296484 0.381318 0.875610 }
+          <Binormal> { -0.913989 -0.067540 0.338892 }
+        }
+        <Normal> { -0.251381 0.819727 -0.514603 }
+      }
+      <Vertex> 724 {
+        -0.0575564093888 0.655499279499 0.215567469597
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { -0.080609 0.255090 0.963552 }
+          <Binormal> { -0.829825 -0.461963 0.052878 }
+        }
+        <Normal> { -0.483474 0.873989 0.048250 }
+      }
+      <Vertex> 725 {
+        0.0257870350033 0.431001216173 0.275035321712
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { -0.368346 0.906406 0.206759 }
+          <Binormal> { 0.080275 0.037291 -0.020465 }
+        }
+        <Normal> { -0.340556 0.893582 0.292398 }
+      }
+      <Vertex> 726 {
+        -0.086035348475 0.46671679616 0.410647988319
+        <UV>  {
+          0.650011 0.794437
+          <Tangent> { 0.415119 -0.045712 0.908618 }
+          <Binormal> { -0.610560 -0.513121 0.253131 }
+        }
+        <Normal> { -0.227363 0.634816 0.738426 }
+      }
+      <Vertex> 727 {
+        0.0257870350033 0.431001216173 0.275035321712
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { -0.368346 0.906406 0.206759 }
+          <Binormal> { 0.080275 0.037291 -0.020465 }
+        }
+        <Normal> { -0.340556 0.893582 0.292398 }
+      }
+      <Vertex> 728 {
+        -0.0575564093888 0.655499279499 0.215567469597
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { -0.080609 0.255090 0.963552 }
+          <Binormal> { -0.829825 -0.461963 0.052878 }
+        }
+        <Normal> { -0.483474 0.873989 0.048250 }
+      }
+      <Vertex> 729 {
+        -0.218954235315 0.852014780045 0.123727351427
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.909420 0.119938 0.398208 }
+          <Binormal> { -0.250061 0.470247 0.429450 }
+        }
+        <Normal> { -0.527451 0.402661 -0.748039 }
+      }
+      <Vertex> 730 {
+        -0.0575564093888 0.655499279499 0.215567469597
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { -0.080609 0.255090 0.963552 }
+          <Binormal> { -0.829825 -0.461963 0.052878 }
+        }
+        <Normal> { -0.483474 0.873989 0.048250 }
+      }
+      <Vertex> 731 {
+        0.0325491055846 0.431001216173 0.105976678431
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.296484 0.381318 0.875610 }
+          <Binormal> { -0.913989 -0.067540 0.338892 }
+        }
+        <Normal> { -0.251381 0.819727 -0.514603 }
+      }
+      <Vertex> 732 {
+        -0.0575564093888 0.655499279499 0.215567469597
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { -0.080609 0.255090 0.963552 }
+          <Binormal> { -0.829825 -0.461963 0.052878 }
+        }
+        <Normal> { -0.483474 0.873989 0.048250 }
+      }
+      <Vertex> 733 {
+        -0.154498741031 0.844281733036 0.389043241739
+        <UV>  {
+          0.650010 0.794438
+          <Tangent> { 0.306276 -0.421575 0.853505 }
+          <Binormal> { -0.655566 -0.743291 -0.131890 }
+        }
+        <Normal> { -0.684805 0.511979 0.518509 }
+      }
+      <Vertex> 734 {
+        -0.086035348475 0.46671679616 0.410647988319
+        <UV>  {
+          0.650011 0.794437
+          <Tangent> { 0.415119 -0.045712 0.908618 }
+          <Binormal> { -0.610560 -0.513121 0.253131 }
+        }
+        <Normal> { -0.227363 0.634816 0.738426 }
+      }
+      <Vertex> 735 {
+        -0.0575564093888 0.655499279499 0.215567469597
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { -0.080609 0.255090 0.963552 }
+          <Binormal> { -0.829825 -0.461963 0.052878 }
+        }
+        <Normal> { -0.483474 0.873989 0.048250 }
+      }
+      <Vertex> 736 {
+        -0.218954235315 0.852014780045 0.123727351427
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.909420 0.119938 0.398208 }
+          <Binormal> { -0.250061 0.470247 0.429450 }
+        }
+        <Normal> { -0.527451 0.402661 -0.748039 }
+      }
+      <Vertex> 737 {
+        -0.271849989891 0.910610675812 0.225771918893
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.834992 0.105997 0.539957 }
+          <Binormal> { -0.019581 -0.420584 0.112843 }
+        }
+        <Normal> { -0.990539 0.009400 -0.136845 }
+      }
+      <Vertex> 738 {
+        -0.0575564093888 0.655499279499 0.215567469597
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { -0.080609 0.255090 0.963552 }
+          <Binormal> { -0.829825 -0.461963 0.052878 }
+        }
+        <Normal> { -0.483474 0.873989 0.048250 }
+      }
+      <Vertex> 739 {
+        -0.271849989891 0.910610675812 0.225771918893
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.834992 0.105997 0.539957 }
+          <Binormal> { -0.019581 -0.420584 0.112843 }
+        }
+        <Normal> { -0.990539 0.009400 -0.136845 }
+      }
+      <Vertex> 740 {
+        -0.154498741031 0.844281733036 0.389043241739
+        <UV>  {
+          0.650010 0.794438
+          <Tangent> { 0.306276 -0.421575 0.853505 }
+          <Binormal> { -0.655566 -0.743291 -0.131890 }
+        }
+        <Normal> { -0.684805 0.511979 0.518509 }
+      }
+      <Vertex> 741 {
+        -0.218954235315 0.852014780045 0.123727351427
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.909420 0.119938 0.398208 }
+          <Binormal> { -0.250061 0.470247 0.429450 }
+        }
+        <Normal> { -0.527451 0.402661 -0.748039 }
+      }
+      <Vertex> 742 {
+        -0.340052425861 0.856957554817 0.123727351427
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.935707 0.327346 -0.131520 }
+          <Binormal> { -0.289718 0.724923 -0.256921 }
+        }
+        <Normal> { -0.544267 -0.464980 -0.698233 }
+      }
+      <Vertex> 743 {
+        -0.271849989891 0.910610675812 0.225771918893
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.834992 0.105997 0.539957 }
+          <Binormal> { -0.019581 -0.420584 0.112843 }
+        }
+        <Normal> { -0.990539 0.009400 -0.136845 }
+      }
+      <Vertex> 744 {
+        -0.549134194851 0.425898998976 0.266795277596
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { -0.204279 -0.384030 -0.900439 }
+          <Binormal> { -0.939187 0.238698 0.111267 }
+        }
+        <Normal> { -0.217200 -0.953001 0.211097 }
+      }
+      <Vertex> 745 {
+        -0.465726584196 0.6393019557 0.23597638309
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.145221 0.103020 -0.984021 }
+          <Binormal> { -0.876531 0.468339 -0.080326 }
+        }
+        <Normal> { -0.463698 -0.882077 -0.082980 }
+      }
+      <Vertex> 746 {
+        -0.555896282196 0.425898998976 0.118023470044
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.398255 -0.281887 -0.872888 }
+          <Binormal> { -0.611590 0.410206 -0.411509 }
+        }
+        <Normal> { -0.260231 -0.849086 -0.459639 }
+      }
+      <Vertex> 747 {
+        -0.340052425861 0.856957554817 0.123727351427
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.935707 0.327346 -0.131520 }
+          <Binormal> { -0.289718 0.724923 -0.256921 }
+        }
+        <Normal> { -0.544267 -0.464980 -0.698233 }
+      }
+      <Vertex> 748 {
+        -0.555896282196 0.425898998976 0.118023470044
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.398255 -0.281887 -0.872888 }
+          <Binormal> { -0.611590 0.410206 -0.411509 }
+        }
+        <Normal> { -0.260231 -0.849086 -0.459639 }
+      }
+      <Vertex> 749 {
+        -0.465726584196 0.6393019557 0.23597638309
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.145221 0.103020 -0.984021 }
+          <Binormal> { -0.876531 0.468339 -0.080326 }
+        }
+        <Normal> { -0.463698 -0.882077 -0.082980 }
+      }
+      <Vertex> 750 {
+        -0.404507935047 0.854486167431 0.389043241739
+        <UV>  {
+          0.650010 0.794439
+          <Tangent> { 0.743202 0.365779 -0.560229 }
+          <Binormal> { -0.278239 0.220268 -0.225297 }
+        }
+        <Normal> { -0.715323 -0.655202 0.242836 }
+      }
+      <Vertex> 751 {
+        -0.271849989891 0.910610675812 0.225771918893
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.834992 0.105997 0.539957 }
+          <Binormal> { -0.019581 -0.420584 0.112843 }
+        }
+        <Normal> { -0.990539 0.009400 -0.136845 }
+      }
+      <Vertex> 752 {
+        -0.465726584196 0.6393019557 0.23597638309
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.145221 0.103020 -0.984021 }
+          <Binormal> { -0.876531 0.468339 -0.080326 }
+        }
+        <Normal> { -0.463698 -0.882077 -0.082980 }
+      }
+      <Vertex> 753 {
+        -0.340052425861 0.856957554817 0.123727351427
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.935707 0.327346 -0.131520 }
+          <Binormal> { -0.289718 0.724923 -0.256921 }
+        }
+        <Normal> { -0.544267 -0.464980 -0.698233 }
+      }
+      <Vertex> 754 {
+        -0.465726584196 0.6393019557 0.23597638309
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.145221 0.103020 -0.984021 }
+          <Binormal> { -0.876531 0.468339 -0.080326 }
+        }
+        <Normal> { -0.463698 -0.882077 -0.082980 }
+      }
+      <Vertex> 755 {
+        -0.271849989891 0.910610675812 0.225771918893
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.834992 0.105997 0.539957 }
+          <Binormal> { -0.019581 -0.420584 0.112843 }
+        }
+        <Normal> { -0.990539 0.009400 -0.136845 }
+      }
+      <Vertex> 756 {
+        -0.549134194851 0.425898998976 0.266795277596
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { -0.204279 -0.384030 -0.900439 }
+          <Binormal> { -0.939187 0.238698 0.111267 }
+        }
+        <Normal> { -0.217200 -0.953001 0.211097 }
+      }
+      <Vertex> 757 {
+        -0.404507935047 0.854486167431 0.389043241739
+        <UV>  {
+          0.650010 0.794439
+          <Tangent> { 0.743202 0.365779 -0.560229 }
+          <Binormal> { -0.278239 0.220268 -0.225297 }
+        }
+        <Normal> { -0.715323 -0.655202 0.242836 }
+      }
+      <Vertex> 758 {
+        -0.465726584196 0.6393019557 0.23597638309
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.145221 0.103020 -0.984021 }
+          <Binormal> { -0.876531 0.468339 -0.080326 }
+        }
+        <Normal> { -0.463698 -0.882077 -0.082980 }
+      }
+      <Vertex> 759 {
+        -0.404507935047 0.854486167431 0.389043241739
+        <UV>  {
+          0.650010 0.794439
+          <Tangent> { 0.743202 0.365779 -0.560229 }
+          <Binormal> { -0.278239 0.220268 -0.225297 }
+        }
+        <Normal> { -0.715323 -0.655202 0.242836 }
+      }
+      <Vertex> 760 {
+        -0.154498741031 0.844281733036 0.389043241739
+        <UV>  {
+          0.650010 0.794438
+          <Tangent> { 0.306276 -0.421575 0.853505 }
+          <Binormal> { -0.655566 -0.743291 -0.131890 }
+        }
+        <Normal> { -0.684805 0.511979 0.518509 }
+      }
+      <Vertex> 761 {
+        -0.271849989891 0.910610675812 0.225771918893
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.834992 0.105997 0.539957 }
+          <Binormal> { -0.019581 -0.420584 0.112843 }
+        }
+        <Normal> { -0.990539 0.009400 -0.136845 }
+      }
+      <Vertex> 762 {
+        -0.35600438714 0.793259441853 0.480154633522
+        <UV>  {
+          0.650010 0.794439
+          <Tangent> { 0.987258 0.105761 0.118897 }
+          <Binormal> { 0.068456 -0.519512 -0.106303 }
+        }
+        <Normal> { -0.884793 -0.202460 0.419660 }
+      }
+      <Vertex> 763 {
+        -0.404507935047 0.854486167431 0.389043241739
+        <UV>  {
+          0.650010 0.794439
+          <Tangent> { 0.743202 0.365779 -0.560229 }
+          <Binormal> { -0.278239 0.220268 -0.225297 }
+        }
+        <Normal> { -0.715323 -0.655202 0.242836 }
+      }
+      <Vertex> 764 {
+        -0.449243366718 0.61468142271 0.536181986332
+        <UV>  {
+          0.650012 0.794439
+          <Tangent> { -0.272937 0.200516 -0.940903 }
+          <Binormal> { -0.827162 0.071699 0.255223 }
+        }
+        <Normal> { 0.016602 -0.947295 0.319926 }
+      }
+      <Vertex> 765 {
+        -0.549134194851 0.425898998976 0.266795277596
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { -0.204279 -0.384030 -0.900439 }
+          <Binormal> { -0.939187 0.238698 0.111267 }
+        }
+        <Normal> { -0.217200 -0.953001 0.211097 }
+      }
+      <Vertex> 766 {
+        -0.449243366718 0.61468142271 0.536181986332
+        <UV>  {
+          0.650012 0.794439
+          <Tangent> { -0.272937 0.200516 -0.940903 }
+          <Binormal> { -0.827162 0.071699 0.255223 }
+        }
+        <Normal> { 0.016602 -0.947295 0.319926 }
+      }
+      <Vertex> 767 {
+        -0.404507935047 0.854486167431 0.389043241739
+        <UV>  {
+          0.650010 0.794439
+          <Tangent> { 0.743202 0.365779 -0.560229 }
+          <Binormal> { -0.278239 0.220268 -0.225297 }
+        }
+        <Normal> { -0.715323 -0.655202 0.242836 }
+      }
+      <Vertex> 768 {
+        -0.549134194851 0.425898998976 0.266795277596
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { -0.204279 -0.384030 -0.900439 }
+          <Binormal> { -0.939187 0.238698 0.111267 }
+        }
+        <Normal> { -0.217200 -0.953001 0.211097 }
+      }
+      <Vertex> 769 {
+        -0.46958565712 0.415694534779 0.38525891304
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { -0.374614 -0.897986 -0.230836 }
+          <Binormal> { -0.897271 0.304471 0.271707 }
+        }
+        <Normal> { 0.110660 -0.460036 0.880947 }
+      }
+      <Vertex> 770 {
+        -0.449243366718 0.61468142271 0.536181986332
+        <UV>  {
+          0.650012 0.794439
+          <Tangent> { -0.272937 0.200516 -0.940903 }
+          <Binormal> { -0.827162 0.071699 0.255223 }
+        }
+        <Normal> { 0.016602 -0.947295 0.319926 }
+      }
+      <Vertex> 771 {
+        -0.35600438714 0.793259441853 0.480154633522
+        <UV>  {
+          0.650010 0.794439
+          <Tangent> { 0.987258 0.105761 0.118897 }
+          <Binormal> { 0.068456 -0.519512 -0.106303 }
+        }
+        <Normal> { -0.884793 -0.202460 0.419660 }
+      }
+      <Vertex> 772 {
+        -0.154498741031 0.844281733036 0.389043241739
+        <UV>  {
+          0.650010 0.794438
+          <Tangent> { 0.306276 -0.421575 0.853505 }
+          <Binormal> { -0.655566 -0.743291 -0.131890 }
+        }
+        <Normal> { -0.684805 0.511979 0.518509 }
+      }
+      <Vertex> 773 {
+        -0.404507935047 0.854486167431 0.389043241739
+        <UV>  {
+          0.650010 0.794439
+          <Tangent> { 0.743202 0.365779 -0.560229 }
+          <Binormal> { -0.278239 0.220268 -0.225297 }
+        }
+        <Normal> { -0.715323 -0.655202 0.242836 }
+      }
+      <Vertex> 774 {
+        -0.154498741031 0.844281733036 0.389043241739
+        <UV>  {
+          0.650010 0.794438
+          <Tangent> { 0.306276 -0.421575 0.853505 }
+          <Binormal> { -0.655566 -0.743291 -0.131890 }
+        }
+        <Normal> { -0.684805 0.511979 0.518509 }
+      }
+      <Vertex> 775 {
+        -0.35600438714 0.793259441853 0.480154633522
+        <UV>  {
+          0.650010 0.794439
+          <Tangent> { 0.987258 0.105761 0.118897 }
+          <Binormal> { 0.068456 -0.519512 -0.106303 }
+        }
+        <Normal> { -0.884793 -0.202460 0.419660 }
+      }
+      <Vertex> 776 {
+        -0.251364469528 0.772850513458 0.46946310997
+        <UV>  {
+          0.650009 0.794439
+          <Tangent> { -0.098030 -0.593124 0.799121 }
+          <Binormal> { -0.631669 -0.559348 -0.492648 }
+        }
+        <Normal> { -0.718314 0.679373 0.149663 }
+      }
+      <Vertex> 777 {
+        -0.154498741031 0.844281733036 0.389043241739
+        <UV>  {
+          0.650010 0.794438
+          <Tangent> { 0.306276 -0.421575 0.853505 }
+          <Binormal> { -0.655566 -0.743291 -0.131890 }
+        }
+        <Normal> { -0.684805 0.511979 0.518509 }
+      }
+      <Vertex> 778 {
+        -0.251364469528 0.772850513458 0.46946310997
+        <UV>  {
+          0.650009 0.794439
+          <Tangent> { -0.098030 -0.593124 0.799121 }
+          <Binormal> { -0.631669 -0.559348 -0.492648 }
+        }
+        <Normal> { -0.718314 0.679373 0.149663 }
+      }
+      <Vertex> 779 {
+        -0.086035348475 0.46671679616 0.410647988319
+        <UV>  {
+          0.650011 0.794437
+          <Tangent> { 0.415119 -0.045712 0.908618 }
+          <Binormal> { -0.610560 -0.513121 0.253131 }
+        }
+        <Normal> { -0.227363 0.634816 0.738426 }
+      }
+      <Vertex> 780 {
+        -0.121100708842 0.594272494316 0.461548179388
+        <UV>  {
+          0.650009 0.794437
+          <Tangent> { 0.026867 0.947363 0.319033 }
+          <Binormal> { -0.227259 0.090500 -0.249599 }
+        }
+        <Normal> { 0.290506 0.953398 0.081179 }
+      }
+      <Vertex> 781 {
+        -0.086035348475 0.46671679616 0.410647988319
+        <UV>  {
+          0.650011 0.794437
+          <Tangent> { 0.415119 -0.045712 0.908618 }
+          <Binormal> { -0.610560 -0.513121 0.253131 }
+        }
+        <Normal> { -0.227363 0.634816 0.738426 }
+      }
+      <Vertex> 782 {
+        -0.251364469528 0.772850513458 0.46946310997
+        <UV>  {
+          0.650009 0.794439
+          <Tangent> { -0.098030 -0.593124 0.799121 }
+          <Binormal> { -0.631669 -0.559348 -0.492648 }
+        }
+        <Normal> { -0.718314 0.679373 0.149663 }
+      }
+      <Vertex> 783 {
+        -0.121100708842 0.594272494316 0.461548179388
+        <UV>  {
+          0.650009 0.794437
+          <Tangent> { 0.026867 0.947363 0.319033 }
+          <Binormal> { -0.227259 0.090500 -0.249599 }
+        }
+        <Normal> { 0.290506 0.953398 0.081179 }
+      }
+      <Vertex> 784 {
+        -0.266836851835 0.420796751976 0.463025540113
+        <UV>  {
+          0.650012 0.794437
+          <Tangent> { -0.090021 0.993060 -0.075300 }
+          <Binormal> { 0.994090 0.084993 -0.067539 }
+        }
+        <Normal> { 0.060671 0.080935 0.994842 }
+      }
+      <Vertex> 785 {
+        -0.086035348475 0.46671679616 0.410647988319
+        <UV>  {
+          0.650011 0.794437
+          <Tangent> { 0.415119 -0.045712 0.908618 }
+          <Binormal> { -0.610560 -0.513121 0.253131 }
+        }
+        <Normal> { -0.227363 0.634816 0.738426 }
+      }
+      <Vertex> 786 {
+        -0.257331192493 0.502432405949 0.514491260052
+        <UV>  {
+          0.650014 0.794436
+          <Tangent> { 0.932289 0.333661 -0.139667 }
+          <Binormal> { 0.117225 -0.356164 -0.068381 }
+        }
+        <Normal> { 0.934446 0.261086 0.242042 }
+      }
+      <Vertex> 787 {
+        -0.266836851835 0.420796751976 0.463025540113
+        <UV>  {
+          0.650012 0.794437
+          <Tangent> { -0.090021 0.993060 -0.075300 }
+          <Binormal> { 0.994090 0.084993 -0.067539 }
+        }
+        <Normal> { 0.060671 0.080935 0.994842 }
+      }
+      <Vertex> 788 {
+        -0.121100708842 0.594272494316 0.461548179388
+        <UV>  {
+          0.650009 0.794437
+          <Tangent> { 0.026867 0.947363 0.319033 }
+          <Binormal> { -0.227259 0.090500 -0.249599 }
+        }
+        <Normal> { 0.290506 0.953398 0.081179 }
+      }
+      <Vertex> 789 {
+        -0.257331192493 0.502432405949 0.514491260052
+        <UV>  {
+          0.650014 0.794436
+          <Tangent> { 0.932289 0.333661 -0.139667 }
+          <Binormal> { 0.117225 -0.356164 -0.068381 }
+        }
+        <Normal> { 0.934446 0.261086 0.242042 }
+      }
+      <Vertex> 790 {
+        -0.3545127213 0.512636899948 0.500786542892
+        <UV>  {
+          0.650013 0.794437
+          <Tangent> { 0.037811 -0.679233 -0.732948 }
+          <Binormal> { -0.460892 -0.661630 0.589365 }
+        }
+        <Normal> { 0.887112 -0.348857 0.302103 }
+      }
+      <Vertex> 791 {
+        -0.266836851835 0.420796751976 0.463025540113
+        <UV>  {
+          0.650012 0.794437
+          <Tangent> { -0.090021 0.993060 -0.075300 }
+          <Binormal> { 0.994090 0.084993 -0.067539 }
+        }
+        <Normal> { 0.060671 0.080935 0.994842 }
+      }
+      <Vertex> 792 {
+        -0.3545127213 0.512636899948 0.500786542892
+        <UV>  {
+          0.650013 0.794437
+          <Tangent> { 0.037811 -0.679233 -0.732948 }
+          <Binormal> { -0.460892 -0.661630 0.589365 }
+        }
+        <Normal> { 0.887112 -0.348857 0.302103 }
+      }
+      <Vertex> 793 {
+        -0.449243366718 0.61468142271 0.536181986332
+        <UV>  {
+          0.650012 0.794439
+          <Tangent> { -0.272937 0.200516 -0.940903 }
+          <Binormal> { -0.827162 0.071699 0.255223 }
+        }
+        <Normal> { 0.016602 -0.947295 0.319926 }
+      }
+      <Vertex> 794 {
+        -0.46958565712 0.415694534779 0.38525891304
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { -0.374614 -0.897986 -0.230836 }
+          <Binormal> { -0.897271 0.304471 0.271707 }
+        }
+        <Normal> { 0.110660 -0.460036 0.880947 }
+      }
+      <Vertex> 795 {
+        -0.46958565712 0.415694534779 0.38525891304
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { -0.374614 -0.897986 -0.230836 }
+          <Binormal> { -0.897271 0.304471 0.271707 }
+        }
+        <Normal> { 0.110660 -0.460036 0.880947 }
+      }
+      <Vertex> 796 {
+        -0.266836851835 0.420796751976 0.463025540113
+        <UV>  {
+          0.650012 0.794437
+          <Tangent> { -0.090021 0.993060 -0.075300 }
+          <Binormal> { 0.994090 0.084993 -0.067539 }
+        }
+        <Normal> { 0.060671 0.080935 0.994842 }
+      }
+      <Vertex> 797 {
+        -0.3545127213 0.512636899948 0.500786542892
+        <UV>  {
+          0.650013 0.794437
+          <Tangent> { 0.037811 -0.679233 -0.732948 }
+          <Binormal> { -0.460892 -0.661630 0.589365 }
+        }
+        <Normal> { 0.887112 -0.348857 0.302103 }
+      }
+      <Vertex> 798 {
+        -0.266747772694 0.359570026398 0.133931815624
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { -0.005554 -0.006012 -0.999939 }
+      }
+      <Vertex> 799 {
+        0.0648970454931 0.0228229332715 0.118625126779
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 0.000000 -0.000000 }
+        }
+        <Normal> { 0.214484 0.875729 -0.432508 }
+      }
+      <Vertex> 800 {
+        -0.0597961470485 -0.196572884917 0.100118331611
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 0.000000 -0.000000 }
+        }
+        <Normal> { 0.426283 0.486038 -0.762871 }
+      }
+      <Vertex> 801 {
+        -0.0597961470485 -0.196572884917 0.100118331611
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 0.000000 -0.000000 }
+        }
+        <Normal> { 0.426283 0.486038 -0.762871 }
+      }
+      <Vertex> 802 {
+        -0.174908325076 -0.242492929101 0.118625126779
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 0.000000 -0.000000 }
+        }
+        <Normal> { 0.593951 -0.003754 -0.804468 }
+      }
+      <Vertex> 803 {
+        -0.266747772694 0.359570026398 0.133931815624
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { -0.005554 -0.006012 -0.999939 }
+      }
+      <Vertex> 804 {
+        -0.174908325076 -0.242492929101 0.118625126779
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 0.000000 -0.000000 }
+        }
+        <Normal> { 0.593951 -0.003754 -0.804468 }
+      }
+      <Vertex> 805 {
+        -0.358588546515 -0.242492929101 0.108420670033
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 0.000000 -0.000000 }
+        }
+        <Normal> { 0.528703 0.011658 -0.848720 }
+      }
+      <Vertex> 806 {
+        -0.266747772694 0.359570026398 0.133931815624
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { -0.005554 -0.006012 -0.999939 }
+      }
+      <Vertex> 807 {
+        -0.266747772694 0.359570026398 0.133931815624
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { -0.005554 -0.006012 -0.999939 }
+      }
+      <Vertex> 808 {
+        -0.358588546515 -0.242492929101 0.108420670033
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 0.000000 -0.000000 }
+        }
+        <Normal> { 0.528703 0.011658 -0.848720 }
+      }
+      <Vertex> 809 {
+        -0.475308865309 -0.196572870016 0.0951356887817
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 0.000000 -0.000000 }
+        }
+        <Normal> { 0.461959 -0.502152 -0.731010 }
+      }
+      <Vertex> 810 {
+        -0.475308865309 -0.196572870016 0.0951356887817
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 0.000000 -0.000000 }
+        }
+        <Normal> { 0.461959 -0.502152 -0.731010 }
+      }
+      <Vertex> 811 {
+        -0.598392665386 0.0228229612112 0.118625126779
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.900106 -0.020449 0.435114 }
+          <Binormal> { 0.393475 0.466754 -0.792034 }
+        }
+        <Normal> { 0.186895 -0.884121 -0.428175 }
+      }
+      <Vertex> 812 {
+        -0.266747772694 0.359570026398 0.133931815624
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { -0.005554 -0.006012 -0.999939 }
+      }
+      <Vertex> 813 {
+        -0.266747772694 0.359570026398 0.133931815624
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { -0.005554 -0.006012 -0.999939 }
+      }
+      <Vertex> 814 {
+        -0.598392665386 0.0228229612112 0.118625126779
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.900106 -0.020449 0.435114 }
+          <Binormal> { 0.393475 0.466754 -0.792034 }
+        }
+        <Normal> { 0.186895 -0.884121 -0.428175 }
+      }
+      <Vertex> 815 {
+        -0.590689480305 0.247321009636 0.127270013094
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.115221 -0.983781 -0.137472 }
+          <Binormal> { 0.591881 0.091064 -0.155592 }
+        }
+        <Normal> { -0.075076 -0.709372 -0.700766 }
+      }
+      <Vertex> 816 {
+        -0.590689480305 0.247321009636 0.127270013094
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.115221 -0.983781 -0.137472 }
+          <Binormal> { 0.591881 0.091064 -0.155592 }
+        }
+        <Normal> { -0.075076 -0.709372 -0.700766 }
+      }
+      <Vertex> 817 {
+        -0.555896282196 0.425898998976 0.118023470044
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.398255 -0.281887 -0.872888 }
+          <Binormal> { -0.611590 0.410206 -0.411509 }
+        }
+        <Normal> { -0.260231 -0.849086 -0.459639 }
+      }
+      <Vertex> 818 {
+        -0.266747772694 0.359570026398 0.133931815624
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { -0.005554 -0.006012 -0.999939 }
+      }
+      <Vertex> 819 {
+        -0.555896282196 0.425898998976 0.118023470044
+        <UV>  {
+          0.650012 0.794438
+          <Tangent> { 0.398255 -0.281887 -0.872888 }
+          <Binormal> { -0.611590 0.410206 -0.411509 }
+        }
+        <Normal> { -0.260231 -0.849086 -0.459639 }
+      }
+      <Vertex> 820 {
+        -0.340052425861 0.856957554817 0.123727351427
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.935707 0.327346 -0.131520 }
+          <Binormal> { -0.289718 0.724923 -0.256921 }
+        }
+        <Normal> { -0.544267 -0.464980 -0.698233 }
+      }
+      <Vertex> 821 {
+        -0.266747772694 0.359570026398 0.133931815624
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { -0.005554 -0.006012 -0.999939 }
+      }
+      <Vertex> 822 {
+        -0.266747772694 0.359570026398 0.133931815624
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { -0.005554 -0.006012 -0.999939 }
+      }
+      <Vertex> 823 {
+        -0.340052425861 0.856957554817 0.123727351427
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.935707 0.327346 -0.131520 }
+          <Binormal> { -0.289718 0.724923 -0.256921 }
+        }
+        <Normal> { -0.544267 -0.464980 -0.698233 }
+      }
+      <Vertex> 824 {
+        -0.218954235315 0.852014780045 0.123727351427
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.909420 0.119938 0.398208 }
+          <Binormal> { -0.250061 0.470247 0.429450 }
+        }
+        <Normal> { -0.527451 0.402661 -0.748039 }
+      }
+      <Vertex> 825 {
+        -0.218954235315 0.852014780045 0.123727351427
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.909420 0.119938 0.398208 }
+          <Binormal> { -0.250061 0.470247 0.429450 }
+        }
+        <Normal> { -0.527451 0.402661 -0.748039 }
+      }
+      <Vertex> 826 {
+        0.0325491055846 0.431001216173 0.105976678431
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.296484 0.381318 0.875610 }
+          <Binormal> { -0.913989 -0.067540 0.338892 }
+        }
+        <Normal> { -0.251381 0.819727 -0.514603 }
+      }
+      <Vertex> 827 {
+        -0.266747772694 0.359570026398 0.133931815624
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { -0.005554 -0.006012 -0.999939 }
+      }
+      <Vertex> 828 {
+        0.0325491055846 0.431001216173 0.105976678431
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.296484 0.381318 0.875610 }
+          <Binormal> { -0.913989 -0.067540 0.338892 }
+        }
+        <Normal> { -0.251381 0.819727 -0.514603 }
+      }
+      <Vertex> 829 {
+        0.0669642239809 0.237116530538 0.124484717846
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 0.000000 }
+        }
+        <Normal> { -0.032807 0.703879 -0.709525 }
+      }
+      <Vertex> 830 {
+        -0.266747772694 0.359570026398 0.133931815624
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { -0.005554 -0.006012 -0.999939 }
+      }
+      <Vertex> 831 {
+        0.0669642239809 0.237116530538 0.124484717846
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 0.000000 }
+        }
+        <Normal> { -0.032807 0.703879 -0.709525 }
+      }
+      <Vertex> 832 {
+        0.0648970454931 0.0228229332715 0.118625126779
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 0.000000 -0.000000 }
+        }
+        <Normal> { 0.214484 0.875729 -0.432508 }
+      }
+      <Vertex> 833 {
+        -0.266747772694 0.359570026398 0.133931815624
+        <UV>  {
+          0.650011 0.794438
+          <Tangent> { 0.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.000000 -0.000000 }
+        }
+        <Normal> { -0.005554 -0.006012 -0.999939 }
+      }
+      <Vertex> 834 {
+        0.182248339057 0.930432260036 1.5283536911
+        <UV>  {
+          0.142446 0.194515
+          <Tangent> { -0.630985 -0.669941 -0.391200 }
+          <Binormal> { -0.749170 0.414191 0.499058 }
+        }
+        <Normal> { 0.087527 -0.697989 0.710685 }
+      }
+      <Vertex> 835 {
+        0.248577311635 0.93576925993 1.59405100346
+        <UV>  {
+          0.182884 0.172634
+          <Tangent> { -0.999740 0.020380 -0.010261 }
+          <Binormal> { 0.020021 0.978614 -0.006985 }
+        }
+        <Normal> { 0.194525 0.003021 0.980865 }
+      }
+      <Vertex> 836 {
+        0.248577311635 0.995433986187 1.55788207054
+        <UV>  {
+          0.182410 0.201911
+          <Tangent> { -0.999911 0.005996 -0.011955 }
+          <Binormal> { 0.003169 0.535925 0.003727 }
+        }
+        <Normal> { -0.850581 0.001373 0.525803 }
+      }
+      <Vertex> 837 {
+        0.248577311635 0.995433986187 1.55788207054
+        <UV>  {
+          0.182410 0.201911
+          <Tangent> { -0.999911 0.005996 -0.011955 }
+          <Binormal> { 0.003169 0.535925 0.003727 }
+        }
+        <Normal> { -0.850581 0.001373 0.525803 }
+      }
+      <Vertex> 838 {
+        0.182248339057 0.989793002605 1.50772547722
+        <UV>  {
+          0.158348 0.216991
+          <Tangent> { -0.906877 -0.378616 -0.185001 }
+          <Binormal> { -0.180862 0.375024 0.119078 }
+        }
+        <Normal> { -0.841700 -0.482711 0.241829 }
+      }
+      <Vertex> 839 {
+        0.182248339057 0.930432260036 1.5283536911
+        <UV>  {
+          0.142446 0.194515
+          <Tangent> { -0.630985 -0.669941 -0.391200 }
+          <Binormal> { -0.749170 0.414191 0.499058 }
+        }
+        <Normal> { 0.087527 -0.697989 0.710685 }
+      }
+      <Vertex> 840 {
+        0.182248339057 0.989793002605 1.50772547722
+        <UV>  {
+          0.158348 0.216991
+          <Tangent> { -0.906877 -0.378616 -0.185001 }
+          <Binormal> { -0.180862 0.375024 0.119078 }
+        }
+        <Normal> { -0.841700 -0.482711 0.241829 }
+      }
+      <Vertex> 841 {
+        0.248577311635 0.995433986187 1.55788207054
+        <UV>  {
+          0.182410 0.201911
+          <Tangent> { -0.999911 0.005996 -0.011955 }
+          <Binormal> { 0.003169 0.535925 0.003727 }
+        }
+        <Normal> { -0.850581 0.001373 0.525803 }
+      }
+      <Vertex> 842 {
+        0.248577311635 0.97661948204 1.52601051331
+        <UV>  {
+          0.182209 0.215068
+          <Tangent> { -0.999790 -0.009244 -0.018293 }
+          <Binormal> { 0.003346 -0.348263 -0.006896 }
+        }
+        <Normal> { -0.930845 -0.001709 -0.365368 }
+      }
+      <Vertex> 843 {
+        0.131226047873 0.936121821404 1.44520449638
+        <UV>  {
+          0.125640 0.239989
+          <Tangent> { -0.526030 -0.777210 0.345306 }
+          <Binormal> { 0.333309 -0.058755 0.375509 }
+        }
+        <Normal> { -0.182287 -0.983184 0.007965 }
+      }
+      <Vertex> 844 {
+        0.182248339057 0.930432260036 1.5283536911
+        <UV>  {
+          0.142446 0.194515
+          <Tangent> { -0.630985 -0.669941 -0.391200 }
+          <Binormal> { -0.749170 0.414191 0.499058 }
+        }
+        <Normal> { 0.087527 -0.697989 0.710685 }
+      }
+      <Vertex> 845 {
+        0.182248339057 0.989793002605 1.50772547722
+        <UV>  {
+          0.158348 0.216991
+          <Tangent> { -0.906877 -0.378616 -0.185001 }
+          <Binormal> { -0.180862 0.375024 0.119078 }
+        }
+        <Normal> { -0.841700 -0.482711 0.241829 }
+      }
+      <Vertex> 846 {
+        0.156737193465 0.836657643318 1.45827651024
+        <UV>  {
+          0.649696 0.794560
+          <Tangent> { 0.617216 0.363600 0.697739 }
+          <Binormal> { 0.388254 -0.530031 -0.067242 }
+        }
+        <Normal> { -0.808802 -0.585406 -0.055574 }
+      }
+      <Vertex> 847 {
+        0.182248339057 0.930432260036 1.5283536911
+        <UV>  {
+          0.649638 0.794480
+          <Tangent> { 0.722269 -0.330294 0.607646 }
+          <Binormal> { 0.189395 -0.460120 -0.475226 }
+        }
+        <Normal> { 0.087527 -0.697989 0.710685 }
+      }
+      <Vertex> 848 {
+        0.131226047873 0.936121821404 1.44520449638
+        <UV>  {
+          0.649681 0.794499
+          <Tangent> { 0.052568 0.369804 0.927622 }
+          <Binormal> { 0.914969 -0.169512 0.015726 }
+        }
+        <Normal> { -0.182287 -0.983184 0.007965 }
+      }
+      <Vertex> 849 {
+        0.131226047873 0.936121821404 1.44520449638
+        <UV>  {
+          0.649681 0.794499
+          <Tangent> { 0.052568 0.369804 0.927622 }
+          <Binormal> { 0.914969 -0.169512 0.015726 }
+        }
+        <Normal> { -0.182287 -0.983184 0.007965 }
+      }
+      <Vertex> 850 {
+        0.182248339057 0.847973823547 1.32980763912
+        <UV>  {
+          0.649723 0.794470
+          <Tangent> { -0.165635 0.898543 0.406430 }
+          <Binormal> { -0.589603 -0.259327 0.333041 }
+        }
+        <Normal> { -0.290597 -0.434248 -0.852596 }
+      }
+      <Vertex> 851 {
+        0.156737193465 0.836657643318 1.45827651024
+        <UV>  {
+          0.649696 0.794560
+          <Tangent> { 0.617216 0.363600 0.697739 }
+          <Binormal> { 0.388254 -0.530031 -0.067242 }
+        }
+        <Normal> { -0.808802 -0.585406 -0.055574 }
+      }
+      <Vertex> 852 {
+        0.182248339057 0.847973823547 1.32980763912
+        <UV>  {
+          0.649723 0.794470
+          <Tangent> { -0.165635 0.898543 0.406430 }
+          <Binormal> { -0.589603 -0.259327 0.333041 }
+        }
+        <Normal> { -0.290597 -0.434248 -0.852596 }
+      }
+      <Vertex> 853 {
+        0.156737178564 0.695588648319 1.23194479942
+        <UV>  {
+          0.649853 0.794382
+          <Tangent> { 0.542004 0.598110 0.590335 }
+          <Binormal> { -0.709437 0.254847 0.393153 }
+        }
+        <Normal> { -0.370037 0.317026 -0.873226 }
+      }
+      <Vertex> 854 {
+        0.156737193465 0.836657643318 1.45827651024
+        <UV>  {
+          0.649696 0.794560
+          <Tangent> { 0.617216 0.363600 0.697739 }
+          <Binormal> { 0.388254 -0.530031 -0.067242 }
+        }
+        <Normal> { -0.808802 -0.585406 -0.055574 }
+      }
+      <Vertex> 855 {
+        0.156737193465 0.836657643318 1.45827651024
+        <UV>  {
+          0.649696 0.794560
+          <Tangent> { 0.617216 0.363600 0.697739 }
+          <Binormal> { 0.388254 -0.530031 -0.067242 }
+        }
+        <Normal> { -0.808802 -0.585406 -0.055574 }
+      }
+      <Vertex> 856 {
+        0.248577296734 0.84658241272 1.49699413776
+        <UV>  {
+          0.649579 0.794540
+          <Tangent> { 0.908300 -0.144252 0.392661 }
+          <Binormal> { -0.111732 -0.949147 -0.090233 }
+        }
+        <Normal> { -0.640126 0.002319 0.768242 }
+      }
+      <Vertex> 857 {
+        0.182248339057 0.930432260036 1.5283536911
+        <UV>  {
+          0.649638 0.794480
+          <Tangent> { 0.722269 -0.330294 0.607646 }
+          <Binormal> { 0.189395 -0.460120 -0.475226 }
+        }
+        <Normal> { 0.087527 -0.697989 0.710685 }
+      }
+      <Vertex> 858 {
+        0.248577296734 0.84658241272 1.49699413776
+        <UV>  {
+          0.649579 0.794540
+          <Tangent> { 0.908300 -0.144252 0.392661 }
+          <Binormal> { -0.111732 -0.949147 -0.090233 }
+        }
+        <Normal> { -0.640126 0.002319 0.768242 }
+      }
+      <Vertex> 859 {
+        0.248577311635 0.93576925993 1.59405100346
+        <UV>  {
+          0.649580 0.794441
+          <Tangent> { 0.853339 -0.387281 0.349036 }
+          <Binormal> { -0.380925 -0.769114 0.077914 }
+        }
+        <Normal> { 0.194525 0.003021 0.980865 }
+      }
+      <Vertex> 860 {
+        0.182248339057 0.930432260036 1.5283536911
+        <UV>  {
+          0.649638 0.794480
+          <Tangent> { 0.722269 -0.330294 0.607646 }
+          <Binormal> { 0.189395 -0.460120 -0.475226 }
+        }
+        <Normal> { 0.087527 -0.697989 0.710685 }
+      }
+      <Vertex> 861 {
+        0.248577266932 0.122044183314 3.3946120739
+        <UV>  {
+          0.687692 0.863782
+          <Tangent> { -0.998995 -0.003782 -0.044661 }
+          <Binormal> { -0.000371 0.053881 0.003733 }
+        }
+        <Normal> { 0.995117 0.000031 0.098422 }
+      }
+      <Vertex> 862 {
+        0.248577266932 0.195963606238 3.59063100815
+        <UV>  {
+          0.688273 0.876805
+          <Tangent> { -0.999205 -0.024067 -0.031785 }
+          <Binormal> { -0.016137 0.647287 0.017165 }
+        }
+        <Normal> { 0.741081 0.000671 0.671377 }
+      }
+      <Vertex> 863 {
+        0.121524184942 0.119267001748 3.33934569359
+        <UV>  {
+          0.683135 0.861995
+          <Tangent> { -0.938518 0.323606 -0.120259 }
+          <Binormal> { 0.050332 0.163105 0.046106 }
+        }
+        <Normal> { 0.889187 -0.355724 0.287729 }
+      }
+      <Vertex> 864 {
+        0.121524184942 0.217205867171 3.49508333206
+        <UV>  {
+          0.682264 0.871594
+          <Tangent> { -0.830243 0.545988 -0.112224 }
+          <Binormal> { 0.238277 0.376107 0.067026 }
+        }
+        <Normal> { 0.662496 -0.516404 0.542558 }
+      }
+      <Vertex> 865 {
+        0.121524184942 0.119267001748 3.33934569359
+        <UV>  {
+          0.683135 0.861995
+          <Tangent> { -0.938518 0.323606 -0.120259 }
+          <Binormal> { 0.050332 0.163105 0.046106 }
+        }
+        <Normal> { 0.889187 -0.355724 0.287729 }
+      }
+      <Vertex> 866 {
+        0.248577266932 0.195963606238 3.59063100815
+        <UV>  {
+          0.688273 0.876805
+          <Tangent> { -0.999205 -0.024067 -0.031785 }
+          <Binormal> { -0.016137 0.647287 0.017165 }
+        }
+        <Normal> { 0.741081 0.000671 0.671377 }
+      }
+      <Vertex> 867 {
+        0.0699992775917 0.129969730973 3.19016671181
+        <UV>  {
+          0.680837 0.854819
+          <Tangent> { -0.923223 0.375147 -0.083215 }
+          <Binormal> { -0.096044 -0.233364 0.013516 }
+        }
+        <Normal> { 0.907590 -0.383435 -0.170965 }
+      }
+      <Vertex> 868 {
+        0.248577266932 0.122044183314 3.3946120739
+        <UV>  {
+          0.687692 0.863782
+          <Tangent> { -0.998995 -0.003782 -0.044661 }
+          <Binormal> { -0.000371 0.053881 0.003733 }
+        }
+        <Normal> { 0.995117 0.000031 0.098422 }
+      }
+      <Vertex> 869 {
+        0.121524184942 0.119267001748 3.33934569359
+        <UV>  {
+          0.683135 0.861995
+          <Tangent> { -0.938518 0.323606 -0.120259 }
+          <Binormal> { 0.050332 0.163105 0.046106 }
+        }
+        <Normal> { 0.889187 -0.355724 0.287729 }
+      }
+      <Vertex> 870 {
+        -0.0575564280152 0.277934342623 3.39935803413
+        <UV>  {
+          0.673434 0.865851
+          <Tangent> { -0.606253 0.788705 -0.101988 }
+          <Binormal> { 0.175448 0.141593 0.052051 }
+        }
+        <Normal> { 0.534288 -0.780938 0.323435 }
+      }
+      <Vertex> 871 {
+        0.121524184942 0.119267001748 3.33934569359
+        <UV>  {
+          0.683135 0.861995
+          <Tangent> { -0.938518 0.323606 -0.120259 }
+          <Binormal> { 0.050332 0.163105 0.046106 }
+        }
+        <Normal> { 0.889187 -0.355724 0.287729 }
+      }
+      <Vertex> 872 {
+        0.121524184942 0.217205867171 3.49508333206
+        <UV>  {
+          0.682264 0.871594
+          <Tangent> { -0.830243 0.545988 -0.112224 }
+          <Binormal> { 0.238277 0.376107 0.067026 }
+        }
+        <Normal> { 0.662496 -0.516404 0.542558 }
+      }
+      <Vertex> 873 {
+        -0.0575564280152 0.277934342623 3.39935803413
+        <UV>  {
+          0.673434 0.865851
+          <Tangent> { -0.606253 0.788705 -0.101988 }
+          <Binormal> { 0.175448 0.141593 0.052051 }
+        }
+        <Normal> { 0.534288 -0.780938 0.323435 }
+      }
+      <Vertex> 874 {
+        0.0699992775917 0.129969730973 3.19016671181
+        <UV>  {
+          0.680837 0.854819
+          <Tangent> { -0.923223 0.375147 -0.083215 }
+          <Binormal> { -0.096044 -0.233364 0.013516 }
+        }
+        <Normal> { 0.907590 -0.383435 -0.170965 }
+      }
+      <Vertex> 875 {
+        0.121524184942 0.119267001748 3.33934569359
+        <UV>  {
+          0.683135 0.861995
+          <Tangent> { -0.938518 0.323606 -0.120259 }
+          <Binormal> { 0.050332 0.163105 0.046106 }
+        }
+        <Normal> { 0.889187 -0.355724 0.287729 }
+      }
+      <Vertex> 876 {
+        0.0699992924929 0.456511735916 3.67487764359
+        <UV>  {
+          0.675152 0.888513
+          <Tangent> { -0.507970 0.837958 -0.199480 }
+          <Binormal> { 0.563219 0.386504 0.189370 }
+        }
+        <Normal> { 0.122501 -0.574877 0.808985 }
+      }
+      <Vertex> 877 {
+        -0.0575564168394 0.476921260357 3.49629974365
+        <UV>  {
+          0.666363 0.874463
+          <Tangent> { -0.108408 0.971938 -0.208767 }
+          <Binormal> { 0.282884 0.055455 0.111281 }
+        }
+        <Normal> { -0.016633 -0.877377 0.479507 }
+      }
+      <Vertex> 878 {
+        -0.0575564280152 0.277934342623 3.39935803413
+        <UV>  {
+          0.673434 0.865851
+          <Tangent> { -0.606253 0.788705 -0.101988 }
+          <Binormal> { 0.175448 0.141593 0.052051 }
+        }
+        <Normal> { 0.534288 -0.780938 0.323435 }
+      }
+      <Vertex> 879 {
+        -0.0575564280152 0.277934342623 3.39935803413
+        <UV>  {
+          0.673434 0.865851
+          <Tangent> { -0.606253 0.788705 -0.101988 }
+          <Binormal> { 0.175448 0.141593 0.052051 }
+        }
+        <Normal> { 0.534288 -0.780938 0.323435 }
+      }
+      <Vertex> 880 {
+        0.121524184942 0.217205867171 3.49508333206
+        <UV>  {
+          0.682264 0.871594
+          <Tangent> { -0.830243 0.545988 -0.112224 }
+          <Binormal> { 0.238277 0.376107 0.067026 }
+        }
+        <Normal> { 0.662496 -0.516404 0.542558 }
+      }
+      <Vertex> 881 {
+        0.0699992924929 0.456511735916 3.67487764359
+        <UV>  {
+          0.675152 0.888513
+          <Tangent> { -0.507970 0.837958 -0.199480 }
+          <Binormal> { 0.563219 0.386504 0.189370 }
+        }
+        <Normal> { 0.122501 -0.574877 0.808985 }
+      }
+      <Vertex> 882 {
+        0.248577266932 0.195963606238 3.59063100815
+        <UV>  {
+          0.688273 0.876805
+          <Tangent> { -0.999205 -0.024067 -0.031785 }
+          <Binormal> { -0.016137 0.647287 0.017165 }
+        }
+        <Normal> { 0.741081 0.000671 0.671377 }
+      }
+      <Vertex> 883 {
+        0.248577281833 0.43816062808 3.68266606331
+        <UV>  {
+          0.689340 0.901637
+          <Tangent> { -0.994322 -0.103376 -0.025241 }
+          <Binormal> { -0.103518 0.993552 0.008739 }
+        }
+        <Normal> { -0.069277 -0.015992 0.997467 }
+      }
+      <Vertex> 884 {
+        0.0699992924929 0.456511735916 3.67487764359
+        <UV>  {
+          0.675152 0.888513
+          <Tangent> { -0.507970 0.837958 -0.199480 }
+          <Binormal> { 0.563219 0.386504 0.189370 }
+        }
+        <Normal> { 0.122501 -0.574877 0.808985 }
+      }
+      <Vertex> 885 {
+        0.0699992924929 0.456511735916 3.67487764359
+        <UV>  {
+          0.675152 0.888513
+          <Tangent> { -0.507970 0.837958 -0.199480 }
+          <Binormal> { 0.563219 0.386504 0.189370 }
+        }
+        <Normal> { 0.122501 -0.574877 0.808985 }
+      }
+      <Vertex> 886 {
+        0.121524184942 0.217205867171 3.49508333206
+        <UV>  {
+          0.682264 0.871594
+          <Tangent> { -0.830243 0.545988 -0.112224 }
+          <Binormal> { 0.238277 0.376107 0.067026 }
+        }
+        <Normal> { 0.662496 -0.516404 0.542558 }
+      }
+      <Vertex> 887 {
+        0.248577266932 0.195963606238 3.59063100815
+        <UV>  {
+          0.688273 0.876805
+          <Tangent> { -0.999205 -0.024067 -0.031785 }
+          <Binormal> { -0.016137 0.647287 0.017165 }
+        }
+        <Normal> { 0.741081 0.000671 0.671377 }
+      }
+      <Vertex> 888 {
+        0.248577281833 0.43816062808 3.68266606331
+        <UV>  {
+          0.689340 0.901637
+          <Tangent> { -0.994322 -0.103376 -0.025241 }
+          <Binormal> { -0.103518 0.993552 0.008739 }
+        }
+        <Normal> { -0.069277 -0.015992 0.997467 }
+      }
+      <Vertex> 889 {
+        0.248577296734 0.738485217094 3.61485123634
+        <UV>  {
+          0.652074 0.912455
+          <Tangent> { -0.267632 0.919562 -0.287714 }
+          <Binormal> { 0.664241 0.391472 0.633305 }
+        }
+        <Normal> { -0.677236 -0.039399 0.734672 }
+      }
+      <Vertex> 890 {
+        0.115919359028 0.68100976944 3.58813977242
+        <UV>  {
+          0.653292 0.893966
+          <Tangent> { 0.310953 0.861901 -0.400543 }
+          <Binormal> { 0.422430 0.064045 0.465759 }
+        }
+        <Normal> { -0.668050 -0.353862 0.654561 }
+      }
+      <Vertex> 891 {
+        0.248577296734 0.738485217094 3.61485123634
+        <UV>  {
+          0.639897 0.901512
+          <Tangent> { 0.723057 0.657567 -0.211645 }
+          <Binormal> { 0.474758 -0.387877 0.416840 }
+        }
+        <Normal> { -0.677236 -0.039399 0.734672 }
+      }
+      <Vertex> 892 {
+        0.069999307394 0.839179456234 3.24118900299
+        <UV>  {
+          0.635693 0.862263
+          <Tangent> { 0.781203 0.618111 -0.087524 }
+          <Binormal> { -0.016595 0.030083 0.064331 }
+        }
+        <Normal> { -0.821497 -0.567644 0.053529 }
+      }
+      <Vertex> 893 {
+        0.115919359028 0.68100976944 3.58813977242
+        <UV>  {
+          0.653292 0.893966
+          <Tangent> { 0.310953 0.861901 -0.400543 }
+          <Binormal> { 0.422430 0.064045 0.465759 }
+        }
+        <Normal> { -0.668050 -0.353862 0.654561 }
+      }
+      <Vertex> 894 {
+        0.248577296734 0.738485217094 3.61485123634
+        <UV>  {
+          0.639897 0.901512
+          <Tangent> { 0.723057 0.657567 -0.211645 }
+          <Binormal> { 0.474758 -0.387877 0.416840 }
+        }
+        <Normal> { -0.677236 -0.039399 0.734672 }
+      }
+      <Vertex> 895 {
+        0.248577296734 0.859583377838 3.45015597343
+        <UV>  {
+          0.626007 0.885049
+          <Tangent> { 0.877799 0.476478 -0.049371 }
+          <Binormal> { 0.159988 -0.248831 0.443064 }
+        }
+        <Normal> { -0.941679 -0.006409 0.336436 }
+      }
+      <Vertex> 896 {
+        0.069999307394 0.839179456234 3.24118900299
+        <UV>  {
+          0.635693 0.862263
+          <Tangent> { 0.781203 0.618111 -0.087524 }
+          <Binormal> { -0.016595 0.030083 0.064331 }
+        }
+        <Normal> { -0.821497 -0.567644 0.053529 }
+      }
+      <Vertex> 897 {
+        0.0699992924929 0.456511735916 3.67487764359
+        <UV>  {
+          0.675152 0.888513
+          <Tangent> { -0.507970 0.837958 -0.199480 }
+          <Binormal> { 0.563219 0.386504 0.189370 }
+        }
+        <Normal> { 0.122501 -0.574877 0.808985 }
+      }
+      <Vertex> 898 {
+        -0.0575564093888 0.660601496696 3.39935803413
+        <UV>  {
+          0.653554 0.871431
+          <Tangent> { 0.338701 0.900108 -0.274021 }
+          <Binormal> { 0.087693 0.007553 0.133202 }
+        }
+        <Normal> { -0.456313 -0.819391 0.346873 }
+      }
+      <Vertex> 899 {
+        -0.0575564168394 0.476921260357 3.49629974365
+        <UV>  {
+          0.666363 0.874463
+          <Tangent> { -0.108408 0.971938 -0.208767 }
+          <Binormal> { 0.282884 0.055455 0.111281 }
+        }
+        <Normal> { -0.016633 -0.877377 0.479507 }
+      }
+      <Vertex> 900 {
+        0.0699992924929 0.456511735916 3.67487764359
+        <UV>  {
+          0.675152 0.888513
+          <Tangent> { -0.507970 0.837958 -0.199480 }
+          <Binormal> { 0.563219 0.386504 0.189370 }
+        }
+        <Normal> { 0.122501 -0.574877 0.808985 }
+      }
+      <Vertex> 901 {
+        0.115919359028 0.68100976944 3.58813977242
+        <UV>  {
+          0.653292 0.893966
+          <Tangent> { 0.310953 0.861901 -0.400543 }
+          <Binormal> { 0.422430 0.064045 0.465759 }
+        }
+        <Normal> { -0.668050 -0.353862 0.654561 }
+      }
+      <Vertex> 902 {
+        -0.0575564093888 0.660601496696 3.39935803413
+        <UV>  {
+          0.653554 0.871431
+          <Tangent> { 0.338701 0.900108 -0.274021 }
+          <Binormal> { 0.087693 0.007553 0.133202 }
+        }
+        <Normal> { -0.456313 -0.819391 0.346873 }
+      }
+      <Vertex> 903 {
+        -0.0575564093888 0.660601496696 3.39935803413
+        <UV>  {
+          0.653554 0.871431
+          <Tangent> { 0.338701 0.900108 -0.274021 }
+          <Binormal> { 0.087693 0.007553 0.133202 }
+        }
+        <Normal> { -0.456313 -0.819391 0.346873 }
+      }
+      <Vertex> 904 {
+        0.115919359028 0.68100976944 3.58813977242
+        <UV>  {
+          0.653292 0.893966
+          <Tangent> { 0.310953 0.861901 -0.400543 }
+          <Binormal> { 0.422430 0.064045 0.465759 }
+        }
+        <Normal> { -0.668050 -0.353862 0.654561 }
+      }
+      <Vertex> 905 {
+        0.069999307394 0.839179456234 3.24118900299
+        <UV>  {
+          0.635693 0.862263
+          <Tangent> { 0.781203 0.618111 -0.087524 }
+          <Binormal> { -0.016595 0.030083 0.064331 }
+        }
+        <Normal> { -0.821497 -0.567644 0.053529 }
+      }
+      <Vertex> 906 {
+        0.248577296734 0.713765025139 2.76824617386
+        <UV>  {
+          0.639948 0.814252
+          <Tangent> { 0.589604 0.805192 0.063501 }
+          <Binormal> { -0.426529 0.258250 0.685697 }
+        }
+        <Normal> { -0.848354 0.004425 -0.529374 }
+      }
+      <Vertex> 907 {
+        0.0699992999434 0.670805931091 2.96566843987
+        <UV>  {
+          0.647989 0.837057
+          <Tangent> { 0.486685 0.865254 0.120306 }
+          <Binormal> { -0.339686 0.180930 0.072896 }
+        }
+        <Normal> { -0.489090 -0.719749 -0.492660 }
+      }
+      <Vertex> 908 {
+        0.248577296734 0.809790551662 2.88834786415
+        <UV>  {
+          0.629035 0.826571
+          <Tangent> { 0.785404 0.615311 0.067326 }
+          <Binormal> { -0.269404 0.283761 0.549404 }
+        }
+        <Normal> { -0.898770 -0.004608 -0.438337 }
+      }
+      <Vertex> 909 {
+        0.0699992999434 0.670805931091 2.96566843987
+        <UV>  {
+          0.647989 0.837057
+          <Tangent> { 0.486685 0.865254 0.120306 }
+          <Binormal> { -0.339686 0.180930 0.072896 }
+        }
+        <Normal> { -0.489090 -0.719749 -0.492660 }
+      }
+      <Vertex> 910 {
+        0.069999307394 0.839179456234 3.24118900299
+        <UV>  {
+          0.635693 0.862263
+          <Tangent> { 0.781203 0.618111 -0.087524 }
+          <Binormal> { -0.016595 0.030083 0.064331 }
+        }
+        <Normal> { -0.821497 -0.567644 0.053529 }
+      }
+      <Vertex> 911 {
+        0.248577296734 0.809790551662 2.88834786415
+        <UV>  {
+          0.629035 0.826571
+          <Tangent> { 0.785404 0.615311 0.067326 }
+          <Binormal> { -0.269404 0.283761 0.549404 }
+        }
+        <Normal> { -0.898770 -0.004608 -0.438337 }
+      }
+      <Vertex> 912 {
+        0.0699992999434 0.670805931091 2.96566843987
+        <UV>  {
+          0.647989 0.837057
+          <Tangent> { 0.486685 0.865254 0.120306 }
+          <Binormal> { -0.339686 0.180930 0.072896 }
+        }
+        <Normal> { -0.489090 -0.719749 -0.492660 }
+      }
+      <Vertex> 913 {
+        -0.0575564093888 0.660601496696 3.12383770943
+        <UV>  {
+          0.651122 0.852285
+          <Tangent> { 0.320664 0.946891 -0.023909 }
+          <Binormal> { -0.296529 0.101448 0.040743 }
+        }
+        <Normal> { -0.345225 -0.892361 -0.290628 }
+      }
+      <Vertex> 914 {
+        0.069999307394 0.839179456234 3.24118900299
+        <UV>  {
+          0.635693 0.862263
+          <Tangent> { 0.781203 0.618111 -0.087524 }
+          <Binormal> { -0.016595 0.030083 0.064331 }
+        }
+        <Normal> { -0.821497 -0.567644 0.053529 }
+      }
+      <Vertex> 915 {
+        -0.0575564093888 0.660601496696 3.12383770943
+        <UV>  {
+          0.651122 0.852285
+          <Tangent> { 0.320664 0.946891 -0.023909 }
+          <Binormal> { -0.296529 0.101448 0.040743 }
+        }
+        <Normal> { -0.345225 -0.892361 -0.290628 }
+      }
+      <Vertex> 916 {
+        -0.12898761034 0.487125724554 3.31772232056
+        <UV>  {
+          0.662662 0.863712
+          <Tangent> { -0.037584 0.984246 -0.172764 }
+          <Binormal> { -0.093179 0.005864 0.053677 }
+        }
+        <Normal> { -0.016480 -0.996612 0.080264 }
+      }
+      <Vertex> 917 {
+        -0.0575564093888 0.660601496696 3.39935803413
+        <UV>  {
+          0.653554 0.871431
+          <Tangent> { 0.338701 0.900108 -0.274021 }
+          <Binormal> { 0.087693 0.007553 0.133202 }
+        }
+        <Normal> { -0.456313 -0.819391 0.346873 }
+      }
+      <Vertex> 918 {
+        -0.0575564093888 0.660601496696 3.12383770943
+        <UV>  {
+          0.651122 0.852285
+          <Tangent> { 0.320664 0.946891 -0.023909 }
+          <Binormal> { -0.296529 0.101448 0.040743 }
+        }
+        <Normal> { -0.345225 -0.892361 -0.290628 }
+      }
+      <Vertex> 919 {
+        -0.0575564093888 0.660601496696 3.39935803413
+        <UV>  {
+          0.653554 0.871431
+          <Tangent> { 0.338701 0.900108 -0.274021 }
+          <Binormal> { 0.087693 0.007553 0.133202 }
+        }
+        <Normal> { -0.456313 -0.819391 0.346873 }
+      }
+      <Vertex> 920 {
+        0.069999307394 0.839179456234 3.24118900299
+        <UV>  {
+          0.635693 0.862263
+          <Tangent> { 0.781203 0.618111 -0.087524 }
+          <Binormal> { -0.016595 0.030083 0.064331 }
+        }
+        <Normal> { -0.821497 -0.567644 0.053529 }
+      }
+      <Vertex> 921 {
+        0.0699992775917 0.129969730973 3.19016671181
+        <UV>  {
+          0.680837 0.854819
+          <Tangent> { -0.923223 0.375147 -0.083215 }
+          <Binormal> { -0.096044 -0.233364 0.013516 }
+        }
+        <Normal> { 0.907590 -0.383435 -0.170965 }
+      }
+      <Vertex> 922 {
+        -0.0575564280152 0.277934342623 3.39935803413
+        <UV>  {
+          0.673434 0.865851
+          <Tangent> { -0.606253 0.788705 -0.101988 }
+          <Binormal> { 0.175448 0.141593 0.052051 }
+        }
+        <Normal> { 0.534288 -0.780938 0.323435 }
+      }
+      <Vertex> 923 {
+        -0.0575564280152 0.28813880682 3.12383770943
+        <UV>  {
+          0.671517 0.851471
+          <Tangent> { -0.523350 0.849374 -0.068327 }
+          <Binormal> { -0.363679 -0.218801 0.065683 }
+        }
+        <Normal> { 0.431776 -0.826258 -0.361705 }
+      }
+      <Vertex> 924 {
+        -0.12898761034 0.487125724554 3.31772232056
+        <UV>  {
+          0.662662 0.863712
+          <Tangent> { -0.037584 0.984246 -0.172764 }
+          <Binormal> { -0.093179 0.005864 0.053677 }
+        }
+        <Normal> { -0.016480 -0.996612 0.080264 }
+      }
+      <Vertex> 925 {
+        -0.0575564168394 0.476921260357 3.49629974365
+        <UV>  {
+          0.666363 0.874463
+          <Tangent> { -0.108408 0.971938 -0.208767 }
+          <Binormal> { 0.282884 0.055455 0.111281 }
+        }
+        <Normal> { -0.016633 -0.877377 0.479507 }
+      }
+      <Vertex> 926 {
+        -0.0575564093888 0.660601496696 3.39935803413
+        <UV>  {
+          0.653554 0.871431
+          <Tangent> { 0.338701 0.900108 -0.274021 }
+          <Binormal> { 0.087693 0.007553 0.133202 }
+        }
+        <Normal> { -0.456313 -0.819391 0.346873 }
+      }
+      <Vertex> 927 {
+        -0.0575564168394 0.476921260357 3.49629974365
+        <UV>  {
+          0.666363 0.874463
+          <Tangent> { -0.108408 0.971938 -0.208767 }
+          <Binormal> { 0.282884 0.055455 0.111281 }
+        }
+        <Normal> { -0.016633 -0.877377 0.479507 }
+      }
+      <Vertex> 928 {
+        -0.12898761034 0.487125724554 3.31772232056
+        <UV>  {
+          0.662662 0.863712
+          <Tangent> { -0.037584 0.984246 -0.172764 }
+          <Binormal> { -0.093179 0.005864 0.053677 }
+        }
+        <Normal> { -0.016480 -0.996612 0.080264 }
+      }
+      <Vertex> 929 {
+        -0.0575564280152 0.277934342623 3.39935803413
+        <UV>  {
+          0.673434 0.865851
+          <Tangent> { -0.606253 0.788705 -0.101988 }
+          <Binormal> { 0.175448 0.141593 0.052051 }
+        }
+        <Normal> { 0.534288 -0.780938 0.323435 }
+      }
+      <Vertex> 930 {
+        -0.0575564280152 0.28813880682 3.12383770943
+        <UV>  {
+          0.671517 0.851471
+          <Tangent> { -0.523350 0.849374 -0.068327 }
+          <Binormal> { -0.363679 -0.218801 0.065683 }
+        }
+        <Normal> { 0.431776 -0.826258 -0.361705 }
+      }
+      <Vertex> 931 {
+        -0.0575564280152 0.277934342623 3.39935803413
+        <UV>  {
+          0.673434 0.865851
+          <Tangent> { -0.606253 0.788705 -0.101988 }
+          <Binormal> { 0.175448 0.141593 0.052051 }
+        }
+        <Normal> { 0.534288 -0.780938 0.323435 }
+      }
+      <Vertex> 932 {
+        -0.12898761034 0.487125724554 3.31772232056
+        <UV>  {
+          0.662662 0.863712
+          <Tangent> { -0.037584 0.984246 -0.172764 }
+          <Binormal> { -0.093179 0.005864 0.053677 }
+        }
+        <Normal> { -0.016480 -0.996612 0.080264 }
+      }
+      <Vertex> 933 {
+        -0.00143191113602 0.359569996595 2.9146463871
+        <UV>  {
+          0.668924 0.837523
+          <Tangent> { -0.390157 0.911265 0.131810 }
+          <Binormal> { -0.434663 -0.208555 0.155236 }
+        }
+        <Normal> { 0.167455 -0.788995 -0.591113 }
+      }
+      <Vertex> 934 {
+        -0.0575564093888 0.660601496696 3.12383770943
+        <UV>  {
+          0.651122 0.852285
+          <Tangent> { 0.320664 0.946891 -0.023909 }
+          <Binormal> { -0.296529 0.101448 0.040743 }
+        }
+        <Normal> { -0.345225 -0.892361 -0.290628 }
+      }
+      <Vertex> 935 {
+        0.0699992999434 0.670805931091 2.96566843987
+        <UV>  {
+          0.647989 0.837057
+          <Tangent> { 0.486685 0.865254 0.120306 }
+          <Binormal> { -0.339686 0.180930 0.072896 }
+        }
+        <Normal> { -0.489090 -0.719749 -0.492660 }
+      }
+      <Vertex> 936 {
+        -0.00143191113602 0.359569996595 2.9146463871
+        <UV>  {
+          0.668924 0.837523
+          <Tangent> { -0.390157 0.911265 0.131810 }
+          <Binormal> { -0.434663 -0.208555 0.155236 }
+        }
+        <Normal> { 0.167455 -0.788995 -0.591113 }
+      }
+      <Vertex> 937 {
+        -0.0575564280152 0.28813880682 3.12383770943
+        <UV>  {
+          0.671517 0.851471
+          <Tangent> { -0.523350 0.849374 -0.068327 }
+          <Binormal> { -0.363679 -0.218801 0.065683 }
+        }
+        <Normal> { 0.431776 -0.826258 -0.361705 }
+      }
+      <Vertex> 938 {
+        -0.0575564093888 0.660601496696 3.12383770943
+        <UV>  {
+          0.651122 0.852285
+          <Tangent> { 0.320664 0.946891 -0.023909 }
+          <Binormal> { -0.296529 0.101448 0.040743 }
+        }
+        <Normal> { -0.345225 -0.892361 -0.290628 }
+      }
+      <Vertex> 939 {
+        -0.0575564093888 0.660601496696 3.12383770943
+        <UV>  {
+          0.651122 0.852285
+          <Tangent> { 0.320664 0.946891 -0.023909 }
+          <Binormal> { -0.296529 0.101448 0.040743 }
+        }
+        <Normal> { -0.345225 -0.892361 -0.290628 }
+      }
+      <Vertex> 940 {
+        -0.0575564280152 0.28813880682 3.12383770943
+        <UV>  {
+          0.671517 0.851471
+          <Tangent> { -0.523350 0.849374 -0.068327 }
+          <Binormal> { -0.363679 -0.218801 0.065683 }
+        }
+        <Normal> { 0.431776 -0.826258 -0.361705 }
+      }
+      <Vertex> 941 {
+        -0.12898761034 0.487125724554 3.31772232056
+        <UV>  {
+          0.662662 0.863712
+          <Tangent> { -0.037584 0.984246 -0.172764 }
+          <Binormal> { -0.093179 0.005864 0.053677 }
+        }
+        <Normal> { -0.016480 -0.996612 0.080264 }
+      }
+      <Vertex> 942 {
+        0.177146077156 0.115921758115 3.17486000061
+        <UV>  {
+          0.685444 0.853688
+          <Tangent> { -0.900443 0.406085 0.155877 }
+          <Binormal> { -0.011729 -0.125074 0.258086 }
+        }
+        <Normal> { 0.738243 -0.619556 -0.266701 }
+      }
+      <Vertex> 943 {
+        0.248577266932 0.122044183314 3.3946120739
+        <UV>  {
+          0.687692 0.863782
+          <Tangent> { -0.998995 -0.003782 -0.044661 }
+          <Binormal> { -0.000371 0.053881 0.003733 }
+        }
+        <Normal> { 0.995117 0.000031 0.098422 }
+      }
+      <Vertex> 944 {
+        0.0699992775917 0.129969730973 3.19016671181
+        <UV>  {
+          0.680837 0.854819
+          <Tangent> { -0.923223 0.375147 -0.083215 }
+          <Binormal> { -0.096044 -0.233364 0.013516 }
+        }
+        <Normal> { 0.907590 -0.383435 -0.170965 }
+      }
+      <Vertex> 945 {
+        0.248247787356 0.0840496644378 3.04730176926
+        <UV>  {
+          0.686656 0.848691
+          <Tangent> { -0.999366 -0.017157 -0.031199 }
+          <Binormal> { 0.013182 -0.788636 0.011451 }
+        }
+        <Normal> { 0.638966 -0.000488 -0.769189 }
+      }
+      <Vertex> 946 {
+        0.177146077156 0.115921758115 3.17486000061
+        <UV>  {
+          0.685444 0.853688
+          <Tangent> { -0.900443 0.406085 0.155877 }
+          <Binormal> { -0.011729 -0.125074 0.258086 }
+        }
+        <Normal> { 0.738243 -0.619556 -0.266701 }
+      }
+      <Vertex> 947 {
+        0.248577266932 0.216776117682 2.74819612503
+        <UV>  {
+          0.684161 0.827606
+          <Tangent> { -0.998326 0.039003 -0.042719 }
+          <Binormal> { -0.027213 -0.727381 -0.028144 }
+        }
+        <Normal> { 0.716117 0.000214 -0.697958 }
+      }
+      <Vertex> 948 {
+        -0.00143191113602 0.359569996595 2.9146463871
+        <UV>  {
+          0.668924 0.837523
+          <Tangent> { -0.390157 0.911265 0.131810 }
+          <Binormal> { -0.434663 -0.208555 0.155236 }
+        }
+        <Normal> { 0.167455 -0.788995 -0.591113 }
+      }
+      <Vertex> 949 {
+        0.248577281833 0.42620664835 2.73504185677
+        <UV>  {
+          0.680896 0.810762
+          <Tangent> { -0.954154 0.245702 -0.170939 }
+          <Binormal> { -0.177245 -0.810500 -0.175628 }
+        }
+        <Normal> { 0.687307 0.007080 -0.726310 }
+      }
+      <Vertex> 950 {
+        0.248577266932 0.216776117682 2.74819612503
+        <UV>  {
+          0.684161 0.827606
+          <Tangent> { -0.998326 0.039003 -0.042719 }
+          <Binormal> { -0.027213 -0.727381 -0.028144 }
+        }
+        <Normal> { 0.716117 0.000214 -0.697958 }
+      }
+      <Vertex> 951 {
+        0.248577266932 0.216776117682 2.74819612503
+        <UV>  {
+          0.684161 0.827606
+          <Tangent> { -0.998326 0.039003 -0.042719 }
+          <Binormal> { -0.027213 -0.727381 -0.028144 }
+        }
+        <Normal> { 0.716117 0.000214 -0.697958 }
+      }
+      <Vertex> 952 {
+        0.177146077156 0.115921758115 3.17486000061
+        <UV>  {
+          0.685444 0.853688
+          <Tangent> { -0.900443 0.406085 0.155877 }
+          <Binormal> { -0.011729 -0.125074 0.258086 }
+        }
+        <Normal> { 0.738243 -0.619556 -0.266701 }
+      }
+      <Vertex> 953 {
+        -0.00143191113602 0.359569996595 2.9146463871
+        <UV>  {
+          0.668924 0.837523
+          <Tangent> { -0.390157 0.911265 0.131810 }
+          <Binormal> { -0.434663 -0.208555 0.155236 }
+        }
+        <Normal> { 0.167455 -0.788995 -0.591113 }
+      }
+      <Vertex> 954 {
+        -0.0575564280152 0.28813880682 3.12383770943
+        <UV>  {
+          0.671517 0.851471
+          <Tangent> { -0.523350 0.849374 -0.068327 }
+          <Binormal> { -0.363679 -0.218801 0.065683 }
+        }
+        <Normal> { 0.431776 -0.826258 -0.361705 }
+      }
+      <Vertex> 955 {
+        -0.00143191113602 0.359569996595 2.9146463871
+        <UV>  {
+          0.668924 0.837523
+          <Tangent> { -0.390157 0.911265 0.131810 }
+          <Binormal> { -0.434663 -0.208555 0.155236 }
+        }
+        <Normal> { 0.167455 -0.788995 -0.591113 }
+      }
+      <Vertex> 956 {
+        0.177146077156 0.115921758115 3.17486000061
+        <UV>  {
+          0.685444 0.853688
+          <Tangent> { -0.900443 0.406085 0.155877 }
+          <Binormal> { -0.011729 -0.125074 0.258086 }
+        }
+        <Normal> { 0.738243 -0.619556 -0.266701 }
+      }
+      <Vertex> 957 {
+        0.177146077156 0.115921758115 3.17486000061
+        <UV>  {
+          0.685444 0.853688
+          <Tangent> { -0.900443 0.406085 0.155877 }
+          <Binormal> { -0.011729 -0.125074 0.258086 }
+        }
+        <Normal> { 0.738243 -0.619556 -0.266701 }
+      }
+      <Vertex> 958 {
+        0.0699992775917 0.129969730973 3.19016671181
+        <UV>  {
+          0.680837 0.854819
+          <Tangent> { -0.923223 0.375147 -0.083215 }
+          <Binormal> { -0.096044 -0.233364 0.013516 }
+        }
+        <Normal> { 0.907590 -0.383435 -0.170965 }
+      }
+      <Vertex> 959 {
+        -0.0575564280152 0.28813880682 3.12383770943
+        <UV>  {
+          0.671517 0.851471
+          <Tangent> { -0.523350 0.849374 -0.068327 }
+          <Binormal> { -0.363679 -0.218801 0.065683 }
+        }
+        <Normal> { 0.431776 -0.826258 -0.361705 }
+      }
+      <Vertex> 960 {
+        0.248247787356 -0.0384038165212 3.05240392685
+        <UV>  {
+          0.431245 0.687626
+          <Tangent> { -0.508380 0.589967 -0.627286 }
+          <Binormal> { -0.531667 -0.730024 -0.255706 }
+        }
+        <Normal> { 0.433424 0.000000 -0.901181 }
+      }
+      <Vertex> 961 {
+        0.177146077156 0.115921758115 3.17486000061
+        <UV>  {
+          0.454310 0.701676
+          <Tangent> { 0.326634 0.639315 -0.696123 }
+          <Binormal> { -0.601793 -0.426794 -0.674338 }
+        }
+        <Normal> { 0.738243 -0.619556 -0.266701 }
+      }
+      <Vertex> 962 {
+        0.248247787356 0.0840496644378 3.04730176926
+        <UV>  {
+          0.444844 0.678525
+          <Tangent> { -0.410039 0.911615 -0.028754 }
+          <Binormal> { -0.701217 -0.333771 -0.582290 }
+        }
+        <Normal> { 0.638966 -0.000488 -0.769189 }
+      }
+      <Vertex> 963 {
+        0.248247787356 -0.0384038165212 3.05240392685
+        <UV>  {
+          0.431245 0.687626
+          <Tangent> { -0.508380 0.589967 -0.627286 }
+          <Binormal> { -0.531667 -0.730024 -0.255706 }
+        }
+        <Normal> { 0.433424 0.000000 -0.901181 }
+      }
+      <Vertex> 964 {
+        0.177146062255 -0.058812726289 3.17486000061
+        <UV>  {
+          0.431718 0.690966
+          <Tangent> { 0.825471 0.500331 -0.261278 }
+          <Binormal> { 0.235874 -0.726210 -0.645434 }
+        }
+        <Normal> { 0.527299 -0.462294 0.712851 }
+      }
+      <Vertex> 965 {
+        0.177146077156 0.115921758115 3.17486000061
+        <UV>  {
+          0.454310 0.701676
+          <Tangent> { 0.326634 0.639315 -0.696123 }
+          <Binormal> { -0.601793 -0.426794 -0.674338 }
+        }
+        <Normal> { 0.738243 -0.619556 -0.266701 }
+      }
+      <Vertex> 966 {
+        0.248577281833 0.42620664835 2.73504185677
+        <UV>  {
+          0.680896 0.810762
+          <Tangent> { -0.954154 0.245702 -0.170939 }
+          <Binormal> { -0.177245 -0.810500 -0.175628 }
+        }
+        <Normal> { 0.687307 0.007080 -0.726310 }
+      }
+      <Vertex> 967 {
+        -0.00143191113602 0.359569996595 2.9146463871
+        <UV>  {
+          0.668924 0.837523
+          <Tangent> { -0.390157 0.911265 0.131810 }
+          <Binormal> { -0.434663 -0.208555 0.155236 }
+        }
+        <Normal> { 0.167455 -0.788995 -0.591113 }
+      }
+      <Vertex> 968 {
+        0.100612662733 0.55855691433 2.84321498871
+        <UV>  {
+          0.658152 0.824087
+          <Tangent> { 0.159022 0.983002 0.091754 }
+          <Binormal> { -0.398409 0.064593 -0.001522 }
+        }
+        <Normal> { -0.138066 -0.863033 -0.485855 }
+      }
+      <Vertex> 969 {
+        0.0699992999434 0.670805931091 2.96566843987
+        <UV>  {
+          0.647989 0.837057
+          <Tangent> { 0.486685 0.865254 0.120306 }
+          <Binormal> { -0.339686 0.180930 0.072896 }
+        }
+        <Normal> { -0.489090 -0.719749 -0.492660 }
+      }
+      <Vertex> 970 {
+        0.248577296734 0.713765025139 2.76824617386
+        <UV>  {
+          0.639948 0.814252
+          <Tangent> { 0.589604 0.805192 0.063501 }
+          <Binormal> { -0.426529 0.258250 0.685697 }
+        }
+        <Normal> { -0.848354 0.004425 -0.529374 }
+      }
+      <Vertex> 971 {
+        0.100612662733 0.55855691433 2.84321498871
+        <UV>  {
+          0.658152 0.824087
+          <Tangent> { 0.159022 0.983002 0.091754 }
+          <Binormal> { -0.398409 0.064593 -0.001522 }
+        }
+        <Normal> { -0.138066 -0.863033 -0.485855 }
+      }
+      <Vertex> 972 {
+        0.0699992999434 0.670805931091 2.96566843987
+        <UV>  {
+          0.647989 0.837057
+          <Tangent> { 0.486685 0.865254 0.120306 }
+          <Binormal> { -0.339686 0.180930 0.072896 }
+        }
+        <Normal> { -0.489090 -0.719749 -0.492660 }
+      }
+      <Vertex> 973 {
+        0.100612662733 0.55855691433 2.84321498871
+        <UV>  {
+          0.658152 0.824087
+          <Tangent> { 0.159022 0.983002 0.091754 }
+          <Binormal> { -0.398409 0.064593 -0.001522 }
+        }
+        <Normal> { -0.138066 -0.863033 -0.485855 }
+      }
+      <Vertex> 974 {
+        -0.00143191113602 0.359569996595 2.9146463871
+        <UV>  {
+          0.668924 0.837523
+          <Tangent> { -0.390157 0.911265 0.131810 }
+          <Binormal> { -0.434663 -0.208555 0.155236 }
+        }
+        <Normal> { 0.167455 -0.788995 -0.591113 }
+      }
+      <Vertex> 975 {
+        0.121021576226 0.538147985935 2.69525051117
+        <UV>  {
+          0.659424 0.809136
+          <Tangent> { 0.195805 0.951251 -0.238289 }
+          <Binormal> { -0.129769 -0.016778 -0.173612 }
+        }
+        <Normal> { -0.021973 -0.993408 0.112430 }
+      }
+      <Vertex> 976 {
+        0.248577281833 0.42441290617 2.64491581917
+        <UV>  {
+          0.671441 0.794732
+          <Tangent> { -0.761562 -0.220702 -0.609355 }
+          <Binormal> { -0.125630 -0.044728 0.173211 }
+        }
+        <Normal> { 0.808618 0.006897 0.588275 }
+      }
+      <Vertex> 977 {
+        0.248577281833 0.42620664835 2.73504185677
+        <UV>  {
+          0.680896 0.810762
+          <Tangent> { -0.954154 0.245702 -0.170939 }
+          <Binormal> { -0.177245 -0.810500 -0.175628 }
+        }
+        <Normal> { 0.687307 0.007080 -0.726310 }
+      }
+      <Vertex> 978 {
+        0.248577296734 0.713765025139 2.76824617386
+        <UV>  {
+          0.639948 0.814252
+          <Tangent> { 0.589604 0.805192 0.063501 }
+          <Binormal> { -0.426529 0.258250 0.685697 }
+        }
+        <Normal> { -0.848354 0.004425 -0.529374 }
+      }
+      <Vertex> 979 {
+        0.248577296734 0.680560708046 2.64017224312
+        <UV>  {
+          0.646546 0.805109
+          <Tangent> { 0.793784 0.577454 -0.190930 }
+          <Binormal> { 0.153232 -0.025472 0.560017 }
+        }
+        <Normal> { -0.964476 0.003876 0.264077 }
+      }
+      <Vertex> 980 {
+        0.121021576226 0.538147985935 2.69525051117
+        <UV>  {
+          0.659424 0.809136
+          <Tangent> { 0.195805 0.951251 -0.238289 }
+          <Binormal> { -0.129769 -0.016778 -0.173612 }
+        }
+        <Normal> { -0.021973 -0.993408 0.112430 }
+      }
+      <Vertex> 981 {
+        0.121021576226 0.538147985935 2.69525051117
+        <UV>  {
+          0.659424 0.809136
+          <Tangent> { 0.195805 0.951251 -0.238289 }
+          <Binormal> { -0.129769 -0.016778 -0.173612 }
+        }
+        <Normal> { -0.021973 -0.993408 0.112430 }
+      }
+      <Vertex> 982 {
+        0.100612662733 0.55855691433 2.84321498871
+        <UV>  {
+          0.658152 0.824087
+          <Tangent> { 0.159022 0.983002 0.091754 }
+          <Binormal> { -0.398409 0.064593 -0.001522 }
+        }
+        <Normal> { -0.138066 -0.863033 -0.485855 }
+      }
+      <Vertex> 983 {
+        0.248577296734 0.713765025139 2.76824617386
+        <UV>  {
+          0.639948 0.814252
+          <Tangent> { 0.589604 0.805192 0.063501 }
+          <Binormal> { -0.426529 0.258250 0.685697 }
+        }
+        <Normal> { -0.848354 0.004425 -0.529374 }
+      }
+      <Vertex> 984 {
+        0.121021576226 0.538147985935 2.69525051117
+        <UV>  {
+          0.659424 0.809136
+          <Tangent> { 0.195805 0.951251 -0.238289 }
+          <Binormal> { -0.129769 -0.016778 -0.173612 }
+        }
+        <Normal> { -0.021973 -0.993408 0.112430 }
+      }
+      <Vertex> 985 {
+        0.248577281833 0.42620664835 2.73504185677
+        <UV>  {
+          0.680896 0.810762
+          <Tangent> { -0.954154 0.245702 -0.170939 }
+          <Binormal> { -0.177245 -0.810500 -0.175628 }
+        }
+        <Normal> { 0.687307 0.007080 -0.726310 }
+      }
+      <Vertex> 986 {
+        0.100612662733 0.55855691433 2.84321498871
+        <UV>  {
+          0.658152 0.824087
+          <Tangent> { 0.159022 0.983002 0.091754 }
+          <Binormal> { -0.398409 0.064593 -0.001522 }
+        }
+        <Normal> { -0.138066 -0.863033 -0.485855 }
+      }
+      <Vertex> 987 {
+        -0.329578906298 0.878007352352 4.32815647125
+        <UV>  {
+          0.726815 0.627149
+          <Tangent> { 0.881525 0.452829 0.133640 }
+          <Binormal> { 0.040607 -0.151782 0.246450 }
+        }
+        <Normal> { -0.974914 -0.221229 0.024384 }
+      }
+      <Vertex> 988 {
+        -0.45778298378 0.727695286274 4.33806037903
+        <UV>  {
+          0.727383 0.644917
+          <Tangent> { 0.382216 0.880640 0.279973 }
+          <Binormal> { -0.072912 0.295438 -0.829744 }
+        }
+        <Normal> { 0.634602 -0.708731 -0.308115 }
+      }
+      <Vertex> 989 {
+        -0.549000263214 0.717369377613 4.52010822296
+        <UV>  {
+          0.720604 0.719435
+          <Tangent> { 0.889875 0.442965 0.109109 }
+          <Binormal> { 0.036454 0.167843 -0.978733 }
+        }
+        <Normal> { 0.551408 -0.825373 -0.121006 }
+      }
+      <Vertex> 990 {
+        -0.549000263214 0.717369377613 4.52010822296
+        <UV>  {
+          0.720604 0.719435
+          <Tangent> { 0.889875 0.442965 0.109109 }
+          <Binormal> { 0.036454 0.167843 -0.978733 }
+        }
+        <Normal> { 0.551408 -0.825373 -0.121006 }
+      }
+      <Vertex> 991 {
+        -0.507420122623 0.712347507477 4.62690830231
+        <UV>  {
+          0.717733 0.762429
+          <Tangent> { 0.892795 0.437343 0.107923 }
+          <Binormal> { 0.076273 -0.039190 -0.472160 }
+        }
+        <Normal> { 0.985534 -0.046083 0.163030 }
+      }
+      <Vertex> 992 {
+        -0.329578906298 0.878007352352 4.32815647125
+        <UV>  {
+          0.726815 0.627149
+          <Tangent> { 0.881525 0.452829 0.133640 }
+          <Binormal> { 0.040607 -0.151782 0.246450 }
+        }
+        <Normal> { -0.974914 -0.221229 0.024384 }
+      }
+      <Vertex> 993 {
+        -0.507420122623 0.712347507477 4.62690830231
+        <UV>  {
+          0.717733 0.762429
+          <Tangent> { 0.892795 0.437343 0.107923 }
+          <Binormal> { 0.076273 -0.039190 -0.472160 }
+        }
+        <Normal> { 0.985534 -0.046083 0.163030 }
+      }
+      <Vertex> 994 {
+        -0.231306836009 0.72917765379 4.35727643967
+        <UV>  {
+          0.717733 0.620837
+          <Tangent> { -0.364773 -0.840371 -0.400896 }
+          <Binormal> { -0.083177 -0.288971 0.681433 }
+        }
+        <Normal> { 0.931883 0.278787 0.231971 }
+      }
+      <Vertex> 995 {
+        -0.329578906298 0.878007352352 4.32815647125
+        <UV>  {
+          0.726815 0.627149
+          <Tangent> { 0.881525 0.452829 0.133640 }
+          <Binormal> { 0.040607 -0.151782 0.246450 }
+        }
+        <Normal> { -0.974914 -0.221229 0.024384 }
+      }
+      <Vertex> 996 {
+        -0.45778298378 0.727695286274 4.33806037903
+        <UV>  {
+          0.727383 0.644917
+          <Tangent> { 0.382216 0.880640 0.279973 }
+          <Binormal> { -0.072912 0.295438 -0.829744 }
+        }
+        <Normal> { 0.634602 -0.708731 -0.308115 }
+      }
+      <Vertex> 997 {
+        -0.329578906298 0.878007352352 4.32815647125
+        <UV>  {
+          0.726815 0.627149
+          <Tangent> { 0.881525 0.452829 0.133640 }
+          <Binormal> { 0.040607 -0.151782 0.246450 }
+        }
+        <Normal> { -0.974914 -0.221229 0.024384 }
+      }
+      <Vertex> 998 {
+        -0.358029216528 0.689956128597 4.12238264084
+        <UV>  {
+          0.729088 0.600735
+          <Tangent> { 0.320953 0.881068 0.347432 }
+          <Binormal> { 0.021000 0.321508 -0.834727 }
+        }
+        <Normal> { 0.703848 -0.668599 -0.239814 }
+      }
+      <Vertex> 999 {
+        -0.163803204894 0.838153064251 4.06078958511
+        <UV>  {
+          0.729797 0.558783
+          <Tangent> { 0.769985 0.023443 0.637631 }
+          <Binormal> { -0.348828 -0.467945 0.438438 }
+        }
+        <Normal> { -0.834895 0.543992 -0.083651 }
+      }
+      <Vertex> 1000 {
+        -0.217221528292 0.689291536808 3.80358433723
+        <UV>  {
+          0.730238 0.522300
+          <Tangent> { -0.316118 0.713707 -0.625054 }
+          <Binormal> { -0.783690 -0.486782 -0.159476 }
+        }
+        <Normal> { 0.529130 -0.690146 -0.493637 }
+      }
+      <Vertex> 1001 {
+        -0.329578906298 0.878007352352 4.32815647125
+        <UV>  {
+          0.726815 0.627149
+          <Tangent> { 0.881525 0.452829 0.133640 }
+          <Binormal> { 0.040607 -0.151782 0.246450 }
+        }
+        <Normal> { -0.974914 -0.221229 0.024384 }
+      }
+      <Vertex> 1002 {
+        -0.217221528292 0.689291536808 3.80358433723
+        <UV>  {
+          0.730238 0.522300
+          <Tangent> { -0.316118 0.713707 -0.625054 }
+          <Binormal> { -0.783690 -0.486782 -0.159476 }
+        }
+        <Normal> { 0.529130 -0.690146 -0.493637 }
+      }
+      <Vertex> 1003 {
+        -0.358029216528 0.689956128597 4.12238264084
+        <UV>  {
+          0.729088 0.600735
+          <Tangent> { 0.320953 0.881068 0.347432 }
+          <Binormal> { 0.021000 0.321508 -0.834727 }
+        }
+        <Normal> { 0.703848 -0.668599 -0.239814 }
+      }
+      <Vertex> 1004 {
+        -0.329578906298 0.878007352352 4.32815647125
+        <UV>  {
+          0.726815 0.627149
+          <Tangent> { 0.881525 0.452829 0.133640 }
+          <Binormal> { 0.040607 -0.151782 0.246450 }
+        }
+        <Normal> { -0.974914 -0.221229 0.024384 }
+      }
+      <Vertex> 1005 {
+        -0.231306836009 0.72917765379 4.35727643967
+        <UV>  {
+          0.717733 0.620837
+          <Tangent> { -0.364773 -0.840371 -0.400896 }
+          <Binormal> { -0.083177 -0.288971 0.681433 }
+        }
+        <Normal> { 0.931883 0.278787 0.231971 }
+      }
+      <Vertex> 1006 {
+        -0.0292356777936 0.690625011921 4.10390901566
+        <UV>  {
+          0.724853 0.549357
+          <Tangent> { -0.828914 -0.009549 -0.559295 }
+          <Binormal> { 0.364173 0.124329 -0.541852 }
+        }
+        <Normal> { 0.544633 0.659963 0.517472 }
+      }
+      <Vertex> 1007 {
+        -0.329578906298 0.878007352352 4.32815647125
+        <UV>  {
+          0.726815 0.627149
+          <Tangent> { 0.881525 0.452829 0.133640 }
+          <Binormal> { 0.040607 -0.151782 0.246450 }
+        }
+        <Normal> { -0.974914 -0.221229 0.024384 }
+      }
+      <Vertex> 1008 {
+        -0.0292356777936 0.690625011921 4.10390901566
+        <UV>  {
+          0.724853 0.549357
+          <Tangent> { -0.828914 -0.009549 -0.559295 }
+          <Binormal> { 0.364173 0.124329 -0.541852 }
+        }
+        <Normal> { 0.544633 0.659963 0.517472 }
+      }
+      <Vertex> 1009 {
+        -0.163803204894 0.838153064251 4.06078958511
+        <UV>  {
+          0.729797 0.558783
+          <Tangent> { 0.769985 0.023443 0.637631 }
+          <Binormal> { -0.348828 -0.467945 0.438438 }
+        }
+        <Normal> { -0.834895 0.543992 -0.083651 }
+      }
+      <Vertex> 1010 {
+        -0.329578906298 0.878007352352 4.32815647125
+        <UV>  {
+          0.726815 0.627149
+          <Tangent> { 0.881525 0.452829 0.133640 }
+          <Binormal> { 0.040607 -0.151782 0.246450 }
+        }
+        <Normal> { -0.974914 -0.221229 0.024384 }
+      }
+      <Vertex> 1011 {
+        -0.163803204894 0.838153064251 4.06078958511
+        <UV>  {
+          0.729797 0.558783
+          <Tangent> { 0.769985 0.023443 0.637631 }
+          <Binormal> { -0.348828 -0.467945 0.438438 }
+        }
+        <Normal> { -0.834895 0.543992 -0.083651 }
+      }
+      <Vertex> 1012 {
+        -0.0292356777936 0.690625011921 4.10390901566
+        <UV>  {
+          0.724853 0.549357
+          <Tangent> { -0.828914 -0.009549 -0.559295 }
+          <Binormal> { 0.364173 0.124329 -0.541852 }
+        }
+        <Normal> { 0.544633 0.659963 0.517472 }
+      }
+      <Vertex> 1013 {
+        0.0284359417856 0.612410604954 3.94189143181
+        <UV>  {
+          0.725233 0.521266
+          <Tangent> { -0.740723 0.591061 -0.319336 }
+          <Binormal> { 0.455031 0.097081 -0.875787 }
+        }
+        <Normal> { 0.581713 0.718162 0.381848 }
+      }
+      <Vertex> 1014 {
+        0.0284359417856 0.612410604954 3.94189143181
+        <UV>  {
+          0.725233 0.521266
+          <Tangent> { -0.740723 0.591061 -0.319336 }
+          <Binormal> { 0.455031 0.097081 -0.875787 }
+        }
+        <Normal> { 0.581713 0.718162 0.381848 }
+      }
+      <Vertex> 1015 {
+        0.0709472447634 0.618407189846 3.82184457779
+        <UV>  {
+          0.726533 0.495626
+          <Tangent> { -0.758412 0.615530 -0.214320 }
+          <Binormal> { 0.380548 0.166558 -0.868285 }
+        }
+        <Normal> { 0.704337 0.573229 0.418653 }
+      }
+      <Vertex> 1016 {
+        -0.163803204894 0.838153064251 4.06078958511
+        <UV>  {
+          0.729797 0.558783
+          <Tangent> { 0.769985 0.023443 0.637631 }
+          <Binormal> { -0.348828 -0.467945 0.438438 }
+        }
+        <Normal> { -0.834895 0.543992 -0.083651 }
+      }
+      <Vertex> 1017 {
+        0.0709472447634 0.618407189846 3.82184457779
+        <UV>  {
+          0.726533 0.495626
+          <Tangent> { -0.758412 0.615530 -0.214320 }
+          <Binormal> { 0.380548 0.166558 -0.868285 }
+        }
+        <Normal> { 0.704337 0.573229 0.418653 }
+      }
+      <Vertex> 1018 {
+        0.166949108243 0.580223917961 3.64041447639
+        <UV>  {
+          0.735007 0.465081
+          <Tangent> { -0.338127 -0.794136 0.504993 }
+          <Binormal> { -0.839970 0.480222 0.192764 }
+        }
+        <Normal> { 0.340373 0.229316 0.911893 }
+      }
+      <Vertex> 1019 {
+        -0.00933499075472 0.767598807812 3.79725074768
+        <UV>  {
+          0.722072 0.504357
+          <Tangent> { 0.757458 -0.548784 0.353686 }
+          <Binormal> { 0.015628 -0.209419 -0.358406 }
+        }
+        <Normal> { -0.959746 0.222175 -0.171667 }
+      }
+      <Vertex> 1020 {
+        -0.163803204894 0.838153064251 4.06078958511
+        <UV>  {
+          0.729797 0.558783
+          <Tangent> { 0.769985 0.023443 0.637631 }
+          <Binormal> { -0.348828 -0.467945 0.438438 }
+        }
+        <Normal> { -0.834895 0.543992 -0.083651 }
+      }
+      <Vertex> 1021 {
+        -0.173658892512 0.626514613628 3.81686115265
+        <UV>  {
+          0.732445 0.511294
+          <Tangent> { -0.642250 0.257361 -0.721998 }
+          <Binormal> { -0.612658 -0.694610 0.297389 }
+        }
+        <Normal> { 0.573748 -0.692953 -0.436537 }
+      }
+      <Vertex> 1022 {
+        -0.217221528292 0.689291536808 3.80358433723
+        <UV>  {
+          0.730238 0.522300
+          <Tangent> { -0.316118 0.713707 -0.625054 }
+          <Binormal> { -0.783690 -0.486782 -0.159476 }
+        }
+        <Normal> { 0.529130 -0.690146 -0.493637 }
+      }
+      <Vertex> 1023 {
+        -0.00933499075472 0.767598807812 3.79725074768
+        <UV>  {
+          0.722072 0.504357
+          <Tangent> { 0.757458 -0.548784 0.353686 }
+          <Binormal> { 0.015628 -0.209419 -0.358406 }
+        }
+        <Normal> { -0.959746 0.222175 -0.171667 }
+      }
+      <Vertex> 1024 {
+        0.00354638346471 0.580223917961 3.53789925575
+        <UV>  {
+          0.731465 0.441176
+          <Tangent> { -0.951414 0.050555 -0.303736 }
+          <Binormal> { -0.273586 0.180442 0.887005 }
+        }
+        <Normal> { 0.209784 -0.943449 0.256630 }
+      }
+      <Vertex> 1025 {
+        -0.173658892512 0.626514613628 3.81686115265
+        <UV>  {
+          0.732445 0.511294
+          <Tangent> { -0.642250 0.257361 -0.721998 }
+          <Binormal> { -0.612658 -0.694610 0.297389 }
+        }
+        <Normal> { 0.573748 -0.692953 -0.436537 }
+      }
+      <Vertex> 1026 {
+        -0.00933499075472 0.767598807812 3.79725074768
+        <UV>  {
+          0.722072 0.504357
+          <Tangent> { 0.757458 -0.548784 0.353686 }
+          <Binormal> { 0.015628 -0.209419 -0.358406 }
+        }
+        <Normal> { -0.959746 0.222175 -0.171667 }
+      }
+      <Vertex> 1027 {
+        -0.173658892512 0.626514613628 3.81686115265
+        <UV>  {
+          0.732445 0.511294
+          <Tangent> { -0.642250 0.257361 -0.721998 }
+          <Binormal> { -0.612658 -0.694610 0.297389 }
+        }
+        <Normal> { 0.573748 -0.692953 -0.436537 }
+      }
+      <Vertex> 1028 {
+        -0.163803204894 0.838153064251 4.06078958511
+        <UV>  {
+          0.729797 0.558783
+          <Tangent> { 0.769985 0.023443 0.637631 }
+          <Binormal> { -0.348828 -0.467945 0.438438 }
+        }
+        <Normal> { -0.834895 0.543992 -0.083651 }
+      }
+      <Vertex> 1029 {
+        -0.163803204894 0.838153064251 4.06078958511
+        <UV>  {
+          0.729797 0.558783
+          <Tangent> { 0.769985 0.023443 0.637631 }
+          <Binormal> { -0.348828 -0.467945 0.438438 }
+        }
+        <Normal> { -0.834895 0.543992 -0.083651 }
+      }
+      <Vertex> 1030 {
+        0.0709472447634 0.618407189846 3.82184457779
+        <UV>  {
+          0.726533 0.495626
+          <Tangent> { -0.758412 0.615530 -0.214320 }
+          <Binormal> { 0.380548 0.166558 -0.868285 }
+        }
+        <Normal> { 0.704337 0.573229 0.418653 }
+      }
+      <Vertex> 1031 {
+        -0.00933499075472 0.767598807812 3.79725074768
+        <UV>  {
+          0.722072 0.504357
+          <Tangent> { 0.757458 -0.548784 0.353686 }
+          <Binormal> { 0.015628 -0.209419 -0.358406 }
+        }
+        <Normal> { -0.959746 0.222175 -0.171667 }
+      }
+      <Vertex> 1032 {
+        -0.507420122623 0.712347507477 4.62690830231
+        <UV>  {
+          0.698613 0.871042
+          <Tangent> { -0.717925 0.141552 -0.681576 }
+          <Binormal> { -0.008332 -0.554674 -0.106420 }
+        }
+        <Normal> { 0.985534 -0.046083 0.163030 }
+      }
+      <Vertex> 1033 {
+        -0.231306836009 0.72917765379 4.35727643967
+        <UV>  {
+          0.698613 0.767826
+          <Tangent> { -0.717925 0.141552 -0.681576 }
+          <Binormal> { 0.222850 -0.468611 -0.332057 }
+        }
+        <Normal> { 0.931883 0.278787 0.231971 }
+      }
+      <Vertex> 1034 {
+        -0.212026491761 0.723137438297 4.39228439331
+        <UV>  {
+          0.711775 0.771068
+          <Tangent> { -0.717925 0.141552 -0.681576 }
+          <Binormal> { -0.065871 -0.769034 -0.090331 }
+        }
+        <Normal> { 0.988739 -0.069124 -0.132511 }
+      }
+      <Vertex> 1035 {
+        -0.549000263214 0.717369377613 4.52010822296
+        <UV>  {
+          0.720604 0.719435
+          <Tangent> { 0.889875 0.442965 0.109109 }
+          <Binormal> { 0.036454 0.167843 -0.978733 }
+        }
+        <Normal> { 0.551408 -0.825373 -0.121006 }
+      }
+      <Vertex> 1036 {
+        -0.45778298378 0.727695286274 4.33806037903
+        <UV>  {
+          0.727383 0.644917
+          <Tangent> { 0.382216 0.880640 0.279973 }
+          <Binormal> { -0.072912 0.295438 -0.829744 }
+        }
+        <Normal> { 0.634602 -0.708731 -0.308115 }
+      }
+      <Vertex> 1037 {
+        -0.321030557156 0.777717292309 4.31247997284
+        <UV>  {
+          0.723904 0.625164
+          <Tangent> { -0.903494 -0.040546 -0.426678 }
+          <Binormal> { 0.027185 -0.401706 -0.019392 }
+        }
+        <Normal> { 0.997436 0.066225 0.026429 }
+      }
+      <Vertex> 1038 {
+        -0.321030557156 0.777717292309 4.31247997284
+        <UV>  {
+          0.723904 0.625164
+          <Tangent> { -0.903494 -0.040546 -0.426678 }
+          <Binormal> { 0.027185 -0.401706 -0.019392 }
+        }
+        <Normal> { 0.997436 0.066225 0.026429 }
+      }
+      <Vertex> 1039 {
+        -0.507420122623 0.712347507477 4.62690830231
+        <UV>  {
+          0.717733 0.762429
+          <Tangent> { 0.892795 0.437343 0.107923 }
+          <Binormal> { 0.076273 -0.039190 -0.472160 }
+        }
+        <Normal> { 0.985534 -0.046083 0.163030 }
+      }
+      <Vertex> 1040 {
+        -0.549000263214 0.717369377613 4.52010822296
+        <UV>  {
+          0.720604 0.719435
+          <Tangent> { 0.889875 0.442965 0.109109 }
+          <Binormal> { 0.036454 0.167843 -0.978733 }
+        }
+        <Normal> { 0.551408 -0.825373 -0.121006 }
+      }
+      <Vertex> 1041 {
+        -0.321030557156 0.777717292309 4.31247997284
+        <UV>  {
+          0.723904 0.625164
+          <Tangent> { -0.903494 -0.040546 -0.426678 }
+          <Binormal> { 0.027185 -0.401706 -0.019392 }
+        }
+        <Normal> { 0.997436 0.066225 0.026429 }
+      }
+      <Vertex> 1042 {
+        -0.231306836009 0.72917765379 4.35727643967
+        <UV>  {
+          0.717733 0.620837
+          <Tangent> { -0.364773 -0.840371 -0.400896 }
+          <Binormal> { -0.083177 -0.288971 0.681433 }
+        }
+        <Normal> { 0.931883 0.278787 0.231971 }
+      }
+      <Vertex> 1043 {
+        -0.507420122623 0.712347507477 4.62690830231
+        <UV>  {
+          0.717733 0.762429
+          <Tangent> { 0.892795 0.437343 0.107923 }
+          <Binormal> { 0.076273 -0.039190 -0.472160 }
+        }
+        <Normal> { 0.985534 -0.046083 0.163030 }
+      }
+      <Vertex> 1044 {
+        -0.358029216528 0.689956128597 4.12238264084
+        <UV>  {
+          0.729088 0.600735
+          <Tangent> { 0.320953 0.881068 0.347432 }
+          <Binormal> { 0.021000 0.321508 -0.834727 }
+        }
+        <Normal> { 0.703848 -0.668599 -0.239814 }
+      }
+      <Vertex> 1045 {
+        -0.321030557156 0.777717292309 4.31247997284
+        <UV>  {
+          0.723904 0.625164
+          <Tangent> { -0.903494 -0.040546 -0.426678 }
+          <Binormal> { 0.027185 -0.401706 -0.019392 }
+        }
+        <Normal> { 0.997436 0.066225 0.026429 }
+      }
+      <Vertex> 1046 {
+        -0.45778298378 0.727695286274 4.33806037903
+        <UV>  {
+          0.727383 0.644917
+          <Tangent> { 0.382216 0.880640 0.279973 }
+          <Binormal> { -0.072912 0.295438 -0.829744 }
+        }
+        <Normal> { 0.634602 -0.708731 -0.308115 }
+      }
+      <Vertex> 1047 {
+        -0.321030557156 0.777717292309 4.31247997284
+        <UV>  {
+          0.723904 0.625164
+          <Tangent> { -0.903494 -0.040546 -0.426678 }
+          <Binormal> { 0.027185 -0.401706 -0.019392 }
+        }
+        <Normal> { 0.997436 0.066225 0.026429 }
+      }
+      <Vertex> 1048 {
+        -0.217221528292 0.689291536808 3.80358433723
+        <UV>  {
+          0.730238 0.522300
+          <Tangent> { -0.316118 0.713707 -0.625054 }
+          <Binormal> { -0.783690 -0.486782 -0.159476 }
+        }
+        <Normal> { 0.529130 -0.690146 -0.493637 }
+      }
+      <Vertex> 1049 {
+        -0.164238572121 0.73690199852 4.06283950806
+        <UV>  {
+          0.723684 0.557633
+          <Tangent> { -0.704679 0.433039 -0.562054 }
+          <Binormal> { -0.160682 -0.432710 -0.131929 }
+        }
+        <Normal> { 0.918485 -0.377209 0.118534 }
+      }
+      <Vertex> 1050 {
+        -0.321030557156 0.777717292309 4.31247997284
+        <UV>  {
+          0.723904 0.625164
+          <Tangent> { -0.903494 -0.040546 -0.426678 }
+          <Binormal> { 0.027185 -0.401706 -0.019392 }
+        }
+        <Normal> { 0.997436 0.066225 0.026429 }
+      }
+      <Vertex> 1051 {
+        -0.358029216528 0.689956128597 4.12238264084
+        <UV>  {
+          0.729088 0.600735
+          <Tangent> { 0.320953 0.881068 0.347432 }
+          <Binormal> { 0.021000 0.321508 -0.834727 }
+        }
+        <Normal> { 0.703848 -0.668599 -0.239814 }
+      }
+      <Vertex> 1052 {
+        -0.217221528292 0.689291536808 3.80358433723
+        <UV>  {
+          0.730238 0.522300
+          <Tangent> { -0.316118 0.713707 -0.625054 }
+          <Binormal> { -0.783690 -0.486782 -0.159476 }
+        }
+        <Normal> { 0.529130 -0.690146 -0.493637 }
+      }
+      <Vertex> 1053 {
+        -0.321030557156 0.777717292309 4.31247997284
+        <UV>  {
+          0.723904 0.625164
+          <Tangent> { -0.903494 -0.040546 -0.426678 }
+          <Binormal> { 0.027185 -0.401706 -0.019392 }
+        }
+        <Normal> { 0.997436 0.066225 0.026429 }
+      }
+      <Vertex> 1054 {
+        -0.0292356777936 0.690625011921 4.10390901566
+        <UV>  {
+          0.724853 0.549357
+          <Tangent> { -0.828914 -0.009549 -0.559295 }
+          <Binormal> { 0.364173 0.124329 -0.541852 }
+        }
+        <Normal> { 0.544633 0.659963 0.517472 }
+      }
+      <Vertex> 1055 {
+        -0.231306836009 0.72917765379 4.35727643967
+        <UV>  {
+          0.717733 0.620837
+          <Tangent> { -0.364773 -0.840371 -0.400896 }
+          <Binormal> { -0.083177 -0.288971 0.681433 }
+        }
+        <Normal> { 0.931883 0.278787 0.231971 }
+      }
+      <Vertex> 1056 {
+        -0.321030557156 0.777717292309 4.31247997284
+        <UV>  {
+          0.723904 0.625164
+          <Tangent> { -0.903494 -0.040546 -0.426678 }
+          <Binormal> { 0.027185 -0.401706 -0.019392 }
+        }
+        <Normal> { 0.997436 0.066225 0.026429 }
+      }
+      <Vertex> 1057 {
+        -0.164238572121 0.73690199852 4.06283950806
+        <UV>  {
+          0.723684 0.557633
+          <Tangent> { -0.704679 0.433039 -0.562054 }
+          <Binormal> { -0.160682 -0.432710 -0.131929 }
+        }
+        <Normal> { 0.918485 -0.377209 0.118534 }
+      }
+      <Vertex> 1058 {
+        -0.0292356777936 0.690625011921 4.10390901566
+        <UV>  {
+          0.724853 0.549357
+          <Tangent> { -0.828914 -0.009549 -0.559295 }
+          <Binormal> { 0.364173 0.124329 -0.541852 }
+        }
+        <Normal> { 0.544633 0.659963 0.517472 }
+      }
+      <Vertex> 1059 {
+        0.0284359417856 0.612410604954 3.94189143181
+        <UV>  {
+          0.725233 0.521266
+          <Tangent> { -0.740723 0.591061 -0.319336 }
+          <Binormal> { 0.455031 0.097081 -0.875787 }
+        }
+        <Normal> { 0.581713 0.718162 0.381848 }
+      }
+      <Vertex> 1060 {
+        -0.0292356777936 0.690625011921 4.10390901566
+        <UV>  {
+          0.724853 0.549357
+          <Tangent> { -0.828914 -0.009549 -0.559295 }
+          <Binormal> { 0.364173 0.124329 -0.541852 }
+        }
+        <Normal> { 0.544633 0.659963 0.517472 }
+      }
+      <Vertex> 1061 {
+        -0.164238572121 0.73690199852 4.06283950806
+        <UV>  {
+          0.723684 0.557633
+          <Tangent> { -0.704679 0.433039 -0.562054 }
+          <Binormal> { -0.160682 -0.432710 -0.131929 }
+        }
+        <Normal> { 0.918485 -0.377209 0.118534 }
+      }
+      <Vertex> 1062 {
+        -0.164238572121 0.73690199852 4.06283950806
+        <UV>  {
+          0.723684 0.557633
+          <Tangent> { -0.704679 0.433039 -0.562054 }
+          <Binormal> { -0.160682 -0.432710 -0.131929 }
+        }
+        <Normal> { 0.918485 -0.377209 0.118534 }
+      }
+      <Vertex> 1063 {
+        0.0709472447634 0.618407189846 3.82184457779
+        <UV>  {
+          0.726533 0.495626
+          <Tangent> { -0.758412 0.615530 -0.214320 }
+          <Binormal> { 0.380548 0.166558 -0.868285 }
+        }
+        <Normal> { 0.704337 0.573229 0.418653 }
+      }
+      <Vertex> 1064 {
+        0.0284359417856 0.612410604954 3.94189143181
+        <UV>  {
+          0.725233 0.521266
+          <Tangent> { -0.740723 0.591061 -0.319336 }
+          <Binormal> { 0.455031 0.097081 -0.875787 }
+        }
+        <Normal> { 0.581713 0.718162 0.381848 }
+      }
+      <Vertex> 1065 {
+        -0.0116033442318 0.666915714741 3.80792498589
+        <UV>  {
+          0.733777 0.498337
+          <Tangent> { -0.944774 -0.209635 -0.251902 }
+          <Binormal> { -0.076156 -0.070685 0.344452 }
+        }
+        <Normal> { 0.971496 -0.149022 0.184210 }
+      }
+      <Vertex> 1066 {
+        0.166949108243 0.580223917961 3.64041447639
+        <UV>  {
+          0.735007 0.465081
+          <Tangent> { -0.338127 -0.794136 0.504993 }
+          <Binormal> { -0.839970 0.480222 0.192764 }
+        }
+        <Normal> { 0.340373 0.229316 0.911893 }
+      }
+      <Vertex> 1067 {
+        0.0709472447634 0.618407189846 3.82184457779
+        <UV>  {
+          0.726533 0.495626
+          <Tangent> { -0.758412 0.615530 -0.214320 }
+          <Binormal> { 0.380548 0.166558 -0.868285 }
+        }
+        <Normal> { 0.704337 0.573229 0.418653 }
+      }
+      <Vertex> 1068 {
+        -0.217221528292 0.689291536808 3.80358433723
+        <UV>  {
+          0.730238 0.522300
+          <Tangent> { -0.316118 0.713707 -0.625054 }
+          <Binormal> { -0.783690 -0.486782 -0.159476 }
+        }
+        <Normal> { 0.529130 -0.690146 -0.493637 }
+      }
+      <Vertex> 1069 {
+        -0.173658892512 0.626514613628 3.81686115265
+        <UV>  {
+          0.732445 0.511294
+          <Tangent> { -0.642250 0.257361 -0.721998 }
+          <Binormal> { -0.612658 -0.694610 0.297389 }
+        }
+        <Normal> { 0.573748 -0.692953 -0.436537 }
+      }
+      <Vertex> 1070 {
+        -0.164238572121 0.73690199852 4.06283950806
+        <UV>  {
+          0.723684 0.557633
+          <Tangent> { -0.704679 0.433039 -0.562054 }
+          <Binormal> { -0.160682 -0.432710 -0.131929 }
+        }
+        <Normal> { 0.918485 -0.377209 0.118534 }
+      }
+      <Vertex> 1071 {
+        -0.173658892512 0.626514613628 3.81686115265
+        <UV>  {
+          0.732445 0.511294
+          <Tangent> { -0.642250 0.257361 -0.721998 }
+          <Binormal> { -0.612658 -0.694610 0.297389 }
+        }
+        <Normal> { 0.573748 -0.692953 -0.436537 }
+      }
+      <Vertex> 1072 {
+        0.00354638346471 0.580223917961 3.53789925575
+        <UV>  {
+          0.731465 0.441176
+          <Tangent> { -0.951414 0.050555 -0.303736 }
+          <Binormal> { -0.273586 0.180442 0.887005 }
+        }
+        <Normal> { 0.209784 -0.943449 0.256630 }
+      }
+      <Vertex> 1073 {
+        -0.0116033442318 0.666915714741 3.80792498589
+        <UV>  {
+          0.733777 0.498337
+          <Tangent> { -0.944774 -0.209635 -0.251902 }
+          <Binormal> { -0.076156 -0.070685 0.344452 }
+        }
+        <Normal> { 0.971496 -0.149022 0.184210 }
+      }
+      <Vertex> 1074 {
+        -0.164238572121 0.73690199852 4.06283950806
+        <UV>  {
+          0.723684 0.557633
+          <Tangent> { -0.704679 0.433039 -0.562054 }
+          <Binormal> { -0.160682 -0.432710 -0.131929 }
+        }
+        <Normal> { 0.918485 -0.377209 0.118534 }
+      }
+      <Vertex> 1075 {
+        -0.173658892512 0.626514613628 3.81686115265
+        <UV>  {
+          0.732445 0.511294
+          <Tangent> { -0.642250 0.257361 -0.721998 }
+          <Binormal> { -0.612658 -0.694610 0.297389 }
+        }
+        <Normal> { 0.573748 -0.692953 -0.436537 }
+      }
+      <Vertex> 1076 {
+        -0.0116033442318 0.666915714741 3.80792498589
+        <UV>  {
+          0.733777 0.498337
+          <Tangent> { -0.944774 -0.209635 -0.251902 }
+          <Binormal> { -0.076156 -0.070685 0.344452 }
+        }
+        <Normal> { 0.971496 -0.149022 0.184210 }
+      }
+      <Vertex> 1077 {
+        -0.0116033442318 0.666915714741 3.80792498589
+        <UV>  {
+          0.733777 0.498337
+          <Tangent> { -0.944774 -0.209635 -0.251902 }
+          <Binormal> { -0.076156 -0.070685 0.344452 }
+        }
+        <Normal> { 0.971496 -0.149022 0.184210 }
+      }
+      <Vertex> 1078 {
+        0.0709472447634 0.618407189846 3.82184457779
+        <UV>  {
+          0.726533 0.495626
+          <Tangent> { -0.758412 0.615530 -0.214320 }
+          <Binormal> { 0.380548 0.166558 -0.868285 }
+        }
+        <Normal> { 0.704337 0.573229 0.418653 }
+      }
+      <Vertex> 1079 {
+        -0.164238572121 0.73690199852 4.06283950806
+        <UV>  {
+          0.723684 0.557633
+          <Tangent> { -0.704679 0.433039 -0.562054 }
+          <Binormal> { -0.160682 -0.432710 -0.131929 }
+        }
+        <Normal> { 0.918485 -0.377209 0.118534 }
+      }
+      <Vertex> 1080 {
+        0.00354638346471 0.580223917961 3.53789925575
+        <UV>  {
+          0.731465 0.441176
+          <Tangent> { -0.951414 0.050555 -0.303736 }
+          <Binormal> { -0.273586 0.180442 0.887005 }
+        }
+        <Normal> { 0.209784 -0.943449 0.256630 }
+      }
+      <Vertex> 1081 {
+        0.166949108243 0.580223917961 3.64041447639
+        <UV>  {
+          0.735007 0.465081
+          <Tangent> { -0.338127 -0.794136 0.504993 }
+          <Binormal> { -0.839970 0.480222 0.192764 }
+        }
+        <Normal> { 0.340373 0.229316 0.911893 }
+      }
+      <Vertex> 1082 {
+        -0.0116033442318 0.666915714741 3.80792498589
+        <UV>  {
+          0.733777 0.498337
+          <Tangent> { -0.944774 -0.209635 -0.251902 }
+          <Binormal> { -0.076156 -0.070685 0.344452 }
+        }
+        <Normal> { 0.971496 -0.149022 0.184210 }
+      }
+      <Vertex> 1083 {
+        0.00354638346471 0.580223917961 3.53789925575
+        <UV>  {
+          0.735007 0.465081
+          <Tangent> { 0.841471 -0.050044 0.537980 }
+          <Binormal> { 0.494714 -0.103087 -0.783387 }
+        }
+        <Normal> { 0.209784 -0.943449 0.256630 }
+      }
+      <Vertex> 1084 {
+        0.166949108243 0.580223917961 3.64041447639
+        <UV>  {
+          0.731968 0.462919
+          <Tangent> { 0.841471 -0.050044 0.537980 }
+          <Binormal> { -0.169002 -0.584218 0.209996 }
+        }
+        <Normal> { 0.340373 0.229316 0.911893 }
+      }
+      <Vertex> 1085 {
+        0.115919359028 0.68100976944 3.58813977242
+        <UV>  {
+          0.731465 0.441176
+          <Tangent> { 0.841471 -0.050044 0.537980 }
+          <Binormal> { 0.157614 -0.910191 -0.331197 }
+        }
+        <Normal> { -0.668050 -0.353862 0.654561 }
+      }
+      <Vertex> 1086 {
+        0.248577296734 0.837095499039 2.04249405861
+        <UV>  {
+          0.804856 0.606755
+          <Tangent> { 0.969525 -0.244986 0.001858 }
+          <Binormal> { -0.045392 -0.181457 -0.239940 }
+        }
+        <Normal> { -0.982665 0.000824 0.185278 }
+      }
+      <Vertex> 1087 {
+        0.339759081602 0.827808439732 1.96710169315
+        <UV>  {
+          0.778839 0.583766
+          <Tangent> { 0.955340 -0.291099 0.050852 }
+          <Binormal> { -0.064612 -0.213959 -0.010956 }
+        }
+        <Normal> { -0.945158 0.276528 0.173650 }
+      }
+      <Vertex> 1088 {
+        0.339759081602 0.8608533144 1.82312321663
+        <UV>  {
+          0.777584 0.542880
+          <Tangent> { 0.974456 -0.199545 -0.103040 }
+          <Binormal> { -0.018071 -0.097773 0.018451 }
+        }
+        <Normal> { -0.955687 0.214637 0.201392 }
+      }
+      <Vertex> 1089 {
+        0.339759081602 0.8608533144 1.82312321663
+        <UV>  {
+          0.777584 0.542880
+          <Tangent> { 0.974456 -0.199545 -0.103040 }
+          <Binormal> { -0.018071 -0.097773 0.018451 }
+        }
+        <Normal> { -0.955687 0.214637 0.201392 }
+      }
+      <Vertex> 1090 {
+        0.339759081602 0.878551721573 1.65056419373
+        <UV>  {
+          0.768544 0.503210
+          <Tangent> { 0.966118 -0.113513 -0.231801 }
+          <Binormal> { 0.028708 0.282869 -0.018869 }
+        }
+        <Normal> { -0.993774 0.097232 -0.054353 }
+      }
+      <Vertex> 1091 {
+        0.248577296734 0.889273703098 1.70570719242
+        <UV>  {
+          0.792302 0.507700
+          <Tangent> { 0.954652 -0.115307 -0.274489 }
+          <Binormal> { 0.000091 0.274335 -0.114925 }
+        }
+        <Normal> { -0.999969 0.000397 0.000153 }
+      }
+      <Vertex> 1092 {
+        0.248577296734 0.889273703098 1.70570719242
+        <UV>  {
+          0.792302 0.507700
+          <Tangent> { 0.954652 -0.115307 -0.274489 }
+          <Binormal> { 0.000091 0.274335 -0.114925 }
+        }
+        <Normal> { -0.999969 0.000397 0.000153 }
+      }
+      <Vertex> 1093 {
+        0.248577296734 0.870299816132 1.89070272446
+        <UV>  {
+          0.804751 0.558127
+          <Tangent> { 0.968946 -0.184346 -0.164805 }
+          <Binormal> { -0.028937 0.010010 -0.181330 }
+        }
+        <Normal> { -0.987487 0.000732 0.157628 }
+      }
+      <Vertex> 1094 {
+        0.339759081602 0.8608533144 1.82312321663
+        <UV>  {
+          0.777584 0.542880
+          <Tangent> { 0.974456 -0.199545 -0.103040 }
+          <Binormal> { -0.018071 -0.097773 0.018451 }
+        }
+        <Normal> { -0.955687 0.214637 0.201392 }
+      }
+      <Vertex> 1095 {
+        0.339759081602 0.8608533144 1.82312321663
+        <UV>  {
+          0.777584 0.542880
+          <Tangent> { 0.974456 -0.199545 -0.103040 }
+          <Binormal> { -0.018071 -0.097773 0.018451 }
+        }
+        <Normal> { -0.955687 0.214637 0.201392 }
+      }
+      <Vertex> 1096 {
+        0.248577296734 0.870299816132 1.89070272446
+        <UV>  {
+          0.804751 0.558127
+          <Tangent> { 0.968946 -0.184346 -0.164805 }
+          <Binormal> { -0.028937 0.010010 -0.181330 }
+        }
+        <Normal> { -0.987487 0.000732 0.157628 }
+      }
+      <Vertex> 1097 {
+        0.248577296734 0.837095499039 2.04249405861
+        <UV>  {
+          0.804856 0.606755
+          <Tangent> { 0.969525 -0.244986 0.001858 }
+          <Binormal> { -0.045392 -0.181457 -0.239940 }
+        }
+        <Normal> { -0.982665 0.000824 0.185278 }
+      }
+      <Vertex> 1098 {
+        0.548950433731 0.772172868252 1.91014873981
+        <UV>  {
+          0.725073 0.566581
+          <Tangent> { 0.743138 -0.669090 -0.008039 }
+          <Binormal> { -0.129994 -0.144132 -0.020683 }
+        }
+        <Normal> { -0.741508 0.639790 0.201972 }
+      }
+      <Vertex> 1099 {
+        0.548950433731 0.837193250656 1.78695166111
+        <UV>  {
+          0.732155 0.536753
+          <Tangent> { 0.830854 -0.552709 -0.064767 }
+          <Binormal> { -0.077488 -0.115049 -0.012238 }
+        }
+        <Normal> { -0.822047 0.532121 0.202551 }
+      }
+      <Vertex> 1100 {
+        0.339759081602 0.8608533144 1.82312321663
+        <UV>  {
+          0.777584 0.542880
+          <Tangent> { 0.974456 -0.199545 -0.103040 }
+          <Binormal> { -0.018071 -0.097773 0.018451 }
+        }
+        <Normal> { -0.955687 0.214637 0.201392 }
+      }
+      <Vertex> 1101 {
+        0.339759081602 0.827808439732 1.96710169315
+        <UV>  {
+          0.778839 0.583766
+          <Tangent> { 0.955340 -0.291099 0.050852 }
+          <Binormal> { -0.064612 -0.213959 -0.010956 }
+        }
+        <Normal> { -0.945158 0.276528 0.173650 }
+      }
+      <Vertex> 1102 {
+        0.548950433731 0.772172868252 1.91014873981
+        <UV>  {
+          0.725073 0.566581
+          <Tangent> { 0.743138 -0.669090 -0.008039 }
+          <Binormal> { -0.129994 -0.144132 -0.020683 }
+        }
+        <Normal> { -0.741508 0.639790 0.201972 }
+      }
+      <Vertex> 1103 {
+        0.339759081602 0.8608533144 1.82312321663
+        <UV>  {
+          0.777584 0.542880
+          <Tangent> { 0.974456 -0.199545 -0.103040 }
+          <Binormal> { -0.018071 -0.097773 0.018451 }
+        }
+        <Normal> { -0.955687 0.214637 0.201392 }
+      }
+      <Vertex> 1104 {
+        0.548950433731 0.837193250656 1.78695166111
+        <UV>  {
+          0.732155 0.536753
+          <Tangent> { 0.830854 -0.552709 -0.064767 }
+          <Binormal> { -0.077488 -0.115049 -0.012238 }
+        }
+        <Normal> { -0.822047 0.532121 0.202551 }
+      }
+      <Vertex> 1105 {
+        0.548950433731 0.850881814957 1.65348780155
+        <UV>  {
+          0.731173 0.510822
+          <Tangent> { 0.852607 -0.494875 -0.167810 }
+          <Binormal> { 0.084862 0.144490 0.005065 }
+        }
+        <Normal> { -0.862270 0.506424 0.000244 }
+      }
+      <Vertex> 1106 {
+        0.339759081602 0.878551721573 1.65056419373
+        <UV>  {
+          0.768544 0.503210
+          <Tangent> { 0.966118 -0.113513 -0.231801 }
+          <Binormal> { 0.028708 0.282869 -0.018869 }
+        }
+        <Normal> { -0.993774 0.097232 -0.054353 }
+      }
+      <Vertex> 1107 {
+        0.339759081602 0.8608533144 1.82312321663
+        <UV>  {
+          0.777584 0.542880
+          <Tangent> { 0.974456 -0.199545 -0.103040 }
+          <Binormal> { -0.018071 -0.097773 0.018451 }
+        }
+        <Normal> { -0.955687 0.214637 0.201392 }
+      }
+      <Vertex> 1108 {
+        0.548950433731 0.837193250656 1.78695166111
+        <UV>  {
+          0.732155 0.536753
+          <Tangent> { 0.830854 -0.552709 -0.064767 }
+          <Binormal> { -0.077488 -0.115049 -0.012238 }
+        }
+        <Normal> { -0.822047 0.532121 0.202551 }
+      }
+      <Vertex> 1109 {
+        0.339759081602 0.878551721573 1.65056419373
+        <UV>  {
+          0.768544 0.503210
+          <Tangent> { 0.966118 -0.113513 -0.231801 }
+          <Binormal> { 0.028708 0.282869 -0.018869 }
+        }
+        <Normal> { -0.993774 0.097232 -0.054353 }
+      }
+      <Vertex> 1110 {
+        0.248577296734 0.837095499039 2.04249405861
+        <UV>  {
+          0.804856 0.606755
+          <Tangent> { 0.969525 -0.244986 0.001858 }
+          <Binormal> { -0.045392 -0.181457 -0.239940 }
+        }
+        <Normal> { -0.982665 0.000824 0.185278 }
+      }
+      <Vertex> 1111 {
+        0.339759081602 0.801260888577 2.13966059685
+        <UV>  {
+          0.773208 0.633525
+          <Tangent> { 0.928093 -0.350323 0.126163 }
+          <Binormal> { -0.118752 -0.327018 -0.034475 }
+        }
+        <Normal> { -0.922849 0.311197 0.226905 }
+      }
+      <Vertex> 1112 {
+        0.339759081602 0.827808439732 1.96710169315
+        <UV>  {
+          0.778839 0.583766
+          <Tangent> { 0.955340 -0.291099 0.050852 }
+          <Binormal> { -0.064612 -0.213959 -0.010956 }
+        }
+        <Normal> { -0.945158 0.276528 0.173650 }
+      }
+      <Vertex> 1113 {
+        0.248577296734 0.837095499039 2.04249405861
+        <UV>  {
+          0.804856 0.606755
+          <Tangent> { 0.969525 -0.244986 0.001858 }
+          <Binormal> { -0.045392 -0.181457 -0.239940 }
+        }
+        <Normal> { -0.982665 0.000824 0.185278 }
+      }
+      <Vertex> 1114 {
+        0.248577296734 0.808634579182 2.22748970985
+        <UV>  {
+          0.793662 0.663788
+          <Tangent> { 0.944947 -0.288954 0.153559 }
+          <Binormal> { -0.057059 -0.336697 -0.282448 }
+        }
+        <Normal> { -0.980377 0.000885 0.196997 }
+      }
+      <Vertex> 1115 {
+        0.339759081602 0.801260888577 2.13966059685
+        <UV>  {
+          0.773208 0.633525
+          <Tangent> { 0.928093 -0.350323 0.126163 }
+          <Binormal> { -0.118752 -0.327018 -0.034475 }
+        }
+        <Normal> { -0.922849 0.311197 0.226905 }
+      }
+      <Vertex> 1116 {
+        0.548950433731 0.75163936615 2.04361271858
+        <UV>  {
+          0.721591 0.600416
+          <Tangent> { 0.743881 -0.667401 0.034897 }
+          <Binormal> { -0.123919 -0.139846 -0.033007 }
+        }
+        <Normal> { -0.757256 0.635029 0.152470 }
+      }
+      <Vertex> 1117 {
+        0.548950433731 0.772172868252 1.91014873981
+        <UV>  {
+          0.725073 0.566581
+          <Tangent> { 0.743138 -0.669090 -0.008039 }
+          <Binormal> { -0.129994 -0.144132 -0.020683 }
+        }
+        <Normal> { -0.741508 0.639790 0.201972 }
+      }
+      <Vertex> 1118 {
+        0.339759081602 0.827808439732 1.96710169315
+        <UV>  {
+          0.778839 0.583766
+          <Tangent> { 0.955340 -0.291099 0.050852 }
+          <Binormal> { -0.064612 -0.213959 -0.010956 }
+        }
+        <Normal> { -0.945158 0.276528 0.173650 }
+      }
+      <Vertex> 1119 {
+        0.339759081602 0.801260888577 2.13966059685
+        <UV>  {
+          0.773208 0.633525
+          <Tangent> { 0.928093 -0.350323 0.126163 }
+          <Binormal> { -0.118752 -0.327018 -0.034475 }
+        }
+        <Normal> { -0.922849 0.311197 0.226905 }
+      }
+      <Vertex> 1120 {
+        0.548950433731 0.75163936615 2.04361271858
+        <UV>  {
+          0.721591 0.600416
+          <Tangent> { 0.743881 -0.667401 0.034897 }
+          <Binormal> { -0.123919 -0.139846 -0.033007 }
+        }
+        <Normal> { -0.757256 0.635029 0.152470 }
+      }
+      <Vertex> 1121 {
+        0.339759081602 0.827808439732 1.96710169315
+        <UV>  {
+          0.778839 0.583766
+          <Tangent> { 0.955340 -0.291099 0.050852 }
+          <Binormal> { -0.064612 -0.213959 -0.010956 }
+        }
+        <Normal> { -0.945158 0.276528 0.173650 }
+      }
+      <Vertex> 1122 {
+        0.248577296734 0.680560708046 2.64017224312
+        <UV>  {
+          0.747679 0.770120
+          <Tangent> { 0.763824 -0.639314 0.088606 }
+          <Binormal> { -0.169171 -0.287166 -0.613643 }
+        }
+        <Normal> { -0.964476 0.003876 0.264077 }
+      }
+      <Vertex> 1123 {
+        0.360088258982 0.664598822594 2.52841901779
+        <UV>  {
+          0.727493 0.736575
+          <Tangent> { 0.753095 -0.620199 0.219549 }
+          <Binormal> { -0.402828 -0.534466 -0.128025 }
+        }
+        <Normal> { -0.747917 0.445936 0.491653 }
+      }
+      <Vertex> 1124 {
+        0.360088258982 0.697590112686 2.39519691467
+        <UV>  {
+          0.741538 0.704627
+          <Tangent> { 0.928778 -0.329715 0.169293 }
+          <Binormal> { -0.133975 -0.377058 0.000660 }
+        }
+        <Normal> { -0.914762 0.325449 0.239235 }
+      }
+      <Vertex> 1125 {
+        0.339759081602 0.801260888577 2.13966059685
+        <UV>  {
+          0.773208 0.633525
+          <Tangent> { 0.928093 -0.350323 0.126163 }
+          <Binormal> { -0.118752 -0.327018 -0.034475 }
+        }
+        <Normal> { -0.922849 0.311197 0.226905 }
+      }
+      <Vertex> 1126 {
+        0.248577296734 0.761199831963 2.41722893715
+        <UV>  {
+          0.773851 0.716939
+          <Tangent> { 0.838070 -0.511574 0.189555 }
+          <Binormal> { -0.155601 -0.435139 -0.486409 }
+        }
+        <Normal> { -0.952757 0.001190 0.303720 }
+      }
+      <Vertex> 1127 {
+        0.360088258982 0.697590112686 2.39519691467
+        <UV>  {
+          0.741538 0.704627
+          <Tangent> { 0.928778 -0.329715 0.169293 }
+          <Binormal> { -0.133975 -0.377058 0.000660 }
+        }
+        <Normal> { -0.914762 0.325449 0.239235 }
+      }
+      <Vertex> 1128 {
+        0.248577296734 0.808634579182 2.22748970985
+        <UV>  {
+          0.793662 0.663788
+          <Tangent> { 0.944947 -0.288954 0.153559 }
+          <Binormal> { -0.057059 -0.336697 -0.282448 }
+        }
+        <Normal> { -0.980377 0.000885 0.196997 }
+      }
+      <Vertex> 1129 {
+        0.248577296734 0.761199831963 2.41722893715
+        <UV>  {
+          0.773851 0.716939
+          <Tangent> { 0.838070 -0.511574 0.189555 }
+          <Binormal> { -0.155601 -0.435139 -0.486409 }
+        }
+        <Normal> { -0.952757 0.001190 0.303720 }
+      }
+      <Vertex> 1130 {
+        0.339759081602 0.801260888577 2.13966059685
+        <UV>  {
+          0.773208 0.633525
+          <Tangent> { 0.928093 -0.350323 0.126163 }
+          <Binormal> { -0.118752 -0.327018 -0.034475 }
+        }
+        <Normal> { -0.922849 0.311197 0.226905 }
+      }
+      <Vertex> 1131 {
+        0.248577296734 0.761199831963 2.41722893715
+        <UV>  {
+          0.773851 0.716939
+          <Tangent> { 0.838070 -0.511574 0.189555 }
+          <Binormal> { -0.155601 -0.435139 -0.486409 }
+        }
+        <Normal> { -0.952757 0.001190 0.303720 }
+      }
+      <Vertex> 1132 {
+        0.248577296734 0.680560708046 2.64017224312
+        <UV>  {
+          0.747679 0.770120
+          <Tangent> { 0.763824 -0.639314 0.088606 }
+          <Binormal> { -0.169171 -0.287166 -0.613643 }
+        }
+        <Normal> { -0.964476 0.003876 0.264077 }
+      }
+      <Vertex> 1133 {
+        0.360088258982 0.697590112686 2.39519691467
+        <UV>  {
+          0.741538 0.704627
+          <Tangent> { 0.928778 -0.329715 0.169293 }
+          <Binormal> { -0.133975 -0.377058 0.000660 }
+        }
+        <Normal> { -0.914762 0.325449 0.239235 }
+      }
+      <Vertex> 1134 {
+        0.548950433731 0.75163936615 2.04361271858
+        <UV>  {
+          0.721591 0.600416
+          <Tangent> { 0.743881 -0.667401 0.034897 }
+          <Binormal> { -0.123919 -0.139846 -0.033007 }
+        }
+        <Normal> { -0.757256 0.635029 0.152470 }
+      }
+      <Vertex> 1135 {
+        0.640790522099 0.599374711514 1.98093593121
+        <UV>  {
+          0.682035 0.584749
+          <Tangent> { 0.078811 -0.996862 -0.007445 }
+          <Binormal> { -0.075155 -0.006188 0.032915 }
+        }
+        <Normal> { -0.045686 0.995514 0.082827 }
+      }
+      <Vertex> 1136 {
+        0.640790522099 0.604476928711 1.87378919125
+        <UV>  {
+          0.682799 0.558027
+          <Tangent> { 0.161356 -0.985907 0.044176 }
+          <Binormal> { -0.061582 -0.009274 0.017966 }
+        }
+        <Normal> { -0.143712 0.989441 0.018128 }
+      }
+      <Vertex> 1137 {
+        0.640790522099 0.61468142271 1.7156201601
+        <UV>  {
+          0.687132 0.521694
+          <Tangent> { 0.002630 -0.997263 0.073890 }
+          <Binormal> { -0.290858 -0.004133 -0.045433 }
+        }
+        <Normal> { -0.048128 0.974425 0.219459 }
+      }
+      <Vertex> 1138 {
+        0.548950433731 0.850881814957 1.65348780155
+        <UV>  {
+          0.731173 0.510822
+          <Tangent> { 0.852607 -0.494875 -0.167810 }
+          <Binormal> { 0.084862 0.144490 0.005065 }
+        }
+        <Normal> { -0.862270 0.506424 0.000244 }
+      }
+      <Vertex> 1139 {
+        0.548950433731 0.837193250656 1.78695166111
+        <UV>  {
+          0.732155 0.536753
+          <Tangent> { 0.830854 -0.552709 -0.064767 }
+          <Binormal> { -0.077488 -0.115049 -0.012238 }
+        }
+        <Normal> { -0.822047 0.532121 0.202551 }
+      }
+      <Vertex> 1140 {
+        0.640790522099 0.61468142271 1.7156201601
+        <UV>  {
+          0.687132 0.521694
+          <Tangent> { 0.002630 -0.997263 0.073890 }
+          <Binormal> { -0.290858 -0.004133 -0.045433 }
+        }
+        <Normal> { -0.048128 0.974425 0.219459 }
+      }
+      <Vertex> 1141 {
+        0.548950433731 0.837193250656 1.78695166111
+        <UV>  {
+          0.732155 0.536753
+          <Tangent> { 0.830854 -0.552709 -0.064767 }
+          <Binormal> { -0.077488 -0.115049 -0.012238 }
+        }
+        <Normal> { -0.822047 0.532121 0.202551 }
+      }
+      <Vertex> 1142 {
+        0.548950433731 0.772172868252 1.91014873981
+        <UV>  {
+          0.725073 0.566581
+          <Tangent> { 0.743138 -0.669090 -0.008039 }
+          <Binormal> { -0.129994 -0.144132 -0.020683 }
+        }
+        <Normal> { -0.741508 0.639790 0.201972 }
+      }
+      <Vertex> 1143 {
+        0.640790522099 0.604476928711 1.87378919125
+        <UV>  {
+          0.682799 0.558027
+          <Tangent> { 0.161356 -0.985907 0.044176 }
+          <Binormal> { -0.061582 -0.009274 0.017966 }
+        }
+        <Normal> { -0.143712 0.989441 0.018128 }
+      }
+      <Vertex> 1144 {
+        0.548950433731 0.772172868252 1.91014873981
+        <UV>  {
+          0.725073 0.566581
+          <Tangent> { 0.743138 -0.669090 -0.008039 }
+          <Binormal> { -0.129994 -0.144132 -0.020683 }
+        }
+        <Normal> { -0.741508 0.639790 0.201972 }
+      }
+      <Vertex> 1145 {
+        0.548950433731 0.75163936615 2.04361271858
+        <UV>  {
+          0.721591 0.600416
+          <Tangent> { 0.743881 -0.667401 0.034897 }
+          <Binormal> { -0.123919 -0.139846 -0.033007 }
+        }
+        <Normal> { -0.757256 0.635029 0.152470 }
+      }
+      <Vertex> 1146 {
+        0.640790522099 0.604476928711 1.87378919125
+        <UV>  {
+          0.682799 0.558027
+          <Tangent> { 0.161356 -0.985907 0.044176 }
+          <Binormal> { -0.061582 -0.009274 0.017966 }
+        }
+        <Normal> { -0.143712 0.989441 0.018128 }
+      }
+      <Vertex> 1147 {
+        0.640790522099 0.61468142271 1.7156201601
+        <UV>  {
+          0.687132 0.521694
+          <Tangent> { 0.002630 -0.997263 0.073890 }
+          <Binormal> { -0.290858 -0.004133 -0.045433 }
+        }
+        <Normal> { -0.048128 0.974425 0.219459 }
+      }
+      <Vertex> 1148 {
+        0.548950433731 0.772172868252 1.91014873981
+        <UV>  {
+          0.725073 0.566581
+          <Tangent> { 0.743138 -0.669090 -0.008039 }
+          <Binormal> { -0.129994 -0.144132 -0.020683 }
+        }
+        <Normal> { -0.741508 0.639790 0.201972 }
+      }
+      <Vertex> 1149 {
+        0.640790522099 0.599374711514 1.98093593121
+        <UV>  {
+          0.682035 0.584749
+          <Tangent> { 0.078811 -0.996862 -0.007445 }
+          <Binormal> { -0.075155 -0.006188 0.032915 }
+        }
+        <Normal> { -0.045686 0.995514 0.082827 }
+      }
+      <Vertex> 1150 {
+        0.548950433731 0.378688395023 2.01623558998
+        <UV>  {
+          0.620484 0.598274
+          <Tangent> { -0.330619 -0.939219 -0.092509 }
+          <Binormal> { 0.061849 -0.055993 0.347437 }
+        }
+        <Normal> { 0.640278 0.768029 0.009796 }
+      }
+      <Vertex> 1151 {
+        0.548950433731 0.397479206324 1.83828282356
+        <UV>  {
+          0.629093 0.543567
+          <Tangent> { -0.392745 -0.915364 0.088662 }
+          <Binormal> { -0.050280 0.039470 0.184775 }
+        }
+        <Normal> { 0.557787 0.829554 -0.025422 }
+      }
+      <Vertex> 1152 {
+        0.640790522099 0.61468142271 1.7156201601
+        <UV>  {
+          0.687132 0.521694
+          <Tangent> { 0.002630 -0.997263 0.073890 }
+          <Binormal> { -0.290858 -0.004133 -0.045433 }
+        }
+        <Normal> { -0.048128 0.974425 0.219459 }
+      }
+      <Vertex> 1153 {
+        0.548950433731 0.397479206324 1.83828282356
+        <UV>  {
+          0.629093 0.543567
+          <Tangent> { -0.392745 -0.915364 0.088662 }
+          <Binormal> { -0.050280 0.039470 0.184775 }
+        }
+        <Normal> { 0.557787 0.829554 -0.025422 }
+      }
+      <Vertex> 1154 {
+        0.548950433731 0.393995076418 1.67912220955
+        <UV>  {
+          0.643824 0.502496
+          <Tangent> { -0.579945 -0.703762 0.410345 }
+          <Binormal> { -0.394959 0.338694 0.022678 }
+        }
+        <Normal> { 0.650014 0.749687 0.124088 }
+      }
+      <Vertex> 1155 {
+        0.640790522099 0.604476928711 1.87378919125
+        <UV>  {
+          0.682799 0.558027
+          <Tangent> { 0.161356 -0.985907 0.044176 }
+          <Binormal> { -0.061582 -0.009274 0.017966 }
+        }
+        <Normal> { -0.143712 0.989441 0.018128 }
+      }
+      <Vertex> 1156 {
+        0.548950433731 0.397479206324 1.83828282356
+        <UV>  {
+          0.629093 0.543567
+          <Tangent> { -0.392745 -0.915364 0.088662 }
+          <Binormal> { -0.050280 0.039470 0.184775 }
+        }
+        <Normal> { 0.557787 0.829554 -0.025422 }
+      }
+      <Vertex> 1157 {
+        0.640790522099 0.61468142271 1.7156201601
+        <UV>  {
+          0.687132 0.521694
+          <Tangent> { 0.002630 -0.997263 0.073890 }
+          <Binormal> { -0.290858 -0.004133 -0.045433 }
+        }
+        <Normal> { -0.048128 0.974425 0.219459 }
+      }
+      <Vertex> 1158 {
+        0.640790522099 0.604476928711 1.87378919125
+        <UV>  {
+          0.682799 0.558027
+          <Tangent> { 0.161356 -0.985907 0.044176 }
+          <Binormal> { -0.061582 -0.009274 0.017966 }
+        }
+        <Normal> { -0.143712 0.989441 0.018128 }
+      }
+      <Vertex> 1159 {
+        0.640790522099 0.599374711514 1.98093593121
+        <UV>  {
+          0.682035 0.584749
+          <Tangent> { 0.078811 -0.996862 -0.007445 }
+          <Binormal> { -0.075155 -0.006188 0.032915 }
+        }
+        <Normal> { -0.045686 0.995514 0.082827 }
+      }
+      <Vertex> 1160 {
+        0.548950433731 0.397479206324 1.83828282356
+        <UV>  {
+          0.629093 0.543567
+          <Tangent> { -0.392745 -0.915364 0.088662 }
+          <Binormal> { -0.050280 0.039470 0.184775 }
+        }
+        <Normal> { 0.557787 0.829554 -0.025422 }
+      }
+      <Vertex> 1161 {
+        0.248577281833 0.42441290617 2.64491581917
+        <UV>  {
+          0.671441 0.794732
+          <Tangent> { -0.761562 -0.220702 -0.609355 }
+          <Binormal> { -0.125630 -0.044728 0.173211 }
+        }
+        <Normal> { 0.808618 0.006897 0.588275 }
+      }
+      <Vertex> 1162 {
+        0.248577281833 0.339249521494 2.58159637451
+        <UV>  {
+          0.658666 0.788178
+          <Tangent> { -0.615326 -0.523065 -0.589727 }
+          <Binormal> { -0.358842 0.011902 0.363862 }
+        }
+        <Normal> { 0.712149 0.014039 0.701865 }
+      }
+      <Vertex> 1163 {
+        0.42641723156 0.351054638624 2.50102829933
+        <UV>  {
+          0.656048 0.745442
+          <Tangent> { -0.309632 -0.874562 -0.373188 }
+          <Binormal> { -0.446728 -0.042593 0.470464 }
+        }
+        <Normal> { 0.662587 0.352062 0.661031 }
+      }
+      <Vertex> 1164 {
+        0.370372444391 0.538147985935 2.70035028458
+        <UV>  {
+          0.706644 0.785337
+          <Tangent> { 0.045813 -0.944221 -0.326109 }
+          <Binormal> { 0.220041 0.002369 0.024054 }
+        }
+        <Normal> { -0.022736 0.993652 0.110141 }
+      }
+      <Vertex> 1165 {
+        0.248577281833 0.42441290617 2.64491581917
+        <UV>  {
+          0.671441 0.794732
+          <Tangent> { -0.761562 -0.220702 -0.609355 }
+          <Binormal> { -0.125630 -0.044728 0.173211 }
+        }
+        <Normal> { 0.808618 0.006897 0.588275 }
+      }
+      <Vertex> 1166 {
+        0.405051648617 0.540606319904 2.59080171585
+        <UV>  {
+          0.697556 0.754412
+          <Tangent> { 0.101917 -0.961716 -0.254393 }
+          <Binormal> { -0.558744 -0.109433 0.189855 }
+        }
+        <Normal> { 0.128910 0.646413 0.751976 }
+      }
+      <Vertex> 1167 {
+        0.248577281833 0.42441290617 2.64491581917
+        <UV>  {
+          0.671441 0.794732
+          <Tangent> { -0.761562 -0.220702 -0.609355 }
+          <Binormal> { -0.125630 -0.044728 0.173211 }
+        }
+        <Normal> { 0.808618 0.006897 0.588275 }
+      }
+      <Vertex> 1168 {
+        0.42641723156 0.351054638624 2.50102829933
+        <UV>  {
+          0.656048 0.745442
+          <Tangent> { -0.309632 -0.874562 -0.373188 }
+          <Binormal> { -0.446728 -0.042593 0.470464 }
+        }
+        <Normal> { 0.662587 0.352062 0.661031 }
+      }
+      <Vertex> 1169 {
+        0.405051648617 0.540606319904 2.59080171585
+        <UV>  {
+          0.697556 0.754412
+          <Tangent> { 0.101917 -0.961716 -0.254393 }
+          <Binormal> { -0.558744 -0.109433 0.189855 }
+        }
+        <Normal> { 0.128910 0.646413 0.751976 }
+      }
+      <Vertex> 1170 {
+        0.405051648617 0.540606319904 2.59080171585
+        <UV>  {
+          0.697556 0.754412
+          <Tangent> { 0.101917 -0.961716 -0.254393 }
+          <Binormal> { -0.558744 -0.109433 0.189855 }
+        }
+        <Normal> { 0.128910 0.646413 0.751976 }
+      }
+      <Vertex> 1171 {
+        0.360088258982 0.664598822594 2.52841901779
+        <UV>  {
+          0.727493 0.736575
+          <Tangent> { 0.753095 -0.620199 0.219549 }
+          <Binormal> { -0.402828 -0.534466 -0.128025 }
+        }
+        <Normal> { -0.747917 0.445936 0.491653 }
+      }
+      <Vertex> 1172 {
+        0.370372444391 0.538147985935 2.70035028458
+        <UV>  {
+          0.706644 0.785337
+          <Tangent> { 0.045813 -0.944221 -0.326109 }
+          <Binormal> { 0.220041 0.002369 0.024054 }
+        }
+        <Normal> { -0.022736 0.993652 0.110141 }
+      }
+      <Vertex> 1173 {
+        0.360088258982 0.664598822594 2.52841901779
+        <UV>  {
+          0.727493 0.736575
+          <Tangent> { 0.753095 -0.620199 0.219549 }
+          <Binormal> { -0.402828 -0.534466 -0.128025 }
+        }
+        <Normal> { -0.747917 0.445936 0.491653 }
+      }
+      <Vertex> 1174 {
+        0.248577296734 0.680560708046 2.64017224312
+        <UV>  {
+          0.747679 0.770120
+          <Tangent> { 0.763824 -0.639314 0.088606 }
+          <Binormal> { -0.169171 -0.287166 -0.613643 }
+        }
+        <Normal> { -0.964476 0.003876 0.264077 }
+      }
+      <Vertex> 1175 {
+        0.370372444391 0.538147985935 2.70035028458
+        <UV>  {
+          0.706644 0.785337
+          <Tangent> { 0.045813 -0.944221 -0.326109 }
+          <Binormal> { 0.220041 0.002369 0.024054 }
+        }
+        <Normal> { -0.022736 0.993652 0.110141 }
+      }
+      <Vertex> 1176 {
+        0.339759081602 0.801260888577 2.13966059685
+        <UV>  {
+          0.773208 0.633525
+          <Tangent> { 0.928093 -0.350323 0.126163 }
+          <Binormal> { -0.118752 -0.327018 -0.034475 }
+        }
+        <Normal> { -0.922849 0.311197 0.226905 }
+      }
+      <Vertex> 1177 {
+        0.360088258982 0.697590112686 2.39519691467
+        <UV>  {
+          0.741538 0.704627
+          <Tangent> { 0.928778 -0.329715 0.169293 }
+          <Binormal> { -0.133975 -0.377058 0.000660 }
+        }
+        <Normal> { -0.914762 0.325449 0.239235 }
+      }
+      <Vertex> 1178 {
+        0.528621256351 0.678654849529 2.31012678146
+        <UV>  {
+          0.708377 0.672531
+          <Tangent> { 0.787368 -0.616483 0.000634 }
+          <Binormal> { 0.052545 0.067051 -0.057186 }
+        }
+        <Normal> { -0.818415 0.568163 -0.085818 }
+      }
+      <Vertex> 1179 {
+        0.528621256351 0.678654849529 2.31012678146
+        <UV>  {
+          0.708377 0.672531
+          <Tangent> { 0.787368 -0.616483 0.000634 }
+          <Binormal> { 0.052545 0.067051 -0.057186 }
+        }
+        <Normal> { -0.818415 0.568163 -0.085818 }
+      }
+      <Vertex> 1180 {
+        0.548950433731 0.75163936615 2.04361271858
+        <UV>  {
+          0.721591 0.600416
+          <Tangent> { 0.743881 -0.667401 0.034897 }
+          <Binormal> { -0.123919 -0.139846 -0.033007 }
+        }
+        <Normal> { -0.757256 0.635029 0.152470 }
+      }
+      <Vertex> 1181 {
+        0.339759081602 0.801260888577 2.13966059685
+        <UV>  {
+          0.773208 0.633525
+          <Tangent> { 0.928093 -0.350323 0.126163 }
+          <Binormal> { -0.118752 -0.327018 -0.034475 }
+        }
+        <Normal> { -0.922849 0.311197 0.226905 }
+      }
+      <Vertex> 1182 {
+        0.528621256351 0.678654849529 2.31012678146
+        <UV>  {
+          0.708377 0.672531
+          <Tangent> { 0.787368 -0.616483 0.000634 }
+          <Binormal> { 0.052545 0.067051 -0.057186 }
+        }
+        <Normal> { -0.818415 0.568163 -0.085818 }
+      }
+      <Vertex> 1183 {
+        0.640790522099 0.599374711514 1.98093593121
+        <UV>  {
+          0.682035 0.584749
+          <Tangent> { 0.078811 -0.996862 -0.007445 }
+          <Binormal> { -0.075155 -0.006188 0.032915 }
+        }
+        <Normal> { -0.045686 0.995514 0.082827 }
+      }
+      <Vertex> 1184 {
+        0.548950433731 0.75163936615 2.04361271858
+        <UV>  {
+          0.721591 0.600416
+          <Tangent> { 0.743881 -0.667401 0.034897 }
+          <Binormal> { -0.123919 -0.139846 -0.033007 }
+        }
+        <Normal> { -0.757256 0.635029 0.152470 }
+      }
+      <Vertex> 1185 {
+        0.528621256351 0.678654849529 2.31012678146
+        <UV>  {
+          0.708377 0.672531
+          <Tangent> { 0.787368 -0.616483 0.000634 }
+          <Binormal> { 0.052545 0.067051 -0.057186 }
+        }
+        <Normal> { -0.818415 0.568163 -0.085818 }
+      }
+      <Vertex> 1186 {
+        0.596066296101 0.566834926605 2.26409959793
+        <UV>  {
+          0.679463 0.660830
+          <Tangent> { -0.140495 -0.983762 -0.111681 }
+          <Binormal> { 0.617878 -0.069290 -0.166939 }
+        }
+        <Normal> { -0.048982 0.845241 -0.532121 }
+      }
+      <Vertex> 1187 {
+        0.640790522099 0.599374711514 1.98093593121
+        <UV>  {
+          0.682035 0.584749
+          <Tangent> { 0.078811 -0.996862 -0.007445 }
+          <Binormal> { -0.075155 -0.006188 0.032915 }
+        }
+        <Normal> { -0.045686 0.995514 0.082827 }
+      }
+      <Vertex> 1188 {
+        0.640790522099 0.599374711514 1.98093593121
+        <UV>  {
+          0.682035 0.584749
+          <Tangent> { 0.078811 -0.996862 -0.007445 }
+          <Binormal> { -0.075155 -0.006188 0.032915 }
+        }
+        <Normal> { -0.045686 0.995514 0.082827 }
+      }
+      <Vertex> 1189 {
+        0.596066296101 0.566834926605 2.26409959793
+        <UV>  {
+          0.679463 0.660830
+          <Tangent> { -0.140495 -0.983762 -0.111681 }
+          <Binormal> { 0.617878 -0.069290 -0.166939 }
+        }
+        <Normal> { -0.048982 0.845241 -0.532121 }
+      }
+      <Vertex> 1190 {
+        0.548950433731 0.378688395023 2.01623558998
+        <UV>  {
+          0.620484 0.598274
+          <Tangent> { -0.330619 -0.939219 -0.092509 }
+          <Binormal> { 0.061849 -0.055993 0.347437 }
+        }
+        <Normal> { 0.640278 0.768029 0.009796 }
+      }
+      <Vertex> 1191 {
+        0.596066296101 0.566834926605 2.26409959793
+        <UV>  {
+          0.679463 0.660830
+          <Tangent> { -0.140495 -0.983762 -0.111681 }
+          <Binormal> { 0.617878 -0.069290 -0.166939 }
+        }
+        <Normal> { -0.048982 0.845241 -0.532121 }
+      }
+      <Vertex> 1192 {
+        0.549030125141 0.381648719311 2.30277752876
+        <UV>  {
+          0.637886 0.681559
+          <Tangent> { -0.715550 -0.698480 0.010651 }
+          <Binormal> { 0.146825 -0.148896 0.099552 }
+        }
+        <Normal> { 0.764031 0.606677 -0.219459 }
+      }
+      <Vertex> 1193 {
+        0.548950433731 0.378688395023 2.01623558998
+        <UV>  {
+          0.620484 0.598274
+          <Tangent> { -0.330619 -0.939219 -0.092509 }
+          <Binormal> { 0.061849 -0.055993 0.347437 }
+        }
+        <Normal> { 0.640278 0.768029 0.009796 }
+      }
+      <Vertex> 1194 {
+        0.339759081602 0.878551721573 1.65056419373
+        <UV>  {
+          0.768544 0.503210
+          <Tangent> { 0.966118 -0.113513 -0.231801 }
+          <Binormal> { 0.028708 0.282869 -0.018869 }
+        }
+        <Normal> { -0.993774 0.097232 -0.054353 }
+      }
+      <Vertex> 1195 {
+        0.339759081602 0.836657643318 1.45827400684
+        <UV>  {
+          0.752036 0.468027
+          <Tangent> { 0.675106 -0.399336 -0.620293 }
+          <Binormal> { 0.385461 0.539138 0.072433 }
+        }
+        <Normal> { -0.808649 0.585620 -0.055605 }
+      }
+      <Vertex> 1196 {
+        0.248577296734 0.84658241272 1.49699413776
+        <UV>  {
+          0.768454 0.469515
+          <Tangent> { 0.883532 -0.045466 -0.466159 }
+          <Binormal> { -0.033848 -0.380366 -0.027055 }
+        }
+        <Normal> { -0.640126 0.002319 0.768242 }
+      }
+      <Vertex> 1197 {
+        0.248577296734 0.889273703098 1.70570719242
+        <UV>  {
+          0.792302 0.507700
+          <Tangent> { 0.954652 -0.115307 -0.274489 }
+          <Binormal> { 0.000091 0.274335 -0.114925 }
+        }
+        <Normal> { -0.999969 0.000397 0.000153 }
+      }
+      <Vertex> 1198 {
+        0.339759081602 0.878551721573 1.65056419373
+        <UV>  {
+          0.768544 0.503210
+          <Tangent> { 0.966118 -0.113513 -0.231801 }
+          <Binormal> { 0.028708 0.282869 -0.018869 }
+        }
+        <Normal> { -0.993774 0.097232 -0.054353 }
+      }
+      <Vertex> 1199 {
+        0.248577296734 0.84658241272 1.49699413776
+        <UV>  {
+          0.768454 0.469515
+          <Tangent> { 0.883532 -0.045466 -0.466159 }
+          <Binormal> { -0.033848 -0.380366 -0.027055 }
+        }
+        <Normal> { -0.640126 0.002319 0.768242 }
+      }
+      <Vertex> 1200 {
+        0.717323958874 0.609579145908 1.61867773533
+        <UV>  {
+          0.689794 0.498532
+          <Tangent> { -0.122745 -0.983249 0.134742 }
+          <Binormal> { -0.599690 0.061106 -0.100388 }
+        }
+        <Normal> { 0.006684 0.871395 0.490493 }
+      }
+      <Vertex> 1201 {
+        0.640790522099 0.61468142271 1.7156201601
+        <UV>  {
+          0.687132 0.521694
+          <Tangent> { 0.002630 -0.997263 0.073890 }
+          <Binormal> { -0.290858 -0.004133 -0.045433 }
+        }
+        <Normal> { -0.048128 0.974425 0.219459 }
+      }
+      <Vertex> 1202 {
+        0.645892739296 0.420796722174 1.4196908474
+        <UV>  {
+          0.674212 0.469817
+          <Tangent> { -0.746715 -0.492328 0.447246 }
+          <Binormal> { -0.433095 0.534844 -0.134332 }
+        }
+        <Normal> { 0.705435 0.645009 0.293741 }
+      }
+      <Vertex> 1203 {
+        0.640790522099 0.61468142271 1.7156201601
+        <UV>  {
+          0.687132 0.521694
+          <Tangent> { 0.002630 -0.997263 0.073890 }
+          <Binormal> { -0.290858 -0.004133 -0.045433 }
+        }
+        <Normal> { -0.048128 0.974425 0.219459 }
+      }
+      <Vertex> 1204 {
+        0.548950433731 0.393995076418 1.67912220955
+        <UV>  {
+          0.643824 0.502496
+          <Tangent> { -0.579945 -0.703762 0.410345 }
+          <Binormal> { -0.394959 0.338694 0.022678 }
+        }
+        <Normal> { 0.650014 0.749687 0.124088 }
+      }
+      <Vertex> 1205 {
+        0.645892739296 0.420796722174 1.4196908474
+        <UV>  {
+          0.674212 0.469817
+          <Tangent> { -0.746715 -0.492328 0.447246 }
+          <Binormal> { -0.433095 0.534844 -0.134332 }
+        }
+        <Normal> { 0.705435 0.645009 0.293741 }
+      }
+      <Vertex> 1206 {
+        0.479692280293 0.309294164181 1.53500580788
+        <UV>  {
+          0.644766 0.467443
+          <Tangent> { -0.696249 -0.458007 0.552690 }
+          <Binormal> { -0.342911 0.533467 0.010096 }
+        }
+        <Normal> { 0.837733 0.536576 0.101199 }
+      }
+      <Vertex> 1207 {
+        0.407968342304 0.245635583997 1.39632916451
+        <UV>  {
+          0.657490 0.444091
+          <Tangent> { -0.475019 -0.177059 0.861979 }
+          <Binormal> { -0.319915 0.811145 -0.009682 }
+        }
+        <Normal> { 0.929960 0.367016 0.020081 }
+      }
+      <Vertex> 1208 {
+        0.645892739296 0.420796722174 1.4196908474
+        <UV>  {
+          0.674212 0.469817
+          <Tangent> { -0.746715 -0.492328 0.447246 }
+          <Binormal> { -0.433095 0.534844 -0.134332 }
+        }
+        <Normal> { 0.705435 0.645009 0.293741 }
+      }
+      <Vertex> 1209 {
+        0.548950433731 0.393995076418 1.67912220955
+        <UV>  {
+          0.643824 0.502496
+          <Tangent> { -0.579945 -0.703762 0.410345 }
+          <Binormal> { -0.394959 0.338694 0.022678 }
+        }
+        <Normal> { 0.650014 0.749687 0.124088 }
+      }
+      <Vertex> 1210 {
+        0.479692280293 0.309294164181 1.53500580788
+        <UV>  {
+          0.644766 0.467443
+          <Tangent> { -0.696249 -0.458007 0.552690 }
+          <Binormal> { -0.342911 0.533467 0.010096 }
+        }
+        <Normal> { 0.837733 0.536576 0.101199 }
+      }
+      <Vertex> 1211 {
+        0.645892739296 0.420796722174 1.4196908474
+        <UV>  {
+          0.674212 0.469817
+          <Tangent> { -0.746715 -0.492328 0.447246 }
+          <Binormal> { -0.433095 0.534844 -0.134332 }
+        }
+        <Normal> { 0.705435 0.645009 0.293741 }
+      }
+      <Vertex> 1212 {
+        0.717323958874 0.609579145908 1.61867773533
+        <UV>  {
+          0.689794 0.498532
+          <Tangent> { -0.122745 -0.983249 0.134742 }
+          <Binormal> { -0.599690 0.061106 -0.100388 }
+        }
+        <Normal> { 0.006684 0.871395 0.490493 }
+      }
+      <Vertex> 1213 {
+        0.645892798901 0.793259382248 1.42989528179
+        <UV>  {
+          0.713451 0.479351
+          <Tangent> { 0.840559 -0.533218 -0.095603 }
+          <Binormal> { -0.022196 -0.029169 -0.032466 }
+        }
+        <Normal> { -0.854060 0.503159 0.131840 }
+      }
+      <Vertex> 1214 {
+        0.640790522099 0.61468142271 1.7156201601
+        <UV>  {
+          0.687132 0.521694
+          <Tangent> { 0.002630 -0.997263 0.073890 }
+          <Binormal> { -0.290858 -0.004133 -0.045433 }
+        }
+        <Normal> { -0.048128 0.974425 0.219459 }
+      }
+      <Vertex> 1215 {
+        0.548950433731 0.850881814957 1.65348780155
+        <UV>  {
+          0.731173 0.510822
+          <Tangent> { 0.852607 -0.494875 -0.167810 }
+          <Binormal> { 0.084862 0.144490 0.005065 }
+        }
+        <Normal> { -0.862270 0.506424 0.000244 }
+      }
+      <Vertex> 1216 {
+        0.640790522099 0.61468142271 1.7156201601
+        <UV>  {
+          0.687132 0.521694
+          <Tangent> { 0.002630 -0.997263 0.073890 }
+          <Binormal> { -0.290858 -0.004133 -0.045433 }
+        }
+        <Normal> { -0.048128 0.974425 0.219459 }
+      }
+      <Vertex> 1217 {
+        0.645892798901 0.793259382248 1.42989528179
+        <UV>  {
+          0.713451 0.479351
+          <Tangent> { 0.840559 -0.533218 -0.095603 }
+          <Binormal> { -0.022196 -0.029169 -0.032466 }
+        }
+        <Normal> { -0.854060 0.503159 0.131840 }
+      }
+      <Vertex> 1218 {
+        0.548950433731 0.850881814957 1.65348780155
+        <UV>  {
+          0.731173 0.510822
+          <Tangent> { 0.852607 -0.494875 -0.167810 }
+          <Binormal> { 0.084862 0.144490 0.005065 }
+        }
+        <Normal> { -0.862270 0.506424 0.000244 }
+      }
+      <Vertex> 1219 {
+        0.339759081602 0.836657643318 1.45827400684
+        <UV>  {
+          0.752036 0.468027
+          <Tangent> { 0.675106 -0.399336 -0.620293 }
+          <Binormal> { 0.385461 0.539138 0.072433 }
+        }
+        <Normal> { -0.808649 0.585620 -0.055605 }
+      }
+      <Vertex> 1220 {
+        0.339759081602 0.878551721573 1.65056419373
+        <UV>  {
+          0.768544 0.503210
+          <Tangent> { 0.966118 -0.113513 -0.231801 }
+          <Binormal> { 0.028708 0.282869 -0.018869 }
+        }
+        <Normal> { -0.993774 0.097232 -0.054353 }
+      }
+      <Vertex> 1221 {
+        0.645892798901 0.793259382248 1.42989528179
+        <UV>  {
+          0.713451 0.479351
+          <Tangent> { 0.840559 -0.533218 -0.095603 }
+          <Binormal> { -0.022196 -0.029169 -0.032466 }
+        }
+        <Normal> { -0.854060 0.503159 0.131840 }
+      }
+      <Vertex> 1222 {
+        0.339759081602 0.836657643318 1.45827400684
+        <UV>  {
+          0.752036 0.468027
+          <Tangent> { 0.675106 -0.399336 -0.620293 }
+          <Binormal> { 0.385461 0.539138 0.072433 }
+        }
+        <Normal> { -0.808649 0.585620 -0.055605 }
+      }
+      <Vertex> 1223 {
+        0.548950433731 0.850881814957 1.65348780155
+        <UV>  {
+          0.731173 0.510822
+          <Tangent> { 0.852607 -0.494875 -0.167810 }
+          <Binormal> { 0.084862 0.144490 0.005065 }
+        }
+        <Normal> { -0.862270 0.506424 0.000244 }
+      }
+      <Vertex> 1224 {
+        0.339759081602 0.836657643318 1.45827400684
+        <UV>  {
+          0.752036 0.468027
+          <Tangent> { 0.675106 -0.399336 -0.620293 }
+          <Binormal> { 0.385461 0.539138 0.072433 }
+        }
+        <Normal> { -0.808649 0.585620 -0.055605 }
+      }
+      <Vertex> 1225 {
+        0.645892798901 0.793259382248 1.42989528179
+        <UV>  {
+          0.713451 0.479351
+          <Tangent> { 0.840559 -0.533218 -0.095603 }
+          <Binormal> { -0.022196 -0.029169 -0.032466 }
+        }
+        <Normal> { -0.854060 0.503159 0.131840 }
+      }
+      <Vertex> 1226 {
+        0.482621461153 0.772850513458 1.16457939148
+        <UV>  {
+          0.715700 0.450173
+          <Tangent> { 0.699372 -0.170876 -0.694032 }
+          <Binormal> { -0.177472 0.873673 -0.393942 }
+        }
+        <Normal> { -0.830012 -0.360485 -0.425550 }
+      }
+      <Vertex> 1227 {
+        0.482621461153 0.772850513458 1.16457939148
+        <UV>  {
+          0.715700 0.450173
+          <Tangent> { 0.699372 -0.170876 -0.694032 }
+          <Binormal> { -0.177472 0.873673 -0.393942 }
+        }
+        <Normal> { -0.830012 -0.360485 -0.425550 }
+      }
+      <Vertex> 1228 {
+        0.339759081602 0.695588648319 1.23194229603
+        <UV>  {
+          0.723763 0.437401
+          <Tangent> { 0.449758 -0.665411 -0.595773 }
+          <Binormal> { 0.383203 0.613642 -0.396083 }
+        }
+        <Normal> { -0.374859 -0.326060 -0.867824 }
+      }
+      <Vertex> 1229 {
+        0.339759081602 0.836657643318 1.45827400684
+        <UV>  {
+          0.752036 0.468027
+          <Tangent> { 0.675106 -0.399336 -0.620293 }
+          <Binormal> { 0.385461 0.539138 0.072433 }
+        }
+        <Normal> { -0.808649 0.585620 -0.055605 }
+      }
+      <Vertex> 1230 {
+        0.482621461153 0.257525414228 1.20029509068
+        <UV>  {
+          0.678922 0.443776
+          <Tangent> { -0.301299 -0.458568 0.836023 }
+          <Binormal> { 0.323136 0.690488 0.495197 }
+        }
+        <Normal> { 0.929868 -0.228309 -0.288430 }
+      }
+      <Vertex> 1231 {
+        0.645892739296 0.420796722174 1.4196908474
+        <UV>  {
+          0.674212 0.469817
+          <Tangent> { -0.746715 -0.492328 0.447246 }
+          <Binormal> { -0.433095 0.534844 -0.134332 }
+        }
+        <Normal> { 0.705435 0.645009 0.293741 }
+      }
+      <Vertex> 1232 {
+        0.407968342304 0.245635583997 1.39632916451
+        <UV>  {
+          0.657490 0.444091
+          <Tangent> { -0.475019 -0.177059 0.861979 }
+          <Binormal> { -0.319915 0.811145 -0.009682 }
+        }
+        <Normal> { 0.929960 0.367016 0.020081 }
+      }
+      <Vertex> 1233 {
+        0.407968342304 0.245635583997 1.39632916451
+        <UV>  {
+          0.657490 0.444091
+          <Tangent> { -0.475019 -0.177059 0.861979 }
+          <Binormal> { -0.319915 0.811145 -0.009682 }
+        }
+        <Normal> { 0.929960 0.367016 0.020081 }
+      }
+      <Vertex> 1234 {
+        0.347412407398 0.263333946466 1.28946197033
+        <UV>  {
+          0.672783 0.430958
+          <Tangent> { -0.128174 -0.703044 0.699500 }
+          <Binormal> { 0.272336 0.539637 0.592273 }
+        }
+        <Normal> { 0.862148 0.108097 -0.494919 }
+      }
+      <Vertex> 1235 {
+        0.482621461153 0.257525414228 1.20029509068
+        <UV>  {
+          0.678922 0.443776
+          <Tangent> { -0.301299 -0.458568 0.836023 }
+          <Binormal> { 0.323136 0.690488 0.495197 }
+        }
+        <Normal> { 0.929868 -0.228309 -0.288430 }
+      }
+      <Vertex> 1236 {
+        0.347412407398 0.263333946466 1.28946197033
+        <UV>  {
+          0.672783 0.430958
+          <Tangent> { -0.128174 -0.703044 0.699500 }
+          <Binormal> { 0.272336 0.539637 0.592273 }
+        }
+        <Normal> { 0.862148 0.108097 -0.494919 }
+      }
+      <Vertex> 1237 {
+        0.446905851364 0.589170277119 1.07784152031
+        <UV>  {
+          0.705758 0.442163
+          <Tangent> { 0.267307 -0.802093 -0.534035 }
+          <Binormal> { 0.261385 0.235521 -0.222907 }
+        }
+        <Normal> { -0.061556 -0.649190 -0.758110 }
+      }
+      <Vertex> 1238 {
+        0.482621461153 0.257525414228 1.20029509068
+        <UV>  {
+          0.678922 0.443776
+          <Tangent> { -0.301299 -0.458568 0.836023 }
+          <Binormal> { 0.323136 0.690488 0.495197 }
+        }
+        <Normal> { 0.929868 -0.228309 -0.288430 }
+      }
+      <Vertex> 1239 {
+        0.446905851364 0.589170277119 1.07784152031
+        <UV>  {
+          0.705758 0.442163
+          <Tangent> { 0.267307 -0.802093 -0.534035 }
+          <Binormal> { 0.261385 0.235521 -0.222907 }
+        }
+        <Normal> { -0.061556 -0.649190 -0.758110 }
+      }
+      <Vertex> 1240 {
+        0.347412407398 0.263333946466 1.28946197033
+        <UV>  {
+          0.672783 0.430958
+          <Tangent> { -0.128174 -0.703044 0.699500 }
+          <Binormal> { 0.272336 0.539637 0.592273 }
+        }
+        <Normal> { 0.862148 0.108097 -0.494919 }
+      }
+      <Vertex> 1241 {
+        0.309567451477 0.30606546998 1.22715938091
+        <UV>  {
+          0.684367 0.424024
+          <Tangent> { 0.146313 -0.986322 0.075907 }
+          <Binormal> { 0.826363 0.163997 0.538106 }
+        }
+        <Normal> { 0.539506 0.040864 -0.840968 }
+      }
+      <Vertex> 1242 {
+        0.309567451477 0.30606546998 1.22715938091
+        <UV>  {
+          0.684367 0.424024
+          <Tangent> { 0.146313 -0.986322 0.075907 }
+          <Binormal> { 0.826363 0.163997 0.538106 }
+        }
+        <Normal> { 0.539506 0.040864 -0.840968 }
+      }
+      <Vertex> 1243 {
+        0.339759081602 0.695588648319 1.23194229603
+        <UV>  {
+          0.723763 0.437401
+          <Tangent> { 0.449758 -0.665411 -0.595773 }
+          <Binormal> { 0.383203 0.613642 -0.396083 }
+        }
+        <Normal> { -0.374859 -0.326060 -0.867824 }
+      }
+      <Vertex> 1244 {
+        0.446905851364 0.589170277119 1.07784152031
+        <UV>  {
+          0.705758 0.442163
+          <Tangent> { 0.267307 -0.802093 -0.534035 }
+          <Binormal> { 0.261385 0.235521 -0.222907 }
+        }
+        <Normal> { -0.061556 -0.649190 -0.758110 }
+      }
+      <Vertex> 1245 {
+        0.482621461153 0.772850513458 1.16457939148
+        <UV>  {
+          0.715700 0.450173
+          <Tangent> { 0.699372 -0.170876 -0.694032 }
+          <Binormal> { -0.177472 0.873673 -0.393942 }
+        }
+        <Normal> { -0.830012 -0.360485 -0.425550 }
+      }
+      <Vertex> 1246 {
+        0.446905851364 0.589170277119 1.07784152031
+        <UV>  {
+          0.705758 0.442163
+          <Tangent> { 0.267307 -0.802093 -0.534035 }
+          <Binormal> { 0.261385 0.235521 -0.222907 }
+        }
+        <Normal> { -0.061556 -0.649190 -0.758110 }
+      }
+      <Vertex> 1247 {
+        0.339759081602 0.695588648319 1.23194229603
+        <UV>  {
+          0.723763 0.437401
+          <Tangent> { 0.449758 -0.665411 -0.595773 }
+          <Binormal> { 0.383203 0.613642 -0.396083 }
+        }
+        <Normal> { -0.374859 -0.326060 -0.867824 }
+      }
+      <Vertex> 1248 {
+        0.726092159748 0.652679979801 2.38234615326
+        <UV>  {
+          0.683096 0.686752
+          <Tangent> { 0.751202 -0.308176 -0.583715 }
+          <Binormal> { 0.098717 0.565131 -0.171323 }
+        }
+        <Normal> { -0.984344 0.175756 0.012574 }
+      }
+      <Vertex> 1249 {
+        0.669645786285 0.550527513027 2.29687929153
+        <UV>  {
+          0.676666 0.675592
+          <Tangent> { -0.146777 -0.982610 0.113733 }
+          <Binormal> { 0.861023 -0.173720 -0.389694 }
+        }
+        <Normal> { -0.443281 -0.312571 -0.840083 }
+      }
+      <Vertex> 1250 {
+        0.528621256351 0.678654849529 2.31012678146
+        <UV>  {
+          0.708377 0.672531
+          <Tangent> { 0.787368 -0.616483 0.000634 }
+          <Binormal> { 0.052545 0.067051 -0.057186 }
+        }
+        <Normal> { -0.818415 0.568163 -0.085818 }
+      }
+      <Vertex> 1251 {
+        0.528621256351 0.678654849529 2.31012678146
+        <UV>  {
+          0.708377 0.672531
+          <Tangent> { 0.787368 -0.616483 0.000634 }
+          <Binormal> { 0.052545 0.067051 -0.057186 }
+        }
+        <Normal> { -0.818415 0.568163 -0.085818 }
+      }
+      <Vertex> 1252 {
+        0.360088258982 0.697590112686 2.39519691467
+        <UV>  {
+          0.741538 0.704627
+          <Tangent> { 0.928778 -0.329715 0.169293 }
+          <Binormal> { -0.133975 -0.377058 0.000660 }
+        }
+        <Normal> { -0.914762 0.325449 0.239235 }
+      }
+      <Vertex> 1253 {
+        0.726092159748 0.652679979801 2.38234615326
+        <UV>  {
+          0.683096 0.686752
+          <Tangent> { 0.751202 -0.308176 -0.583715 }
+          <Binormal> { 0.098717 0.565131 -0.171323 }
+        }
+        <Normal> { -0.984344 0.175756 0.012574 }
+      }
+      <Vertex> 1254 {
+        0.726092159748 0.652679979801 2.38234615326
+        <UV>  {
+          0.683096 0.686752
+          <Tangent> { 0.751202 -0.308176 -0.583715 }
+          <Binormal> { 0.098717 0.565131 -0.171323 }
+        }
+        <Normal> { -0.984344 0.175756 0.012574 }
+      }
+      <Vertex> 1255 {
+        0.360088258982 0.697590112686 2.39519691467
+        <UV>  {
+          0.741538 0.704627
+          <Tangent> { 0.928778 -0.329715 0.169293 }
+          <Binormal> { -0.133975 -0.377058 0.000660 }
+        }
+        <Normal> { -0.914762 0.325449 0.239235 }
+      }
+      <Vertex> 1256 {
+        0.360088258982 0.664598822594 2.52841901779
+        <UV>  {
+          0.727493 0.736575
+          <Tangent> { 0.753095 -0.620199 0.219549 }
+          <Binormal> { -0.402828 -0.534466 -0.128025 }
+        }
+        <Normal> { -0.747917 0.445936 0.491653 }
+      }
+      <Vertex> 1257 {
+        0.360088258982 0.664598822594 2.52841901779
+        <UV>  {
+          0.727493 0.736575
+          <Tangent> { 0.753095 -0.620199 0.219549 }
+          <Binormal> { -0.402828 -0.534466 -0.128025 }
+        }
+        <Normal> { -0.747917 0.445936 0.491653 }
+      }
+      <Vertex> 1258 {
+        0.787482619286 0.530036866665 2.46757006645
+        <UV>  {
+          0.676304 0.693285
+          <Tangent> { -0.041209 -0.947734 -0.316391 }
+          <Binormal> { -0.538205 0.049926 -0.079452 }
+        }
+        <Normal> { -0.056581 0.626759 0.777123 }
+      }
+      <Vertex> 1259 {
+        0.726092159748 0.652679979801 2.38234615326
+        <UV>  {
+          0.683096 0.686752
+          <Tangent> { 0.751202 -0.308176 -0.583715 }
+          <Binormal> { 0.098717 0.565131 -0.171323 }
+        }
+        <Normal> { -0.984344 0.175756 0.012574 }
+      }
+      <Vertex> 1260 {
+        0.360088258982 0.664598822594 2.52841901779
+        <UV>  {
+          0.727493 0.736575
+          <Tangent> { 0.753095 -0.620199 0.219549 }
+          <Binormal> { -0.402828 -0.534466 -0.128025 }
+        }
+        <Normal> { -0.747917 0.445936 0.491653 }
+      }
+      <Vertex> 1261 {
+        0.405051648617 0.540606319904 2.59080171585
+        <UV>  {
+          0.697556 0.754412
+          <Tangent> { 0.101917 -0.961716 -0.254393 }
+          <Binormal> { -0.558744 -0.109433 0.189855 }
+        }
+        <Normal> { 0.128910 0.646413 0.751976 }
+      }
+      <Vertex> 1262 {
+        0.787482619286 0.530036866665 2.46757006645
+        <UV>  {
+          0.676304 0.693285
+          <Tangent> { -0.041209 -0.947734 -0.316391 }
+          <Binormal> { -0.538205 0.049926 -0.079452 }
+        }
+        <Normal> { -0.056581 0.626759 0.777123 }
+      }
+      <Vertex> 1263 {
+        0.405051648617 0.540606319904 2.59080171585
+        <UV>  {
+          0.697556 0.754412
+          <Tangent> { 0.101917 -0.961716 -0.254393 }
+          <Binormal> { -0.558744 -0.109433 0.189855 }
+        }
+        <Normal> { 0.128910 0.646413 0.751976 }
+      }
+      <Vertex> 1264 {
+        0.42641723156 0.351054638624 2.50102829933
+        <UV>  {
+          0.656048 0.745442
+          <Tangent> { -0.309632 -0.874562 -0.373188 }
+          <Binormal> { -0.446728 -0.042593 0.470464 }
+        }
+        <Normal> { 0.662587 0.352062 0.661031 }
+      }
+      <Vertex> 1265 {
+        0.787482619286 0.530036866665 2.46757006645
+        <UV>  {
+          0.676304 0.693285
+          <Tangent> { -0.041209 -0.947734 -0.316391 }
+          <Binormal> { -0.538205 0.049926 -0.079452 }
+        }
+        <Normal> { -0.056581 0.626759 0.777123 }
+      }
+      <Vertex> 1266 {
+        0.756723284721 0.395900607109 2.42775940895
+        <UV>  {
+          0.668813 0.694679
+          <Tangent> { -0.897103 -0.396764 -0.194380 }
+          <Binormal> { -0.050466 0.108868 0.010691 }
+        }
+        <Normal> { 0.873623 0.374462 0.310648 }
+      }
+      <Vertex> 1267 {
+        0.787482619286 0.530036866665 2.46757006645
+        <UV>  {
+          0.676304 0.693285
+          <Tangent> { -0.041209 -0.947734 -0.316391 }
+          <Binormal> { -0.538205 0.049926 -0.079452 }
+        }
+        <Normal> { -0.056581 0.626759 0.777123 }
+      }
+      <Vertex> 1268 {
+        0.42641723156 0.351054638624 2.50102829933
+        <UV>  {
+          0.656048 0.745442
+          <Tangent> { -0.309632 -0.874562 -0.373188 }
+          <Binormal> { -0.446728 -0.042593 0.470464 }
+        }
+        <Normal> { 0.662587 0.352062 0.661031 }
+      }
+      <Vertex> 1269 {
+        0.42641723156 0.351054638624 2.50102829933
+        <UV>  {
+          0.656048 0.745442
+          <Tangent> { -0.309632 -0.874562 -0.373188 }
+          <Binormal> { -0.446728 -0.042593 0.470464 }
+        }
+        <Normal> { 0.662587 0.352062 0.661031 }
+      }
+      <Vertex> 1270 {
+        0.500399529934 0.359876424074 2.42860293388
+        <UV>  {
+          0.646029 0.717516
+          <Tangent> { -0.914615 0.028428 -0.403326 }
+          <Binormal> { 0.122931 -0.376203 -0.305284 }
+        }
+        <Normal> { 0.952544 0.304178 0.008728 }
+      }
+      <Vertex> 1271 {
+        0.756723284721 0.395900607109 2.42775940895
+        <UV>  {
+          0.668813 0.694679
+          <Tangent> { -0.897103 -0.396764 -0.194380 }
+          <Binormal> { -0.050466 0.108868 0.010691 }
+        }
+        <Normal> { 0.873623 0.374462 0.310648 }
+      }
+      <Vertex> 1272 {
+        0.500399529934 0.359876424074 2.42860293388
+        <UV>  {
+          0.646029 0.717516
+          <Tangent> { -0.914615 0.028428 -0.403326 }
+          <Binormal> { 0.122931 -0.376203 -0.305284 }
+        }
+        <Normal> { 0.952544 0.304178 0.008728 }
+      }
+      <Vertex> 1273 {
+        0.698335409164 0.37090408802 2.34119486809
+        <UV>  {
+          0.665828 0.691229
+          <Tangent> { -0.816676 0.438628 0.375029 }
+          <Binormal> { -0.005323 0.091106 -0.118147 }
+        }
+        <Normal> { 0.893490 -0.335215 -0.298746 }
+      }
+      <Vertex> 1274 {
+        0.756723284721 0.395900607109 2.42775940895
+        <UV>  {
+          0.668813 0.694679
+          <Tangent> { -0.897103 -0.396764 -0.194380 }
+          <Binormal> { -0.050466 0.108868 0.010691 }
+        }
+        <Normal> { 0.873623 0.374462 0.310648 }
+      }
+      <Vertex> 1275 {
+        0.664644896984 0.453684657812 2.29102468491
+        <UV>  {
+          0.664924 0.681467
+          <Tangent> { -0.656907 -0.163293 0.736076 }
+          <Binormal> { 0.319345 -0.165296 0.248328 }
+        }
+        <Normal> { 0.509720 -0.251320 -0.822779 }
+      }
+      <Vertex> 1276 {
+        0.698335409164 0.37090408802 2.34119486809
+        <UV>  {
+          0.665828 0.691229
+          <Tangent> { -0.816676 0.438628 0.375029 }
+          <Binormal> { -0.005323 0.091106 -0.118147 }
+        }
+        <Normal> { 0.893490 -0.335215 -0.298746 }
+      }
+      <Vertex> 1277 {
+        0.500399529934 0.359876424074 2.42860293388
+        <UV>  {
+          0.646029 0.717516
+          <Tangent> { -0.914615 0.028428 -0.403326 }
+          <Binormal> { 0.122931 -0.376203 -0.305284 }
+        }
+        <Normal> { 0.952544 0.304178 0.008728 }
+      }
+      <Vertex> 1278 {
+        0.664644896984 0.453684657812 2.29102468491
+        <UV>  {
+          0.664924 0.681467
+          <Tangent> { -0.656907 -0.163293 0.736076 }
+          <Binormal> { 0.319345 -0.165296 0.248328 }
+        }
+        <Normal> { 0.509720 -0.251320 -0.822779 }
+      }
+      <Vertex> 1279 {
+        0.500399529934 0.359876424074 2.42860293388
+        <UV>  {
+          0.646029 0.717516
+          <Tangent> { -0.914615 0.028428 -0.403326 }
+          <Binormal> { 0.122931 -0.376203 -0.305284 }
+        }
+        <Normal> { 0.952544 0.304178 0.008728 }
+      }
+      <Vertex> 1280 {
+        0.549030125141 0.381648719311 2.30277752876
+        <UV>  {
+          0.637886 0.681559
+          <Tangent> { -0.715550 -0.698480 0.010651 }
+          <Binormal> { 0.146825 -0.148896 0.099552 }
+        }
+        <Normal> { 0.764031 0.606677 -0.219459 }
+      }
+      <Vertex> 1281 {
+        0.549030125141 0.381648719311 2.30277752876
+        <UV>  {
+          0.637886 0.681559
+          <Tangent> { -0.715550 -0.698480 0.010651 }
+          <Binormal> { 0.146825 -0.148896 0.099552 }
+        }
+        <Normal> { 0.764031 0.606677 -0.219459 }
+      }
+      <Vertex> 1282 {
+        0.596066296101 0.566834926605 2.26409959793
+        <UV>  {
+          0.679463 0.660830
+          <Tangent> { -0.140495 -0.983762 -0.111681 }
+          <Binormal> { 0.617878 -0.069290 -0.166939 }
+        }
+        <Normal> { -0.048982 0.845241 -0.532121 }
+      }
+      <Vertex> 1283 {
+        0.664644896984 0.453684657812 2.29102468491
+        <UV>  {
+          0.664924 0.681467
+          <Tangent> { -0.656907 -0.163293 0.736076 }
+          <Binormal> { 0.319345 -0.165296 0.248328 }
+        }
+        <Normal> { 0.509720 -0.251320 -0.822779 }
+      }
+      <Vertex> 1284 {
+        0.669645786285 0.550527513027 2.29687929153
+        <UV>  {
+          0.676666 0.675592
+          <Tangent> { -0.146777 -0.982610 0.113733 }
+          <Binormal> { 0.861023 -0.173720 -0.389694 }
+        }
+        <Normal> { -0.443281 -0.312571 -0.840083 }
+      }
+      <Vertex> 1285 {
+        0.596066296101 0.566834926605 2.26409959793
+        <UV>  {
+          0.679463 0.660830
+          <Tangent> { -0.140495 -0.983762 -0.111681 }
+          <Binormal> { 0.617878 -0.069290 -0.166939 }
+        }
+        <Normal> { -0.048982 0.845241 -0.532121 }
+      }
+      <Vertex> 1286 {
+        0.528621256351 0.678654849529 2.31012678146
+        <UV>  {
+          0.708377 0.672531
+          <Tangent> { 0.787368 -0.616483 0.000634 }
+          <Binormal> { 0.052545 0.067051 -0.057186 }
+        }
+        <Normal> { -0.818415 0.568163 -0.085818 }
+      }
+      <Vertex> 1287 {
+        0.664644896984 0.453684657812 2.29102468491
+        <UV>  {
+          0.664924 0.681467
+          <Tangent> { -0.656907 -0.163293 0.736076 }
+          <Binormal> { 0.319345 -0.165296 0.248328 }
+        }
+        <Normal> { 0.509720 -0.251320 -0.822779 }
+      }
+      <Vertex> 1288 {
+        0.596066296101 0.566834926605 2.26409959793
+        <UV>  {
+          0.679463 0.660830
+          <Tangent> { -0.140495 -0.983762 -0.111681 }
+          <Binormal> { 0.617878 -0.069290 -0.166939 }
+        }
+        <Normal> { -0.048982 0.845241 -0.532121 }
+      }
+      <Vertex> 1289 {
+        0.669645786285 0.550527513027 2.29687929153
+        <UV>  {
+          0.676666 0.675592
+          <Tangent> { -0.146777 -0.982610 0.113733 }
+          <Binormal> { 0.861023 -0.173720 -0.389694 }
+        }
+        <Normal> { -0.443281 -0.312571 -0.840083 }
+      }
+      <Vertex> 1290 {
+        0.845028042793 0.628871798515 2.10857534409
+        <UV>  {
+          0.673607 0.684141
+          <Tangent> { 0.222694 0.131887 -0.965926 }
+          <Binormal> { 0.075355 0.981800 0.151428 }
+        }
+        <Normal> { -0.987487 0.095157 -0.125553 }
+      }
+      <Vertex> 1291 {
+        0.726092159748 0.652679979801 2.38234615326
+        <UV>  {
+          0.683096 0.686752
+          <Tangent> { 0.751202 -0.308176 -0.583715 }
+          <Binormal> { 0.098717 0.565131 -0.171323 }
+        }
+        <Normal> { -0.984344 0.175756 0.012574 }
+      }
+      <Vertex> 1292 {
+        0.937992095947 0.524433851242 2.13766932487
+        <UV>  {
+          0.672718 0.685073
+          <Tangent> { -0.438228 -0.873289 -0.212890 }
+          <Binormal> { -0.156837 0.200224 -0.498489 }
+        }
+        <Normal> { -0.114780 0.908780 0.401135 }
+      }
+      <Vertex> 1293 {
+        0.787482619286 0.530036866665 2.46757006645
+        <UV>  {
+          0.676304 0.693285
+          <Tangent> { -0.041209 -0.947734 -0.316391 }
+          <Binormal> { -0.538205 0.049926 -0.079452 }
+        }
+        <Normal> { -0.056581 0.626759 0.777123 }
+      }
+      <Vertex> 1294 {
+        0.937992095947 0.524433851242 2.13766932487
+        <UV>  {
+          0.672718 0.685073
+          <Tangent> { -0.438228 -0.873289 -0.212890 }
+          <Binormal> { -0.156837 0.200224 -0.498489 }
+        }
+        <Normal> { -0.114780 0.908780 0.401135 }
+      }
+      <Vertex> 1295 {
+        0.726092159748 0.652679979801 2.38234615326
+        <UV>  {
+          0.683096 0.686752
+          <Tangent> { 0.751202 -0.308176 -0.583715 }
+          <Binormal> { 0.098717 0.565131 -0.171323 }
+        }
+        <Normal> { -0.984344 0.175756 0.012574 }
+      }
+      <Vertex> 1296 {
+        0.787482619286 0.530036866665 2.46757006645
+        <UV>  {
+          0.676304 0.693285
+          <Tangent> { -0.041209 -0.947734 -0.316391 }
+          <Binormal> { -0.538205 0.049926 -0.079452 }
+        }
+        <Normal> { -0.056581 0.626759 0.777123 }
+      }
+      <Vertex> 1297 {
+        0.889133214951 0.410208582878 2.12376260757
+        <UV>  {
+          0.671542 0.685376
+          <Tangent> { -0.777995 -0.627153 -0.037454 }
+          <Binormal> { -0.156864 0.199924 -0.089266 }
+        }
+        <Normal> { 0.685751 0.667531 0.289987 }
+      }
+      <Vertex> 1298 {
+        0.937992095947 0.524433851242 2.13766932487
+        <UV>  {
+          0.672718 0.685073
+          <Tangent> { -0.438228 -0.873289 -0.212890 }
+          <Binormal> { -0.156837 0.200224 -0.498489 }
+        }
+        <Normal> { -0.114780 0.908780 0.401135 }
+      }
+      <Vertex> 1299 {
+        0.787482619286 0.530036866665 2.46757006645
+        <UV>  {
+          0.676304 0.693285
+          <Tangent> { -0.041209 -0.947734 -0.316391 }
+          <Binormal> { -0.538205 0.049926 -0.079452 }
+        }
+        <Normal> { -0.056581 0.626759 0.777123 }
+      }
+      <Vertex> 1300 {
+        0.756723284721 0.395900607109 2.42775940895
+        <UV>  {
+          0.668813 0.694679
+          <Tangent> { -0.897103 -0.396764 -0.194380 }
+          <Binormal> { -0.050466 0.108868 0.010691 }
+        }
+        <Normal> { 0.873623 0.374462 0.310648 }
+      }
+      <Vertex> 1301 {
+        0.889133214951 0.410208582878 2.12376260757
+        <UV>  {
+          0.671542 0.685376
+          <Tangent> { -0.777995 -0.627153 -0.037454 }
+          <Binormal> { -0.156864 0.199924 -0.089266 }
+        }
+        <Normal> { 0.685751 0.667531 0.289987 }
+      }
+      <Vertex> 1302 {
+        0.845028042793 0.628871798515 2.10857534409
+        <UV>  {
+          0.673607 0.684141
+          <Tangent> { 0.222694 0.131887 -0.965926 }
+          <Binormal> { 0.075355 0.981800 0.151428 }
+        }
+        <Normal> { -0.987487 0.095157 -0.125553 }
+      }
+      <Vertex> 1303 {
+        0.762838721275 0.541882753372 2.07937812805
+        <UV>  {
+          0.672573 0.682667
+          <Tangent> { -0.079838 -0.940512 -0.330246 }
+          <Binormal> { 0.203515 0.114194 -0.374415 }
+        }
+        <Normal> { -0.461501 -0.746910 -0.478652 }
+      }
+      <Vertex> 1304 {
+        0.726092159748 0.652679979801 2.38234615326
+        <UV>  {
+          0.683096 0.686752
+          <Tangent> { 0.751202 -0.308176 -0.583715 }
+          <Binormal> { 0.098717 0.565131 -0.171323 }
+        }
+        <Normal> { -0.984344 0.175756 0.012574 }
+      }
+      <Vertex> 1305 {
+        0.762838721275 0.541882753372 2.07937812805
+        <UV>  {
+          0.672573 0.682667
+          <Tangent> { -0.079838 -0.940512 -0.330246 }
+          <Binormal> { 0.203515 0.114194 -0.374415 }
+        }
+        <Normal> { -0.461501 -0.746910 -0.478652 }
+      }
+      <Vertex> 1306 {
+        0.669645786285 0.550527513027 2.29687929153
+        <UV>  {
+          0.676666 0.675592
+          <Tangent> { -0.146777 -0.982610 0.113733 }
+          <Binormal> { 0.861023 -0.173720 -0.389694 }
+        }
+        <Normal> { -0.443281 -0.312571 -0.840083 }
+      }
+      <Vertex> 1307 {
+        0.726092159748 0.652679979801 2.38234615326
+        <UV>  {
+          0.683096 0.686752
+          <Tangent> { 0.751202 -0.308176 -0.583715 }
+          <Binormal> { 0.098717 0.565131 -0.171323 }
+        }
+        <Normal> { -0.984344 0.175756 0.012574 }
+      }
+      <Vertex> 1308 {
+        0.762838721275 0.541882753372 2.07937812805
+        <UV>  {
+          0.672573 0.682667
+          <Tangent> { -0.079838 -0.940512 -0.330246 }
+          <Binormal> { 0.203515 0.114194 -0.374415 }
+        }
+        <Normal> { -0.461501 -0.746910 -0.478652 }
+      }
+      <Vertex> 1309 {
+        0.756437242031 0.45941516757 2.07795929909
+        <UV>  {
+          0.671326 0.683515
+          <Tangent> { -0.607352 -0.306631 0.732872 }
+          <Binormal> { 0.761039 -0.109049 0.585070 }
+        }
+        <Normal> { 0.256172 -0.833979 -0.488662 }
+      }
+      <Vertex> 1310 {
+        0.669645786285 0.550527513027 2.29687929153
+        <UV>  {
+          0.676666 0.675592
+          <Tangent> { -0.146777 -0.982610 0.113733 }
+          <Binormal> { 0.861023 -0.173720 -0.389694 }
+        }
+        <Normal> { -0.443281 -0.312571 -0.840083 }
+      }
+      <Vertex> 1311 {
+        0.664644896984 0.453684657812 2.29102468491
+        <UV>  {
+          0.664924 0.681467
+          <Tangent> { -0.656907 -0.163293 0.736076 }
+          <Binormal> { 0.319345 -0.165296 0.248328 }
+        }
+        <Normal> { 0.509720 -0.251320 -0.822779 }
+      }
+      <Vertex> 1312 {
+        0.669645786285 0.550527513027 2.29687929153
+        <UV>  {
+          0.676666 0.675592
+          <Tangent> { -0.146777 -0.982610 0.113733 }
+          <Binormal> { 0.861023 -0.173720 -0.389694 }
+        }
+        <Normal> { -0.443281 -0.312571 -0.840083 }
+      }
+      <Vertex> 1313 {
+        0.756437242031 0.45941516757 2.07795929909
+        <UV>  {
+          0.671326 0.683515
+          <Tangent> { -0.607352 -0.306631 0.732872 }
+          <Binormal> { 0.761039 -0.109049 0.585070 }
+        }
+        <Normal> { 0.256172 -0.833979 -0.488662 }
+      }
+      <Vertex> 1314 {
+        0.889133214951 0.410208582878 2.12376260757
+        <UV>  {
+          0.671542 0.685376
+          <Tangent> { -0.777995 -0.627153 -0.037454 }
+          <Binormal> { -0.156864 0.199924 -0.089266 }
+        }
+        <Normal> { 0.685751 0.667531 0.289987 }
+      }
+      <Vertex> 1315 {
+        0.756723284721 0.395900607109 2.42775940895
+        <UV>  {
+          0.668813 0.694679
+          <Tangent> { -0.897103 -0.396764 -0.194380 }
+          <Binormal> { -0.050466 0.108868 0.010691 }
+        }
+        <Normal> { 0.873623 0.374462 0.310648 }
+      }
+      <Vertex> 1316 {
+        0.805061340332 0.388922423124 2.09481358528
+        <UV>  {
+          0.671059 0.684794
+          <Tangent> { -0.832047 0.018139 0.554409 }
+          <Binormal> { 0.125615 0.288862 0.179069 }
+        }
+        <Normal> { 0.932371 -0.235542 -0.274087 }
+      }
+      <Vertex> 1317 {
+        0.805061340332 0.388922423124 2.09481358528
+        <UV>  {
+          0.671059 0.684794
+          <Tangent> { -0.832047 0.018139 0.554409 }
+          <Binormal> { 0.125615 0.288862 0.179069 }
+        }
+        <Normal> { 0.932371 -0.235542 -0.274087 }
+      }
+      <Vertex> 1318 {
+        0.756723284721 0.395900607109 2.42775940895
+        <UV>  {
+          0.668813 0.694679
+          <Tangent> { -0.897103 -0.396764 -0.194380 }
+          <Binormal> { -0.050466 0.108868 0.010691 }
+        }
+        <Normal> { 0.873623 0.374462 0.310648 }
+      }
+      <Vertex> 1319 {
+        0.698335409164 0.37090408802 2.34119486809
+        <UV>  {
+          0.665828 0.691229
+          <Tangent> { -0.816676 0.438628 0.375029 }
+          <Binormal> { -0.005323 0.091106 -0.118147 }
+        }
+        <Normal> { 0.893490 -0.335215 -0.298746 }
+      }
+      <Vertex> 1320 {
+        0.756437242031 0.45941516757 2.07795929909
+        <UV>  {
+          0.671326 0.683515
+          <Tangent> { -0.607352 -0.306631 0.732872 }
+          <Binormal> { 0.761039 -0.109049 0.585070 }
+        }
+        <Normal> { 0.256172 -0.833979 -0.488662 }
+      }
+      <Vertex> 1321 {
+        0.805061340332 0.388922423124 2.09481358528
+        <UV>  {
+          0.671059 0.684794
+          <Tangent> { -0.832047 0.018139 0.554409 }
+          <Binormal> { 0.125615 0.288862 0.179069 }
+        }
+        <Normal> { 0.932371 -0.235542 -0.274087 }
+      }
+      <Vertex> 1322 {
+        0.698335409164 0.37090408802 2.34119486809
+        <UV>  {
+          0.665828 0.691229
+          <Tangent> { -0.816676 0.438628 0.375029 }
+          <Binormal> { -0.005323 0.091106 -0.118147 }
+        }
+        <Normal> { 0.893490 -0.335215 -0.298746 }
+      }
+      <Vertex> 1323 {
+        0.698335409164 0.37090408802 2.34119486809
+        <UV>  {
+          0.665828 0.691229
+          <Tangent> { -0.816676 0.438628 0.375029 }
+          <Binormal> { -0.005323 0.091106 -0.118147 }
+        }
+        <Normal> { 0.893490 -0.335215 -0.298746 }
+      }
+      <Vertex> 1324 {
+        0.664644896984 0.453684657812 2.29102468491
+        <UV>  {
+          0.664924 0.681467
+          <Tangent> { -0.656907 -0.163293 0.736076 }
+          <Binormal> { 0.319345 -0.165296 0.248328 }
+        }
+        <Normal> { 0.509720 -0.251320 -0.822779 }
+      }
+      <Vertex> 1325 {
+        0.756437242031 0.45941516757 2.07795929909
+        <UV>  {
+          0.671326 0.683515
+          <Tangent> { -0.607352 -0.306631 0.732872 }
+          <Binormal> { 0.761039 -0.109049 0.585070 }
+        }
+        <Normal> { 0.256172 -0.833979 -0.488662 }
+      }
+      <Vertex> 1326 {
+        0.997379124165 0.607021808624 1.88823199272
+        <UV>  {
+          0.672372 0.684478
+          <Tangent> { 0.322441 0.037552 -0.945844 }
+          <Binormal> { 0.103083 0.849315 0.068861 }
+        }
+        <Normal> { -0.971343 0.100436 0.215308 }
+      }
+      <Vertex> 1327 {
+        0.845028042793 0.628871798515 2.10857534409
+        <UV>  {
+          0.673607 0.684141
+          <Tangent> { 0.222694 0.131887 -0.965926 }
+          <Binormal> { 0.075355 0.981800 0.151428 }
+        }
+        <Normal> { -0.987487 0.095157 -0.125553 }
+      }
+      <Vertex> 1328 {
+        1.05181753635 0.481131225824 1.90535795689
+        <UV>  {
+          0.672260 0.684574
+          <Tangent> { -0.032821 -0.979828 -0.197128 }
+          <Binormal> { -0.245728 -0.012732 0.104199 }
+        }
+        <Normal> { 0.136235 0.892331 0.430311 }
+      }
+      <Vertex> 1329 {
+        0.937992095947 0.524433851242 2.13766932487
+        <UV>  {
+          0.672718 0.685073
+          <Tangent> { -0.438228 -0.873289 -0.212890 }
+          <Binormal> { -0.156837 0.200224 -0.498489 }
+        }
+        <Normal> { -0.114780 0.908780 0.401135 }
+      }
+      <Vertex> 1330 {
+        1.05181753635 0.481131225824 1.90535795689
+        <UV>  {
+          0.672260 0.684574
+          <Tangent> { -0.032821 -0.979828 -0.197128 }
+          <Binormal> { -0.245728 -0.012732 0.104199 }
+        }
+        <Normal> { 0.136235 0.892331 0.430311 }
+      }
+      <Vertex> 1331 {
+        0.845028042793 0.628871798515 2.10857534409
+        <UV>  {
+          0.673607 0.684141
+          <Tangent> { 0.222694 0.131887 -0.965926 }
+          <Binormal> { 0.075355 0.981800 0.151428 }
+        }
+        <Normal> { -0.987487 0.095157 -0.125553 }
+      }
+      <Vertex> 1332 {
+        0.937992095947 0.524433851242 2.13766932487
+        <UV>  {
+          0.672718 0.685073
+          <Tangent> { -0.438228 -0.873289 -0.212890 }
+          <Binormal> { -0.156837 0.200224 -0.498489 }
+        }
+        <Normal> { -0.114780 0.908780 0.401135 }
+      }
+      <Vertex> 1333 {
+        0.974243760109 0.402461975813 1.9196999073
+        <UV>  {
+          0.672165 0.684582
+          <Tangent> { -0.841378 0.432206 -0.324470 }
+          <Binormal> { 0.082117 -0.215075 -0.499424 }
+        }
+        <Normal> { 0.988342 0.085879 0.125523 }
+      }
+      <Vertex> 1334 {
+        1.05181753635 0.481131225824 1.90535795689
+        <UV>  {
+          0.672260 0.684574
+          <Tangent> { -0.032821 -0.979828 -0.197128 }
+          <Binormal> { -0.245728 -0.012732 0.104199 }
+        }
+        <Normal> { 0.136235 0.892331 0.430311 }
+      }
+      <Vertex> 1335 {
+        0.937992095947 0.524433851242 2.13766932487
+        <UV>  {
+          0.672718 0.685073
+          <Tangent> { -0.438228 -0.873289 -0.212890 }
+          <Binormal> { -0.156837 0.200224 -0.498489 }
+        }
+        <Normal> { -0.114780 0.908780 0.401135 }
+      }
+      <Vertex> 1336 {
+        0.889133214951 0.410208582878 2.12376260757
+        <UV>  {
+          0.671542 0.685376
+          <Tangent> { -0.777995 -0.627153 -0.037454 }
+          <Binormal> { -0.156864 0.199924 -0.089266 }
+        }
+        <Normal> { 0.685751 0.667531 0.289987 }
+      }
+      <Vertex> 1337 {
+        0.974243760109 0.402461975813 1.9196999073
+        <UV>  {
+          0.672165 0.684582
+          <Tangent> { -0.841378 0.432206 -0.324470 }
+          <Binormal> { 0.082117 -0.215075 -0.499424 }
+        }
+        <Normal> { 0.988342 0.085879 0.125523 }
+      }
+      <Vertex> 1338 {
+        0.997379124165 0.607021808624 1.88823199272
+        <UV>  {
+          0.672372 0.684478
+          <Tangent> { 0.322441 0.037552 -0.945844 }
+          <Binormal> { 0.103083 0.849315 0.068861 }
+        }
+        <Normal> { -0.971343 0.100436 0.215308 }
+      }
+      <Vertex> 1339 {
+        0.909877002239 0.499906629324 1.89722502232
+        <UV>  {
+          0.672236 0.684327
+          <Tangent> { -0.423261 -0.897240 -0.125739 }
+          <Binormal> { 0.270504 -0.164981 0.266695 }
+        }
+        <Normal> { -0.125217 -0.895535 -0.426984 }
+      }
+      <Vertex> 1340 {
+        0.845028042793 0.628871798515 2.10857534409
+        <UV>  {
+          0.673607 0.684141
+          <Tangent> { 0.222694 0.131887 -0.965926 }
+          <Binormal> { 0.075355 0.981800 0.151428 }
+        }
+        <Normal> { -0.987487 0.095157 -0.125553 }
+      }
+      <Vertex> 1341 {
+        0.909877002239 0.499906629324 1.89722502232
+        <UV>  {
+          0.672236 0.684327
+          <Tangent> { -0.423261 -0.897240 -0.125739 }
+          <Binormal> { 0.270504 -0.164981 0.266695 }
+        }
+        <Normal> { -0.125217 -0.895535 -0.426984 }
+      }
+      <Vertex> 1342 {
+        0.762838721275 0.541882753372 2.07937812805
+        <UV>  {
+          0.672573 0.682667
+          <Tangent> { -0.079838 -0.940512 -0.330246 }
+          <Binormal> { 0.203515 0.114194 -0.374415 }
+        }
+        <Normal> { -0.461501 -0.746910 -0.478652 }
+      }
+      <Vertex> 1343 {
+        0.845028042793 0.628871798515 2.10857534409
+        <UV>  {
+          0.673607 0.684141
+          <Tangent> { 0.222694 0.131887 -0.965926 }
+          <Binormal> { 0.075355 0.981800 0.151428 }
+        }
+        <Normal> { -0.987487 0.095157 -0.125553 }
+      }
+      <Vertex> 1344 {
+        0.756437242031 0.45941516757 2.07795929909
+        <UV>  {
+          0.671326 0.683515
+          <Tangent> { -0.607352 -0.306631 0.732872 }
+          <Binormal> { 0.761039 -0.109049 0.585070 }
+        }
+        <Normal> { 0.256172 -0.833979 -0.488662 }
+      }
+      <Vertex> 1345 {
+        0.762838721275 0.541882753372 2.07937812805
+        <UV>  {
+          0.672573 0.682667
+          <Tangent> { -0.079838 -0.940512 -0.330246 }
+          <Binormal> { 0.203515 0.114194 -0.374415 }
+        }
+        <Normal> { -0.461501 -0.746910 -0.478652 }
+      }
+      <Vertex> 1346 {
+        0.909877002239 0.499906629324 1.89722502232
+        <UV>  {
+          0.672236 0.684327
+          <Tangent> { -0.423261 -0.897240 -0.125739 }
+          <Binormal> { 0.270504 -0.164981 0.266695 }
+        }
+        <Normal> { -0.125217 -0.895535 -0.426984 }
+      }
+      <Vertex> 1347 {
+        0.974243760109 0.402461975813 1.9196999073
+        <UV>  {
+          0.672165 0.684582
+          <Tangent> { -0.841378 0.432206 -0.324470 }
+          <Binormal> { 0.082117 -0.215075 -0.499424 }
+        }
+        <Normal> { 0.988342 0.085879 0.125523 }
+      }
+      <Vertex> 1348 {
+        0.889133214951 0.410208582878 2.12376260757
+        <UV>  {
+          0.671542 0.685376
+          <Tangent> { -0.777995 -0.627153 -0.037454 }
+          <Binormal> { -0.156864 0.199924 -0.089266 }
+        }
+        <Normal> { 0.685751 0.667531 0.289987 }
+      }
+      <Vertex> 1349 {
+        0.805061340332 0.388922423124 2.09481358528
+        <UV>  {
+          0.671059 0.684794
+          <Tangent> { -0.832047 0.018139 0.554409 }
+          <Binormal> { 0.125615 0.288862 0.179069 }
+        }
+        <Normal> { 0.932371 -0.235542 -0.274087 }
+      }
+      <Vertex> 1350 {
+        0.909877002239 0.499906629324 1.89722502232
+        <UV>  {
+          0.672236 0.684327
+          <Tangent> { -0.423261 -0.897240 -0.125739 }
+          <Binormal> { 0.270504 -0.164981 0.266695 }
+        }
+        <Normal> { -0.125217 -0.895535 -0.426984 }
+      }
+      <Vertex> 1351 {
+        0.974243760109 0.402461975813 1.9196999073
+        <UV>  {
+          0.672165 0.684582
+          <Tangent> { -0.841378 0.432206 -0.324470 }
+          <Binormal> { 0.082117 -0.215075 -0.499424 }
+        }
+        <Normal> { 0.988342 0.085879 0.125523 }
+      }
+      <Vertex> 1352 {
+        0.805061340332 0.388922423124 2.09481358528
+        <UV>  {
+          0.671059 0.684794
+          <Tangent> { -0.832047 0.018139 0.554409 }
+          <Binormal> { 0.125615 0.288862 0.179069 }
+        }
+        <Normal> { 0.932371 -0.235542 -0.274087 }
+      }
+      <Vertex> 1353 {
+        0.805061340332 0.388922423124 2.09481358528
+        <UV>  {
+          0.671059 0.684794
+          <Tangent> { -0.832047 0.018139 0.554409 }
+          <Binormal> { 0.125615 0.288862 0.179069 }
+        }
+        <Normal> { 0.932371 -0.235542 -0.274087 }
+      }
+      <Vertex> 1354 {
+        0.756437242031 0.45941516757 2.07795929909
+        <UV>  {
+          0.671326 0.683515
+          <Tangent> { -0.607352 -0.306631 0.732872 }
+          <Binormal> { 0.761039 -0.109049 0.585070 }
+        }
+        <Normal> { 0.256172 -0.833979 -0.488662 }
+      }
+      <Vertex> 1355 {
+        0.909877002239 0.499906629324 1.89722502232
+        <UV>  {
+          0.672236 0.684327
+          <Tangent> { -0.423261 -0.897240 -0.125739 }
+          <Binormal> { 0.270504 -0.164981 0.266695 }
+        }
+        <Normal> { -0.125217 -0.895535 -0.426984 }
+      }
+      <Vertex> 1356 {
+        0.727528452873 0.793259382248 1.11355721951
+        <UV>  {
+          0.704021 0.456425
+          <Tangent> { 0.889879 -0.336091 -0.308476 }
+          <Binormal> { 0.099918 0.290305 -0.028053 }
+        }
+        <Normal> { -0.945494 0.325571 0.001526 }
+      }
+      <Vertex> 1357 {
+        0.645892798901 0.793259382248 1.42989528179
+        <UV>  {
+          0.713451 0.479351
+          <Tangent> { 0.840559 -0.533218 -0.095603 }
+          <Binormal> { -0.022196 -0.029169 -0.032466 }
+        }
+        <Normal> { -0.854060 0.503159 0.131840 }
+      }
+      <Vertex> 1358 {
+        0.839777469635 0.609579145908 1.30489075184
+        <UV>  {
+          0.694738 0.466454
+          <Tangent> { 0.031512 -0.983193 0.179827 }
+          <Binormal> { -0.486534 -0.022374 -0.037068 }
+        }
+        <Normal> { -0.067965 0.944212 0.322153 }
+      }
+      <Vertex> 1359 {
+        0.717323958874 0.609579145908 1.61867773533
+        <UV>  {
+          0.689794 0.498532
+          <Tangent> { -0.122745 -0.983249 0.134742 }
+          <Binormal> { -0.599690 0.061106 -0.100388 }
+        }
+        <Normal> { 0.006684 0.871395 0.490493 }
+      }
+      <Vertex> 1360 {
+        0.839777469635 0.609579145908 1.30489075184
+        <UV>  {
+          0.694738 0.466454
+          <Tangent> { 0.031512 -0.983193 0.179827 }
+          <Binormal> { -0.486534 -0.022374 -0.037068 }
+        }
+        <Normal> { -0.067965 0.944212 0.322153 }
+      }
+      <Vertex> 1361 {
+        0.645892798901 0.793259382248 1.42989528179
+        <UV>  {
+          0.713451 0.479351
+          <Tangent> { 0.840559 -0.533218 -0.095603 }
+          <Binormal> { -0.022196 -0.029169 -0.032466 }
+        }
+        <Normal> { -0.854060 0.503159 0.131840 }
+      }
+      <Vertex> 1362 {
+        0.727528452873 0.793259382248 1.11355721951
+        <UV>  {
+          0.704021 0.456425
+          <Tangent> { 0.889879 -0.336091 -0.308476 }
+          <Binormal> { 0.099918 0.290305 -0.028053 }
+        }
+        <Normal> { -0.945494 0.325571 0.001526 }
+      }
+      <Vertex> 1363 {
+        0.482621461153 0.772850513458 1.16457939148
+        <UV>  {
+          0.715700 0.450173
+          <Tangent> { 0.699372 -0.170876 -0.694032 }
+          <Binormal> { -0.177472 0.873673 -0.393942 }
+        }
+        <Normal> { -0.830012 -0.360485 -0.425550 }
+      }
+      <Vertex> 1364 {
+        0.645892798901 0.793259382248 1.42989528179
+        <UV>  {
+          0.713451 0.479351
+          <Tangent> { 0.840559 -0.533218 -0.095603 }
+          <Binormal> { -0.022196 -0.029169 -0.032466 }
+        }
+        <Normal> { -0.854060 0.503159 0.131840 }
+      }
+      <Vertex> 1365 {
+        0.839777469635 0.609579145908 1.30489075184
+        <UV>  {
+          0.694738 0.466454
+          <Tangent> { 0.031512 -0.983193 0.179827 }
+          <Binormal> { -0.486534 -0.022374 -0.037068 }
+        }
+        <Normal> { -0.067965 0.944212 0.322153 }
+      }
+      <Vertex> 1366 {
+        0.717323958874 0.609579145908 1.61867773533
+        <UV>  {
+          0.689794 0.498532
+          <Tangent> { -0.122745 -0.983249 0.134742 }
+          <Binormal> { -0.599690 0.061106 -0.100388 }
+        }
+        <Normal> { 0.006684 0.871395 0.490493 }
+      }
+      <Vertex> 1367 {
+        0.645892739296 0.420796722174 1.4196908474
+        <UV>  {
+          0.674212 0.469817
+          <Tangent> { -0.746715 -0.492328 0.447246 }
+          <Binormal> { -0.433095 0.534844 -0.134332 }
+        }
+        <Normal> { 0.705435 0.645009 0.293741 }
+      }
+      <Vertex> 1368 {
+        0.839777469635 0.609579145908 1.30489075184
+        <UV>  {
+          0.694738 0.466454
+          <Tangent> { 0.031512 -0.983193 0.179827 }
+          <Binormal> { -0.486534 -0.022374 -0.037068 }
+        }
+        <Normal> { -0.067965 0.944212 0.322153 }
+      }
+      <Vertex> 1369 {
+        0.645892739296 0.420796722174 1.4196908474
+        <UV>  {
+          0.674212 0.469817
+          <Tangent> { -0.746715 -0.492328 0.447246 }
+          <Binormal> { -0.433095 0.534844 -0.134332 }
+        }
+        <Normal> { 0.705435 0.645009 0.293741 }
+      }
+      <Vertex> 1370 {
+        0.727528393269 0.303445458412 1.1263127327
+        <UV>  {
+          0.687469 0.453315
+          <Tangent> { -0.654034 -0.543662 0.525995 }
+          <Binormal> { -0.411070 0.530949 0.037649 }
+        }
+        <Normal> { 0.783746 0.593921 0.181494 }
+      }
+      <Vertex> 1371 {
+        0.482621461153 0.257525414228 1.20029509068
+        <UV>  {
+          0.678922 0.443776
+          <Tangent> { -0.301299 -0.458568 0.836023 }
+          <Binormal> { 0.323136 0.690488 0.495197 }
+        }
+        <Normal> { 0.929868 -0.228309 -0.288430 }
+      }
+      <Vertex> 1372 {
+        0.727528393269 0.303445458412 1.1263127327
+        <UV>  {
+          0.687469 0.453315
+          <Tangent> { -0.654034 -0.543662 0.525995 }
+          <Binormal> { -0.411070 0.530949 0.037649 }
+        }
+        <Normal> { 0.783746 0.593921 0.181494 }
+      }
+      <Vertex> 1373 {
+        0.645892739296 0.420796722174 1.4196908474
+        <UV>  {
+          0.674212 0.469817
+          <Tangent> { -0.746715 -0.492328 0.447246 }
+          <Binormal> { -0.433095 0.534844 -0.134332 }
+        }
+        <Normal> { 0.705435 0.645009 0.293741 }
+      }
+      <Vertex> 1374 {
+        0.620381653309 0.721828222275 0.978348135948
+        <UV>  {
+          0.704015 0.449496
+          <Tangent> { 0.780488 0.306793 -0.544717 }
+          <Binormal> { -0.362978 0.666593 -0.144652 }
+        }
+        <Normal> { -0.814142 -0.505356 -0.285867 }
+      }
+      <Vertex> 1375 {
+        0.446905851364 0.589170277119 1.07784152031
+        <UV>  {
+          0.705758 0.442163
+          <Tangent> { 0.267307 -0.802093 -0.534035 }
+          <Binormal> { 0.261385 0.235521 -0.222907 }
+        }
+        <Normal> { -0.061556 -0.649190 -0.758110 }
+      }
+      <Vertex> 1376 {
+        0.482621461153 0.772850513458 1.16457939148
+        <UV>  {
+          0.715700 0.450173
+          <Tangent> { 0.699372 -0.170876 -0.694032 }
+          <Binormal> { -0.177472 0.873673 -0.393942 }
+        }
+        <Normal> { -0.830012 -0.360485 -0.425550 }
+      }
+      <Vertex> 1377 {
+        0.482621461153 0.772850513458 1.16457939148
+        <UV>  {
+          0.715700 0.450173
+          <Tangent> { 0.699372 -0.170876 -0.694032 }
+          <Binormal> { -0.177472 0.873673 -0.393942 }
+        }
+        <Normal> { -0.830012 -0.360485 -0.425550 }
+      }
+      <Vertex> 1378 {
+        0.727528452873 0.793259382248 1.11355721951
+        <UV>  {
+          0.704021 0.456425
+          <Tangent> { 0.889879 -0.336091 -0.308476 }
+          <Binormal> { 0.099918 0.290305 -0.028053 }
+        }
+        <Normal> { -0.945494 0.325571 0.001526 }
+      }
+      <Vertex> 1379 {
+        0.620381653309 0.721828222275 0.978348135948
+        <UV>  {
+          0.704015 0.449496
+          <Tangent> { 0.780488 0.306793 -0.544717 }
+          <Binormal> { -0.362978 0.666593 -0.144652 }
+        }
+        <Normal> { -0.814142 -0.505356 -0.285867 }
+      }
+      <Vertex> 1380 {
+        0.727528393269 0.303445458412 1.1263127327
+        <UV>  {
+          0.687469 0.453315
+          <Tangent> { -0.654034 -0.543662 0.525995 }
+          <Binormal> { -0.411070 0.530949 0.037649 }
+        }
+        <Normal> { 0.783746 0.593921 0.181494 }
+      }
+      <Vertex> 1381 {
+        0.482621461153 0.257525414228 1.20029509068
+        <UV>  {
+          0.678922 0.443776
+          <Tangent> { -0.301299 -0.458568 0.836023 }
+          <Binormal> { 0.323136 0.690488 0.495197 }
+        }
+        <Normal> { 0.929868 -0.228309 -0.288430 }
+      }
+      <Vertex> 1382 {
+        0.620381593704 0.293241024017 1.01916599274
+        <UV>  {
+          0.689409 0.448241
+          <Tangent> { -0.855746 0.008734 0.517323 }
+          <Binormal> { 0.179103 0.098408 0.294607 }
+        }
+        <Normal> { 0.847163 -0.352916 -0.397137 }
+      }
+      <Vertex> 1383 {
+        0.536194860935 0.589170277119 0.922223627567
+        <UV>  {
+          0.701930 0.445326
+          <Tangent> { 0.591283 0.554160 -0.585911 }
+          <Binormal> { -0.756631 0.328580 -0.452795 }
+        }
+        <Normal> { -0.141667 -0.898556 -0.415326 }
+      }
+      <Vertex> 1384 {
+        0.446905851364 0.589170277119 1.07784152031
+        <UV>  {
+          0.705758 0.442163
+          <Tangent> { 0.267307 -0.802093 -0.534035 }
+          <Binormal> { 0.261385 0.235521 -0.222907 }
+        }
+        <Normal> { -0.061556 -0.649190 -0.758110 }
+      }
+      <Vertex> 1385 {
+        0.620381653309 0.721828222275 0.978348135948
+        <UV>  {
+          0.704015 0.449496
+          <Tangent> { 0.780488 0.306793 -0.544717 }
+          <Binormal> { -0.362978 0.666593 -0.144652 }
+        }
+        <Normal> { -0.814142 -0.505356 -0.285867 }
+      }
+      <Vertex> 1386 {
+        0.482621461153 0.257525414228 1.20029509068
+        <UV>  {
+          0.678922 0.443776
+          <Tangent> { -0.301299 -0.458568 0.836023 }
+          <Binormal> { 0.323136 0.690488 0.495197 }
+        }
+        <Normal> { 0.929868 -0.228309 -0.288430 }
+      }
+      <Vertex> 1387 {
+        0.446905851364 0.589170277119 1.07784152031
+        <UV>  {
+          0.705758 0.442163
+          <Tangent> { 0.267307 -0.802093 -0.534035 }
+          <Binormal> { 0.261385 0.235521 -0.222907 }
+        }
+        <Normal> { -0.061556 -0.649190 -0.758110 }
+      }
+      <Vertex> 1388 {
+        0.536194860935 0.589170277119 0.922223627567
+        <UV>  {
+          0.701930 0.445326
+          <Tangent> { 0.591283 0.554160 -0.585911 }
+          <Binormal> { -0.756631 0.328580 -0.452795 }
+        }
+        <Normal> { -0.141667 -0.898556 -0.415326 }
+      }
+      <Vertex> 1389 {
+        0.536194860935 0.589170277119 0.922223627567
+        <UV>  {
+          0.701930 0.445326
+          <Tangent> { 0.591283 0.554160 -0.585911 }
+          <Binormal> { -0.756631 0.328580 -0.452795 }
+        }
+        <Normal> { -0.141667 -0.898556 -0.415326 }
+      }
+      <Vertex> 1390 {
+        0.620381593704 0.293241024017 1.01916599274
+        <UV>  {
+          0.689409 0.448241
+          <Tangent> { -0.855746 0.008734 0.517323 }
+          <Binormal> { 0.179103 0.098408 0.294607 }
+        }
+        <Normal> { 0.847163 -0.352916 -0.397137 }
+      }
+      <Vertex> 1391 {
+        0.482621461153 0.257525414228 1.20029509068
+        <UV>  {
+          0.678922 0.443776
+          <Tangent> { -0.301299 -0.458568 0.836023 }
+          <Binormal> { 0.323136 0.690488 0.495197 }
+        }
+        <Normal> { 0.929868 -0.228309 -0.288430 }
+      }
+      <Vertex> 1392 {
+        0.832632660866 0.772850453854 0.793742358685
+        <UV>  {
+          0.700369 0.446582
+          <Tangent> { 0.959810 -0.256124 -0.114737 }
+          <Binormal> { 0.025047 0.023843 0.156303 }
+        }
+        <Normal> { -0.910123 0.405713 0.083956 }
+      }
+      <Vertex> 1393 {
+        0.727528452873 0.793259382248 1.11355721951
+        <UV>  {
+          0.704021 0.456425
+          <Tangent> { 0.889879 -0.336091 -0.308476 }
+          <Binormal> { 0.099918 0.290305 -0.028053 }
+        }
+        <Normal> { -0.945494 0.325571 0.001526 }
+      }
+      <Vertex> 1394 {
+        0.932132661343 0.609579145908 0.912188529968
+        <UV>  {
+          0.697975 0.449997
+          <Tangent> { 0.129846 -0.989487 0.063684 }
+          <Binormal> { -0.222258 -0.026834 0.036231 }
+        }
+        <Normal> { -0.092318 0.982543 0.161382 }
+      }
+      <Vertex> 1395 {
+        0.839777469635 0.609579145908 1.30489075184
+        <UV>  {
+          0.694738 0.466454
+          <Tangent> { 0.031512 -0.983193 0.179827 }
+          <Binormal> { -0.486534 -0.022374 -0.037068 }
+        }
+        <Normal> { -0.067965 0.944212 0.322153 }
+      }
+      <Vertex> 1396 {
+        0.932132661343 0.609579145908 0.912188529968
+        <UV>  {
+          0.697975 0.449997
+          <Tangent> { 0.129846 -0.989487 0.063684 }
+          <Binormal> { -0.222258 -0.026834 0.036231 }
+        }
+        <Normal> { -0.092318 0.982543 0.161382 }
+      }
+      <Vertex> 1397 {
+        0.727528452873 0.793259382248 1.11355721951
+        <UV>  {
+          0.704021 0.456425
+          <Tangent> { 0.889879 -0.336091 -0.308476 }
+          <Binormal> { 0.099918 0.290305 -0.028053 }
+        }
+        <Normal> { -0.945494 0.325571 0.001526 }
+      }
+      <Vertex> 1398 {
+        0.832632660866 0.772850453854 0.793742358685
+        <UV>  {
+          0.700369 0.446582
+          <Tangent> { 0.959810 -0.256124 -0.114737 }
+          <Binormal> { 0.025047 0.023843 0.156303 }
+        }
+        <Normal> { -0.910123 0.405713 0.083956 }
+      }
+      <Vertex> 1399 {
+        0.620381653309 0.721828222275 0.978348135948
+        <UV>  {
+          0.704015 0.449496
+          <Tangent> { 0.780488 0.306793 -0.544717 }
+          <Binormal> { -0.362978 0.666593 -0.144652 }
+        }
+        <Normal> { -0.814142 -0.505356 -0.285867 }
+      }
+      <Vertex> 1400 {
+        0.727528452873 0.793259382248 1.11355721951
+        <UV>  {
+          0.704021 0.456425
+          <Tangent> { 0.889879 -0.336091 -0.308476 }
+          <Binormal> { 0.099918 0.290305 -0.028053 }
+        }
+        <Normal> { -0.945494 0.325571 0.001526 }
+      }
+      <Vertex> 1401 {
+        0.932132661343 0.609579145908 0.912188529968
+        <UV>  {
+          0.697975 0.449997
+          <Tangent> { 0.129846 -0.989487 0.063684 }
+          <Binormal> { -0.222258 -0.026834 0.036231 }
+        }
+        <Normal> { -0.092318 0.982543 0.161382 }
+      }
+      <Vertex> 1402 {
+        0.839777469635 0.609579145908 1.30489075184
+        <UV>  {
+          0.694738 0.466454
+          <Tangent> { 0.031512 -0.983193 0.179827 }
+          <Binormal> { -0.486534 -0.022374 -0.037068 }
+        }
+        <Normal> { -0.067965 0.944212 0.322153 }
+      }
+      <Vertex> 1403 {
+        0.727528393269 0.303445458412 1.1263127327
+        <UV>  {
+          0.687469 0.453315
+          <Tangent> { -0.654034 -0.543662 0.525995 }
+          <Binormal> { -0.411070 0.530949 0.037649 }
+        }
+        <Normal> { 0.783746 0.593921 0.181494 }
+      }
+      <Vertex> 1404 {
+        0.932132661343 0.609579145908 0.912188529968
+        <UV>  {
+          0.697975 0.449997
+          <Tangent> { 0.129846 -0.989487 0.063684 }
+          <Binormal> { -0.222258 -0.026834 0.036231 }
+        }
+        <Normal> { -0.092318 0.982543 0.161382 }
+      }
+      <Vertex> 1405 {
+        0.727528393269 0.303445458412 1.1263127327
+        <UV>  {
+          0.687469 0.453315
+          <Tangent> { -0.654034 -0.543662 0.525995 }
+          <Binormal> { -0.411070 0.530949 0.037649 }
+        }
+        <Normal> { 0.783746 0.593921 0.181494 }
+      }
+      <Vertex> 1406 {
+        0.831513702869 0.385081112385 0.807941675186
+        <UV>  {
+          0.694893 0.446643
+          <Tangent> { -0.887694 -0.391896 0.241698 }
+          <Binormal> { -0.066299 0.046299 -0.168429 }
+        }
+        <Normal> { 0.817225 0.550523 -0.170354 }
+      }
+      <Vertex> 1407 {
+        0.620381593704 0.293241024017 1.01916599274
+        <UV>  {
+          0.689409 0.448241
+          <Tangent> { -0.855746 0.008734 0.517323 }
+          <Binormal> { 0.179103 0.098408 0.294607 }
+        }
+        <Normal> { 0.847163 -0.352916 -0.397137 }
+      }
+      <Vertex> 1408 {
+        0.831513702869 0.385081112385 0.807941675186
+        <UV>  {
+          0.694893 0.446643
+          <Tangent> { -0.887694 -0.391896 0.241698 }
+          <Binormal> { -0.066299 0.046299 -0.168429 }
+        }
+        <Normal> { 0.817225 0.550523 -0.170354 }
+      }
+      <Vertex> 1409 {
+        0.727528393269 0.303445458412 1.1263127327
+        <UV>  {
+          0.687469 0.453315
+          <Tangent> { -0.654034 -0.543662 0.525995 }
+          <Binormal> { -0.411070 0.530949 0.037649 }
+        }
+        <Normal> { 0.783746 0.593921 0.181494 }
+      }
+      <Vertex> 1410 {
+        0.713163495064 0.772850453854 0.757511079311
+        <UV>  {
+          0.700568 0.445421
+          <Tangent> { 0.587643 0.782523 -0.205752 }
+          <Binormal> { -0.144457 0.209534 0.384325 }
+        }
+        <Normal> { -0.865322 -0.498276 -0.053591 }
+      }
+      <Vertex> 1411 {
+        0.536194860935 0.589170277119 0.922223627567
+        <UV>  {
+          0.701930 0.445326
+          <Tangent> { 0.591283 0.554160 -0.585911 }
+          <Binormal> { -0.756631 0.328580 -0.452795 }
+        }
+        <Normal> { -0.141667 -0.898556 -0.415326 }
+      }
+      <Vertex> 1412 {
+        0.620381653309 0.721828222275 0.978348135948
+        <UV>  {
+          0.704015 0.449496
+          <Tangent> { 0.780488 0.306793 -0.544717 }
+          <Binormal> { -0.362978 0.666593 -0.144652 }
+        }
+        <Normal> { -0.814142 -0.505356 -0.285867 }
+      }
+      <Vertex> 1413 {
+        0.620381653309 0.721828222275 0.978348135948
+        <UV>  {
+          0.704015 0.449496
+          <Tangent> { 0.780488 0.306793 -0.544717 }
+          <Binormal> { -0.362978 0.666593 -0.144652 }
+        }
+        <Normal> { -0.814142 -0.505356 -0.285867 }
+      }
+      <Vertex> 1414 {
+        0.832632660866 0.772850453854 0.793742358685
+        <UV>  {
+          0.700369 0.446582
+          <Tangent> { 0.959810 -0.256124 -0.114737 }
+          <Binormal> { 0.025047 0.023843 0.156303 }
+        }
+        <Normal> { -0.910123 0.405713 0.083956 }
+      }
+      <Vertex> 1415 {
+        0.713163495064 0.772850453854 0.757511079311
+        <UV>  {
+          0.700568 0.445421
+          <Tangent> { 0.587643 0.782523 -0.205752 }
+          <Binormal> { -0.144457 0.209534 0.384325 }
+        }
+        <Normal> { -0.865322 -0.498276 -0.053591 }
+      }
+      <Vertex> 1416 {
+        0.831513702869 0.385081112385 0.807941675186
+        <UV>  {
+          0.694893 0.446643
+          <Tangent> { -0.887694 -0.391896 0.241698 }
+          <Binormal> { -0.066299 0.046299 -0.168429 }
+        }
+        <Normal> { 0.817225 0.550523 -0.170354 }
+      }
+      <Vertex> 1417 {
+        0.620381593704 0.293241024017 1.01916599274
+        <UV>  {
+          0.689409 0.448241
+          <Tangent> { -0.855746 0.008734 0.517323 }
+          <Binormal> { 0.179103 0.098408 0.294607 }
+        }
+        <Normal> { 0.847163 -0.352916 -0.397137 }
+      }
+      <Vertex> 1418 {
+        0.716146826744 0.374876648188 0.81318962574
+        <UV>  {
+          0.695381 0.446267
+          <Tangent> { -0.990727 0.035778 0.131070 }
+          <Binormal> { 0.027266 -0.273109 0.280647 }
+        }
+        <Normal> { 0.865352 -0.314524 -0.390149 }
+      }
+      <Vertex> 1419 {
+        0.59327352047 0.589170277119 0.72767496109
+        <UV>  {
+          0.700373 0.443989
+          <Tangent> { 0.564771 0.800901 -0.198975 }
+          <Binormal> { -0.396017 0.154433 -0.502439 }
+        }
+        <Normal> { -0.053529 -0.965545 -0.254585 }
+      }
+      <Vertex> 1420 {
+        0.536194860935 0.589170277119 0.922223627567
+        <UV>  {
+          0.701930 0.445326
+          <Tangent> { 0.591283 0.554160 -0.585911 }
+          <Binormal> { -0.756631 0.328580 -0.452795 }
+        }
+        <Normal> { -0.141667 -0.898556 -0.415326 }
+      }
+      <Vertex> 1421 {
+        0.713163495064 0.772850453854 0.757511079311
+        <UV>  {
+          0.700568 0.445421
+          <Tangent> { 0.587643 0.782523 -0.205752 }
+          <Binormal> { -0.144457 0.209534 0.384325 }
+        }
+        <Normal> { -0.865322 -0.498276 -0.053591 }
+      }
+      <Vertex> 1422 {
+        0.620381593704 0.293241024017 1.01916599274
+        <UV>  {
+          0.689409 0.448241
+          <Tangent> { -0.855746 0.008734 0.517323 }
+          <Binormal> { 0.179103 0.098408 0.294607 }
+        }
+        <Normal> { 0.847163 -0.352916 -0.397137 }
+      }
+      <Vertex> 1423 {
+        0.536194860935 0.589170277119 0.922223627567
+        <UV>  {
+          0.701930 0.445326
+          <Tangent> { 0.591283 0.554160 -0.585911 }
+          <Binormal> { -0.756631 0.328580 -0.452795 }
+        }
+        <Normal> { -0.141667 -0.898556 -0.415326 }
+      }
+      <Vertex> 1424 {
+        0.59327352047 0.589170277119 0.72767496109
+        <UV>  {
+          0.700373 0.443989
+          <Tangent> { 0.564771 0.800901 -0.198975 }
+          <Binormal> { -0.396017 0.154433 -0.502439 }
+        }
+        <Normal> { -0.053529 -0.965545 -0.254585 }
+      }
+      <Vertex> 1425 {
+        0.59327352047 0.589170277119 0.72767496109
+        <UV>  {
+          0.700373 0.443989
+          <Tangent> { 0.564771 0.800901 -0.198975 }
+          <Binormal> { -0.396017 0.154433 -0.502439 }
+        }
+        <Normal> { -0.053529 -0.965545 -0.254585 }
+      }
+      <Vertex> 1426 {
+        0.716146826744 0.374876648188 0.81318962574
+        <UV>  {
+          0.695381 0.446267
+          <Tangent> { -0.990727 0.035778 0.131070 }
+          <Binormal> { 0.027266 -0.273109 0.280647 }
+        }
+        <Normal> { 0.865352 -0.314524 -0.390149 }
+      }
+      <Vertex> 1427 {
+        0.620381593704 0.293241024017 1.01916599274
+        <UV>  {
+          0.689409 0.448241
+          <Tangent> { -0.855746 0.008734 0.517323 }
+          <Binormal> { 0.179103 0.098408 0.294607 }
+        }
+        <Normal> { 0.847163 -0.352916 -0.397137 }
+      }
+      <Vertex> 1428 {
+        0.852500617504 0.793259382248 0.480152130127
+        <UV>  {
+          0.700033 0.440157
+          <Tangent> { 0.997700 0.055621 -0.038748 }
+          <Binormal> { 0.031187 -0.384411 0.251207 }
+        }
+        <Normal> { -0.884793 0.202460 0.419660 }
+      }
+      <Vertex> 1429 {
+        0.832632660866 0.772850453854 0.793742358685
+        <UV>  {
+          0.700369 0.446582
+          <Tangent> { 0.959810 -0.256124 -0.114737 }
+          <Binormal> { 0.025047 0.023843 0.156303 }
+        }
+        <Normal> { -0.910123 0.405713 0.083956 }
+      }
+      <Vertex> 1430 {
+        0.945739626884 0.614681363106 0.536179482937
+        <UV>  {
+          0.698832 0.440278
+          <Tangent> { -0.452696 -0.607005 0.653155 }
+          <Binormal> { -0.812927 0.155673 -0.418759 }
+        }
+        <Normal> { 0.016602 0.947295 0.319926 }
+      }
+      <Vertex> 1431 {
+        0.932132661343 0.609579145908 0.912188529968
+        <UV>  {
+          0.697975 0.449997
+          <Tangent> { 0.129846 -0.989487 0.063684 }
+          <Binormal> { -0.222258 -0.026834 0.036231 }
+        }
+        <Normal> { -0.092318 0.982543 0.161382 }
+      }
+      <Vertex> 1432 {
+        0.945739626884 0.614681363106 0.536179482937
+        <UV>  {
+          0.698832 0.440278
+          <Tangent> { -0.452696 -0.607005 0.653155 }
+          <Binormal> { -0.812927 0.155673 -0.418759 }
+        }
+        <Normal> { 0.016602 0.947295 0.319926 }
+      }
+      <Vertex> 1433 {
+        0.832632660866 0.772850453854 0.793742358685
+        <UV>  {
+          0.700369 0.446582
+          <Tangent> { 0.959810 -0.256124 -0.114737 }
+          <Binormal> { 0.025047 0.023843 0.156303 }
+        }
+        <Normal> { -0.910123 0.405713 0.083956 }
+      }
+      <Vertex> 1434 {
+        0.852500617504 0.793259382248 0.480152130127
+        <UV>  {
+          0.700033 0.440157
+          <Tangent> { 0.997700 0.055621 -0.038748 }
+          <Binormal> { 0.031187 -0.384411 0.251207 }
+        }
+        <Normal> { -0.884793 0.202460 0.419660 }
+      }
+      <Vertex> 1435 {
+        0.713163495064 0.772850453854 0.757511079311
+        <UV>  {
+          0.700568 0.445421
+          <Tangent> { 0.587643 0.782523 -0.205752 }
+          <Binormal> { -0.144457 0.209534 0.384325 }
+        }
+        <Normal> { -0.865322 -0.498276 -0.053591 }
+      }
+      <Vertex> 1436 {
+        0.832632660866 0.772850453854 0.793742358685
+        <UV>  {
+          0.700369 0.446582
+          <Tangent> { 0.959810 -0.256124 -0.114737 }
+          <Binormal> { 0.025047 0.023843 0.156303 }
+        }
+        <Normal> { -0.910123 0.405713 0.083956 }
+      }
+      <Vertex> 1437 {
+        0.945739626884 0.614681363106 0.536179482937
+        <UV>  {
+          0.698832 0.440278
+          <Tangent> { -0.452696 -0.607005 0.653155 }
+          <Binormal> { -0.812927 0.155673 -0.418759 }
+        }
+        <Normal> { 0.016602 0.947295 0.319926 }
+      }
+      <Vertex> 1438 {
+        0.932132661343 0.609579145908 0.912188529968
+        <UV>  {
+          0.697975 0.449997
+          <Tangent> { 0.129846 -0.989487 0.063684 }
+          <Binormal> { -0.222258 -0.026834 0.036231 }
+        }
+        <Normal> { -0.092318 0.982543 0.161382 }
+      }
+      <Vertex> 1439 {
+        0.831513702869 0.385081112385 0.807941675186
+        <UV>  {
+          0.694893 0.446643
+          <Tangent> { -0.887694 -0.391896 0.241698 }
+          <Binormal> { -0.066299 0.046299 -0.168429 }
+        }
+        <Normal> { 0.817225 0.550523 -0.170354 }
+      }
+      <Vertex> 1440 {
+        0.945739626884 0.614681363106 0.536179482937
+        <UV>  {
+          0.698832 0.440278
+          <Tangent> { -0.452696 -0.607005 0.653155 }
+          <Binormal> { -0.812927 0.155673 -0.418759 }
+        }
+        <Normal> { 0.016602 0.947295 0.319926 }
+      }
+      <Vertex> 1441 {
+        0.831513702869 0.385081112385 0.807941675186
+        <UV>  {
+          0.694893 0.446643
+          <Tangent> { -0.887694 -0.391896 0.241698 }
+          <Binormal> { -0.066299 0.046299 -0.168429 }
+        }
+        <Normal> { 0.817225 0.550523 -0.170354 }
+      }
+      <Vertex> 1442 {
+        0.851008951664 0.512636840343 0.500784039497
+        <UV>  {
+          0.698569 0.438602
+          <Tangent> { -0.972848 -0.197379 0.120861 }
+          <Binormal> { -0.101792 0.401118 -0.164287 }
+        }
+        <Normal> { 0.887112 0.348857 0.302103 }
+      }
+      <Vertex> 1443 {
+        0.716146826744 0.374876648188 0.81318962574
+        <UV>  {
+          0.695381 0.446267
+          <Tangent> { -0.990727 0.035778 0.131070 }
+          <Binormal> { 0.027266 -0.273109 0.280647 }
+        }
+        <Normal> { 0.865352 -0.314524 -0.390149 }
+      }
+      <Vertex> 1444 {
+        0.851008951664 0.512636840343 0.500784039497
+        <UV>  {
+          0.698569 0.438602
+          <Tangent> { -0.972848 -0.197379 0.120861 }
+          <Binormal> { -0.101792 0.401118 -0.164287 }
+        }
+        <Normal> { 0.887112 0.348857 0.302103 }
+      }
+      <Vertex> 1445 {
+        0.831513702869 0.385081112385 0.807941675186
+        <UV>  {
+          0.694893 0.446643
+          <Tangent> { -0.887694 -0.391896 0.241698 }
+          <Binormal> { -0.066299 0.046299 -0.168429 }
+        }
+        <Normal> { 0.817225 0.550523 -0.170354 }
+      }
+      <Vertex> 1446 {
+        0.747860431671 0.772850453854 0.469460636377
+        <UV>  {
+          0.699863 0.440043
+          <Tangent> { 0.579883 0.792559 -0.188644 }
+          <Binormal> { -0.009543 0.048719 0.175350 }
+        }
+        <Normal> { -0.718314 -0.679373 0.149663 }
+      }
+      <Vertex> 1447 {
+        0.59327352047 0.589170277119 0.72767496109
+        <UV>  {
+          0.700373 0.443989
+          <Tangent> { 0.564771 0.800901 -0.198975 }
+          <Binormal> { -0.396017 0.154433 -0.502439 }
+        }
+        <Normal> { -0.053529 -0.965545 -0.254585 }
+      }
+      <Vertex> 1448 {
+        0.713163495064 0.772850453854 0.757511079311
+        <UV>  {
+          0.700568 0.445421
+          <Tangent> { 0.587643 0.782523 -0.205752 }
+          <Binormal> { -0.144457 0.209534 0.384325 }
+        }
+        <Normal> { -0.865322 -0.498276 -0.053591 }
+      }
+      <Vertex> 1449 {
+        0.713163495064 0.772850453854 0.757511079311
+        <UV>  {
+          0.700568 0.445421
+          <Tangent> { 0.587643 0.782523 -0.205752 }
+          <Binormal> { -0.144457 0.209534 0.384325 }
+        }
+        <Normal> { -0.865322 -0.498276 -0.053591 }
+      }
+      <Vertex> 1450 {
+        0.852500617504 0.793259382248 0.480152130127
+        <UV>  {
+          0.700033 0.440157
+          <Tangent> { 0.997700 0.055621 -0.038748 }
+          <Binormal> { 0.031187 -0.384411 0.251207 }
+        }
+        <Normal> { -0.884793 0.202460 0.419660 }
+      }
+      <Vertex> 1451 {
+        0.747860431671 0.772850453854 0.469460636377
+        <UV>  {
+          0.699863 0.440043
+          <Tangent> { 0.579883 0.792559 -0.188644 }
+          <Binormal> { -0.009543 0.048719 0.175350 }
+        }
+        <Normal> { -0.718314 -0.679373 0.149663 }
+      }
+      <Vertex> 1452 {
+        0.851008951664 0.512636840343 0.500784039497
+        <UV>  {
+          0.698569 0.438602
+          <Tangent> { -0.972848 -0.197379 0.120861 }
+          <Binormal> { -0.101792 0.401118 -0.164287 }
+        }
+        <Normal> { 0.887112 0.348857 0.302103 }
+      }
+      <Vertex> 1453 {
+        0.716146826744 0.374876648188 0.81318962574
+        <UV>  {
+          0.695381 0.446267
+          <Tangent> { -0.990727 0.035778 0.131070 }
+          <Binormal> { 0.027266 -0.273109 0.280647 }
+        }
+        <Normal> { 0.865352 -0.314524 -0.390149 }
+      }
+      <Vertex> 1454 {
+        0.75382745266 0.502432346344 0.514488816261
+        <UV>  {
+          0.698616 0.438861
+          <Tangent> { -0.997984 -0.061496 0.015690 }
+          <Binormal> { -0.010788 0.256216 0.318024 }
+        }
+        <Normal> { 0.934446 -0.261086 0.242042 }
+      }
+      <Vertex> 1455 {
+        0.617596328259 0.594272494316 0.461545705795
+        <UV>  {
+          0.699785 0.439153
+          <Tangent> { 0.510922 0.838565 -0.189124 }
+          <Binormal> { -0.112236 -0.096418 -0.730720 }
+        }
+        <Normal> { 0.290506 -0.953398 0.081179 }
+      }
+      <Vertex> 1456 {
+        0.59327352047 0.589170277119 0.72767496109
+        <UV>  {
+          0.700373 0.443989
+          <Tangent> { 0.564771 0.800901 -0.198975 }
+          <Binormal> { -0.396017 0.154433 -0.502439 }
+        }
+        <Normal> { -0.053529 -0.965545 -0.254585 }
+      }
+      <Vertex> 1457 {
+        0.747860431671 0.772850453854 0.469460636377
+        <UV>  {
+          0.699863 0.440043
+          <Tangent> { 0.579883 0.792559 -0.188644 }
+          <Binormal> { -0.009543 0.048719 0.175350 }
+        }
+        <Normal> { -0.718314 -0.679373 0.149663 }
+      }
+      <Vertex> 1458 {
+        0.716146826744 0.374876648188 0.81318962574
+        <UV>  {
+          0.695381 0.446267
+          <Tangent> { -0.990727 0.035778 0.131070 }
+          <Binormal> { 0.027266 -0.273109 0.280647 }
+        }
+        <Normal> { 0.865352 -0.314524 -0.390149 }
+      }
+      <Vertex> 1459 {
+        0.59327352047 0.589170277119 0.72767496109
+        <UV>  {
+          0.700373 0.443989
+          <Tangent> { 0.564771 0.800901 -0.198975 }
+          <Binormal> { -0.396017 0.154433 -0.502439 }
+        }
+        <Normal> { -0.053529 -0.965545 -0.254585 }
+      }
+      <Vertex> 1460 {
+        0.617596328259 0.594272494316 0.461545705795
+        <UV>  {
+          0.699785 0.439153
+          <Tangent> { 0.510922 0.838565 -0.189124 }
+          <Binormal> { -0.112236 -0.096418 -0.730720 }
+        }
+        <Normal> { 0.290506 -0.953398 0.081179 }
+      }
+      <Vertex> 1461 {
+        0.617596328259 0.594272494316 0.461545705795
+        <UV>  {
+          0.699785 0.439153
+          <Tangent> { 0.510922 0.838565 -0.189124 }
+          <Binormal> { -0.112236 -0.096418 -0.730720 }
+        }
+        <Normal> { 0.290506 -0.953398 0.081179 }
+      }
+      <Vertex> 1462 {
+        0.75382745266 0.502432346344 0.514488816261
+        <UV>  {
+          0.698616 0.438861
+          <Tangent> { -0.997984 -0.061496 0.015690 }
+          <Binormal> { -0.010788 0.256216 0.318024 }
+        }
+        <Normal> { 0.934446 -0.261086 0.242042 }
+      }
+      <Vertex> 1463 {
+        0.716146826744 0.374876648188 0.81318962574
+        <UV>  {
+          0.695381 0.446267
+          <Tangent> { -0.990727 0.035778 0.131070 }
+          <Binormal> { 0.027266 -0.273109 0.280647 }
+        }
+        <Normal> { 0.865352 -0.314524 -0.390149 }
+      }
+      <Vertex> 1464 {
+        0.942022264004 0.58382076025 1.71244621277
+        <UV>  {
+          0.672282 0.684467
+          <Tangent> { -0.791902 -0.596674 0.129894 }
+          <Binormal> { 0.267192 -0.361717 -0.032618 }
+        }
+        <Normal> { -0.773247 -0.541429 -0.329936 }
+      }
+      <Vertex> 1465 {
+        0.962190151215 0.472681611776 1.44493043423
+        <UV>  {
+          0.672259 0.684485
+          <Tangent> { 0.302107 -0.950588 0.071509 }
+          <Binormal> { 0.625086 0.157107 -0.552369 }
+        }
+        <Normal> { -0.673544 0.290933 -0.679464 }
+      }
+      <Vertex> 1466 {
+        0.919742047787 0.467602431774 1.4436262846
+        <UV>  {
+          0.672261 0.684485
+          <Tangent> { -0.210227 0.104375 0.972065 }
+          <Binormal> { 0.521214 -0.540306 0.170737 }
+        }
+        <Normal> { -0.408887 -0.609149 -0.679464 }
+      }
+      <Vertex> 1467 {
+        0.883647441864 0.462718814611 1.56692922115
+        <UV>  {
+          0.672261 0.684482
+          <Tangent> { -0.282805 -0.338927 0.897301 }
+          <Binormal> { 0.876455 0.108405 0.317181 }
+        }
+        <Normal> { 0.107028 -0.993286 0.043733 }
+      }
+      <Vertex> 1468 {
+        0.942022264004 0.58382076025 1.71244621277
+        <UV>  {
+          0.672282 0.684467
+          <Tangent> { -0.791902 -0.596674 0.129894 }
+          <Binormal> { 0.267192 -0.361717 -0.032618 }
+        }
+        <Normal> { -0.773247 -0.541429 -0.329936 }
+      }
+      <Vertex> 1469 {
+        0.919742047787 0.467602431774 1.4436262846
+        <UV>  {
+          0.672261 0.684485
+          <Tangent> { -0.210227 0.104375 0.972065 }
+          <Binormal> { 0.521214 -0.540306 0.170737 }
+        }
+        <Normal> { -0.408887 -0.609149 -0.679464 }
+      }
+      <Vertex> 1470 {
+        0.942022264004 0.58382076025 1.71244621277
+        <UV>  {
+          0.672282 0.684467
+          <Tangent> { -0.791902 -0.596674 0.129894 }
+          <Binormal> { 0.267192 -0.361717 -0.032618 }
+        }
+        <Normal> { -0.773247 -0.541429 -0.329936 }
+      }
+      <Vertex> 1471 {
+        0.999745249748 0.599729716778 1.62596738338
+        <UV>  {
+          0.672270 0.684481
+          <Tangent> { -0.633730 -0.532508 0.561089 }
+          <Binormal> { 0.451423 -0.662504 -0.118891 }
+        }
+        <Normal> { -0.806269 -0.489883 -0.331553 }
+      }
+      <Vertex> 1472 {
+        0.962190151215 0.472681611776 1.44493043423
+        <UV>  {
+          0.672259 0.684485
+          <Tangent> { 0.302107 -0.950588 0.071509 }
+          <Binormal> { 0.625086 0.157107 -0.552369 }
+        }
+        <Normal> { -0.673544 0.290933 -0.679464 }
+      }
+      <Vertex> 1473 {
+        0.976386606693 0.618881762028 1.71559643745
+        <UV>  {
+          0.672294 0.684465
+          <Tangent> { -0.992242 -0.123055 0.017686 }
+          <Binormal> { 0.004906 -0.002144 0.260334 }
+        }
+        <Normal> { -0.925993 -0.377209 0.014344 }
+      }
+      <Vertex> 1474 {
+        0.942022264004 0.58382076025 1.71244621277
+        <UV>  {
+          0.672282 0.684467
+          <Tangent> { -0.791902 -0.596674 0.129894 }
+          <Binormal> { 0.267192 -0.361717 -0.032618 }
+        }
+        <Normal> { -0.773247 -0.541429 -0.329936 }
+      }
+      <Vertex> 1475 {
+        0.883647441864 0.462718814611 1.56692922115
+        <UV>  {
+          0.672261 0.684482
+          <Tangent> { -0.282805 -0.338927 0.897301 }
+          <Binormal> { 0.876455 0.108405 0.317181 }
+        }
+        <Normal> { 0.107028 -0.993286 0.043733 }
+      }
+      <Vertex> 1476 {
+        0.883647441864 0.462718814611 1.56692922115
+        <UV>  {
+          0.672261 0.684482
+          <Tangent> { -0.282805 -0.338927 0.897301 }
+          <Binormal> { 0.876455 0.108405 0.317181 }
+        }
+        <Normal> { 0.107028 -0.993286 0.043733 }
+      }
+      <Vertex> 1477 {
+        0.909877002239 0.499906629324 1.89722502232
+        <UV>  {
+          0.672236 0.684327
+          <Tangent> { -0.423261 -0.897240 -0.125739 }
+          <Binormal> { 0.270504 -0.164981 0.266695 }
+        }
+        <Normal> { -0.125217 -0.895535 -0.426984 }
+      }
+      <Vertex> 1478 {
+        0.976386606693 0.618881762028 1.71559643745
+        <UV>  {
+          0.672294 0.684465
+          <Tangent> { -0.992242 -0.123055 0.017686 }
+          <Binormal> { 0.004906 -0.002144 0.260334 }
+        }
+        <Normal> { -0.925993 -0.377209 0.014344 }
+      }
+      <Vertex> 1479 {
+        0.942022264004 0.58382076025 1.71244621277
+        <UV>  {
+          0.672282 0.684467
+          <Tangent> { -0.791902 -0.596674 0.129894 }
+          <Binormal> { 0.267192 -0.361717 -0.032618 }
+        }
+        <Normal> { -0.773247 -0.541429 -0.329936 }
+      }
+      <Vertex> 1480 {
+        0.976386606693 0.618881762028 1.71559643745
+        <UV>  {
+          0.672294 0.684465
+          <Tangent> { -0.992242 -0.123055 0.017686 }
+          <Binormal> { 0.004906 -0.002144 0.260334 }
+        }
+        <Normal> { -0.925993 -0.377209 0.014344 }
+      }
+      <Vertex> 1481 {
+        0.999745249748 0.599729716778 1.62596738338
+        <UV>  {
+          0.672270 0.684481
+          <Tangent> { -0.633730 -0.532508 0.561089 }
+          <Binormal> { 0.451423 -0.662504 -0.118891 }
+        }
+        <Normal> { -0.806269 -0.489883 -0.331553 }
+      }
+      <Vertex> 1482 {
+        0.976386606693 0.618881762028 1.71559643745
+        <UV>  {
+          0.672294 0.684465
+          <Tangent> { -0.992242 -0.123055 0.017686 }
+          <Binormal> { 0.004906 -0.002144 0.260334 }
+        }
+        <Normal> { -0.925993 -0.377209 0.014344 }
+      }
+      <Vertex> 1483 {
+        1.08340418339 0.618881106377 1.55323445797
+        <UV>  {
+          0.672264 0.684484
+          <Tangent> { -0.808921 0.518795 -0.276584 }
+          <Binormal> { 0.024497 0.253864 0.404532 }
+        }
+        <Normal> { -0.990509 0.135166 -0.024842 }
+      }
+      <Vertex> 1484 {
+        0.999745249748 0.599729716778 1.62596738338
+        <UV>  {
+          0.672270 0.684481
+          <Tangent> { -0.633730 -0.532508 0.561089 }
+          <Binormal> { 0.451423 -0.662504 -0.118891 }
+        }
+        <Normal> { -0.806269 -0.489883 -0.331553 }
+      }
+      <Vertex> 1485 {
+        0.909877002239 0.499906629324 1.89722502232
+        <UV>  {
+          0.672236 0.684327
+          <Tangent> { -0.423261 -0.897240 -0.125739 }
+          <Binormal> { 0.270504 -0.164981 0.266695 }
+        }
+        <Normal> { -0.125217 -0.895535 -0.426984 }
+      }
+      <Vertex> 1486 {
+        0.997379124165 0.607021808624 1.88823199272
+        <UV>  {
+          0.672372 0.684478
+          <Tangent> { 0.322441 0.037552 -0.945844 }
+          <Binormal> { 0.103083 0.849315 0.068861 }
+        }
+        <Normal> { -0.971343 0.100436 0.215308 }
+      }
+      <Vertex> 1487 {
+        0.976386606693 0.618881762028 1.71559643745
+        <UV>  {
+          0.672294 0.684465
+          <Tangent> { -0.992242 -0.123055 0.017686 }
+          <Binormal> { 0.004906 -0.002144 0.260334 }
+        }
+        <Normal> { -0.925993 -0.377209 0.014344 }
+      }
+      <Vertex> 1488 {
+        0.976386606693 0.618881762028 1.71559643745
+        <UV>  {
+          0.672294 0.684465
+          <Tangent> { -0.992242 -0.123055 0.017686 }
+          <Binormal> { 0.004906 -0.002144 0.260334 }
+        }
+        <Normal> { -0.925993 -0.377209 0.014344 }
+      }
+      <Vertex> 1489 {
+        1.21664011478 0.574545562267 1.57600271702
+        <UV>  {
+          0.672260 0.684490
+          <Tangent> { -0.317918 -0.536156 -0.781962 }
+          <Binormal> { 0.598049 0.493433 -0.581470 }
+        }
+        <Normal> { -0.619282 0.784600 0.028871 }
+      }
+      <Vertex> 1490 {
+        1.08340418339 0.618881106377 1.55323445797
+        <UV>  {
+          0.672264 0.684484
+          <Tangent> { -0.808921 0.518795 -0.276584 }
+          <Binormal> { 0.024497 0.253864 0.404532 }
+        }
+        <Normal> { -0.990509 0.135166 -0.024842 }
+      }
+      <Vertex> 1491 {
+        0.997379124165 0.607021808624 1.88823199272
+        <UV>  {
+          0.672372 0.684478
+          <Tangent> { 0.322441 0.037552 -0.945844 }
+          <Binormal> { 0.103083 0.849315 0.068861 }
+        }
+        <Normal> { -0.971343 0.100436 0.215308 }
+      }
+      <Vertex> 1492 {
+        1.21664011478 0.574545562267 1.57600271702
+        <UV>  {
+          0.672260 0.684490
+          <Tangent> { -0.317918 -0.536156 -0.781962 }
+          <Binormal> { 0.598049 0.493433 -0.581470 }
+        }
+        <Normal> { -0.619282 0.784600 0.028871 }
+      }
+      <Vertex> 1493 {
+        0.976386606693 0.618881762028 1.71559643745
+        <UV>  {
+          0.672294 0.684465
+          <Tangent> { -0.992242 -0.123055 0.017686 }
+          <Binormal> { 0.004906 -0.002144 0.260334 }
+        }
+        <Normal> { -0.925993 -0.377209 0.014344 }
+      }
+      <Vertex> 1494 {
+        0.999745249748 0.599729716778 1.62596738338
+        <UV>  {
+          0.672270 0.684481
+          <Tangent> { -0.633730 -0.532508 0.561089 }
+          <Binormal> { 0.451423 -0.662504 -0.118891 }
+        }
+        <Normal> { -0.806269 -0.489883 -0.331553 }
+      }
+      <Vertex> 1495 {
+        1.08340418339 0.618881106377 1.55323445797
+        <UV>  {
+          0.672264 0.684484
+          <Tangent> { -0.808921 0.518795 -0.276584 }
+          <Binormal> { 0.024497 0.253864 0.404532 }
+        }
+        <Normal> { -0.990509 0.135166 -0.024842 }
+      }
+      <Vertex> 1496 {
+        1.04609751701 0.640286564827 1.31272101402
+        <UV>  {
+          0.672259 0.684488
+          <Tangent> { -0.753180 0.651794 -0.088791 }
+          <Binormal> { -0.332546 -0.271376 0.828763 }
+        }
+        <Normal> { -0.786431 -0.419782 -0.453017 }
+      }
+      <Vertex> 1497 {
+        1.08340418339 0.618881106377 1.55323445797
+        <UV>  {
+          0.672264 0.684484
+          <Tangent> { -0.808921 0.518795 -0.276584 }
+          <Binormal> { 0.024497 0.253864 0.404532 }
+        }
+        <Normal> { -0.990509 0.135166 -0.024842 }
+      }
+      <Vertex> 1498 {
+        1.11790311337 0.589294791222 1.3703751564
+        <UV>  {
+          0.672260 0.684487
+          <Tangent> { -0.787390 0.472615 -0.395793 }
+          <Binormal> { 0.054014 -0.234277 -0.387204 }
+        }
+        <Normal> { -0.425092 0.746910 -0.511216 }
+      }
+      <Vertex> 1499 {
+        1.04609751701 0.640286564827 1.31272101402
+        <UV>  {
+          0.672259 0.684488
+          <Tangent> { -0.753180 0.651794 -0.088791 }
+          <Binormal> { -0.332546 -0.271376 0.828763 }
+        }
+        <Normal> { -0.786431 -0.419782 -0.453017 }
+      }
+      <Vertex> 1500 {
+        1.21664011478 0.574545562267 1.57600271702
+        <UV>  {
+          0.672260 0.684490
+          <Tangent> { -0.317918 -0.536156 -0.781962 }
+          <Binormal> { 0.598049 0.493433 -0.581470 }
+        }
+        <Normal> { -0.619282 0.784600 0.028871 }
+      }
+      <Vertex> 1501 {
+        1.11790311337 0.589294791222 1.3703751564
+        <UV>  {
+          0.672260 0.684487
+          <Tangent> { -0.787390 0.472615 -0.395793 }
+          <Binormal> { 0.054014 -0.234277 -0.387204 }
+        }
+        <Normal> { -0.425092 0.746910 -0.511216 }
+      }
+      <Vertex> 1502 {
+        1.08340418339 0.618881106377 1.55323445797
+        <UV>  {
+          0.672264 0.684484
+          <Tangent> { -0.808921 0.518795 -0.276584 }
+          <Binormal> { 0.024497 0.253864 0.404532 }
+        }
+        <Normal> { -0.990509 0.135166 -0.024842 }
+      }
+      <Vertex> 1503 {
+        0.929585278034 0.419426470995 1.43007719517
+        <UV>  {
+          0.672263 0.684484
+          <Tangent> { -0.497359 0.800777 0.333752 }
+          <Binormal> { -0.505838 -0.058283 -0.613963 }
+        }
+        <Normal> { 0.772149 -0.008759 -0.635334 }
+      }
+      <Vertex> 1504 {
+        0.972033321857 0.424506276846 1.4313801527
+        <UV>  {
+          0.672260 0.684483
+          <Tangent> { 0.460911 -0.829669 0.314977 }
+          <Binormal> { 0.405675 0.422545 0.519379 }
+        }
+        <Normal> { 0.277261 0.627766 -0.727287 }
+      }
+      <Vertex> 1505 {
+        0.951846182346 0.451332837343 1.69892323017
+        <UV>  {
+          0.672241 0.684508
+          <Tangent> { -0.630570 -0.772557 -0.074412 }
+          <Binormal> { 0.213949 -0.194481 0.206121 }
+        }
+        <Normal> { 0.763176 0.608142 -0.218360 }
+      }
+      <Vertex> 1506 {
+        0.929585278034 0.419426470995 1.43007719517
+        <UV>  {
+          0.672263 0.684484
+          <Tangent> { -0.497359 0.800777 0.333752 }
+          <Binormal> { -0.505838 -0.058283 -0.613963 }
+        }
+        <Normal> { 0.772149 -0.008759 -0.635334 }
+      }
+      <Vertex> 1507 {
+        0.951846182346 0.451332837343 1.69892323017
+        <UV>  {
+          0.672241 0.684508
+          <Tangent> { -0.630570 -0.772557 -0.074412 }
+          <Binormal> { 0.213949 -0.194481 0.206121 }
+        }
+        <Normal> { 0.763176 0.608142 -0.218360 }
+      }
+      <Vertex> 1508 {
+        0.898470520973 0.374685436487 1.54652655125
+        <UV>  {
+          0.672263 0.684487
+          <Tangent> { -0.591487 -0.578291 0.561893 }
+          <Binormal> { 0.375844 0.303166 0.707652 }
+        }
+        <Normal> { 0.884640 -0.331492 -0.327830 }
+      }
+      <Vertex> 1509 {
+        0.972033321857 0.424506276846 1.4313801527
+        <UV>  {
+          0.672260 0.684483
+          <Tangent> { 0.460911 -0.829669 0.314977 }
+          <Binormal> { 0.405675 0.422545 0.519379 }
+        }
+        <Normal> { 0.277261 0.627766 -0.727287 }
+      }
+      <Vertex> 1510 {
+        1.01456868649 0.511696338654 1.60556340218
+        <UV>  {
+          0.672257 0.684491
+          <Tangent> { -0.304043 0.159783 0.939163 }
+          <Binormal> { -0.024387 0.551270 -0.101684 }
+        }
+        <Normal> { 0.785638 -0.078433 -0.613636 }
+      }
+      <Vertex> 1511 {
+        0.951846182346 0.451332837343 1.69892323017
+        <UV>  {
+          0.672241 0.684508
+          <Tangent> { -0.630570 -0.772557 -0.074412 }
+          <Binormal> { 0.213949 -0.194481 0.206121 }
+        }
+        <Normal> { 0.763176 0.608142 -0.218360 }
+      }
+      <Vertex> 1512 {
+        0.898470520973 0.374685436487 1.54652655125
+        <UV>  {
+          0.672263 0.684487
+          <Tangent> { -0.591487 -0.578291 0.561893 }
+          <Binormal> { 0.375844 0.303166 0.707652 }
+        }
+        <Normal> { 0.884640 -0.331492 -0.327830 }
+      }
+      <Vertex> 1513 {
+        0.951846182346 0.451332837343 1.69892323017
+        <UV>  {
+          0.672241 0.684508
+          <Tangent> { -0.630570 -0.772557 -0.074412 }
+          <Binormal> { 0.213949 -0.194481 0.206121 }
+        }
+        <Normal> { 0.763176 0.608142 -0.218360 }
+      }
+      <Vertex> 1514 {
+        0.963804841042 0.399764955044 1.73291361332
+        <UV>  {
+          0.672226 0.684519
+          <Tangent> { -0.958480 -0.226839 -0.172798 }
+          <Binormal> { 0.154733 -0.621511 -0.042395 }
+        }
+        <Normal> { 0.832728 0.241310 -0.498306 }
+      }
+      <Vertex> 1515 {
+        0.963804841042 0.399764955044 1.73291361332
+        <UV>  {
+          0.672226 0.684519
+          <Tangent> { -0.958480 -0.226839 -0.172798 }
+          <Binormal> { 0.154733 -0.621511 -0.042395 }
+        }
+        <Normal> { 0.832728 0.241310 -0.498306 }
+      }
+      <Vertex> 1516 {
+        0.974243760109 0.402461975813 1.9196999073
+        <UV>  {
+          0.672165 0.684582
+          <Tangent> { -0.841378 0.432206 -0.324470 }
+          <Binormal> { 0.082117 -0.215075 -0.499424 }
+        }
+        <Normal> { 0.988342 0.085879 0.125523 }
+      }
+      <Vertex> 1517 {
+        0.898470520973 0.374685436487 1.54652655125
+        <UV>  {
+          0.672263 0.684487
+          <Tangent> { -0.591487 -0.578291 0.561893 }
+          <Binormal> { 0.375844 0.303166 0.707652 }
+        }
+        <Normal> { 0.884640 -0.331492 -0.327830 }
+      }
+      <Vertex> 1518 {
+        1.01456868649 0.511696338654 1.60556340218
+        <UV>  {
+          0.672257 0.684491
+          <Tangent> { -0.304043 0.159783 0.939163 }
+          <Binormal> { -0.024387 0.551270 -0.101684 }
+        }
+        <Normal> { 0.785638 -0.078433 -0.613636 }
+      }
+      <Vertex> 1519 {
+        0.963804841042 0.399764955044 1.73291361332
+        <UV>  {
+          0.672226 0.684519
+          <Tangent> { -0.958480 -0.226839 -0.172798 }
+          <Binormal> { 0.154733 -0.621511 -0.042395 }
+        }
+        <Normal> { 0.832728 0.241310 -0.498306 }
+      }
+      <Vertex> 1520 {
+        0.951846182346 0.451332837343 1.69892323017
+        <UV>  {
+          0.672241 0.684508
+          <Tangent> { -0.630570 -0.772557 -0.074412 }
+          <Binormal> { 0.213949 -0.194481 0.206121 }
+        }
+        <Normal> { 0.763176 0.608142 -0.218360 }
+      }
+      <Vertex> 1521 {
+        1.01456868649 0.511696338654 1.60556340218
+        <UV>  {
+          0.672257 0.684491
+          <Tangent> { -0.304043 0.159783 0.939163 }
+          <Binormal> { -0.024387 0.551270 -0.101684 }
+        }
+        <Normal> { 0.785638 -0.078433 -0.613636 }
+      }
+      <Vertex> 1522 {
+        1.16438555717 0.480483800173 1.59373092651
+        <UV>  {
+          0.672258 0.684494
+          <Tangent> { -0.907267 0.021496 -0.420005 }
+          <Binormal> { -0.113828 -0.598090 0.215272 }
+        }
+        <Normal> { 0.939268 -0.259529 -0.224403 }
+      }
+      <Vertex> 1523 {
+        0.963804841042 0.399764955044 1.73291361332
+        <UV>  {
+          0.672226 0.684519
+          <Tangent> { -0.958480 -0.226839 -0.172798 }
+          <Binormal> { 0.154733 -0.621511 -0.042395 }
+        }
+        <Normal> { 0.832728 0.241310 -0.498306 }
+      }
+      <Vertex> 1524 {
+        0.963804841042 0.399764955044 1.73291361332
+        <UV>  {
+          0.672226 0.684519
+          <Tangent> { -0.958480 -0.226839 -0.172798 }
+          <Binormal> { 0.154733 -0.621511 -0.042395 }
+        }
+        <Normal> { 0.832728 0.241310 -0.498306 }
+      }
+      <Vertex> 1525 {
+        1.05181753635 0.481131225824 1.90535795689
+        <UV>  {
+          0.672260 0.684574
+          <Tangent> { -0.032821 -0.979828 -0.197128 }
+          <Binormal> { -0.245728 -0.012732 0.104199 }
+        }
+        <Normal> { 0.136235 0.892331 0.430311 }
+      }
+      <Vertex> 1526 {
+        0.974243760109 0.402461975813 1.9196999073
+        <UV>  {
+          0.672165 0.684582
+          <Tangent> { -0.841378 0.432206 -0.324470 }
+          <Binormal> { 0.082117 -0.215075 -0.499424 }
+        }
+        <Normal> { 0.988342 0.085879 0.125523 }
+      }
+      <Vertex> 1527 {
+        1.16438555717 0.480483800173 1.59373092651
+        <UV>  {
+          0.672258 0.684494
+          <Tangent> { -0.907267 0.021496 -0.420005 }
+          <Binormal> { -0.113828 -0.598090 0.215272 }
+        }
+        <Normal> { 0.939268 -0.259529 -0.224403 }
+      }
+      <Vertex> 1528 {
+        1.22328472137 0.437045097351 1.5567060709
+        <UV>  {
+          0.672258 0.684491
+          <Tangent> { -0.513355 -0.393981 -0.762395 }
+          <Binormal> { 0.461006 -0.724930 0.064205 }
+        }
+        <Normal> { 0.838618 0.518540 -0.166692 }
+      }
+      <Vertex> 1529 {
+        0.963804841042 0.399764955044 1.73291361332
+        <UV>  {
+          0.672226 0.684519
+          <Tangent> { -0.958480 -0.226839 -0.172798 }
+          <Binormal> { 0.154733 -0.621511 -0.042395 }
+        }
+        <Normal> { 0.832728 0.241310 -0.498306 }
+      }
+      <Vertex> 1530 {
+        0.963804841042 0.399764955044 1.73291361332
+        <UV>  {
+          0.672226 0.684519
+          <Tangent> { -0.958480 -0.226839 -0.172798 }
+          <Binormal> { 0.154733 -0.621511 -0.042395 }
+        }
+        <Normal> { 0.832728 0.241310 -0.498306 }
+      }
+      <Vertex> 1531 {
+        1.22328472137 0.437045097351 1.5567060709
+        <UV>  {
+          0.672258 0.684491
+          <Tangent> { -0.513355 -0.393981 -0.762395 }
+          <Binormal> { 0.461006 -0.724930 0.064205 }
+        }
+        <Normal> { 0.838618 0.518540 -0.166692 }
+      }
+      <Vertex> 1532 {
+        1.05181753635 0.481131225824 1.90535795689
+        <UV>  {
+          0.672260 0.684574
+          <Tangent> { -0.032821 -0.979828 -0.197128 }
+          <Binormal> { -0.245728 -0.012732 0.104199 }
+        }
+        <Normal> { 0.136235 0.892331 0.430311 }
+      }
+      <Vertex> 1533 {
+        1.04609727859 0.39474183321 1.31271970272
+        <UV>  {
+          0.672260 0.684489
+          <Tangent> { -0.766464 0.625971 -0.143855 }
+          <Binormal> { -0.306610 -0.532718 -0.684444 }
+        }
+        <Normal> { 0.805567 0.235084 -0.543840 }
+      }
+      <Vertex> 1534 {
+        1.16438555717 0.480483800173 1.59373092651
+        <UV>  {
+          0.672258 0.684494
+          <Tangent> { -0.907267 0.021496 -0.420005 }
+          <Binormal> { -0.113828 -0.598090 0.215272 }
+        }
+        <Normal> { 0.939268 -0.259529 -0.224403 }
+      }
+      <Vertex> 1535 {
+        1.01456868649 0.511696338654 1.60556340218
+        <UV>  {
+          0.672257 0.684491
+          <Tangent> { -0.304043 0.159783 0.939163 }
+          <Binormal> { -0.024387 0.551270 -0.101684 }
+        }
+        <Normal> { 0.785638 -0.078433 -0.613636 }
+      }
+      <Vertex> 1536 {
+        1.04609727859 0.39474183321 1.31271970272
+        <UV>  {
+          0.672260 0.684489
+          <Tangent> { -0.766464 0.625971 -0.143855 }
+          <Binormal> { -0.306610 -0.532718 -0.684444 }
+        }
+        <Normal> { 0.805567 0.235084 -0.543840 }
+      }
+      <Vertex> 1537 {
+        1.11790275574 0.435529142618 1.3703738451
+        <UV>  {
+          0.672259 0.684489
+          <Tangent> { -0.565492 -0.384094 -0.729857 }
+          <Binormal> { 0.707231 -0.614614 -0.224515 }
+        }
+        <Normal> { 0.513688 0.745933 -0.423872 }
+      }
+      <Vertex> 1538 {
+        1.16438555717 0.480483800173 1.59373092651
+        <UV>  {
+          0.672258 0.684494
+          <Tangent> { -0.907267 0.021496 -0.420005 }
+          <Binormal> { -0.113828 -0.598090 0.215272 }
+        }
+        <Normal> { 0.939268 -0.259529 -0.224403 }
+      }
+      <Vertex> 1539 {
+        1.16438555717 0.480483800173 1.59373092651
+        <UV>  {
+          0.672258 0.684494
+          <Tangent> { -0.907267 0.021496 -0.420005 }
+          <Binormal> { -0.113828 -0.598090 0.215272 }
+        }
+        <Normal> { 0.939268 -0.259529 -0.224403 }
+      }
+      <Vertex> 1540 {
+        1.11790275574 0.435529142618 1.3703738451
+        <UV>  {
+          0.672259 0.684489
+          <Tangent> { -0.565492 -0.384094 -0.729857 }
+          <Binormal> { 0.707231 -0.614614 -0.224515 }
+        }
+        <Normal> { 0.513688 0.745933 -0.423872 }
+      }
+      <Vertex> 1541 {
+        1.22328472137 0.437045097351 1.5567060709
+        <UV>  {
+          0.672258 0.684491
+          <Tangent> { -0.513355 -0.393981 -0.762395 }
+          <Binormal> { 0.461006 -0.724930 0.064205 }
+        }
+        <Normal> { 0.838618 0.518540 -0.166692 }
+      }
+      <Vertex> 1542 {
+        1.21664011478 0.574545562267 1.57600271702
+        <UV>  {
+          0.672260 0.684490
+          <Tangent> { -0.317918 -0.536156 -0.781962 }
+          <Binormal> { 0.598049 0.493433 -0.581470 }
+        }
+        <Normal> { -0.619282 0.784600 0.028871 }
+      }
+      <Vertex> 1543 {
+        0.997379124165 0.607021808624 1.88823199272
+        <UV>  {
+          0.672372 0.684478
+          <Tangent> { 0.322441 0.037552 -0.945844 }
+          <Binormal> { 0.103083 0.849315 0.068861 }
+        }
+        <Normal> { -0.971343 0.100436 0.215308 }
+      }
+      <Vertex> 1544 {
+        1.05181753635 0.481131225824 1.90535795689
+        <UV>  {
+          0.672260 0.684574
+          <Tangent> { -0.032821 -0.979828 -0.197128 }
+          <Binormal> { -0.245728 -0.012732 0.104199 }
+        }
+        <Normal> { 0.136235 0.892331 0.430311 }
+      }
+      <Vertex> 1545 {
+        1.05181753635 0.481131225824 1.90535795689
+        <UV>  {
+          0.672260 0.684574
+          <Tangent> { -0.032821 -0.979828 -0.197128 }
+          <Binormal> { -0.245728 -0.012732 0.104199 }
+        }
+        <Normal> { 0.136235 0.892331 0.430311 }
+      }
+      <Vertex> 1546 {
+        1.22328472137 0.437045097351 1.5567060709
+        <UV>  {
+          0.672258 0.684491
+          <Tangent> { -0.513355 -0.393981 -0.762395 }
+          <Binormal> { 0.461006 -0.724930 0.064205 }
+        }
+        <Normal> { 0.838618 0.518540 -0.166692 }
+      }
+      <Vertex> 1547 {
+        1.21664011478 0.574545562267 1.57600271702
+        <UV>  {
+          0.672260 0.684490
+          <Tangent> { -0.317918 -0.536156 -0.781962 }
+          <Binormal> { 0.598049 0.493433 -0.581470 }
+        }
+        <Normal> { -0.619282 0.784600 0.028871 }
+      }
+      <Vertex> 1548 {
+        1.21664011478 0.574545562267 1.57600271702
+        <UV>  {
+          0.672260 0.684490
+          <Tangent> { -0.317918 -0.536156 -0.781962 }
+          <Binormal> { 0.598049 0.493433 -0.581470 }
+        }
+        <Normal> { -0.619282 0.784600 0.028871 }
+      }
+      <Vertex> 1549 {
+        1.11790275574 0.435529142618 1.3703738451
+        <UV>  {
+          0.672259 0.684489
+          <Tangent> { -0.565492 -0.384094 -0.729857 }
+          <Binormal> { 0.707231 -0.614614 -0.224515 }
+        }
+        <Normal> { 0.513688 0.745933 -0.423872 }
+      }
+      <Vertex> 1550 {
+        1.11790311337 0.589294791222 1.3703751564
+        <UV>  {
+          0.672260 0.684487
+          <Tangent> { -0.787390 0.472615 -0.395793 }
+          <Binormal> { 0.054014 -0.234277 -0.387204 }
+        }
+        <Normal> { -0.425092 0.746910 -0.511216 }
+      }
+      <Vertex> 1551 {
+        1.22328472137 0.437045097351 1.5567060709
+        <UV>  {
+          0.672258 0.684491
+          <Tangent> { -0.513355 -0.393981 -0.762395 }
+          <Binormal> { 0.461006 -0.724930 0.064205 }
+        }
+        <Normal> { 0.838618 0.518540 -0.166692 }
+      }
+      <Vertex> 1552 {
+        1.11790275574 0.435529142618 1.3703738451
+        <UV>  {
+          0.672259 0.684489
+          <Tangent> { -0.565492 -0.384094 -0.729857 }
+          <Binormal> { 0.707231 -0.614614 -0.224515 }
+        }
+        <Normal> { 0.513688 0.745933 -0.423872 }
+      }
+      <Vertex> 1553 {
+        1.21664011478 0.574545562267 1.57600271702
+        <UV>  {
+          0.672260 0.684490
+          <Tangent> { -0.317918 -0.536156 -0.781962 }
+          <Binormal> { 0.598049 0.493433 -0.581470 }
+        }
+        <Normal> { -0.619282 0.784600 0.028871 }
+      }
+      <Vertex> 1554 {
+        0.883647441864 0.462718814611 1.56692922115
+        <UV>  {
+          0.672261 0.684482
+          <Tangent> { -0.282805 -0.338927 0.897301 }
+          <Binormal> { 0.876455 0.108405 0.317181 }
+        }
+        <Normal> { 0.107028 -0.993286 0.043733 }
+      }
+      <Vertex> 1555 {
+        0.974243760109 0.402461975813 1.9196999073
+        <UV>  {
+          0.672165 0.684582
+          <Tangent> { -0.841378 0.432206 -0.324470 }
+          <Binormal> { 0.082117 -0.215075 -0.499424 }
+        }
+        <Normal> { 0.988342 0.085879 0.125523 }
+      }
+      <Vertex> 1556 {
+        0.909877002239 0.499906629324 1.89722502232
+        <UV>  {
+          0.672236 0.684327
+          <Tangent> { -0.423261 -0.897240 -0.125739 }
+          <Binormal> { 0.270504 -0.164981 0.266695 }
+        }
+        <Normal> { -0.125217 -0.895535 -0.426984 }
+      }
+      <Vertex> 1557 {
+        0.898470520973 0.374685436487 1.54652655125
+        <UV>  {
+          0.672263 0.684487
+          <Tangent> { -0.591487 -0.578291 0.561893 }
+          <Binormal> { 0.375844 0.303166 0.707652 }
+        }
+        <Normal> { 0.884640 -0.331492 -0.327830 }
+      }
+      <Vertex> 1558 {
+        0.974243760109 0.402461975813 1.9196999073
+        <UV>  {
+          0.672165 0.684582
+          <Tangent> { -0.841378 0.432206 -0.324470 }
+          <Binormal> { 0.082117 -0.215075 -0.499424 }
+        }
+        <Normal> { 0.988342 0.085879 0.125523 }
+      }
+      <Vertex> 1559 {
+        0.883647441864 0.462718814611 1.56692922115
+        <UV>  {
+          0.672261 0.684482
+          <Tangent> { -0.282805 -0.338927 0.897301 }
+          <Binormal> { 0.876455 0.108405 0.317181 }
+        }
+        <Normal> { 0.107028 -0.993286 0.043733 }
+      }
+      <Vertex> 1560 {
+        0.883647441864 0.462718814611 1.56692922115
+        <UV>  {
+          0.672261 0.684482
+          <Tangent> { -0.282805 -0.338927 0.897301 }
+          <Binormal> { 0.876455 0.108405 0.317181 }
+        }
+        <Normal> { 0.107028 -0.993286 0.043733 }
+      }
+      <Vertex> 1561 {
+        0.919742047787 0.467602431774 1.4436262846
+        <UV>  {
+          0.672261 0.684485
+          <Tangent> { -0.210227 0.104375 0.972065 }
+          <Binormal> { 0.521214 -0.540306 0.170737 }
+        }
+        <Normal> { -0.408887 -0.609149 -0.679464 }
+      }
+      <Vertex> 1562 {
+        0.898470520973 0.374685436487 1.54652655125
+        <UV>  {
+          0.672263 0.684487
+          <Tangent> { -0.591487 -0.578291 0.561893 }
+          <Binormal> { 0.375844 0.303166 0.707652 }
+        }
+        <Normal> { 0.884640 -0.331492 -0.327830 }
+      }
+      <Vertex> 1563 {
+        0.929585278034 0.419426470995 1.43007719517
+        <UV>  {
+          0.672263 0.684484
+          <Tangent> { -0.497359 0.800777 0.333752 }
+          <Binormal> { -0.505838 -0.058283 -0.613963 }
+        }
+        <Normal> { 0.772149 -0.008759 -0.635334 }
+      }
+      <Vertex> 1564 {
+        0.898470520973 0.374685436487 1.54652655125
+        <UV>  {
+          0.672263 0.684487
+          <Tangent> { -0.591487 -0.578291 0.561893 }
+          <Binormal> { 0.375844 0.303166 0.707652 }
+        }
+        <Normal> { 0.884640 -0.331492 -0.327830 }
+      }
+      <Vertex> 1565 {
+        0.919742047787 0.467602431774 1.4436262846
+        <UV>  {
+          0.672261 0.684485
+          <Tangent> { -0.210227 0.104375 0.972065 }
+          <Binormal> { 0.521214 -0.540306 0.170737 }
+        }
+        <Normal> { -0.408887 -0.609149 -0.679464 }
+      }
+      <Vertex> 1566 {
+        0.919742047787 0.467602431774 1.4436262846
+        <UV>  {
+          0.672261 0.684485
+          <Tangent> { -0.210227 0.104375 0.972065 }
+          <Binormal> { 0.521214 -0.540306 0.170737 }
+        }
+        <Normal> { -0.408887 -0.609149 -0.679464 }
+      }
+      <Vertex> 1567 {
+        0.962190151215 0.472681611776 1.44493043423
+        <UV>  {
+          0.672259 0.684485
+          <Tangent> { 0.302107 -0.950588 0.071509 }
+          <Binormal> { 0.625086 0.157107 -0.552369 }
+        }
+        <Normal> { -0.673544 0.290933 -0.679464 }
+      }
+      <Vertex> 1568 {
+        0.972033321857 0.424506276846 1.4313801527
+        <UV>  {
+          0.672260 0.684483
+          <Tangent> { 0.460911 -0.829669 0.314977 }
+          <Binormal> { 0.405675 0.422545 0.519379 }
+        }
+        <Normal> { 0.277261 0.627766 -0.727287 }
+      }
+      <Vertex> 1569 {
+        0.919742047787 0.467602431774 1.4436262846
+        <UV>  {
+          0.672261 0.684485
+          <Tangent> { -0.210227 0.104375 0.972065 }
+          <Binormal> { 0.521214 -0.540306 0.170737 }
+        }
+        <Normal> { -0.408887 -0.609149 -0.679464 }
+      }
+      <Vertex> 1570 {
+        0.972033321857 0.424506276846 1.4313801527
+        <UV>  {
+          0.672260 0.684483
+          <Tangent> { 0.460911 -0.829669 0.314977 }
+          <Binormal> { 0.405675 0.422545 0.519379 }
+        }
+        <Normal> { 0.277261 0.627766 -0.727287 }
+      }
+      <Vertex> 1571 {
+        0.929585278034 0.419426470995 1.43007719517
+        <UV>  {
+          0.672263 0.684484
+          <Tangent> { -0.497359 0.800777 0.333752 }
+          <Binormal> { -0.505838 -0.058283 -0.613963 }
+        }
+        <Normal> { 0.772149 -0.008759 -0.635334 }
+      }
+      <Vertex> 1572 {
+        0.999745249748 0.599729716778 1.62596738338
+        <UV>  {
+          0.672270 0.684481
+          <Tangent> { -0.633730 -0.532508 0.561089 }
+          <Binormal> { 0.451423 -0.662504 -0.118891 }
+        }
+        <Normal> { -0.806269 -0.489883 -0.331553 }
+      }
+      <Vertex> 1573 {
+        1.01456868649 0.511696338654 1.60556340218
+        <UV>  {
+          0.672257 0.684491
+          <Tangent> { -0.304043 0.159783 0.939163 }
+          <Binormal> { -0.024387 0.551270 -0.101684 }
+        }
+        <Normal> { 0.785638 -0.078433 -0.613636 }
+      }
+      <Vertex> 1574 {
+        0.962190151215 0.472681611776 1.44493043423
+        <UV>  {
+          0.672259 0.684485
+          <Tangent> { 0.302107 -0.950588 0.071509 }
+          <Binormal> { 0.625086 0.157107 -0.552369 }
+        }
+        <Normal> { -0.673544 0.290933 -0.679464 }
+      }
+      <Vertex> 1575 {
+        0.972033321857 0.424506276846 1.4313801527
+        <UV>  {
+          0.672260 0.684483
+          <Tangent> { 0.460911 -0.829669 0.314977 }
+          <Binormal> { 0.405675 0.422545 0.519379 }
+        }
+        <Normal> { 0.277261 0.627766 -0.727287 }
+      }
+      <Vertex> 1576 {
+        0.962190151215 0.472681611776 1.44493043423
+        <UV>  {
+          0.672259 0.684485
+          <Tangent> { 0.302107 -0.950588 0.071509 }
+          <Binormal> { 0.625086 0.157107 -0.552369 }
+        }
+        <Normal> { -0.673544 0.290933 -0.679464 }
+      }
+      <Vertex> 1577 {
+        1.01456868649 0.511696338654 1.60556340218
+        <UV>  {
+          0.672257 0.684491
+          <Tangent> { -0.304043 0.159783 0.939163 }
+          <Binormal> { -0.024387 0.551270 -0.101684 }
+        }
+        <Normal> { 0.785638 -0.078433 -0.613636 }
+      }
+      <Vertex> 1578 {
+        1.01456868649 0.511696338654 1.60556340218
+        <UV>  {
+          0.672257 0.684491
+          <Tangent> { -0.304043 0.159783 0.939163 }
+          <Binormal> { -0.024387 0.551270 -0.101684 }
+        }
+        <Normal> { 0.785638 -0.078433 -0.613636 }
+      }
+      <Vertex> 1579 {
+        0.999745249748 0.599729716778 1.62596738338
+        <UV>  {
+          0.672270 0.684481
+          <Tangent> { -0.633730 -0.532508 0.561089 }
+          <Binormal> { 0.451423 -0.662504 -0.118891 }
+        }
+        <Normal> { -0.806269 -0.489883 -0.331553 }
+      }
+      <Vertex> 1580 {
+        1.04609751701 0.640286564827 1.31272101402
+        <UV>  {
+          0.672259 0.684488
+          <Tangent> { -0.753180 0.651794 -0.088791 }
+          <Binormal> { -0.332546 -0.271376 0.828763 }
+        }
+        <Normal> { -0.786431 -0.419782 -0.453017 }
+      }
+      <Vertex> 1581 {
+        1.04609751701 0.640286564827 1.31272101402
+        <UV>  {
+          0.672259 0.684488
+          <Tangent> { -0.753180 0.651794 -0.088791 }
+          <Binormal> { -0.332546 -0.271376 0.828763 }
+        }
+        <Normal> { -0.786431 -0.419782 -0.453017 }
+      }
+      <Vertex> 1582 {
+        1.04609727859 0.39474183321 1.31271970272
+        <UV>  {
+          0.672260 0.684489
+          <Tangent> { -0.766464 0.625971 -0.143855 }
+          <Binormal> { -0.306610 -0.532718 -0.684444 }
+        }
+        <Normal> { 0.805567 0.235084 -0.543840 }
+      }
+      <Vertex> 1583 {
+        1.01456868649 0.511696338654 1.60556340218
+        <UV>  {
+          0.672257 0.684491
+          <Tangent> { -0.304043 0.159783 0.939163 }
+          <Binormal> { -0.024387 0.551270 -0.101684 }
+        }
+        <Normal> { 0.785638 -0.078433 -0.613636 }
+      }
+      <Vertex> 1584 {
+        1.04609751701 0.640286564827 1.31272101402
+        <UV>  {
+          0.672259 0.684488
+          <Tangent> { -0.753180 0.651794 -0.088791 }
+          <Binormal> { -0.332546 -0.271376 0.828763 }
+        }
+        <Normal> { -0.786431 -0.419782 -0.453017 }
+      }
+      <Vertex> 1585 {
+        1.11790311337 0.589294791222 1.3703751564
+        <UV>  {
+          0.672260 0.684487
+          <Tangent> { -0.787390 0.472615 -0.395793 }
+          <Binormal> { 0.054014 -0.234277 -0.387204 }
+        }
+        <Normal> { -0.425092 0.746910 -0.511216 }
+      }
+      <Vertex> 1586 {
+        1.04609727859 0.39474183321 1.31271970272
+        <UV>  {
+          0.672260 0.684489
+          <Tangent> { -0.766464 0.625971 -0.143855 }
+          <Binormal> { -0.306610 -0.532718 -0.684444 }
+        }
+        <Normal> { 0.805567 0.235084 -0.543840 }
+      }
+      <Vertex> 1587 {
+        1.11790311337 0.589294791222 1.3703751564
+        <UV>  {
+          0.672260 0.684487
+          <Tangent> { -0.787390 0.472615 -0.395793 }
+          <Binormal> { 0.054014 -0.234277 -0.387204 }
+        }
+        <Normal> { -0.425092 0.746910 -0.511216 }
+      }
+      <Vertex> 1588 {
+        1.11790275574 0.435529142618 1.3703738451
+        <UV>  {
+          0.672259 0.684489
+          <Tangent> { -0.565492 -0.384094 -0.729857 }
+          <Binormal> { 0.707231 -0.614614 -0.224515 }
+        }
+        <Normal> { 0.513688 0.745933 -0.423872 }
+      }
+      <Vertex> 1589 {
+        1.04609727859 0.39474183321 1.31271970272
+        <UV>  {
+          0.672260 0.684489
+          <Tangent> { -0.766464 0.625971 -0.143855 }
+          <Binormal> { -0.306610 -0.532718 -0.684444 }
+        }
+        <Normal> { 0.805567 0.235084 -0.543840 }
+      }
+      <Vertex> 1590 {
+        0.93644785881 -0.196572929621 0.339521974325
+        <UV>  {
+          0.699417 0.426237
+          <Tangent> { -0.753808 -0.355800 -0.552430 }
+          <Binormal> { -0.320883 0.190703 0.315030 }
+        }
+        <Normal> { 0.664479 -0.104282 0.739952 }
+      }
+      <Vertex> 1591 {
+        0.916310846806 0.0228228960186 0.414551883936
+        <UV>  {
+          0.698969 0.430066
+          <Tangent> { -0.842897 -0.508914 -0.174733 }
+          <Binormal> { -0.454207 0.754242 -0.005693 }
+        }
+        <Normal> { 0.264901 0.166692 0.949736 }
+      }
+      <Vertex> 1592 {
+        0.856645822525 -0.150652870536 0.284991890192
+        <UV>  {
+          0.698829 0.426875
+          <Tangent> { -0.385161 -0.867734 -0.314148 }
+          <Binormal> { -0.495929 -0.003947 0.618935 }
+        }
+        <Normal> { 0.772881 0.134281 0.620136 }
+      }
+      <Vertex> 1593 {
+        0.987742066383 0.0228228922933 0.475778609514
+        <UV>  {
+          0.698770 0.429851
+          <Tangent> { -0.888039 -0.458488 0.034299 }
+          <Binormal> { -0.409889 0.773737 -0.269643 }
+        }
+        <Normal> { 0.258766 0.437239 0.861293 }
+      }
+      <Vertex> 1594 {
+        0.916310846806 0.0228228960186 0.414551883936
+        <UV>  {
+          0.698969 0.430066
+          <Tangent> { -0.842897 -0.508914 -0.174733 }
+          <Binormal> { -0.454207 0.754242 -0.005693 }
+        }
+        <Normal> { 0.264901 0.166692 0.949736 }
+      }
+      <Vertex> 1595 {
+        0.93644785881 -0.196572929621 0.339521974325
+        <UV>  {
+          0.699417 0.426237
+          <Tangent> { -0.753808 -0.355800 -0.552430 }
+          <Binormal> { -0.320883 0.190703 0.315030 }
+        }
+        <Normal> { 0.664479 -0.104282 0.739952 }
+      }
+      <Vertex> 1596 {
+        0.916310846806 0.0228228960186 0.414551883936
+        <UV>  {
+          0.698969 0.430066
+          <Tangent> { -0.842897 -0.508914 -0.174733 }
+          <Binormal> { -0.454207 0.754242 -0.005693 }
+        }
+        <Normal> { 0.264901 0.166692 0.949736 }
+      }
+      <Vertex> 1597 {
+        0.84998190403 0.0228228978813 0.531903147697
+        <UV>  {
+          0.698685 0.430955
+          <Tangent> { -0.870987 -0.401357 0.283364 }
+          <Binormal> { -0.477835 0.696277 -0.482531 }
+        }
+        <Normal> { 0.206030 0.648946 0.732383 }
+      }
+      <Vertex> 1598 {
+        0.809490084648 -0.19657291472 0.393932461739
+        <UV>  {
+          0.698444 0.428190
+          <Tangent> { -0.862903 -0.496770 0.092834 }
+          <Binormal> { -0.319974 0.505968 -0.266677 }
+        }
+        <Normal> { 0.566240 0.635029 0.525437 }
+      }
+      <Vertex> 1599 {
+        0.856645822525 -0.150652870536 0.284991890192
+        <UV>  {
+          0.698829 0.426875
+          <Tangent> { -0.385161 -0.867734 -0.314148 }
+          <Binormal> { -0.495929 -0.003947 0.618935 }
+        }
+        <Normal> { 0.772881 0.134281 0.620136 }
+      }
+      <Vertex> 1600 {
+        0.916310846806 0.0228228960186 0.414551883936
+        <UV>  {
+          0.698969 0.430066
+          <Tangent> { -0.842897 -0.508914 -0.174733 }
+          <Binormal> { -0.454207 0.754242 -0.005693 }
+        }
+        <Normal> { 0.264901 0.166692 0.949736 }
+      }
+      <Vertex> 1601 {
+        0.809490084648 -0.19657291472 0.393932461739
+        <UV>  {
+          0.698444 0.428190
+          <Tangent> { -0.862903 -0.496770 0.092834 }
+          <Binormal> { -0.319974 0.505968 -0.266677 }
+        }
+        <Normal> { 0.566240 0.635029 0.525437 }
+      }
+      <Vertex> 1602 {
+        0.809490084648 -0.19657291472 0.393932461739
+        <UV>  {
+          0.698444 0.428190
+          <Tangent> { -0.862903 -0.496770 0.092834 }
+          <Binormal> { -0.319974 0.505968 -0.266677 }
+        }
+        <Normal> { 0.566240 0.635029 0.525437 }
+      }
+      <Vertex> 1603 {
+        0.747937321663 0.0228229034692 0.572720944881
+        <UV>  {
+          0.698756 0.431490
+          <Tangent> { -0.905651 -0.351233 0.237553 }
+          <Binormal> { -0.362320 0.931889 -0.003477 }
+        }
+        <Normal> { 0.234596 0.094821 0.967437 }
+      }
+      <Vertex> 1604 {
+        0.753166258335 -0.19657291472 0.422951370478
+        <UV>  {
+          0.698784 0.428975
+          <Tangent> { -0.672706 -0.468726 -0.572506 }
+          <Binormal> { -0.421591 0.066520 0.440916 }
+        }
+        <Normal> { 0.699728 -0.167882 0.694388 }
+      }
+      <Vertex> 1605 {
+        0.809490084648 -0.19657291472 0.393932461739
+        <UV>  {
+          0.698444 0.428190
+          <Tangent> { -0.862903 -0.496770 0.092834 }
+          <Binormal> { -0.319974 0.505968 -0.266677 }
+        }
+        <Normal> { 0.566240 0.635029 0.525437 }
+      }
+      <Vertex> 1606 {
+        0.84998190403 0.0228228978813 0.531903147697
+        <UV>  {
+          0.698685 0.430955
+          <Tangent> { -0.870987 -0.401357 0.283364 }
+          <Binormal> { -0.477835 0.696277 -0.482531 }
+        }
+        <Normal> { 0.206030 0.648946 0.732383 }
+      }
+      <Vertex> 1607 {
+        0.747937321663 0.0228229034692 0.572720944881
+        <UV>  {
+          0.698756 0.431490
+          <Tangent> { -0.905651 -0.351233 0.237553 }
+          <Binormal> { -0.362320 0.931889 -0.003477 }
+        }
+        <Normal> { 0.234596 0.094821 0.967437 }
+      }
+      <Vertex> 1608 {
+        0.93644785881 -0.196572929621 0.339521974325
+        <UV>  {
+          0.699417 0.426237
+          <Tangent> { -0.753808 -0.355800 -0.552430 }
+          <Binormal> { -0.320883 0.190703 0.315030 }
+        }
+        <Normal> { 0.664479 -0.104282 0.739952 }
+      }
+      <Vertex> 1609 {
+        0.964550018311 -0.196572929621 0.25473728776
+        <UV>  {
+          0.699217 0.424546
+          <Tangent> { -0.603725 -0.711625 0.359313 }
+          <Binormal> { -0.431283 0.310313 -0.110070 }
+        }
+        <Normal> { 0.540269 0.819147 0.192450 }
+      }
+      <Vertex> 1610 {
+        0.987742066383 0.0228228922933 0.475778609514
+        <UV>  {
+          0.698770 0.429851
+          <Tangent> { -0.888039 -0.458488 0.034299 }
+          <Binormal> { -0.409889 0.773737 -0.269643 }
+        }
+        <Normal> { 0.258766 0.437239 0.861293 }
+      }
+      <Vertex> 1611 {
+        0.964550018311 -0.196572929621 0.25473728776
+        <UV>  {
+          0.699217 0.424546
+          <Tangent> { -0.603725 -0.711625 0.359313 }
+          <Binormal> { -0.431283 0.310313 -0.110070 }
+        }
+        <Normal> { 0.540269 0.819147 0.192450 }
+      }
+      <Vertex> 1612 {
+        1.08468437195 0.022822888568 0.34312069416
+        <UV>  {
+          0.699250 0.428643
+          <Tangent> { -0.473679 -0.432068 0.767427 }
+          <Binormal> { -0.835694 0.353592 -0.316740 }
+        }
+        <Normal> { 0.265297 0.910672 0.316660 }
+      }
+      <Vertex> 1613 {
+        0.987742066383 0.0228228922933 0.475778609514
+        <UV>  {
+          0.698770 0.429851
+          <Tangent> { -0.888039 -0.458488 0.034299 }
+          <Binormal> { -0.409889 0.773737 -0.269643 }
+        }
+        <Normal> { 0.258766 0.437239 0.861293 }
+      }
+      <Vertex> 1614 {
+        1.09488880634 0.022822888568 0.118622630835
+        <UV>  {
+          0.700371 0.426941
+          <Tangent> { 0.879748 -0.190016 0.435818 }
+          <Binormal> { -0.303956 0.458138 0.813317 }
+        }
+        <Normal> { 0.186895 0.884121 -0.428175 }
+      }
+      <Vertex> 1615 {
+        0.964550018311 -0.196572929621 0.25473728776
+        <UV>  {
+          0.699217 0.424546
+          <Tangent> { -0.603725 -0.711625 0.359313 }
+          <Binormal> { -0.431283 0.310313 -0.110070 }
+        }
+        <Normal> { 0.540269 0.819147 0.192450 }
+      }
+      <Vertex> 1616 {
+        0.971804738045 -0.196572929621 0.0951332002878
+        <UV>  {
+          0.699578 0.420025
+          <Tangent> { -0.077475 0.510961 -0.856105 }
+          <Binormal> { 0.056377 -0.452120 -0.274947 }
+        }
+        <Normal> { 0.461959 0.502152 -0.731010 }
+      }
+      <Vertex> 1617 {
+        1.09488880634 0.022822888568 0.118622630835
+        <UV>  {
+          0.700371 0.426941
+          <Tangent> { 0.879748 -0.190016 0.435818 }
+          <Binormal> { -0.303956 0.458138 0.813317 }
+        }
+        <Normal> { 0.186895 0.884121 -0.428175 }
+      }
+      <Vertex> 1618 {
+        1.08468437195 0.022822888568 0.34312069416
+        <UV>  {
+          0.699250 0.428643
+          <Tangent> { -0.473679 -0.432068 0.767427 }
+          <Binormal> { -0.835694 0.353592 -0.316740 }
+        }
+        <Normal> { 0.265297 0.910672 0.316660 }
+      }
+      <Vertex> 1619 {
+        0.964550018311 -0.196572929621 0.25473728776
+        <UV>  {
+          0.699217 0.424546
+          <Tangent> { -0.603725 -0.711625 0.359313 }
+          <Binormal> { -0.431283 0.310313 -0.110070 }
+        }
+        <Normal> { 0.540269 0.819147 0.192450 }
+      }
+      <Vertex> 1620 {
+        0.753166258335 -0.19657291472 0.422951370478
+        <UV>  {
+          0.698784 0.428975
+          <Tangent> { -0.672706 -0.468726 -0.572506 }
+          <Binormal> { -0.421591 0.066520 0.440916 }
+        }
+        <Normal> { 0.699728 -0.167882 0.694388 }
+      }
+      <Vertex> 1621 {
+        0.681608319283 0.0228229053319 0.531903147697
+        <UV>  {
+          0.699044 0.431661
+          <Tangent> { -0.512474 -0.023286 -0.858387 }
+          <Binormal> { -0.614567 0.188338 0.361799 }
+        }
+        <Normal> { 0.192785 -0.697226 0.690420 }
+      }
+      <Vertex> 1622 {
+        0.720759153366 -0.19657291472 0.393932461739
+        <UV>  {
+          0.699229 0.429213
+          <Tangent> { -0.398291 0.089186 -0.912913 }
+          <Binormal> { -0.662205 -0.357477 0.253987 }
+        }
+        <Normal> { 0.545671 -0.759880 0.353191 }
+      }
+      <Vertex> 1623 {
+        0.753166258335 -0.19657291472 0.422951370478
+        <UV>  {
+          0.698784 0.428975
+          <Tangent> { -0.672706 -0.468726 -0.572506 }
+          <Binormal> { -0.421591 0.066520 0.440916 }
+        }
+        <Normal> { 0.699728 -0.167882 0.694388 }
+      }
+      <Vertex> 1624 {
+        0.747937321663 0.0228229034692 0.572720944881
+        <UV>  {
+          0.698756 0.431490
+          <Tangent> { -0.905651 -0.351233 0.237553 }
+          <Binormal> { -0.362320 0.931889 -0.003477 }
+        }
+        <Normal> { 0.234596 0.094821 0.967437 }
+      }
+      <Vertex> 1625 {
+        0.681608319283 0.0228229053319 0.531903147697
+        <UV>  {
+          0.699044 0.431661
+          <Tangent> { -0.512474 -0.023286 -0.858387 }
+          <Binormal> { -0.614567 0.188338 0.361799 }
+        }
+        <Normal> { 0.192785 -0.697226 0.690420 }
+      }
+      <Vertex> 1626 {
+        0.681608319283 0.0228229053319 0.531903147697
+        <UV>  {
+          0.699044 0.431661
+          <Tangent> { -0.512474 -0.023286 -0.858387 }
+          <Binormal> { -0.614567 0.188338 0.361799 }
+        }
+        <Normal> { 0.192785 -0.697226 0.690420 }
+      }
+      <Vertex> 1627 {
+        0.630586087704 0.0228229071945 0.414551883936
+        <UV>  {
+          0.698964 0.431592
+          <Tangent> { -0.868230 -0.392302 0.303769 }
+          <Binormal> { -0.307142 0.897269 0.280906 }
+        }
+        <Normal> { 0.255135 -0.208258 0.944182 }
+      }
+      <Vertex> 1628 {
+        0.720759153366 -0.19657291472 0.393932461739
+        <UV>  {
+          0.699229 0.429213
+          <Tangent> { -0.398291 0.089186 -0.912913 }
+          <Binormal> { -0.662205 -0.357477 0.253987 }
+        }
+        <Normal> { 0.545671 -0.759880 0.353191 }
+      }
+      <Vertex> 1629 {
+        0.630586087704 0.0228229071945 0.414551883936
+        <UV>  {
+          0.698964 0.431592
+          <Tangent> { -0.868230 -0.392302 0.303769 }
+          <Binormal> { -0.307142 0.897269 0.280906 }
+        }
+        <Normal> { 0.255135 -0.208258 0.944182 }
+      }
+      <Vertex> 1630 {
+        0.68448549509 -0.150652855635 0.284991890192
+        <UV>  {
+          0.698830 0.429273
+          <Tangent> { -0.625809 -0.536777 -0.565892 }
+          <Binormal> { -0.347170 -0.131364 0.508534 }
+        }
+        <Normal> { 0.833491 -0.097690 0.543779 }
+      }
+      <Vertex> 1631 {
+        0.720759153366 -0.19657291472 0.393932461739
+        <UV>  {
+          0.699229 0.429213
+          <Tangent> { -0.398291 0.089186 -0.912913 }
+          <Binormal> { -0.662205 -0.357477 0.253987 }
+        }
+        <Normal> { 0.545671 -0.759880 0.353191 }
+      }
+      <Vertex> 1632 {
+        0.630586087704 0.0228229071945 0.414551883936
+        <UV>  {
+          0.698964 0.431592
+          <Tangent> { -0.868230 -0.392302 0.303769 }
+          <Binormal> { -0.307142 0.897269 0.280906 }
+        }
+        <Normal> { 0.255135 -0.208258 0.944182 }
+      }
+      <Vertex> 1633 {
+        0.593801081181 -0.19657291472 0.36128616333
+        <UV>  {
+          0.698527 0.429986
+          <Tangent> { -0.849844 -0.525460 -0.040693 }
+          <Binormal> { -0.378021 0.592289 0.246589 }
+        }
+        <Normal> { 0.672689 0.125767 0.729148 }
+      }
+      <Vertex> 1634 {
+        0.68448549509 -0.150652855635 0.284991890192
+        <UV>  {
+          0.698830 0.429273
+          <Tangent> { -0.625809 -0.536777 -0.565892 }
+          <Binormal> { -0.347170 -0.131364 0.508534 }
+        }
+        <Normal> { 0.833491 -0.097690 0.543779 }
+      }
+      <Vertex> 1635 {
+        0.630586087704 0.0228229071945 0.414551883936
+        <UV>  {
+          0.698964 0.431592
+          <Tangent> { -0.868230 -0.392302 0.303769 }
+          <Binormal> { -0.307142 0.897269 0.280906 }
+        }
+        <Normal> { 0.255135 -0.208258 0.944182 }
+      }
+      <Vertex> 1636 {
+        0.548950433731 0.0228229109198 0.485983073711
+        <UV>  {
+          0.699004 0.431978
+          <Tangent> { -0.874908 -0.341670 0.343215 }
+          <Binormal> { -0.187374 0.873472 0.391896 }
+        }
+        <Normal> { 0.241340 -0.353679 0.903684 }
+      }
+      <Vertex> 1637 {
+        0.593801081181 -0.19657291472 0.36128616333
+        <UV>  {
+          0.698527 0.429986
+          <Tangent> { -0.849844 -0.525460 -0.040693 }
+          <Binormal> { -0.378021 0.592289 0.246589 }
+        }
+        <Normal> { 0.672689 0.125767 0.729148 }
+      }
+      <Vertex> 1638 {
+        0.563546419144 -0.19657291472 0.281484127045
+        <UV>  {
+          0.698681 0.429991
+          <Tangent> { -0.504717 0.070831 -0.860374 }
+          <Binormal> { -0.691701 -0.342419 0.377578 }
+        }
+        <Normal> { 0.526048 -0.821925 0.218299 }
+      }
+      <Vertex> 1639 {
+        0.593801081181 -0.19657291472 0.36128616333
+        <UV>  {
+          0.698527 0.429986
+          <Tangent> { -0.849844 -0.525460 -0.040693 }
+          <Binormal> { -0.378021 0.592289 0.246589 }
+        }
+        <Normal> { 0.672689 0.125767 0.729148 }
+      }
+      <Vertex> 1640 {
+        0.548950433731 0.0228229109198 0.485983073711
+        <UV>  {
+          0.699004 0.431978
+          <Tangent> { -0.874908 -0.341670 0.343215 }
+          <Binormal> { -0.187374 0.873472 0.391896 }
+        }
+        <Normal> { 0.241340 -0.353679 0.903684 }
+      }
+      <Vertex> 1641 {
+        0.563546419144 -0.19657291472 0.281484127045
+        <UV>  {
+          0.698681 0.429991
+          <Tangent> { -0.504717 0.070831 -0.860374 }
+          <Binormal> { -0.691701 -0.342419 0.377578 }
+        }
+        <Normal> { 0.526048 -0.821925 0.218299 }
+      }
+      <Vertex> 1642 {
+        0.548950433731 0.0228229109198 0.485983073711
+        <UV>  {
+          0.699004 0.431978
+          <Tangent> { -0.874908 -0.341670 0.343215 }
+          <Binormal> { -0.187374 0.873472 0.391896 }
+        }
+        <Normal> { 0.241340 -0.353679 0.903684 }
+      }
+      <Vertex> 1643 {
+        0.441803604364 0.0228229165077 0.37373405695
+        <UV>  {
+          0.698920 0.431920
+          <Tangent> { -0.604295 0.064442 -0.794150 }
+          <Binormal> { -0.677630 -0.005747 0.515165 }
+        }
+        <Normal> { 0.288461 -0.883267 0.369579 }
+      }
+      <Vertex> 1644 {
+        0.431599140167 0.0228229165077 0.118622630835
+        <UV>  {
+          0.698345 0.431661
+          <Tangent> { 0.030511 0.143461 -0.989185 }
+          <Binormal> { -0.928306 -0.198968 -0.057490 }
+        }
+        <Normal> { 0.214484 -0.875729 -0.432508 }
+      }
+      <Vertex> 1645 {
+        0.556291699409 -0.19657291472 0.100115843117
+        <UV>  {
+          0.697882 0.429423
+          <Tangent> { 0.475554 0.658294 -0.583522 }
+          <Binormal> { -0.785825 0.114042 -0.511771 }
+        }
+        <Normal> { 0.426283 -0.486068 -0.762871 }
+      }
+      <Vertex> 1646 {
+        0.563546419144 -0.19657291472 0.281484127045
+        <UV>  {
+          0.698681 0.429991
+          <Tangent> { -0.504717 0.070831 -0.860374 }
+          <Binormal> { -0.691701 -0.342419 0.377578 }
+        }
+        <Normal> { 0.526048 -0.821925 0.218299 }
+      }
+      <Vertex> 1647 {
+        0.441803604364 0.0228229165077 0.37373405695
+        <UV>  {
+          0.698920 0.431920
+          <Tangent> { -0.604295 0.064442 -0.794150 }
+          <Binormal> { -0.677630 -0.005747 0.515165 }
+        }
+        <Normal> { 0.288461 -0.883267 0.369579 }
+      }
+      <Vertex> 1648 {
+        0.431599140167 0.0228229165077 0.118622630835
+        <UV>  {
+          0.698345 0.431661
+          <Tangent> { 0.030511 0.143461 -0.989185 }
+          <Binormal> { -0.928306 -0.198968 -0.057490 }
+        }
+        <Normal> { 0.214484 -0.875729 -0.432508 }
+      }
+      <Vertex> 1649 {
+        0.563546419144 -0.19657291472 0.281484127045
+        <UV>  {
+          0.698681 0.429991
+          <Tangent> { -0.504717 0.070831 -0.860374 }
+          <Binormal> { -0.691701 -0.342419 0.377578 }
+        }
+        <Normal> { 0.526048 -0.821925 0.218299 }
+      }
+      <Vertex> 1650 {
+        0.900210082531 0.242218717933 0.397326886654
+        <UV>  {
+          0.698996 0.433190
+          <Tangent> { -0.869928 -0.491691 -0.038270 }
+          <Binormal> { -0.461994 0.839189 -0.280118 }
+        }
+        <Normal> { -0.223487 0.195685 0.954833 }
+      }
+      <Vertex> 1651 {
+        0.916310846806 0.0228228960186 0.414551883936
+        <UV>  {
+          0.698969 0.430066
+          <Tangent> { -0.842897 -0.508914 -0.174733 }
+          <Binormal> { -0.454207 0.754242 -0.005693 }
+        }
+        <Normal> { 0.264901 0.166692 0.949736 }
+      }
+      <Vertex> 1652 {
+        0.962885499001 0.242218717933 0.455369710922
+        <UV>  {
+          0.698953 0.432572
+          <Tangent> { -0.745355 -0.474872 -0.467914 }
+          <Binormal> { -0.532876 0.812059 0.024700 }
+        }
+        <Normal> { -0.191900 -0.155400 0.969024 }
+      }
+      <Vertex> 1653 {
+        0.962885499001 0.242218717933 0.455369710922
+        <UV>  {
+          0.698953 0.432572
+          <Tangent> { -0.745355 -0.474872 -0.467914 }
+          <Binormal> { -0.532876 0.812059 0.024700 }
+        }
+        <Normal> { -0.191900 -0.155400 0.969024 }
+      }
+      <Vertex> 1654 {
+        0.916310846806 0.0228228960186 0.414551883936
+        <UV>  {
+          0.698969 0.430066
+          <Tangent> { -0.842897 -0.508914 -0.174733 }
+          <Binormal> { -0.454207 0.754242 -0.005693 }
+        }
+        <Normal> { 0.264901 0.166692 0.949736 }
+      }
+      <Vertex> 1655 {
+        0.987742066383 0.0228228922933 0.475778609514
+        <UV>  {
+          0.698770 0.429851
+          <Tangent> { -0.888039 -0.458488 0.034299 }
+          <Binormal> { -0.409889 0.773737 -0.269643 }
+        }
+        <Normal> { 0.258766 0.437239 0.861293 }
+      }
+      <Vertex> 1656 {
+        0.839054942131 0.242218717933 0.505524992943
+        <UV>  {
+          0.698861 0.433363
+          <Tangent> { -0.818810 -0.257693 0.512976 }
+          <Binormal> { -0.519172 0.485229 -0.584947 }
+        }
+        <Normal> { -0.221900 0.644551 0.731620 }
+      }
+      <Vertex> 1657 {
+        0.84998190403 0.0228228978813 0.531903147697
+        <UV>  {
+          0.698685 0.430955
+          <Tangent> { -0.870987 -0.401357 0.283364 }
+          <Binormal> { -0.477835 0.696277 -0.482531 }
+        }
+        <Normal> { 0.206030 0.648946 0.732383 }
+      }
+      <Vertex> 1658 {
+        0.916310846806 0.0228228960186 0.414551883936
+        <UV>  {
+          0.698969 0.430066
+          <Tangent> { -0.842897 -0.508914 -0.174733 }
+          <Binormal> { -0.454207 0.754242 -0.005693 }
+        }
+        <Normal> { 0.264901 0.166692 0.949736 }
+      }
+      <Vertex> 1659 {
+        0.839054942131 0.242218717933 0.505524992943
+        <UV>  {
+          0.698861 0.433363
+          <Tangent> { -0.818810 -0.257693 0.512976 }
+          <Binormal> { -0.519172 0.485229 -0.584947 }
+        }
+        <Normal> { -0.221900 0.644551 0.731620 }
+      }
+      <Vertex> 1660 {
+        0.916310846806 0.0228228960186 0.414551883936
+        <UV>  {
+          0.698969 0.430066
+          <Tangent> { -0.842897 -0.508914 -0.174733 }
+          <Binormal> { -0.454207 0.754242 -0.005693 }
+        }
+        <Normal> { 0.264901 0.166692 0.949736 }
+      }
+      <Vertex> 1661 {
+        0.900210082531 0.242218717933 0.397326886654
+        <UV>  {
+          0.698996 0.433190
+          <Tangent> { -0.869928 -0.491691 -0.038270 }
+          <Binormal> { -0.461994 0.839189 -0.280118 }
+        }
+        <Normal> { -0.223487 0.195685 0.954833 }
+      }
+      <Vertex> 1662 {
+        0.749348044395 0.242218717933 0.543158948421
+        <UV>  {
+          0.698834 0.433565
+          <Tangent> { -0.929283 -0.192636 0.315158 }
+          <Binormal> { -0.124321 0.804504 0.125165 }
+        }
+        <Normal> { -0.249336 -0.186377 0.950285 }
+      }
+      <Vertex> 1663 {
+        0.747937321663 0.0228229034692 0.572720944881
+        <UV>  {
+          0.698756 0.431490
+          <Tangent> { -0.905651 -0.351233 0.237553 }
+          <Binormal> { -0.362320 0.931889 -0.003477 }
+        }
+        <Normal> { 0.234596 0.094821 0.967437 }
+      }
+      <Vertex> 1664 {
+        0.839054942131 0.242218717933 0.505524992943
+        <UV>  {
+          0.698861 0.433363
+          <Tangent> { -0.818810 -0.257693 0.512976 }
+          <Binormal> { -0.519172 0.485229 -0.584947 }
+        }
+        <Normal> { -0.221900 0.644551 0.731620 }
+      }
+      <Vertex> 1665 {
+        0.747937321663 0.0228229034692 0.572720944881
+        <UV>  {
+          0.698756 0.431490
+          <Tangent> { -0.905651 -0.351233 0.237553 }
+          <Binormal> { -0.362320 0.931889 -0.003477 }
+        }
+        <Normal> { 0.234596 0.094821 0.967437 }
+      }
+      <Vertex> 1666 {
+        0.84998190403 0.0228228978813 0.531903147697
+        <UV>  {
+          0.698685 0.430955
+          <Tangent> { -0.870987 -0.401357 0.283364 }
+          <Binormal> { -0.477835 0.696277 -0.482531 }
+        }
+        <Normal> { 0.206030 0.648946 0.732383 }
+      }
+      <Vertex> 1667 {
+        0.839054942131 0.242218717933 0.505524992943
+        <UV>  {
+          0.698861 0.433363
+          <Tangent> { -0.818810 -0.257693 0.512976 }
+          <Binormal> { -0.519172 0.485229 -0.584947 }
+        }
+        <Normal> { -0.221900 0.644551 0.731620 }
+      }
+      <Vertex> 1668 {
+        0.987742066383 0.0228228922933 0.475778609514
+        <UV>  {
+          0.698770 0.429851
+          <Tangent> { -0.888039 -0.458488 0.034299 }
+          <Binormal> { -0.409889 0.773737 -0.269643 }
+        }
+        <Normal> { 0.258766 0.437239 0.861293 }
+      }
+      <Vertex> 1669 {
+        1.07777714729 0.24732093513 0.334254056215
+        <UV>  {
+          0.699591 0.431883
+          <Tangent> { -0.255604 -0.365935 0.894851 }
+          <Binormal> { -0.953255 -0.057432 -0.295773 }
+        }
+        <Normal> { -0.165258 0.920560 0.353862 }
+      }
+      <Vertex> 1670 {
+        0.962885499001 0.242218717933 0.455369710922
+        <UV>  {
+          0.698953 0.432572
+          <Tangent> { -0.745355 -0.474872 -0.467914 }
+          <Binormal> { -0.532876 0.812059 0.024700 }
+        }
+        <Normal> { -0.191900 -0.155400 0.969024 }
+      }
+      <Vertex> 1671 {
+        0.987742066383 0.0228228922933 0.475778609514
+        <UV>  {
+          0.698770 0.429851
+          <Tangent> { -0.888039 -0.458488 0.034299 }
+          <Binormal> { -0.409889 0.773737 -0.269643 }
+        }
+        <Normal> { 0.258766 0.437239 0.861293 }
+      }
+      <Vertex> 1672 {
+        1.08468437195 0.022822888568 0.34312069416
+        <UV>  {
+          0.699250 0.428643
+          <Tangent> { -0.473679 -0.432068 0.767427 }
+          <Binormal> { -0.835694 0.353592 -0.316740 }
+        }
+        <Normal> { 0.265297 0.910672 0.316660 }
+      }
+      <Vertex> 1673 {
+        1.07777714729 0.24732093513 0.334254056215
+        <UV>  {
+          0.699591 0.431883
+          <Tangent> { -0.255604 -0.365935 0.894851 }
+          <Binormal> { -0.953255 -0.057432 -0.295773 }
+        }
+        <Normal> { -0.165258 0.920560 0.353862 }
+      }
+      <Vertex> 1674 {
+        1.08718574047 0.24732093513 0.1272675246
+        <UV>  {
+          0.700142 0.431168
+          <Tangent> { 0.958863 0.088478 0.269727 }
+          <Binormal> { -0.253339 0.651689 0.686834 }
+        }
+        <Normal> { -0.075076 0.709372 -0.700766 }
+      }
+      <Vertex> 1675 {
+        1.07777714729 0.24732093513 0.334254056215
+        <UV>  {
+          0.699591 0.431883
+          <Tangent> { -0.255604 -0.365935 0.894851 }
+          <Binormal> { -0.953255 -0.057432 -0.295773 }
+        }
+        <Normal> { -0.165258 0.920560 0.353862 }
+      }
+      <Vertex> 1676 {
+        1.09488880634 0.022822888568 0.118622630835
+        <UV>  {
+          0.700371 0.426941
+          <Tangent> { 0.879748 -0.190016 0.435818 }
+          <Binormal> { -0.303956 0.458138 0.813317 }
+        }
+        <Normal> { 0.186895 0.884121 -0.428175 }
+      }
+      <Vertex> 1677 {
+        1.07777714729 0.24732093513 0.334254056215
+        <UV>  {
+          0.699591 0.431883
+          <Tangent> { -0.255604 -0.365935 0.894851 }
+          <Binormal> { -0.953255 -0.057432 -0.295773 }
+        }
+        <Normal> { -0.165258 0.920560 0.353862 }
+      }
+      <Vertex> 1678 {
+        1.08468437195 0.022822888568 0.34312069416
+        <UV>  {
+          0.699250 0.428643
+          <Tangent> { -0.473679 -0.432068 0.767427 }
+          <Binormal> { -0.835694 0.353592 -0.316740 }
+        }
+        <Normal> { 0.265297 0.910672 0.316660 }
+      }
+      <Vertex> 1679 {
+        1.09488880634 0.022822888568 0.118622630835
+        <UV>  {
+          0.700371 0.426941
+          <Tangent> { 0.879748 -0.190016 0.435818 }
+          <Binormal> { -0.303956 0.458138 0.813317 }
+        }
+        <Normal> { 0.186895 0.884121 -0.428175 }
+      }
+      <Vertex> 1680 {
+        0.692172825336 0.242218717933 0.505524992943
+        <UV>  {
+          0.699083 0.433789
+          <Tangent> { -0.464853 -0.154538 -0.871797 }
+          <Binormal> { -0.770106 0.473417 0.326711 }
+        }
+        <Normal> { -0.234046 -0.780633 0.579485 }
+      }
+      <Vertex> 1681 {
+        0.681608319283 0.0228229053319 0.531903147697
+        <UV>  {
+          0.699044 0.431661
+          <Tangent> { -0.512474 -0.023286 -0.858387 }
+          <Binormal> { -0.614567 0.188338 0.361799 }
+        }
+        <Normal> { 0.192785 -0.697226 0.690420 }
+      }
+      <Vertex> 1682 {
+        0.749348044395 0.242218717933 0.543158948421
+        <UV>  {
+          0.698834 0.433565
+          <Tangent> { -0.929283 -0.192636 0.315158 }
+          <Binormal> { -0.124321 0.804504 0.125165 }
+        }
+        <Normal> { -0.249336 -0.186377 0.950285 }
+      }
+      <Vertex> 1683 {
+        0.681608319283 0.0228229053319 0.531903147697
+        <UV>  {
+          0.699044 0.431661
+          <Tangent> { -0.512474 -0.023286 -0.858387 }
+          <Binormal> { -0.614567 0.188338 0.361799 }
+        }
+        <Normal> { 0.192785 -0.697226 0.690420 }
+      }
+      <Vertex> 1684 {
+        0.747937321663 0.0228229034692 0.572720944881
+        <UV>  {
+          0.698756 0.431490
+          <Tangent> { -0.905651 -0.351233 0.237553 }
+          <Binormal> { -0.362320 0.931889 -0.003477 }
+        }
+        <Normal> { 0.234596 0.094821 0.967437 }
+      }
+      <Vertex> 1685 {
+        0.749348044395 0.242218717933 0.543158948421
+        <UV>  {
+          0.698834 0.433565
+          <Tangent> { -0.929283 -0.192636 0.315158 }
+          <Binormal> { -0.124321 0.804504 0.125165 }
+        }
+        <Normal> { -0.249336 -0.186377 0.950285 }
+      }
+      <Vertex> 1686 {
+        0.692172825336 0.242218717933 0.505524992943
+        <UV>  {
+          0.699083 0.433789
+          <Tangent> { -0.464853 -0.154538 -0.871797 }
+          <Binormal> { -0.770106 0.473417 0.326711 }
+        }
+        <Normal> { -0.234046 -0.780633 0.579485 }
+      }
+      <Vertex> 1687 {
+        0.630586087704 0.0228229071945 0.414551883936
+        <UV>  {
+          0.698964 0.431592
+          <Tangent> { -0.868230 -0.392302 0.303769 }
+          <Binormal> { -0.307142 0.897269 0.280906 }
+        }
+        <Normal> { 0.255135 -0.208258 0.944182 }
+      }
+      <Vertex> 1688 {
+        0.681608319283 0.0228229053319 0.531903147697
+        <UV>  {
+          0.699044 0.431661
+          <Tangent> { -0.512474 -0.023286 -0.858387 }
+          <Binormal> { -0.614567 0.188338 0.361799 }
+        }
+        <Normal> { 0.192785 -0.697226 0.690420 }
+      }
+      <Vertex> 1689 {
+        0.692172825336 0.242218717933 0.505524992943
+        <UV>  {
+          0.699083 0.433789
+          <Tangent> { -0.464853 -0.154538 -0.871797 }
+          <Binormal> { -0.770106 0.473417 0.326711 }
+        }
+        <Normal> { -0.234046 -0.780633 0.579485 }
+      }
+      <Vertex> 1690 {
+        0.645130693913 0.242218732834 0.397326886654
+        <UV>  {
+          0.699049 0.434068
+          <Tangent> { -0.642607 -0.110190 -0.758231 }
+          <Binormal> { -0.269702 0.740057 0.121026 }
+        }
+        <Normal> { -0.159612 -0.215705 0.963317 }
+      }
+      <Vertex> 1691 {
+        0.630586087704 0.0228229071945 0.414551883936
+        <UV>  {
+          0.698964 0.431592
+          <Tangent> { -0.868230 -0.392302 0.303769 }
+          <Binormal> { -0.307142 0.897269 0.280906 }
+        }
+        <Normal> { 0.255135 -0.208258 0.944182 }
+      }
+      <Vertex> 1692 {
+        0.645130693913 0.242218732834 0.397326886654
+        <UV>  {
+          0.699049 0.434068
+          <Tangent> { -0.642607 -0.110190 -0.758231 }
+          <Binormal> { -0.269702 0.740057 0.121026 }
+        }
+        <Normal> { -0.159612 -0.215705 0.963317 }
+      }
+      <Vertex> 1693 {
+        0.573445081711 0.242218732834 0.463187485933
+        <UV>  {
+          0.699151 0.433785
+          <Tangent> { -0.793669 -0.290280 0.534627 }
+          <Binormal> { -0.390991 0.698878 -0.200975 }
+        }
+        <Normal> { -0.132450 0.204779 0.969787 }
+      }
+      <Vertex> 1694 {
+        0.630586087704 0.0228229071945 0.414551883936
+        <UV>  {
+          0.698964 0.431592
+          <Tangent> { -0.868230 -0.392302 0.303769 }
+          <Binormal> { -0.307142 0.897269 0.280906 }
+        }
+        <Normal> { 0.255135 -0.208258 0.944182 }
+      }
+      <Vertex> 1695 {
+        0.573445081711 0.242218732834 0.463187485933
+        <UV>  {
+          0.699151 0.433785
+          <Tangent> { -0.793669 -0.290280 0.534627 }
+          <Binormal> { -0.390991 0.698878 -0.200975 }
+        }
+        <Normal> { -0.132450 0.204779 0.969787 }
+      }
+      <Vertex> 1696 {
+        0.548950433731 0.0228229109198 0.485983073711
+        <UV>  {
+          0.699004 0.431978
+          <Tangent> { -0.874908 -0.341670 0.343215 }
+          <Binormal> { -0.187374 0.873472 0.391896 }
+        }
+        <Normal> { 0.241340 -0.353679 0.903684 }
+      }
+      <Vertex> 1697 {
+        0.630586087704 0.0228229071945 0.414551883936
+        <UV>  {
+          0.698964 0.431592
+          <Tangent> { -0.868230 -0.392302 0.303769 }
+          <Binormal> { -0.307142 0.897269 0.280906 }
+        }
+        <Normal> { 0.255135 -0.208258 0.944182 }
+      }
+      <Vertex> 1698 {
+        0.548950433731 0.0228229109198 0.485983073711
+        <UV>  {
+          0.699004 0.431978
+          <Tangent> { -0.874908 -0.341670 0.343215 }
+          <Binormal> { -0.187374 0.873472 0.391896 }
+        }
+        <Normal> { 0.241340 -0.353679 0.903684 }
+      }
+      <Vertex> 1699 {
+        0.573445081711 0.242218732834 0.463187485933
+        <UV>  {
+          0.699151 0.433785
+          <Tangent> { -0.793669 -0.290280 0.534627 }
+          <Binormal> { -0.390991 0.698878 -0.200975 }
+        }
+        <Normal> { -0.132450 0.204779 0.969787 }
+      }
+      <Vertex> 1700 {
+        0.438939839602 0.237116500735 0.359692960978
+        <UV>  {
+          0.698974 0.433489
+          <Tangent> { -0.187063 0.159287 -0.969348 }
+          <Binormal> { -0.813686 0.217364 0.192742 }
+        }
+        <Normal> { -0.147221 -0.904996 0.399091 }
+      }
+      <Vertex> 1701 {
+        0.441803604364 0.0228229165077 0.37373405695
+        <UV>  {
+          0.698920 0.431920
+          <Tangent> { -0.604295 0.064442 -0.794150 }
+          <Binormal> { -0.677630 -0.005747 0.515165 }
+        }
+        <Normal> { 0.288461 -0.883267 0.369579 }
+      }
+      <Vertex> 1702 {
+        0.548950433731 0.0228229109198 0.485983073711
+        <UV>  {
+          0.699004 0.431978
+          <Tangent> { -0.874908 -0.341670 0.343215 }
+          <Binormal> { -0.187374 0.873472 0.391896 }
+        }
+        <Normal> { 0.241340 -0.353679 0.903684 }
+      }
+      <Vertex> 1703 {
+        0.438939839602 0.237116500735 0.359692960978
+        <UV>  {
+          0.698974 0.433489
+          <Tangent> { -0.187063 0.159287 -0.969348 }
+          <Binormal> { -0.813686 0.217364 0.192742 }
+        }
+        <Normal> { -0.147221 -0.904996 0.399091 }
+      }
+      <Vertex> 1704 {
+        0.438939839602 0.237116500735 0.359692960978
+        <UV>  {
+          0.698974 0.433489
+          <Tangent> { -0.187063 0.159287 -0.969348 }
+          <Binormal> { -0.813686 0.217364 0.192742 }
+        }
+        <Normal> { -0.147221 -0.904996 0.399091 }
+      }
+      <Vertex> 1705 {
+        0.429531365633 0.237116515636 0.124482221901
+        <UV>  {
+          0.698923 0.433279
+          <Tangent> { 0.027757 0.141338 -0.989572 }
+          <Binormal> { -0.796822 0.052160 -0.014901 }
+        }
+        <Normal> { -0.032807 -0.703879 -0.709525 }
+      }
+      <Vertex> 1706 {
+        0.431599140167 0.0228229165077 0.118622630835
+        <UV>  {
+          0.698345 0.431661
+          <Tangent> { 0.030511 0.143461 -0.989185 }
+          <Binormal> { -0.928306 -0.198968 -0.057490 }
+        }
+        <Normal> { 0.214484 -0.875729 -0.432508 }
+      }
+      <Vertex> 1707 {
+        0.438939839602 0.237116500735 0.359692960978
+        <UV>  {
+          0.698974 0.433489
+          <Tangent> { -0.187063 0.159287 -0.969348 }
+          <Binormal> { -0.813686 0.217364 0.192742 }
+        }
+        <Normal> { -0.147221 -0.904996 0.399091 }
+      }
+      <Vertex> 1708 {
+        0.431599140167 0.0228229165077 0.118622630835
+        <UV>  {
+          0.698345 0.431661
+          <Tangent> { 0.030511 0.143461 -0.989185 }
+          <Binormal> { -0.928306 -0.198968 -0.057490 }
+        }
+        <Normal> { 0.214484 -0.875729 -0.432508 }
+      }
+      <Vertex> 1709 {
+        0.441803604364 0.0228229165077 0.37373405695
+        <UV>  {
+          0.698920 0.431920
+          <Tangent> { -0.604295 0.064442 -0.794150 }
+          <Binormal> { -0.677630 -0.005747 0.515165 }
+        }
+        <Normal> { 0.288461 -0.883267 0.369579 }
+      }
+      <Vertex> 1710 {
+        0.964550018311 -0.196572929621 0.25473728776
+        <UV>  {
+          0.699217 0.424546
+          <Tangent> { -0.603725 -0.711625 0.359313 }
+          <Binormal> { -0.431283 0.310313 -0.110070 }
+        }
+        <Normal> { 0.540269 0.819147 0.192450 }
+      }
+      <Vertex> 1711 {
+        0.895901918411 -0.298617482185 0.174747139215
+        <UV>  {
+          0.698473 0.424002
+          <Tangent> { -0.486860 0.257780 -0.834576 }
+          <Binormal> { 0.072493 -0.779921 -0.283189 }
+        }
+        <Normal> { 0.993316 0.055727 0.100803 }
+      }
+      <Vertex> 1712 {
+        0.971804738045 -0.196572929621 0.0951332002878
+        <UV>  {
+          0.699578 0.420025
+          <Tangent> { -0.077475 0.510961 -0.856105 }
+          <Binormal> { 0.056377 -0.452120 -0.274947 }
+        }
+        <Normal> { 0.461959 0.502152 -0.731010 }
+      }
+      <Vertex> 1713 {
+        0.964550018311 -0.196572929621 0.25473728776
+        <UV>  {
+          0.699217 0.424546
+          <Tangent> { -0.603725 -0.711625 0.359313 }
+          <Binormal> { -0.431283 0.310313 -0.110070 }
+        }
+        <Normal> { 0.540269 0.819147 0.192450 }
+      }
+      <Vertex> 1714 {
+        0.93644785881 -0.196572929621 0.339521974325
+        <UV>  {
+          0.699417 0.426237
+          <Tangent> { -0.753808 -0.355800 -0.552430 }
+          <Binormal> { -0.320883 0.190703 0.315030 }
+        }
+        <Normal> { 0.664479 -0.104282 0.739952 }
+      }
+      <Vertex> 1715 {
+        0.895901918411 -0.298617482185 0.174747139215
+        <UV>  {
+          0.698473 0.424002
+          <Tangent> { -0.486860 0.257780 -0.834576 }
+          <Binormal> { 0.072493 -0.779921 -0.283189 }
+        }
+        <Normal> { 0.993316 0.055727 0.100803 }
+      }
+      <Vertex> 1716 {
+        0.93644785881 -0.196572929621 0.339521974325
+        <UV>  {
+          0.699417 0.426237
+          <Tangent> { -0.753808 -0.355800 -0.552430 }
+          <Binormal> { -0.320883 0.190703 0.315030 }
+        }
+        <Normal> { 0.664479 -0.104282 0.739952 }
+      }
+      <Vertex> 1717 {
+        0.856645822525 -0.150652870536 0.284991890192
+        <UV>  {
+          0.698829 0.426875
+          <Tangent> { -0.385161 -0.867734 -0.314148 }
+          <Binormal> { -0.495929 -0.003947 0.618935 }
+        }
+        <Normal> { 0.772881 0.134281 0.620136 }
+      }
+      <Vertex> 1718 {
+        0.895901918411 -0.298617482185 0.174747139215
+        <UV>  {
+          0.698473 0.424002
+          <Tangent> { -0.486860 0.257780 -0.834576 }
+          <Binormal> { 0.072493 -0.779921 -0.283189 }
+        }
+        <Normal> { 0.993316 0.055727 0.100803 }
+      }
+      <Vertex> 1719 {
+        0.809490084648 -0.19657291472 0.393932461739
+        <UV>  {
+          0.698444 0.428190
+          <Tangent> { -0.862903 -0.496770 0.092834 }
+          <Binormal> { -0.319974 0.505968 -0.266677 }
+        }
+        <Normal> { 0.566240 0.635029 0.525437 }
+      }
+      <Vertex> 1720 {
+        0.788755118847 -0.349639773369 0.174747139215
+        <UV>  {
+          0.698658 0.426168
+          <Tangent> { -0.387413 -0.848464 -0.360584 }
+          <Binormal> { -0.200008 -0.258090 0.822182 }
+        }
+        <Normal> { 0.971282 0.004944 0.237831 }
+      }
+      <Vertex> 1721 {
+        0.856645822525 -0.150652870536 0.284991890192
+        <UV>  {
+          0.698829 0.426875
+          <Tangent> { -0.385161 -0.867734 -0.314148 }
+          <Binormal> { -0.495929 -0.003947 0.618935 }
+        }
+        <Normal> { 0.772881 0.134281 0.620136 }
+      }
+      <Vertex> 1722 {
+        0.809490084648 -0.19657291472 0.393932461739
+        <UV>  {
+          0.698444 0.428190
+          <Tangent> { -0.862903 -0.496770 0.092834 }
+          <Binormal> { -0.319974 0.505968 -0.266677 }
+        }
+        <Normal> { 0.566240 0.635029 0.525437 }
+      }
+      <Vertex> 1723 {
+        0.753166258335 -0.19657291472 0.422951370478
+        <UV>  {
+          0.698784 0.428975
+          <Tangent> { -0.672706 -0.468726 -0.572506 }
+          <Binormal> { -0.421591 0.066520 0.440916 }
+        }
+        <Normal> { 0.699728 -0.167882 0.694388 }
+      }
+      <Vertex> 1724 {
+        0.788755118847 -0.349639773369 0.174747139215
+        <UV>  {
+          0.698658 0.426168
+          <Tangent> { -0.387413 -0.848464 -0.360584 }
+          <Binormal> { -0.200008 -0.258090 0.822182 }
+        }
+        <Normal> { 0.971282 0.004944 0.237831 }
+      }
+      <Vertex> 1725 {
+        0.788755118847 -0.349639773369 0.174747139215
+        <UV>  {
+          0.698658 0.426168
+          <Tangent> { -0.387413 -0.848464 -0.360584 }
+          <Binormal> { -0.200008 -0.258090 0.822182 }
+        }
+        <Normal> { 0.971282 0.004944 0.237831 }
+      }
+      <Vertex> 1726 {
+        0.753166258335 -0.19657291472 0.422951370478
+        <UV>  {
+          0.698784 0.428975
+          <Tangent> { -0.672706 -0.468726 -0.572506 }
+          <Binormal> { -0.421591 0.066520 0.440916 }
+        }
+        <Normal> { 0.699728 -0.167882 0.694388 }
+      }
+      <Vertex> 1727 {
+        0.720759153366 -0.19657291472 0.393932461739
+        <UV>  {
+          0.699229 0.429213
+          <Tangent> { -0.398291 0.089186 -0.912913 }
+          <Binormal> { -0.662205 -0.357477 0.253987 }
+        }
+        <Normal> { 0.545671 -0.759880 0.353191 }
+      }
+      <Vertex> 1728 {
+        0.788755118847 -0.349639773369 0.174747139215
+        <UV>  {
+          0.698658 0.426168
+          <Tangent> { -0.387413 -0.848464 -0.360584 }
+          <Binormal> { -0.200008 -0.258090 0.822182 }
+        }
+        <Normal> { 0.971282 0.004944 0.237831 }
+      }
+      <Vertex> 1729 {
+        0.720759153366 -0.19657291472 0.393932461739
+        <UV>  {
+          0.699229 0.429213
+          <Tangent> { -0.398291 0.089186 -0.912913 }
+          <Binormal> { -0.662205 -0.357477 0.253987 }
+        }
+        <Normal> { 0.545671 -0.759880 0.353191 }
+      }
+      <Vertex> 1730 {
+        0.68448549509 -0.150652855635 0.284991890192
+        <UV>  {
+          0.698830 0.429273
+          <Tangent> { -0.625809 -0.536777 -0.565892 }
+          <Binormal> { -0.347170 -0.131364 0.508534 }
+        }
+        <Normal> { 0.833491 -0.097690 0.543779 }
+      }
+      <Vertex> 1731 {
+        0.593801081181 -0.19657291472 0.36128616333
+        <UV>  {
+          0.698527 0.429986
+          <Tangent> { -0.849844 -0.525460 -0.040693 }
+          <Binormal> { -0.378021 0.592289 0.246589 }
+        }
+        <Normal> { 0.672689 0.125767 0.729148 }
+      }
+      <Vertex> 1732 {
+        0.615279376507 -0.298617482185 0.169644922018
+        <UV>  {
+          0.698370 0.428606
+          <Tangent> { -0.515686 -0.363659 -0.775771 }
+          <Binormal> { -0.086165 -0.741671 0.404951 }
+        }
+        <Normal> { 0.994751 -0.083773 0.058229 }
+      }
+      <Vertex> 1733 {
+        0.68448549509 -0.150652855635 0.284991890192
+        <UV>  {
+          0.698830 0.429273
+          <Tangent> { -0.625809 -0.536777 -0.565892 }
+          <Binormal> { -0.347170 -0.131364 0.508534 }
+        }
+        <Normal> { 0.833491 -0.097690 0.543779 }
+      }
+      <Vertex> 1734 {
+        0.593801081181 -0.19657291472 0.36128616333
+        <UV>  {
+          0.698527 0.429986
+          <Tangent> { -0.849844 -0.525460 -0.040693 }
+          <Binormal> { -0.378021 0.592289 0.246589 }
+        }
+        <Normal> { 0.672689 0.125767 0.729148 }
+      }
+      <Vertex> 1735 {
+        0.563546419144 -0.19657291472 0.281484127045
+        <UV>  {
+          0.698681 0.429991
+          <Tangent> { -0.504717 0.070831 -0.860374 }
+          <Binormal> { -0.691701 -0.342419 0.377578 }
+        }
+        <Normal> { 0.526048 -0.821925 0.218299 }
+      }
+      <Vertex> 1736 {
+        0.615279376507 -0.298617482185 0.169644922018
+        <UV>  {
+          0.698370 0.428606
+          <Tangent> { -0.515686 -0.363659 -0.775771 }
+          <Binormal> { -0.086165 -0.741671 0.404951 }
+        }
+        <Normal> { 0.994751 -0.083773 0.058229 }
+      }
+      <Vertex> 1737 {
+        0.563546419144 -0.19657291472 0.281484127045
+        <UV>  {
+          0.698681 0.429991
+          <Tangent> { -0.504717 0.070831 -0.860374 }
+          <Binormal> { -0.691701 -0.342419 0.377578 }
+        }
+        <Normal> { 0.526048 -0.821925 0.218299 }
+      }
+      <Vertex> 1738 {
+        0.556291699409 -0.19657291472 0.100115843117
+        <UV>  {
+          0.697882 0.429423
+          <Tangent> { 0.475554 0.658294 -0.583522 }
+          <Binormal> { -0.785825 0.114042 -0.511771 }
+        }
+        <Normal> { 0.426283 -0.486068 -0.762871 }
+      }
+      <Vertex> 1739 {
+        0.615279376507 -0.298617482185 0.169644922018
+        <UV>  {
+          0.698370 0.428606
+          <Tangent> { -0.515686 -0.363659 -0.775771 }
+          <Binormal> { -0.086165 -0.741671 0.404951 }
+        }
+        <Normal> { 0.994751 -0.083773 0.058229 }
+      }
+      <Vertex> 1740 {
+        0.556291699409 -0.19657291472 0.100115843117
+        <UV>  {
+          0.697882 0.429423
+          <Tangent> { 0.475554 0.658294 -0.583522 }
+          <Binormal> { -0.785825 0.114042 -0.511771 }
+        }
+        <Normal> { 0.426283 -0.486068 -0.762871 }
+      }
+      <Vertex> 1741 {
+        0.671403884888 -0.242492973804 0.118622630835
+        <UV>  {
+          0.698145 0.427591
+          <Tangent> { -0.121863 0.482938 -0.867133 }
+          <Binormal> { -0.385253 -0.613069 -0.287299 }
+        }
+        <Normal> { 0.593951 0.003754 -0.804468 }
+      }
+      <Vertex> 1742 {
+        0.615279376507 -0.298617482185 0.169644922018
+        <UV>  {
+          0.698370 0.428606
+          <Tangent> { -0.515686 -0.363659 -0.775771 }
+          <Binormal> { -0.086165 -0.741671 0.404951 }
+        }
+        <Normal> { 0.994751 -0.083773 0.058229 }
+      }
+      <Vertex> 1743 {
+        0.671403884888 -0.242492973804 0.118622630835
+        <UV>  {
+          0.698145 0.427591
+          <Tangent> { -0.121863 0.482938 -0.867133 }
+          <Binormal> { -0.385253 -0.613069 -0.287299 }
+        }
+        <Normal> { 0.593951 0.003754 -0.804468 }
+      }
+      <Vertex> 1744 {
+        0.68448549509 -0.150652855635 0.284991890192
+        <UV>  {
+          0.698830 0.429273
+          <Tangent> { -0.625809 -0.536777 -0.565892 }
+          <Binormal> { -0.347170 -0.131364 0.508534 }
+        }
+        <Normal> { 0.833491 -0.097690 0.543779 }
+      }
+      <Vertex> 1745 {
+        0.615279376507 -0.298617482185 0.169644922018
+        <UV>  {
+          0.698370 0.428606
+          <Tangent> { -0.515686 -0.363659 -0.775771 }
+          <Binormal> { -0.086165 -0.741671 0.404951 }
+        }
+        <Normal> { 0.994751 -0.083773 0.058229 }
+      }
+      <Vertex> 1746 {
+        0.671403884888 -0.242492973804 0.118622630835
+        <UV>  {
+          0.698145 0.427591
+          <Tangent> { -0.121863 0.482938 -0.867133 }
+          <Binormal> { -0.385253 -0.613069 -0.287299 }
+        }
+        <Normal> { 0.593951 0.003754 -0.804468 }
+      }
+      <Vertex> 1747 {
+        0.788755118847 -0.349639773369 0.174747139215
+        <UV>  {
+          0.698658 0.426168
+          <Tangent> { -0.387413 -0.848464 -0.360584 }
+          <Binormal> { -0.200008 -0.258090 0.822182 }
+        }
+        <Normal> { 0.971282 0.004944 0.237831 }
+      }
+      <Vertex> 1748 {
+        0.68448549509 -0.150652855635 0.284991890192
+        <UV>  {
+          0.698830 0.429273
+          <Tangent> { -0.625809 -0.536777 -0.565892 }
+          <Binormal> { -0.347170 -0.131364 0.508534 }
+        }
+        <Normal> { 0.833491 -0.097690 0.543779 }
+      }
+      <Vertex> 1749 {
+        0.671403884888 -0.242492973804 0.118622630835
+        <UV>  {
+          0.698145 0.427591
+          <Tangent> { -0.121863 0.482938 -0.867133 }
+          <Binormal> { -0.385253 -0.613069 -0.287299 }
+        }
+        <Normal> { 0.593951 0.003754 -0.804468 }
+      }
+      <Vertex> 1750 {
+        0.855084121227 -0.242492973804 0.108418174088
+        <UV>  {
+          0.698193 0.424520
+          <Tangent> { -0.389857 -0.816386 -0.426058 }
+          <Binormal> { 0.687916 -0.556137 0.436170 }
+        }
+        <Normal> { 0.528703 -0.011658 -0.848720 }
+      }
+      <Vertex> 1751 {
+        0.788755118847 -0.349639773369 0.174747139215
+        <UV>  {
+          0.698658 0.426168
+          <Tangent> { -0.387413 -0.848464 -0.360584 }
+          <Binormal> { -0.200008 -0.258090 0.822182 }
+        }
+        <Normal> { 0.971282 0.004944 0.237831 }
+      }
+      <Vertex> 1752 {
+        0.855084121227 -0.242492973804 0.108418174088
+        <UV>  {
+          0.698193 0.424520
+          <Tangent> { -0.389857 -0.816386 -0.426058 }
+          <Binormal> { 0.687916 -0.556137 0.436170 }
+        }
+        <Normal> { 0.528703 -0.011658 -0.848720 }
+      }
+      <Vertex> 1753 {
+        0.856645822525 -0.150652870536 0.284991890192
+        <UV>  {
+          0.698829 0.426875
+          <Tangent> { -0.385161 -0.867734 -0.314148 }
+          <Binormal> { -0.495929 -0.003947 0.618935 }
+        }
+        <Normal> { 0.772881 0.134281 0.620136 }
+      }
+      <Vertex> 1754 {
+        0.788755118847 -0.349639773369 0.174747139215
+        <UV>  {
+          0.698658 0.426168
+          <Tangent> { -0.387413 -0.848464 -0.360584 }
+          <Binormal> { -0.200008 -0.258090 0.822182 }
+        }
+        <Normal> { 0.971282 0.004944 0.237831 }
+      }
+      <Vertex> 1755 {
+        0.855084121227 -0.242492973804 0.108418174088
+        <UV>  {
+          0.698193 0.424520
+          <Tangent> { -0.389857 -0.816386 -0.426058 }
+          <Binormal> { 0.687916 -0.556137 0.436170 }
+        }
+        <Normal> { 0.528703 -0.011658 -0.848720 }
+      }
+      <Vertex> 1756 {
+        0.895901918411 -0.298617482185 0.174747139215
+        <UV>  {
+          0.698473 0.424002
+          <Tangent> { -0.486860 0.257780 -0.834576 }
+          <Binormal> { 0.072493 -0.779921 -0.283189 }
+        }
+        <Normal> { 0.993316 0.055727 0.100803 }
+      }
+      <Vertex> 1757 {
+        0.856645822525 -0.150652870536 0.284991890192
+        <UV>  {
+          0.698829 0.426875
+          <Tangent> { -0.385161 -0.867734 -0.314148 }
+          <Binormal> { -0.495929 -0.003947 0.618935 }
+        }
+        <Normal> { 0.772881 0.134281 0.620136 }
+      }
+      <Vertex> 1758 {
+        0.855084121227 -0.242492973804 0.108418174088
+        <UV>  {
+          0.698193 0.424520
+          <Tangent> { -0.389857 -0.816386 -0.426058 }
+          <Binormal> { 0.687916 -0.556137 0.436170 }
+        }
+        <Normal> { 0.528703 -0.011658 -0.848720 }
+      }
+      <Vertex> 1759 {
+        0.971804738045 -0.196572929621 0.0951332002878
+        <UV>  {
+          0.699578 0.420025
+          <Tangent> { -0.077475 0.510961 -0.856105 }
+          <Binormal> { 0.056377 -0.452120 -0.274947 }
+        }
+        <Normal> { 0.461959 0.502152 -0.731010 }
+      }
+      <Vertex> 1760 {
+        0.895901918411 -0.298617482185 0.174747139215
+        <UV>  {
+          0.698473 0.424002
+          <Tangent> { -0.486860 0.257780 -0.834576 }
+          <Binormal> { 0.072493 -0.779921 -0.283189 }
+        }
+        <Normal> { 0.993316 0.055727 0.100803 }
+      }
+      <Vertex> 1761 {
+        0.46394649148 0.431001186371 0.105974189937
+        <UV>  {
+          0.699423 0.434384
+          <Tangent> { 0.236333 0.300676 -0.923981 }
+          <Binormal> { -0.912141 0.353889 -0.118144 }
+        }
+        <Normal> { -0.251381 -0.819727 -0.514603 }
+      }
+      <Vertex> 1762 {
+        0.429531365633 0.237116515636 0.124482221901
+        <UV>  {
+          0.698923 0.433279
+          <Tangent> { 0.027757 0.141338 -0.989572 }
+          <Binormal> { -0.796822 0.052160 -0.014901 }
+        }
+        <Normal> { -0.032807 -0.703879 -0.709525 }
+      }
+      <Vertex> 1763 {
+        0.438939839602 0.237116500735 0.359692960978
+        <UV>  {
+          0.698974 0.433489
+          <Tangent> { -0.187063 0.159287 -0.969348 }
+          <Binormal> { -0.813686 0.217364 0.192742 }
+        }
+        <Normal> { -0.147221 -0.904996 0.399091 }
+      }
+      <Vertex> 1764 {
+        0.438939839602 0.237116500735 0.359692960978
+        <UV>  {
+          0.698974 0.433489
+          <Tangent> { -0.187063 0.159287 -0.969348 }
+          <Binormal> { -0.813686 0.217364 0.192742 }
+        }
+        <Normal> { -0.147221 -0.904996 0.399091 }
+      }
+      <Vertex> 1765 {
+        0.470709204674 0.431001186371 0.27503284812
+        <UV>  {
+          0.699212 0.435091
+          <Tangent> { -0.114296 0.640263 -0.759605 }
+          <Binormal> { -0.491558 0.292108 0.320178 }
+        }
+        <Normal> { -0.340556 -0.893582 0.292398 }
+      }
+      <Vertex> 1766 {
+        0.46394649148 0.431001186371 0.105974189937
+        <UV>  {
+          0.699423 0.434384
+          <Tangent> { 0.236333 0.300676 -0.923981 }
+          <Binormal> { -0.912141 0.353889 -0.118144 }
+        }
+        <Normal> { -0.251381 -0.819727 -0.514603 }
+      }
+      <Vertex> 1767 {
+        0.438939839602 0.237116500735 0.359692960978
+        <UV>  {
+          0.698974 0.433489
+          <Tangent> { -0.187063 0.159287 -0.969348 }
+          <Binormal> { -0.813686 0.217364 0.192742 }
+        }
+        <Normal> { -0.147221 -0.904996 0.399091 }
+      }
+      <Vertex> 1768 {
+        0.582531571388 0.466716766357 0.410645484924
+        <UV>  {
+          0.699193 0.436231
+          <Tangent> { -0.192317 0.702161 -0.685554 }
+          <Binormal> { 0.083294 0.297882 0.281731 }
+        }
+        <Normal> { -0.227363 -0.634816 0.738426 }
+      }
+      <Vertex> 1769 {
+        0.470709204674 0.431001186371 0.27503284812
+        <UV>  {
+          0.699212 0.435091
+          <Tangent> { -0.114296 0.640263 -0.759605 }
+          <Binormal> { -0.491558 0.292108 0.320178 }
+        }
+        <Normal> { -0.340556 -0.893582 0.292398 }
+      }
+      <Vertex> 1770 {
+        0.582531571388 0.466716766357 0.410645484924
+        <UV>  {
+          0.699193 0.436231
+          <Tangent> { -0.192317 0.702161 -0.685554 }
+          <Binormal> { 0.083294 0.297882 0.281731 }
+        }
+        <Normal> { -0.227363 -0.634816 0.738426 }
+      }
+      <Vertex> 1771 {
+        0.438939839602 0.237116500735 0.359692960978
+        <UV>  {
+          0.698974 0.433489
+          <Tangent> { -0.187063 0.159287 -0.969348 }
+          <Binormal> { -0.813686 0.217364 0.192742 }
+        }
+        <Normal> { -0.147221 -0.904996 0.399091 }
+      }
+      <Vertex> 1772 {
+        0.573445081711 0.242218732834 0.463187485933
+        <UV>  {
+          0.699151 0.433785
+          <Tangent> { -0.793669 -0.290280 0.534627 }
+          <Binormal> { -0.390991 0.698878 -0.200975 }
+        }
+        <Normal> { -0.132450 0.204779 0.969787 }
+      }
+      <Vertex> 1773 {
+        0.573445081711 0.242218732834 0.463187485933
+        <UV>  {
+          0.699151 0.433785
+          <Tangent> { -0.793669 -0.290280 0.534627 }
+          <Binormal> { -0.390991 0.698878 -0.200975 }
+        }
+        <Normal> { -0.132450 0.204779 0.969787 }
+      }
+      <Vertex> 1774 {
+        0.645130693913 0.242218732834 0.397326886654
+        <UV>  {
+          0.699049 0.434068
+          <Tangent> { -0.642607 -0.110190 -0.758231 }
+          <Binormal> { -0.269702 0.740057 0.121026 }
+        }
+        <Normal> { -0.159612 -0.215705 0.963317 }
+      }
+      <Vertex> 1775 {
+        0.582531571388 0.466716766357 0.410645484924
+        <UV>  {
+          0.699193 0.436231
+          <Tangent> { -0.192317 0.702161 -0.685554 }
+          <Binormal> { 0.083294 0.297882 0.281731 }
+        }
+        <Normal> { -0.227363 -0.634816 0.738426 }
+      }
+      <Vertex> 1776 {
+        0.645130693913 0.242218732834 0.397326886654
+        <UV>  {
+          0.699049 0.434068
+          <Tangent> { -0.642607 -0.110190 -0.758231 }
+          <Binormal> { -0.269702 0.740057 0.121026 }
+        }
+        <Normal> { -0.159612 -0.215705 0.963317 }
+      }
+      <Vertex> 1777 {
+        0.763333082199 0.420796722174 0.463023036718
+        <UV>  {
+          0.698937 0.436234
+          <Tangent> { -0.914688 -0.155915 -0.372875 }
+          <Binormal> { -0.185290 0.887348 0.083490 }
+        }
+        <Normal> { 0.060671 -0.080935 0.994842 }
+      }
+      <Vertex> 1778 {
+        0.582531571388 0.466716766357 0.410645484924
+        <UV>  {
+          0.699193 0.436231
+          <Tangent> { -0.192317 0.702161 -0.685554 }
+          <Binormal> { 0.083294 0.297882 0.281731 }
+        }
+        <Normal> { -0.227363 -0.634816 0.738426 }
+      }
+      <Vertex> 1779 {
+        0.692172825336 0.242218717933 0.505524992943
+        <UV>  {
+          0.699083 0.433789
+          <Tangent> { -0.464853 -0.154538 -0.871797 }
+          <Binormal> { -0.770106 0.473417 0.326711 }
+        }
+        <Normal> { -0.234046 -0.780633 0.579485 }
+      }
+      <Vertex> 1780 {
+        0.763333082199 0.420796722174 0.463023036718
+        <UV>  {
+          0.698937 0.436234
+          <Tangent> { -0.914688 -0.155915 -0.372875 }
+          <Binormal> { -0.185290 0.887348 0.083490 }
+        }
+        <Normal> { 0.060671 -0.080935 0.994842 }
+      }
+      <Vertex> 1781 {
+        0.645130693913 0.242218732834 0.397326886654
+        <UV>  {
+          0.699049 0.434068
+          <Tangent> { -0.642607 -0.110190 -0.758231 }
+          <Binormal> { -0.269702 0.740057 0.121026 }
+        }
+        <Normal> { -0.159612 -0.215705 0.963317 }
+      }
+      <Vertex> 1782 {
+        0.692172825336 0.242218717933 0.505524992943
+        <UV>  {
+          0.699083 0.433789
+          <Tangent> { -0.464853 -0.154538 -0.871797 }
+          <Binormal> { -0.770106 0.473417 0.326711 }
+        }
+        <Normal> { -0.234046 -0.780633 0.579485 }
+      }
+      <Vertex> 1783 {
+        0.749348044395 0.242218717933 0.543158948421
+        <UV>  {
+          0.698834 0.433565
+          <Tangent> { -0.929283 -0.192636 0.315158 }
+          <Binormal> { -0.124321 0.804504 0.125165 }
+        }
+        <Normal> { -0.249336 -0.186377 0.950285 }
+      }
+      <Vertex> 1784 {
+        0.763333082199 0.420796722174 0.463023036718
+        <UV>  {
+          0.698937 0.436234
+          <Tangent> { -0.914688 -0.155915 -0.372875 }
+          <Binormal> { -0.185290 0.887348 0.083490 }
+        }
+        <Normal> { 0.060671 -0.080935 0.994842 }
+      }
+      <Vertex> 1785 {
+        0.749348044395 0.242218717933 0.543158948421
+        <UV>  {
+          0.698834 0.433565
+          <Tangent> { -0.929283 -0.192636 0.315158 }
+          <Binormal> { -0.124321 0.804504 0.125165 }
+        }
+        <Normal> { -0.249336 -0.186377 0.950285 }
+      }
+      <Vertex> 1786 {
+        0.839054942131 0.242218717933 0.505524992943
+        <UV>  {
+          0.698861 0.433363
+          <Tangent> { -0.818810 -0.257693 0.512976 }
+          <Binormal> { -0.519172 0.485229 -0.584947 }
+        }
+        <Normal> { -0.221900 0.644551 0.731620 }
+      }
+      <Vertex> 1787 {
+        0.763333082199 0.420796722174 0.463023036718
+        <UV>  {
+          0.698937 0.436234
+          <Tangent> { -0.914688 -0.155915 -0.372875 }
+          <Binormal> { -0.185290 0.887348 0.083490 }
+        }
+        <Normal> { 0.060671 -0.080935 0.994842 }
+      }
+      <Vertex> 1788 {
+        0.763333082199 0.420796722174 0.463023036718
+        <UV>  {
+          0.698937 0.436234
+          <Tangent> { -0.914688 -0.155915 -0.372875 }
+          <Binormal> { -0.185290 0.887348 0.083490 }
+        }
+        <Normal> { 0.060671 -0.080935 0.994842 }
+      }
+      <Vertex> 1789 {
+        0.839054942131 0.242218717933 0.505524992943
+        <UV>  {
+          0.698861 0.433363
+          <Tangent> { -0.818810 -0.257693 0.512976 }
+          <Binormal> { -0.519172 0.485229 -0.584947 }
+        }
+        <Normal> { -0.221900 0.644551 0.731620 }
+      }
+      <Vertex> 1790 {
+        0.900210082531 0.242218717933 0.397326886654
+        <UV>  {
+          0.698996 0.433190
+          <Tangent> { -0.869928 -0.491691 -0.038270 }
+          <Binormal> { -0.461994 0.839189 -0.280118 }
+        }
+        <Normal> { -0.223487 0.195685 0.954833 }
+      }
+      <Vertex> 1791 {
+        0.900210082531 0.242218717933 0.397326886654
+        <UV>  {
+          0.698996 0.433190
+          <Tangent> { -0.869928 -0.491691 -0.038270 }
+          <Binormal> { -0.461994 0.839189 -0.280118 }
+        }
+        <Normal> { -0.223487 0.195685 0.954833 }
+      }
+      <Vertex> 1792 {
+        0.962885499001 0.242218717933 0.455369710922
+        <UV>  {
+          0.698953 0.432572
+          <Tangent> { -0.745355 -0.474872 -0.467914 }
+          <Binormal> { -0.532876 0.812059 0.024700 }
+        }
+        <Normal> { -0.191900 -0.155400 0.969024 }
+      }
+      <Vertex> 1793 {
+        0.966081261635 0.415694475174 0.385256409645
+        <UV>  {
+          0.699547 0.434992
+          <Tangent> { -0.601947 -0.402807 0.689497 }
+          <Binormal> { -0.672045 0.606584 -0.232343 }
+        }
+        <Normal> { 0.110660 0.460036 0.880947 }
+      }
+      <Vertex> 1794 {
+        0.966081261635 0.415694475174 0.385256409645
+        <UV>  {
+          0.699547 0.434992
+          <Tangent> { -0.601947 -0.402807 0.689497 }
+          <Binormal> { -0.672045 0.606584 -0.232343 }
+        }
+        <Normal> { 0.110660 0.460036 0.880947 }
+      }
+      <Vertex> 1795 {
+        0.763333082199 0.420796722174 0.463023036718
+        <UV>  {
+          0.698937 0.436234
+          <Tangent> { -0.914688 -0.155915 -0.372875 }
+          <Binormal> { -0.185290 0.887348 0.083490 }
+        }
+        <Normal> { 0.060671 -0.080935 0.994842 }
+      }
+      <Vertex> 1796 {
+        0.900210082531 0.242218717933 0.397326886654
+        <UV>  {
+          0.698996 0.433190
+          <Tangent> { -0.869928 -0.491691 -0.038270 }
+          <Binormal> { -0.461994 0.839189 -0.280118 }
+        }
+        <Normal> { -0.223487 0.195685 0.954833 }
+      }
+      <Vertex> 1797 {
+        0.962885499001 0.242218717933 0.455369710922
+        <UV>  {
+          0.698953 0.432572
+          <Tangent> { -0.745355 -0.474872 -0.467914 }
+          <Binormal> { -0.532876 0.812059 0.024700 }
+        }
+        <Normal> { -0.191900 -0.155400 0.969024 }
+      }
+      <Vertex> 1798 {
+        1.07777714729 0.24732093513 0.334254056215
+        <UV>  {
+          0.699591 0.431883
+          <Tangent> { -0.255604 -0.365935 0.894851 }
+          <Binormal> { -0.953255 -0.057432 -0.295773 }
+        }
+        <Normal> { -0.165258 0.920560 0.353862 }
+      }
+      <Vertex> 1799 {
+        0.966081261635 0.415694475174 0.385256409645
+        <UV>  {
+          0.699547 0.434992
+          <Tangent> { -0.601947 -0.402807 0.689497 }
+          <Binormal> { -0.672045 0.606584 -0.232343 }
+        }
+        <Normal> { 0.110660 0.460036 0.880947 }
+      }
+      <Vertex> 1800 {
+        0.966081261635 0.415694475174 0.385256409645
+        <UV>  {
+          0.699547 0.434992
+          <Tangent> { -0.601947 -0.402807 0.689497 }
+          <Binormal> { -0.672045 0.606584 -0.232343 }
+        }
+        <Normal> { 0.110660 0.460036 0.880947 }
+      }
+      <Vertex> 1801 {
+        1.07777714729 0.24732093513 0.334254056215
+        <UV>  {
+          0.699591 0.431883
+          <Tangent> { -0.255604 -0.365935 0.894851 }
+          <Binormal> { -0.953255 -0.057432 -0.295773 }
+        }
+        <Normal> { -0.165258 0.920560 0.353862 }
+      }
+      <Vertex> 1802 {
+        1.04563045502 0.425898939371 0.266792804003
+        <UV>  {
+          0.699583 0.434245
+          <Tangent> { 0.151288 -0.485892 0.860826 }
+          <Binormal> { -0.922938 -0.218908 0.038642 }
+        }
+        <Normal> { -0.217200 0.953001 0.211097 }
+      }
+      <Vertex> 1803 {
+        1.07777714729 0.24732093513 0.334254056215
+        <UV>  {
+          0.699591 0.431883
+          <Tangent> { -0.255604 -0.365935 0.894851 }
+          <Binormal> { -0.953255 -0.057432 -0.295773 }
+        }
+        <Normal> { -0.165258 0.920560 0.353862 }
+      }
+      <Vertex> 1804 {
+        1.05239248276 0.425898939371 0.11802098155
+        <UV>  {
+          0.699645 0.433474
+          <Tangent> { 0.156658 -0.486052 0.859774 }
+          <Binormal> { -0.506613 -0.151734 0.006530 }
+        }
+        <Normal> { -0.260231 0.849086 -0.459639 }
+      }
+      <Vertex> 1805 {
+        1.04563045502 0.425898939371 0.266792804003
+        <UV>  {
+          0.699583 0.434245
+          <Tangent> { 0.151288 -0.485892 0.860826 }
+          <Binormal> { -0.922938 -0.218908 0.038642 }
+        }
+        <Normal> { -0.217200 0.953001 0.211097 }
+      }
+      <Vertex> 1806 {
+        1.07777714729 0.24732093513 0.334254056215
+        <UV>  {
+          0.699591 0.431883
+          <Tangent> { -0.255604 -0.365935 0.894851 }
+          <Binormal> { -0.953255 -0.057432 -0.295773 }
+        }
+        <Normal> { -0.165258 0.920560 0.353862 }
+      }
+      <Vertex> 1807 {
+        1.08718574047 0.24732093513 0.1272675246
+        <UV>  {
+          0.700142 0.431168
+          <Tangent> { 0.958863 0.088478 0.269727 }
+          <Binormal> { -0.253339 0.651689 0.686834 }
+        }
+        <Normal> { -0.075076 0.709372 -0.700766 }
+      }
+      <Vertex> 1808 {
+        1.05239248276 0.425898939371 0.11802098155
+        <UV>  {
+          0.699645 0.433474
+          <Tangent> { 0.156658 -0.486052 0.859774 }
+          <Binormal> { -0.506613 -0.151734 0.006530 }
+        }
+        <Normal> { -0.260231 0.849086 -0.459639 }
+      }
+      <Vertex> 1809 {
+        0.470709204674 0.431001186371 0.27503284812
+        <UV>  {
+          0.699212 0.435091
+          <Tangent> { -0.114296 0.640263 -0.759605 }
+          <Binormal> { -0.491558 0.292108 0.320178 }
+        }
+        <Normal> { -0.340556 -0.893582 0.292398 }
+      }
+      <Vertex> 1810 {
+        0.554052650928 0.655499219894 0.215564966202
+        <UV>  {
+          0.699172 0.436291
+          <Tangent> { 0.140538 0.679929 -0.719684 }
+          <Binormal> { -0.596190 0.341168 0.205900 }
+        }
+        <Normal> { -0.483474 -0.873989 0.048250 }
+      }
+      <Vertex> 1811 {
+        0.46394649148 0.431001186371 0.105974189937
+        <UV>  {
+          0.699423 0.434384
+          <Tangent> { 0.236333 0.300676 -0.923981 }
+          <Binormal> { -0.912141 0.353889 -0.118144 }
+        }
+        <Normal> { -0.251381 -0.819727 -0.514603 }
+      }
+      <Vertex> 1812 {
+        0.554052650928 0.655499219894 0.215564966202
+        <UV>  {
+          0.699172 0.436291
+          <Tangent> { 0.140538 0.679929 -0.719684 }
+          <Binormal> { -0.596190 0.341168 0.205900 }
+        }
+        <Normal> { -0.483474 -0.873989 0.048250 }
+      }
+      <Vertex> 1813 {
+        0.470709204674 0.431001186371 0.27503284812
+        <UV>  {
+          0.699212 0.435091
+          <Tangent> { -0.114296 0.640263 -0.759605 }
+          <Binormal> { -0.491558 0.292108 0.320178 }
+        }
+        <Normal> { -0.340556 -0.893582 0.292398 }
+      }
+      <Vertex> 1814 {
+        0.582531571388 0.466716766357 0.410645484924
+        <UV>  {
+          0.699193 0.436231
+          <Tangent> { -0.192317 0.702161 -0.685554 }
+          <Binormal> { 0.083294 0.297882 0.281731 }
+        }
+        <Normal> { -0.227363 -0.634816 0.738426 }
+      }
+      <Vertex> 1815 {
+        0.46394649148 0.431001186371 0.105974189937
+        <UV>  {
+          0.699423 0.434384
+          <Tangent> { 0.236333 0.300676 -0.923981 }
+          <Binormal> { -0.912141 0.353889 -0.118144 }
+        }
+        <Normal> { -0.251381 -0.819727 -0.514603 }
+      }
+      <Vertex> 1816 {
+        0.554052650928 0.655499219894 0.215564966202
+        <UV>  {
+          0.699172 0.436291
+          <Tangent> { 0.140538 0.679929 -0.719684 }
+          <Binormal> { -0.596190 0.341168 0.205900 }
+        }
+        <Normal> { -0.483474 -0.873989 0.048250 }
+      }
+      <Vertex> 1817 {
+        0.715450525284 0.85201472044 0.123724862933
+        <UV>  {
+          0.699515 0.436720
+          <Tangent> { 0.957803 0.236949 -0.162692 }
+          <Binormal> { -0.242757 0.802286 -0.260691 }
+        }
+        <Normal> { -0.527451 -0.402661 -0.748039 }
+      }
+      <Vertex> 1818 {
+        0.582531571388 0.466716766357 0.410645484924
+        <UV>  {
+          0.699193 0.436231
+          <Tangent> { -0.192317 0.702161 -0.685554 }
+          <Binormal> { 0.083294 0.297882 0.281731 }
+        }
+        <Normal> { -0.227363 -0.634816 0.738426 }
+      }
+      <Vertex> 1819 {
+        0.650995016098 0.844281673431 0.389040738344
+        <UV>  {
+          0.699835 0.438244
+          <Tangent> { 0.453793 0.637171 -0.622965 }
+          <Binormal> { 0.011434 0.191313 0.204005 }
+        }
+        <Normal> { -0.684805 -0.511979 0.518509 }
+      }
+      <Vertex> 1820 {
+        0.554052650928 0.655499219894 0.215564966202
+        <UV>  {
+          0.699172 0.436291
+          <Tangent> { 0.140538 0.679929 -0.719684 }
+          <Binormal> { -0.596190 0.341168 0.205900 }
+        }
+        <Normal> { -0.483474 -0.873989 0.048250 }
+      }
+      <Vertex> 1821 {
+        0.768346250057 0.910610616207 0.225769430399
+        <UV>  {
+          0.699621 0.437692
+          <Tangent> { 0.987047 -0.159167 0.020076 }
+          <Binormal> { 0.021970 0.115187 -0.166939 }
+        }
+        <Normal> { -0.990539 -0.009400 -0.136845 }
+      }
+      <Vertex> 1822 {
+        0.715450525284 0.85201472044 0.123724862933
+        <UV>  {
+          0.699515 0.436720
+          <Tangent> { 0.957803 0.236949 -0.162692 }
+          <Binormal> { -0.242757 0.802286 -0.260691 }
+        }
+        <Normal> { -0.527451 -0.402661 -0.748039 }
+      }
+      <Vertex> 1823 {
+        0.554052650928 0.655499219894 0.215564966202
+        <UV>  {
+          0.699172 0.436291
+          <Tangent> { 0.140538 0.679929 -0.719684 }
+          <Binormal> { -0.596190 0.341168 0.205900 }
+        }
+        <Normal> { -0.483474 -0.873989 0.048250 }
+      }
+      <Vertex> 1824 {
+        0.650995016098 0.844281673431 0.389040738344
+        <UV>  {
+          0.699835 0.438244
+          <Tangent> { 0.453793 0.637171 -0.622965 }
+          <Binormal> { 0.011434 0.191313 0.204005 }
+        }
+        <Normal> { -0.684805 -0.511979 0.518509 }
+      }
+      <Vertex> 1825 {
+        0.768346250057 0.910610616207 0.225769430399
+        <UV>  {
+          0.699621 0.437692
+          <Tangent> { 0.987047 -0.159167 0.020076 }
+          <Binormal> { 0.021970 0.115187 -0.166939 }
+        }
+        <Normal> { -0.990539 -0.009400 -0.136845 }
+      }
+      <Vertex> 1826 {
+        0.554052650928 0.655499219894 0.215564966202
+        <UV>  {
+          0.699172 0.436291
+          <Tangent> { 0.140538 0.679929 -0.719684 }
+          <Binormal> { -0.596190 0.341168 0.205900 }
+        }
+        <Normal> { -0.483474 -0.873989 0.048250 }
+      }
+      <Vertex> 1827 {
+        0.768346250057 0.910610616207 0.225769430399
+        <UV>  {
+          0.699621 0.437692
+          <Tangent> { 0.987047 -0.159167 0.020076 }
+          <Binormal> { 0.021970 0.115187 -0.166939 }
+        }
+        <Normal> { -0.990539 -0.009400 -0.136845 }
+      }
+      <Vertex> 1828 {
+        0.836548686028 0.856957495213 0.123724862933
+        <UV>  {
+          0.699421 0.436772
+          <Tangent> { 0.737516 -0.468934 0.485975 }
+          <Binormal> { 0.101457 0.250473 0.087719 }
+        }
+        <Normal> { -0.544237 0.464980 -0.698233 }
+      }
+      <Vertex> 1829 {
+        0.715450525284 0.85201472044 0.123724862933
+        <UV>  {
+          0.699515 0.436720
+          <Tangent> { 0.957803 0.236949 -0.162692 }
+          <Binormal> { -0.242757 0.802286 -0.260691 }
+        }
+        <Normal> { -0.527451 -0.402661 -0.748039 }
+      }
+      <Vertex> 1830 {
+        1.05239248276 0.425898939371 0.11802098155
+        <UV>  {
+          0.699645 0.433474
+          <Tangent> { 0.156658 -0.486052 0.859774 }
+          <Binormal> { -0.506613 -0.151734 0.006530 }
+        }
+        <Normal> { -0.260231 0.849086 -0.459639 }
+      }
+      <Vertex> 1831 {
+        0.962223172188 0.639301896095 0.235973879695
+        <UV>  {
+          0.699439 0.436042
+          <Tangent> { 0.159225 -0.488909 0.857680 }
+          <Binormal> { -0.715970 -0.384492 -0.086257 }
+        }
+        <Normal> { -0.463698 0.882077 -0.082980 }
+      }
+      <Vertex> 1832 {
+        1.04563045502 0.425898939371 0.266792804003
+        <UV>  {
+          0.699583 0.434245
+          <Tangent> { 0.151288 -0.485892 0.860826 }
+          <Binormal> { -0.922938 -0.218908 0.038642 }
+        }
+        <Normal> { -0.217200 0.953001 0.211097 }
+      }
+      <Vertex> 1833 {
+        0.962223172188 0.639301896095 0.235973879695
+        <UV>  {
+          0.699439 0.436042
+          <Tangent> { 0.159225 -0.488909 0.857680 }
+          <Binormal> { -0.715970 -0.384492 -0.086257 }
+        }
+        <Normal> { -0.463698 0.882077 -0.082980 }
+      }
+      <Vertex> 1834 {
+        1.05239248276 0.425898939371 0.11802098155
+        <UV>  {
+          0.699645 0.433474
+          <Tangent> { 0.156658 -0.486052 0.859774 }
+          <Binormal> { -0.506613 -0.151734 0.006530 }
+        }
+        <Normal> { -0.260231 0.849086 -0.459639 }
+      }
+      <Vertex> 1835 {
+        0.836548686028 0.856957495213 0.123724862933
+        <UV>  {
+          0.699421 0.436772
+          <Tangent> { 0.737516 -0.468934 0.485975 }
+          <Binormal> { 0.101457 0.250473 0.087719 }
+        }
+        <Normal> { -0.544237 0.464980 -0.698233 }
+      }
+      <Vertex> 1836 {
+        0.962223172188 0.639301896095 0.235973879695
+        <UV>  {
+          0.699439 0.436042
+          <Tangent> { 0.159225 -0.488909 0.857680 }
+          <Binormal> { -0.715970 -0.384492 -0.086257 }
+        }
+        <Normal> { -0.463698 0.882077 -0.082980 }
+      }
+      <Vertex> 1837 {
+        0.768346250057 0.910610616207 0.225769430399
+        <UV>  {
+          0.699621 0.437692
+          <Tangent> { 0.987047 -0.159167 0.020076 }
+          <Binormal> { 0.021970 0.115187 -0.166939 }
+        }
+        <Normal> { -0.990539 -0.009400 -0.136845 }
+      }
+      <Vertex> 1838 {
+        0.901004195213 0.854486107826 0.389040738344
+        <UV>  {
+          0.699720 0.438921
+          <Tangent> { 0.750693 -0.564679 0.342926 }
+          <Binormal> { -0.361810 -0.427598 0.087927 }
+        }
+        <Normal> { -0.715323 0.655202 0.242836 }
+      }
+      <Vertex> 1839 {
+        0.768346250057 0.910610616207 0.225769430399
+        <UV>  {
+          0.699621 0.437692
+          <Tangent> { 0.987047 -0.159167 0.020076 }
+          <Binormal> { 0.021970 0.115187 -0.166939 }
+        }
+        <Normal> { -0.990539 -0.009400 -0.136845 }
+      }
+      <Vertex> 1840 {
+        0.962223172188 0.639301896095 0.235973879695
+        <UV>  {
+          0.699439 0.436042
+          <Tangent> { 0.159225 -0.488909 0.857680 }
+          <Binormal> { -0.715970 -0.384492 -0.086257 }
+        }
+        <Normal> { -0.463698 0.882077 -0.082980 }
+      }
+      <Vertex> 1841 {
+        0.836548686028 0.856957495213 0.123724862933
+        <UV>  {
+          0.699421 0.436772
+          <Tangent> { 0.737516 -0.468934 0.485975 }
+          <Binormal> { 0.101457 0.250473 0.087719 }
+        }
+        <Normal> { -0.544237 0.464980 -0.698233 }
+      }
+      <Vertex> 1842 {
+        0.962223172188 0.639301896095 0.235973879695
+        <UV>  {
+          0.699439 0.436042
+          <Tangent> { 0.159225 -0.488909 0.857680 }
+          <Binormal> { -0.715970 -0.384492 -0.086257 }
+        }
+        <Normal> { -0.463698 0.882077 -0.082980 }
+      }
+      <Vertex> 1843 {
+        0.901004195213 0.854486107826 0.389040738344
+        <UV>  {
+          0.699720 0.438921
+          <Tangent> { 0.750693 -0.564679 0.342926 }
+          <Binormal> { -0.361810 -0.427598 0.087927 }
+        }
+        <Normal> { -0.715323 0.655202 0.242836 }
+      }
+      <Vertex> 1844 {
+        1.04563045502 0.425898939371 0.266792804003
+        <UV>  {
+          0.699583 0.434245
+          <Tangent> { 0.151288 -0.485892 0.860826 }
+          <Binormal> { -0.922938 -0.218908 0.038642 }
+        }
+        <Normal> { -0.217200 0.953001 0.211097 }
+      }
+      <Vertex> 1845 {
+        0.768346250057 0.910610616207 0.225769430399
+        <UV>  {
+          0.699621 0.437692
+          <Tangent> { 0.987047 -0.159167 0.020076 }
+          <Binormal> { 0.021970 0.115187 -0.166939 }
+        }
+        <Normal> { -0.990539 -0.009400 -0.136845 }
+      }
+      <Vertex> 1846 {
+        0.650995016098 0.844281673431 0.389040738344
+        <UV>  {
+          0.699835 0.438244
+          <Tangent> { 0.453793 0.637171 -0.622965 }
+          <Binormal> { 0.011434 0.191313 0.204005 }
+        }
+        <Normal> { -0.684805 -0.511979 0.518509 }
+      }
+      <Vertex> 1847 {
+        0.901004195213 0.854486107826 0.389040738344
+        <UV>  {
+          0.699720 0.438921
+          <Tangent> { 0.750693 -0.564679 0.342926 }
+          <Binormal> { -0.361810 -0.427598 0.087927 }
+        }
+        <Normal> { -0.715323 0.655202 0.242836 }
+      }
+      <Vertex> 1848 {
+        0.945739626884 0.614681363106 0.536179482937
+        <UV>  {
+          0.698832 0.440278
+          <Tangent> { -0.452696 -0.607005 0.653155 }
+          <Binormal> { -0.812927 0.155673 -0.418759 }
+        }
+        <Normal> { 0.016602 0.947295 0.319926 }
+      }
+      <Vertex> 1849 {
+        0.901004195213 0.854486107826 0.389040738344
+        <UV>  {
+          0.699720 0.438921
+          <Tangent> { 0.750693 -0.564679 0.342926 }
+          <Binormal> { -0.361810 -0.427598 0.087927 }
+        }
+        <Normal> { -0.715323 0.655202 0.242836 }
+      }
+      <Vertex> 1850 {
+        0.852500617504 0.793259382248 0.480152130127
+        <UV>  {
+          0.700033 0.440157
+          <Tangent> { 0.997700 0.055621 -0.038748 }
+          <Binormal> { 0.031187 -0.384411 0.251207 }
+        }
+        <Normal> { -0.884793 0.202460 0.419660 }
+      }
+      <Vertex> 1851 {
+        0.901004195213 0.854486107826 0.389040738344
+        <UV>  {
+          0.699720 0.438921
+          <Tangent> { 0.750693 -0.564679 0.342926 }
+          <Binormal> { -0.361810 -0.427598 0.087927 }
+        }
+        <Normal> { -0.715323 0.655202 0.242836 }
+      }
+      <Vertex> 1852 {
+        0.945739626884 0.614681363106 0.536179482937
+        <UV>  {
+          0.698832 0.440278
+          <Tangent> { -0.452696 -0.607005 0.653155 }
+          <Binormal> { -0.812927 0.155673 -0.418759 }
+        }
+        <Normal> { 0.016602 0.947295 0.319926 }
+      }
+      <Vertex> 1853 {
+        1.04563045502 0.425898939371 0.266792804003
+        <UV>  {
+          0.699583 0.434245
+          <Tangent> { 0.151288 -0.485892 0.860826 }
+          <Binormal> { -0.922938 -0.218908 0.038642 }
+        }
+        <Normal> { -0.217200 0.953001 0.211097 }
+      }
+      <Vertex> 1854 {
+        0.945739626884 0.614681363106 0.536179482937
+        <UV>  {
+          0.698832 0.440278
+          <Tangent> { -0.452696 -0.607005 0.653155 }
+          <Binormal> { -0.812927 0.155673 -0.418759 }
+        }
+        <Normal> { 0.016602 0.947295 0.319926 }
+      }
+      <Vertex> 1855 {
+        0.966081261635 0.415694475174 0.385256409645
+        <UV>  {
+          0.699547 0.434992
+          <Tangent> { -0.601947 -0.402807 0.689497 }
+          <Binormal> { -0.672045 0.606584 -0.232343 }
+        }
+        <Normal> { 0.110660 0.460036 0.880947 }
+      }
+      <Vertex> 1856 {
+        1.04563045502 0.425898939371 0.266792804003
+        <UV>  {
+          0.699583 0.434245
+          <Tangent> { 0.151288 -0.485892 0.860826 }
+          <Binormal> { -0.922938 -0.218908 0.038642 }
+        }
+        <Normal> { -0.217200 0.953001 0.211097 }
+      }
+      <Vertex> 1857 {
+        0.901004195213 0.854486107826 0.389040738344
+        <UV>  {
+          0.699720 0.438921
+          <Tangent> { 0.750693 -0.564679 0.342926 }
+          <Binormal> { -0.361810 -0.427598 0.087927 }
+        }
+        <Normal> { -0.715323 0.655202 0.242836 }
+      }
+      <Vertex> 1858 {
+        0.650995016098 0.844281673431 0.389040738344
+        <UV>  {
+          0.699835 0.438244
+          <Tangent> { 0.453793 0.637171 -0.622965 }
+          <Binormal> { 0.011434 0.191313 0.204005 }
+        }
+        <Normal> { -0.684805 -0.511979 0.518509 }
+      }
+      <Vertex> 1859 {
+        0.852500617504 0.793259382248 0.480152130127
+        <UV>  {
+          0.700033 0.440157
+          <Tangent> { 0.997700 0.055621 -0.038748 }
+          <Binormal> { 0.031187 -0.384411 0.251207 }
+        }
+        <Normal> { -0.884793 0.202460 0.419660 }
+      }
+      <Vertex> 1860 {
+        0.747860431671 0.772850453854 0.469460636377
+        <UV>  {
+          0.699863 0.440043
+          <Tangent> { 0.579883 0.792559 -0.188644 }
+          <Binormal> { -0.009543 0.048719 0.175350 }
+        }
+        <Normal> { -0.718314 -0.679373 0.149663 }
+      }
+      <Vertex> 1861 {
+        0.852500617504 0.793259382248 0.480152130127
+        <UV>  {
+          0.700033 0.440157
+          <Tangent> { 0.997700 0.055621 -0.038748 }
+          <Binormal> { 0.031187 -0.384411 0.251207 }
+        }
+        <Normal> { -0.884793 0.202460 0.419660 }
+      }
+      <Vertex> 1862 {
+        0.650995016098 0.844281673431 0.389040738344
+        <UV>  {
+          0.699835 0.438244
+          <Tangent> { 0.453793 0.637171 -0.622965 }
+          <Binormal> { 0.011434 0.191313 0.204005 }
+        }
+        <Normal> { -0.684805 -0.511979 0.518509 }
+      }
+      <Vertex> 1863 {
+        0.582531571388 0.466716766357 0.410645484924
+        <UV>  {
+          0.699193 0.436231
+          <Tangent> { -0.192317 0.702161 -0.685554 }
+          <Binormal> { 0.083294 0.297882 0.281731 }
+        }
+        <Normal> { -0.227363 -0.634816 0.738426 }
+      }
+      <Vertex> 1864 {
+        0.747860431671 0.772850453854 0.469460636377
+        <UV>  {
+          0.699863 0.440043
+          <Tangent> { 0.579883 0.792559 -0.188644 }
+          <Binormal> { -0.009543 0.048719 0.175350 }
+        }
+        <Normal> { -0.718314 -0.679373 0.149663 }
+      }
+      <Vertex> 1865 {
+        0.650995016098 0.844281673431 0.389040738344
+        <UV>  {
+          0.699835 0.438244
+          <Tangent> { 0.453793 0.637171 -0.622965 }
+          <Binormal> { 0.011434 0.191313 0.204005 }
+        }
+        <Normal> { -0.684805 -0.511979 0.518509 }
+      }
+      <Vertex> 1866 {
+        0.747860431671 0.772850453854 0.469460636377
+        <UV>  {
+          0.699863 0.440043
+          <Tangent> { 0.579883 0.792559 -0.188644 }
+          <Binormal> { -0.009543 0.048719 0.175350 }
+        }
+        <Normal> { -0.718314 -0.679373 0.149663 }
+      }
+      <Vertex> 1867 {
+        0.582531571388 0.466716766357 0.410645484924
+        <UV>  {
+          0.699193 0.436231
+          <Tangent> { -0.192317 0.702161 -0.685554 }
+          <Binormal> { 0.083294 0.297882 0.281731 }
+        }
+        <Normal> { -0.227363 -0.634816 0.738426 }
+      }
+      <Vertex> 1868 {
+        0.617596328259 0.594272494316 0.461545705795
+        <UV>  {
+          0.699785 0.439153
+          <Tangent> { 0.510922 0.838565 -0.189124 }
+          <Binormal> { -0.112236 -0.096418 -0.730720 }
+        }
+        <Normal> { 0.290506 -0.953398 0.081179 }
+      }
+      <Vertex> 1869 {
+        0.582531571388 0.466716766357 0.410645484924
+        <UV>  {
+          0.699193 0.436231
+          <Tangent> { -0.192317 0.702161 -0.685554 }
+          <Binormal> { 0.083294 0.297882 0.281731 }
+        }
+        <Normal> { -0.227363 -0.634816 0.738426 }
+      }
+      <Vertex> 1870 {
+        0.763333082199 0.420796722174 0.463023036718
+        <UV>  {
+          0.698937 0.436234
+          <Tangent> { -0.914688 -0.155915 -0.372875 }
+          <Binormal> { -0.185290 0.887348 0.083490 }
+        }
+        <Normal> { 0.060671 -0.080935 0.994842 }
+      }
+      <Vertex> 1871 {
+        0.617596328259 0.594272494316 0.461545705795
+        <UV>  {
+          0.699785 0.439153
+          <Tangent> { 0.510922 0.838565 -0.189124 }
+          <Binormal> { -0.112236 -0.096418 -0.730720 }
+        }
+        <Normal> { 0.290506 -0.953398 0.081179 }
+      }
+      <Vertex> 1872 {
+        0.617596328259 0.594272494316 0.461545705795
+        <UV>  {
+          0.699785 0.439153
+          <Tangent> { 0.510922 0.838565 -0.189124 }
+          <Binormal> { -0.112236 -0.096418 -0.730720 }
+        }
+        <Normal> { 0.290506 -0.953398 0.081179 }
+      }
+      <Vertex> 1873 {
+        0.763333082199 0.420796722174 0.463023036718
+        <UV>  {
+          0.698937 0.436234
+          <Tangent> { -0.914688 -0.155915 -0.372875 }
+          <Binormal> { -0.185290 0.887348 0.083490 }
+        }
+        <Normal> { 0.060671 -0.080935 0.994842 }
+      }
+      <Vertex> 1874 {
+        0.75382745266 0.502432346344 0.514488816261
+        <UV>  {
+          0.698616 0.438861
+          <Tangent> { -0.997984 -0.061496 0.015690 }
+          <Binormal> { -0.010788 0.256216 0.318024 }
+        }
+        <Normal> { 0.934446 -0.261086 0.242042 }
+      }
+      <Vertex> 1875 {
+        0.763333082199 0.420796722174 0.463023036718
+        <UV>  {
+          0.698937 0.436234
+          <Tangent> { -0.914688 -0.155915 -0.372875 }
+          <Binormal> { -0.185290 0.887348 0.083490 }
+        }
+        <Normal> { 0.060671 -0.080935 0.994842 }
+      }
+      <Vertex> 1876 {
+        0.851008951664 0.512636840343 0.500784039497
+        <UV>  {
+          0.698569 0.438602
+          <Tangent> { -0.972848 -0.197379 0.120861 }
+          <Binormal> { -0.101792 0.401118 -0.164287 }
+        }
+        <Normal> { 0.887112 0.348857 0.302103 }
+      }
+      <Vertex> 1877 {
+        0.75382745266 0.502432346344 0.514488816261
+        <UV>  {
+          0.698616 0.438861
+          <Tangent> { -0.997984 -0.061496 0.015690 }
+          <Binormal> { -0.010788 0.256216 0.318024 }
+        }
+        <Normal> { 0.934446 -0.261086 0.242042 }
+      }
+      <Vertex> 1878 {
+        0.966081261635 0.415694475174 0.385256409645
+        <UV>  {
+          0.699547 0.434992
+          <Tangent> { -0.601947 -0.402807 0.689497 }
+          <Binormal> { -0.672045 0.606584 -0.232343 }
+        }
+        <Normal> { 0.110660 0.460036 0.880947 }
+      }
+      <Vertex> 1879 {
+        0.945739626884 0.614681363106 0.536179482937
+        <UV>  {
+          0.698832 0.440278
+          <Tangent> { -0.452696 -0.607005 0.653155 }
+          <Binormal> { -0.812927 0.155673 -0.418759 }
+        }
+        <Normal> { 0.016602 0.947295 0.319926 }
+      }
+      <Vertex> 1880 {
+        0.851008951664 0.512636840343 0.500784039497
+        <UV>  {
+          0.698569 0.438602
+          <Tangent> { -0.972848 -0.197379 0.120861 }
+          <Binormal> { -0.101792 0.401118 -0.164287 }
+        }
+        <Normal> { 0.887112 0.348857 0.302103 }
+      }
+      <Vertex> 1881 {
+        0.851008951664 0.512636840343 0.500784039497
+        <UV>  {
+          0.698569 0.438602
+          <Tangent> { -0.972848 -0.197379 0.120861 }
+          <Binormal> { -0.101792 0.401118 -0.164287 }
+        }
+        <Normal> { 0.887112 0.348857 0.302103 }
+      }
+      <Vertex> 1882 {
+        0.763333082199 0.420796722174 0.463023036718
+        <UV>  {
+          0.698937 0.436234
+          <Tangent> { -0.914688 -0.155915 -0.372875 }
+          <Binormal> { -0.185290 0.887348 0.083490 }
+        }
+        <Normal> { 0.060671 -0.080935 0.994842 }
+      }
+      <Vertex> 1883 {
+        0.966081261635 0.415694475174 0.385256409645
+        <UV>  {
+          0.699547 0.434992
+          <Tangent> { -0.601947 -0.402807 0.689497 }
+          <Binormal> { -0.672045 0.606584 -0.232343 }
+        }
+        <Normal> { 0.110660 0.460036 0.880947 }
+      }
+      <Vertex> 1884 {
+        0.556291699409 -0.19657291472 0.100115843117
+        <UV>  {
+          0.697882 0.429423
+          <Tangent> { 0.475554 0.658294 -0.583522 }
+          <Binormal> { -0.785825 0.114042 -0.511771 }
+        }
+        <Normal> { 0.426283 -0.486068 -0.762871 }
+      }
+      <Vertex> 1885 {
+        0.431599140167 0.0228229165077 0.118622630835
+        <UV>  {
+          0.698345 0.431661
+          <Tangent> { 0.030511 0.143461 -0.989185 }
+          <Binormal> { -0.928306 -0.198968 -0.057490 }
+        }
+        <Normal> { 0.214484 -0.875729 -0.432508 }
+      }
+      <Vertex> 1886 {
+        0.76324403286 0.359569966793 0.133929312229
+        <UV>  {
+          0.699815 0.433668
+          <Tangent> { 0.976377 0.216055 -0.002841 }
+          <Binormal> { -0.216025 0.976333 0.007070 }
+        }
+        <Normal> { -0.005554 0.006012 -0.999939 }
+      }
+      <Vertex> 1887 {
+        0.76324403286 0.359569966793 0.133929312229
+        <UV>  {
+          0.699815 0.433668
+          <Tangent> { 0.976377 0.216055 -0.002841 }
+          <Binormal> { -0.216025 0.976333 0.007070 }
+        }
+        <Normal> { -0.005554 0.006012 -0.999939 }
+      }
+      <Vertex> 1888 {
+        0.671403884888 -0.242492973804 0.118622630835
+        <UV>  {
+          0.698145 0.427591
+          <Tangent> { -0.121863 0.482938 -0.867133 }
+          <Binormal> { -0.385253 -0.613069 -0.287299 }
+        }
+        <Normal> { 0.593951 0.003754 -0.804468 }
+      }
+      <Vertex> 1889 {
+        0.556291699409 -0.19657291472 0.100115843117
+        <UV>  {
+          0.697882 0.429423
+          <Tangent> { 0.475554 0.658294 -0.583522 }
+          <Binormal> { -0.785825 0.114042 -0.511771 }
+        }
+        <Normal> { 0.426283 -0.486068 -0.762871 }
+      }
+      <Vertex> 1890 {
+        0.76324403286 0.359569966793 0.133929312229
+        <UV>  {
+          0.699815 0.433668
+          <Tangent> { 0.976377 0.216055 -0.002841 }
+          <Binormal> { -0.216025 0.976333 0.007070 }
+        }
+        <Normal> { -0.005554 0.006012 -0.999939 }
+      }
+      <Vertex> 1891 {
+        0.855084121227 -0.242492973804 0.108418174088
+        <UV>  {
+          0.698193 0.424520
+          <Tangent> { -0.389857 -0.816386 -0.426058 }
+          <Binormal> { 0.687916 -0.556137 0.436170 }
+        }
+        <Normal> { 0.528703 -0.011658 -0.848720 }
+      }
+      <Vertex> 1892 {
+        0.671403884888 -0.242492973804 0.118622630835
+        <UV>  {
+          0.698145 0.427591
+          <Tangent> { -0.121863 0.482938 -0.867133 }
+          <Binormal> { -0.385253 -0.613069 -0.287299 }
+        }
+        <Normal> { 0.593951 0.003754 -0.804468 }
+      }
+      <Vertex> 1893 {
+        0.971804738045 -0.196572929621 0.0951332002878
+        <UV>  {
+          0.699578 0.420025
+          <Tangent> { -0.077475 0.510961 -0.856105 }
+          <Binormal> { 0.056377 -0.452120 -0.274947 }
+        }
+        <Normal> { 0.461959 0.502152 -0.731010 }
+      }
+      <Vertex> 1894 {
+        0.855084121227 -0.242492973804 0.108418174088
+        <UV>  {
+          0.698193 0.424520
+          <Tangent> { -0.389857 -0.816386 -0.426058 }
+          <Binormal> { 0.687916 -0.556137 0.436170 }
+        }
+        <Normal> { 0.528703 -0.011658 -0.848720 }
+      }
+      <Vertex> 1895 {
+        0.76324403286 0.359569966793 0.133929312229
+        <UV>  {
+          0.699815 0.433668
+          <Tangent> { 0.976377 0.216055 -0.002841 }
+          <Binormal> { -0.216025 0.976333 0.007070 }
+        }
+        <Normal> { -0.005554 0.006012 -0.999939 }
+      }
+      <Vertex> 1896 {
+        0.76324403286 0.359569966793 0.133929312229
+        <UV>  {
+          0.699815 0.433668
+          <Tangent> { 0.976377 0.216055 -0.002841 }
+          <Binormal> { -0.216025 0.976333 0.007070 }
+        }
+        <Normal> { -0.005554 0.006012 -0.999939 }
+      }
+      <Vertex> 1897 {
+        1.09488880634 0.022822888568 0.118622630835
+        <UV>  {
+          0.700371 0.426941
+          <Tangent> { 0.879748 -0.190016 0.435818 }
+          <Binormal> { -0.303956 0.458138 0.813317 }
+        }
+        <Normal> { 0.186895 0.884121 -0.428175 }
+      }
+      <Vertex> 1898 {
+        0.971804738045 -0.196572929621 0.0951332002878
+        <UV>  {
+          0.699578 0.420025
+          <Tangent> { -0.077475 0.510961 -0.856105 }
+          <Binormal> { 0.056377 -0.452120 -0.274947 }
+        }
+        <Normal> { 0.461959 0.502152 -0.731010 }
+      }
+      <Vertex> 1899 {
+        1.08718574047 0.24732093513 0.1272675246
+        <UV>  {
+          0.700142 0.431168
+          <Tangent> { 0.958863 0.088478 0.269727 }
+          <Binormal> { -0.253339 0.651689 0.686834 }
+        }
+        <Normal> { -0.075076 0.709372 -0.700766 }
+      }
+      <Vertex> 1900 {
+        1.09488880634 0.022822888568 0.118622630835
+        <UV>  {
+          0.700371 0.426941
+          <Tangent> { 0.879748 -0.190016 0.435818 }
+          <Binormal> { -0.303956 0.458138 0.813317 }
+        }
+        <Normal> { 0.186895 0.884121 -0.428175 }
+      }
+      <Vertex> 1901 {
+        0.76324403286 0.359569966793 0.133929312229
+        <UV>  {
+          0.699815 0.433668
+          <Tangent> { 0.976377 0.216055 -0.002841 }
+          <Binormal> { -0.216025 0.976333 0.007070 }
+        }
+        <Normal> { -0.005554 0.006012 -0.999939 }
+      }
+      <Vertex> 1902 {
+        0.76324403286 0.359569966793 0.133929312229
+        <UV>  {
+          0.699815 0.433668
+          <Tangent> { 0.976377 0.216055 -0.002841 }
+          <Binormal> { -0.216025 0.976333 0.007070 }
+        }
+        <Normal> { -0.005554 0.006012 -0.999939 }
+      }
+      <Vertex> 1903 {
+        1.05239248276 0.425898939371 0.11802098155
+        <UV>  {
+          0.699645 0.433474
+          <Tangent> { 0.156658 -0.486052 0.859774 }
+          <Binormal> { -0.506613 -0.151734 0.006530 }
+        }
+        <Normal> { -0.260231 0.849086 -0.459639 }
+      }
+      <Vertex> 1904 {
+        1.08718574047 0.24732093513 0.1272675246
+        <UV>  {
+          0.700142 0.431168
+          <Tangent> { 0.958863 0.088478 0.269727 }
+          <Binormal> { -0.253339 0.651689 0.686834 }
+        }
+        <Normal> { -0.075076 0.709372 -0.700766 }
+      }
+      <Vertex> 1905 {
+        0.76324403286 0.359569966793 0.133929312229
+        <UV>  {
+          0.699815 0.433668
+          <Tangent> { 0.976377 0.216055 -0.002841 }
+          <Binormal> { -0.216025 0.976333 0.007070 }
+        }
+        <Normal> { -0.005554 0.006012 -0.999939 }
+      }
+      <Vertex> 1906 {
+        0.836548686028 0.856957495213 0.123724862933
+        <UV>  {
+          0.699421 0.436772
+          <Tangent> { 0.737516 -0.468934 0.485975 }
+          <Binormal> { 0.101457 0.250473 0.087719 }
+        }
+        <Normal> { -0.544237 0.464980 -0.698233 }
+      }
+      <Vertex> 1907 {
+        1.05239248276 0.425898939371 0.11802098155
+        <UV>  {
+          0.699645 0.433474
+          <Tangent> { 0.156658 -0.486052 0.859774 }
+          <Binormal> { -0.506613 -0.151734 0.006530 }
+        }
+        <Normal> { -0.260231 0.849086 -0.459639 }
+      }
+      <Vertex> 1908 {
+        0.715450525284 0.85201472044 0.123724862933
+        <UV>  {
+          0.699515 0.436720
+          <Tangent> { 0.957803 0.236949 -0.162692 }
+          <Binormal> { -0.242757 0.802286 -0.260691 }
+        }
+        <Normal> { -0.527451 -0.402661 -0.748039 }
+      }
+      <Vertex> 1909 {
+        0.836548686028 0.856957495213 0.123724862933
+        <UV>  {
+          0.699421 0.436772
+          <Tangent> { 0.737516 -0.468934 0.485975 }
+          <Binormal> { 0.101457 0.250473 0.087719 }
+        }
+        <Normal> { -0.544237 0.464980 -0.698233 }
+      }
+      <Vertex> 1910 {
+        0.76324403286 0.359569966793 0.133929312229
+        <UV>  {
+          0.699815 0.433668
+          <Tangent> { 0.976377 0.216055 -0.002841 }
+          <Binormal> { -0.216025 0.976333 0.007070 }
+        }
+        <Normal> { -0.005554 0.006012 -0.999939 }
+      }
+      <Vertex> 1911 {
+        0.76324403286 0.359569966793 0.133929312229
+        <UV>  {
+          0.699815 0.433668
+          <Tangent> { 0.976377 0.216055 -0.002841 }
+          <Binormal> { -0.216025 0.976333 0.007070 }
+        }
+        <Normal> { -0.005554 0.006012 -0.999939 }
+      }
+      <Vertex> 1912 {
+        0.46394649148 0.431001186371 0.105974189937
+        <UV>  {
+          0.699423 0.434384
+          <Tangent> { 0.236333 0.300676 -0.923981 }
+          <Binormal> { -0.912141 0.353889 -0.118144 }
+        }
+        <Normal> { -0.251381 -0.819727 -0.514603 }
+      }
+      <Vertex> 1913 {
+        0.715450525284 0.85201472044 0.123724862933
+        <UV>  {
+          0.699515 0.436720
+          <Tangent> { 0.957803 0.236949 -0.162692 }
+          <Binormal> { -0.242757 0.802286 -0.260691 }
+        }
+        <Normal> { -0.527451 -0.402661 -0.748039 }
+      }
+      <Vertex> 1914 {
+        0.76324403286 0.359569966793 0.133929312229
+        <UV>  {
+          0.699815 0.433668
+          <Tangent> { 0.976377 0.216055 -0.002841 }
+          <Binormal> { -0.216025 0.976333 0.007070 }
+        }
+        <Normal> { -0.005554 0.006012 -0.999939 }
+      }
+      <Vertex> 1915 {
+        0.429531365633 0.237116515636 0.124482221901
+        <UV>  {
+          0.698923 0.433279
+          <Tangent> { 0.027757 0.141338 -0.989572 }
+          <Binormal> { -0.796822 0.052160 -0.014901 }
+        }
+        <Normal> { -0.032807 -0.703879 -0.709525 }
+      }
+      <Vertex> 1916 {
+        0.46394649148 0.431001186371 0.105974189937
+        <UV>  {
+          0.699423 0.434384
+          <Tangent> { 0.236333 0.300676 -0.923981 }
+          <Binormal> { -0.912141 0.353889 -0.118144 }
+        }
+        <Normal> { -0.251381 -0.819727 -0.514603 }
+      }
+      <Vertex> 1917 {
+        0.76324403286 0.359569966793 0.133929312229
+        <UV>  {
+          0.699815 0.433668
+          <Tangent> { 0.976377 0.216055 -0.002841 }
+          <Binormal> { -0.216025 0.976333 0.007070 }
+        }
+        <Normal> { -0.005554 0.006012 -0.999939 }
+      }
+      <Vertex> 1918 {
+        0.431599140167 0.0228229165077 0.118622630835
+        <UV>  {
+          0.698345 0.431661
+          <Tangent> { 0.030511 0.143461 -0.989185 }
+          <Binormal> { -0.928306 -0.198968 -0.057490 }
+        }
+        <Normal> { 0.214484 -0.875729 -0.432508 }
+      }
+      <Vertex> 1919 {
+        0.429531365633 0.237116515636 0.124482221901
+        <UV>  {
+          0.698923 0.433279
+          <Tangent> { 0.027757 0.141338 -0.989572 }
+          <Binormal> { -0.796822 0.052160 -0.014901 }
+        }
+        <Normal> { -0.032807 -0.703879 -0.709525 }
+      }
+      <Vertex> 1920 {
+        0.248577311635 0.995433986187 1.55788207054
+        <UV>  {
+          0.182410 0.201911
+          <Tangent> { -0.999911 0.005996 -0.011955 }
+          <Binormal> { 0.003169 0.535925 0.003727 }
+        }
+        <Normal> { -0.850581 0.001373 0.525803 }
+      }
+      <Vertex> 1921 {
+        0.248577311635 0.93576925993 1.59405100346
+        <UV>  {
+          0.182884 0.172634
+          <Tangent> { -0.999740 0.020380 -0.010261 }
+          <Binormal> { 0.020021 0.978614 -0.006985 }
+        }
+        <Normal> { 0.194525 0.003021 0.980865 }
+      }
+      <Vertex> 1922 {
+        0.31424793601 0.930432260036 1.52835118771
+        <UV>  {
+          0.222434 0.195735
+          <Tangent> { -0.619159 0.690712 0.373577 }
+          <Binormal> { 0.228068 0.471534 -0.493831 }
+        }
+        <Normal> { 0.087527 0.699942 0.708762 }
+      }
+      <Vertex> 1923 {
+        0.31424793601 0.930432260036 1.52835118771
+        <UV>  {
+          0.222434 0.195735
+          <Tangent> { -0.619159 0.690712 0.373577 }
+          <Binormal> { 0.228068 0.471534 -0.493831 }
+        }
+        <Normal> { 0.087527 0.699942 0.708762 }
+      }
+      <Vertex> 1924 {
+        0.31424793601 0.989793002605 1.50772297382
+        <UV>  {
+          0.205824 0.217722
+          <Tangent> { -0.909889 0.386321 0.151187 }
+          <Binormal> { 0.020228 0.092334 -0.114202 }
+        }
+        <Normal> { -0.841731 0.482894 0.241340 }
+      }
+      <Vertex> 1925 {
+        0.248577311635 0.995433986187 1.55788207054
+        <UV>  {
+          0.182410 0.201911
+          <Tangent> { -0.999911 0.005996 -0.011955 }
+          <Binormal> { 0.003169 0.535925 0.003727 }
+        }
+        <Normal> { -0.850581 0.001373 0.525803 }
+      }
+      <Vertex> 1926 {
+        0.248577311635 0.97661948204 1.52601051331
+        <UV>  {
+          0.182209 0.215068
+          <Tangent> { -0.999790 -0.009244 -0.018293 }
+          <Binormal> { 0.003346 -0.348263 -0.006896 }
+        }
+        <Normal> { -0.930845 -0.001709 -0.365368 }
+      }
+      <Vertex> 1927 {
+        0.248577311635 0.995433986187 1.55788207054
+        <UV>  {
+          0.182410 0.201911
+          <Tangent> { -0.999911 0.005996 -0.011955 }
+          <Binormal> { 0.003169 0.535925 0.003727 }
+        }
+        <Normal> { -0.850581 0.001373 0.525803 }
+      }
+      <Vertex> 1928 {
+        0.31424793601 0.989793002605 1.50772297382
+        <UV>  {
+          0.205824 0.217722
+          <Tangent> { -0.909889 0.386321 0.151187 }
+          <Binormal> { 0.020228 0.092334 -0.114202 }
+        }
+        <Normal> { -0.841731 0.482894 0.241340 }
+      }
+      <Vertex> 1929 {
+        0.31424793601 0.989793002605 1.50772297382
+        <UV>  {
+          0.205824 0.217722
+          <Tangent> { -0.909889 0.386321 0.151187 }
+          <Binormal> { 0.020228 0.092334 -0.114202 }
+        }
+        <Normal> { -0.841731 0.482894 0.241340 }
+      }
+      <Vertex> 1930 {
+        0.31424793601 0.930432260036 1.52835118771
+        <UV>  {
+          0.222434 0.195735
+          <Tangent> { -0.619159 0.690712 0.373577 }
+          <Binormal> { 0.228068 0.471534 -0.493831 }
+        }
+        <Normal> { 0.087527 0.699942 0.708762 }
+      }
+      <Vertex> 1931 {
+        0.365270227194 0.936121821404 1.44520199299
+        <UV>  {
+          0.237878 0.241743
+          <Tangent> { -0.526000 0.763911 -0.373849 }
+          <Binormal> { 0.373648 0.072338 -0.377904 }
+        }
+        <Normal> { -0.182287 0.983184 0.007965 }
+      }
+      <Vertex> 1932 {
+        0.365270227194 0.936121821404 1.44520199299
+        <UV>  {
+          0.757760 0.458054
+          <Tangent> { 0.083222 -0.530919 -0.843326 }
+          <Binormal> { 0.824916 0.153065 -0.014957 }
+        }
+        <Normal> { -0.182287 0.983184 0.007965 }
+      }
+      <Vertex> 1933 {
+        0.31424793601 0.930432260036 1.52835118771
+        <UV>  {
+          0.764364 0.459171
+          <Tangent> { 0.698847 -0.040981 -0.714097 }
+          <Binormal> { 0.470781 -0.557819 0.492739 }
+        }
+        <Normal> { 0.087527 0.699942 0.708762 }
+      }
+      <Vertex> 1934 {
+        0.339759081602 0.836657643318 1.45827400684
+        <UV>  {
+          0.752036 0.468027
+          <Tangent> { 0.675106 -0.399336 -0.620293 }
+          <Binormal> { 0.385461 0.539138 0.072433 }
+        }
+        <Normal> { -0.808649 0.585620 -0.055605 }
+      }
+      <Vertex> 1935 {
+        0.339759081602 0.836657643318 1.45827400684
+        <UV>  {
+          0.752036 0.468027
+          <Tangent> { 0.675106 -0.399336 -0.620293 }
+          <Binormal> { 0.385461 0.539138 0.072433 }
+        }
+        <Normal> { -0.808649 0.585620 -0.055605 }
+      }
+      <Vertex> 1936 {
+        0.31424793601 0.847973823547 1.32980525494
+        <UV>  {
+          0.747433 0.451060
+          <Tangent> { -0.121667 -0.929902 -0.347101 }
+          <Binormal> { 0.943720 -0.002923 -0.322964 }
+        }
+        <Normal> { -0.290689 0.432752 -0.853328 }
+      }
+      <Vertex> 1937 {
+        0.365270227194 0.936121821404 1.44520199299
+        <UV>  {
+          0.757760 0.458054
+          <Tangent> { 0.083222 -0.530919 -0.843326 }
+          <Binormal> { 0.824916 0.153065 -0.014957 }
+        }
+        <Normal> { -0.182287 0.983184 0.007965 }
+      }
+      <Vertex> 1938 {
+        0.339759081602 0.836657643318 1.45827400684
+        <UV>  {
+          0.752036 0.468027
+          <Tangent> { 0.675106 -0.399336 -0.620293 }
+          <Binormal> { 0.385461 0.539138 0.072433 }
+        }
+        <Normal> { -0.808649 0.585620 -0.055605 }
+      }
+      <Vertex> 1939 {
+        0.339759081602 0.695588648319 1.23194229603
+        <UV>  {
+          0.723763 0.437401
+          <Tangent> { 0.449758 -0.665411 -0.595773 }
+          <Binormal> { 0.383203 0.613642 -0.396083 }
+        }
+        <Normal> { -0.374859 -0.326060 -0.867824 }
+      }
+      <Vertex> 1940 {
+        0.31424793601 0.847973823547 1.32980525494
+        <UV>  {
+          0.747433 0.451060
+          <Tangent> { -0.121667 -0.929902 -0.347101 }
+          <Binormal> { 0.943720 -0.002923 -0.322964 }
+        }
+        <Normal> { -0.290689 0.432752 -0.853328 }
+      }
+      <Vertex> 1941 {
+        0.31424793601 0.930432260036 1.52835118771
+        <UV>  {
+          0.764364 0.459171
+          <Tangent> { 0.698847 -0.040981 -0.714097 }
+          <Binormal> { 0.470781 -0.557819 0.492739 }
+        }
+        <Normal> { 0.087527 0.699942 0.708762 }
+      }
+      <Vertex> 1942 {
+        0.248577296734 0.84658241272 1.49699413776
+        <UV>  {
+          0.768454 0.469515
+          <Tangent> { 0.883532 -0.045466 -0.466159 }
+          <Binormal> { -0.033848 -0.380366 -0.027055 }
+        }
+        <Normal> { -0.640126 0.002319 0.768242 }
+      }
+      <Vertex> 1943 {
+        0.339759081602 0.836657643318 1.45827400684
+        <UV>  {
+          0.752036 0.468027
+          <Tangent> { 0.675106 -0.399336 -0.620293 }
+          <Binormal> { 0.385461 0.539138 0.072433 }
+        }
+        <Normal> { -0.808649 0.585620 -0.055605 }
+      }
+      <Vertex> 1944 {
+        0.31424793601 0.930432260036 1.52835118771
+        <UV>  {
+          0.764364 0.459171
+          <Tangent> { 0.698847 -0.040981 -0.714097 }
+          <Binormal> { 0.470781 -0.557819 0.492739 }
+        }
+        <Normal> { 0.087527 0.699942 0.708762 }
+      }
+      <Vertex> 1945 {
+        0.248577311635 0.93576925993 1.59405100346
+        <UV>  {
+          0.773498 0.457310
+          <Tangent> { 0.786484 0.098909 -0.609640 }
+          <Binormal> { 0.098858 -0.890024 -0.016864 }
+        }
+        <Normal> { 0.194525 0.003021 0.980865 }
+      }
+      <Vertex> 1946 {
+        0.248577296734 0.84658241272 1.49699413776
+        <UV>  {
+          0.768454 0.469515
+          <Tangent> { 0.883532 -0.045466 -0.466159 }
+          <Binormal> { -0.033848 -0.380366 -0.027055 }
+        }
+        <Normal> { -0.640126 0.002319 0.768242 }
+      }
+      <Vertex> 1947 {
+        0.374971389771 0.119266994298 3.3393445015
+        <UV>  {
+          0.692030 0.861404
+          <Tangent> { -0.938739 -0.341759 0.044378 }
+          <Binormal> { -0.114090 0.309412 -0.030555 }
+        }
+        <Normal> { 0.889035 0.356212 0.287576 }
+      }
+      <Vertex> 1948 {
+        0.248577266932 0.195963606238 3.59063100815
+        <UV>  {
+          0.688273 0.876805
+          <Tangent> { -0.999205 -0.024067 -0.031785 }
+          <Binormal> { -0.016137 0.647287 0.017165 }
+        }
+        <Normal> { 0.741081 0.000671 0.671377 }
+      }
+      <Vertex> 1949 {
+        0.248577266932 0.122044183314 3.3946120739
+        <UV>  {
+          0.687692 0.863782
+          <Tangent> { -0.998995 -0.003782 -0.044661 }
+          <Binormal> { -0.000371 0.053881 0.003733 }
+        }
+        <Normal> { 0.995117 0.000031 0.098422 }
+      }
+      <Vertex> 1950 {
+        0.248577266932 0.195963606238 3.59063100815
+        <UV>  {
+          0.688273 0.876805
+          <Tangent> { -0.999205 -0.024067 -0.031785 }
+          <Binormal> { -0.016137 0.647287 0.017165 }
+        }
+        <Normal> { 0.741081 0.000671 0.671377 }
+      }
+      <Vertex> 1951 {
+        0.374971389771 0.119266994298 3.3393445015
+        <UV>  {
+          0.692030 0.861404
+          <Tangent> { -0.938739 -0.341759 0.044378 }
+          <Binormal> { -0.114090 0.309412 -0.030555 }
+        }
+        <Normal> { 0.889035 0.356212 0.287576 }
+      }
+      <Vertex> 1952 {
+        0.374971389771 0.217205867171 3.49508213997
+        <UV>  {
+          0.693782 0.870990
+          <Tangent> { -0.811828 -0.581477 0.053104 }
+          <Binormal> { -0.342692 0.475253 -0.034985 }
+        }
+        <Normal> { 0.662130 0.517350 0.542100 }
+      }
+      <Vertex> 1953 {
+        0.374971389771 0.119266994298 3.3393445015
+        <UV>  {
+          0.692030 0.861404
+          <Tangent> { -0.938739 -0.341759 0.044378 }
+          <Binormal> { -0.114090 0.309412 -0.030555 }
+        }
+        <Normal> { 0.889035 0.356212 0.287576 }
+      }
+      <Vertex> 1954 {
+        0.248577266932 0.122044183314 3.3946120739
+        <UV>  {
+          0.687692 0.863782
+          <Tangent> { -0.998995 -0.003782 -0.044661 }
+          <Binormal> { -0.000371 0.053881 0.003733 }
+        }
+        <Normal> { 0.995117 0.000031 0.098422 }
+      }
+      <Vertex> 1955 {
+        0.42649692297 0.129969716072 3.1901640892
+        <UV>  {
+          0.693615 0.853829
+          <Tangent> { -0.942051 -0.332842 -0.041898 }
+          <Binormal> { 0.072996 -0.199170 -0.059044 }
+        }
+        <Normal> { 0.907590 0.383343 -0.171056 }
+      }
+      <Vertex> 1956 {
+        0.374971389771 0.217205867171 3.49508213997
+        <UV>  {
+          0.693782 0.870990
+          <Tangent> { -0.811828 -0.581477 0.053104 }
+          <Binormal> { -0.342692 0.475253 -0.034985 }
+        }
+        <Normal> { 0.662130 0.517350 0.542100 }
+      }
+      <Vertex> 1957 {
+        0.374971389771 0.119266994298 3.3393445015
+        <UV>  {
+          0.692030 0.861404
+          <Tangent> { -0.938739 -0.341759 0.044378 }
+          <Binormal> { -0.114090 0.309412 -0.030555 }
+        }
+        <Normal> { 0.889035 0.356212 0.287576 }
+      }
+      <Vertex> 1958 {
+        0.554052650928 0.277934342623 3.39935541153
+        <UV>  {
+          0.702363 0.864354
+          <Tangent> { -0.597122 -0.801613 0.029366 }
+          <Binormal> { -0.282203 0.208820 -0.038023 }
+        }
+        <Normal> { 0.534288 0.780938 0.323435 }
+      }
+      <Vertex> 1959 {
+        0.374971389771 0.119266994298 3.3393445015
+        <UV>  {
+          0.692030 0.861404
+          <Tangent> { -0.938739 -0.341759 0.044378 }
+          <Binormal> { -0.114090 0.309412 -0.030555 }
+        }
+        <Normal> { 0.889035 0.356212 0.287576 }
+      }
+      <Vertex> 1960 {
+        0.42649692297 0.129969716072 3.1901640892
+        <UV>  {
+          0.693615 0.853829
+          <Tangent> { -0.942051 -0.332842 -0.041898 }
+          <Binormal> { 0.072996 -0.199170 -0.059044 }
+        }
+        <Normal> { 0.907590 0.383343 -0.171056 }
+      }
+      <Vertex> 1961 {
+        0.554052650928 0.277934342623 3.39935541153
+        <UV>  {
+          0.702363 0.864354
+          <Tangent> { -0.597122 -0.801613 0.029366 }
+          <Binormal> { -0.282203 0.208820 -0.038023 }
+        }
+        <Normal> { 0.534288 0.780938 0.323435 }
+      }
+      <Vertex> 1962 {
+        0.554052650928 0.277934342623 3.39935541153
+        <UV>  {
+          0.702363 0.864354
+          <Tangent> { -0.597122 -0.801613 0.029366 }
+          <Binormal> { -0.282203 0.208820 -0.038023 }
+        }
+        <Normal> { 0.534288 0.780938 0.323435 }
+      }
+      <Vertex> 1963 {
+        0.554052650928 0.476921230555 3.49629712105
+        <UV>  {
+          0.710242 0.872702
+          <Tangent> { -0.088461 -0.981234 0.171329 }
+          <Binormal> { -0.620829 0.039568 -0.093934 }
+        }
+        <Normal> { -0.016633 0.877377 0.479507 }
+      }
+      <Vertex> 1964 {
+        0.426496952772 0.456512331963 3.6748752594
+        <UV>  {
+          0.701913 0.887420
+          <Tangent> { -0.472547 -0.868313 0.150771 }
+          <Binormal> { -0.783209 0.399943 -0.151404 }
+        }
+        <Normal> { 0.142094 0.581500 0.801019 }
+      }
+      <Vertex> 1965 {
+        0.426496952772 0.456512331963 3.6748752594
+        <UV>  {
+          0.701913 0.887420
+          <Tangent> { -0.472547 -0.868313 0.150771 }
+          <Binormal> { -0.783209 0.399943 -0.151404 }
+        }
+        <Normal> { 0.142094 0.581500 0.801019 }
+      }
+      <Vertex> 1966 {
+        0.374971389771 0.217205867171 3.49508213997
+        <UV>  {
+          0.693782 0.870990
+          <Tangent> { -0.811828 -0.581477 0.053104 }
+          <Binormal> { -0.342692 0.475253 -0.034985 }
+        }
+        <Normal> { 0.662130 0.517350 0.542100 }
+      }
+      <Vertex> 1967 {
+        0.554052650928 0.277934342623 3.39935541153
+        <UV>  {
+          0.702363 0.864354
+          <Tangent> { -0.597122 -0.801613 0.029366 }
+          <Binormal> { -0.282203 0.208820 -0.038023 }
+        }
+        <Normal> { 0.534288 0.780938 0.323435 }
+      }
+      <Vertex> 1968 {
+        0.426496952772 0.456512331963 3.6748752594
+        <UV>  {
+          0.701913 0.887420
+          <Tangent> { -0.472547 -0.868313 0.150771 }
+          <Binormal> { -0.783209 0.399943 -0.151404 }
+        }
+        <Normal> { 0.142094 0.581500 0.801019 }
+      }
+      <Vertex> 1969 {
+        0.248577281833 0.43816062808 3.68266606331
+        <UV>  {
+          0.689340 0.901637
+          <Tangent> { -0.994322 -0.103376 -0.025241 }
+          <Binormal> { -0.103518 0.993552 0.008739 }
+        }
+        <Normal> { -0.069277 -0.015992 0.997467 }
+      }
+      <Vertex> 1970 {
+        0.248577266932 0.195963606238 3.59063100815
+        <UV>  {
+          0.688273 0.876805
+          <Tangent> { -0.999205 -0.024067 -0.031785 }
+          <Binormal> { -0.016137 0.647287 0.017165 }
+        }
+        <Normal> { 0.741081 0.000671 0.671377 }
+      }
+      <Vertex> 1971 {
+        0.248577266932 0.195963606238 3.59063100815
+        <UV>  {
+          0.688273 0.876805
+          <Tangent> { -0.999205 -0.024067 -0.031785 }
+          <Binormal> { -0.016137 0.647287 0.017165 }
+        }
+        <Normal> { 0.741081 0.000671 0.671377 }
+      }
+      <Vertex> 1972 {
+        0.374971389771 0.217205867171 3.49508213997
+        <UV>  {
+          0.693782 0.870990
+          <Tangent> { -0.811828 -0.581477 0.053104 }
+          <Binormal> { -0.342692 0.475253 -0.034985 }
+        }
+        <Normal> { 0.662130 0.517350 0.542100 }
+      }
+      <Vertex> 1973 {
+        0.426496952772 0.456512331963 3.6748752594
+        <UV>  {
+          0.701913 0.887420
+          <Tangent> { -0.472547 -0.868313 0.150771 }
+          <Binormal> { -0.783209 0.399943 -0.151404 }
+        }
+        <Normal> { 0.142094 0.581500 0.801019 }
+      }
+      <Vertex> 1974 {
+        0.426496952772 0.456512331963 3.6748752594
+        <UV>  {
+          0.701913 0.887420
+          <Tangent> { -0.472547 -0.868313 0.150771 }
+          <Binormal> { -0.783209 0.399943 -0.151404 }
+        }
+        <Normal> { 0.142094 0.581500 0.801019 }
+      }
+      <Vertex> 1975 {
+        0.390781342983 0.691214859486 3.59834170341
+        <UV>  {
+          0.722504 0.890518
+          <Tangent> { 0.310231 -0.844702 0.436160 }
+          <Binormal> { -0.706260 -0.489601 -0.445854 }
+        }
+        <Normal> { -0.667806 0.381146 0.639302 }
+      }
+      <Vertex> 1976 {
+        0.248577281833 0.43816062808 3.68266606331
+        <UV>  {
+          0.689340 0.901637
+          <Tangent> { -0.994322 -0.103376 -0.025241 }
+          <Binormal> { -0.103518 0.993552 0.008739 }
+        }
+        <Normal> { -0.069277 -0.015992 0.997467 }
+      }
+      <Vertex> 1977 {
+        0.390781342983 0.691214859486 3.59834170341
+        <UV>  {
+          0.722504 0.890518
+          <Tangent> { 0.310231 -0.844702 0.436160 }
+          <Binormal> { -0.706260 -0.489601 -0.445854 }
+        }
+        <Normal> { -0.667806 0.381146 0.639302 }
+      }
+      <Vertex> 1978 {
+        0.248577296734 0.738485217094 3.61485123634
+        <UV>  {
+          0.729921 0.904079
+          <Tangent> { 0.417042 -0.765549 0.489910 }
+          <Binormal> { -0.543125 -0.638174 -0.534888 }
+        }
+        <Normal> { -0.677236 -0.039399 0.734672 }
+      }
+      <Vertex> 1979 {
+        0.248577281833 0.43816062808 3.68266606331
+        <UV>  {
+          0.689340 0.901637
+          <Tangent> { -0.994322 -0.103376 -0.025241 }
+          <Binormal> { -0.103518 0.993552 0.008739 }
+        }
+        <Normal> { -0.069277 -0.015992 0.997467 }
+      }
+      <Vertex> 1980 {
+        0.390781342983 0.691214859486 3.59834170341
+        <UV>  {
+          0.722504 0.890518
+          <Tangent> { 0.310231 -0.844702 0.436160 }
+          <Binormal> { -0.706260 -0.489601 -0.445854 }
+        }
+        <Normal> { -0.667806 0.381146 0.639302 }
+      }
+      <Vertex> 1981 {
+        0.426496952772 0.839179456234 3.24118638039
+        <UV>  {
+          0.743396 0.861354
+          <Tangent> { 0.750001 -0.614267 0.245306 }
+          <Binormal> { -0.161459 -0.235012 -0.094844 }
+        }
+        <Normal> { -0.831233 0.554338 0.041475 }
+      }
+      <Vertex> 1982 {
+        0.248577296734 0.738485217094 3.61485123634
+        <UV>  {
+          0.729921 0.904079
+          <Tangent> { 0.417042 -0.765549 0.489910 }
+          <Binormal> { -0.543125 -0.638174 -0.534888 }
+        }
+        <Normal> { -0.677236 -0.039399 0.734672 }
+      }
+      <Vertex> 1983 {
+        0.426496952772 0.839179456234 3.24118638039
+        <UV>  {
+          0.743396 0.861354
+          <Tangent> { 0.750001 -0.614267 0.245306 }
+          <Binormal> { -0.161459 -0.235012 -0.094844 }
+        }
+        <Normal> { -0.831233 0.554338 0.041475 }
+      }
+      <Vertex> 1984 {
+        0.248577296734 0.859583377838 3.45015597343
+        <UV>  {
+          0.750065 0.888972
+          <Tangent> { 0.831321 -0.501693 0.239188 }
+          <Binormal> { -0.167255 -0.504924 -0.477761 }
+        }
+        <Normal> { -0.941679 -0.006409 0.336436 }
+      }
+      <Vertex> 1985 {
+        0.248577296734 0.738485217094 3.61485123634
+        <UV>  {
+          0.729921 0.904079
+          <Tangent> { 0.417042 -0.765549 0.489910 }
+          <Binormal> { -0.543125 -0.638174 -0.534888 }
+        }
+        <Normal> { -0.677236 -0.039399 0.734672 }
+      }
+      <Vertex> 1986 {
+        0.554052650928 0.476921230555 3.49629712105
+        <UV>  {
+          0.710242 0.872702
+          <Tangent> { -0.088461 -0.981234 0.171329 }
+          <Binormal> { -0.620829 0.039568 -0.093934 }
+        }
+        <Normal> { -0.016633 0.877377 0.479507 }
+      }
+      <Vertex> 1987 {
+        0.554052650928 0.660601437092 3.39935541153
+        <UV>  {
+          0.723326 0.869129
+          <Tangent> { 0.328466 -0.906222 0.266219 }
+          <Binormal> { -0.523199 -0.226251 -0.124635 }
+        }
+        <Normal> { -0.439924 0.834284 0.332255 }
+      }
+      <Vertex> 1988 {
+        0.426496952772 0.456512331963 3.6748752594
+        <UV>  {
+          0.701913 0.887420
+          <Tangent> { -0.472547 -0.868313 0.150771 }
+          <Binormal> { -0.783209 0.399943 -0.151404 }
+        }
+        <Normal> { 0.142094 0.581500 0.801019 }
+      }
+      <Vertex> 1989 {
+        0.554052650928 0.660601437092 3.39935541153
+        <UV>  {
+          0.723326 0.869129
+          <Tangent> { 0.328466 -0.906222 0.266219 }
+          <Binormal> { -0.523199 -0.226251 -0.124635 }
+        }
+        <Normal> { -0.439924 0.834284 0.332255 }
+      }
+      <Vertex> 1990 {
+        0.390781342983 0.691214859486 3.59834170341
+        <UV>  {
+          0.722504 0.890518
+          <Tangent> { 0.310231 -0.844702 0.436160 }
+          <Binormal> { -0.706260 -0.489601 -0.445854 }
+        }
+        <Normal> { -0.667806 0.381146 0.639302 }
+      }
+      <Vertex> 1991 {
+        0.426496952772 0.456512331963 3.6748752594
+        <UV>  {
+          0.701913 0.887420
+          <Tangent> { -0.472547 -0.868313 0.150771 }
+          <Binormal> { -0.783209 0.399943 -0.151404 }
+        }
+        <Normal> { 0.142094 0.581500 0.801019 }
+      }
+      <Vertex> 1992 {
+        0.426496952772 0.839179456234 3.24118638039
+        <UV>  {
+          0.743396 0.861354
+          <Tangent> { 0.750001 -0.614267 0.245306 }
+          <Binormal> { -0.161459 -0.235012 -0.094844 }
+        }
+        <Normal> { -0.831233 0.554338 0.041475 }
+      }
+      <Vertex> 1993 {
+        0.390781342983 0.691214859486 3.59834170341
+        <UV>  {
+          0.722504 0.890518
+          <Tangent> { 0.310231 -0.844702 0.436160 }
+          <Binormal> { -0.706260 -0.489601 -0.445854 }
+        }
+        <Normal> { -0.667806 0.381146 0.639302 }
+      }
+      <Vertex> 1994 {
+        0.554052650928 0.660601437092 3.39935541153
+        <UV>  {
+          0.723326 0.869129
+          <Tangent> { 0.328466 -0.906222 0.266219 }
+          <Binormal> { -0.523199 -0.226251 -0.124635 }
+        }
+        <Normal> { -0.439924 0.834284 0.332255 }
+      }
+      <Vertex> 1995 {
+        0.248577296734 0.809790551662 2.88834786415
+        <UV>  {
+          0.759919 0.818897
+          <Tangent> { 0.829446 -0.555328 0.060254 }
+          <Binormal> { 0.243699 0.309423 -0.502935 }
+        }
+        <Normal> { -0.898770 -0.004608 -0.438337 }
+      }
+      <Vertex> 1996 {
+        0.426496952772 0.670805931091 2.96566605568
+        <UV>  {
+          0.730818 0.829994
+          <Tangent> { 0.493664 -0.861847 -0.116258 }
+          <Binormal> { 0.508011 0.299806 -0.065375 }
+        }
+        <Normal> { -0.488510 0.720420 -0.492264 }
+      }
+      <Vertex> 1997 {
+        0.248577296734 0.713765025139 2.76824617386
+        <UV>  {
+          0.750195 0.796438
+          <Tangent> { 0.593650 -0.803945 -0.035385 }
+          <Binormal> { 0.425744 0.344282 -0.679402 }
+        }
+        <Normal> { -0.848354 0.004425 -0.529374 }
+      }
+      <Vertex> 1998 {
+        0.248577296734 0.809790551662 2.88834786415
+        <UV>  {
+          0.759919 0.818897
+          <Tangent> { 0.829446 -0.555328 0.060254 }
+          <Binormal> { 0.243699 0.309423 -0.502935 }
+        }
+        <Normal> { -0.898770 -0.004608 -0.438337 }
+      }
+      <Vertex> 1999 {
+        0.426496952772 0.839179456234 3.24118638039
+        <UV>  {
+          0.743396 0.861354
+          <Tangent> { 0.750001 -0.614267 0.245306 }
+          <Binormal> { -0.161459 -0.235012 -0.094844 }
+        }
+        <Normal> { -0.831233 0.554338 0.041475 }
+      }
+      <Vertex> 2000 {
+        0.426496952772 0.670805931091 2.96566605568
+        <UV>  {
+          0.730818 0.829994
+          <Tangent> { 0.493664 -0.861847 -0.116258 }
+          <Binormal> { 0.508011 0.299806 -0.065375 }
+        }
+        <Normal> { -0.488510 0.720420 -0.492264 }
+      }
+      <Vertex> 2001 {
+        0.426496952772 0.839179456234 3.24118638039
+        <UV>  {
+          0.743396 0.861354
+          <Tangent> { 0.750001 -0.614267 0.245306 }
+          <Binormal> { -0.161459 -0.235012 -0.094844 }
+        }
+        <Normal> { -0.831233 0.554338 0.041475 }
+      }
+      <Vertex> 2002 {
+        0.554052650928 0.660601437092 3.12383508682
+        <UV>  {
+          0.726545 0.848394
+          <Tangent> { 0.315405 -0.948866 0.013156 }
+          <Binormal> { 0.264027 0.087123 -0.046118 }
+        }
+        <Normal> { -0.345225 0.892361 -0.290628 }
+      }
+      <Vertex> 2003 {
+        0.426496952772 0.670805931091 2.96566605568
+        <UV>  {
+          0.730818 0.829994
+          <Tangent> { 0.493664 -0.861847 -0.116258 }
+          <Binormal> { 0.508011 0.299806 -0.065375 }
+        }
+        <Normal> { -0.488510 0.720420 -0.492264 }
+      }
+      <Vertex> 2004 {
+        0.554052650928 0.660601437092 3.39935541153
+        <UV>  {
+          0.723326 0.869129
+          <Tangent> { 0.328466 -0.906222 0.266219 }
+          <Binormal> { -0.523199 -0.226251 -0.124635 }
+        }
+        <Normal> { -0.439924 0.834284 0.332255 }
+      }
+      <Vertex> 2005 {
+        0.625483870506 0.487125694752 3.31771993637
+        <UV>  {
+          0.713656 0.861266
+          <Tangent> { -0.036407 -0.991455 0.125265 }
+          <Binormal> { -0.204419 0.000858 -0.052623 }
+        }
+        <Normal> { -0.016480 0.996612 0.080264 }
+      }
+      <Vertex> 2006 {
+        0.554052650928 0.660601437092 3.12383508682
+        <UV>  {
+          0.726545 0.848394
+          <Tangent> { 0.315405 -0.948866 0.013156 }
+          <Binormal> { 0.264027 0.087123 -0.046118 }
+        }
+        <Normal> { -0.345225 0.892361 -0.290628 }
+      }
+      <Vertex> 2007 {
+        0.426496952772 0.839179456234 3.24118638039
+        <UV>  {
+          0.743396 0.861354
+          <Tangent> { 0.750001 -0.614267 0.245306 }
+          <Binormal> { -0.161459 -0.235012 -0.094844 }
+        }
+        <Normal> { -0.831233 0.554338 0.041475 }
+      }
+      <Vertex> 2008 {
+        0.554052650928 0.660601437092 3.39935541153
+        <UV>  {
+          0.723326 0.869129
+          <Tangent> { 0.328466 -0.906222 0.266219 }
+          <Binormal> { -0.523199 -0.226251 -0.124635 }
+        }
+        <Normal> { -0.439924 0.834284 0.332255 }
+      }
+      <Vertex> 2009 {
+        0.554052650928 0.660601437092 3.12383508682
+        <UV>  {
+          0.726545 0.848394
+          <Tangent> { 0.315405 -0.948866 0.013156 }
+          <Binormal> { 0.264027 0.087123 -0.046118 }
+        }
+        <Normal> { -0.345225 0.892361 -0.290628 }
+      }
+      <Vertex> 2010 {
+        0.554052650928 0.288138777018 3.12383508682
+        <UV>  {
+          0.702931 0.848927
+          <Tangent> { -0.594724 -0.803120 -0.036082 }
+          <Binormal> { 0.320306 -0.230694 -0.144628 }
+        }
+        <Normal> { 0.431776 0.826258 -0.361705 }
+      }
+      <Vertex> 2011 {
+        0.554052650928 0.277934342623 3.39935541153
+        <UV>  {
+          0.702363 0.864354
+          <Tangent> { -0.597122 -0.801613 0.029366 }
+          <Binormal> { -0.282203 0.208820 -0.038023 }
+        }
+        <Normal> { 0.534288 0.780938 0.323435 }
+      }
+      <Vertex> 2012 {
+        0.42649692297 0.129969716072 3.1901640892
+        <UV>  {
+          0.693615 0.853829
+          <Tangent> { -0.942051 -0.332842 -0.041898 }
+          <Binormal> { 0.072996 -0.199170 -0.059044 }
+        }
+        <Normal> { 0.907590 0.383343 -0.171056 }
+      }
+      <Vertex> 2013 {
+        0.554052650928 0.660601437092 3.39935541153
+        <UV>  {
+          0.723326 0.869129
+          <Tangent> { 0.328466 -0.906222 0.266219 }
+          <Binormal> { -0.523199 -0.226251 -0.124635 }
+        }
+        <Normal> { -0.439924 0.834284 0.332255 }
+      }
+      <Vertex> 2014 {
+        0.554052650928 0.476921230555 3.49629712105
+        <UV>  {
+          0.710242 0.872702
+          <Tangent> { -0.088461 -0.981234 0.171329 }
+          <Binormal> { -0.620829 0.039568 -0.093934 }
+        }
+        <Normal> { -0.016633 0.877377 0.479507 }
+      }
+      <Vertex> 2015 {
+        0.625483870506 0.487125694752 3.31771993637
+        <UV>  {
+          0.713656 0.861266
+          <Tangent> { -0.036407 -0.991455 0.125265 }
+          <Binormal> { -0.204419 0.000858 -0.052623 }
+        }
+        <Normal> { -0.016480 0.996612 0.080264 }
+      }
+      <Vertex> 2016 {
+        0.554052650928 0.277934342623 3.39935541153
+        <UV>  {
+          0.702363 0.864354
+          <Tangent> { -0.597122 -0.801613 0.029366 }
+          <Binormal> { -0.282203 0.208820 -0.038023 }
+        }
+        <Normal> { 0.534288 0.780938 0.323435 }
+      }
+      <Vertex> 2017 {
+        0.625483870506 0.487125694752 3.31771993637
+        <UV>  {
+          0.713656 0.861266
+          <Tangent> { -0.036407 -0.991455 0.125265 }
+          <Binormal> { -0.204419 0.000858 -0.052623 }
+        }
+        <Normal> { -0.016480 0.996612 0.080264 }
+      }
+      <Vertex> 2018 {
+        0.554052650928 0.476921230555 3.49629712105
+        <UV>  {
+          0.710242 0.872702
+          <Tangent> { -0.088461 -0.981234 0.171329 }
+          <Binormal> { -0.620829 0.039568 -0.093934 }
+        }
+        <Normal> { -0.016633 0.877377 0.479507 }
+      }
+      <Vertex> 2019 {
+        0.625483870506 0.487125694752 3.31771993637
+        <UV>  {
+          0.713656 0.861266
+          <Tangent> { -0.036407 -0.991455 0.125265 }
+          <Binormal> { -0.204419 0.000858 -0.052623 }
+        }
+        <Normal> { -0.016480 0.996612 0.080264 }
+      }
+      <Vertex> 2020 {
+        0.554052650928 0.277934342623 3.39935541153
+        <UV>  {
+          0.702363 0.864354
+          <Tangent> { -0.597122 -0.801613 0.029366 }
+          <Binormal> { -0.282203 0.208820 -0.038023 }
+        }
+        <Normal> { 0.534288 0.780938 0.323435 }
+      }
+      <Vertex> 2021 {
+        0.554052650928 0.288138777018 3.12383508682
+        <UV>  {
+          0.702931 0.848927
+          <Tangent> { -0.594724 -0.803120 -0.036082 }
+          <Binormal> { 0.320306 -0.230694 -0.144628 }
+        }
+        <Normal> { 0.431776 0.826258 -0.361705 }
+      }
+      <Vertex> 2022 {
+        0.426496952772 0.670805931091 2.96566605568
+        <UV>  {
+          0.730818 0.829994
+          <Tangent> { 0.493664 -0.861847 -0.116258 }
+          <Binormal> { 0.508011 0.299806 -0.065375 }
+        }
+        <Normal> { -0.488510 0.720420 -0.492264 }
+      }
+      <Vertex> 2023 {
+        0.554052650928 0.660601437092 3.12383508682
+        <UV>  {
+          0.726545 0.848394
+          <Tangent> { 0.315405 -0.948866 0.013156 }
+          <Binormal> { 0.264027 0.087123 -0.046118 }
+        }
+        <Normal> { -0.345225 0.892361 -0.290628 }
+      }
+      <Vertex> 2024 {
+        0.497928142548 0.359569996595 2.9146437645
+        <UV>  {
+          0.703738 0.833182
+          <Tangent> { -0.497205 -0.831123 -0.249042 }
+          <Binormal> { 0.687499 -0.335327 -0.253491 }
+        }
+        <Normal> { 0.167241 0.789392 -0.590655 }
+      }
+      <Vertex> 2025 {
+        0.554052650928 0.660601437092 3.12383508682
+        <UV>  {
+          0.726545 0.848394
+          <Tangent> { 0.315405 -0.948866 0.013156 }
+          <Binormal> { 0.264027 0.087123 -0.046118 }
+        }
+        <Normal> { -0.345225 0.892361 -0.290628 }
+      }
+      <Vertex> 2026 {
+        0.554052650928 0.288138777018 3.12383508682
+        <UV>  {
+          0.702931 0.848927
+          <Tangent> { -0.594724 -0.803120 -0.036082 }
+          <Binormal> { 0.320306 -0.230694 -0.144628 }
+        }
+        <Normal> { 0.431776 0.826258 -0.361705 }
+      }
+      <Vertex> 2027 {
+        0.497928142548 0.359569996595 2.9146437645
+        <UV>  {
+          0.703738 0.833182
+          <Tangent> { -0.497205 -0.831123 -0.249042 }
+          <Binormal> { 0.687499 -0.335327 -0.253491 }
+        }
+        <Normal> { 0.167241 0.789392 -0.590655 }
+      }
+      <Vertex> 2028 {
+        0.625483870506 0.487125694752 3.31771993637
+        <UV>  {
+          0.713656 0.861266
+          <Tangent> { -0.036407 -0.991455 0.125265 }
+          <Binormal> { -0.204419 0.000858 -0.052623 }
+        }
+        <Normal> { -0.016480 0.996612 0.080264 }
+      }
+      <Vertex> 2029 {
+        0.554052650928 0.288138777018 3.12383508682
+        <UV>  {
+          0.702931 0.848927
+          <Tangent> { -0.594724 -0.803120 -0.036082 }
+          <Binormal> { 0.320306 -0.230694 -0.144628 }
+        }
+        <Normal> { 0.431776 0.826258 -0.361705 }
+      }
+      <Vertex> 2030 {
+        0.554052650928 0.660601437092 3.12383508682
+        <UV>  {
+          0.726545 0.848394
+          <Tangent> { 0.315405 -0.948866 0.013156 }
+          <Binormal> { 0.264027 0.087123 -0.046118 }
+        }
+        <Normal> { -0.345225 0.892361 -0.290628 }
+      }
+      <Vertex> 2031 {
+        0.42649692297 0.129969716072 3.1901640892
+        <UV>  {
+          0.693615 0.853829
+          <Tangent> { -0.942051 -0.332842 -0.041898 }
+          <Binormal> { 0.072996 -0.199170 -0.059044 }
+        }
+        <Normal> { 0.907590 0.383343 -0.171056 }
+      }
+      <Vertex> 2032 {
+        0.248577266932 0.122044183314 3.3946120739
+        <UV>  {
+          0.687692 0.863782
+          <Tangent> { -0.998995 -0.003782 -0.044661 }
+          <Binormal> { -0.000371 0.053881 0.003733 }
+        }
+        <Normal> { 0.995117 0.000031 0.098422 }
+      }
+      <Vertex> 2033 {
+        0.319350123405 0.115921750665 3.17485737801
+        <UV>  {
+          0.688950 0.853577
+          <Tangent> { -0.898448 -0.361546 -0.249152 }
+          <Binormal> { 0.199162 -0.289120 -0.298641 }
+        }
+        <Normal> { 0.761376 0.638783 -0.110660 }
+      }
+      <Vertex> 2034 {
+        0.248577266932 0.216776117682 2.74819612503
+        <UV>  {
+          0.684161 0.827606
+          <Tangent> { -0.998326 0.039003 -0.042719 }
+          <Binormal> { -0.027213 -0.727381 -0.028144 }
+        }
+        <Normal> { 0.716117 0.000214 -0.697958 }
+      }
+      <Vertex> 2035 {
+        0.319350123405 0.115921750665 3.17485737801
+        <UV>  {
+          0.688950 0.853577
+          <Tangent> { -0.898448 -0.361546 -0.249152 }
+          <Binormal> { 0.199162 -0.289120 -0.298641 }
+        }
+        <Normal> { 0.761376 0.638783 -0.110660 }
+      }
+      <Vertex> 2036 {
+        0.248247787356 0.0840496644378 3.04730176926
+        <UV>  {
+          0.686656 0.848691
+          <Tangent> { -0.999366 -0.017157 -0.031199 }
+          <Binormal> { 0.013182 -0.788636 0.011451 }
+        }
+        <Normal> { 0.638966 -0.000488 -0.769189 }
+      }
+      <Vertex> 2037 {
+        0.248577266932 0.216776117682 2.74819612503
+        <UV>  {
+          0.684161 0.827606
+          <Tangent> { -0.998326 0.039003 -0.042719 }
+          <Binormal> { -0.027213 -0.727381 -0.028144 }
+        }
+        <Normal> { 0.716117 0.000214 -0.697958 }
+      }
+      <Vertex> 2038 {
+        0.248577281833 0.42620664835 2.73504185677
+        <UV>  {
+          0.680896 0.810762
+          <Tangent> { -0.954154 0.245702 -0.170939 }
+          <Binormal> { -0.177245 -0.810500 -0.175628 }
+        }
+        <Normal> { 0.687307 0.007080 -0.726310 }
+      }
+      <Vertex> 2039 {
+        0.497928142548 0.359569996595 2.9146437645
+        <UV>  {
+          0.703738 0.833182
+          <Tangent> { -0.497205 -0.831123 -0.249042 }
+          <Binormal> { 0.687499 -0.335327 -0.253491 }
+        }
+        <Normal> { 0.167241 0.789392 -0.590655 }
+      }
+      <Vertex> 2040 {
+        0.497928142548 0.359569996595 2.9146437645
+        <UV>  {
+          0.703738 0.833182
+          <Tangent> { -0.497205 -0.831123 -0.249042 }
+          <Binormal> { 0.687499 -0.335327 -0.253491 }
+        }
+        <Normal> { 0.167241 0.789392 -0.590655 }
+      }
+      <Vertex> 2041 {
+        0.319350123405 0.115921750665 3.17485737801
+        <UV>  {
+          0.688950 0.853577
+          <Tangent> { -0.898448 -0.361546 -0.249152 }
+          <Binormal> { 0.199162 -0.289120 -0.298641 }
+        }
+        <Normal> { 0.761376 0.638783 -0.110660 }
+      }
+      <Vertex> 2042 {
+        0.248577266932 0.216776117682 2.74819612503
+        <UV>  {
+          0.684161 0.827606
+          <Tangent> { -0.998326 0.039003 -0.042719 }
+          <Binormal> { -0.027213 -0.727381 -0.028144 }
+        }
+        <Normal> { 0.716117 0.000214 -0.697958 }
+      }
+      <Vertex> 2043 {
+        0.319350123405 0.115921750665 3.17485737801
+        <UV>  {
+          0.688950 0.853577
+          <Tangent> { -0.898448 -0.361546 -0.249152 }
+          <Binormal> { 0.199162 -0.289120 -0.298641 }
+        }
+        <Normal> { 0.761376 0.638783 -0.110660 }
+      }
+      <Vertex> 2044 {
+        0.497928142548 0.359569996595 2.9146437645
+        <UV>  {
+          0.703738 0.833182
+          <Tangent> { -0.497205 -0.831123 -0.249042 }
+          <Binormal> { 0.687499 -0.335327 -0.253491 }
+        }
+        <Normal> { 0.167241 0.789392 -0.590655 }
+      }
+      <Vertex> 2045 {
+        0.554052650928 0.288138777018 3.12383508682
+        <UV>  {
+          0.702931 0.848927
+          <Tangent> { -0.594724 -0.803120 -0.036082 }
+          <Binormal> { 0.320306 -0.230694 -0.144628 }
+        }
+        <Normal> { 0.431776 0.826258 -0.361705 }
+      }
+      <Vertex> 2046 {
+        0.554052650928 0.288138777018 3.12383508682
+        <UV>  {
+          0.702931 0.848927
+          <Tangent> { -0.594724 -0.803120 -0.036082 }
+          <Binormal> { 0.320306 -0.230694 -0.144628 }
+        }
+        <Normal> { 0.431776 0.826258 -0.361705 }
+      }
+      <Vertex> 2047 {
+        0.42649692297 0.129969716072 3.1901640892
+        <UV>  {
+          0.693615 0.853829
+          <Tangent> { -0.942051 -0.332842 -0.041898 }
+          <Binormal> { 0.072996 -0.199170 -0.059044 }
+        }
+        <Normal> { 0.907590 0.383343 -0.171056 }
+      }
+      <Vertex> 2048 {
+        0.319350123405 0.115921750665 3.17485737801
+        <UV>  {
+          0.688950 0.853577
+          <Tangent> { -0.898448 -0.361546 -0.249152 }
+          <Binormal> { 0.199162 -0.289120 -0.298641 }
+        }
+        <Normal> { 0.761376 0.638783 -0.110660 }
+      }
+      <Vertex> 2049 {
+        0.248247787356 0.0840496644378 3.04730176926
+        <UV>  {
+          0.444844 0.678525
+          <Tangent> { -0.410039 0.911615 -0.028754 }
+          <Binormal> { -0.701217 -0.333771 -0.582290 }
+        }
+        <Normal> { 0.638966 -0.000488 -0.769189 }
+      }
+      <Vertex> 2050 {
+        0.319350123405 0.115921750665 3.17485737801
+        <UV>  {
+          0.490011 0.678525
+          <Tangent> { 0.936129 0.069855 -0.344649 }
+          <Binormal> { 0.212426 -0.158815 0.544798 }
+        }
+        <Normal> { 0.761376 0.638783 -0.110660 }
+      }
+      <Vertex> 2051 {
+        0.248247787356 -0.0384038165212 3.05240392685
+        <UV>  {
+          0.431245 0.687626
+          <Tangent> { -0.508380 0.589967 -0.627286 }
+          <Binormal> { -0.531667 -0.730024 -0.255706 }
+        }
+        <Normal> { 0.433424 0.000000 -0.901181 }
+      }
+      <Vertex> 2052 {
+        0.319350123405 0.115921750665 3.17485737801
+        <UV>  {
+          0.490011 0.678525
+          <Tangent> { 0.936129 0.069855 -0.344649 }
+          <Binormal> { 0.212426 -0.158815 0.544798 }
+        }
+        <Normal> { 0.761376 0.638783 -0.110660 }
+      }
+      <Vertex> 2053 {
+        0.319350123405 -0.0588127337396 3.17485737801
+        <UV>  {
+          0.417397 0.695313
+          <Tangent> { 0.875500 0.371781 0.308673 }
+          <Binormal> { -0.105626 0.009270 0.288425 }
+        }
+        <Normal> { 0.728751 0.638905 0.246345 }
+      }
+      <Vertex> 2054 {
+        0.248247787356 -0.0384038165212 3.05240392685
+        <UV>  {
+          0.431245 0.687626
+          <Tangent> { -0.508380 0.589967 -0.627286 }
+          <Binormal> { -0.531667 -0.730024 -0.255706 }
+        }
+        <Normal> { 0.433424 0.000000 -0.901181 }
+      }
+      <Vertex> 2055 {
+        0.395883589983 0.55855691433 2.84321260452
+        <UV>  {
+          0.714950 0.812622
+          <Tangent> { -0.014133 -0.950804 -0.309472 }
+          <Binormal> { 0.735870 0.034973 -0.141056 }
+        }
+        <Normal> { -0.135594 0.858486 -0.494522 }
+      }
+      <Vertex> 2056 {
+        0.497928142548 0.359569996595 2.9146437645
+        <UV>  {
+          0.703738 0.833182
+          <Tangent> { -0.497205 -0.831123 -0.249042 }
+          <Binormal> { 0.687499 -0.335327 -0.253491 }
+        }
+        <Normal> { 0.167241 0.789392 -0.590655 }
+      }
+      <Vertex> 2057 {
+        0.248577281833 0.42620664835 2.73504185677
+        <UV>  {
+          0.680896 0.810762
+          <Tangent> { -0.954154 0.245702 -0.170939 }
+          <Binormal> { -0.177245 -0.810500 -0.175628 }
+        }
+        <Normal> { 0.687307 0.007080 -0.726310 }
+      }
+      <Vertex> 2058 {
+        0.395883589983 0.55855691433 2.84321260452
+        <UV>  {
+          0.714950 0.812622
+          <Tangent> { -0.014133 -0.950804 -0.309472 }
+          <Binormal> { 0.735870 0.034973 -0.141056 }
+        }
+        <Normal> { -0.135594 0.858486 -0.494522 }
+      }
+      <Vertex> 2059 {
+        0.248577296734 0.713765025139 2.76824617386
+        <UV>  {
+          0.750195 0.796438
+          <Tangent> { 0.593650 -0.803945 -0.035385 }
+          <Binormal> { 0.425744 0.344282 -0.679402 }
+        }
+        <Normal> { -0.848354 0.004425 -0.529374 }
+      }
+      <Vertex> 2060 {
+        0.426496952772 0.670805931091 2.96566605568
+        <UV>  {
+          0.730818 0.829994
+          <Tangent> { 0.493664 -0.861847 -0.116258 }
+          <Binormal> { 0.508011 0.299806 -0.065375 }
+        }
+        <Normal> { -0.488510 0.720420 -0.492264 }
+      }
+      <Vertex> 2061 {
+        0.497928142548 0.359569996595 2.9146437645
+        <UV>  {
+          0.703738 0.833182
+          <Tangent> { -0.497205 -0.831123 -0.249042 }
+          <Binormal> { 0.687499 -0.335327 -0.253491 }
+        }
+        <Normal> { 0.167241 0.789392 -0.590655 }
+      }
+      <Vertex> 2062 {
+        0.395883589983 0.55855691433 2.84321260452
+        <UV>  {
+          0.714950 0.812622
+          <Tangent> { -0.014133 -0.950804 -0.309472 }
+          <Binormal> { 0.735870 0.034973 -0.141056 }
+        }
+        <Normal> { -0.135594 0.858486 -0.494522 }
+      }
+      <Vertex> 2063 {
+        0.426496952772 0.670805931091 2.96566605568
+        <UV>  {
+          0.730818 0.829994
+          <Tangent> { 0.493664 -0.861847 -0.116258 }
+          <Binormal> { 0.508011 0.299806 -0.065375 }
+        }
+        <Normal> { -0.488510 0.720420 -0.492264 }
+      }
+      <Vertex> 2064 {
+        0.248577281833 0.42620664835 2.73504185677
+        <UV>  {
+          0.680896 0.810762
+          <Tangent> { -0.954154 0.245702 -0.170939 }
+          <Binormal> { -0.177245 -0.810500 -0.175628 }
+        }
+        <Normal> { 0.687307 0.007080 -0.726310 }
+      }
+      <Vertex> 2065 {
+        0.248577281833 0.42441290617 2.64491581917
+        <UV>  {
+          0.671441 0.794732
+          <Tangent> { -0.761562 -0.220702 -0.609355 }
+          <Binormal> { -0.125630 -0.044728 0.173211 }
+        }
+        <Normal> { 0.808618 0.006897 0.588275 }
+      }
+      <Vertex> 2066 {
+        0.370372444391 0.538147985935 2.70035028458
+        <UV>  {
+          0.706644 0.785337
+          <Tangent> { 0.045813 -0.944221 -0.326109 }
+          <Binormal> { 0.220041 0.002369 0.024054 }
+        }
+        <Normal> { -0.022736 0.993652 0.110141 }
+      }
+      <Vertex> 2067 {
+        0.370372444391 0.538147985935 2.70035028458
+        <UV>  {
+          0.706644 0.785337
+          <Tangent> { 0.045813 -0.944221 -0.326109 }
+          <Binormal> { 0.220041 0.002369 0.024054 }
+        }
+        <Normal> { -0.022736 0.993652 0.110141 }
+      }
+      <Vertex> 2068 {
+        0.248577296734 0.680560708046 2.64017224312
+        <UV>  {
+          0.747679 0.770120
+          <Tangent> { 0.763824 -0.639314 0.088606 }
+          <Binormal> { -0.169171 -0.287166 -0.613643 }
+        }
+        <Normal> { -0.964476 0.003876 0.264077 }
+      }
+      <Vertex> 2069 {
+        0.248577296734 0.713765025139 2.76824617386
+        <UV>  {
+          0.750195 0.796438
+          <Tangent> { 0.593650 -0.803945 -0.035385 }
+          <Binormal> { 0.425744 0.344282 -0.679402 }
+        }
+        <Normal> { -0.848354 0.004425 -0.529374 }
+      }
+      <Vertex> 2070 {
+        0.248577296734 0.713765025139 2.76824617386
+        <UV>  {
+          0.750195 0.796438
+          <Tangent> { 0.593650 -0.803945 -0.035385 }
+          <Binormal> { 0.425744 0.344282 -0.679402 }
+        }
+        <Normal> { -0.848354 0.004425 -0.529374 }
+      }
+      <Vertex> 2071 {
+        0.395883589983 0.55855691433 2.84321260452
+        <UV>  {
+          0.714950 0.812622
+          <Tangent> { -0.014133 -0.950804 -0.309472 }
+          <Binormal> { 0.735870 0.034973 -0.141056 }
+        }
+        <Normal> { -0.135594 0.858486 -0.494522 }
+      }
+      <Vertex> 2072 {
+        0.370372444391 0.538147985935 2.70035028458
+        <UV>  {
+          0.706644 0.785337
+          <Tangent> { 0.045813 -0.944221 -0.326109 }
+          <Binormal> { 0.220041 0.002369 0.024054 }
+        }
+        <Normal> { -0.022736 0.993652 0.110141 }
+      }
+      <Vertex> 2073 {
+        0.395883589983 0.55855691433 2.84321260452
+        <UV>  {
+          0.714950 0.812622
+          <Tangent> { -0.014133 -0.950804 -0.309472 }
+          <Binormal> { 0.735870 0.034973 -0.141056 }
+        }
+        <Normal> { -0.135594 0.858486 -0.494522 }
+      }
+      <Vertex> 2074 {
+        0.248577281833 0.42620664835 2.73504185677
+        <UV>  {
+          0.680896 0.810762
+          <Tangent> { -0.954154 0.245702 -0.170939 }
+          <Binormal> { -0.177245 -0.810500 -0.175628 }
+        }
+        <Normal> { 0.687307 0.007080 -0.726310 }
+      }
+      <Vertex> 2075 {
+        0.370372444391 0.538147985935 2.70035028458
+        <UV>  {
+          0.706644 0.785337
+          <Tangent> { 0.045813 -0.944221 -0.326109 }
+          <Binormal> { 0.220041 0.002369 0.024054 }
+        }
+        <Normal> { -0.022736 0.993652 0.110141 }
+      }
+      <Vertex> 2076 {
+        0.757974863052 0.712347447872 4.73733282089
+        <UV>  {
+          0.698613 0.974202
+          <Tangent> { 0.877363 0.025101 -0.479171 }
+          <Binormal> { -0.040481 -0.185951 -0.083862 }
+        }
+        <Normal> { -0.766961 -0.117527 0.630818 }
+      }
+      <Vertex> 2077 {
+        0.54395532608 0.729178249836 4.41618490219
+        <UV>  {
+          0.698613 0.871042
+          <Tangent> { 0.877363 0.025101 -0.479171 }
+          <Binormal> { -0.359849 -0.328260 -0.676080 }
+        }
+        <Normal> { -0.310770 -0.779473 0.543870 }
+      }
+      <Vertex> 2078 {
+        0.598850667477 0.723137378693 4.53145456314
+        <UV>  {
+          0.707691 0.905249
+          <Tangent> { 0.877363 0.025101 -0.479171 }
+          <Binormal> { 0.001313 0.432619 0.025067 }
+        }
+        <Normal> { -0.998627 0.000000 0.052309 }
+      }
+      <Vertex> 2079 {
+        0.820851802826 0.717369318008 4.64151144028
+        <UV>  {
+          0.709175 0.644415
+          <Tangent> { 0.345910 -0.186541 0.919537 }
+          <Binormal> { -0.775457 0.488630 0.390835 }
+        }
+        <Normal> { 0.551408 0.832514 0.053224 }
+      }
+      <Vertex> 2080 {
+        0.769477307796 0.727695226669 4.44447660446
+        <UV>  {
+          0.706590 0.623927
+          <Tangent> { 0.345910 -0.186541 0.919537 }
+          <Binormal> { -0.677248 0.625892 0.381736 }
+        }
+        <Normal> { 0.625324 0.766350 -0.147099 }
+      }
+      <Vertex> 2081 {
+        0.646134138107 0.878007352352 4.40813302994
+        <UV>  {
+          0.701694 0.722717
+          <Tangent> { 0.345910 -0.186541 0.919537 }
+          <Binormal> { -0.097542 -0.916710 -0.149274 }
+        }
+        <Normal> { -0.994446 0.104740 0.006592 }
+      }
+      <Vertex> 2082 {
+        0.646134138107 0.878007352352 4.40813302994
+        <UV>  {
+          0.698613 0.767826
+          <Tangent> { 0.199166 -0.402390 0.893541 }
+          <Binormal> { -0.096242 -0.889891 -0.379294 }
+        }
+        <Normal> { -0.994446 0.104740 0.006592 }
+      }
+      <Vertex> 2083 {
+        0.757974863052 0.712347447872 4.73733282089
+        <UV>  {
+          0.701694 0.722717
+          <Tangent> { 0.199166 -0.402390 0.893541 }
+          <Binormal> { -0.148820 -0.810948 -0.332025 }
+        }
+        <Normal> { -0.766961 -0.117527 0.630818 }
+      }
+      <Vertex> 2084 {
+        0.820851802826 0.717369318008 4.64151144028
+        <UV>  {
+          0.706590 0.623927
+          <Tangent> { 0.199166 -0.402390 0.893541 }
+          <Binormal> { -0.765302 0.482105 0.387690 }
+        }
+        <Normal> { 0.551408 0.832514 0.053224 }
+      }
+      <Vertex> 2085 {
+        0.646134138107 0.878007352352 4.40813302994
+        <UV>  {
+          0.698613 0.619373
+          <Tangent> { 0.299490 -0.419625 0.856867 }
+          <Binormal> { -0.092514 -0.854082 -0.385926 }
+        }
+        <Normal> { -0.994446 0.104740 0.006592 }
+      }
+      <Vertex> 2086 {
+        0.54395532608 0.729178249836 4.41618490219
+        <UV>  {
+          0.698613 0.767826
+          <Tangent> { 0.299490 -0.419625 0.856867 }
+          <Binormal> { 0.439683 -0.429172 -0.363852 }
+        }
+        <Normal> { -0.310770 -0.779473 0.543870 }
+      }
+      <Vertex> 2087 {
+        0.757974863052 0.712347447872 4.73733282089
+        <UV>  {
+          0.706590 0.623927
+          <Tangent> { 0.299490 -0.419625 0.856867 }
+          <Binormal> { -0.164002 -0.846107 -0.357034 }
+        }
+        <Normal> { -0.766961 -0.117527 0.630818 }
+      }
+      <Vertex> 2088 {
+        0.71587651968 0.689956068993 4.11869478226
+        <UV>  {
+          0.706590 0.623927
+          <Tangent> { -0.086658 0.415176 0.905605 }
+          <Binormal> { -0.748329 0.554025 -0.325602 }
+        }
+        <Normal> { 0.651143 0.637715 -0.411420 }
+      }
+      <Vertex> 2089 {
+        0.646134138107 0.878007352352 4.40813302994
+        <UV>  {
+          0.709175 0.644415
+          <Tangent> { -0.086658 0.415176 0.905605 }
+          <Binormal> { -0.092116 -0.900003 0.403793 }
+        }
+        <Normal> { -0.994446 0.104740 0.006592 }
+      }
+      <Vertex> 2090 {
+        0.769477307796 0.727695226669 4.44447660446
+        <UV>  {
+          0.710352 0.582616
+          <Tangent> { -0.086658 0.415176 0.905605 }
+          <Binormal> { -0.755082 0.553549 -0.326030 }
+        }
+        <Normal> { 0.625324 0.766350 -0.147099 }
+      }
+      <Vertex> 2091 {
+        0.646134138107 0.878007352352 4.40813302994
+        <UV>  {
+          0.710805 0.569586
+          <Tangent> { -0.046550 0.523693 0.850634 }
+          <Binormal> { -0.085643 -0.845603 0.515909 }
+        }
+        <Normal> { -0.994446 0.104740 0.006592 }
+      }
+      <Vertex> 2092 {
+        0.667430281639 0.689291536808 4.11109876633
+        <UV>  {
+          0.703109 0.567354
+          <Tangent> { -0.046550 0.523693 0.850634 }
+          <Binormal> { -0.780126 0.508415 -0.355697 }
+        }
+        <Normal> { 0.615040 0.721915 -0.317057 }
+      }
+      <Vertex> 2093 {
+        0.539569377899 0.838153004646 4.11214256287
+        <UV>  {
+          0.706590 0.623927
+          <Tangent> { -0.046550 0.523693 0.850634 }
+          <Binormal> { 0.019449 -0.828111 0.510891 }
+        }
+        <Normal> { -0.961272 -0.160680 -0.223853 }
+      }
+      <Vertex> 2094 {
+        0.646134138107 0.878007352352 4.40813302994
+        <UV>  {
+          0.710352 0.582616
+          <Tangent> { -0.165310 0.535273 0.828345 }
+          <Binormal> { -0.083232 -0.822654 0.514985 }
+        }
+        <Normal> { -0.994446 0.104740 0.006592 }
+      }
+      <Vertex> 2095 {
+        0.71587651968 0.689956068993 4.11869478226
+        <UV>  {
+          0.710805 0.569586
+          <Tangent> { -0.165310 0.535273 0.828345 }
+          <Binormal> { -0.748470 0.471359 -0.453960 }
+        }
+        <Normal> { 0.651143 0.637715 -0.411420 }
+      }
+      <Vertex> 2096 {
+        0.667430281639 0.689291536808 4.11109876633
+        <UV>  {
+          0.706590 0.623927
+          <Tangent> { -0.165310 0.535273 0.828345 }
+          <Binormal> { -0.767707 0.457052 -0.448554 }
+        }
+        <Normal> { 0.615040 0.721915 -0.317057 }
+      }
+      <Vertex> 2097 {
+        0.646134138107 0.878007352352 4.40813302994
+        <UV>  {
+          0.706936 0.558188
+          <Tangent> { 0.460151 0.147868 0.875441 }
+          <Binormal> { -0.090718 -0.873611 0.195242 }
+        }
+        <Normal> { -0.994446 0.104740 0.006592 }
+      }
+      <Vertex> 2098 {
+        0.398977816105 0.690625011921 4.12634086609
+        <UV>  {
+          0.698613 0.619373
+          <Tangent> { 0.460151 0.147868 0.875441 }
+          <Binormal> { 0.707919 0.316548 -0.425565 }
+        }
+        <Normal> { 0.554643 -0.746605 0.367290 }
+      }
+      <Vertex> 2099 {
+        0.54395532608 0.729178249836 4.41618490219
+        <UV>  {
+          0.706590 0.623927
+          <Tangent> { 0.460151 0.147868 0.875441 }
+          <Binormal> { 0.762803 -0.522323 -0.312722 }
+        }
+        <Normal> { -0.310770 -0.779473 0.543870 }
+      }
+      <Vertex> 2100 {
+        0.646134138107 0.878007352352 4.40813302994
+        <UV>  {
+          0.703109 0.567354
+          <Tangent> { 0.387502 0.185585 0.902995 }
+          <Binormal> { -0.093356 -0.900534 0.225140 }
+        }
+        <Normal> { -0.994446 0.104740 0.006592 }
+      }
+      <Vertex> 2101 {
+        0.539569377899 0.838153004646 4.11214256287
+        <UV>  {
+          0.706936 0.558188
+          <Tangent> { 0.387502 0.185585 0.902995 }
+          <Binormal> { 0.103550 -0.781281 0.116133 }
+        }
+        <Normal> { -0.961272 -0.160680 -0.223853 }
+      }
+      <Vertex> 2102 {
+        0.398977816105 0.690625011921 4.12634086609
+        <UV>  {
+          0.706590 0.623927
+          <Tangent> { 0.387502 0.185585 0.902995 }
+          <Binormal> { 0.742344 0.358515 -0.392244 }
+        }
+        <Normal> { 0.554643 -0.746605 0.367290 }
+      }
+      <Vertex> 2103 {
+        0.340448528528 0.612411201 3.85437178612
+        <UV>  {
+          0.706936 0.558188
+          <Tangent> { 0.277069 0.346600 0.896159 }
+          <Binormal> { 0.760650 0.479402 -0.420588 }
+        }
+        <Normal> { 0.541887 -0.840114 0.022431 }
+      }
+      <Vertex> 2104 {
+        0.398977816105 0.690625011921 4.12634086609
+        <UV>  {
+          0.703109 0.567354
+          <Tangent> { 0.277069 0.346600 0.896159 }
+          <Binormal> { 0.796379 0.395284 -0.399101 }
+        }
+        <Normal> { 0.554643 -0.746605 0.367290 }
+      }
+      <Vertex> 2105 {
+        0.539569377899 0.838153004646 4.11214256287
+        <UV>  {
+          0.708820 0.515353
+          <Tangent> { 0.277069 0.346600 0.896159 }
+          <Binormal> { 0.066407 -0.799430 0.288658 }
+        }
+        <Normal> { -0.961272 -0.160680 -0.223853 }
+      }
+      <Vertex> 2106 {
+        0.539569377899 0.838153004646 4.11214256287
+        <UV>  {
+          0.708717 0.503926
+          <Tangent> { 0.437245 0.543498 0.716538 }
+          <Binormal> { -0.006531 -0.590909 0.452193 }
+        }
+        <Normal> { -0.961272 -0.160680 -0.223853 }
+      }
+      <Vertex> 2107 {
+        0.359628617764 0.618407189846 3.82961177826
+        <UV>  {
+          0.708820 0.515353
+          <Tangent> { 0.437245 0.543498 0.716538 }
+          <Binormal> { 0.612309 0.396964 -0.674742 }
+        }
+        <Normal> { 0.699393 -0.673818 0.238258 }
+      }
+      <Vertex> 2108 {
+        0.340448528528 0.612411201 3.85437178612
+        <UV>  {
+          0.703109 0.567354
+          <Tangent> { 0.437245 0.543498 0.716538 }
+          <Binormal> { 0.614164 0.378474 -0.661850 }
+        }
+        <Normal> { 0.541887 -0.840114 0.022431 }
+      }
+      <Vertex> 2109 {
+        0.443269789219 0.767598807812 3.82224678993
+        <UV>  {
+          0.717733 0.476873
+          <Tangent> { 0.447745 0.367670 0.815073 }
+          <Binormal> { 0.036631 -0.706961 0.298779 }
+        }
+        <Normal> { -0.972625 -0.131382 -0.191626 }
+      }
+      <Vertex> 2110 {
+        0.288729310036 0.580223917961 3.660820961
+        <UV>  {
+          0.708717 0.503926
+          <Tangent> { 0.447745 0.367670 0.815073 }
+          <Binormal> { 0.537502 -0.061881 -0.267353 }
+        }
+        <Normal> { 0.404859 -0.264657 0.875210 }
+      }
+      <Vertex> 2111 {
+        0.359628617764 0.618407189846 3.82961177826
+        <UV>  {
+          0.702878 0.512890
+          <Tangent> { 0.447745 0.367670 0.815073 }
+          <Binormal> { 0.636811 0.463377 -0.558844 }
+        }
+        <Normal> { 0.699393 -0.673818 0.238258 }
+      }
+      <Vertex> 2112 {
+        0.667430281639 0.689291536808 4.11109876633
+        <UV>  {
+          0.714091 0.522449
+          <Tangent> { -0.171091 0.644597 0.745132 }
+          <Binormal> { -0.742297 0.404040 -0.519966 }
+        }
+        <Normal> { 0.615040 0.721915 -0.317057 }
+      }
+      <Vertex> 2113 {
+        0.599925398827 0.626515209675 3.87559366226
+        <UV>  {
+          0.703109 0.567354
+          <Tangent> { -0.171091 0.644597 0.745132 }
+          <Binormal> { -0.677795 0.411986 -0.512029 }
+        }
+        <Normal> { 0.580645 0.805109 -0.120823 }
+      }
+      <Vertex> 2114 {
+        0.539569377899 0.838153004646 4.11214256287
+        <UV>  {
+          0.710805 0.569586
+          <Tangent> { -0.171091 0.644597 0.745132 }
+          <Binormal> { -0.024567 -0.754574 0.647124 }
+        }
+        <Normal> { -0.961272 -0.160680 -0.223853 }
+      }
+      <Vertex> 2115 {
+        0.599925398827 0.626515209675 3.87559366226
+        <UV>  {
+          0.714063 0.441176
+          <Tangent> { -0.093531 0.511067 0.854437 }
+          <Binormal> { -0.749663 0.484824 -0.372051 }
+        }
+        <Normal> { 0.580645 0.805109 -0.120823 }
+      }
+      <Vertex> 2116 {
+        0.492950499058 0.580223917961 3.54299879074
+        <UV>  {
+          0.702878 0.512890
+          <Tangent> { -0.093531 0.511067 0.854437 }
+          <Binormal> { -0.565606 0.248340 -0.210454 }
+        }
+        <Normal> { 0.248878 0.890194 0.381573 }
+      }
+      <Vertex> 2117 {
+        0.443269789219 0.767598807812 3.82224678993
+        <UV>  {
+          0.714091 0.522449
+          <Tangent> { -0.093531 0.511067 0.854437 }
+          <Binormal> { 0.014324 -0.848970 0.509364 }
+        }
+        <Normal> { -0.972625 -0.131382 -0.191626 }
+      }
+      <Vertex> 2118 {
+        0.539569377899 0.838153004646 4.11214256287
+        <UV>  {
+          0.714091 0.522449
+          <Tangent> { -0.105796 0.601651 0.791722 }
+          <Binormal> { -0.007468 -0.784742 0.595350 }
+        }
+        <Normal> { -0.961272 -0.160680 -0.223853 }
+      }
+      <Vertex> 2119 {
+        0.599925398827 0.626515209675 3.87559366226
+        <UV>  {
+          0.702878 0.512890
+          <Tangent> { -0.105796 0.601651 0.791722 }
+          <Binormal> { -0.710115 0.446927 -0.434523 }
+        }
+        <Normal> { 0.580645 0.805109 -0.120823 }
+      }
+      <Vertex> 2120 {
+        0.443269789219 0.767598807812 3.82224678993
+        <UV>  {
+          0.703109 0.567354
+          <Tangent> { -0.105796 0.601651 0.791722 }
+          <Binormal> { -0.011274 -0.790321 0.599081 }
+        }
+        <Normal> { -0.972625 -0.131382 -0.191626 }
+      }
+      <Vertex> 2121 {
+        0.443269789219 0.767598807812 3.82224678993
+        <UV>  {
+          0.708717 0.503926
+          <Tangent> { 0.336033 0.284808 0.897756 }
+          <Binormal> { 0.063373 -0.808787 0.232862 }
+        }
+        <Normal> { -0.972625 -0.131382 -0.191626 }
+      }
+      <Vertex> 2122 {
+        0.359628617764 0.618407189846 3.82961177826
+        <UV>  {
+          0.703109 0.567354
+          <Tangent> { 0.336033 0.284808 0.897756 }
+          <Binormal> { 0.672782 0.547821 -0.425618 }
+        }
+        <Normal> { 0.699393 -0.673818 0.238258 }
+      }
+      <Vertex> 2123 {
+        0.539569377899 0.838153004646 4.11214256287
+        <UV>  {
+          0.702878 0.512890
+          <Tangent> { 0.336033 0.284808 0.897756 }
+          <Binormal> { 0.080496 -0.787766 0.219784 }
+        }
+        <Normal> { -0.961272 -0.160680 -0.223853 }
+      }
+      <Vertex> 2124 {
+        0.64103192091 0.777717292309 4.39102220535
+        <UV>  {
+          0.709175 0.644415
+          <Tangent> { 0.616857 -0.212611 0.757816 }
+          <Binormal> { 0.011770 0.733851 0.196307 }
+        }
+        <Normal> { 0.998932 -0.026063 0.037538 }
+      }
+      <Vertex> 2125 {
+        0.769477307796 0.727695226669 4.44447660446
+        <UV>  {
+          0.701694 0.722717
+          <Tangent> { 0.616857 -0.212611 0.757816 }
+          <Binormal> { -0.549477 0.564620 0.605679 }
+        }
+        <Normal> { 0.625324 0.766350 -0.147099 }
+      }
+      <Vertex> 2126 {
+        0.820851802826 0.717369318008 4.64151144028
+        <UV>  {
+          0.705937 0.622219
+          <Tangent> { 0.616857 -0.212611 0.757816 }
+          <Binormal> { -0.642208 0.385034 0.630778 }
+        }
+        <Normal> { 0.551408 0.832514 0.053224 }
+      }
+      <Vertex> 2127 {
+        0.820851802826 0.717369318008 4.64151144028
+        <UV>  {
+          0.698613 0.767826
+          <Tangent> { 0.487812 -0.188333 0.852391 }
+          <Binormal> { -0.719652 0.444052 0.509959 }
+        }
+        <Normal> { 0.551408 0.832514 0.053224 }
+      }
+      <Vertex> 2128 {
+        0.757974863052 0.712347447872 4.73733282089
+        <UV>  {
+          0.705937 0.622219
+          <Tangent> { 0.487812 -0.188333 0.852391 }
+          <Binormal> { -0.018625 -0.961471 -0.201775 }
+        }
+        <Normal> { -0.766961 -0.117527 0.630818 }
+      }
+      <Vertex> 2129 {
+        0.64103192091 0.777717292309 4.39102220535
+        <UV>  {
+          0.701694 0.722717
+          <Tangent> { 0.487812 -0.188333 0.852391 }
+          <Binormal> { 0.015146 0.833169 0.175418 }
+        }
+        <Normal> { 0.998932 -0.026063 0.037538 }
+      }
+      <Vertex> 2130 {
+        0.757974863052 0.712347447872 4.73733282089
+        <UV>  {
+          0.698613 0.619373
+          <Tangent> { 0.558067 -0.041049 0.828780 }
+          <Binormal> { 0.071509 -0.987680 -0.097071 }
+        }
+        <Normal> { -0.766961 -0.117527 0.630818 }
+      }
+      <Vertex> 2131 {
+        0.54395532608 0.729178249836 4.41618490219
+        <UV>  {
+          0.705937 0.622219
+          <Tangent> { 0.558067 -0.041049 0.828780 }
+          <Binormal> { 0.623686 -0.561076 -0.447755 }
+        }
+        <Normal> { -0.310770 -0.779473 0.543870 }
+      }
+      <Vertex> 2132 {
+        0.64103192091 0.777717292309 4.39102220535
+        <UV>  {
+          0.698613 0.767826
+          <Tangent> { 0.558067 -0.041049 0.828780 }
+          <Binormal> { 0.020059 0.806946 0.026461 }
+        }
+        <Normal> { 0.998932 -0.026063 0.037538 }
+      }
+      <Vertex> 2133 {
+        0.769477307796 0.727695226669 4.44447660446
+        <UV>  {
+          0.705937 0.622219
+          <Tangent> { 0.332792 0.025712 0.942650 }
+          <Binormal> { -0.726182 0.638415 0.238957 }
+        }
+        <Normal> { 0.625324 0.766350 -0.147099 }
+      }
+      <Vertex> 2134 {
+        0.64103192091 0.777717292309 4.39102220535
+        <UV>  {
+          0.710352 0.582616
+          <Tangent> { 0.332792 0.025712 0.942650 }
+          <Binormal> { 0.025533 0.929150 -0.034358 }
+        }
+        <Normal> { 0.998932 -0.026063 0.037538 }
+      }
+      <Vertex> 2135 {
+        0.71587651968 0.689956068993 4.11869478226
+        <UV>  {
+          0.709175 0.644415
+          <Tangent> { 0.332792 0.025712 0.942650 }
+          <Binormal> { -0.611720 0.750717 0.195485 }
+        }
+        <Normal> { 0.651143 0.637715 -0.411420 }
+      }
+      <Vertex> 2136 {
+        0.539569377899 0.736901938915 4.11423873901
+        <UV>  {
+          0.710805 0.569586
+          <Tangent> { 0.369486 0.124141 0.920907 }
+          <Binormal> { -0.058355 0.825150 -0.087820 }
+        }
+        <Normal> { 0.975829 0.090182 0.198920 }
+      }
+      <Vertex> 2137 {
+        0.667430281639 0.689291536808 4.11109876633
+        <UV>  {
+          0.705937 0.622219
+          <Tangent> { 0.369486 0.124141 0.920907 }
+          <Binormal> { -0.704177 0.683542 0.190386 }
+        }
+        <Normal> { 0.615040 0.721915 -0.317057 }
+      }
+      <Vertex> 2138 {
+        0.64103192091 0.777717292309 4.39102220535
+        <UV>  {
+          0.714131 0.565677
+          <Tangent> { 0.369486 0.124141 0.920907 }
+          <Binormal> { 0.028661 0.906053 -0.133638 }
+        }
+        <Normal> { 0.998932 -0.026063 0.037538 }
+      }
+      <Vertex> 2139 {
+        0.667430281639 0.689291536808 4.11109876633
+        <UV>  {
+          0.710352 0.582616
+          <Tangent> { -0.035311 0.299280 0.953512 }
+          <Binormal> { -0.783243 0.575252 -0.209561 }
+        }
+        <Normal> { 0.615040 0.721915 -0.317057 }
+      }
+      <Vertex> 2140 {
+        0.71587651968 0.689956068993 4.11869478226
+        <UV>  {
+          0.705937 0.622219
+          <Tangent> { -0.035311 0.299280 0.953512 }
+          <Binormal> { -0.731198 0.606345 -0.217393 }
+        }
+        <Normal> { 0.651143 0.637715 -0.411420 }
+      }
+      <Vertex> 2141 {
+        0.64103192091 0.777717292309 4.39102220535
+        <UV>  {
+          0.710805 0.569586
+          <Tangent> { -0.035311 0.299280 0.953512 }
+          <Binormal> { 0.036085 0.953819 -0.298040 }
+        }
+        <Normal> { 0.998932 -0.026063 0.037538 }
+      }
+      <Vertex> 2142 {
+        0.54395532608 0.729178249836 4.41618490219
+        <UV>  {
+          0.706936 0.558188
+          <Tangent> { 0.663219 0.240333 0.708788 }
+          <Binormal> { 0.683191 -0.580975 -0.442274 }
+        }
+        <Normal> { -0.310770 -0.779473 0.543870 }
+      }
+      <Vertex> 2143 {
+        0.398977816105 0.690625011921 4.12634086609
+        <UV>  {
+          0.705937 0.622219
+          <Tangent> { 0.663219 0.240333 0.708788 }
+          <Binormal> { 0.617456 0.149530 -0.628462 }
+        }
+        <Normal> { 0.554643 -0.746605 0.367290 }
+      }
+      <Vertex> 2144 {
+        0.64103192091 0.777717292309 4.39102220535
+        <UV>  {
+          0.698613 0.619373
+          <Tangent> { 0.663219 0.240333 0.708788 }
+          <Binormal> { 0.027495 0.683135 -0.257361 }
+        }
+        <Normal> { 0.998932 -0.026063 0.037538 }
+      }
+      <Vertex> 2145 {
+        0.398977816105 0.690625011921 4.12634086609
+        <UV>  {
+          0.714131 0.565677
+          <Tangent> { 0.682567 0.244096 0.688854 }
+          <Binormal> { 0.603956 0.131368 -0.644994 }
+        }
+        <Normal> { 0.554643 -0.746605 0.367290 }
+      }
+      <Vertex> 2146 {
+        0.539569377899 0.736901938915 4.11423873901
+        <UV>  {
+          0.705937 0.622219
+          <Tangent> { 0.682567 0.244096 0.688854 }
+          <Binormal> { -0.013567 0.536428 -0.176641 }
+        }
+        <Normal> { 0.975829 0.090182 0.198920 }
+      }
+      <Vertex> 2147 {
+        0.64103192091 0.777717292309 4.39102220535
+        <UV>  {
+          0.706936 0.558188
+          <Tangent> { 0.682567 0.244096 0.688854 }
+          <Binormal> { 0.027116 0.662496 -0.261625 }
+        }
+        <Normal> { 0.998932 -0.026063 0.037538 }
+      }
+      <Vertex> 2148 {
+        0.539569377899 0.736901938915 4.11423873901
+        <UV>  {
+          0.706936 0.558188
+          <Tangent> { 0.610981 0.362110 0.703973 }
+          <Binormal> { 0.008545 0.565421 -0.298258 }
+        }
+        <Normal> { 0.975829 0.090182 0.198920 }
+      }
+      <Vertex> 2149 {
+        0.398977816105 0.690625011921 4.12634086609
+        <UV>  {
+          0.708820 0.515353
+          <Tangent> { 0.610981 0.362110 0.703973 }
+          <Binormal> { 0.658589 0.166047 -0.657004 }
+        }
+        <Normal> { 0.554643 -0.746605 0.367290 }
+      }
+      <Vertex> 2150 {
+        0.340448528528 0.612411201 3.85437178612
+        <UV>  {
+          0.714131 0.565677
+          <Tangent> { 0.610981 0.362110 0.703973 }
+          <Binormal> { 0.599540 0.367769 -0.709516 }
+        }
+        <Normal> { 0.541887 -0.840114 0.022431 }
+      }
+      <Vertex> 2151 {
+        0.340448528528 0.612411201 3.85437178612
+        <UV>  {
+          0.708717 0.503926
+          <Tangent> { 0.556725 0.351224 0.752795 }
+          <Binormal> { 0.640311 0.395441 -0.658035 }
+        }
+        <Normal> { 0.541887 -0.840114 0.022431 }
+      }
+      <Vertex> 2152 {
+        0.359628617764 0.618407189846 3.82961177826
+        <UV>  {
+          0.714131 0.565677
+          <Tangent> { 0.556725 0.351224 0.752795 }
+          <Binormal> { 0.590928 0.393855 -0.620774 }
+        }
+        <Normal> { 0.699393 -0.673818 0.238258 }
+      }
+      <Vertex> 2153 {
+        0.539569377899 0.736901938915 4.11423873901
+        <UV>  {
+          0.708820 0.515353
+          <Tangent> { 0.556725 0.351224 0.752795 }
+          <Binormal> { 0.001977 0.623856 -0.292528 }
+        }
+        <Normal> { 0.975829 0.090182 0.198920 }
+      }
+      <Vertex> 2154 {
+        0.359628617764 0.618407189846 3.82961177826
+        <UV>  {
+          0.717733 0.476873
+          <Tangent> { 0.640397 0.359873 0.678516 }
+          <Binormal> { 0.542939 0.321970 -0.683203 }
+        }
+        <Normal> { 0.699393 -0.673818 0.238258 }
+      }
+      <Vertex> 2155 {
+        0.288729310036 0.580223917961 3.660820961
+        <UV>  {
+          0.715519 0.506661
+          <Tangent> { 0.640397 0.359873 0.678516 }
+          <Binormal> { 0.494538 -0.285778 -0.315183 }
+        }
+        <Normal> { 0.404859 -0.264657 0.875210 }
+      }
+      <Vertex> 2156 {
+        0.44326916337 0.666915714741 3.83315944672
+        <UV>  {
+          0.708717 0.503926
+          <Tangent> { 0.640397 0.359873 0.678516 }
+          <Binormal> { -0.012891 0.535941 -0.272087 }
+        }
+        <Normal> { 0.973296 0.122074 0.194342 }
+      }
+      <Vertex> 2157 {
+        0.539569377899 0.736901938915 4.11423873901
+        <UV>  {
+          0.714091 0.522449
+          <Tangent> { 0.310121 0.229346 0.922619 }
+          <Binormal> { -0.037582 0.838629 -0.195835 }
+        }
+        <Normal> { 0.975829 0.090182 0.198920 }
+      }
+      <Vertex> 2158 {
+        0.599925398827 0.626515209675 3.87559366226
+        <UV>  {
+          0.710805 0.569586
+          <Tangent> { 0.310121 0.229346 0.922619 }
+          <Binormal> { -0.770519 0.573184 0.116513 }
+        }
+        <Normal> { 0.580645 0.805109 -0.120823 }
+      }
+      <Vertex> 2159 {
+        0.667430281639 0.689291536808 4.11109876633
+        <UV>  {
+          0.714131 0.565677
+          <Tangent> { 0.310121 0.229346 0.922619 }
+          <Binormal> { -0.738768 0.665773 0.082824 }
+        }
+        <Normal> { 0.615040 0.721915 -0.317057 }
+      }
+      <Vertex> 2160 {
+        0.44326916337 0.666915714741 3.83315944672
+        <UV>  {
+          0.714063 0.441176
+          <Tangent> { 0.387099 0.097750 0.916842 }
+          <Binormal> { -0.092926 0.817129 -0.047885 }
+        }
+        <Normal> { 0.973296 0.122074 0.194342 }
+      }
+      <Vertex> 2161 {
+        0.492950499058 0.580223917961 3.54299879074
+        <UV>  {
+          0.714091 0.522449
+          <Tangent> { 0.387099 0.097750 0.916842 }
+          <Binormal> { -0.778869 0.080476 0.320266 }
+        }
+        <Normal> { 0.248878 0.890194 0.381573 }
+      }
+      <Vertex> 2162 {
+        0.599925398827 0.626515209675 3.87559366226
+        <UV>  {
+          0.715519 0.506661
+          <Tangent> { 0.387099 0.097750 0.916842 }
+          <Binormal> { -0.749968 0.579130 0.254899 }
+        }
+        <Normal> { 0.580645 0.805109 -0.120823 }
+      }
+      <Vertex> 2163 {
+        0.44326916337 0.666915714741 3.83315944672
+        <UV>  {
+          0.714091 0.522449
+          <Tangent> { 0.453529 0.163169 0.876178 }
+          <Binormal> { -0.075248 0.764641 -0.103447 }
+        }
+        <Normal> { 0.973296 0.122074 0.194342 }
+      }
+      <Vertex> 2164 {
+        0.599925398827 0.626515209675 3.87559366226
+        <UV>  {
+          0.714131 0.565677
+          <Tangent> { 0.453529 0.163169 0.876178 }
+          <Binormal> { -0.725133 0.563545 0.270397 }
+        }
+        <Normal> { 0.580645 0.805109 -0.120823 }
+      }
+      <Vertex> 2165 {
+        0.539569377899 0.736901938915 4.11423873901
+        <UV>  {
+          0.715519 0.506661
+          <Tangent> { 0.453529 0.163169 0.876178 }
+          <Binormal> { -0.046558 0.764784 -0.118324 }
+        }
+        <Normal> { 0.975829 0.090182 0.198920 }
+      }
+      <Vertex> 2166 {
+        0.539569377899 0.736901938915 4.11423873901
+        <UV>  {
+          0.708717 0.503926
+          <Tangent> { 0.510851 0.335560 0.791474 }
+          <Binormal> { -0.004627 0.670725 -0.281380 }
+        }
+        <Normal> { 0.975829 0.090182 0.198920 }
+      }
+      <Vertex> 2167 {
+        0.359628617764 0.618407189846 3.82961177826
+        <UV>  {
+          0.715519 0.506661
+          <Tangent> { 0.510851 0.335560 0.791474 }
+          <Binormal> { 0.613259 0.431837 -0.578909 }
+        }
+        <Normal> { 0.699393 -0.673818 0.238258 }
+      }
+      <Vertex> 2168 {
+        0.44326916337 0.666915714741 3.83315944672
+        <UV>  {
+          0.714131 0.565677
+          <Tangent> { 0.510851 0.335560 0.791474 }
+          <Binormal> { -0.031405 0.671059 -0.264238 }
+        }
+        <Normal> { 0.973296 0.122074 0.194342 }
+      }
+      <Vertex> 2169 {
+        0.44326916337 0.666915714741 3.83315944672
+        <UV>  {
+          0.717733 0.476873
+          <Tangent> { 0.169055 0.339131 0.925424 }
+          <Binormal> { -0.047063 0.867858 -0.309438 }
+        }
+        <Normal> { 0.973296 0.122074 0.194342 }
+      }
+      <Vertex> 2170 {
+        0.288729310036 0.580223917961 3.660820961
+        <UV>  {
+          0.714063 0.441176
+          <Tangent> { 0.169055 0.339131 0.925424 }
+          <Binormal> { 0.541731 0.226707 -0.182042 }
+        }
+        <Normal> { 0.404859 -0.264657 0.875210 }
+      }
+      <Vertex> 2171 {
+        0.492950499058 0.580223917961 3.54299879074
+        <UV>  {
+          0.715519 0.506661
+          <Tangent> { 0.169055 0.339131 0.925424 }
+          <Binormal> { -0.694404 0.165811 0.066089 }
+        }
+        <Normal> { 0.248878 0.890194 0.381573 }
+      }
+      <Vertex> 2172 {
+        0.390781342983 0.691214859486 3.59834170341
+        <UV>  {
+          0.716811 0.471799
+          <Tangent> { -0.519694 -0.789931 0.325465 }
+          <Binormal> { -0.629054 0.114894 -0.725600 }
+        }
+        <Normal> { -0.667806 0.381146 0.639302 }
+      }
+      <Vertex> 2173 {
+        0.288729310036 0.580223917961 3.660820961
+        <UV>  {
+          0.717733 0.476873
+          <Tangent> { -0.519694 -0.789931 0.325465 }
+          <Binormal> { -0.605219 0.586609 0.457351 }
+        }
+        <Normal> { 0.404859 -0.264657 0.875210 }
+      }
+      <Vertex> 2174 {
+        0.492950499058 0.580223917961 3.54299879074
+        <UV>  {
+          0.714063 0.441176
+          <Tangent> { -0.519694 -0.789931 0.325465 }
+          <Binormal> { -0.591143 0.279302 -0.266032 }
+        }
+        <Normal> { 0.248878 0.890194 0.381573 }
+      }
+      <Vertex> 2175 {
+        0.177146062255 -0.058812726289 3.17486000061
+        <UV>  {
+          0.431718 0.690966
+          <Tangent> { 0.825471 0.500331 -0.261278 }
+          <Binormal> { 0.235874 -0.726210 -0.645434 }
+        }
+        <Normal> { 0.527299 -0.462294 0.712851 }
+      }
+      <Vertex> 2176 {
+        0.248247787356 -0.0384038165212 3.05240392685
+        <UV>  {
+          0.431245 0.687626
+          <Tangent> { -0.508380 0.589967 -0.627286 }
+          <Binormal> { -0.531667 -0.730024 -0.255706 }
+        }
+        <Normal> { 0.433424 0.000000 -0.901181 }
+      }
+      <Vertex> 2177 {
+        0.319350123405 -0.0588127337396 3.17485737801
+        <UV>  {
+          0.417397 0.695313
+          <Tangent> { 0.875500 0.371781 0.308673 }
+          <Binormal> { -0.105626 0.009270 0.288425 }
+        }
+        <Normal> { 0.728751 0.638905 0.246345 }
+      }
+      <Vertex> 2178 {
+        0.248577266932 0.122044183314 3.3946120739
+        <UV>  {
+          0.687692 0.863782
+          <Tangent> { -0.998995 -0.003782 -0.044661 }
+          <Binormal> { -0.000371 0.053881 0.003733 }
+        }
+        <Normal> { 0.995117 0.000031 0.098422 }
+      }
+      <Vertex> 2179 {
+        0.177146077156 0.115921758115 3.17486000061
+        <UV>  {
+          0.685444 0.853688
+          <Tangent> { -0.900443 0.406085 0.155877 }
+          <Binormal> { -0.011729 -0.125074 0.258086 }
+        }
+        <Normal> { 0.738243 -0.619556 -0.266701 }
+      }
+      <Vertex> 2180 {
+        0.319350123405 0.115921750665 3.17485737801
+        <UV>  {
+          0.688950 0.853577
+          <Tangent> { -0.898448 -0.361546 -0.249152 }
+          <Binormal> { 0.199162 -0.289120 -0.298641 }
+        }
+        <Normal> { 0.761376 0.638783 -0.110660 }
+      }
+      <Vertex> 2181 {
+        0.177146062255 -0.058812726289 3.17486000061
+        <UV>  {
+          0.431718 0.690966
+          <Tangent> { 0.825471 0.500331 -0.261278 }
+          <Binormal> { 0.235874 -0.726210 -0.645434 }
+        }
+        <Normal> { 0.527299 -0.462294 0.712851 }
+      }
+      <Vertex> 2182 {
+        0.319350123405 0.115921750665 3.17485737801
+        <UV>  {
+          0.490011 0.678525
+          <Tangent> { 0.936129 0.069855 -0.344649 }
+          <Binormal> { 0.212426 -0.158815 0.544798 }
+        }
+        <Normal> { 0.761376 0.638783 -0.110660 }
+      }
+      <Vertex> 2183 {
+        0.177146077156 0.115921758115 3.17486000061
+        <UV>  {
+          0.454310 0.701676
+          <Tangent> { 0.326634 0.639315 -0.696123 }
+          <Binormal> { -0.601793 -0.426794 -0.674338 }
+        }
+        <Normal> { 0.738243 -0.619556 -0.266701 }
+      }
+      <Vertex> 2184 {
+        0.177146062255 -0.058812726289 3.17486000061
+        <UV>  {
+          0.431718 0.690966
+          <Tangent> { 0.825471 0.500331 -0.261278 }
+          <Binormal> { 0.235874 -0.726210 -0.645434 }
+        }
+        <Normal> { 0.527299 -0.462294 0.712851 }
+      }
+      <Vertex> 2185 {
+        0.319350123405 -0.0588127337396 3.17485737801
+        <UV>  {
+          0.417397 0.695313
+          <Tangent> { 0.875500 0.371781 0.308673 }
+          <Binormal> { -0.105626 0.009270 0.288425 }
+        }
+        <Normal> { 0.728751 0.638905 0.246345 }
+      }
+      <Vertex> 2186 {
+        0.319350123405 0.115921750665 3.17485737801
+        <UV>  {
+          0.490011 0.678525
+          <Tangent> { 0.936129 0.069855 -0.344649 }
+          <Binormal> { 0.212426 -0.158815 0.544798 }
+        }
+        <Normal> { 0.761376 0.638783 -0.110660 }
+      }
+      <Vertex> 2187 {
+        0.443269789219 0.767598807812 3.82224678993
+        <UV>  {
+          0.714063 0.441176
+          <Tangent> { -0.287524 0.617205 0.732385 }
+          <Binormal> { -0.022050 -0.767433 0.638085 }
+        }
+        <Normal> { -0.972625 -0.131382 -0.191626 }
+      }
+      <Vertex> 2188 {
+        0.492950499058 0.580223917961 3.54299879074
+        <UV>  {
+          0.716811 0.471799
+          <Tangent> { -0.287524 0.617205 0.732385 }
+          <Binormal> { -0.416456 0.291986 -0.409561 }
+        }
+        <Normal> { 0.248878 0.890194 0.381573 }
+      }
+      <Vertex> 2189 {
+        0.390781342983 0.691214859486 3.59834170341
+        <UV>  {
+          0.702878 0.512890
+          <Tangent> { -0.287524 0.617205 0.732385 }
+          <Binormal> { 0.115435 -0.305277 0.302585 }
+        }
+        <Normal> { -0.667806 0.381146 0.639302 }
+      }
+      <Vertex> 2190 {
+        0.390781342983 0.691214859486 3.59834170341
+        <UV>  {
+          0.717733 0.476873
+          <Tangent> { 0.156505 0.249464 0.955654 }
+          <Binormal> { -0.204761 -0.738245 0.226244 }
+        }
+        <Normal> { -0.667806 0.381146 0.639302 }
+      }
+      <Vertex> 2191 {
+        0.288729310036 0.580223917961 3.660820961
+        <UV>  {
+          0.702878 0.512890
+          <Tangent> { 0.156505 0.249464 0.955654 }
+          <Binormal> { 0.471253 0.249930 -0.142417 }
+        }
+        <Normal> { 0.404859 -0.264657 0.875210 }
+      }
+      <Vertex> 2192 {
+        0.443269789219 0.767598807812 3.82224678993
+        <UV>  {
+          0.716811 0.471799
+          <Tangent> { 0.156505 0.249464 0.955654 }
+          <Binormal> { 0.077752 -0.899502 0.222073 }
+        }
+        <Normal> { -0.972625 -0.131382 -0.191626 }
+      }
+      <Vertex> 2193 {
+        0.115919359028 0.68100976944 3.58813977242
+        <UV>  {
+          0.731968 0.462919
+          <Tangent> { 0.921940 -0.386638 0.023173 }
+          <Binormal> { -0.244879 -0.618946 -0.584534 }
+        }
+        <Normal> { -0.668050 -0.353862 0.654561 }
+      }
+      <Vertex> 2194 {
+        0.00354638346471 0.580223917961 3.53789925575
+        <UV>  {
+          0.731465 0.441176
+          <Tangent> { -0.951414 0.050555 -0.303736 }
+          <Binormal> { -0.273586 0.180442 0.887005 }
+        }
+        <Normal> { 0.209784 -0.943449 0.256630 }
+      }
+      <Vertex> 2195 {
+        -0.00933499075472 0.767598807812 3.79725074768
+        <UV>  {
+          0.722072 0.504357
+          <Tangent> { 0.757458 -0.548784 0.353686 }
+          <Binormal> { 0.015628 -0.209419 -0.358406 }
+        }
+        <Normal> { -0.959746 0.222175 -0.171667 }
+      }
+      <Vertex> 2196 {
+        -0.00933499075472 0.767598807812 3.79725074768
+        <UV>  {
+          0.722072 0.504357
+          <Tangent> { 0.757458 -0.548784 0.353686 }
+          <Binormal> { 0.015628 -0.209419 -0.358406 }
+        }
+        <Normal> { -0.959746 0.222175 -0.171667 }
+      }
+      <Vertex> 2197 {
+        0.166949108243 0.580223917961 3.64041447639
+        <UV>  {
+          0.735007 0.465081
+          <Tangent> { -0.338127 -0.794136 0.504993 }
+          <Binormal> { -0.839970 0.480222 0.192764 }
+        }
+        <Normal> { 0.340373 0.229316 0.911893 }
+      }
+      <Vertex> 2198 {
+        0.115919359028 0.68100976944 3.58813977242
+        <UV>  {
+          0.731968 0.462919
+          <Tangent> { 0.921940 -0.386638 0.023173 }
+          <Binormal> { -0.244879 -0.618946 -0.584534 }
+        }
+        <Normal> { -0.668050 -0.353862 0.654561 }
+      }
+      <Vertex> 2199 {
+        0.238372847438 0.883095264435 3.23438262939
+        <UV>  {
+          0.620484 0.862047
+          <Tangent> { 0.967119 0.252861 -0.027256 }
+          <Binormal> { -0.012944 0.075417 0.240361 }
+        }
+        <Normal> { -0.998657 -0.012574 -0.049837 }
+      }
+      <Vertex> 2200 {
+        0.248577296734 0.809790551662 2.88834786415
+        <UV>  {
+          0.629035 0.826571
+          <Tangent> { 0.785404 0.615311 0.067326 }
+          <Binormal> { -0.269404 0.283761 0.549404 }
+        }
+        <Normal> { -0.898770 -0.004608 -0.438337 }
+      }
+      <Vertex> 2201 {
+        0.069999307394 0.839179456234 3.24118900299
+        <UV>  {
+          0.635693 0.862263
+          <Tangent> { 0.781203 0.618111 -0.087524 }
+          <Binormal> { -0.016595 0.030083 0.064331 }
+        }
+        <Normal> { -0.821497 -0.567644 0.053529 }
+      }
+      <Vertex> 2202 {
+        0.069999307394 0.839179456234 3.24118900299
+        <UV>  {
+          0.635693 0.862263
+          <Tangent> { 0.781203 0.618111 -0.087524 }
+          <Binormal> { -0.016595 0.030083 0.064331 }
+        }
+        <Normal> { -0.821497 -0.567644 0.053529 }
+      }
+      <Vertex> 2203 {
+        0.248577296734 0.859583377838 3.45015597343
+        <UV>  {
+          0.626007 0.885049
+          <Tangent> { 0.877799 0.476478 -0.049371 }
+          <Binormal> { 0.159988 -0.248831 0.443064 }
+        }
+        <Normal> { -0.941679 -0.006409 0.336436 }
+      }
+      <Vertex> 2204 {
+        0.238372847438 0.883095264435 3.23438262939
+        <UV>  {
+          0.620484 0.862047
+          <Tangent> { 0.967119 0.252861 -0.027256 }
+          <Binormal> { -0.012944 0.075417 0.240361 }
+        }
+        <Normal> { -0.998657 -0.012574 -0.049837 }
+      }
+      <Vertex> 2205 {
+        0.426496952772 0.839179456234 3.24118638039
+        <UV>  {
+          0.743396 0.861354
+          <Tangent> { 0.750001 -0.614267 0.245306 }
+          <Binormal> { -0.161459 -0.235012 -0.094844 }
+        }
+        <Normal> { -0.831233 0.554338 0.041475 }
+      }
+      <Vertex> 2206 {
+        0.248577296734 0.809790551662 2.88834786415
+        <UV>  {
+          0.759919 0.818897
+          <Tangent> { 0.829446 -0.555328 0.060254 }
+          <Binormal> { 0.243699 0.309423 -0.502935 }
+        }
+        <Normal> { -0.898770 -0.004608 -0.438337 }
+      }
+      <Vertex> 2207 {
+        0.238372847438 0.883095264435 3.23438262939
+        <UV>  {
+          0.763522 0.864443
+          <Tangent> { 0.962090 -0.218217 0.163600 }
+          <Binormal> { 0.012932 -0.115433 -0.230021 }
+        }
+        <Normal> { -0.998657 -0.012574 -0.049837 }
+      }
+      <Vertex> 2208 {
+        0.426496952772 0.839179456234 3.24118638039
+        <UV>  {
+          0.743396 0.861354
+          <Tangent> { 0.750001 -0.614267 0.245306 }
+          <Binormal> { -0.161459 -0.235012 -0.094844 }
+        }
+        <Normal> { -0.831233 0.554338 0.041475 }
+      }
+      <Vertex> 2209 {
+        0.238372847438 0.883095264435 3.23438262939
+        <UV>  {
+          0.763522 0.864443
+          <Tangent> { 0.962090 -0.218217 0.163600 }
+          <Binormal> { 0.012932 -0.115433 -0.230021 }
+        }
+        <Normal> { -0.998657 -0.012574 -0.049837 }
+      }
+      <Vertex> 2210 {
+        0.248577296734 0.859583377838 3.45015597343
+        <UV>  {
+          0.750065 0.888972
+          <Tangent> { 0.831321 -0.501693 0.239188 }
+          <Binormal> { -0.167255 -0.504924 -0.477761 }
+        }
+        <Normal> { -0.941679 -0.006409 0.336436 }
+      }
+      <Vertex> 2211 {
+        0.246315151453 0.107734665275 3.21506476402
+        <UV>  {
+          0.100504 0.510874
+          <Tangent> { -0.018839 0.812355 0.582859 }
+          <Binormal> { 0.720327 0.286140 -0.375522 }
+        }
+        <Normal> { 0.462264 0.000000 0.886715 }
+      }
+      <Vertex> 2212 {
+        0.246315151453 0.0505775026977 3.13885521889
+        <UV>  {
+          0.126562 0.510330
+          <Tangent> { -0.026653 0.443586 0.895835 }
+          <Binormal> { 0.229115 0.789216 -0.383976 }
+        }
+        <Normal> { 0.866115 -0.008301 0.499741 }
+      }
+      <Vertex> 2213 {
+        0.303889602423 0.107734665275 3.18648695946
+        <UV>  {
+          0.107453 0.538839
+          <Tangent> { -0.408940 0.640491 0.650031 }
+          <Binormal> { 0.268594 0.626701 -0.448528 }
+        }
+        <Normal> { 0.458357 0.378918 0.803919 }
+      }
+      <Vertex> 2214 {
+        0.246315151453 0.0505775026977 3.13885521889
+        <UV>  {
+          0.126562 0.510330
+          <Tangent> { -0.026653 0.443586 0.895835 }
+          <Binormal> { 0.229115 0.789216 -0.383976 }
+        }
+        <Normal> { 0.866115 -0.008301 0.499741 }
+      }
+      <Vertex> 2215 {
+        0.435534209013 0.0832486972213 3.07217264175
+        <UV>  {
+          0.151496 0.561873
+          <Tangent> { -0.560577 0.236599 0.793583 }
+          <Binormal> { -0.154549 0.911146 -0.380821 }
+        }
+        <Normal> { 0.796533 0.343150 0.497757 }
+      }
+      <Vertex> 2216 {
+        0.303889602423 0.107734665275 3.18648695946
+        <UV>  {
+          0.107453 0.538839
+          <Tangent> { -0.408940 0.640491 0.650031 }
+          <Binormal> { 0.268594 0.626701 -0.448528 }
+        }
+        <Normal> { 0.458357 0.378918 0.803919 }
+      }
+      <Vertex> 2217 {
+        0.435534209013 0.0832486972213 3.07217264175
+        <UV>  {
+          0.151496 0.561873
+          <Tangent> { -0.560577 0.236599 0.793583 }
+          <Binormal> { -0.154549 0.911146 -0.380821 }
+        }
+        <Normal> { 0.796533 0.343150 0.497757 }
+      }
+      <Vertex> 2218 {
+        0.402969509363 0.113789819181 3.15314555168
+        <UV>  {
+          0.129114 0.568262
+          <Tangent> { -0.887763 0.237757 0.394142 }
+          <Binormal> { 0.100675 0.909779 -0.322044 }
+        }
+        <Normal> { 0.220557 0.303690 0.926878 }
+      }
+      <Vertex> 2219 {
+        0.303889602423 0.107734665275 3.18648695946
+        <UV>  {
+          0.107453 0.538839
+          <Tangent> { -0.408940 0.640491 0.650031 }
+          <Binormal> { 0.268594 0.626701 -0.448528 }
+        }
+        <Normal> { 0.458357 0.378918 0.803919 }
+      }
+      <Vertex> 2220 {
+        0.537392556667 0.171515628695 3.1436188221
+        <UV>  {
+          0.156491 0.595987
+          <Tangent> { -0.892052 -0.446265 0.071348 }
+          <Binormal> { -0.404154 0.844707 0.230370 }
+        }
+        <Normal> { 0.399091 -0.058596 0.915006 }
+      }
+      <Vertex> 2221 {
+        0.402969509363 0.113789819181 3.15314555168
+        <UV>  {
+          0.129114 0.568262
+          <Tangent> { -0.887763 0.237757 0.394142 }
+          <Binormal> { 0.100675 0.909779 -0.322044 }
+        }
+        <Normal> { 0.220557 0.303690 0.926878 }
+      }
+      <Vertex> 2222 {
+        0.435534209013 0.0832486972213 3.07217264175
+        <UV>  {
+          0.151496 0.561873
+          <Tangent> { -0.560577 0.236599 0.793583 }
+          <Binormal> { -0.154549 0.911146 -0.380821 }
+        }
+        <Normal> { 0.796533 0.343150 0.497757 }
+      }
+      <Vertex> 2223 {
+        0.587283790112 0.143818974495 3.09122490883
+        <UV>  {
+          0.165618 0.589216
+          <Tangent> { -0.408957 0.008018 0.912519 }
+          <Binormal> { -0.591587 0.757892 -0.271786 }
+        }
+        <Normal> { 0.710532 0.650655 0.267800 }
+      }
+      <Vertex> 2224 {
+        0.435534209013 0.0832486972213 3.07217264175
+        <UV>  {
+          0.151496 0.561873
+          <Tangent> { -0.560577 0.236599 0.793583 }
+          <Binormal> { -0.154549 0.911146 -0.380821 }
+        }
+        <Normal> { 0.796533 0.343150 0.497757 }
+      }
+      <Vertex> 2225 {
+        0.57167750597 0.1328907758 2.96738386154
+        <UV>  {
+          0.176397 0.578377
+          <Tangent> { -0.339312 -0.190748 0.921131 }
+          <Binormal> { -0.551201 0.765946 -0.044430 }
+        }
+        <Normal> { 0.808313 0.585345 0.063021 }
+      }
+      <Vertex> 2226 {
+        0.587283790112 0.143818974495 3.09122490883
+        <UV>  {
+          0.165618 0.589216
+          <Tangent> { -0.408957 0.008018 0.912519 }
+          <Binormal> { -0.591587 0.757892 -0.271786 }
+        }
+        <Normal> { 0.710532 0.650655 0.267800 }
+      }
+      <Vertex> 2227 {
+        0.537392556667 0.171515628695 3.1436188221
+        <UV>  {
+          0.156491 0.595987
+          <Tangent> { -0.892052 -0.446265 0.071348 }
+          <Binormal> { -0.404154 0.844707 0.230370 }
+        }
+        <Normal> { 0.399091 -0.058596 0.915006 }
+      }
+      <Vertex> 2228 {
+        0.435534209013 0.0832486972213 3.07217264175
+        <UV>  {
+          0.151496 0.561873
+          <Tangent> { -0.560577 0.236599 0.793583 }
+          <Binormal> { -0.154549 0.911146 -0.380821 }
+        }
+        <Normal> { 0.796533 0.343150 0.497757 }
+      }
+      <Vertex> 2229 {
+        0.587283790112 0.143818974495 3.09122490883
+        <UV>  {
+          0.165618 0.589216
+          <Tangent> { -0.408957 0.008018 0.912519 }
+          <Binormal> { -0.591587 0.757892 -0.271786 }
+        }
+        <Normal> { 0.710532 0.650655 0.267800 }
+      }
+      <Vertex> 2230 {
+        0.683367550373 0.322467952967 3.18197393417
+        <UV>  {
+          0.162378 0.602456
+          <Tangent> { -0.633271 -0.189837 0.750286 }
+          <Binormal> { -0.275512 -0.674060 -0.403093 }
+        }
+        <Normal> { -0.933256 0.356761 0.041292 }
+      }
+      <Vertex> 2231 {
+        0.537392556667 0.171515628695 3.1436188221
+        <UV>  {
+          0.156491 0.595987
+          <Tangent> { -0.892052 -0.446265 0.071348 }
+          <Binormal> { -0.404154 0.844707 0.230370 }
+        }
+        <Normal> { 0.399091 -0.058596 0.915006 }
+      }
+      <Vertex> 2232 {
+        0.683367550373 0.322467952967 3.18197393417
+        <UV>  {
+          0.162378 0.602456
+          <Tangent> { -0.633271 -0.189837 0.750286 }
+          <Binormal> { -0.275512 -0.674060 -0.403093 }
+        }
+        <Normal> { -0.933256 0.356761 0.041292 }
+      }
+      <Vertex> 2233 {
+        0.587283790112 0.143818974495 3.09122490883
+        <UV>  {
+          0.165618 0.589216
+          <Tangent> { -0.408957 0.008018 0.912519 }
+          <Binormal> { -0.591587 0.757892 -0.271786 }
+        }
+        <Normal> { 0.710532 0.650655 0.267800 }
+      }
+      <Vertex> 2234 {
+        0.630377411842 0.265643388033 3.08552098274
+        <UV>  {
+          0.169466 0.608677
+          <Tangent> { -0.611161 -0.623631 -0.487408 }
+          <Binormal> { 0.329044 0.087401 -0.524417 }
+        }
+        <Normal> { 0.107303 0.967559 0.228584 }
+      }
+      <Vertex> 2235 {
+        0.709862470627 0.350880861282 3.08016228676
+        <UV>  {
+          0.178513 0.607192
+          <Tangent> { 0.558378 0.599525 0.573396 }
+          <Binormal> { 0.506244 -0.617478 0.152630 }
+        }
+        <Normal> { -0.120396 0.144078 0.982208 }
+      }
+      <Vertex> 2236 {
+        0.630377411842 0.265643388033 3.08552098274
+        <UV>  {
+          0.169466 0.608677
+          <Tangent> { -0.611161 -0.623631 -0.487408 }
+          <Binormal> { 0.329044 0.087401 -0.524417 }
+        }
+        <Normal> { 0.107303 0.967559 0.228584 }
+      }
+      <Vertex> 2237 {
+        0.648243963718 0.284802913666 3.01764750481
+        <UV>  {
+          0.178566 0.607240
+          <Tangent> { 0.616694 0.575941 0.536638 }
+          <Binormal> { -0.577460 -0.106923 0.778359 }
+        }
+        <Normal> { -0.642476 0.662130 -0.385693 }
+      }
+      <Vertex> 2238 {
+        0.540694177151 0.195263534784 2.87338995934
+        <UV>  {
+          0.195146 0.577947
+          <Tangent> { -0.395263 -0.916071 0.067678 }
+          <Binormal> { 0.749209 -0.340258 -0.229991 }
+        }
+        <Normal> { -0.028352 0.516160 -0.855983 }
+      }
+      <Vertex> 2239 {
+        0.640021324158 0.275985479355 2.92625594139
+        <UV>  {
+          0.190521 0.588206
+          <Tangent> { 0.907325 0.420370 -0.007116 }
+          <Binormal> { -0.368022 0.801385 0.416242 }
+        }
+        <Normal> { -0.381664 0.281930 -0.880245 }
+      }
+      <Vertex> 2240 {
+        0.648243963718 0.284802913666 3.01764750481
+        <UV>  {
+          0.178566 0.607240
+          <Tangent> { 0.616694 0.575941 0.536638 }
+          <Binormal> { -0.577460 -0.106923 0.778359 }
+        }
+        <Normal> { -0.642476 0.662130 -0.385693 }
+      }
+      <Vertex> 2241 {
+        0.648243963718 0.284802913666 3.01764750481
+        <UV>  {
+          0.178566 0.607240
+          <Tangent> { 0.616694 0.575941 0.536638 }
+          <Binormal> { -0.577460 -0.106923 0.778359 }
+        }
+        <Normal> { -0.642476 0.662130 -0.385693 }
+      }
+      <Vertex> 2242 {
+        0.622399270535 0.168407067657 2.92451691628
+        <UV>  {
+          0.182857 0.585162
+          <Tangent> { 0.167446 -0.457316 0.873398 }
+          <Binormal> { -0.457241 0.480994 0.339513 }
+        }
+        <Normal> { 0.463759 0.761010 -0.453566 }
+      }
+      <Vertex> 2243 {
+        0.540694177151 0.195263534784 2.87338995934
+        <UV>  {
+          0.195146 0.577947
+          <Tangent> { -0.395263 -0.916071 0.067678 }
+          <Binormal> { 0.749209 -0.340258 -0.229991 }
+        }
+        <Normal> { -0.028352 0.516160 -0.855983 }
+      }
+      <Vertex> 2244 {
+        0.666884958744 0.220984563231 3.0102519989
+        <UV>  {
+          0.176547 0.597642
+          <Tangent> { -0.105873 -0.333555 0.936767 }
+          <Binormal> { -0.957295 0.133075 -0.060810 }
+        }
+        <Normal> { 0.130772 0.986358 0.099857 }
+      }
+      <Vertex> 2245 {
+        0.622399270535 0.168407067657 2.92451691628
+        <UV>  {
+          0.182857 0.585162
+          <Tangent> { 0.167446 -0.457316 0.873398 }
+          <Binormal> { -0.457241 0.480994 0.339513 }
+        }
+        <Normal> { 0.463759 0.761010 -0.453566 }
+      }
+      <Vertex> 2246 {
+        0.648243963718 0.284802913666 3.01764750481
+        <UV>  {
+          0.178566 0.607240
+          <Tangent> { 0.616694 0.575941 0.536638 }
+          <Binormal> { -0.577460 -0.106923 0.778359 }
+        }
+        <Normal> { -0.642476 0.662130 -0.385693 }
+      }
+      <Vertex> 2247 {
+        0.666884958744 0.220984563231 3.0102519989
+        <UV>  {
+          0.176547 0.597642
+          <Tangent> { -0.105873 -0.333555 0.936767 }
+          <Binormal> { -0.957295 0.133075 -0.060810 }
+        }
+        <Normal> { 0.130772 0.986358 0.099857 }
+      }
+      <Vertex> 2248 {
+        0.648243963718 0.284802913666 3.01764750481
+        <UV>  {
+          0.178566 0.607240
+          <Tangent> { 0.616694 0.575941 0.536638 }
+          <Binormal> { -0.577460 -0.106923 0.778359 }
+        }
+        <Normal> { -0.642476 0.662130 -0.385693 }
+      }
+      <Vertex> 2249 {
+        0.630377411842 0.265643388033 3.08552098274
+        <UV>  {
+          0.169466 0.608677
+          <Tangent> { -0.611161 -0.623631 -0.487408 }
+          <Binormal> { 0.329044 0.087401 -0.524417 }
+        }
+        <Normal> { 0.107303 0.967559 0.228584 }
+      }
+      <Vertex> 2250 {
+        0.630377411842 0.265643388033 3.08552098274
+        <UV>  {
+          0.169466 0.608677
+          <Tangent> { -0.611161 -0.623631 -0.487408 }
+          <Binormal> { 0.329044 0.087401 -0.524417 }
+        }
+        <Normal> { 0.107303 0.967559 0.228584 }
+      }
+      <Vertex> 2251 {
+        0.587283790112 0.143818974495 3.09122490883
+        <UV>  {
+          0.165618 0.589216
+          <Tangent> { -0.408957 0.008018 0.912519 }
+          <Binormal> { -0.591587 0.757892 -0.271786 }
+        }
+        <Normal> { 0.710532 0.650655 0.267800 }
+      }
+      <Vertex> 2252 {
+        0.666884958744 0.220984563231 3.0102519989
+        <UV>  {
+          0.176547 0.597642
+          <Tangent> { -0.105873 -0.333555 0.936767 }
+          <Binormal> { -0.957295 0.133075 -0.060810 }
+        }
+        <Normal> { 0.130772 0.986358 0.099857 }
+      }
+      <Vertex> 2253 {
+        0.666884958744 0.220984563231 3.0102519989
+        <UV>  {
+          0.176547 0.597642
+          <Tangent> { -0.105873 -0.333555 0.936767 }
+          <Binormal> { -0.957295 0.133075 -0.060810 }
+        }
+        <Normal> { 0.130772 0.986358 0.099857 }
+      }
+      <Vertex> 2254 {
+        0.587283790112 0.143818974495 3.09122490883
+        <UV>  {
+          0.165618 0.589216
+          <Tangent> { -0.408957 0.008018 0.912519 }
+          <Binormal> { -0.591587 0.757892 -0.271786 }
+        }
+        <Normal> { 0.710532 0.650655 0.267800 }
+      }
+      <Vertex> 2255 {
+        0.622399270535 0.168407067657 2.92451691628
+        <UV>  {
+          0.182857 0.585162
+          <Tangent> { 0.167446 -0.457316 0.873398 }
+          <Binormal> { -0.457241 0.480994 0.339513 }
+        }
+        <Normal> { 0.463759 0.761010 -0.453566 }
+      }
+      <Vertex> 2256 {
+        0.57167750597 0.1328907758 2.96738386154
+        <UV>  {
+          0.176397 0.578377
+          <Tangent> { -0.339312 -0.190748 0.921131 }
+          <Binormal> { -0.551201 0.765946 -0.044430 }
+        }
+        <Normal> { 0.808313 0.585345 0.063021 }
+      }
+      <Vertex> 2257 {
+        0.622399270535 0.168407067657 2.92451691628
+        <UV>  {
+          0.182857 0.585162
+          <Tangent> { 0.167446 -0.457316 0.873398 }
+          <Binormal> { -0.457241 0.480994 0.339513 }
+        }
+        <Normal> { 0.463759 0.761010 -0.453566 }
+      }
+      <Vertex> 2258 {
+        0.587283790112 0.143818974495 3.09122490883
+        <UV>  {
+          0.165618 0.589216
+          <Tangent> { -0.408957 0.008018 0.912519 }
+          <Binormal> { -0.591587 0.757892 -0.271786 }
+        }
+        <Normal> { 0.710532 0.650655 0.267800 }
+      }
+      <Vertex> 2259 {
+        0.444644331932 0.0860333740711 2.83878040314
+        <UV>  {
+          0.190494 0.546872
+          <Tangent> { 0.191463 -0.729101 0.657080 }
+          <Binormal> { 0.227775 0.474240 0.459849 }
+        }
+        <Normal> { 0.509934 0.459914 -0.726890 }
+      }
+      <Vertex> 2260 {
+        0.448272943497 0.130548939109 2.83022522926
+        <UV>  {
+          0.196561 0.551203
+          <Tangent> { 0.306951 -0.901090 0.306297 }
+          <Binormal> { 0.686216 0.318880 0.250426 }
+        }
+        <Normal> { 0.137974 0.410810 -0.901181 }
+      }
+      <Vertex> 2261 {
+        0.540694177151 0.195263534784 2.87338995934
+        <UV>  {
+          0.195146 0.577947
+          <Tangent> { -0.395263 -0.916071 0.067678 }
+          <Binormal> { 0.749209 -0.340258 -0.229991 }
+        }
+        <Normal> { -0.028352 0.516160 -0.855983 }
+      }
+      <Vertex> 2262 {
+        0.246315151453 0.0505775026977 2.7768599987
+        <UV>  {
+          0.192803 0.506492
+          <Tangent> { -0.021776 -0.852687 0.521968 }
+          <Binormal> { 0.758463 0.232961 0.412207 }
+        }
+        <Normal> { 0.482833 -0.023041 -0.875393 }
+      }
+      <Vertex> 2263 {
+        0.246315151453 0.107734665275 2.74228167534
+        <UV>  {
+          0.201895 0.505679
+          <Tangent> { -0.052655 -0.964397 0.259165 }
+          <Binormal> { 0.955907 -0.010737 0.154257 }
+        }
+        <Normal> { 0.159124 -0.015168 -0.987121 }
+      }
+      <Vertex> 2264 {
+        0.448272943497 0.130548939109 2.83022522926
+        <UV>  {
+          0.196561 0.551203
+          <Tangent> { 0.306951 -0.901090 0.306297 }
+          <Binormal> { 0.686216 0.318880 0.250426 }
+        }
+        <Normal> { 0.137974 0.410810 -0.901181 }
+      }
+      <Vertex> 2265 {
+        0.448272943497 0.130548939109 2.83022522926
+        <UV>  {
+          0.196561 0.551203
+          <Tangent> { 0.306951 -0.901090 0.306297 }
+          <Binormal> { 0.686216 0.318880 0.250426 }
+        }
+        <Normal> { 0.137974 0.410810 -0.901181 }
+      }
+      <Vertex> 2266 {
+        0.444644331932 0.0860333740711 2.83878040314
+        <UV>  {
+          0.190494 0.546872
+          <Tangent> { 0.191463 -0.729101 0.657080 }
+          <Binormal> { 0.227775 0.474240 0.459849 }
+        }
+        <Normal> { 0.509934 0.459914 -0.726890 }
+      }
+      <Vertex> 2267 {
+        0.246315151453 0.0505775026977 2.7768599987
+        <UV>  {
+          0.192803 0.506492
+          <Tangent> { -0.021776 -0.852687 0.521968 }
+          <Binormal> { 0.758463 0.232961 0.412207 }
+        }
+        <Normal> { 0.482833 -0.023041 -0.875393 }
+      }
+      <Vertex> 2268 {
+        0.540694177151 0.195263534784 2.87338995934
+        <UV>  {
+          0.195146 0.577947
+          <Tangent> { -0.395263 -0.916071 0.067678 }
+          <Binormal> { 0.749209 -0.340258 -0.229991 }
+        }
+        <Normal> { -0.028352 0.516160 -0.855983 }
+      }
+      <Vertex> 2269 {
+        0.622399270535 0.168407067657 2.92451691628
+        <UV>  {
+          0.182857 0.585162
+          <Tangent> { 0.167446 -0.457316 0.873398 }
+          <Binormal> { -0.457241 0.480994 0.339513 }
+        }
+        <Normal> { 0.463759 0.761010 -0.453566 }
+      }
+      <Vertex> 2270 {
+        0.444644331932 0.0860333740711 2.83878040314
+        <UV>  {
+          0.190494 0.546872
+          <Tangent> { 0.191463 -0.729101 0.657080 }
+          <Binormal> { 0.227775 0.474240 0.459849 }
+        }
+        <Normal> { 0.509934 0.459914 -0.726890 }
+      }
+      <Vertex> 2271 {
+        0.246315136552 0.0172355119139 2.90070104599
+        <UV>  {
+          0.211742 0.485042
+          <Tangent> { 0.007054 0.575912 -0.817481 }
+          <Binormal> { -0.313555 -0.681839 -0.483058 }
+        }
+        <Normal> { 0.838771 0.000000 -0.544450 }
+      }
+      <Vertex> 2272 {
+        0.246732443571 0.0267617050558 2.95785832405
+        <UV>  {
+          0.209803 0.515909
+          <Tangent> { 0.013841 0.724590 -0.689041 }
+          <Binormal> { -0.697498 0.013686 0.000381 }
+        }
+        <Normal> { -0.019623 -0.999725 -0.011933 }
+      }
+      <Vertex> 2273 {
+        0.246315136552 0.0267617050558 2.79591226578
+        <UV>  {
+          0.206384 0.456011
+          <Tangent> { 0.015640 0.109232 -0.993893 }
+          <Binormal> { -0.051962 -0.902765 -0.100034 }
+        }
+        <Normal> { 0.914670 -0.007874 -0.404065 }
+      }
+      <Vertex> 2274 {
+        0.246315151453 0.0505775026977 2.7768599987
+        <UV>  {
+          0.192803 0.506492
+          <Tangent> { -0.021776 -0.852687 0.521968 }
+          <Binormal> { 0.758463 0.232961 0.412207 }
+        }
+        <Normal> { 0.482833 -0.023041 -0.875393 }
+      }
+      <Vertex> 2275 {
+        0.444644331932 0.0860333740711 2.83878040314
+        <UV>  {
+          0.190494 0.546872
+          <Tangent> { 0.191463 -0.729101 0.657080 }
+          <Binormal> { 0.227775 0.474240 0.459849 }
+        }
+        <Normal> { 0.509934 0.459914 -0.726890 }
+      }
+      <Vertex> 2276 {
+        0.246315136552 0.0267617050558 2.79591226578
+        <UV>  {
+          0.188569 0.506845
+          <Tangent> { -0.050200 -0.398413 0.915831 }
+          <Binormal> { 0.168196 0.817400 0.364812 }
+        }
+        <Normal> { 0.914670 -0.007874 -0.404065 }
+      }
+      <Vertex> 2277 {
+        0.473089635372 0.0736552327871 2.90683603287
+        <UV>  {
+          0.180567 0.554282
+          <Tangent> { -0.123150 -0.502683 0.855654 }
+          <Binormal> { -0.183608 0.624291 0.340335 }
+        }
+        <Normal> { 0.788842 0.456374 -0.411573 }
+      }
+      <Vertex> 2278 {
+        0.246315136552 0.0267617050558 2.79591226578
+        <UV>  {
+          0.188569 0.506845
+          <Tangent> { -0.050200 -0.398413 0.915831 }
+          <Binormal> { 0.168196 0.817400 0.364812 }
+        }
+        <Normal> { 0.914670 -0.007874 -0.404065 }
+      }
+      <Vertex> 2279 {
+        0.444644331932 0.0860333740711 2.83878040314
+        <UV>  {
+          0.190494 0.546872
+          <Tangent> { 0.191463 -0.729101 0.657080 }
+          <Binormal> { 0.227775 0.474240 0.459849 }
+        }
+        <Normal> { 0.509934 0.459914 -0.726890 }
+      }
+      <Vertex> 2280 {
+        0.473089635372 0.0736552327871 2.90683603287
+        <UV>  {
+          0.180567 0.554282
+          <Tangent> { -0.123150 -0.502683 0.855654 }
+          <Binormal> { -0.183608 0.624291 0.340335 }
+        }
+        <Normal> { 0.788842 0.456374 -0.411573 }
+      }
+      <Vertex> 2281 {
+        0.313415795565 0.0172355081886 2.89117431641
+        <UV>  {
+          0.177230 0.521348
+          <Tangent> { -0.044114 -0.739546 0.671659 }
+          <Binormal> { 0.562200 0.407421 0.485525 }
+        }
+        <Normal> { 0.656148 -0.006195 -0.754570 }
+      }
+      <Vertex> 2282 {
+        0.246315136552 0.0267617050558 2.79591226578
+        <UV>  {
+          0.188569 0.506845
+          <Tangent> { -0.050200 -0.398413 0.915831 }
+          <Binormal> { 0.168196 0.817400 0.364812 }
+        }
+        <Normal> { 0.914670 -0.007874 -0.404065 }
+      }
+      <Vertex> 2283 {
+        0.246315136552 0.0267617050558 2.79591226578
+        <UV>  {
+          0.188569 0.506845
+          <Tangent> { -0.050200 -0.398413 0.915831 }
+          <Binormal> { 0.168196 0.817400 0.364812 }
+        }
+        <Normal> { 0.914670 -0.007874 -0.404065 }
+      }
+      <Vertex> 2284 {
+        0.313415795565 0.0172355081886 2.89117431641
+        <UV>  {
+          0.177230 0.521348
+          <Tangent> { -0.044114 -0.739546 0.671659 }
+          <Binormal> { 0.562200 0.407421 0.485525 }
+        }
+        <Normal> { 0.656148 -0.006195 -0.754570 }
+      }
+      <Vertex> 2285 {
+        0.246315136552 0.0172355119139 2.90070104599
+        <UV>  {
+          0.176153 0.508444
+          <Tangent> { -0.070059 -0.512836 0.855623 }
+          <Binormal> { 0.279214 0.679528 0.430152 }
+        }
+        <Normal> { 0.838771 0.000000 -0.544450 }
+      }
+      <Vertex> 2286 {
+        0.622399270535 0.168407067657 2.92451691628
+        <UV>  {
+          0.182857 0.585162
+          <Tangent> { 0.167446 -0.457316 0.873398 }
+          <Binormal> { -0.457241 0.480994 0.339513 }
+        }
+        <Normal> { 0.463759 0.761010 -0.453566 }
+      }
+      <Vertex> 2287 {
+        0.473089635372 0.0736552327871 2.90683603287
+        <UV>  {
+          0.180567 0.554282
+          <Tangent> { -0.123150 -0.502683 0.855654 }
+          <Binormal> { -0.183608 0.624291 0.340335 }
+        }
+        <Normal> { 0.788842 0.456374 -0.411573 }
+      }
+      <Vertex> 2288 {
+        0.444644331932 0.0860333740711 2.83878040314
+        <UV>  {
+          0.190494 0.546872
+          <Tangent> { 0.191463 -0.729101 0.657080 }
+          <Binormal> { 0.227775 0.474240 0.459849 }
+        }
+        <Normal> { 0.509934 0.459914 -0.726890 }
+      }
+      <Vertex> 2289 {
+        0.57167750597 0.1328907758 2.96738386154
+        <UV>  {
+          0.176397 0.578377
+          <Tangent> { -0.339312 -0.190748 0.921131 }
+          <Binormal> { -0.551201 0.765946 -0.044430 }
+        }
+        <Normal> { 0.808313 0.585345 0.063021 }
+      }
+      <Vertex> 2290 {
+        0.473089635372 0.0736552327871 2.90683603287
+        <UV>  {
+          0.180567 0.554282
+          <Tangent> { -0.123150 -0.502683 0.855654 }
+          <Binormal> { -0.183608 0.624291 0.340335 }
+        }
+        <Normal> { 0.788842 0.456374 -0.411573 }
+      }
+      <Vertex> 2291 {
+        0.622399270535 0.168407067657 2.92451691628
+        <UV>  {
+          0.182857 0.585162
+          <Tangent> { 0.167446 -0.457316 0.873398 }
+          <Binormal> { -0.457241 0.480994 0.339513 }
+        }
+        <Normal> { 0.463759 0.761010 -0.453566 }
+      }
+      <Vertex> 2292 {
+        0.313415795565 -0.0065796659328 2.8959376812
+        <UV>  {
+          0.173877 0.521411
+          <Tangent> { -0.106891 -0.630964 0.768413 }
+          <Binormal> { 0.200745 0.540563 0.471794 }
+        }
+        <Normal> { 0.784356 0.216163 -0.581408 }
+      }
+      <Vertex> 2293 {
+        0.246315136552 -0.0371930338442 2.93165326118
+        <UV>  {
+          0.167914 0.508983
+          <Tangent> { -0.113625 -0.483799 0.867772 }
+          <Binormal> { 0.250662 0.683318 0.413784 }
+        }
+        <Normal> { 0.855281 0.000000 -0.518113 }
+      }
+      <Vertex> 2294 {
+        0.313415795565 0.0172355081886 2.89117431641
+        <UV>  {
+          0.177230 0.521348
+          <Tangent> { -0.044114 -0.739546 0.671659 }
+          <Binormal> { 0.562200 0.407421 0.485525 }
+        }
+        <Normal> { 0.656148 -0.006195 -0.754570 }
+      }
+      <Vertex> 2295 {
+        0.313415795565 0.0172355081886 2.89117431641
+        <UV>  {
+          0.177230 0.521348
+          <Tangent> { -0.044114 -0.739546 0.671659 }
+          <Binormal> { 0.562200 0.407421 0.485525 }
+        }
+        <Normal> { 0.656148 -0.006195 -0.754570 }
+      }
+      <Vertex> 2296 {
+        0.246315136552 -0.0371930338442 2.93165326118
+        <UV>  {
+          0.167914 0.508983
+          <Tangent> { -0.113625 -0.483799 0.867772 }
+          <Binormal> { 0.250662 0.683318 0.413784 }
+        }
+        <Normal> { 0.855281 0.000000 -0.518113 }
+      }
+      <Vertex> 2297 {
+        0.246315136552 0.0172355119139 2.90070104599
+        <UV>  {
+          0.176153 0.508444
+          <Tangent> { -0.070059 -0.512836 0.855623 }
+          <Binormal> { 0.279214 0.679528 0.430152 }
+        }
+        <Normal> { 0.838771 0.000000 -0.544450 }
+      }
+      <Vertex> 2298 {
+        0.246315136552 -0.0371930338442 2.93165326118
+        <UV>  {
+          0.233690 0.499255
+          <Tangent> { 0.017474 0.984955 -0.171926 }
+          <Binormal> { -0.510318 -0.137992 -0.842413 }
+        }
+        <Normal> { 0.855281 0.000000 -0.518113 }
+      }
+      <Vertex> 2299 {
+        0.246732443571 0.0267617050558 2.95785832405
+        <UV>  {
+          0.209803 0.515909
+          <Tangent> { 0.013841 0.724590 -0.689041 }
+          <Binormal> { -0.697498 0.013686 0.000381 }
+        }
+        <Normal> { -0.019623 -0.999725 -0.011933 }
+      }
+      <Vertex> 2300 {
+        0.246315136552 0.0172355119139 2.90070104599
+        <UV>  {
+          0.211742 0.485042
+          <Tangent> { 0.007054 0.575912 -0.817481 }
+          <Binormal> { -0.313555 -0.681839 -0.483058 }
+        }
+        <Normal> { 0.838771 0.000000 -0.544450 }
+      }
+      <Vertex> 2301 {
+        0.246315136552 -0.0371930338442 2.93165326118
+        <UV>  {
+          0.233690 0.499255
+          <Tangent> { 0.017474 0.984955 -0.171926 }
+          <Binormal> { -0.510318 -0.137992 -0.842413 }
+        }
+        <Normal> { 0.855281 0.000000 -0.518113 }
+      }
+      <Vertex> 2302 {
+        0.246315136552 0.00294590857811 2.95309495926
+        <UV>  {
+          0.221412 0.511372
+          <Tangent> { 0.029333 0.978638 -0.203489 }
+          <Binormal> { 0.561939 -0.183437 -0.801200 }
+        }
+        <Normal> { 0.818690 0.000000 0.574206 }
+      }
+      <Vertex> 2303 {
+        0.246732443571 0.0267617050558 2.95785832405
+        <UV>  {
+          0.209803 0.515909
+          <Tangent> { 0.013841 0.724590 -0.689041 }
+          <Binormal> { -0.697498 0.013686 0.000381 }
+        }
+        <Normal> { -0.019623 -0.999725 -0.011933 }
+      }
+      <Vertex> 2304 {
+        0.313415795565 0.0172355081886 2.89117431641
+        <UV>  {
+          0.177230 0.521348
+          <Tangent> { -0.044114 -0.739546 0.671659 }
+          <Binormal> { 0.562200 0.407421 0.485525 }
+        }
+        <Normal> { 0.656148 -0.006195 -0.754570 }
+      }
+      <Vertex> 2305 {
+        0.473089635372 0.0736552327871 2.90683603287
+        <UV>  {
+          0.180567 0.554282
+          <Tangent> { -0.123150 -0.502683 0.855654 }
+          <Binormal> { -0.183608 0.624291 0.340335 }
+        }
+        <Normal> { 0.788842 0.456374 -0.411573 }
+      }
+      <Vertex> 2306 {
+        0.313415795565 -0.0065796659328 2.8959376812
+        <UV>  {
+          0.173877 0.521411
+          <Tangent> { -0.106891 -0.630964 0.768413 }
+          <Binormal> { 0.200745 0.540563 0.471794 }
+        }
+        <Normal> { 0.784356 0.216163 -0.581408 }
+      }
+      <Vertex> 2307 {
+        0.246315136552 0.00294590857811 2.95309495926
+        <UV>  {
+          0.221412 0.511372
+          <Tangent> { 0.029333 0.978638 -0.203489 }
+          <Binormal> { 0.561939 -0.183437 -0.801200 }
+        }
+        <Normal> { 0.818690 0.000000 0.574206 }
+      }
+      <Vertex> 2308 {
+        0.246315151453 0.0505775026977 3.13885521889
+        <UV>  {
+          0.206384 0.630424
+          <Tangent> { 0.145420 -0.933173 -0.328696 }
+          <Binormal> { -0.469073 -0.357361 0.807028 }
+        }
+        <Normal> { 0.866115 -0.008301 0.499741 }
+      }
+      <Vertex> 2309 {
+        0.246732443571 0.0267617050558 2.95785832405
+        <UV>  {
+          0.209803 0.515909
+          <Tangent> { 0.013841 0.724590 -0.689041 }
+          <Binormal> { -0.697498 0.013686 0.000381 }
+        }
+        <Normal> { -0.019623 -0.999725 -0.011933 }
+      }
+      <Vertex> 2310 {
+        0.30865240097 -0.0113430740312 3.00548863411
+        <UV>  {
+          0.157829 0.524451
+          <Tangent> { -0.224513 0.352715 0.908398 }
+          <Binormal> { 0.118344 0.922513 -0.328947 }
+        }
+        <Normal> { 0.917325 0.024018 0.397382 }
+      }
+      <Vertex> 2311 {
+        0.246315151453 0.0505775026977 3.13885521889
+        <UV>  {
+          0.126562 0.510330
+          <Tangent> { -0.026653 0.443586 0.895835 }
+          <Binormal> { 0.229115 0.789216 -0.383976 }
+        }
+        <Normal> { 0.866115 -0.008301 0.499741 }
+      }
+      <Vertex> 2312 {
+        0.246315136552 0.00294590857811 2.95309495926
+        <UV>  {
+          0.161075 0.509477
+          <Tangent> { -0.036774 0.669311 0.742072 }
+          <Binormal> { 0.384322 0.628642 -0.547958 }
+        }
+        <Normal> { 0.818690 0.000000 0.574206 }
+      }
+      <Vertex> 2313 {
+        0.30865240097 -0.0113430740312 3.00548863411
+        <UV>  {
+          0.157829 0.524451
+          <Tangent> { -0.224513 0.352715 0.908398 }
+          <Binormal> { 0.118344 0.922513 -0.328947 }
+        }
+        <Normal> { 0.917325 0.024018 0.397382 }
+      }
+      <Vertex> 2314 {
+        0.435534209013 0.0832486972213 3.07217264175
+        <UV>  {
+          0.151496 0.561873
+          <Tangent> { -0.560577 0.236599 0.793583 }
+          <Binormal> { -0.154549 0.911146 -0.380821 }
+        }
+        <Normal> { 0.796533 0.343150 0.497757 }
+      }
+      <Vertex> 2315 {
+        0.246315151453 0.0505775026977 3.13885521889
+        <UV>  {
+          0.126562 0.510330
+          <Tangent> { -0.026653 0.443586 0.895835 }
+          <Binormal> { 0.229115 0.789216 -0.383976 }
+        }
+        <Normal> { 0.866115 -0.008301 0.499741 }
+      }
+      <Vertex> 2316 {
+        0.30865240097 -0.0113430740312 3.00548863411
+        <UV>  {
+          0.157829 0.524451
+          <Tangent> { -0.224513 0.352715 0.908398 }
+          <Binormal> { 0.118344 0.922513 -0.328947 }
+        }
+        <Normal> { 0.917325 0.024018 0.397382 }
+      }
+      <Vertex> 2317 {
+        0.462748169899 0.0268189962953 3.00072646141
+        <UV>  {
+          0.165679 0.553666
+          <Tangent> { -0.335095 -0.086917 0.938167 }
+          <Binormal> { -0.475077 0.850610 -0.090883 }
+        }
+        <Normal> { 0.859157 0.494064 0.133030 }
+      }
+      <Vertex> 2318 {
+        0.435534209013 0.0832486972213 3.07217264175
+        <UV>  {
+          0.151496 0.561873
+          <Tangent> { -0.560577 0.236599 0.793583 }
+          <Binormal> { -0.154549 0.911146 -0.380821 }
+        }
+        <Normal> { 0.796533 0.343150 0.497757 }
+      }
+      <Vertex> 2319 {
+        0.462748169899 0.0268189962953 3.00072646141
+        <UV>  {
+          0.165679 0.553666
+          <Tangent> { -0.335095 -0.086917 0.938167 }
+          <Binormal> { -0.475077 0.850610 -0.090883 }
+        }
+        <Normal> { 0.859157 0.494064 0.133030 }
+      }
+      <Vertex> 2320 {
+        0.57167750597 0.1328907758 2.96738386154
+        <UV>  {
+          0.176397 0.578377
+          <Tangent> { -0.339312 -0.190748 0.921131 }
+          <Binormal> { -0.551201 0.765946 -0.044430 }
+        }
+        <Normal> { 0.808313 0.585345 0.063021 }
+      }
+      <Vertex> 2321 {
+        0.435534209013 0.0832486972213 3.07217264175
+        <UV>  {
+          0.151496 0.561873
+          <Tangent> { -0.560577 0.236599 0.793583 }
+          <Binormal> { -0.154549 0.911146 -0.380821 }
+        }
+        <Normal> { 0.796533 0.343150 0.497757 }
+      }
+      <Vertex> 2322 {
+        0.462748169899 0.0268189962953 3.00072646141
+        <UV>  {
+          0.165679 0.553666
+          <Tangent> { -0.335095 -0.086917 0.938167 }
+          <Binormal> { -0.475077 0.850610 -0.090883 }
+        }
+        <Normal> { 0.859157 0.494064 0.133030 }
+      }
+      <Vertex> 2323 {
+        0.473089635372 0.0736552327871 2.90683603287
+        <UV>  {
+          0.180567 0.554282
+          <Tangent> { -0.123150 -0.502683 0.855654 }
+          <Binormal> { -0.183608 0.624291 0.340335 }
+        }
+        <Normal> { 0.788842 0.456374 -0.411573 }
+      }
+      <Vertex> 2324 {
+        0.57167750597 0.1328907758 2.96738386154
+        <UV>  {
+          0.176397 0.578377
+          <Tangent> { -0.339312 -0.190748 0.921131 }
+          <Binormal> { -0.551201 0.765946 -0.044430 }
+        }
+        <Normal> { 0.808313 0.585345 0.063021 }
+      }
+      <Vertex> 2325 {
+        0.473089635372 0.0736552327871 2.90683603287
+        <UV>  {
+          0.180567 0.554282
+          <Tangent> { -0.123150 -0.502683 0.855654 }
+          <Binormal> { -0.183608 0.624291 0.340335 }
+        }
+        <Normal> { 0.788842 0.456374 -0.411573 }
+      }
+      <Vertex> 2326 {
+        0.462748169899 0.0268189962953 3.00072646141
+        <UV>  {
+          0.165679 0.553666
+          <Tangent> { -0.335095 -0.086917 0.938167 }
+          <Binormal> { -0.475077 0.850610 -0.090883 }
+        }
+        <Normal> { 0.859157 0.494064 0.133030 }
+      }
+      <Vertex> 2327 {
+        0.313415795565 -0.0065796659328 2.8959376812
+        <UV>  {
+          0.173877 0.521411
+          <Tangent> { -0.106891 -0.630964 0.768413 }
+          <Binormal> { 0.200745 0.540563 0.471794 }
+        }
+        <Normal> { 0.784356 0.216163 -0.581408 }
+      }
+      <Vertex> 2328 {
+        0.30865240097 -0.0113430740312 3.00548863411
+        <UV>  {
+          0.157829 0.524451
+          <Tangent> { -0.224513 0.352715 0.908398 }
+          <Binormal> { 0.118344 0.922513 -0.328947 }
+        }
+        <Normal> { 0.917325 0.024018 0.397382 }
+      }
+      <Vertex> 2329 {
+        0.246315136552 -0.0371930338442 2.93165326118
+        <UV>  {
+          0.167914 0.508983
+          <Tangent> { -0.113625 -0.483799 0.867772 }
+          <Binormal> { 0.250662 0.683318 0.413784 }
+        }
+        <Normal> { 0.855281 0.000000 -0.518113 }
+      }
+      <Vertex> 2330 {
+        0.313415795565 -0.0065796659328 2.8959376812
+        <UV>  {
+          0.173877 0.521411
+          <Tangent> { -0.106891 -0.630964 0.768413 }
+          <Binormal> { 0.200745 0.540563 0.471794 }
+        }
+        <Normal> { 0.784356 0.216163 -0.581408 }
+      }
+      <Vertex> 2331 {
+        0.30865240097 -0.0113430740312 3.00548863411
+        <UV>  {
+          0.157829 0.524451
+          <Tangent> { -0.224513 0.352715 0.908398 }
+          <Binormal> { 0.118344 0.922513 -0.328947 }
+        }
+        <Normal> { 0.917325 0.024018 0.397382 }
+      }
+      <Vertex> 2332 {
+        0.313415795565 -0.0065796659328 2.8959376812
+        <UV>  {
+          0.173877 0.521411
+          <Tangent> { -0.106891 -0.630964 0.768413 }
+          <Binormal> { 0.200745 0.540563 0.471794 }
+        }
+        <Normal> { 0.784356 0.216163 -0.581408 }
+      }
+      <Vertex> 2333 {
+        0.462748169899 0.0268189962953 3.00072646141
+        <UV>  {
+          0.165679 0.553666
+          <Tangent> { -0.335095 -0.086917 0.938167 }
+          <Binormal> { -0.475077 0.850610 -0.090883 }
+        }
+        <Normal> { 0.859157 0.494064 0.133030 }
+      }
+      <Vertex> 2334 {
+        0.30865240097 -0.0113430740312 3.00548863411
+        <UV>  {
+          0.157829 0.524451
+          <Tangent> { -0.224513 0.352715 0.908398 }
+          <Binormal> { 0.118344 0.922513 -0.328947 }
+        }
+        <Normal> { 0.917325 0.024018 0.397382 }
+      }
+      <Vertex> 2335 {
+        0.246315136552 0.00294590857811 2.95309495926
+        <UV>  {
+          0.161075 0.509477
+          <Tangent> { -0.036774 0.669311 0.742072 }
+          <Binormal> { 0.384322 0.628642 -0.547958 }
+        }
+        <Normal> { 0.818690 0.000000 0.574206 }
+      }
+      <Vertex> 2336 {
+        0.246315136552 -0.0371930338442 2.93165326118
+        <UV>  {
+          0.167914 0.508983
+          <Tangent> { -0.113625 -0.483799 0.867772 }
+          <Binormal> { 0.250662 0.683318 0.413784 }
+        }
+        <Normal> { 0.855281 0.000000 -0.518113 }
+      }
+      <Vertex> 2337 {
+        0.303889602423 0.107734665275 3.18648695946
+        <UV>  {
+          0.107453 0.538839
+          <Tangent> { -0.408940 0.640491 0.650031 }
+          <Binormal> { 0.268594 0.626701 -0.448528 }
+        }
+        <Normal> { 0.458357 0.378918 0.803919 }
+      }
+      <Vertex> 2338 {
+        0.303889602423 0.174417406321 3.18648695946
+        <UV>  {
+          0.080782 0.563270
+          <Tangent> { -0.667980 0.695491 0.264753 }
+          <Binormal> { 0.551203 0.626002 -0.253769 }
+        }
+        <Normal> { 0.015076 0.364208 0.931181 }
+      }
+      <Vertex> 2339 {
+        0.246315151453 0.174417406321 3.21506476402
+        <UV>  {
+          0.065086 0.511768
+          <Tangent> { -0.015895 0.994686 0.101716 }
+          <Binormal> { 0.994686 0.015895 -0.000000 }
+        }
+        <Normal> { 0.000000 0.000000 1.000000 }
+      }
+      <Vertex> 2340 {
+        0.246315151453 0.174417406321 3.21506476402
+        <UV>  {
+          0.065086 0.511768
+          <Tangent> { -0.015895 0.994686 0.101716 }
+          <Binormal> { 0.994686 0.015895 -0.000000 }
+        }
+        <Normal> { 0.000000 0.000000 1.000000 }
+      }
+      <Vertex> 2341 {
+        0.246315151453 0.107734665275 3.21506476402
+        <UV>  {
+          0.100504 0.510874
+          <Tangent> { -0.018839 0.812355 0.582859 }
+          <Binormal> { 0.720327 0.286140 -0.375522 }
+        }
+        <Normal> { 0.462264 0.000000 0.886715 }
+      }
+      <Vertex> 2342 {
+        0.303889602423 0.107734665275 3.18648695946
+        <UV>  {
+          0.107453 0.538839
+          <Tangent> { -0.408940 0.640491 0.650031 }
+          <Binormal> { 0.268594 0.626701 -0.448528 }
+        }
+        <Normal> { 0.458357 0.378918 0.803919 }
+      }
+      <Vertex> 2343 {
+        0.402969509363 0.113789819181 3.15314555168
+        <UV>  {
+          0.129114 0.568262
+          <Tangent> { -0.887763 0.237757 0.394142 }
+          <Binormal> { 0.100675 0.909779 -0.322044 }
+        }
+        <Normal> { 0.220557 0.303690 0.926878 }
+      }
+      <Vertex> 2344 {
+        0.394388765097 0.174417391419 3.15314555168
+        <UV>  {
+          0.118850 0.587142
+          <Tangent> { -0.835487 0.494383 0.239891 }
+          <Binormal> { 0.404284 0.802120 -0.245030 }
+        }
+        <Normal> { 0.008759 0.288095 0.957549 }
+      }
+      <Vertex> 2345 {
+        0.303889602423 0.174417406321 3.18648695946
+        <UV>  {
+          0.080782 0.563270
+          <Tangent> { -0.667980 0.695491 0.264753 }
+          <Binormal> { 0.551203 0.626002 -0.253769 }
+        }
+        <Normal> { 0.015076 0.364208 0.931181 }
+      }
+      <Vertex> 2346 {
+        0.402969509363 0.113789819181 3.15314555168
+        <UV>  {
+          0.129114 0.568262
+          <Tangent> { -0.887763 0.237757 0.394142 }
+          <Binormal> { 0.100675 0.909779 -0.322044 }
+        }
+        <Normal> { 0.220557 0.303690 0.926878 }
+      }
+      <Vertex> 2347 {
+        0.303889602423 0.174417406321 3.18648695946
+        <UV>  {
+          0.080782 0.563270
+          <Tangent> { -0.667980 0.695491 0.264753 }
+          <Binormal> { 0.551203 0.626002 -0.253769 }
+        }
+        <Normal> { 0.015076 0.364208 0.931181 }
+      }
+      <Vertex> 2348 {
+        0.303889602423 0.107734665275 3.18648695946
+        <UV>  {
+          0.107453 0.538839
+          <Tangent> { -0.408940 0.640491 0.650031 }
+          <Binormal> { 0.268594 0.626701 -0.448528 }
+        }
+        <Normal> { 0.458357 0.378918 0.803919 }
+      }
+      <Vertex> 2349 {
+        0.516695261002 0.15232808888 3.1245663166
+        <UV>  {
+          0.148211 0.598294
+          <Tangent> { -0.838774 -0.533143 -0.110528 }
+          <Binormal> { -0.469873 0.768606 -0.141686 }
+        }
+        <Normal> { -0.504624 -0.151830 0.849849 }
+      }
+      <Vertex> 2350 {
+        0.394388765097 0.174417391419 3.15314555168
+        <UV>  {
+          0.118850 0.587142
+          <Tangent> { -0.835487 0.494383 0.239891 }
+          <Binormal> { 0.404284 0.802120 -0.245030 }
+        }
+        <Normal> { 0.008759 0.288095 0.957549 }
+      }
+      <Vertex> 2351 {
+        0.402969509363 0.113789819181 3.15314555168
+        <UV>  {
+          0.129114 0.568262
+          <Tangent> { -0.887763 0.237757 0.394142 }
+          <Binormal> { 0.100675 0.909779 -0.322044 }
+        }
+        <Normal> { 0.220557 0.303690 0.926878 }
+      }
+      <Vertex> 2352 {
+        0.537392556667 0.171515628695 3.1436188221
+        <UV>  {
+          0.156491 0.595987
+          <Tangent> { -0.892052 -0.446265 0.071348 }
+          <Binormal> { -0.404154 0.844707 0.230370 }
+        }
+        <Normal> { 0.399091 -0.058596 0.915006 }
+      }
+      <Vertex> 2353 {
+        0.516695261002 0.15232808888 3.1245663166
+        <UV>  {
+          0.148211 0.598294
+          <Tangent> { -0.838774 -0.533143 -0.110528 }
+          <Binormal> { -0.469873 0.768606 -0.141686 }
+        }
+        <Normal> { -0.504624 -0.151830 0.849849 }
+      }
+      <Vertex> 2354 {
+        0.402969509363 0.113789819181 3.15314555168
+        <UV>  {
+          0.129114 0.568262
+          <Tangent> { -0.887763 0.237757 0.394142 }
+          <Binormal> { 0.100675 0.909779 -0.322044 }
+        }
+        <Normal> { 0.220557 0.303690 0.926878 }
+      }
+      <Vertex> 2355 {
+        0.630377411842 0.265643388033 3.08552098274
+        <UV>  {
+          0.169466 0.608677
+          <Tangent> { -0.611161 -0.623631 -0.487408 }
+          <Binormal> { 0.329044 0.087401 -0.524417 }
+        }
+        <Normal> { 0.107303 0.967559 0.228584 }
+      }
+      <Vertex> 2356 {
+        0.619926929474 0.275388807058 3.08552098274
+        <UV>  {
+          0.169402 0.618041
+          <Tangent> { 0.549103 0.587765 0.594154 }
+          <Binormal> { 0.158250 -0.766255 0.611765 }
+        }
+        <Normal> { -0.878719 0.173528 0.444655 }
+      }
+      <Vertex> 2357 {
+        0.683367550373 0.322467952967 3.18197393417
+        <UV>  {
+          0.162378 0.602456
+          <Tangent> { -0.633271 -0.189837 0.750286 }
+          <Binormal> { -0.275512 -0.674060 -0.403093 }
+        }
+        <Normal> { -0.933256 0.356761 0.041292 }
+      }
+      <Vertex> 2358 {
+        0.683367550373 0.322467952967 3.18197393417
+        <UV>  {
+          0.162378 0.602456
+          <Tangent> { -0.633271 -0.189837 0.750286 }
+          <Binormal> { -0.275512 -0.674060 -0.403093 }
+        }
+        <Normal> { -0.933256 0.356761 0.041292 }
+      }
+      <Vertex> 2359 {
+        0.516695261002 0.15232808888 3.1245663166
+        <UV>  {
+          0.148211 0.598294
+          <Tangent> { -0.838774 -0.533143 -0.110528 }
+          <Binormal> { -0.469873 0.768606 -0.141686 }
+        }
+        <Normal> { -0.504624 -0.151830 0.849849 }
+      }
+      <Vertex> 2360 {
+        0.537392556667 0.171515628695 3.1436188221
+        <UV>  {
+          0.156491 0.595987
+          <Tangent> { -0.892052 -0.446265 0.071348 }
+          <Binormal> { -0.404154 0.844707 0.230370 }
+        }
+        <Normal> { 0.399091 -0.058596 0.915006 }
+      }
+      <Vertex> 2361 {
+        0.516695261002 0.15232808888 3.1245663166
+        <UV>  {
+          0.148211 0.598294
+          <Tangent> { -0.838774 -0.533143 -0.110528 }
+          <Binormal> { -0.469873 0.768606 -0.141686 }
+        }
+        <Normal> { -0.504624 -0.151830 0.849849 }
+      }
+      <Vertex> 2362 {
+        0.683367550373 0.322467952967 3.18197393417
+        <UV>  {
+          0.162378 0.602456
+          <Tangent> { -0.633271 -0.189837 0.750286 }
+          <Binormal> { -0.275512 -0.674060 -0.403093 }
+        }
+        <Normal> { -0.933256 0.356761 0.041292 }
+      }
+      <Vertex> 2363 {
+        0.619926929474 0.275388807058 3.08552098274
+        <UV>  {
+          0.169402 0.618041
+          <Tangent> { 0.549103 0.587765 0.594154 }
+          <Binormal> { 0.158250 -0.766255 0.611765 }
+        }
+        <Normal> { -0.878719 0.173528 0.444655 }
+      }
+      <Vertex> 2364 {
+        0.709862470627 0.350880861282 3.08016228676
+        <UV>  {
+          0.178513 0.607192
+          <Tangent> { 0.558378 0.599525 0.573396 }
+          <Binormal> { 0.506244 -0.617478 0.152630 }
+        }
+        <Normal> { -0.120396 0.144078 0.982208 }
+      }
+      <Vertex> 2365 {
+        0.619926929474 0.275388807058 3.08552098274
+        <UV>  {
+          0.169402 0.618041
+          <Tangent> { 0.549103 0.587765 0.594154 }
+          <Binormal> { 0.158250 -0.766255 0.611765 }
+        }
+        <Normal> { -0.878719 0.173528 0.444655 }
+      }
+      <Vertex> 2366 {
+        0.630377411842 0.265643388033 3.08552098274
+        <UV>  {
+          0.169466 0.608677
+          <Tangent> { -0.611161 -0.623631 -0.487408 }
+          <Binormal> { 0.329044 0.087401 -0.524417 }
+        }
+        <Normal> { 0.107303 0.967559 0.228584 }
+      }
+      <Vertex> 2367 {
+        0.709862470627 0.350880861282 3.08016228676
+        <UV>  {
+          0.178513 0.607192
+          <Tangent> { 0.558378 0.599525 0.573396 }
+          <Binormal> { 0.506244 -0.617478 0.152630 }
+        }
+        <Normal> { -0.120396 0.144078 0.982208 }
+      }
+      <Vertex> 2368 {
+        0.648243963718 0.284802913666 3.01764750481
+        <UV>  {
+          0.178566 0.607240
+          <Tangent> { 0.616694 0.575941 0.536638 }
+          <Binormal> { -0.577460 -0.106923 0.778359 }
+        }
+        <Normal> { -0.642476 0.662130 -0.385693 }
+      }
+      <Vertex> 2369 {
+        0.619926929474 0.275388807058 3.08552098274
+        <UV>  {
+          0.169402 0.618041
+          <Tangent> { 0.549103 0.587765 0.594154 }
+          <Binormal> { 0.158250 -0.766255 0.611765 }
+        }
+        <Normal> { -0.878719 0.173528 0.444655 }
+      }
+      <Vertex> 2370 {
+        0.624564528465 0.287345916033 3.00812077522
+        <UV>  {
+          0.182251 0.608087
+          <Tangent> { 0.753339 -0.030850 0.656908 }
+          <Binormal> { -0.319866 -0.261961 0.354519 }
+        }
+        <Normal> { -0.792932 0.503067 -0.343699 }
+      }
+      <Vertex> 2371 {
+        0.619926929474 0.275388807058 3.08552098274
+        <UV>  {
+          0.169402 0.618041
+          <Tangent> { 0.549103 0.587765 0.594154 }
+          <Binormal> { 0.158250 -0.766255 0.611765 }
+        }
+        <Normal> { -0.878719 0.173528 0.444655 }
+      }
+      <Vertex> 2372 {
+        0.648243963718 0.284802913666 3.01764750481
+        <UV>  {
+          0.178566 0.607240
+          <Tangent> { 0.616694 0.575941 0.536638 }
+          <Binormal> { -0.577460 -0.106923 0.778359 }
+        }
+        <Normal> { -0.642476 0.662130 -0.385693 }
+      }
+      <Vertex> 2373 {
+        0.648243963718 0.284802913666 3.01764750481
+        <UV>  {
+          0.178566 0.607240
+          <Tangent> { 0.616694 0.575941 0.536638 }
+          <Binormal> { -0.577460 -0.106923 0.778359 }
+        }
+        <Normal> { -0.642476 0.662130 -0.385693 }
+      }
+      <Vertex> 2374 {
+        0.528418183327 0.202834039927 2.87338995934
+        <UV>  {
+          0.198023 0.577549
+          <Tangent> { 0.909553 0.400391 0.111358 }
+          <Binormal> { -0.363777 0.663574 0.585367 }
+        }
+        <Normal> { -0.425123 0.456435 -0.781610 }
+      }
+      <Vertex> 2375 {
+        0.624564528465 0.287345916033 3.00812077522
+        <UV>  {
+          0.182251 0.608087
+          <Tangent> { 0.753339 -0.030850 0.656908 }
+          <Binormal> { -0.319866 -0.261961 0.354519 }
+        }
+        <Normal> { -0.792932 0.503067 -0.343699 }
+      }
+      <Vertex> 2376 {
+        0.648243963718 0.284802913666 3.01764750481
+        <UV>  {
+          0.178566 0.607240
+          <Tangent> { 0.616694 0.575941 0.536638 }
+          <Binormal> { -0.577460 -0.106923 0.778359 }
+        }
+        <Normal> { -0.642476 0.662130 -0.385693 }
+      }
+      <Vertex> 2377 {
+        0.640021324158 0.275985479355 2.92625594139
+        <UV>  {
+          0.190521 0.588206
+          <Tangent> { 0.907325 0.420370 -0.007116 }
+          <Binormal> { -0.368022 0.801385 0.416242 }
+        }
+        <Normal> { -0.381664 0.281930 -0.880245 }
+      }
+      <Vertex> 2378 {
+        0.528418183327 0.202834039927 2.87338995934
+        <UV>  {
+          0.198023 0.577549
+          <Tangent> { 0.909553 0.400391 0.111358 }
+          <Binormal> { -0.363777 0.663574 0.585367 }
+        }
+        <Normal> { -0.425123 0.456435 -0.781610 }
+      }
+      <Vertex> 2379 {
+        0.528418183327 0.202834039927 2.87338995934
+        <UV>  {
+          0.198023 0.577549
+          <Tangent> { 0.909553 0.400391 0.111358 }
+          <Binormal> { -0.363777 0.663574 0.585367 }
+        }
+        <Normal> { -0.425123 0.456435 -0.781610 }
+      }
+      <Vertex> 2380 {
+        0.640021324158 0.275985479355 2.92625594139
+        <UV>  {
+          0.190521 0.588206
+          <Tangent> { 0.907325 0.420370 -0.007116 }
+          <Binormal> { -0.368022 0.801385 0.416242 }
+        }
+        <Normal> { -0.381664 0.281930 -0.880245 }
+      }
+      <Vertex> 2381 {
+        0.540694177151 0.195263534784 2.87338995934
+        <UV>  {
+          0.195146 0.577947
+          <Tangent> { -0.395263 -0.916071 0.067678 }
+          <Binormal> { 0.749209 -0.340258 -0.229991 }
+        }
+        <Normal> { -0.028352 0.516160 -0.855983 }
+      }
+      <Vertex> 2382 {
+        0.540694177151 0.195263534784 2.87338995934
+        <UV>  {
+          0.195146 0.577947
+          <Tangent> { -0.395263 -0.916071 0.067678 }
+          <Binormal> { 0.749209 -0.340258 -0.229991 }
+        }
+        <Normal> { -0.028352 0.516160 -0.855983 }
+      }
+      <Vertex> 2383 {
+        0.435923486948 0.174417391419 2.83022522926
+        <UV>  {
+          0.204407 0.553621
+          <Tangent> { 0.389853 -0.918501 0.066111 }
+          <Binormal> { 0.823569 0.353136 0.049698 }
+        }
+        <Normal> { -0.102939 0.370006 -0.923276 }
+      }
+      <Vertex> 2384 {
+        0.528418183327 0.202834039927 2.87338995934
+        <UV>  {
+          0.198023 0.577549
+          <Tangent> { 0.909553 0.400391 0.111358 }
+          <Binormal> { -0.363777 0.663574 0.585367 }
+        }
+        <Normal> { -0.425123 0.456435 -0.781610 }
+      }
+      <Vertex> 2385 {
+        0.435923486948 0.174417391419 2.83022522926
+        <UV>  {
+          0.204407 0.553621
+          <Tangent> { 0.389853 -0.918501 0.066111 }
+          <Binormal> { 0.823569 0.353136 0.049698 }
+        }
+        <Normal> { -0.102939 0.370006 -0.923276 }
+      }
+      <Vertex> 2386 {
+        0.540694177151 0.195263534784 2.87338995934
+        <UV>  {
+          0.195146 0.577947
+          <Tangent> { -0.395263 -0.916071 0.067678 }
+          <Binormal> { 0.749209 -0.340258 -0.229991 }
+        }
+        <Normal> { -0.028352 0.516160 -0.855983 }
+      }
+      <Vertex> 2387 {
+        0.448272943497 0.130548939109 2.83022522926
+        <UV>  {
+          0.196561 0.551203
+          <Tangent> { 0.306951 -0.901090 0.306297 }
+          <Binormal> { 0.686216 0.318880 0.250426 }
+        }
+        <Normal> { 0.137974 0.410810 -0.901181 }
+      }
+      <Vertex> 2388 {
+        0.448272943497 0.130548939109 2.83022522926
+        <UV>  {
+          0.196561 0.551203
+          <Tangent> { 0.306951 -0.901090 0.306297 }
+          <Binormal> { 0.686216 0.318880 0.250426 }
+        }
+        <Normal> { 0.137974 0.410810 -0.901181 }
+      }
+      <Vertex> 2389 {
+        0.246315151453 0.107734665275 2.74228167534
+        <UV>  {
+          0.201895 0.505679
+          <Tangent> { -0.052655 -0.964397 0.259165 }
+          <Binormal> { 0.955907 -0.010737 0.154257 }
+        }
+        <Normal> { 0.159124 -0.015168 -0.987121 }
+      }
+      <Vertex> 2390 {
+        0.435923486948 0.174417391419 2.83022522926
+        <UV>  {
+          0.204407 0.553621
+          <Tangent> { 0.389853 -0.918501 0.066111 }
+          <Binormal> { 0.823569 0.353136 0.049698 }
+        }
+        <Normal> { -0.102939 0.370006 -0.923276 }
+      }
+      <Vertex> 2391 {
+        0.246315151453 0.107734665275 2.74228167534
+        <UV>  {
+          0.201895 0.505679
+          <Tangent> { -0.052655 -0.964397 0.259165 }
+          <Binormal> { 0.955907 -0.010737 0.154257 }
+        }
+        <Normal> { 0.159124 -0.015168 -0.987121 }
+      }
+      <Vertex> 2392 {
+        0.246315151453 0.174418032169 2.74228167534
+        <UV>  {
+          0.212037 0.504622
+          <Tangent> { -0.076483 -0.995666 -0.052919 }
+          <Binormal> { 0.992262 -0.071967 -0.080061 }
+        }
+        <Normal> { -0.080630 -0.002869 -0.996734 }
+      }
+      <Vertex> 2393 {
+        0.435923486948 0.174417391419 2.83022522926
+        <UV>  {
+          0.204407 0.553621
+          <Tangent> { 0.389853 -0.918501 0.066111 }
+          <Binormal> { 0.823569 0.353136 0.049698 }
+        }
+        <Normal> { -0.102939 0.370006 -0.923276 }
+      }
+      <Vertex> 2394 {
+        0.115919359028 0.68100976944 3.58813977242
+        <UV>  {
+          0.653292 0.893966
+          <Tangent> { 0.310953 0.861901 -0.400543 }
+          <Binormal> { 0.422430 0.064045 0.465759 }
+        }
+        <Normal> { -0.668050 -0.353862 0.654561 }
+      }
+      <Vertex> 2395 {
+        0.0699992924929 0.456511735916 3.67487764359
+        <UV>  {
+          0.675152 0.888513
+          <Tangent> { -0.507970 0.837958 -0.199480 }
+          <Binormal> { 0.563219 0.386504 0.189370 }
+        }
+        <Normal> { 0.122501 -0.574877 0.808985 }
+      }
+      <Vertex> 2396 {
+        0.248577281833 0.43816062808 3.68266606331
+        <UV>  {
+          0.689340 0.901637
+          <Tangent> { -0.994322 -0.103376 -0.025241 }
+          <Binormal> { -0.103518 0.993552 0.008739 }
+        }
+        <Normal> { -0.069277 -0.015992 0.997467 }
+      }
+      <Vertex> 2397 {
+        0.52299207449 0.335299521685 3.1245663166
+        <UV>  {
+          0.150496 0.662231
+          <Tangent> { -0.899374 -0.260912 0.350787 }
+          <Binormal> { -0.359936 0.844863 -0.294432 }
+        }
+        <Normal> { -0.018311 0.322062 0.946532 }
+      }
+      <Vertex> 2398 {
+        0.394388765097 0.174417391419 3.15314555168
+        <UV>  {
+          0.118850 0.587142
+          <Tangent> { -0.835487 0.494383 0.239891 }
+          <Binormal> { 0.404284 0.802120 -0.245030 }
+        }
+        <Normal> { 0.008759 0.288095 0.957549 }
+      }
+      <Vertex> 2399 {
+        0.516695261002 0.15232808888 3.1245663166
+        <UV>  {
+          0.148211 0.598294
+          <Tangent> { -0.838774 -0.533143 -0.110528 }
+          <Binormal> { -0.469873 0.768606 -0.141686 }
+        }
+        <Normal> { -0.504624 -0.151830 0.849849 }
+      }
+      <Vertex> 2400 {
+        0.303889602423 0.174417406321 3.18648695946
+        <UV>  {
+          0.080782 0.563270
+          <Tangent> { -0.667980 0.695491 0.264753 }
+          <Binormal> { 0.551203 0.626002 -0.253769 }
+        }
+        <Normal> { 0.015076 0.364208 0.931181 }
+      }
+      <Vertex> 2401 {
+        0.394388765097 0.174417391419 3.15314555168
+        <UV>  {
+          0.118850 0.587142
+          <Tangent> { -0.835487 0.494383 0.239891 }
+          <Binormal> { 0.404284 0.802120 -0.245030 }
+        }
+        <Normal> { 0.008759 0.288095 0.957549 }
+      }
+      <Vertex> 2402 {
+        0.52299207449 0.335299521685 3.1245663166
+        <UV>  {
+          0.150496 0.662231
+          <Tangent> { -0.899374 -0.260912 0.350787 }
+          <Binormal> { -0.359936 0.844863 -0.294432 }
+        }
+        <Normal> { -0.018311 0.322062 0.946532 }
+      }
+      <Vertex> 2403 {
+        0.624564528465 0.287345916033 3.00812077522
+        <UV>  {
+          0.182251 0.608087
+          <Tangent> { 0.753339 -0.030850 0.656908 }
+          <Binormal> { -0.319866 -0.261961 0.354519 }
+        }
+        <Normal> { -0.792932 0.503067 -0.343699 }
+      }
+      <Vertex> 2404 {
+        0.620699882507 0.348001539707 3.08552098274
+        <UV>  {
+          0.177940 0.642357
+          <Tangent> { -0.195571 -0.529294 0.825590 }
+          <Binormal> { -0.968089 -0.029380 -0.248163 }
+        }
+        <Normal> { -0.152226 0.856929 0.492386 }
+      }
+      <Vertex> 2405 {
+        0.619926929474 0.275388807058 3.08552098274
+        <UV>  {
+          0.169402 0.618041
+          <Tangent> { 0.549103 0.587765 0.594154 }
+          <Binormal> { 0.158250 -0.766255 0.611765 }
+        }
+        <Normal> { -0.878719 0.173528 0.444655 }
+      }
+      <Vertex> 2406 {
+        0.528418183327 0.202834039927 2.87338995934
+        <UV>  {
+          0.198023 0.577549
+          <Tangent> { 0.909553 0.400391 0.111358 }
+          <Binormal> { -0.363777 0.663574 0.585367 }
+        }
+        <Normal> { -0.425123 0.456435 -0.781610 }
+      }
+      <Vertex> 2407 {
+        0.620699882507 0.348001539707 3.08552098274
+        <UV>  {
+          0.177940 0.642357
+          <Tangent> { -0.195571 -0.529294 0.825590 }
+          <Binormal> { -0.968089 -0.029380 -0.248163 }
+        }
+        <Normal> { -0.152226 0.856929 0.492386 }
+      }
+      <Vertex> 2408 {
+        0.624564528465 0.287345916033 3.00812077522
+        <UV>  {
+          0.182251 0.608087
+          <Tangent> { 0.753339 -0.030850 0.656908 }
+          <Binormal> { -0.319866 -0.261961 0.354519 }
+        }
+        <Normal> { -0.792932 0.503067 -0.343699 }
+      }
+      <Vertex> 2409 {
+        0.528418183327 0.202834039927 2.87338995934
+        <UV>  {
+          0.198023 0.577549
+          <Tangent> { 0.909553 0.400391 0.111358 }
+          <Binormal> { -0.363777 0.663574 0.585367 }
+        }
+        <Normal> { -0.425123 0.456435 -0.781610 }
+      }
+      <Vertex> 2410 {
+        0.628237366676 0.39210292697 3.00812077522
+        <UV>  {
+          0.195107 0.639577
+          <Tangent> { 0.270414 -0.554822 0.786797 }
+          <Binormal> { -0.602453 -0.009518 0.200345 }
+        }
+        <Normal> { -0.105228 0.956786 -0.270974 }
+      }
+      <Vertex> 2411 {
+        0.620699882507 0.348001539707 3.08552098274
+        <UV>  {
+          0.177940 0.642357
+          <Tangent> { -0.195571 -0.529294 0.825590 }
+          <Binormal> { -0.968089 -0.029380 -0.248163 }
+        }
+        <Normal> { -0.152226 0.856929 0.492386 }
+      }
+      <Vertex> 2412 {
+        0.628237366676 0.39210292697 3.00812077522
+        <UV>  {
+          0.195107 0.639577
+          <Tangent> { 0.270414 -0.554822 0.786797 }
+          <Binormal> { -0.602453 -0.009518 0.200345 }
+        }
+        <Normal> { -0.105228 0.956786 -0.270974 }
+      }
+      <Vertex> 2413 {
+        0.528418183327 0.202834039927 2.87338995934
+        <UV>  {
+          0.198023 0.577549
+          <Tangent> { 0.909553 0.400391 0.111358 }
+          <Binormal> { -0.363777 0.663574 0.585367 }
+        }
+        <Normal> { -0.425123 0.456435 -0.781610 }
+      }
+      <Vertex> 2414 {
+        0.548749268055 0.337688684464 2.87338995934
+        <UV>  {
+          0.214599 0.604674
+          <Tangent> { 0.505080 -0.713356 0.485816 }
+          <Binormal> { 0.159341 0.304401 0.281312 }
+        }
+        <Normal> { -0.103977 0.703818 -0.702689 }
+      }
+      <Vertex> 2415 {
+        0.435923486948 0.174417391419 2.83022522926
+        <UV>  {
+          0.204407 0.553621
+          <Tangent> { 0.389853 -0.918501 0.066111 }
+          <Binormal> { 0.823569 0.353136 0.049698 }
+        }
+        <Normal> { -0.102939 0.370006 -0.923276 }
+      }
+      <Vertex> 2416 {
+        0.336557090282 0.37842682004 2.80663251877
+        <UV>  {
+          0.265923 0.542730
+          <Tangent> { 0.532069 -0.837686 0.123225 }
+          <Binormal> { 0.764447 0.502638 0.116163 }
+        }
+        <Normal> { -0.046449 0.291452 -0.955443 }
+      }
+      <Vertex> 2417 {
+        0.548749268055 0.337688684464 2.87338995934
+        <UV>  {
+          0.214599 0.604674
+          <Tangent> { 0.505080 -0.713356 0.485816 }
+          <Binormal> { 0.159341 0.304401 0.281312 }
+        }
+        <Normal> { -0.103977 0.703818 -0.702689 }
+      }
+      <Vertex> 2418 {
+        0.548749268055 0.337688684464 2.87338995934
+        <UV>  {
+          0.214599 0.604674
+          <Tangent> { 0.505080 -0.713356 0.485816 }
+          <Binormal> { 0.159341 0.304401 0.281312 }
+        }
+        <Normal> { -0.103977 0.703818 -0.702689 }
+      }
+      <Vertex> 2419 {
+        0.528418183327 0.202834039927 2.87338995934
+        <UV>  {
+          0.198023 0.577549
+          <Tangent> { 0.909553 0.400391 0.111358 }
+          <Binormal> { -0.363777 0.663574 0.585367 }
+        }
+        <Normal> { -0.425123 0.456435 -0.781610 }
+      }
+      <Vertex> 2420 {
+        0.435923486948 0.174417391419 2.83022522926
+        <UV>  {
+          0.204407 0.553621
+          <Tangent> { 0.389853 -0.918501 0.066111 }
+          <Binormal> { 0.823569 0.353136 0.049698 }
+        }
+        <Normal> { -0.102939 0.370006 -0.923276 }
+      }
+      <Vertex> 2421 {
+        0.246315151453 0.174418032169 2.74228167534
+        <UV>  {
+          0.212037 0.504622
+          <Tangent> { -0.076483 -0.995666 -0.052919 }
+          <Binormal> { 0.992262 -0.071967 -0.080061 }
+        }
+        <Normal> { -0.080630 -0.002869 -0.996734 }
+      }
+      <Vertex> 2422 {
+        0.246315166354 0.378427445889 2.77542114258
+        <UV>  {
+          0.275327 0.499141
+          <Tangent> { -0.088118 -0.995909 -0.019995 }
+          <Binormal> { 0.990866 -0.085665 -0.099976 }
+        }
+        <Normal> { -0.100375 0.000122 -0.994934 }
+      }
+      <Vertex> 2423 {
+        0.435923486948 0.174417391419 2.83022522926
+        <UV>  {
+          0.204407 0.553621
+          <Tangent> { 0.389853 -0.918501 0.066111 }
+          <Binormal> { 0.823569 0.353136 0.049698 }
+        }
+        <Normal> { -0.102939 0.370006 -0.923276 }
+      }
+      <Vertex> 2424 {
+        0.435923486948 0.174417391419 2.83022522926
+        <UV>  {
+          0.204407 0.553621
+          <Tangent> { 0.389853 -0.918501 0.066111 }
+          <Binormal> { 0.823569 0.353136 0.049698 }
+        }
+        <Normal> { -0.102939 0.370006 -0.923276 }
+      }
+      <Vertex> 2425 {
+        0.246315166354 0.378427445889 2.77542114258
+        <UV>  {
+          0.275327 0.499141
+          <Tangent> { -0.088118 -0.995909 -0.019995 }
+          <Binormal> { 0.990866 -0.085665 -0.099976 }
+        }
+        <Normal> { -0.100375 0.000122 -0.994934 }
+      }
+      <Vertex> 2426 {
+        0.336557090282 0.37842682004 2.80663251877
+        <UV>  {
+          0.265923 0.542730
+          <Tangent> { 0.532069 -0.837686 0.123225 }
+          <Binormal> { 0.764447 0.502638 0.116163 }
+        }
+        <Normal> { -0.046449 0.291452 -0.955443 }
+      }
+      <Vertex> 2427 {
+        0.619926929474 0.275388807058 3.08552098274
+        <UV>  {
+          0.169402 0.618041
+          <Tangent> { 0.549103 0.587765 0.594154 }
+          <Binormal> { 0.158250 -0.766255 0.611765 }
+        }
+        <Normal> { -0.878719 0.173528 0.444655 }
+      }
+      <Vertex> 2428 {
+        0.620699882507 0.348001539707 3.08552098274
+        <UV>  {
+          0.177940 0.642357
+          <Tangent> { -0.195571 -0.529294 0.825590 }
+          <Binormal> { -0.968089 -0.029380 -0.248163 }
+        }
+        <Normal> { -0.152226 0.856929 0.492386 }
+      }
+      <Vertex> 2429 {
+        0.516695261002 0.15232808888 3.1245663166
+        <UV>  {
+          0.148211 0.598294
+          <Tangent> { -0.838774 -0.533143 -0.110528 }
+          <Binormal> { -0.469873 0.768606 -0.141686 }
+        }
+        <Normal> { -0.504624 -0.151830 0.849849 }
+      }
+      <Vertex> 2430 {
+        0.620699882507 0.348001539707 3.08552098274
+        <UV>  {
+          0.177940 0.642357
+          <Tangent> { -0.195571 -0.529294 0.825590 }
+          <Binormal> { -0.968089 -0.029380 -0.248163 }
+        }
+        <Normal> { -0.152226 0.856929 0.492386 }
+      }
+      <Vertex> 2431 {
+        0.52299207449 0.335299521685 3.1245663166
+        <UV>  {
+          0.150496 0.662231
+          <Tangent> { -0.899374 -0.260912 0.350787 }
+          <Binormal> { -0.359936 0.844863 -0.294432 }
+        }
+        <Normal> { -0.018311 0.322062 0.946532 }
+      }
+      <Vertex> 2432 {
+        0.516695261002 0.15232808888 3.1245663166
+        <UV>  {
+          0.148211 0.598294
+          <Tangent> { -0.838774 -0.533143 -0.110528 }
+          <Binormal> { -0.469873 0.768606 -0.141686 }
+        }
+        <Normal> { -0.504624 -0.151830 0.849849 }
+      }
+      <Vertex> 2433 {
+        0.628237366676 0.39210292697 3.00812077522
+        <UV>  {
+          0.195107 0.639577
+          <Tangent> { 0.270414 -0.554822 0.786797 }
+          <Binormal> { -0.602453 -0.009518 0.200345 }
+        }
+        <Normal> { -0.105228 0.956786 -0.270974 }
+      }
+      <Vertex> 2434 {
+        0.57551163435 0.509792983532 3.08552098274
+        <UV>  {
+          0.203306 0.685512
+          <Tangent> { 0.059526 -0.732049 0.678646 }
+          <Binormal> { -0.887262 -0.259790 -0.202408 }
+        }
+        <Normal> { -0.343699 0.826472 0.445845 }
+      }
+      <Vertex> 2435 {
+        0.620699882507 0.348001539707 3.08552098274
+        <UV>  {
+          0.177940 0.642357
+          <Tangent> { -0.195571 -0.529294 0.825590 }
+          <Binormal> { -0.968089 -0.029380 -0.248163 }
+        }
+        <Normal> { -0.152226 0.856929 0.492386 }
+      }
+      <Vertex> 2436 {
+        0.548749268055 0.337688684464 2.87338995934
+        <UV>  {
+          0.214599 0.604674
+          <Tangent> { 0.505080 -0.713356 0.485816 }
+          <Binormal> { 0.159341 0.304401 0.281312 }
+        }
+        <Normal> { -0.103977 0.703818 -0.702689 }
+      }
+      <Vertex> 2437 {
+        0.57551163435 0.509792983532 3.08552098274
+        <UV>  {
+          0.203306 0.685512
+          <Tangent> { 0.059526 -0.732049 0.678646 }
+          <Binormal> { -0.887262 -0.259790 -0.202408 }
+        }
+        <Normal> { -0.343699 0.826472 0.445845 }
+      }
+      <Vertex> 2438 {
+        0.628237366676 0.39210292697 3.00812077522
+        <UV>  {
+          0.195107 0.639577
+          <Tangent> { 0.270414 -0.554822 0.786797 }
+          <Binormal> { -0.602453 -0.009518 0.200345 }
+        }
+        <Normal> { -0.105228 0.956786 -0.270974 }
+      }
+      <Vertex> 2439 {
+        0.548749268055 0.337688684464 2.87338995934
+        <UV>  {
+          0.214599 0.604674
+          <Tangent> { 0.505080 -0.713356 0.485816 }
+          <Binormal> { 0.159341 0.304401 0.281312 }
+        }
+        <Normal> { -0.103977 0.703818 -0.702689 }
+      }
+      <Vertex> 2440 {
+        0.568286180496 0.512005269527 3.00812077522
+        <UV>  {
+          0.217476 0.669373
+          <Tangent> { 0.379365 -0.612012 0.693918 }
+          <Binormal> { -0.488397 -0.142972 0.140910 }
+        }
+        <Normal> { -0.335124 0.912076 -0.236122 }
+      }
+      <Vertex> 2441 {
+        0.57551163435 0.509792983532 3.08552098274
+        <UV>  {
+          0.203306 0.685512
+          <Tangent> { 0.059526 -0.732049 0.678646 }
+          <Binormal> { -0.887262 -0.259790 -0.202408 }
+        }
+        <Normal> { -0.343699 0.826472 0.445845 }
+      }
+      <Vertex> 2442 {
+        0.568286180496 0.512005269527 3.00812077522
+        <UV>  {
+          0.217476 0.669373
+          <Tangent> { 0.379365 -0.612012 0.693918 }
+          <Binormal> { -0.488397 -0.142972 0.140910 }
+        }
+        <Normal> { -0.335124 0.912076 -0.236122 }
+      }
+      <Vertex> 2443 {
+        0.548749268055 0.337688684464 2.87338995934
+        <UV>  {
+          0.214599 0.604674
+          <Tangent> { 0.505080 -0.713356 0.485816 }
+          <Binormal> { 0.159341 0.304401 0.281312 }
+        }
+        <Normal> { -0.103977 0.703818 -0.702689 }
+      }
+      <Vertex> 2444 {
+        0.497726976871 0.516266703606 2.85808324814
+        <UV>  {
+          0.249141 0.635703
+          <Tangent> { 0.752005 -0.603562 0.264955 }
+          <Binormal> { 0.285075 0.429279 0.168777 }
+        }
+        <Normal> { -0.416211 0.558489 -0.717490 }
+      }
+      <Vertex> 2445 {
+        0.336557090282 0.37842682004 2.80663251877
+        <UV>  {
+          0.265923 0.542730
+          <Tangent> { 0.532069 -0.837686 0.123225 }
+          <Binormal> { 0.764447 0.502638 0.116163 }
+        }
+        <Normal> { -0.046449 0.291452 -0.955443 }
+      }
+      <Vertex> 2446 {
+        0.305864006281 0.455159544945 2.80663251877
+        <UV>  {
+          0.290311 0.566381
+          <Tangent> { 0.829394 -0.554204 0.070455 }
+          <Binormal> { 0.520327 0.790106 0.089747 }
+        }
+        <Normal> { -0.152745 0.210273 -0.965606 }
+      }
+      <Vertex> 2447 {
+        0.497726976871 0.516266703606 2.85808324814
+        <UV>  {
+          0.249141 0.635703
+          <Tangent> { 0.752005 -0.603562 0.264955 }
+          <Binormal> { 0.285075 0.429279 0.168777 }
+        }
+        <Normal> { -0.416211 0.558489 -0.717490 }
+      }
+      <Vertex> 2448 {
+        0.497726976871 0.516266703606 2.85808324814
+        <UV>  {
+          0.249141 0.635703
+          <Tangent> { 0.752005 -0.603562 0.264955 }
+          <Binormal> { 0.285075 0.429279 0.168777 }
+        }
+        <Normal> { -0.416211 0.558489 -0.717490 }
+      }
+      <Vertex> 2449 {
+        0.548749268055 0.337688684464 2.87338995934
+        <UV>  {
+          0.214599 0.604674
+          <Tangent> { 0.505080 -0.713356 0.485816 }
+          <Binormal> { 0.159341 0.304401 0.281312 }
+        }
+        <Normal> { -0.103977 0.703818 -0.702689 }
+      }
+      <Vertex> 2450 {
+        0.336557090282 0.37842682004 2.80663251877
+        <UV>  {
+          0.265923 0.542730
+          <Tangent> { 0.532069 -0.837686 0.123225 }
+          <Binormal> { 0.764447 0.502638 0.116163 }
+        }
+        <Normal> { -0.046449 0.291452 -0.955443 }
+      }
+      <Vertex> 2451 {
+        0.620699882507 0.348001539707 3.08552098274
+        <UV>  {
+          0.177940 0.642357
+          <Tangent> { -0.195571 -0.529294 0.825590 }
+          <Binormal> { -0.968089 -0.029380 -0.248163 }
+        }
+        <Normal> { -0.152226 0.856929 0.492386 }
+      }
+      <Vertex> 2452 {
+        0.57551163435 0.509792983532 3.08552098274
+        <UV>  {
+          0.203306 0.685512
+          <Tangent> { 0.059526 -0.732049 0.678646 }
+          <Binormal> { -0.887262 -0.259790 -0.202408 }
+        }
+        <Normal> { -0.343699 0.826472 0.445845 }
+      }
+      <Vertex> 2453 {
+        0.52299207449 0.335299521685 3.1245663166
+        <UV>  {
+          0.150496 0.662231
+          <Tangent> { -0.899374 -0.260912 0.350787 }
+          <Binormal> { -0.359936 0.844863 -0.294432 }
+        }
+        <Normal> { -0.018311 0.322062 0.946532 }
+      }
+      <Vertex> 2454 {
+        0.57551163435 0.509792983532 3.08552098274
+        <UV>  {
+          0.203306 0.685512
+          <Tangent> { 0.059526 -0.732049 0.678646 }
+          <Binormal> { -0.887262 -0.259790 -0.202408 }
+        }
+        <Normal> { -0.343699 0.826472 0.445845 }
+      }
+      <Vertex> 2455 {
+        0.451560884714 0.513877511024 3.1245663166
+        <UV>  {
+          0.187527 0.733756
+          <Tangent> { -0.355966 -0.888976 0.288114 }
+          <Binormal> { -0.918775 0.280360 -0.270097 }
+        }
+        <Normal> { -0.182592 0.302774 0.935392 }
+      }
+      <Vertex> 2456 {
+        0.52299207449 0.335299521685 3.1245663166
+        <UV>  {
+          0.150496 0.662231
+          <Tangent> { -0.899374 -0.260912 0.350787 }
+          <Binormal> { -0.359936 0.844863 -0.294432 }
+        }
+        <Normal> { -0.018311 0.322062 0.946532 }
+      }
+      <Vertex> 2457 {
+        0.568286180496 0.512005269527 3.00812077522
+        <UV>  {
+          0.217476 0.669373
+          <Tangent> { 0.379365 -0.612012 0.693918 }
+          <Binormal> { -0.488397 -0.142972 0.140910 }
+        }
+        <Normal> { -0.335124 0.912076 -0.236122 }
+      }
+      <Vertex> 2458 {
+        0.496427118778 0.642450928688 3.08041882515
+        <UV>  {
+          0.235020 0.729612
+          <Tangent> { 0.357293 -0.720703 0.594078 }
+          <Binormal> { -0.644591 -0.462836 -0.173815 }
+        }
+        <Normal> { -0.608570 0.741081 0.283517 }
+      }
+      <Vertex> 2459 {
+        0.57551163435 0.509792983532 3.08552098274
+        <UV>  {
+          0.203306 0.685512
+          <Tangent> { 0.059526 -0.732049 0.678646 }
+          <Binormal> { -0.887262 -0.259790 -0.202408 }
+        }
+        <Normal> { -0.343699 0.826472 0.445845 }
+      }
+      <Vertex> 2460 {
+        0.497726976871 0.516266703606 2.85808324814
+        <UV>  {
+          0.249141 0.635703
+          <Tangent> { 0.752005 -0.603562 0.264955 }
+          <Binormal> { 0.285075 0.429279 0.168777 }
+        }
+        <Normal> { -0.416211 0.558489 -0.717490 }
+      }
+      <Vertex> 2461 {
+        0.496427118778 0.642450928688 3.08041882515
+        <UV>  {
+          0.235020 0.729612
+          <Tangent> { 0.357293 -0.720703 0.594078 }
+          <Binormal> { -0.644591 -0.462836 -0.173815 }
+        }
+        <Normal> { -0.608570 0.741081 0.283517 }
+      }
+      <Vertex> 2462 {
+        0.568286180496 0.512005269527 3.00812077522
+        <UV>  {
+          0.217476 0.669373
+          <Tangent> { 0.379365 -0.612012 0.693918 }
+          <Binormal> { -0.488397 -0.142972 0.140910 }
+        }
+        <Normal> { -0.335124 0.912076 -0.236122 }
+      }
+      <Vertex> 2463 {
+        0.497726976871 0.516266703606 2.85808324814
+        <UV>  {
+          0.249141 0.635703
+          <Tangent> { 0.752005 -0.603562 0.264955 }
+          <Binormal> { 0.285075 0.429279 0.168777 }
+        }
+        <Normal> { -0.416211 0.558489 -0.717490 }
+      }
+      <Vertex> 2464 {
+        0.438478350639 0.642112135887 3.00301837921
+        <UV>  {
+          0.259400 0.708814
+          <Tangent> { 0.826139 -0.537667 0.168549 }
+          <Binormal> { 0.124808 0.212414 0.065851 }
+        }
+        <Normal> { -0.727592 0.553240 -0.405560 }
+      }
+      <Vertex> 2465 {
+        0.496427118778 0.642450928688 3.08041882515
+        <UV>  {
+          0.235020 0.729612
+          <Tangent> { 0.357293 -0.720703 0.594078 }
+          <Binormal> { -0.644591 -0.462836 -0.173815 }
+        }
+        <Normal> { -0.608570 0.741081 0.283517 }
+      }
+      <Vertex> 2466 {
+        0.438478350639 0.642112135887 3.00301837921
+        <UV>  {
+          0.259400 0.708814
+          <Tangent> { 0.826139 -0.537667 0.168549 }
+          <Binormal> { 0.124808 0.212414 0.065851 }
+        }
+        <Normal> { -0.727592 0.553240 -0.405560 }
+      }
+      <Vertex> 2467 {
+        0.497726976871 0.516266703606 2.85808324814
+        <UV>  {
+          0.249141 0.635703
+          <Tangent> { 0.752005 -0.603562 0.264955 }
+          <Binormal> { 0.285075 0.429279 0.168777 }
+        }
+        <Normal> { -0.416211 0.558489 -0.717490 }
+      }
+      <Vertex> 2468 {
+        0.322824299335 0.648924648762 2.85298109055
+        <UV>  {
+          0.280776 0.638816
+          <Tangent> { 0.809537 -0.585503 0.042861 }
+          <Binormal> { 0.420914 0.584344 0.032422 }
+        }
+        <Normal> { -0.517014 0.413984 -0.749199 }
+      }
+      <Vertex> 2469 {
+        0.322824299335 0.648924648762 2.85298109055
+        <UV>  {
+          0.280776 0.638816
+          <Tangent> { 0.809537 -0.585503 0.042861 }
+          <Binormal> { 0.420914 0.584344 0.032422 }
+        }
+        <Normal> { -0.517014 0.413984 -0.749199 }
+      }
+      <Vertex> 2470 {
+        0.497726976871 0.516266703606 2.85808324814
+        <UV>  {
+          0.249141 0.635703
+          <Tangent> { 0.752005 -0.603562 0.264955 }
+          <Binormal> { 0.285075 0.429279 0.168777 }
+        }
+        <Normal> { -0.416211 0.558489 -0.717490 }
+      }
+      <Vertex> 2471 {
+        0.305864006281 0.455159544945 2.80663251877
+        <UV>  {
+          0.290311 0.566381
+          <Tangent> { 0.829394 -0.554204 0.070455 }
+          <Binormal> { 0.520327 0.790106 0.089747 }
+        }
+        <Normal> { -0.152745 0.210273 -0.965606 }
+      }
+      <Vertex> 2472 {
+        0.57551163435 0.509792983532 3.08552098274
+        <UV>  {
+          0.203306 0.685512
+          <Tangent> { 0.059526 -0.732049 0.678646 }
+          <Binormal> { -0.887262 -0.259790 -0.202408 }
+        }
+        <Normal> { -0.343699 0.826472 0.445845 }
+      }
+      <Vertex> 2473 {
+        0.496427118778 0.642450928688 3.08041882515
+        <UV>  {
+          0.235020 0.729612
+          <Tangent> { 0.357293 -0.720703 0.594078 }
+          <Binormal> { -0.644591 -0.462836 -0.173815 }
+        }
+        <Normal> { -0.608570 0.741081 0.283517 }
+      }
+      <Vertex> 2474 {
+        0.451560884714 0.513877511024 3.1245663166
+        <UV>  {
+          0.187527 0.733756
+          <Tangent> { -0.355966 -0.888976 0.288114 }
+          <Binormal> { -0.918775 0.280360 -0.270097 }
+        }
+        <Normal> { -0.182592 0.302774 0.935392 }
+      }
+      <Vertex> 2475 {
+        0.496427118778 0.642450928688 3.08041882515
+        <UV>  {
+          0.235020 0.729612
+          <Tangent> { 0.357293 -0.720703 0.594078 }
+          <Binormal> { -0.644591 -0.462836 -0.173815 }
+        }
+        <Normal> { -0.608570 0.741081 0.283517 }
+      }
+      <Vertex> 2476 {
+        0.375027477741 0.646535456181 3.11946415901
+        <UV>  {
+          0.222110 0.785409
+          <Tangent> { -0.256099 -0.920647 0.294657 }
+          <Binormal> { -0.944632 0.175237 -0.273499 }
+        }
+        <Normal> { -0.212043 0.305673 0.928220 }
+      }
+      <Vertex> 2477 {
+        0.451560884714 0.513877511024 3.1245663166
+        <UV>  {
+          0.187527 0.733756
+          <Tangent> { -0.355966 -0.888976 0.288114 }
+          <Binormal> { -0.918775 0.280360 -0.270097 }
+        }
+        <Normal> { -0.182592 0.302774 0.935392 }
+      }
+      <Vertex> 2478 {
+        0.188740685582 0.107734672725 3.18648695946
+        <UV>  {
+          0.106627 0.482697
+          <Tangent> { 0.322764 0.670675 0.667846 }
+          <Binormal> { 0.814868 0.027294 -0.421228 }
+        }
+        <Normal> { 0.428938 -0.413770 0.802972 }
+      }
+      <Vertex> 2479 {
+        0.246315151453 0.0505775026977 3.13885521889
+        <UV>  {
+          0.126562 0.510330
+          <Tangent> { -0.026653 0.443586 0.895835 }
+          <Binormal> { 0.229115 0.789216 -0.383976 }
+        }
+        <Normal> { 0.866115 -0.008301 0.499741 }
+      }
+      <Vertex> 2480 {
+        0.246315151453 0.107734665275 3.21506476402
+        <UV>  {
+          0.100504 0.510874
+          <Tangent> { -0.018839 0.812355 0.582859 }
+          <Binormal> { 0.720327 0.286140 -0.375522 }
+        }
+        <Normal> { 0.462264 0.000000 0.886715 }
+      }
+      <Vertex> 2481 {
+        0.188740685582 0.107734672725 3.18648695946
+        <UV>  {
+          0.106627 0.482697
+          <Tangent> { 0.322764 0.670675 0.667846 }
+          <Binormal> { 0.814868 0.027294 -0.421228 }
+        }
+        <Normal> { 0.428938 -0.413770 0.802972 }
+      }
+      <Vertex> 2482 {
+        0.103004932404 0.0709864199162 3.07217264175
+        <UV>  {
+          0.143569 0.467275
+          <Tangent> { 0.457945 0.386161 0.800728 }
+          <Binormal> { 0.406395 0.408345 -0.429351 }
+        }
+        <Normal> { 0.811274 -0.253456 0.526841 }
+      }
+      <Vertex> 2483 {
+        0.246315151453 0.0505775026977 3.13885521889
+        <UV>  {
+          0.126562 0.510330
+          <Tangent> { -0.026653 0.443586 0.895835 }
+          <Binormal> { 0.229115 0.789216 -0.383976 }
+        }
+        <Normal> { 0.866115 -0.008301 0.499741 }
+      }
+      <Vertex> 2484 {
+        0.188740685582 0.107734672725 3.18648695946
+        <UV>  {
+          0.106627 0.482697
+          <Tangent> { 0.322764 0.670675 0.667846 }
+          <Binormal> { 0.814868 0.027294 -0.421228 }
+        }
+        <Normal> { 0.428938 -0.413770 0.802972 }
+      }
+      <Vertex> 2485 {
+        0.0982415303588 0.128143593669 3.15314555168
+        <UV>  {
+          0.125321 0.449419
+          <Tangent> { 0.809371 0.494254 0.317225 }
+          <Binormal> { 0.551048 -0.697468 -0.319256 }
+        }
+        <Normal> { 0.202399 -0.270852 0.941069 }
+      }
+      <Vertex> 2486 {
+        0.103004932404 0.0709864199162 3.07217264175
+        <UV>  {
+          0.143569 0.467275
+          <Tangent> { 0.457945 0.386161 0.800728 }
+          <Binormal> { 0.406395 0.408345 -0.429351 }
+        }
+        <Normal> { 0.811274 -0.253456 0.526841 }
+      }
+      <Vertex> 2487 {
+        0.103004932404 0.0709864199162 3.07217264175
+        <UV>  {
+          0.143569 0.467275
+          <Tangent> { 0.457945 0.386161 0.800728 }
+          <Binormal> { 0.406395 0.408345 -0.429351 }
+        }
+        <Normal> { 0.811274 -0.253456 0.526841 }
+      }
+      <Vertex> 2488 {
+        0.0982415303588 0.128143593669 3.15314555168
+        <UV>  {
+          0.125321 0.449419
+          <Tangent> { 0.809371 0.494254 0.317225 }
+          <Binormal> { 0.551048 -0.697468 -0.319256 }
+        }
+        <Normal> { 0.202399 -0.270852 0.941069 }
+      }
+      <Vertex> 2489 {
+        -0.0351251885295 0.128143593669 3.1436188221
+        <UV>  {
+          0.147591 0.428733
+          <Tangent> { 0.986866 -0.139031 0.082258 }
+          <Binormal> { -0.127748 -0.887839 0.032010 }
+        }
+        <Normal> { 0.366497 -0.019196 0.930204 }
+      }
+      <Vertex> 2490 {
+        -0.0494141727686 0.0709864273667 2.96738386154
+        <UV>  {
+          0.168926 0.447105
+          <Tangent> { 0.216595 -0.289159 0.932456 }
+          <Binormal> { 0.464893 0.832329 0.150122 }
+        }
+        <Normal> { 0.876217 -0.476669 -0.070620 }
+      }
+      <Vertex> 2491 {
+        0.103004932404 0.0709864199162 3.07217264175
+        <UV>  {
+          0.143569 0.467275
+          <Tangent> { 0.457945 0.386161 0.800728 }
+          <Binormal> { 0.406395 0.408345 -0.429351 }
+        }
+        <Normal> { 0.811274 -0.253456 0.526841 }
+      }
+      <Vertex> 2492 {
+        -0.0903740003705 0.104302883148 3.09122490883
+        <UV>  {
+          0.160037 0.432341
+          <Tangent> { 0.155314 0.087103 0.984018 }
+          <Binormal> { 0.641314 0.702365 -0.163395 }
+        }
+        <Normal> { 0.746055 -0.633625 0.204535 }
+      }
+      <Vertex> 2493 {
+        0.103004932404 0.0709864199162 3.07217264175
+        <UV>  {
+          0.143569 0.467275
+          <Tangent> { 0.457945 0.386161 0.800728 }
+          <Binormal> { 0.406395 0.408345 -0.429351 }
+        }
+        <Normal> { 0.811274 -0.253456 0.526841 }
+      }
+      <Vertex> 2494 {
+        -0.0351251885295 0.128143593669 3.1436188221
+        <UV>  {
+          0.147591 0.428733
+          <Tangent> { 0.986866 -0.139031 0.082258 }
+          <Binormal> { -0.127748 -0.887839 0.032010 }
+        }
+        <Normal> { 0.366497 -0.019196 0.930204 }
+      }
+      <Vertex> 2495 {
+        -0.0903740003705 0.104302883148 3.09122490883
+        <UV>  {
+          0.160037 0.432341
+          <Tangent> { 0.155314 0.087103 0.984018 }
+          <Binormal> { 0.641314 0.702365 -0.163395 }
+        }
+        <Normal> { 0.746055 -0.633625 0.204535 }
+      }
+      <Vertex> 2496 {
+        -0.0351251885295 0.128143593669 3.1436188221
+        <UV>  {
+          0.147591 0.428733
+          <Tangent> { 0.986866 -0.139031 0.082258 }
+          <Binormal> { -0.127748 -0.887839 0.032010 }
+        }
+        <Normal> { 0.366497 -0.019196 0.930204 }
+      }
+      <Vertex> 2497 {
+        -0.215434640646 0.289806753397 3.18197512627
+        <UV>  {
+          0.158853 0.417806
+          <Tangent> { 0.443534 0.038975 0.895410 }
+          <Binormal> { 0.608792 -0.703812 -0.270925 }
+        }
+        <Normal> { -0.510483 -0.655690 0.556261 }
+      }
+      <Vertex> 2498 {
+        -0.0903740003705 0.104302883148 3.09122490883
+        <UV>  {
+          0.160037 0.432341
+          <Tangent> { 0.155314 0.087103 0.984018 }
+          <Binormal> { 0.641314 0.702365 -0.163395 }
+        }
+        <Normal> { 0.746055 -0.633625 0.204535 }
+      }
+      <Vertex> 2499 {
+        -0.148146525025 0.250958323479 3.08552098274
+        <UV>  {
+          0.165540 0.412132
+          <Tangent> { 0.442449 -0.118358 0.888949 }
+          <Binormal> { 0.817812 0.176257 -0.383575 }
+        }
+        <Normal> { 0.284310 -0.942991 0.172857 }
+      }
+      <Vertex> 2500 {
+        -0.0903740003705 0.104302883148 3.09122490883
+        <UV>  {
+          0.160037 0.432341
+          <Tangent> { 0.155314 0.087103 0.984018 }
+          <Binormal> { 0.641314 0.702365 -0.163395 }
+        }
+        <Normal> { 0.746055 -0.633625 0.204535 }
+      }
+      <Vertex> 2501 {
+        -0.215434640646 0.289806753397 3.18197512627
+        <UV>  {
+          0.158853 0.417806
+          <Tangent> { 0.443534 0.038975 0.895410 }
+          <Binormal> { 0.608792 -0.703812 -0.270925 }
+        }
+        <Normal> { -0.510483 -0.655690 0.556261 }
+      }
+      <Vertex> 2502 {
+        -0.170833751559 0.264056444168 3.01764750481
+        <UV>  {
+          0.173775 0.413770
+          <Tangent> { -0.754117 0.172780 0.633604 }
+          <Binormal> { 0.368153 -0.680523 0.623751 }
+        }
+        <Normal> { -0.622517 -0.684500 -0.379376 }
+      }
+      <Vertex> 2503 {
+        -0.148146525025 0.250958323479 3.08552098274
+        <UV>  {
+          0.165540 0.412132
+          <Tangent> { 0.442449 -0.118358 0.888949 }
+          <Binormal> { 0.817812 0.176257 -0.383575 }
+        }
+        <Normal> { 0.284310 -0.942991 0.172857 }
+      }
+      <Vertex> 2504 {
+        -0.249078705907 0.309231609106 3.08016347885
+        <UV>  {
+          0.171370 0.412411
+          <Tangent> { -0.659084 0.342121 0.669747 }
+          <Binormal> { 0.451886 0.598466 0.138983 }
+        }
+        <Normal> { -0.073000 -0.172979 0.982208 }
+      }
+      <Vertex> 2505 {
+        -0.170833751559 0.264056444168 3.01764750481
+        <UV>  {
+          0.173775 0.413770
+          <Tangent> { -0.754117 0.172780 0.633604 }
+          <Binormal> { 0.368153 -0.680523 0.623751 }
+        }
+        <Normal> { -0.622517 -0.684500 -0.379376 }
+      }
+      <Vertex> 2506 {
+        -0.142717927694 0.247824236751 2.95176696777
+        <UV>  {
+          0.179556 0.424285
+          <Tangent> { -0.714103 -0.098176 0.693122 }
+          <Binormal> { 0.537585 -0.680851 0.457419 }
+        }
+        <Normal> { -0.287484 -0.680074 -0.674398 }
+      }
+      <Vertex> 2507 {
+        -0.0714256241918 0.128143593669 2.88359451294
+        <UV>  {
+          0.182799 0.442976
+          <Tangent> { -0.623465 -0.603921 0.496559 }
+          <Binormal> { 0.772376 -0.447570 0.425433 }
+        }
+        <Normal> { 0.127384 -0.558977 -0.819330 }
+      }
+      <Vertex> 2508 {
+        -0.0714256241918 0.128143593669 2.88359451294
+        <UV>  {
+          0.182799 0.442976
+          <Tangent> { -0.623465 -0.603921 0.496559 }
+          <Binormal> { 0.772376 -0.447570 0.425433 }
+        }
+        <Normal> { 0.127384 -0.558977 -0.819330 }
+      }
+      <Vertex> 2509 {
+        -0.132877200842 0.176142662764 2.92451691628
+        <UV>  {
+          0.177029 0.431948
+          <Tangent> { -0.208610 -0.397606 0.893527 }
+          <Binormal> { 0.784084 0.458505 0.387086 }
+        }
+        <Normal> { 0.596667 -0.718314 -0.357768 }
+      }
+      <Vertex> 2510 {
+        -0.170833751559 0.264056444168 3.01764750481
+        <UV>  {
+          0.173775 0.413770
+          <Tangent> { -0.754117 0.172780 0.633604 }
+          <Binormal> { 0.368153 -0.680523 0.623751 }
+        }
+        <Normal> { -0.622517 -0.684500 -0.379376 }
+      }
+      <Vertex> 2511 {
+        -0.170833751559 0.264056444168 3.01764750481
+        <UV>  {
+          0.173775 0.413770
+          <Tangent> { -0.754117 0.172780 0.633604 }
+          <Binormal> { 0.368153 -0.680523 0.623751 }
+        }
+        <Normal> { -0.622517 -0.684500 -0.379376 }
+      }
+      <Vertex> 2512 {
+        -0.132877200842 0.176142662764 2.92451691628
+        <UV>  {
+          0.177029 0.431948
+          <Tangent> { -0.208610 -0.397606 0.893527 }
+          <Binormal> { 0.784084 0.458505 0.387086 }
+        }
+        <Normal> { 0.596667 -0.718314 -0.357768 }
+      }
+      <Vertex> 2513 {
+        -0.170001640916 0.197576761246 3.0102519989
+        <UV>  {
+          0.171338 0.422852
+          <Tangent> { 0.164815 -0.385476 0.907879 }
+          <Binormal> { 0.840941 0.251358 -0.045939 }
+        }
+        <Normal> { 0.289102 -0.954894 0.067415 }
+      }
+      <Vertex> 2514 {
+        -0.148146525025 0.250958323479 3.08552098274
+        <UV>  {
+          0.165540 0.412132
+          <Tangent> { 0.442449 -0.118358 0.888949 }
+          <Binormal> { 0.817812 0.176257 -0.383575 }
+        }
+        <Normal> { 0.284310 -0.942991 0.172857 }
+      }
+      <Vertex> 2515 {
+        -0.170833751559 0.264056444168 3.01764750481
+        <UV>  {
+          0.173775 0.413770
+          <Tangent> { -0.754117 0.172780 0.633604 }
+          <Binormal> { 0.368153 -0.680523 0.623751 }
+        }
+        <Normal> { -0.622517 -0.684500 -0.379376 }
+      }
+      <Vertex> 2516 {
+        -0.170001640916 0.197576761246 3.0102519989
+        <UV>  {
+          0.171338 0.422852
+          <Tangent> { 0.164815 -0.385476 0.907879 }
+          <Binormal> { 0.840941 0.251358 -0.045939 }
+        }
+        <Normal> { 0.289102 -0.954894 0.067415 }
+      }
+      <Vertex> 2517 {
+        -0.170001640916 0.197576761246 3.0102519989
+        <UV>  {
+          0.171338 0.422852
+          <Tangent> { 0.164815 -0.385476 0.907879 }
+          <Binormal> { 0.840941 0.251358 -0.045939 }
+        }
+        <Normal> { 0.289102 -0.954894 0.067415 }
+      }
+      <Vertex> 2518 {
+        -0.0903740003705 0.104302883148 3.09122490883
+        <UV>  {
+          0.160037 0.432341
+          <Tangent> { 0.155314 0.087103 0.984018 }
+          <Binormal> { 0.641314 0.702365 -0.163395 }
+        }
+        <Normal> { 0.746055 -0.633625 0.204535 }
+      }
+      <Vertex> 2519 {
+        -0.148146525025 0.250958323479 3.08552098274
+        <UV>  {
+          0.165540 0.412132
+          <Tangent> { 0.442449 -0.118358 0.888949 }
+          <Binormal> { 0.817812 0.176257 -0.383575 }
+        }
+        <Normal> { 0.284310 -0.942991 0.172857 }
+      }
+      <Vertex> 2520 {
+        -0.132877200842 0.176142662764 2.92451691628
+        <UV>  {
+          0.177029 0.431948
+          <Tangent> { -0.208610 -0.397606 0.893527 }
+          <Binormal> { 0.784084 0.458505 0.387086 }
+        }
+        <Normal> { 0.596667 -0.718314 -0.357768 }
+      }
+      <Vertex> 2521 {
+        -0.0903740003705 0.104302883148 3.09122490883
+        <UV>  {
+          0.160037 0.432341
+          <Tangent> { 0.155314 0.087103 0.984018 }
+          <Binormal> { 0.641314 0.702365 -0.163395 }
+        }
+        <Normal> { 0.746055 -0.633625 0.204535 }
+      }
+      <Vertex> 2522 {
+        -0.170001640916 0.197576761246 3.0102519989
+        <UV>  {
+          0.171338 0.422852
+          <Tangent> { 0.164815 -0.385476 0.907879 }
+          <Binormal> { 0.840941 0.251358 -0.045939 }
+        }
+        <Normal> { 0.289102 -0.954894 0.067415 }
+      }
+      <Vertex> 2523 {
+        -0.0903740003705 0.104302883148 3.09122490883
+        <UV>  {
+          0.160037 0.432341
+          <Tangent> { 0.155314 0.087103 0.984018 }
+          <Binormal> { 0.641314 0.702365 -0.163395 }
+        }
+        <Normal> { 0.746055 -0.633625 0.204535 }
+      }
+      <Vertex> 2524 {
+        -0.132877200842 0.176142662764 2.92451691628
+        <UV>  {
+          0.177029 0.431948
+          <Tangent> { -0.208610 -0.397606 0.893527 }
+          <Binormal> { 0.784084 0.458505 0.387086 }
+        }
+        <Normal> { 0.596667 -0.718314 -0.357768 }
+      }
+      <Vertex> 2525 {
+        -0.0494141727686 0.0709864273667 2.96738386154
+        <UV>  {
+          0.168926 0.447105
+          <Tangent> { 0.216595 -0.289159 0.932456 }
+          <Binormal> { 0.464893 0.832329 0.150122 }
+        }
+        <Normal> { 0.876217 -0.476669 -0.070620 }
+      }
+      <Vertex> 2526 {
+        -0.0714256241918 0.128143593669 2.88359451294
+        <UV>  {
+          0.182799 0.442976
+          <Tangent> { -0.623465 -0.603921 0.496559 }
+          <Binormal> { 0.772376 -0.447570 0.425433 }
+        }
+        <Normal> { 0.127384 -0.558977 -0.819330 }
+      }
+      <Vertex> 2527 {
+        0.0414001382887 0.128143593669 2.84042978287
+        <UV>  {
+          0.191494 0.461505
+          <Tangent> { -0.368088 -0.841554 0.395346 }
+          <Binormal> { 0.906365 -0.240095 0.332796 }
+        }
+        <Normal> { 0.222083 -0.396374 -0.890805 }
+      }
+      <Vertex> 2528 {
+        0.0934787392616 0.0709864199162 2.83878040314
+        <UV>  {
+          0.186814 0.475295
+          <Tangent> { -0.175462 -0.480604 0.859205 }
+          <Binormal> { 0.607900 0.552586 0.433236 }
+        }
+        <Normal> { 0.748039 -0.420179 -0.513688 }
+      }
+      <Vertex> 2529 {
+        0.0414001382887 0.128143593669 2.84042978287
+        <UV>  {
+          0.191494 0.461505
+          <Tangent> { -0.368088 -0.841554 0.395346 }
+          <Binormal> { 0.906365 -0.240095 0.332796 }
+        }
+        <Normal> { 0.222083 -0.396374 -0.890805 }
+      }
+      <Vertex> 2530 {
+        0.246315151453 0.107734665275 2.74228167534
+        <UV>  {
+          0.201895 0.505679
+          <Tangent> { -0.052655 -0.964397 0.259165 }
+          <Binormal> { 0.955907 -0.010737 0.154257 }
+        }
+        <Normal> { 0.159124 -0.015168 -0.987121 }
+      }
+      <Vertex> 2531 {
+        0.246315151453 0.0505775026977 2.7768599987
+        <UV>  {
+          0.192803 0.506492
+          <Tangent> { -0.021776 -0.852687 0.521968 }
+          <Binormal> { 0.758463 0.232961 0.412207 }
+        }
+        <Normal> { 0.482833 -0.023041 -0.875393 }
+      }
+      <Vertex> 2532 {
+        0.246315151453 0.0505775026977 2.7768599987
+        <UV>  {
+          0.192803 0.506492
+          <Tangent> { -0.021776 -0.852687 0.521968 }
+          <Binormal> { 0.758463 0.232961 0.412207 }
+        }
+        <Normal> { 0.482833 -0.023041 -0.875393 }
+      }
+      <Vertex> 2533 {
+        0.0934787392616 0.0709864199162 2.83878040314
+        <UV>  {
+          0.186814 0.475295
+          <Tangent> { -0.175462 -0.480604 0.859205 }
+          <Binormal> { 0.607900 0.552586 0.433236 }
+        }
+        <Normal> { 0.748039 -0.420179 -0.513688 }
+      }
+      <Vertex> 2534 {
+        0.0414001382887 0.128143593669 2.84042978287
+        <UV>  {
+          0.191494 0.461505
+          <Tangent> { -0.368088 -0.841554 0.395346 }
+          <Binormal> { 0.906365 -0.240095 0.332796 }
+        }
+        <Normal> { 0.222083 -0.396374 -0.890805 }
+      }
+      <Vertex> 2535 {
+        0.0934787392616 0.0709864199162 2.83878040314
+        <UV>  {
+          0.186814 0.475295
+          <Tangent> { -0.175462 -0.480604 0.859205 }
+          <Binormal> { 0.607900 0.552586 0.433236 }
+        }
+        <Normal> { 0.748039 -0.420179 -0.513688 }
+      }
+      <Vertex> 2536 {
+        -0.132877200842 0.176142662764 2.92451691628
+        <UV>  {
+          0.177029 0.431948
+          <Tangent> { -0.208610 -0.397606 0.893527 }
+          <Binormal> { 0.784084 0.458505 0.387086 }
+        }
+        <Normal> { 0.596667 -0.718314 -0.357768 }
+      }
+      <Vertex> 2537 {
+        -0.0714256241918 0.128143593669 2.88359451294
+        <UV>  {
+          0.182799 0.442976
+          <Tangent> { -0.623465 -0.603921 0.496559 }
+          <Binormal> { 0.772376 -0.447570 0.425433 }
+        }
+        <Normal> { 0.127384 -0.558977 -0.819330 }
+      }
+      <Vertex> 2538 {
+        0.246315136552 0.0267617050558 2.79591226578
+        <UV>  {
+          0.206384 0.456011
+          <Tangent> { 0.015640 0.109232 -0.993893 }
+          <Binormal> { -0.051962 -0.902765 -0.100034 }
+        }
+        <Normal> { 0.914670 -0.007874 -0.404065 }
+      }
+      <Vertex> 2539 {
+        0.245897844434 0.0267617050558 2.95785832405
+        <UV>  {
+          0.199542 0.539441
+          <Tangent> { 0.018105 -0.998835 0.044742 }
+          <Binormal> { -0.032811 -0.000662 -0.001501 }
+        }
+        <Normal> { -0.019623 0.999725 -0.011933 }
+      }
+      <Vertex> 2540 {
+        0.246315136552 0.0172355119139 2.90070104599
+        <UV>  {
+          0.196853 0.508952
+          <Tangent> { 0.013460 -0.993511 0.112941 }
+          <Binormal> { 0.540917 0.102060 0.833328 }
+        }
+        <Normal> { 0.838771 0.000000 -0.544450 }
+      }
+      <Vertex> 2541 {
+        0.246315136552 0.0267617050558 2.79591226578
+        <UV>  {
+          0.188569 0.506845
+          <Tangent> { -0.050200 -0.398413 0.915831 }
+          <Binormal> { 0.168196 0.817400 0.364812 }
+        }
+        <Normal> { 0.914670 -0.007874 -0.404065 }
+      }
+      <Vertex> 2542 {
+        0.0934787392616 0.0709864199162 2.83878040314
+        <UV>  {
+          0.186814 0.475295
+          <Tangent> { -0.175462 -0.480604 0.859205 }
+          <Binormal> { 0.607900 0.552586 0.433236 }
+        }
+        <Normal> { 0.748039 -0.420179 -0.513688 }
+      }
+      <Vertex> 2543 {
+        0.246315151453 0.0505775026977 2.7768599987
+        <UV>  {
+          0.192803 0.506492
+          <Tangent> { -0.021776 -0.852687 0.521968 }
+          <Binormal> { 0.758463 0.232961 0.412207 }
+        }
+        <Normal> { 0.482833 -0.023041 -0.875393 }
+      }
+      <Vertex> 2544 {
+        0.0934787392616 0.0709864199162 2.83878040314
+        <UV>  {
+          0.186814 0.475295
+          <Tangent> { -0.175462 -0.480604 0.859205 }
+          <Binormal> { 0.607900 0.552586 0.433236 }
+        }
+        <Normal> { 0.748039 -0.420179 -0.513688 }
+      }
+      <Vertex> 2545 {
+        0.246315136552 0.0267617050558 2.79591226578
+        <UV>  {
+          0.188569 0.506845
+          <Tangent> { -0.050200 -0.398413 0.915831 }
+          <Binormal> { 0.168196 0.817400 0.364812 }
+        }
+        <Normal> { 0.914670 -0.007874 -0.404065 }
+      }
+      <Vertex> 2546 {
+        0.0652389749885 0.0529517419636 2.91704034805
+        <UV>  {
+          0.174900 0.468998
+          <Tangent> { -0.001547 -0.565135 0.824997 }
+          <Binormal> { 0.615477 0.631185 0.433525 }
+        }
+        <Normal> { 0.766015 -0.403058 -0.500687 }
+      }
+      <Vertex> 2547 {
+        0.246315136552 0.0267617050558 2.79591226578
+        <UV>  {
+          0.188569 0.506845
+          <Tangent> { -0.050200 -0.398413 0.915831 }
+          <Binormal> { 0.168196 0.817400 0.364812 }
+        }
+        <Normal> { 0.914670 -0.007874 -0.404065 }
+      }
+      <Vertex> 2548 {
+        0.17921449244 0.0172361377627 2.89117431641
+        <UV>  {
+          0.176241 0.493689
+          <Tangent> { -0.087447 -0.734599 0.672843 }
+          <Binormal> { 0.568222 0.376232 0.484614 }
+        }
+        <Normal> { 0.657094 -0.021882 -0.753471 }
+      }
+      <Vertex> 2549 {
+        0.0652389749885 0.0529517419636 2.91704034805
+        <UV>  {
+          0.174900 0.468998
+          <Tangent> { -0.001547 -0.565135 0.824997 }
+          <Binormal> { 0.615477 0.631185 0.433525 }
+        }
+        <Normal> { 0.766015 -0.403058 -0.500687 }
+      }
+      <Vertex> 2550 {
+        0.246315136552 0.0172355119139 2.90070104599
+        <UV>  {
+          0.176134 0.506723
+          <Tangent> { -0.034584 -0.520766 0.852998 }
+          <Binormal> { 0.283531 0.696641 0.436803 }
+        }
+        <Normal> { 0.838771 0.000000 -0.544450 }
+      }
+      <Vertex> 2551 {
+        0.17921449244 0.0172361377627 2.89117431641
+        <UV>  {
+          0.176241 0.493689
+          <Tangent> { -0.087447 -0.734599 0.672843 }
+          <Binormal> { 0.568222 0.376232 0.484614 }
+        }
+        <Normal> { 0.657094 -0.021882 -0.753471 }
+      }
+      <Vertex> 2552 {
+        0.246315136552 0.0267617050558 2.79591226578
+        <UV>  {
+          0.188569 0.506845
+          <Tangent> { -0.050200 -0.398413 0.915831 }
+          <Binormal> { 0.168196 0.817400 0.364812 }
+        }
+        <Normal> { 0.914670 -0.007874 -0.404065 }
+      }
+      <Vertex> 2553 {
+        0.0934787392616 0.0709864199162 2.83878040314
+        <UV>  {
+          0.186814 0.475295
+          <Tangent> { -0.175462 -0.480604 0.859205 }
+          <Binormal> { 0.607900 0.552586 0.433236 }
+        }
+        <Normal> { 0.748039 -0.420179 -0.513688 }
+      }
+      <Vertex> 2554 {
+        0.0652389749885 0.0529517419636 2.91704034805
+        <UV>  {
+          0.174900 0.468998
+          <Tangent> { -0.001547 -0.565135 0.824997 }
+          <Binormal> { 0.615477 0.631185 0.433525 }
+        }
+        <Normal> { 0.766015 -0.403058 -0.500687 }
+      }
+      <Vertex> 2555 {
+        -0.132877200842 0.176142662764 2.92451691628
+        <UV>  {
+          0.177029 0.431948
+          <Tangent> { -0.208610 -0.397606 0.893527 }
+          <Binormal> { 0.784084 0.458505 0.387086 }
+        }
+        <Normal> { 0.596667 -0.718314 -0.357768 }
+      }
+      <Vertex> 2556 {
+        -0.132877200842 0.176142662764 2.92451691628
+        <UV>  {
+          0.177029 0.431948
+          <Tangent> { -0.208610 -0.397606 0.893527 }
+          <Binormal> { 0.784084 0.458505 0.387086 }
+        }
+        <Normal> { 0.596667 -0.718314 -0.357768 }
+      }
+      <Vertex> 2557 {
+        0.0652389749885 0.0529517419636 2.91704034805
+        <UV>  {
+          0.174900 0.468998
+          <Tangent> { -0.001547 -0.565135 0.824997 }
+          <Binormal> { 0.615477 0.631185 0.433525 }
+        }
+        <Normal> { 0.766015 -0.403058 -0.500687 }
+      }
+      <Vertex> 2558 {
+        -0.0494141727686 0.0709864273667 2.96738386154
+        <UV>  {
+          0.168926 0.447105
+          <Tangent> { 0.216595 -0.289159 0.932456 }
+          <Binormal> { 0.464893 0.832329 0.150122 }
+        }
+        <Normal> { 0.876217 -0.476669 -0.070620 }
+      }
+      <Vertex> 2559 {
+        0.17921449244 0.0172361377627 2.89117431641
+        <UV>  {
+          0.176241 0.493689
+          <Tangent> { -0.087447 -0.734599 0.672843 }
+          <Binormal> { 0.568222 0.376232 0.484614 }
+        }
+        <Normal> { 0.657094 -0.021882 -0.753471 }
+      }
+      <Vertex> 2560 {
+        0.246315136552 -0.0371930338442 2.93165326118
+        <UV>  {
+          0.167931 0.507586
+          <Tangent> { -0.075348 -0.494001 0.866190 }
+          <Binormal> { 0.255948 0.701798 0.422510 }
+        }
+        <Normal> { 0.855281 0.000000 -0.518113 }
+      }
+      <Vertex> 2561 {
+        0.17921449244 -0.00657965987921 2.8959376812
+        <UV>  {
+          0.172868 0.494292
+          <Tangent> { -0.015758 -0.601352 0.798829 }
+          <Binormal> { 0.536038 0.623675 0.480072 }
+        }
+        <Normal> { 0.791711 -0.252235 -0.556322 }
+      }
+      <Vertex> 2562 {
+        0.246315136552 0.0172355119139 2.90070104599
+        <UV>  {
+          0.176134 0.506723
+          <Tangent> { -0.034584 -0.520766 0.852998 }
+          <Binormal> { 0.283531 0.696641 0.436803 }
+        }
+        <Normal> { 0.838771 0.000000 -0.544450 }
+      }
+      <Vertex> 2563 {
+        0.246315136552 -0.0371930338442 2.93165326118
+        <UV>  {
+          0.167931 0.507586
+          <Tangent> { -0.075348 -0.494001 0.866190 }
+          <Binormal> { 0.255948 0.701798 0.422510 }
+        }
+        <Normal> { 0.855281 0.000000 -0.518113 }
+      }
+      <Vertex> 2564 {
+        0.17921449244 0.0172361377627 2.89117431641
+        <UV>  {
+          0.176241 0.493689
+          <Tangent> { -0.087447 -0.734599 0.672843 }
+          <Binormal> { 0.568222 0.376232 0.484614 }
+        }
+        <Normal> { 0.657094 -0.021882 -0.753471 }
+      }
+      <Vertex> 2565 {
+        0.246315136552 0.0172355119139 2.90070104599
+        <UV>  {
+          0.196853 0.508952
+          <Tangent> { 0.013460 -0.993511 0.112941 }
+          <Binormal> { 0.540917 0.102060 0.833328 }
+        }
+        <Normal> { 0.838771 0.000000 -0.544450 }
+      }
+      <Vertex> 2566 {
+        0.245897844434 0.0267617050558 2.95785832405
+        <UV>  {
+          0.199542 0.539441
+          <Tangent> { 0.018105 -0.998835 0.044742 }
+          <Binormal> { -0.032811 -0.000662 -0.001501 }
+        }
+        <Normal> { -0.019623 0.999725 -0.011933 }
+      }
+      <Vertex> 2567 {
+        0.246315136552 -0.0371930338442 2.93165326118
+        <UV>  {
+          0.175463 0.524074
+          <Tangent> { 0.014447 -0.999891 0.003063 }
+          <Binormal> { 0.518056 0.010105 0.855188 }
+        }
+        <Normal> { 0.855281 0.000000 -0.518113 }
+      }
+      <Vertex> 2568 {
+        0.245897844434 0.0267617050558 2.95785832405
+        <UV>  {
+          0.199542 0.539441
+          <Tangent> { 0.018105 -0.998835 0.044742 }
+          <Binormal> { -0.032811 -0.000662 -0.001501 }
+        }
+        <Normal> { -0.019623 0.999725 -0.011933 }
+      }
+      <Vertex> 2569 {
+        0.246315136552 0.00294590857811 2.95309495926
+        <UV>  {
+          0.190225 0.536963
+          <Tangent> { 0.022164 -0.999625 -0.016086 }
+          <Binormal> { -0.573990 -0.025896 0.818382 }
+        }
+        <Normal> { 0.818690 0.000000 0.574206 }
+      }
+      <Vertex> 2570 {
+        0.246315136552 -0.0371930338442 2.93165326118
+        <UV>  {
+          0.175463 0.524074
+          <Tangent> { 0.014447 -0.999891 0.003063 }
+          <Binormal> { 0.518056 0.010105 0.855188 }
+        }
+        <Normal> { 0.855281 0.000000 -0.518113 }
+      }
+      <Vertex> 2571 {
+        0.17921449244 -0.00657965987921 2.8959376812
+        <UV>  {
+          0.172868 0.494292
+          <Tangent> { -0.015758 -0.601352 0.798829 }
+          <Binormal> { 0.536038 0.623675 0.480072 }
+        }
+        <Normal> { 0.791711 -0.252235 -0.556322 }
+      }
+      <Vertex> 2572 {
+        0.0652389749885 0.0529517419636 2.91704034805
+        <UV>  {
+          0.174900 0.468998
+          <Tangent> { -0.001547 -0.565135 0.824997 }
+          <Binormal> { 0.615477 0.631185 0.433525 }
+        }
+        <Normal> { 0.766015 -0.403058 -0.500687 }
+      }
+      <Vertex> 2573 {
+        0.17921449244 0.0172361377627 2.89117431641
+        <UV>  {
+          0.176241 0.493689
+          <Tangent> { -0.087447 -0.734599 0.672843 }
+          <Binormal> { 0.568222 0.376232 0.484614 }
+        }
+        <Normal> { 0.657094 -0.021882 -0.753471 }
+      }
+      <Vertex> 2574 {
+        0.245897844434 0.0267617050558 2.95785832405
+        <UV>  {
+          0.199542 0.539441
+          <Tangent> { 0.018105 -0.998835 0.044742 }
+          <Binormal> { -0.032811 -0.000662 -0.001501 }
+        }
+        <Normal> { -0.019623 0.999725 -0.011933 }
+      }
+      <Vertex> 2575 {
+        0.246315151453 0.0505775026977 3.13885521889
+        <UV>  {
+          0.206384 0.630424
+          <Tangent> { 0.145420 -0.933173 -0.328696 }
+          <Binormal> { -0.469073 -0.357361 0.807028 }
+        }
+        <Normal> { 0.866115 -0.008301 0.499741 }
+      }
+      <Vertex> 2576 {
+        0.246315136552 0.00294590857811 2.95309495926
+        <UV>  {
+          0.190225 0.536963
+          <Tangent> { 0.022164 -0.999625 -0.016086 }
+          <Binormal> { -0.573990 -0.025896 0.818382 }
+        }
+        <Normal> { 0.818690 0.000000 0.574206 }
+      }
+      <Vertex> 2577 {
+        0.246315136552 0.00294590857811 2.95309495926
+        <UV>  {
+          0.161109 0.508099
+          <Tangent> { -0.051920 0.618424 0.784128 }
+          <Binormal> { 0.355102 0.671770 -0.506297 }
+        }
+        <Normal> { 0.818690 0.000000 0.574206 }
+      }
+      <Vertex> 2578 {
+        0.246315151453 0.0505775026977 3.13885521889
+        <UV>  {
+          0.126562 0.510330
+          <Tangent> { -0.026653 0.443586 0.895835 }
+          <Binormal> { 0.229115 0.789216 -0.383976 }
+        }
+        <Normal> { 0.866115 -0.008301 0.499741 }
+      }
+      <Vertex> 2579 {
+        0.183977901936 -0.0113430684432 3.00548863411
+        <UV>  {
+          0.156816 0.493520
+          <Tangent> { 0.094034 0.365135 0.926193 }
+          <Binormal> { 0.170539 0.810768 -0.336945 }
+        }
+        <Normal> { 0.916013 -0.026337 0.400250 }
+      }
+      <Vertex> 2580 {
+        0.246315151453 0.0505775026977 3.13885521889
+        <UV>  {
+          0.126562 0.510330
+          <Tangent> { -0.026653 0.443586 0.895835 }
+          <Binormal> { 0.229115 0.789216 -0.383976 }
+        }
+        <Normal> { 0.866115 -0.008301 0.499741 }
+      }
+      <Vertex> 2581 {
+        0.103004932404 0.0709864199162 3.07217264175
+        <UV>  {
+          0.143569 0.467275
+          <Tangent> { 0.457945 0.386161 0.800728 }
+          <Binormal> { 0.406395 0.408345 -0.429351 }
+        }
+        <Normal> { 0.811274 -0.253456 0.526841 }
+      }
+      <Vertex> 2582 {
+        0.183977901936 -0.0113430684432 3.00548863411
+        <UV>  {
+          0.156816 0.493520
+          <Tangent> { 0.094034 0.365135 0.926193 }
+          <Binormal> { 0.170539 0.810768 -0.336945 }
+        }
+        <Normal> { 0.916013 -0.026337 0.400250 }
+      }
+      <Vertex> 2583 {
+        0.103004932404 0.0709864199162 3.07217264175
+        <UV>  {
+          0.143569 0.467275
+          <Tangent> { 0.457945 0.386161 0.800728 }
+          <Binormal> { 0.406395 0.408345 -0.429351 }
+        }
+        <Normal> { 0.811274 -0.253456 0.526841 }
+      }
+      <Vertex> 2584 {
+        0.0934787392616 0.00906584877521 3.00072646141
+        <UV>  {
+          0.159974 0.474314
+          <Tangent> { 0.207168 0.022685 0.978042 }
+          <Binormal> { 0.362872 0.870660 -0.097058 }
+        }
+        <Normal> { 0.919523 -0.367809 0.138401 }
+      }
+      <Vertex> 2585 {
+        0.183977901936 -0.0113430684432 3.00548863411
+        <UV>  {
+          0.156816 0.493520
+          <Tangent> { 0.094034 0.365135 0.926193 }
+          <Binormal> { 0.170539 0.810768 -0.336945 }
+        }
+        <Normal> { 0.916013 -0.026337 0.400250 }
+      }
+      <Vertex> 2586 {
+        0.103004932404 0.0709864199162 3.07217264175
+        <UV>  {
+          0.143569 0.467275
+          <Tangent> { 0.457945 0.386161 0.800728 }
+          <Binormal> { 0.406395 0.408345 -0.429351 }
+        }
+        <Normal> { 0.811274 -0.253456 0.526841 }
+      }
+      <Vertex> 2587 {
+        -0.0494141727686 0.0709864273667 2.96738386154
+        <UV>  {
+          0.168926 0.447105
+          <Tangent> { 0.216595 -0.289159 0.932456 }
+          <Binormal> { 0.464893 0.832329 0.150122 }
+        }
+        <Normal> { 0.876217 -0.476669 -0.070620 }
+      }
+      <Vertex> 2588 {
+        0.0934787392616 0.00906584877521 3.00072646141
+        <UV>  {
+          0.159974 0.474314
+          <Tangent> { 0.207168 0.022685 0.978042 }
+          <Binormal> { 0.362872 0.870660 -0.097058 }
+        }
+        <Normal> { 0.919523 -0.367809 0.138401 }
+      }
+      <Vertex> 2589 {
+        -0.0494141727686 0.0709864273667 2.96738386154
+        <UV>  {
+          0.168926 0.447105
+          <Tangent> { 0.216595 -0.289159 0.932456 }
+          <Binormal> { 0.464893 0.832329 0.150122 }
+        }
+        <Normal> { 0.876217 -0.476669 -0.070620 }
+      }
+      <Vertex> 2590 {
+        0.0652389749885 0.0529517419636 2.91704034805
+        <UV>  {
+          0.174900 0.468998
+          <Tangent> { -0.001547 -0.565135 0.824997 }
+          <Binormal> { 0.615477 0.631185 0.433525 }
+        }
+        <Normal> { 0.766015 -0.403058 -0.500687 }
+      }
+      <Vertex> 2591 {
+        0.0934787392616 0.00906584877521 3.00072646141
+        <UV>  {
+          0.159974 0.474314
+          <Tangent> { 0.207168 0.022685 0.978042 }
+          <Binormal> { 0.362872 0.870660 -0.097058 }
+        }
+        <Normal> { 0.919523 -0.367809 0.138401 }
+      }
+      <Vertex> 2592 {
+        0.17921449244 -0.00657965987921 2.8959376812
+        <UV>  {
+          0.172868 0.494292
+          <Tangent> { -0.015758 -0.601352 0.798829 }
+          <Binormal> { 0.536038 0.623675 0.480072 }
+        }
+        <Normal> { 0.791711 -0.252235 -0.556322 }
+      }
+      <Vertex> 2593 {
+        0.0934787392616 0.00906584877521 3.00072646141
+        <UV>  {
+          0.159974 0.474314
+          <Tangent> { 0.207168 0.022685 0.978042 }
+          <Binormal> { 0.362872 0.870660 -0.097058 }
+        }
+        <Normal> { 0.919523 -0.367809 0.138401 }
+      }
+      <Vertex> 2594 {
+        0.0652389749885 0.0529517419636 2.91704034805
+        <UV>  {
+          0.174900 0.468998
+          <Tangent> { -0.001547 -0.565135 0.824997 }
+          <Binormal> { 0.615477 0.631185 0.433525 }
+        }
+        <Normal> { 0.766015 -0.403058 -0.500687 }
+      }
+      <Vertex> 2595 {
+        0.17921449244 -0.00657965987921 2.8959376812
+        <UV>  {
+          0.172868 0.494292
+          <Tangent> { -0.015758 -0.601352 0.798829 }
+          <Binormal> { 0.536038 0.623675 0.480072 }
+        }
+        <Normal> { 0.791711 -0.252235 -0.556322 }
+      }
+      <Vertex> 2596 {
+        0.246315136552 -0.0371930338442 2.93165326118
+        <UV>  {
+          0.167931 0.507586
+          <Tangent> { -0.075348 -0.494001 0.866190 }
+          <Binormal> { 0.255948 0.701798 0.422510 }
+        }
+        <Normal> { 0.855281 0.000000 -0.518113 }
+      }
+      <Vertex> 2597 {
+        0.183977901936 -0.0113430684432 3.00548863411
+        <UV>  {
+          0.156816 0.493520
+          <Tangent> { 0.094034 0.365135 0.926193 }
+          <Binormal> { 0.170539 0.810768 -0.336945 }
+        }
+        <Normal> { 0.916013 -0.026337 0.400250 }
+      }
+      <Vertex> 2598 {
+        0.0934787392616 0.00906584877521 3.00072646141
+        <UV>  {
+          0.159974 0.474314
+          <Tangent> { 0.207168 0.022685 0.978042 }
+          <Binormal> { 0.362872 0.870660 -0.097058 }
+        }
+        <Normal> { 0.919523 -0.367809 0.138401 }
+      }
+      <Vertex> 2599 {
+        0.17921449244 -0.00657965987921 2.8959376812
+        <UV>  {
+          0.172868 0.494292
+          <Tangent> { -0.015758 -0.601352 0.798829 }
+          <Binormal> { 0.536038 0.623675 0.480072 }
+        }
+        <Normal> { 0.791711 -0.252235 -0.556322 }
+      }
+      <Vertex> 2600 {
+        0.183977901936 -0.0113430684432 3.00548863411
+        <UV>  {
+          0.156816 0.493520
+          <Tangent> { 0.094034 0.365135 0.926193 }
+          <Binormal> { 0.170539 0.810768 -0.336945 }
+        }
+        <Normal> { 0.916013 -0.026337 0.400250 }
+      }
+      <Vertex> 2601 {
+        0.246315136552 -0.0371930338442 2.93165326118
+        <UV>  {
+          0.167931 0.507586
+          <Tangent> { -0.075348 -0.494001 0.866190 }
+          <Binormal> { 0.255948 0.701798 0.422510 }
+        }
+        <Normal> { 0.855281 0.000000 -0.518113 }
+      }
+      <Vertex> 2602 {
+        0.246315136552 0.00294590857811 2.95309495926
+        <UV>  {
+          0.161109 0.508099
+          <Tangent> { -0.051920 0.618424 0.784128 }
+          <Binormal> { 0.355102 0.671770 -0.506297 }
+        }
+        <Normal> { 0.818690 0.000000 0.574206 }
+      }
+      <Vertex> 2603 {
+        0.183977901936 -0.0113430684432 3.00548863411
+        <UV>  {
+          0.156816 0.493520
+          <Tangent> { 0.094034 0.365135 0.926193 }
+          <Binormal> { 0.170539 0.810768 -0.336945 }
+        }
+        <Normal> { 0.916013 -0.026337 0.400250 }
+      }
+      <Vertex> 2604 {
+        0.246315151453 0.174417406321 3.21506476402
+        <UV>  {
+          0.065086 0.511768
+          <Tangent> { -0.015895 0.994686 0.101716 }
+          <Binormal> { 0.994686 0.015895 -0.000000 }
+        }
+        <Normal> { 0.000000 0.000000 1.000000 }
+      }
+      <Vertex> 2605 {
+        0.188740685582 0.174418032169 3.18648695946
+        <UV>  {
+          0.079010 0.457726
+          <Tangent> { 0.615735 0.736367 0.280419 }
+          <Binormal> { 0.787120 -0.558638 -0.261376 }
+        }
+        <Normal> { 0.038697 -0.378216 0.924894 }
+      }
+      <Vertex> 2606 {
+        0.188740685582 0.107734672725 3.18648695946
+        <UV>  {
+          0.106627 0.482697
+          <Tangent> { 0.322764 0.670675 0.667846 }
+          <Binormal> { 0.814868 0.027294 -0.421228 }
+        }
+        <Normal> { 0.428938 -0.413770 0.802972 }
+      }
+      <Vertex> 2607 {
+        0.188740685582 0.107734672725 3.18648695946
+        <UV>  {
+          0.106627 0.482697
+          <Tangent> { 0.322764 0.670675 0.667846 }
+          <Binormal> { 0.814868 0.027294 -0.421228 }
+        }
+        <Normal> { 0.428938 -0.413770 0.802972 }
+      }
+      <Vertex> 2608 {
+        0.246315151453 0.107734665275 3.21506476402
+        <UV>  {
+          0.100504 0.510874
+          <Tangent> { -0.018839 0.812355 0.582859 }
+          <Binormal> { 0.720327 0.286140 -0.375522 }
+        }
+        <Normal> { 0.462264 0.000000 0.886715 }
+      }
+      <Vertex> 2609 {
+        0.246315151453 0.174417406321 3.21506476402
+        <UV>  {
+          0.065086 0.511768
+          <Tangent> { -0.015895 0.994686 0.101716 }
+          <Binormal> { 0.994686 0.015895 -0.000000 }
+        }
+        <Normal> { 0.000000 0.000000 1.000000 }
+      }
+      <Vertex> 2610 {
+        0.188740685582 0.174418032169 3.18648695946
+        <UV>  {
+          0.079010 0.457726
+          <Tangent> { 0.615735 0.736367 0.280419 }
+          <Binormal> { 0.787120 -0.558638 -0.261376 }
+        }
+        <Normal> { 0.038697 -0.378216 0.924894 }
+      }
+      <Vertex> 2611 {
+        0.0982415303588 0.194826945662 3.15314555168
+        <UV>  {
+          0.117842 0.428791
+          <Tangent> { 0.812447 0.533114 0.236052 }
+          <Binormal> { 0.578188 -0.767884 -0.255782 }
+        }
+        <Normal> { 0.038789 -0.289376 0.956420 }
+      }
+      <Vertex> 2612 {
+        0.0982415303588 0.128143593669 3.15314555168
+        <UV>  {
+          0.125321 0.449419
+          <Tangent> { 0.809371 0.494254 0.317225 }
+          <Binormal> { 0.551048 -0.697468 -0.319256 }
+        }
+        <Normal> { 0.202399 -0.270852 0.941069 }
+      }
+      <Vertex> 2613 {
+        0.188740685582 0.107734672725 3.18648695946
+        <UV>  {
+          0.106627 0.482697
+          <Tangent> { 0.322764 0.670675 0.667846 }
+          <Binormal> { 0.814868 0.027294 -0.421228 }
+        }
+        <Normal> { 0.428938 -0.413770 0.802972 }
+      }
+      <Vertex> 2614 {
+        0.188740685582 0.174418032169 3.18648695946
+        <UV>  {
+          0.079010 0.457726
+          <Tangent> { 0.615735 0.736367 0.280419 }
+          <Binormal> { 0.787120 -0.558638 -0.261376 }
+        }
+        <Normal> { 0.038697 -0.378216 0.924894 }
+      }
+      <Vertex> 2615 {
+        0.0982415303588 0.128143593669 3.15314555168
+        <UV>  {
+          0.125321 0.449419
+          <Tangent> { 0.809371 0.494254 0.317225 }
+          <Binormal> { 0.551048 -0.697468 -0.319256 }
+        }
+        <Normal> { 0.202399 -0.270852 0.941069 }
+      }
+      <Vertex> 2616 {
+        0.0982415303588 0.128143593669 3.15314555168
+        <UV>  {
+          0.125321 0.449419
+          <Tangent> { 0.809371 0.494254 0.317225 }
+          <Binormal> { 0.551048 -0.697468 -0.319256 }
+        }
+        <Normal> { 0.202399 -0.270852 0.941069 }
+      }
+      <Vertex> 2617 {
+        0.0982415303588 0.194826945662 3.15314555168
+        <UV>  {
+          0.117842 0.428791
+          <Tangent> { 0.812447 0.533114 0.236052 }
+          <Binormal> { 0.578188 -0.767884 -0.255782 }
+        }
+        <Normal> { 0.038789 -0.289376 0.956420 }
+      }
+      <Vertex> 2618 {
+        -0.0303617790341 0.156722173095 3.1245663166
+        <UV>  {
+          0.144927 0.420628
+          <Tangent> { 0.943027 -0.316457 -0.102739 }
+          <Binormal> { -0.303531 -0.867761 -0.113196 }
+        }
+        <Normal> { -0.302042 -0.018677 0.953093 }
+      }
+      <Vertex> 2619 {
+        0.0982415303588 0.128143593669 3.15314555168
+        <UV>  {
+          0.125321 0.449419
+          <Tangent> { 0.809371 0.494254 0.317225 }
+          <Binormal> { 0.551048 -0.697468 -0.319256 }
+        }
+        <Normal> { 0.202399 -0.270852 0.941069 }
+      }
+      <Vertex> 2620 {
+        -0.0303617790341 0.156722173095 3.1245663166
+        <UV>  {
+          0.144927 0.420628
+          <Tangent> { 0.943027 -0.316457 -0.102739 }
+          <Binormal> { -0.303531 -0.867761 -0.113196 }
+        }
+        <Normal> { -0.302042 -0.018677 0.953093 }
+      }
+      <Vertex> 2621 {
+        -0.0351251885295 0.128143593669 3.1436188221
+        <UV>  {
+          0.147591 0.428733
+          <Tangent> { 0.986866 -0.139031 0.082258 }
+          <Binormal> { -0.127748 -0.887839 0.032010 }
+        }
+        <Normal> { 0.366497 -0.019196 0.930204 }
+      }
+      <Vertex> 2622 {
+        -0.215434640646 0.289806753397 3.18197512627
+        <UV>  {
+          0.158853 0.417806
+          <Tangent> { 0.443534 0.038975 0.895410 }
+          <Binormal> { 0.608792 -0.703812 -0.270925 }
+        }
+        <Normal> { -0.510483 -0.655690 0.556261 }
+      }
+      <Vertex> 2623 {
+        -0.141001403332 0.263332724571 3.08552098274
+        <UV>  {
+          0.164607 0.405753
+          <Tangent> { -0.621763 0.272613 0.734230 }
+          <Binormal> { 0.352592 -0.345909 0.427015 }
+        }
+        <Normal> { -0.841304 -0.317911 0.437147 }
+      }
+      <Vertex> 2624 {
+        -0.148146525025 0.250958323479 3.08552098274
+        <UV>  {
+          0.165540 0.412132
+          <Tangent> { 0.442449 -0.118358 0.888949 }
+          <Binormal> { 0.817812 0.176257 -0.383575 }
+        }
+        <Normal> { 0.284310 -0.942991 0.172857 }
+      }
+      <Vertex> 2625 {
+        -0.0351251885295 0.128143593669 3.1436188221
+        <UV>  {
+          0.147591 0.428733
+          <Tangent> { 0.986866 -0.139031 0.082258 }
+          <Binormal> { -0.127748 -0.887839 0.032010 }
+        }
+        <Normal> { 0.366497 -0.019196 0.930204 }
+      }
+      <Vertex> 2626 {
+        -0.0303617790341 0.156722173095 3.1245663166
+        <UV>  {
+          0.144927 0.420628
+          <Tangent> { 0.943027 -0.316457 -0.102739 }
+          <Binormal> { -0.303531 -0.867761 -0.113196 }
+        }
+        <Normal> { -0.302042 -0.018677 0.953093 }
+      }
+      <Vertex> 2627 {
+        -0.215434640646 0.289806753397 3.18197512627
+        <UV>  {
+          0.158853 0.417806
+          <Tangent> { 0.443534 0.038975 0.895410 }
+          <Binormal> { 0.608792 -0.703812 -0.270925 }
+        }
+        <Normal> { -0.510483 -0.655690 0.556261 }
+      }
+      <Vertex> 2628 {
+        -0.141001403332 0.263332724571 3.08552098274
+        <UV>  {
+          0.164607 0.405753
+          <Tangent> { -0.621763 0.272613 0.734230 }
+          <Binormal> { 0.352592 -0.345909 0.427015 }
+        }
+        <Normal> { -0.841304 -0.317911 0.437147 }
+      }
+      <Vertex> 2629 {
+        -0.215434640646 0.289806753397 3.18197512627
+        <UV>  {
+          0.158853 0.417806
+          <Tangent> { 0.443534 0.038975 0.895410 }
+          <Binormal> { 0.608792 -0.703812 -0.270925 }
+        }
+        <Normal> { -0.510483 -0.655690 0.556261 }
+      }
+      <Vertex> 2630 {
+        -0.0303617790341 0.156722173095 3.1245663166
+        <UV>  {
+          0.144927 0.420628
+          <Tangent> { 0.943027 -0.316457 -0.102739 }
+          <Binormal> { -0.303531 -0.867761 -0.113196 }
+        }
+        <Normal> { -0.302042 -0.018677 0.953093 }
+      }
+      <Vertex> 2631 {
+        -0.148146525025 0.250958323479 3.08552098274
+        <UV>  {
+          0.165540 0.412132
+          <Tangent> { 0.442449 -0.118358 0.888949 }
+          <Binormal> { 0.817812 0.176257 -0.383575 }
+        }
+        <Normal> { 0.284310 -0.942991 0.172857 }
+      }
+      <Vertex> 2632 {
+        -0.141001403332 0.263332724571 3.08552098274
+        <UV>  {
+          0.164607 0.405753
+          <Tangent> { -0.621763 0.272613 0.734230 }
+          <Binormal> { 0.352592 -0.345909 0.427015 }
+        }
+        <Normal> { -0.841304 -0.317911 0.437147 }
+      }
+      <Vertex> 2633 {
+        -0.249078705907 0.309231609106 3.08016347885
+        <UV>  {
+          0.171370 0.412411
+          <Tangent> { -0.659084 0.342121 0.669747 }
+          <Binormal> { 0.451886 0.598466 0.138983 }
+        }
+        <Normal> { -0.073000 -0.172979 0.982208 }
+      }
+      <Vertex> 2634 {
+        -0.141001403332 0.263332724571 3.08552098274
+        <UV>  {
+          0.164607 0.405753
+          <Tangent> { -0.621763 0.272613 0.734230 }
+          <Binormal> { 0.352592 -0.345909 0.427015 }
+        }
+        <Normal> { -0.841304 -0.317911 0.437147 }
+      }
+      <Vertex> 2635 {
+        -0.170833751559 0.264056444168 3.01764750481
+        <UV>  {
+          0.173775 0.413770
+          <Tangent> { -0.754117 0.172780 0.633604 }
+          <Binormal> { 0.368153 -0.680523 0.623751 }
+        }
+        <Normal> { -0.622517 -0.684500 -0.379376 }
+      }
+      <Vertex> 2636 {
+        -0.249078705907 0.309231609106 3.08016347885
+        <UV>  {
+          0.171370 0.412411
+          <Tangent> { -0.659084 0.342121 0.669747 }
+          <Binormal> { 0.451886 0.598466 0.138983 }
+        }
+        <Normal> { -0.073000 -0.172979 0.982208 }
+      }
+      <Vertex> 2637 {
+        -0.170833751559 0.264056444168 3.01764750481
+        <UV>  {
+          0.173775 0.413770
+          <Tangent> { -0.754117 0.172780 0.633604 }
+          <Binormal> { 0.368153 -0.680523 0.623751 }
+        }
+        <Normal> { -0.622517 -0.684500 -0.379376 }
+      }
+      <Vertex> 2638 {
+        -0.141001403332 0.263332724571 3.08552098274
+        <UV>  {
+          0.164607 0.405753
+          <Tangent> { -0.621763 0.272613 0.734230 }
+          <Binormal> { 0.352592 -0.345909 0.427015 }
+        }
+        <Normal> { -0.841304 -0.317911 0.437147 }
+      }
+      <Vertex> 2639 {
+        -0.148932531476 0.273411989212 3.00812077522
+        <UV>  {
+          0.176067 0.412280
+          <Tangent> { -0.630707 -0.113066 0.767740 }
+          <Binormal> { 0.554207 -0.706336 0.351264 }
+        }
+        <Normal> { -0.670034 -0.677053 -0.304300 }
+      }
+      <Vertex> 2640 {
+        -0.148932531476 0.273411989212 3.00812077522
+        <UV>  {
+          0.176067 0.412280
+          <Tangent> { -0.630707 -0.113066 0.767740 }
+          <Binormal> { 0.554207 -0.706336 0.351264 }
+        }
+        <Normal> { -0.670034 -0.677053 -0.304300 }
+      }
+      <Vertex> 2641 {
+        -0.0714256241918 0.194826960564 2.88359451294
+        <UV>  {
+          0.187934 0.433246
+          <Tangent> { -0.806477 -0.065636 0.587611 }
+          <Binormal> { 0.417085 -0.761954 0.487326 }
+        }
+        <Normal> { -0.343883 -0.632252 -0.694235 }
+      }
+      <Vertex> 2642 {
+        -0.170833751559 0.264056444168 3.01764750481
+        <UV>  {
+          0.173775 0.413770
+          <Tangent> { -0.754117 0.172780 0.633604 }
+          <Binormal> { 0.368153 -0.680523 0.623751 }
+        }
+        <Normal> { -0.622517 -0.684500 -0.379376 }
+      }
+      <Vertex> 2643 {
+        -0.0714256241918 0.194826960564 2.88359451294
+        <UV>  {
+          0.187934 0.433246
+          <Tangent> { -0.806477 -0.065636 0.587611 }
+          <Binormal> { 0.417085 -0.761954 0.487326 }
+        }
+        <Normal> { -0.343883 -0.632252 -0.694235 }
+      }
+      <Vertex> 2644 {
+        -0.142717927694 0.247824236751 2.95176696777
+        <UV>  {
+          0.179556 0.424285
+          <Tangent> { -0.714103 -0.098176 0.693122 }
+          <Binormal> { 0.537585 -0.680851 0.457419 }
+        }
+        <Normal> { -0.287484 -0.680074 -0.674398 }
+      }
+      <Vertex> 2645 {
+        -0.170833751559 0.264056444168 3.01764750481
+        <UV>  {
+          0.173775 0.413770
+          <Tangent> { -0.754117 0.172780 0.633604 }
+          <Binormal> { 0.368153 -0.680523 0.623751 }
+        }
+        <Normal> { -0.622517 -0.684500 -0.379376 }
+      }
+      <Vertex> 2646 {
+        -0.0714256241918 0.128143593669 2.88359451294
+        <UV>  {
+          0.182799 0.442976
+          <Tangent> { -0.623465 -0.603921 0.496559 }
+          <Binormal> { 0.772376 -0.447570 0.425433 }
+        }
+        <Normal> { 0.127384 -0.558977 -0.819330 }
+      }
+      <Vertex> 2647 {
+        -0.142717927694 0.247824236751 2.95176696777
+        <UV>  {
+          0.179556 0.424285
+          <Tangent> { -0.714103 -0.098176 0.693122 }
+          <Binormal> { 0.537585 -0.680851 0.457419 }
+        }
+        <Normal> { -0.287484 -0.680074 -0.674398 }
+      }
+      <Vertex> 2648 {
+        -0.0714256241918 0.194826960564 2.88359451294
+        <UV>  {
+          0.187934 0.433246
+          <Tangent> { -0.806477 -0.065636 0.587611 }
+          <Binormal> { 0.417085 -0.761954 0.487326 }
+        }
+        <Normal> { -0.343883 -0.632252 -0.694235 }
+      }
+      <Vertex> 2649 {
+        -0.0714256241918 0.194826960564 2.88359451294
+        <UV>  {
+          0.187934 0.433246
+          <Tangent> { -0.806477 -0.065636 0.587611 }
+          <Binormal> { 0.417085 -0.761954 0.487326 }
+        }
+        <Normal> { -0.343883 -0.632252 -0.694235 }
+      }
+      <Vertex> 2650 {
+        0.041400142014 0.194826945662 2.84042978287
+        <UV>  {
+          0.201582 0.453247
+          <Tangent> { -0.489939 -0.853773 0.176156 }
+          <Binormal> { 0.857009 -0.458291 0.162388 }
+        }
+        <Normal> { -0.025666 -0.376171 -0.926176 }
+      }
+      <Vertex> 2651 {
+        -0.0714256241918 0.128143593669 2.88359451294
+        <UV>  {
+          0.182799 0.442976
+          <Tangent> { -0.623465 -0.603921 0.496559 }
+          <Binormal> { 0.772376 -0.447570 0.425433 }
+        }
+        <Normal> { 0.127384 -0.558977 -0.819330 }
+      }
+      <Vertex> 2652 {
+        0.0414001382887 0.128143593669 2.84042978287
+        <UV>  {
+          0.191494 0.461505
+          <Tangent> { -0.368088 -0.841554 0.395346 }
+          <Binormal> { 0.906365 -0.240095 0.332796 }
+        }
+        <Normal> { 0.222083 -0.396374 -0.890805 }
+      }
+      <Vertex> 2653 {
+        -0.0714256241918 0.128143593669 2.88359451294
+        <UV>  {
+          0.182799 0.442976
+          <Tangent> { -0.623465 -0.603921 0.496559 }
+          <Binormal> { 0.772376 -0.447570 0.425433 }
+        }
+        <Normal> { 0.127384 -0.558977 -0.819330 }
+      }
+      <Vertex> 2654 {
+        0.041400142014 0.194826945662 2.84042978287
+        <UV>  {
+          0.201582 0.453247
+          <Tangent> { -0.489939 -0.853773 0.176156 }
+          <Binormal> { 0.857009 -0.458291 0.162388 }
+        }
+        <Normal> { -0.025666 -0.376171 -0.926176 }
+      }
+      <Vertex> 2655 {
+        0.041400142014 0.194826945662 2.84042978287
+        <UV>  {
+          0.201582 0.453247
+          <Tangent> { -0.489939 -0.853773 0.176156 }
+          <Binormal> { 0.857009 -0.458291 0.162388 }
+        }
+        <Normal> { -0.025666 -0.376171 -0.926176 }
+      }
+      <Vertex> 2656 {
+        0.246315151453 0.107734665275 2.74228167534
+        <UV>  {
+          0.201895 0.505679
+          <Tangent> { -0.052655 -0.964397 0.259165 }
+          <Binormal> { 0.955907 -0.010737 0.154257 }
+        }
+        <Normal> { 0.159124 -0.015168 -0.987121 }
+      }
+      <Vertex> 2657 {
+        0.0414001382887 0.128143593669 2.84042978287
+        <UV>  {
+          0.191494 0.461505
+          <Tangent> { -0.368088 -0.841554 0.395346 }
+          <Binormal> { 0.906365 -0.240095 0.332796 }
+        }
+        <Normal> { 0.222083 -0.396374 -0.890805 }
+      }
+      <Vertex> 2658 {
+        0.041400142014 0.194826945662 2.84042978287
+        <UV>  {
+          0.201582 0.453247
+          <Tangent> { -0.489939 -0.853773 0.176156 }
+          <Binormal> { 0.857009 -0.458291 0.162388 }
+        }
+        <Normal> { -0.025666 -0.376171 -0.926176 }
+      }
+      <Vertex> 2659 {
+        0.246315151453 0.174418032169 2.74228167534
+        <UV>  {
+          0.212037 0.504622
+          <Tangent> { -0.076483 -0.995666 -0.052919 }
+          <Binormal> { 0.992262 -0.071967 -0.080061 }
+        }
+        <Normal> { -0.080630 -0.002869 -0.996734 }
+      }
+      <Vertex> 2660 {
+        0.246315151453 0.107734665275 2.74228167534
+        <UV>  {
+          0.201895 0.505679
+          <Tangent> { -0.052655 -0.964397 0.259165 }
+          <Binormal> { 0.955907 -0.010737 0.154257 }
+        }
+        <Normal> { 0.159124 -0.015168 -0.987121 }
+      }
+      <Vertex> 2661 {
+        -0.0303617790341 0.156722173095 3.1245663166
+        <UV>  {
+          0.144927 0.420628
+          <Tangent> { 0.943027 -0.316457 -0.102739 }
+          <Binormal> { -0.303531 -0.867761 -0.113196 }
+        }
+        <Normal> { -0.302042 -0.018677 0.953093 }
+      }
+      <Vertex> 2662 {
+        0.0982415303588 0.194826945662 3.15314555168
+        <UV>  {
+          0.117842 0.428791
+          <Tangent> { 0.812447 0.533114 0.236052 }
+          <Binormal> { 0.578188 -0.767884 -0.255782 }
+        }
+        <Normal> { 0.038789 -0.289376 0.956420 }
+      }
+      <Vertex> 2663 {
+        -0.0303617715836 0.335300177336 3.1245663166
+        <UV>  {
+          0.151773 0.367049
+          <Tangent> { 0.904106 -0.162365 0.395259 }
+          <Binormal> { -0.006576 -0.844557 -0.331885 }
+        }
+        <Normal> { -0.007874 -0.365673 0.930692 }
+      }
+      <Vertex> 2664 {
+        -0.0303617715836 0.335300177336 3.1245663166
+        <UV>  {
+          0.151773 0.367049
+          <Tangent> { 0.904106 -0.162365 0.395259 }
+          <Binormal> { -0.006576 -0.844557 -0.331885 }
+        }
+        <Normal> { -0.007874 -0.365673 0.930692 }
+      }
+      <Vertex> 2665 {
+        0.0982415303588 0.194826945662 3.15314555168
+        <UV>  {
+          0.117842 0.428791
+          <Tangent> { 0.812447 0.533114 0.236052 }
+          <Binormal> { 0.578188 -0.767884 -0.255782 }
+        }
+        <Normal> { 0.038789 -0.289376 0.956420 }
+      }
+      <Vertex> 2666 {
+        0.188740685582 0.174418032169 3.18648695946
+        <UV>  {
+          0.079010 0.457726
+          <Tangent> { 0.615735 0.736367 0.280419 }
+          <Binormal> { 0.787120 -0.558638 -0.261376 }
+        }
+        <Normal> { 0.038697 -0.378216 0.924894 }
+      }
+      <Vertex> 2667 {
+        -0.141001403332 0.263332724571 3.08552098274
+        <UV>  {
+          0.164607 0.405753
+          <Tangent> { -0.621763 0.272613 0.734230 }
+          <Binormal> { 0.352592 -0.345909 0.427015 }
+        }
+        <Normal> { -0.841304 -0.317911 0.437147 }
+      }
+      <Vertex> 2668 {
+        -0.0994579717517 0.412237197161 3.08552098274
+        <UV>  {
+          0.175280 0.357923
+          <Tangent> { 0.064178 -0.468907 0.880913 }
+          <Binormal> { 0.656052 -0.251078 -0.181444 }
+        }
+        <Normal> { -0.262093 -0.912259 0.314707 }
+      }
+      <Vertex> 2669 {
+        -0.148932531476 0.273411989212 3.00812077522
+        <UV>  {
+          0.176067 0.412280
+          <Tangent> { -0.630707 -0.113066 0.767740 }
+          <Binormal> { 0.554207 -0.706336 0.351264 }
+        }
+        <Normal> { -0.670034 -0.677053 -0.304300 }
+      }
+      <Vertex> 2670 {
+        -0.148932531476 0.273411989212 3.00812077522
+        <UV>  {
+          0.176067 0.412280
+          <Tangent> { -0.630707 -0.113066 0.767740 }
+          <Binormal> { 0.554207 -0.706336 0.351264 }
+        }
+        <Normal> { -0.670034 -0.677053 -0.304300 }
+      }
+      <Vertex> 2671 {
+        -0.0994579717517 0.412237197161 3.08552098274
+        <UV>  {
+          0.175280 0.357923
+          <Tangent> { 0.064178 -0.468907 0.880913 }
+          <Binormal> { 0.656052 -0.251078 -0.181444 }
+        }
+        <Normal> { -0.262093 -0.912259 0.314707 }
+      }
+      <Vertex> 2672 {
+        -0.0714256241918 0.194826960564 2.88359451294
+        <UV>  {
+          0.187934 0.433246
+          <Tangent> { -0.806477 -0.065636 0.587611 }
+          <Binormal> { 0.417085 -0.761954 0.487326 }
+        }
+        <Normal> { -0.343883 -0.632252 -0.694235 }
+      }
+      <Vertex> 2673 {
+        -0.0994579717517 0.412237197161 3.08552098274
+        <UV>  {
+          0.175280 0.357923
+          <Tangent> { 0.064178 -0.468907 0.880913 }
+          <Binormal> { 0.656052 -0.251078 -0.181444 }
+        }
+        <Normal> { -0.262093 -0.912259 0.314707 }
+      }
+      <Vertex> 2674 {
+        -0.0631662532687 0.465548366308 3.00812077522
+        <UV>  {
+          0.191650 0.360063
+          <Tangent> { -0.044590 -0.196030 0.979584 }
+          <Binormal> { 0.984731 0.077554 0.060344 }
+        }
+        <Normal> { 0.081393 -0.995483 -0.048830 }
+      }
+      <Vertex> 2675 {
+        -0.0714256241918 0.194826960564 2.88359451294
+        <UV>  {
+          0.187934 0.433246
+          <Tangent> { -0.806477 -0.065636 0.587611 }
+          <Binormal> { 0.417085 -0.761954 0.487326 }
+        }
+        <Normal> { -0.343883 -0.632252 -0.694235 }
+      }
+      <Vertex> 2676 {
+        -0.0714256167412 0.337689340115 2.88359451294
+        <UV>  {
+          0.202864 0.402525
+          <Tangent> { -0.430504 -0.549384 0.716131 }
+          <Binormal> { 0.899132 -0.294685 0.314446 }
+        }
+        <Normal> { -0.005585 -0.737541 -0.675222 }
+      }
+      <Vertex> 2677 {
+        -0.0714256241918 0.194826960564 2.88359451294
+        <UV>  {
+          0.187934 0.433246
+          <Tangent> { -0.806477 -0.065636 0.587611 }
+          <Binormal> { 0.417085 -0.761954 0.487326 }
+        }
+        <Normal> { -0.343883 -0.632252 -0.694235 }
+      }
+      <Vertex> 2678 {
+        -0.0631662532687 0.465548366308 3.00812077522
+        <UV>  {
+          0.191650 0.360063
+          <Tangent> { -0.044590 -0.196030 0.979584 }
+          <Binormal> { 0.984731 0.077554 0.060344 }
+        }
+        <Normal> { 0.081393 -0.995483 -0.048830 }
+      }
+      <Vertex> 2679 {
+        -0.0714256167412 0.337689340115 2.88359451294
+        <UV>  {
+          0.202864 0.402525
+          <Tangent> { -0.430504 -0.549384 0.716131 }
+          <Binormal> { 0.899132 -0.294685 0.314446 }
+        }
+        <Normal> { -0.005585 -0.737541 -0.675222 }
+      }
+      <Vertex> 2680 {
+        0.156073227525 0.378427445889 2.80663251877
+        <UV>  {
+          0.260976 0.459011
+          <Tangent> { -0.640352 -0.748605 0.171870 }
+          <Binormal> { 0.760371 -0.615682 0.151293 }
+        }
+        <Normal> { -0.082736 -0.332987 -0.939268 }
+      }
+      <Vertex> 2681 {
+        0.041400142014 0.194826945662 2.84042978287
+        <UV>  {
+          0.201582 0.453247
+          <Tangent> { -0.489939 -0.853773 0.176156 }
+          <Binormal> { 0.857009 -0.458291 0.162388 }
+        }
+        <Normal> { -0.025666 -0.376171 -0.926176 }
+      }
+      <Vertex> 2682 {
+        0.041400142014 0.194826945662 2.84042978287
+        <UV>  {
+          0.201582 0.453247
+          <Tangent> { -0.489939 -0.853773 0.176156 }
+          <Binormal> { 0.857009 -0.458291 0.162388 }
+        }
+        <Normal> { -0.025666 -0.376171 -0.926176 }
+      }
+      <Vertex> 2683 {
+        -0.0714256241918 0.194826960564 2.88359451294
+        <UV>  {
+          0.187934 0.433246
+          <Tangent> { -0.806477 -0.065636 0.587611 }
+          <Binormal> { 0.417085 -0.761954 0.487326 }
+        }
+        <Normal> { -0.343883 -0.632252 -0.694235 }
+      }
+      <Vertex> 2684 {
+        -0.0714256167412 0.337689340115 2.88359451294
+        <UV>  {
+          0.202864 0.402525
+          <Tangent> { -0.430504 -0.549384 0.716131 }
+          <Binormal> { 0.899132 -0.294685 0.314446 }
+        }
+        <Normal> { -0.005585 -0.737541 -0.675222 }
+      }
+      <Vertex> 2685 {
+        0.041400142014 0.194826945662 2.84042978287
+        <UV>  {
+          0.201582 0.453247
+          <Tangent> { -0.489939 -0.853773 0.176156 }
+          <Binormal> { 0.857009 -0.458291 0.162388 }
+        }
+        <Normal> { -0.025666 -0.376171 -0.926176 }
+      }
+      <Vertex> 2686 {
+        0.246315166354 0.378427445889 2.77542114258
+        <UV>  {
+          0.275327 0.499141
+          <Tangent> { -0.088118 -0.995909 -0.019995 }
+          <Binormal> { 0.990866 -0.085665 -0.099976 }
+        }
+        <Normal> { -0.100375 0.000122 -0.994934 }
+      }
+      <Vertex> 2687 {
+        0.246315151453 0.174418032169 2.74228167534
+        <UV>  {
+          0.212037 0.504622
+          <Tangent> { -0.076483 -0.995666 -0.052919 }
+          <Binormal> { 0.992262 -0.071967 -0.080061 }
+        }
+        <Normal> { -0.080630 -0.002869 -0.996734 }
+      }
+      <Vertex> 2688 {
+        0.156073227525 0.378427445889 2.80663251877
+        <UV>  {
+          0.260976 0.459011
+          <Tangent> { -0.640352 -0.748605 0.171870 }
+          <Binormal> { 0.760371 -0.615682 0.151293 }
+        }
+        <Normal> { -0.082736 -0.332987 -0.939268 }
+      }
+      <Vertex> 2689 {
+        0.246315166354 0.378427445889 2.77542114258
+        <UV>  {
+          0.275327 0.499141
+          <Tangent> { -0.088118 -0.995909 -0.019995 }
+          <Binormal> { 0.990866 -0.085665 -0.099976 }
+        }
+        <Normal> { -0.100375 0.000122 -0.994934 }
+      }
+      <Vertex> 2690 {
+        0.041400142014 0.194826945662 2.84042978287
+        <UV>  {
+          0.201582 0.453247
+          <Tangent> { -0.489939 -0.853773 0.176156 }
+          <Binormal> { 0.857009 -0.458291 0.162388 }
+        }
+        <Normal> { -0.025666 -0.376171 -0.926176 }
+      }
+      <Vertex> 2691 {
+        -0.0303617790341 0.156722173095 3.1245663166
+        <UV>  {
+          0.144927 0.420628
+          <Tangent> { 0.943027 -0.316457 -0.102739 }
+          <Binormal> { -0.303531 -0.867761 -0.113196 }
+        }
+        <Normal> { -0.302042 -0.018677 0.953093 }
+      }
+      <Vertex> 2692 {
+        -0.0994579717517 0.412237197161 3.08552098274
+        <UV>  {
+          0.175280 0.357923
+          <Tangent> { 0.064178 -0.468907 0.880913 }
+          <Binormal> { 0.656052 -0.251078 -0.181444 }
+        }
+        <Normal> { -0.262093 -0.912259 0.314707 }
+      }
+      <Vertex> 2693 {
+        -0.141001403332 0.263332724571 3.08552098274
+        <UV>  {
+          0.164607 0.405753
+          <Tangent> { -0.621763 0.272613 0.734230 }
+          <Binormal> { 0.352592 -0.345909 0.427015 }
+        }
+        <Normal> { -0.841304 -0.317911 0.437147 }
+      }
+      <Vertex> 2694 {
+        -0.0303617790341 0.156722173095 3.1245663166
+        <UV>  {
+          0.144927 0.420628
+          <Tangent> { 0.943027 -0.316457 -0.102739 }
+          <Binormal> { -0.303531 -0.867761 -0.113196 }
+        }
+        <Normal> { -0.302042 -0.018677 0.953093 }
+      }
+      <Vertex> 2695 {
+        -0.0303617715836 0.335300177336 3.1245663166
+        <UV>  {
+          0.151773 0.367049
+          <Tangent> { 0.904106 -0.162365 0.395259 }
+          <Binormal> { -0.006576 -0.844557 -0.331885 }
+        }
+        <Normal> { -0.007874 -0.365673 0.930692 }
+      }
+      <Vertex> 2696 {
+        -0.0994579717517 0.412237197161 3.08552098274
+        <UV>  {
+          0.175280 0.357923
+          <Tangent> { 0.064178 -0.468907 0.880913 }
+          <Binormal> { 0.656052 -0.251078 -0.181444 }
+        }
+        <Normal> { -0.262093 -0.912259 0.314707 }
+      }
+      <Vertex> 2697 {
+        -0.0994579717517 0.412237197161 3.08552098274
+        <UV>  {
+          0.175280 0.357923
+          <Tangent> { 0.064178 -0.468907 0.880913 }
+          <Binormal> { 0.656052 -0.251078 -0.181444 }
+        }
+        <Normal> { -0.262093 -0.912259 0.314707 }
+      }
+      <Vertex> 2698 {
+        -0.0828813314438 0.509793043137 3.08552098274
+        <UV>  {
+          0.191012 0.329346
+          <Tangent> { 0.361244 -0.444416 0.819754 }
+          <Binormal> { 0.311920 -0.357144 -0.331075 }
+        }
+        <Normal> { -0.145207 -0.737846 0.659139 }
+      }
+      <Vertex> 2699 {
+        -0.0631662532687 0.465548366308 3.00812077522
+        <UV>  {
+          0.191650 0.360063
+          <Tangent> { -0.044590 -0.196030 0.979584 }
+          <Binormal> { 0.984731 0.077554 0.060344 }
+        }
+        <Normal> { 0.081393 -0.995483 -0.048830 }
+      }
+      <Vertex> 2700 {
+        -0.0631662532687 0.465548366308 3.00812077522
+        <UV>  {
+          0.191650 0.360063
+          <Tangent> { -0.044590 -0.196030 0.979584 }
+          <Binormal> { 0.984731 0.077554 0.060344 }
+        }
+        <Normal> { 0.081393 -0.995483 -0.048830 }
+      }
+      <Vertex> 2701 {
+        -0.0828813314438 0.509793043137 3.08552098274
+        <UV>  {
+          0.191012 0.329346
+          <Tangent> { 0.361244 -0.444416 0.819754 }
+          <Binormal> { 0.311920 -0.357144 -0.331075 }
+        }
+        <Normal> { -0.145207 -0.737846 0.659139 }
+      }
+      <Vertex> 2702 {
+        -0.0714256167412 0.337689340115 2.88359451294
+        <UV>  {
+          0.202864 0.402525
+          <Tangent> { -0.430504 -0.549384 0.716131 }
+          <Binormal> { 0.899132 -0.294685 0.314446 }
+        }
+        <Normal> { -0.005585 -0.737541 -0.675222 }
+      }
+      <Vertex> 2703 {
+        -0.0828813314438 0.509793043137 3.08552098274
+        <UV>  {
+          0.191012 0.329346
+          <Tangent> { 0.361244 -0.444416 0.819754 }
+          <Binormal> { 0.311920 -0.357144 -0.331075 }
+        }
+        <Normal> { -0.145207 -0.737846 0.659139 }
+      }
+      <Vertex> 2704 {
+        -0.0756552517414 0.512005329132 3.00812077522
+        <UV>  {
+          0.204952 0.342653
+          <Tangent> { -0.428761 -0.517120 0.740778 }
+          <Binormal> { 0.793293 -0.404004 0.177131 }
+        }
+        <Normal> { -0.387585 -0.880581 -0.272622 }
+      }
+      <Vertex> 2705 {
+        -0.0714256167412 0.337689340115 2.88359451294
+        <UV>  {
+          0.202864 0.402525
+          <Tangent> { -0.430504 -0.549384 0.716131 }
+          <Binormal> { 0.899132 -0.294685 0.314446 }
+        }
+        <Normal> { -0.005585 -0.737541 -0.675222 }
+      }
+      <Vertex> 2706 {
+        5.58875126444e-06 0.516267359257 2.88359451294
+        <UV>  {
+          0.235894 0.366149
+          <Tangent> { -0.771117 -0.471886 0.427437 }
+          <Binormal> { 0.575961 -0.723353 0.240487 }
+        }
+        <Normal> { -0.423353 -0.570940 -0.703391 }
+      }
+      <Vertex> 2707 {
+        -0.0714256167412 0.337689340115 2.88359451294
+        <UV>  {
+          0.202864 0.402525
+          <Tangent> { -0.430504 -0.549384 0.716131 }
+          <Binormal> { 0.899132 -0.294685 0.314446 }
+        }
+        <Normal> { -0.005585 -0.737541 -0.675222 }
+      }
+      <Vertex> 2708 {
+        -0.0756552517414 0.512005329132 3.00812077522
+        <UV>  {
+          0.204952 0.342653
+          <Tangent> { -0.428761 -0.517120 0.740778 }
+          <Binormal> { 0.793293 -0.404004 0.177131 }
+        }
+        <Normal> { -0.387585 -0.880581 -0.272622 }
+      }
+      <Vertex> 2709 {
+        5.58875126444e-06 0.516267359257 2.88359451294
+        <UV>  {
+          0.235894 0.366149
+          <Tangent> { -0.771117 -0.471886 0.427437 }
+          <Binormal> { 0.575961 -0.723353 0.240487 }
+        }
+        <Normal> { -0.423353 -0.570940 -0.703391 }
+      }
+      <Vertex> 2710 {
+        0.186766326427 0.455160170794 2.80663251877
+        <UV>  {
+          0.282914 0.432136
+          <Tangent> { -0.884693 -0.398760 0.241470 }
+          <Binormal> { 0.450231 -0.862364 0.225452 }
+        }
+        <Normal> { -0.164922 -0.329173 -0.929746 }
+      }
+      <Vertex> 2711 {
+        0.156073227525 0.378427445889 2.80663251877
+        <UV>  {
+          0.260976 0.459011
+          <Tangent> { -0.640352 -0.748605 0.171870 }
+          <Binormal> { 0.760371 -0.615682 0.151293 }
+        }
+        <Normal> { -0.082736 -0.332987 -0.939268 }
+      }
+      <Vertex> 2712 {
+        0.156073227525 0.378427445889 2.80663251877
+        <UV>  {
+          0.260976 0.459011
+          <Tangent> { -0.640352 -0.748605 0.171870 }
+          <Binormal> { 0.760371 -0.615682 0.151293 }
+        }
+        <Normal> { -0.082736 -0.332987 -0.939268 }
+      }
+      <Vertex> 2713 {
+        -0.0714256167412 0.337689340115 2.88359451294
+        <UV>  {
+          0.202864 0.402525
+          <Tangent> { -0.430504 -0.549384 0.716131 }
+          <Binormal> { 0.899132 -0.294685 0.314446 }
+        }
+        <Normal> { -0.005585 -0.737541 -0.675222 }
+      }
+      <Vertex> 2714 {
+        5.58875126444e-06 0.516267359257 2.88359451294
+        <UV>  {
+          0.235894 0.366149
+          <Tangent> { -0.771117 -0.471886 0.427437 }
+          <Binormal> { 0.575961 -0.723353 0.240487 }
+        }
+        <Normal> { -0.423353 -0.570940 -0.703391 }
+      }
+      <Vertex> 2715 {
+        -0.0303617715836 0.335300177336 3.1245663166
+        <UV>  {
+          0.151773 0.367049
+          <Tangent> { 0.904106 -0.162365 0.395259 }
+          <Binormal> { -0.006576 -0.844557 -0.331885 }
+        }
+        <Normal> { -0.007874 -0.365673 0.930692 }
+      }
+      <Vertex> 2716 {
+        -0.0828813314438 0.509793043137 3.08552098274
+        <UV>  {
+          0.191012 0.329346
+          <Tangent> { 0.361244 -0.444416 0.819754 }
+          <Binormal> { 0.311920 -0.357144 -0.331075 }
+        }
+        <Normal> { -0.145207 -0.737846 0.659139 }
+      }
+      <Vertex> 2717 {
+        -0.0994579717517 0.412237197161 3.08552098274
+        <UV>  {
+          0.175280 0.357923
+          <Tangent> { 0.064178 -0.468907 0.880913 }
+          <Binormal> { 0.656052 -0.251078 -0.181444 }
+        }
+        <Normal> { -0.262093 -0.912259 0.314707 }
+      }
+      <Vertex> 2718 {
+        -0.0303617715836 0.335300177336 3.1245663166
+        <UV>  {
+          0.151773 0.367049
+          <Tangent> { 0.904106 -0.162365 0.395259 }
+          <Binormal> { -0.006576 -0.844557 -0.331885 }
+        }
+        <Normal> { -0.007874 -0.365673 0.930692 }
+      }
+      <Vertex> 2719 {
+        0.0410694330931 0.513878166676 3.1245663166
+        <UV>  {
+          0.170288 0.291090
+          <Tangent> { 0.548580 -0.769998 0.325826 }
+          <Binormal> { -0.621599 -0.572641 -0.306715 }
+        }
+        <Normal> { -0.182623 -0.302774 0.935392 }
+      }
+      <Vertex> 2720 {
+        -0.0828813314438 0.509793043137 3.08552098274
+        <UV>  {
+          0.191012 0.329346
+          <Tangent> { 0.361244 -0.444416 0.819754 }
+          <Binormal> { 0.311920 -0.357144 -0.331075 }
+        }
+        <Normal> { -0.145207 -0.737846 0.659139 }
+      }
+      <Vertex> 2721 {
+        -0.0828813314438 0.509793043137 3.08552098274
+        <UV>  {
+          0.191012 0.329346
+          <Tangent> { 0.361244 -0.444416 0.819754 }
+          <Binormal> { 0.311920 -0.357144 -0.331075 }
+        }
+        <Normal> { -0.145207 -0.737846 0.659139 }
+      }
+      <Vertex> 2722 {
+        -0.00379678653553 0.642450928688 3.08041882515
+        <UV>  {
+          0.215527 0.282604
+          <Tangent> { -0.280170 -0.652868 0.703753 }
+          <Binormal> { 0.359374 -0.353766 -0.185117 }
+        }
+        <Normal> { -0.606128 -0.751701 0.259835 }
+      }
+      <Vertex> 2723 {
+        -0.0756552517414 0.512005329132 3.00812077522
+        <UV>  {
+          0.204952 0.342653
+          <Tangent> { -0.428761 -0.517120 0.740778 }
+          <Binormal> { 0.793293 -0.404004 0.177131 }
+        }
+        <Normal> { -0.387585 -0.880581 -0.272622 }
+      }
+      <Vertex> 2724 {
+        -0.0756552517414 0.512005329132 3.00812077522
+        <UV>  {
+          0.204952 0.342653
+          <Tangent> { -0.428761 -0.517120 0.740778 }
+          <Binormal> { 0.793293 -0.404004 0.177131 }
+        }
+        <Normal> { -0.387585 -0.880581 -0.272622 }
+      }
+      <Vertex> 2725 {
+        -0.00379678653553 0.642450928688 3.08041882515
+        <UV>  {
+          0.215527 0.282604
+          <Tangent> { -0.280170 -0.652868 0.703753 }
+          <Binormal> { 0.359374 -0.353766 -0.185117 }
+        }
+        <Normal> { -0.606128 -0.751701 0.259835 }
+      }
+      <Vertex> 2726 {
+        5.58875126444e-06 0.516267359257 2.88359451294
+        <UV>  {
+          0.235894 0.366149
+          <Tangent> { -0.771117 -0.471886 0.427437 }
+          <Binormal> { 0.575961 -0.723353 0.240487 }
+        }
+        <Normal> { -0.423353 -0.570940 -0.703391 }
+      }
+      <Vertex> 2727 {
+        -0.00379678653553 0.642450928688 3.08041882515
+        <UV>  {
+          0.215527 0.282604
+          <Tangent> { -0.280170 -0.652868 0.703753 }
+          <Binormal> { 0.359374 -0.353766 -0.185117 }
+        }
+        <Normal> { -0.606128 -0.751701 0.259835 }
+      }
+      <Vertex> 2728 {
+        0.0541519969702 0.642112135887 3.00301837921
+        <UV>  {
+          0.241339 0.298054
+          <Tangent> { -0.784418 -0.368522 0.498879 }
+          <Binormal> { 0.458875 -0.679868 0.219300 }
+        }
+        <Normal> { -0.672750 -0.595630 -0.438856 }
+      }
+      <Vertex> 2729 {
+        5.58875126444e-06 0.516267359257 2.88359451294
+        <UV>  {
+          0.235894 0.366149
+          <Tangent> { -0.771117 -0.471886 0.427437 }
+          <Binormal> { 0.575961 -0.723353 0.240487 }
+        }
+        <Normal> { -0.423353 -0.570940 -0.703391 }
+      }
+      <Vertex> 2730 {
+        0.169806033373 0.648925244808 2.85298109055
+        <UV>  {
+          0.296765 0.337303
+          <Tangent> { -0.852346 -0.404570 0.331406 }
+          <Binormal> { 0.460904 -0.779095 0.234309 }
+        }
+        <Normal> { -0.465529 -0.495865 -0.733055 }
+      }
+      <Vertex> 2731 {
+        5.58875126444e-06 0.516267359257 2.88359451294
+        <UV>  {
+          0.235894 0.366149
+          <Tangent> { -0.771117 -0.471886 0.427437 }
+          <Binormal> { 0.575961 -0.723353 0.240487 }
+        }
+        <Normal> { -0.423353 -0.570940 -0.703391 }
+      }
+      <Vertex> 2732 {
+        0.0541519969702 0.642112135887 3.00301837921
+        <UV>  {
+          0.241339 0.298054
+          <Tangent> { -0.784418 -0.368522 0.498879 }
+          <Binormal> { 0.458875 -0.679868 0.219300 }
+        }
+        <Normal> { -0.672750 -0.595630 -0.438856 }
+      }
+      <Vertex> 2733 {
+        0.186766326427 0.455160170794 2.80663251877
+        <UV>  {
+          0.282914 0.432136
+          <Tangent> { -0.884693 -0.398760 0.241470 }
+          <Binormal> { 0.450231 -0.862364 0.225452 }
+        }
+        <Normal> { -0.164922 -0.329173 -0.929746 }
+      }
+      <Vertex> 2734 {
+        5.58875126444e-06 0.516267359257 2.88359451294
+        <UV>  {
+          0.235894 0.366149
+          <Tangent> { -0.771117 -0.471886 0.427437 }
+          <Binormal> { 0.575961 -0.723353 0.240487 }
+        }
+        <Normal> { -0.423353 -0.570940 -0.703391 }
+      }
+      <Vertex> 2735 {
+        0.169806033373 0.648925244808 2.85298109055
+        <UV>  {
+          0.296765 0.337303
+          <Tangent> { -0.852346 -0.404570 0.331406 }
+          <Binormal> { 0.460904 -0.779095 0.234309 }
+        }
+        <Normal> { -0.465529 -0.495865 -0.733055 }
+      }
+      <Vertex> 2736 {
+        0.0410694330931 0.513878166676 3.1245663166
+        <UV>  {
+          0.170288 0.291090
+          <Tangent> { 0.548580 -0.769998 0.325826 }
+          <Binormal> { -0.621599 -0.572641 -0.306715 }
+        }
+        <Normal> { -0.182623 -0.302774 0.935392 }
+      }
+      <Vertex> 2737 {
+        -0.00379678653553 0.642450928688 3.08041882515
+        <UV>  {
+          0.215527 0.282604
+          <Tangent> { -0.280170 -0.652868 0.703753 }
+          <Binormal> { 0.359374 -0.353766 -0.185117 }
+        }
+        <Normal> { -0.606128 -0.751701 0.259835 }
+      }
+      <Vertex> 2738 {
+        -0.0828813314438 0.509793043137 3.08552098274
+        <UV>  {
+          0.191012 0.329346
+          <Tangent> { 0.361244 -0.444416 0.819754 }
+          <Binormal> { 0.311920 -0.357144 -0.331075 }
+        }
+        <Normal> { -0.145207 -0.737846 0.659139 }
+      }
+      <Vertex> 2739 {
+        0.0410694330931 0.513878166676 3.1245663166
+        <UV>  {
+          0.170288 0.291090
+          <Tangent> { 0.548580 -0.769998 0.325826 }
+          <Binormal> { -0.621599 -0.572641 -0.306715 }
+        }
+        <Normal> { -0.182623 -0.302774 0.935392 }
+      }
+      <Vertex> 2740 {
+        0.117602862418 0.646536111832 3.11946415901
+        <UV>  {
+          0.195756 0.233487
+          <Tangent> { 0.431570 -0.838131 0.333593 }
+          <Binormal> { -0.676000 -0.471328 -0.309639 }
+        }
+        <Normal> { -0.212043 -0.305673 0.928220 }
+      }
+      <Vertex> 2741 {
+        -0.00379678653553 0.642450928688 3.08041882515
+        <UV>  {
+          0.215527 0.282604
+          <Tangent> { -0.280170 -0.652868 0.703753 }
+          <Binormal> { 0.359374 -0.353766 -0.185117 }
+        }
+        <Normal> { -0.606128 -0.751701 0.259835 }
+      }
+      <Vertex> 2742 {
+        0.24643099308 0.0252918247133 2.93505525589
+        <UV>  {
+          0.546343 0.753374
+          <Tangent> { -0.000000 -1.000000 -0.000000 }
+          <Binormal> { -0.408948 0.000000 -0.408094 }
+        }
+        <Normal> { -0.408094 0.816187 0.408948 }
+      }
+      <Vertex> 2743 {
+        0.24643099308 -0.00532154506072 2.93505525589
+        <UV>  {
+          0.499953 0.753374
+          <Tangent> { -0.000000 -1.000000 -0.000000 }
+          <Binormal> { -0.668294 -0.000000 0.665334 }
+        }
+        <Normal> { 0.665334 0.332652 0.668294 }
+      }
+      <Vertex> 2744 {
+        0.246311411262 -0.00572015671059 2.85852169991
+        <UV>  {
+          0.499953 0.706984
+          <Tangent> { 0.877034 -0.480429 -0.000000 }
+          <Binormal> { 0.320100 0.584350 0.745150 }
+        }
+        <Normal> { 0.333476 0.666951 -0.666280 }
+      }
+      <Vertex> 2745 {
+        0.246311411262 -0.00572015671059 2.85852169991
+        <UV>  {
+          0.546343 0.753374
+          <Tangent> { -0.871742 0.489966 0.000000 }
+          <Binormal> { -0.326455 -0.580824 -0.744801 }
+        }
+        <Normal> { 0.333476 0.666951 -0.666280 }
+      }
+      <Vertex> 2746 {
+        0.246311411262 0.0256904363632 2.85852169991
+        <UV>  {
+          0.499953 0.753374
+          <Tangent> { 0.871742 0.489966 0.000000 }
+          <Binormal> { -0.198546 0.353251 0.757027 }
+        }
+        <Normal> { -0.817682 0.408826 -0.405225 }
+      }
+      <Vertex> 2747 {
+        0.24643099308 0.0252918247133 2.93505525589
+        <UV>  {
+          0.499953 0.706984
+          <Tangent> { 0.000000 1.000000 0.000000 }
+          <Binormal> { 0.408948 -0.000000 0.408094 }
+        }
+        <Normal> { -0.408094 0.816187 0.408948 }
+      }
+      <Vertex> 2748 {
+        0.205613166094 0.025291826576 2.93505525589
+        <UV>  {
+          0.546343 0.753374
+          <Tangent> { 0.800000 -0.600000 -0.000000 }
+          <Binormal> { -0.422089 -0.562786 -0.633180 }
+        }
+        <Normal> { -0.638050 -0.312937 0.703482 }
+      }
+      <Vertex> 2749 {
+        0.24643099308 0.0252918247133 2.93505525589
+        <UV>  {
+          0.499953 0.753374
+          <Tangent> { 0.800000 0.600000 -0.000000 }
+          <Binormal> { 0.245369 -0.327158 0.897806 }
+        }
+        <Normal> { -0.408094 0.816187 0.408948 }
+      }
+      <Vertex> 2750 {
+        0.246311411262 0.0256904363632 2.85852169991
+        <UV>  {
+          0.499953 0.706984
+          <Tangent> { 1.000000 -0.000000 -0.000000 }
+          <Binormal> { 0.000000 0.405225 0.408826 }
+        }
+        <Normal> { -0.817682 0.408826 -0.405225 }
+      }
+      <Vertex> 2751 {
+        0.246311411262 0.0256904363632 2.85852169991
+        <UV>  {
+          0.546343 0.753374
+          <Tangent> { -1.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.405225 -0.408826 }
+        }
+        <Normal> { -0.817682 0.408826 -0.405225 }
+      }
+      <Vertex> 2752 {
+        0.190426066518 0.0256904400885 2.85852169991
+        <UV>  {
+          0.499953 0.753374
+          <Tangent> { -1.000000 0.000000 0.000000 }
+          <Binormal> { -0.000000 -0.589129 0.719871 }
+        }
+        <Normal> { -0.366955 -0.719871 -0.589129 }
+      }
+      <Vertex> 2753 {
+        0.205613166094 0.025291826576 2.93505525589
+        <UV>  {
+          0.499953 0.706984
+          <Tangent> { -0.877034 0.480429 0.000000 }
+          <Binormal> { 0.337973 0.616977 0.580994 }
+        }
+        <Normal> { -0.638050 -0.312937 0.703482 }
+      }
+      <Vertex> 2754 {
+        0.205613166094 -0.00532154319808 2.93505525589
+        <UV>  {
+          0.546343 0.753374
+          <Tangent> { -0.000000 1.000000 -0.000000 }
+          <Binormal> { 0.535020 -0.000000 -0.383648 }
+        }
+        <Normal> { 0.383648 -0.752678 0.535020 }
+      }
+      <Vertex> 2755 {
+        0.205613166094 0.025291826576 2.93505525589
+        <UV>  {
+          0.499953 0.753374
+          <Tangent> { -0.000000 1.000000 -0.000000 }
+          <Binormal> { 0.703482 0.000000 0.638050 }
+        }
+        <Normal> { -0.638050 -0.312937 0.703482 }
+      }
+      <Vertex> 2756 {
+        0.190426066518 0.0256904400885 2.85852169991
+        <UV>  {
+          0.499953 0.706984
+          <Tangent> { -0.877034 0.480429 -0.000000 }
+          <Binormal> { -0.283035 -0.516686 0.807646 }
+        }
+        <Normal> { -0.366955 -0.719871 -0.589129 }
+      }
+      <Vertex> 2757 {
+        0.190426066518 0.0256904400885 2.85852169991
+        <UV>  {
+          0.546343 0.753374
+          <Tangent> { 0.871742 -0.489966 0.000000 }
+          <Binormal> { 0.288653 0.513569 -0.807336 }
+        }
+        <Normal> { -0.366955 -0.719871 -0.589129 }
+      }
+      <Vertex> 2758 {
+        0.190426066518 -0.00572015391663 2.85852169991
+        <UV>  {
+          0.499953 0.753374
+          <Tangent> { -0.871742 -0.489966 0.000000 }
+          <Binormal> { 0.164678 -0.292993 0.775829 }
+        }
+        <Normal> { 0.845576 -0.414716 -0.336100 }
+      }
+      <Vertex> 2759 {
+        0.205613166094 -0.00532154319808 2.93505525589
+        <UV>  {
+          0.499953 0.706984
+          <Tangent> { 0.000000 -1.000000 0.000000 }
+          <Binormal> { -0.535020 -0.000000 0.383648 }
+        }
+        <Normal> { 0.383648 -0.752678 0.535020 }
+      }
+      <Vertex> 2760 {
+        0.24643099308 -0.00532154506072 2.93505525589
+        <UV>  {
+          0.546343 0.753374
+          <Tangent> { -0.800000 0.600000 -0.000000 }
+          <Binormal> { 0.400977 0.534635 -0.665322 }
+        }
+        <Normal> { 0.665334 0.332652 0.668294 }
+      }
+      <Vertex> 2761 {
+        0.205613166094 -0.00532154319808 2.93505525589
+        <UV>  {
+          0.499953 0.753374
+          <Tangent> { -0.800000 -0.600000 -0.000000 }
+          <Binormal> { -0.321012 0.428016 0.832331 }
+        }
+        <Normal> { 0.383648 -0.752678 0.535020 }
+      }
+      <Vertex> 2762 {
+        0.190426066518 -0.00572015391663 2.85852169991
+        <UV>  {
+          0.499953 0.706984
+          <Tangent> { -1.000000 0.000000 -0.000000 }
+          <Binormal> { -0.000000 -0.336100 0.414716 }
+        }
+        <Normal> { 0.845576 -0.414716 -0.336100 }
+      }
+      <Vertex> 2763 {
+        0.190426066518 -0.00572015391663 2.85852169991
+        <UV>  {
+          0.546343 0.753374
+          <Tangent> { 1.000000 -0.000000 0.000000 }
+          <Binormal> { 0.000000 0.336100 -0.414716 }
+        }
+        <Normal> { 0.845576 -0.414716 -0.336100 }
+      }
+      <Vertex> 2764 {
+        0.246311411262 -0.00572015671059 2.85852169991
+        <UV>  {
+          0.499953 0.753374
+          <Tangent> { 1.000000 -0.000000 0.000000 }
+          <Binormal> { 0.000000 0.666280 0.666951 }
+        }
+        <Normal> { 0.333476 0.666951 -0.666280 }
+      }
+      <Vertex> 2765 {
+        0.24643099308 -0.00532154506072 2.93505525589
+        <UV>  {
+          0.499953 0.706984
+          <Tangent> { 0.877034 -0.480429 0.000000 }
+          <Binormal> { -0.321068 -0.586116 0.611393 }
+        }
+        <Normal> { 0.665334 0.332652 0.668294 }
+      }
+      <Vertex> 2766 {
+        0.205613166094 0.025291826576 2.93505525589
+        <UV>  {
+          0.546343 0.753374
+          <Tangent> { 0.800000 -0.600000 -0.000000 }
+          <Binormal> { -0.422089 -0.562786 -0.633180 }
+        }
+        <Normal> { -0.638050 -0.312937 0.703482 }
+      }
+      <Vertex> 2767 {
+        0.205613166094 -0.00532154319808 2.93505525589
+        <UV>  {
+          0.499953 0.753374
+          <Tangent> { -0.800000 -0.600000 -0.000000 }
+          <Binormal> { -0.321012 0.428016 0.832331 }
+        }
+        <Normal> { 0.383648 -0.752678 0.535020 }
+      }
+      <Vertex> 2768 {
+        0.24643099308 -0.00532154506072 2.93505525589
+        <UV>  {
+          0.499953 0.706984
+          <Tangent> { 0.877034 -0.480429 0.000000 }
+          <Binormal> { -0.321068 -0.586116 0.611393 }
+        }
+        <Normal> { 0.665334 0.332652 0.668294 }
+      }
+      <Vertex> 2769 {
+        0.24643099308 -0.00532154506072 2.93505525589
+        <UV>  {
+          0.546343 0.753374
+          <Tangent> { -0.800000 0.600000 -0.000000 }
+          <Binormal> { 0.400977 0.534635 -0.665322 }
+        }
+        <Normal> { 0.665334 0.332652 0.668294 }
+      }
+      <Vertex> 2770 {
+        0.24643099308 0.0252918247133 2.93505525589
+        <UV>  {
+          0.499953 0.753374
+          <Tangent> { 0.800000 0.600000 -0.000000 }
+          <Binormal> { 0.245369 -0.327158 0.897806 }
+        }
+        <Normal> { -0.408094 0.816187 0.408948 }
+      }
+      <Vertex> 2771 {
+        0.205613166094 0.025291826576 2.93505525589
+        <UV>  {
+          0.499953 0.706984
+          <Tangent> { -0.877034 0.480429 0.000000 }
+          <Binormal> { 0.337973 0.616977 0.580994 }
+        }
+        <Normal> { -0.638050 -0.312937 0.703482 }
+      }
+      <Vertex> 2772 {
+        0.190426066518 0.0256904400885 2.85852169991
+        <UV>  {
+          0.546343 0.753374
+          <Tangent> { 0.871742 -0.489966 0.000000 }
+          <Binormal> { 0.288653 0.513569 -0.807336 }
+        }
+        <Normal> { -0.366955 -0.719871 -0.589129 }
+      }
+      <Vertex> 2773 {
+        0.246311411262 0.0256904363632 2.85852169991
+        <UV>  {
+          0.499953 0.753374
+          <Tangent> { 0.871742 0.489966 0.000000 }
+          <Binormal> { -0.198546 0.353251 0.757027 }
+        }
+        <Normal> { -0.817682 0.408826 -0.405225 }
+      }
+      <Vertex> 2774 {
+        0.246311411262 -0.00572015671059 2.85852169991
+        <UV>  {
+          0.499953 0.706984
+          <Tangent> { 0.877034 -0.480429 -0.000000 }
+          <Binormal> { 0.320100 0.584350 0.745150 }
+        }
+        <Normal> { 0.333476 0.666951 -0.666280 }
+      }
+      <Vertex> 2775 {
+        0.246311411262 -0.00572015671059 2.85852169991
+        <UV>  {
+          0.546343 0.753374
+          <Tangent> { -0.871742 0.489966 0.000000 }
+          <Binormal> { -0.326455 -0.580824 -0.744801 }
+        }
+        <Normal> { 0.333476 0.666951 -0.666280 }
+      }
+      <Vertex> 2776 {
+        0.190426066518 -0.00572015391663 2.85852169991
+        <UV>  {
+          0.499953 0.753374
+          <Tangent> { -0.871742 -0.489966 0.000000 }
+          <Binormal> { 0.164678 -0.292993 0.775829 }
+        }
+        <Normal> { 0.845576 -0.414716 -0.336100 }
+      }
+      <Vertex> 2777 {
+        0.190426066518 0.0256904400885 2.85852169991
+        <UV>  {
+          0.499953 0.706984
+          <Tangent> { -0.877034 0.480429 -0.000000 }
+          <Binormal> { -0.283035 -0.516686 0.807646 }
+        }
+        <Normal> { -0.366955 -0.719871 -0.589129 }
+      }
+      <Vertex> 2778 {
+        0.248228475451 -0.0034985197708 2.93505525589
+        <UV>  {
+          0.546343 0.753374
+          <Tangent> { 0.052327 0.998630 -0.000000 }
+          <Binormal> { 0.317506 -0.016637 -0.427032 }
+        }
+        <Normal> { 0.382153 -0.867672 0.317942 }
+      }
+      <Vertex> 2779 {
+        0.249830394983 0.0270731206983 2.93505525589
+        <UV>  {
+          0.499953 0.753374
+          <Tangent> { 0.052327 0.998630 -0.000000 }
+          <Binormal> { 0.639614 -0.033515 0.689686 }
+        }
+        <Normal> { -0.706412 -0.301157 0.640492 }
+      }
+      <Vertex> 2780 {
+        0.260147601366 0.0263967253268 2.85852169991
+        <UV>  {
+          0.499953 0.706984
+          <Tangent> { -0.795686 0.605710 -0.000000 }
+          <Binormal> { -0.433833 -0.569901 0.692025 }
+        }
+        <Normal> { -0.347911 -0.604877 -0.716239 }
+      }
+      <Vertex> 2781 {
+        0.260147601366 0.0263967253268 2.85852169991
+        <UV>  {
+          0.546343 0.753374
+          <Tangent> { 0.788466 -0.615078 0.000000 }
+          <Binormal> { 0.440543 0.564730 -0.690917 }
+        }
+        <Normal> { -0.347911 -0.604877 -0.716239 }
+      }
+      <Vertex> 2782 {
+        0.258503317833 -0.00497089186683 2.85852169991
+        <UV>  {
+          0.499953 0.753374
+          <Tangent> { -0.856743 -0.515744 0.000000 }
+          <Binormal> { 0.228384 -0.379386 0.781698 }
+        }
+        <Normal> { 0.779351 -0.443251 -0.442824 }
+      }
+      <Vertex> 2783 {
+        0.248228475451 -0.0034985197708 2.93505525589
+        <UV>  {
+          0.499953 0.706984
+          <Tangent> { -0.052348 -0.998629 0.000000 }
+          <Binormal> { -0.317506 0.016644 0.427050 }
+        }
+        <Normal> { 0.382153 -0.867672 0.317942 }
+      }
+      <Vertex> 2784 {
+        0.288990259171 -0.00563483079895 2.93505525589
+        <UV>  {
+          0.546343 0.753374
+          <Tangent> { -0.767501 0.641048 -0.000000 }
+          <Binormal> { 0.453470 0.542921 -0.628202 }
+        }
+        <Normal> { 0.651295 0.274514 0.707389 }
+      }
+      <Vertex> 2785 {
+        0.248228475451 -0.0034985197708 2.93505525589
+        <UV>  {
+          0.499953 0.753374
+          <Tangent> { -0.830302 -0.557314 -0.000000 }
+          <Binormal> { -0.177194 0.263988 0.933408 }
+        }
+        <Normal> { 0.382153 -0.867672 0.317942 }
+      }
+      <Vertex> 2786 {
+        0.258503317833 -0.00497089186683 2.85852169991
+        <UV>  {
+          0.499953 0.706984
+          <Tangent> { -0.998629 0.052338 -0.000000 }
+          <Binormal> { -0.023176 -0.442217 0.401854 }
+        }
+        <Normal> { 0.779351 -0.443251 -0.442824 }
+      }
+      <Vertex> 2787 {
+        0.258503317833 -0.00497089186683 2.85852169991
+        <UV>  {
+          0.546343 0.753374
+          <Tangent> { 0.997950 -0.064003 0.000000 }
+          <Binormal> { 0.028342 0.441916 -0.392461 }
+        }
+        <Normal> { 0.779351 -0.443251 -0.442824 }
+      }
+      <Vertex> 2788 {
+        0.304107606411 -0.00789570622146 2.85852169991
+        <UV>  {
+          0.499953 0.753374
+          <Tangent> { 0.997950 -0.064003 0.000000 }
+          <Binormal> { 0.037636 0.586825 0.723985 }
+        }
+        <Normal> { 0.406171 0.699423 -0.588031 }
+      }
+      <Vertex> 2789 {
+        0.288990259171 -0.00563483079895 2.93505525589
+        <UV>  {
+          0.499953 0.706984
+          <Tangent> { 0.795686 -0.605710 0.000000 }
+          <Binormal> { -0.428472 -0.562859 0.612923 }
+        }
+        <Normal> { 0.651295 0.274514 0.707389 }
+      }
+      <Vertex> 2790 {
+        0.290592163801 0.0249368101358 2.93505525589
+        <UV>  {
+          0.546343 0.753374
+          <Tangent> { -0.052327 -0.998630 -0.000000 }
+          <Binormal> { -0.530660 0.027806 -0.384694 }
+        }
+        <Normal> { -0.344676 0.773797 0.531388 }
+      }
+      <Vertex> 2791 {
+        0.288990259171 -0.00563483079895 2.93505525589
+        <UV>  {
+          0.499953 0.753374
+          <Tangent> { -0.052327 -0.998630 -0.000000 }
+          <Binormal> { -0.706419 0.037015 0.636039 }
+        }
+        <Normal> { 0.651295 0.274514 0.707389 }
+      }
+      <Vertex> 2792 {
+        0.304107606411 -0.00789570622146 2.85852169991
+        <UV>  {
+          0.499953 0.706984
+          <Tangent> { 0.795682 -0.605715 -0.000000 }
+          <Binormal> { 0.356179 0.467885 0.802542 }
+        }
+        <Normal> { 0.406171 0.699423 -0.588031 }
+      }
+      <Vertex> 2793 {
+        0.304107606411 -0.00789570622146 2.85852169991
+        <UV>  {
+          0.546343 0.753374
+          <Tangent> { -0.788475 0.615067 0.000000 }
+          <Binormal> { -0.361678 -0.463648 -0.801300 }
+        }
+        <Normal> { 0.406171 0.699423 -0.588031 }
+      }
+      <Vertex> 2794 {
+        0.305751234293 0.0234719123691 2.85852169991
+        <UV>  {
+          0.499953 0.753374
+          <Tangent> { 0.856736 0.515755 0.000000 }
+          <Binormal> { -0.176651 0.293440 0.817209 }
+        }
+        <Normal> { -0.818537 0.461104 -0.342509 }
+      }
+      <Vertex> 2795 {
+        0.290592163801 0.0249368101358 2.93505525589
+        <UV>  {
+          0.499953 0.706984
+          <Tangent> { 0.052327 0.998630 0.000000 }
+          <Binormal> { 0.530660 -0.027806 0.384694 }
+        }
+        <Normal> { -0.344676 0.773797 0.531388 }
+      }
+      <Vertex> 2796 {
+        0.249830394983 0.0270731206983 2.93505525589
+        <UV>  {
+          0.546343 0.753374
+          <Tangent> { 0.767500 -0.641049 -0.000000 }
+          <Binormal> { -0.410586 -0.491578 -0.683982 }
+        }
+        <Normal> { -0.706412 -0.301157 0.640492 }
+      }
+      <Vertex> 2797 {
+        0.290592163801 0.0249368101358 2.93505525589
+        <UV>  {
+          0.499953 0.753374
+          <Tangent> { 0.830301 0.557315 -0.000000 }
+          <Binormal> { 0.296151 -0.441212 0.834578 }
+        }
+        <Normal> { -0.344676 0.773797 0.531388 }
+      }
+      <Vertex> 2798 {
+        0.305751234293 0.0234719123691 2.85852169991
+        <UV>  {
+          0.499953 0.706984
+          <Tangent> { 0.998629 -0.052338 -0.000000 }
+          <Binormal> { 0.017926 0.342040 0.417632 }
+        }
+        <Normal> { -0.818537 0.461104 -0.342509 }
+      }
+      <Vertex> 2799 {
+        0.305751234293 0.0234719123691 2.85852169991
+        <UV>  {
+          0.546343 0.753374
+          <Tangent> { -0.997950 0.064004 0.000000 }
+          <Binormal> { -0.021922 -0.341807 -0.407769 }
+        }
+        <Normal> { -0.818537 0.461104 -0.342509 }
+      }
+      <Vertex> 2800 {
+        0.260147601366 0.0263967253268 2.85852169991
+        <UV>  {
+          0.499953 0.753374
+          <Tangent> { -0.997950 0.064004 0.000000 }
+          <Binormal> { -0.045842 -0.714770 0.625904 }
+        }
+        <Normal> { -0.347911 -0.604877 -0.716239 }
+      }
+      <Vertex> 2801 {
+        0.249830394983 0.0270731206983 2.93505525589
+        <UV>  {
+          0.499953 0.706984
+          <Tangent> { -0.795682 0.605715 0.000000 }
+          <Binormal> { 0.387956 0.509628 0.667509 }
+        }
+        <Normal> { -0.706412 -0.301157 0.640492 }
+      }
+      <Vertex> 2802 {
+        0.288990259171 -0.00563483079895 2.93505525589
+        <UV>  {
+          0.546343 0.753374
+          <Tangent> { -0.767501 0.641048 -0.000000 }
+          <Binormal> { 0.453470 0.542921 -0.628202 }
+        }
+        <Normal> { 0.651295 0.274514 0.707389 }
+      }
+      <Vertex> 2803 {
+        0.290592163801 0.0249368101358 2.93505525589
+        <UV>  {
+          0.499953 0.753374
+          <Tangent> { 0.830301 0.557315 -0.000000 }
+          <Binormal> { 0.296151 -0.441212 0.834578 }
+        }
+        <Normal> { -0.344676 0.773797 0.531388 }
+      }
+      <Vertex> 2804 {
+        0.249830394983 0.0270731206983 2.93505525589
+        <UV>  {
+          0.499953 0.706984
+          <Tangent> { -0.795682 0.605715 0.000000 }
+          <Binormal> { 0.387956 0.509628 0.667509 }
+        }
+        <Normal> { -0.706412 -0.301157 0.640492 }
+      }
+      <Vertex> 2805 {
+        0.249830394983 0.0270731206983 2.93505525589
+        <UV>  {
+          0.546343 0.753374
+          <Tangent> { 0.767500 -0.641049 -0.000000 }
+          <Binormal> { -0.410586 -0.491578 -0.683982 }
+        }
+        <Normal> { -0.706412 -0.301157 0.640492 }
+      }
+      <Vertex> 2806 {
+        0.248228475451 -0.0034985197708 2.93505525589
+        <UV>  {
+          0.499953 0.753374
+          <Tangent> { -0.830302 -0.557314 -0.000000 }
+          <Binormal> { -0.177194 0.263988 0.933408 }
+        }
+        <Normal> { 0.382153 -0.867672 0.317942 }
+      }
+      <Vertex> 2807 {
+        0.288990259171 -0.00563483079895 2.93505525589
+        <UV>  {
+          0.499953 0.706984
+          <Tangent> { 0.795686 -0.605710 0.000000 }
+          <Binormal> { -0.428472 -0.562859 0.612923 }
+        }
+        <Normal> { 0.651295 0.274514 0.707389 }
+      }
+      <Vertex> 2808 {
+        0.304107606411 -0.00789570622146 2.85852169991
+        <UV>  {
+          0.546343 0.753374
+          <Tangent> { -0.788475 0.615067 0.000000 }
+          <Binormal> { -0.361678 -0.463648 -0.801300 }
+        }
+        <Normal> { 0.406171 0.699423 -0.588031 }
+      }
+      <Vertex> 2809 {
+        0.258503317833 -0.00497089186683 2.85852169991
+        <UV>  {
+          0.499953 0.753374
+          <Tangent> { -0.856743 -0.515744 0.000000 }
+          <Binormal> { 0.228384 -0.379386 0.781698 }
+        }
+        <Normal> { 0.779351 -0.443251 -0.442824 }
+      }
+      <Vertex> 2810 {
+        0.260147601366 0.0263967253268 2.85852169991
+        <UV>  {
+          0.499953 0.706984
+          <Tangent> { -0.795686 0.605710 -0.000000 }
+          <Binormal> { -0.433833 -0.569901 0.692025 }
+        }
+        <Normal> { -0.347911 -0.604877 -0.716239 }
+      }
+      <Vertex> 2811 {
+        0.260147601366 0.0263967253268 2.85852169991
+        <UV>  {
+          0.546343 0.753374
+          <Tangent> { 0.788466 -0.615078 0.000000 }
+          <Binormal> { 0.440543 0.564730 -0.690917 }
+        }
+        <Normal> { -0.347911 -0.604877 -0.716239 }
+      }
+      <Vertex> 2812 {
+        0.305751234293 0.0234719123691 2.85852169991
+        <UV>  {
+          0.499953 0.753374
+          <Tangent> { 0.856736 0.515755 0.000000 }
+          <Binormal> { -0.176651 0.293440 0.817209 }
+        }
+        <Normal> { -0.818537 0.461104 -0.342509 }
+      }
+      <Vertex> 2813 {
+        0.304107606411 -0.00789570622146 2.85852169991
+        <UV>  {
+          0.499953 0.706984
+          <Tangent> { 0.795682 -0.605715 -0.000000 }
+          <Binormal> { 0.356179 0.467885 0.802542 }
+        }
+        <Normal> { 0.406171 0.699423 -0.588031 }
+      }
+      <Vertex> 2814 {
+        -0.0524541921914 0.383790642023 1.67912471294
+        <UV>  {
+          0.089859 0.600132
+          <Tangent> { -0.773361 0.631097 -0.060243 }
+          <Binormal> { 0.063425 0.095747 0.188819 }
+        }
+        <Normal> { 0.629292 -0.757683 0.172826 }
+      }
+      <Vertex> 2815 {
+        0.0117017161101 0.309294193983 1.53859758377
+        <UV>  {
+          0.112941 0.561337
+          <Tangent> { -0.883780 0.465307 -0.049206 }
+          <Binormal> { 0.011950 0.029907 0.068177 }
+        }
+        <Normal> { 0.848048 -0.523637 0.081057 }
+      }
+      <Vertex> 2816 {
+        0.156737163663 0.253009915352 1.87418782711
+        <UV>  {
+          0.157649 0.648286
+          <Tangent> { -0.875863 0.479741 -0.052082 }
+          <Binormal> { -0.001063 -0.001806 0.001252 }
+        }
+        <Normal> { 0.875332 -0.480880 0.049989 }
+      }
+      <Vertex> 2817 {
+        -0.0524541921914 0.383790642023 1.67912471294
+        <UV>  {
+          0.089859 0.600132
+          <Tangent> { -0.773361 0.631097 -0.060243 }
+          <Binormal> { 0.063425 0.095747 0.188819 }
+        }
+        <Normal> { 0.629292 -0.757683 0.172826 }
+      }
+      <Vertex> 2818 {
+        0.156737163663 0.253009915352 1.87418782711
+        <UV>  {
+          0.157649 0.648286
+          <Tangent> { -0.875863 0.479741 -0.052082 }
+          <Binormal> { -0.001063 -0.001806 0.001252 }
+        }
+        <Normal> { 0.875332 -0.480880 0.049989 }
+      }
+      <Vertex> 2819 {
+        -0.0524541921914 0.428092598915 1.83828532696
+        <UV>  {
+          0.085062 0.643347
+          <Tangent> { -0.764345 0.641651 -0.063725 }
+          <Binormal> { -0.055281 -0.037277 0.287719 }
+        }
+        <Normal> { 0.547990 -0.836451 -0.003082 }
+      }
+      <Vertex> 2820 {
+        0.156737163663 0.253009915352 1.87418782711
+        <UV>  {
+          0.157649 0.648286
+          <Tangent> { -0.875863 0.479741 -0.052082 }
+          <Binormal> { -0.001063 -0.001806 0.001252 }
+        }
+        <Normal> { 0.875332 -0.480880 0.049989 }
+      }
+      <Vertex> 2821 {
+        -0.0626586526632 0.399097323418 2.01623797417
+        <UV>  {
+          0.090723 0.690498
+          <Tangent> { -0.834528 0.546651 -0.068815 }
+          <Binormal> { -0.075247 -0.073340 0.329931 }
+        }
+        <Normal> { 0.607562 -0.793329 -0.037782 }
+      }
+      <Vertex> 2822 {
+        -0.0524541921914 0.428092598915 1.83828532696
+        <UV>  {
+          0.085062 0.643347
+          <Tangent> { -0.764345 0.641651 -0.063725 }
+          <Binormal> { -0.055281 -0.037277 0.287719 }
+        }
+        <Normal> { 0.547990 -0.836451 -0.003082 }
+      }
+      <Vertex> 2823 {
+        0.248577266932 0.222316816449 1.73560297489
+        <UV>  {
+          0.181940 0.610501
+          <Tangent> { -0.999706 -0.004190 -0.023894 }
+          <Binormal> { -0.000249 0.050065 0.001646 }
+        }
+        <Normal> { 0.997253 0.002533 0.073916 }
+      }
+      <Vertex> 2824 {
+        0.248577266932 0.230368763208 1.94288098812
+        <UV>  {
+          0.183212 0.665728
+          <Tangent> { -0.999662 -0.001982 -0.025931 }
+          <Binormal> { -0.000039 0.007887 0.000882 }
+        }
+        <Normal> { 0.999420 0.001099 0.033815 }
+      }
+      <Vertex> 2825 {
+        0.156737163663 0.253009915352 1.87418782711
+        <UV>  {
+          0.157649 0.648286
+          <Tangent> { -0.875863 0.479741 -0.052082 }
+          <Binormal> { -0.001063 -0.001806 0.001252 }
+        }
+        <Normal> { 0.875332 -0.480880 0.049989 }
+      }
+      <Vertex> 2826 {
+        0.0117017161101 0.309294193983 1.53859758377
+        <UV>  {
+          0.112941 0.561337
+          <Tangent> { -0.883780 0.465307 -0.049206 }
+          <Binormal> { 0.011950 0.029907 0.068177 }
+        }
+        <Normal> { 0.848048 -0.523637 0.081057 }
+      }
+      <Vertex> 2827 {
+        0.248577266932 0.222316816449 1.73560297489
+        <UV>  {
+          0.181940 0.610501
+          <Tangent> { -0.999706 -0.004190 -0.023894 }
+          <Binormal> { -0.000249 0.050065 0.001646 }
+        }
+        <Normal> { 0.997253 0.002533 0.073916 }
+      }
+      <Vertex> 2828 {
+        0.156737163663 0.253009915352 1.87418782711
+        <UV>  {
+          0.157649 0.648286
+          <Tangent> { -0.875863 0.479741 -0.052082 }
+          <Binormal> { -0.001063 -0.001806 0.001252 }
+        }
+        <Normal> { 0.875332 -0.480880 0.049989 }
+      }
+      <Vertex> 2829 {
+        0.156737163663 0.27102714777 2.10426640511
+        <UV>  {
+          0.158019 0.708808
+          <Tangent> { -0.896496 0.436526 -0.075768 }
+          <Binormal> { -0.029815 -0.061356 -0.000717 }
+        }
+        <Normal> { 0.899350 -0.437117 0.007569 }
+      }
+      <Vertex> 2830 {
+        -0.0626586526632 0.399097323418 2.01623797417
+        <UV>  {
+          0.090723 0.690498
+          <Tangent> { -0.834528 0.546651 -0.068815 }
+          <Binormal> { -0.075247 -0.073340 0.329931 }
+        }
+        <Normal> { 0.607562 -0.793329 -0.037782 }
+      }
+      <Vertex> 2831 {
+        0.156737163663 0.253009915352 1.87418782711
+        <UV>  {
+          0.157649 0.648286
+          <Tangent> { -0.875863 0.479741 -0.052082 }
+          <Binormal> { -0.001063 -0.001806 0.001252 }
+        }
+        <Normal> { 0.875332 -0.480880 0.049989 }
+      }
+      <Vertex> 2832 {
+        0.156737163663 0.27102714777 2.10426640511
+        <UV>  {
+          0.158019 0.708808
+          <Tangent> { -0.896496 0.436526 -0.075768 }
+          <Binormal> { -0.029815 -0.061356 -0.000717 }
+        }
+        <Normal> { 0.899350 -0.437117 0.007569 }
+      }
+      <Vertex> 2833 {
+        0.156737163663 0.253009915352 1.87418782711
+        <UV>  {
+          0.157649 0.648286
+          <Tangent> { -0.875863 0.479741 -0.052082 }
+          <Binormal> { -0.001063 -0.001806 0.001252 }
+        }
+        <Normal> { 0.875332 -0.480880 0.049989 }
+      }
+      <Vertex> 2834 {
+        0.248577266932 0.230368763208 1.94288098812
+        <UV>  {
+          0.183212 0.665728
+          <Tangent> { -0.999662 -0.001982 -0.025931 }
+          <Binormal> { -0.000039 0.007887 0.000882 }
+        }
+        <Normal> { 0.999420 0.001099 0.033815 }
+      }
+      <Vertex> 2835 {
+        0.248577266932 0.230368763208 1.94288098812
+        <UV>  {
+          0.183212 0.665728
+          <Tangent> { -0.999662 -0.001982 -0.025931 }
+          <Binormal> { -0.000039 0.007887 0.000882 }
+        }
+        <Normal> { 0.999420 0.001099 0.033815 }
+      }
+      <Vertex> 2836 {
+        0.248577266932 0.223355844617 2.32219982147
+        <UV>  {
+          0.185620 0.761353
+          <Tangent> { -0.999521 -0.012939 -0.028099 }
+          <Binormal> { -0.000730 0.051485 0.002251 }
+        }
+        <Normal> { 0.996765 0.010651 0.079531 }
+      }
+      <Vertex> 2837 {
+        0.156737163663 0.27102714777 2.10426640511
+        <UV>  {
+          0.158019 0.708808
+          <Tangent> { -0.896496 0.436526 -0.075768 }
+          <Binormal> { -0.029815 -0.061356 -0.000717 }
+        }
+        <Normal> { 0.899350 -0.437117 0.007569 }
+      }
+      <Vertex> 2838 {
+        0.248577266932 0.223355844617 2.32219982147
+        <UV>  {
+          0.185620 0.761353
+          <Tangent> { -0.999521 -0.012939 -0.028099 }
+          <Binormal> { -0.000730 0.051485 0.002251 }
+        }
+        <Normal> { 0.996765 0.010651 0.079531 }
+      }
+      <Vertex> 2839 {
+        -0.0268633309752 0.359876453876 2.42605423927
+        <UV>  {
+          0.112591 0.796118
+          <Tangent> { -0.914017 0.389659 -0.112863 }
+          <Binormal> { -0.041237 -0.139941 -0.149188 }
+        }
+        <Normal> { 0.967803 -0.249367 -0.033601 }
+      }
+      <Vertex> 2840 {
+        0.156737163663 0.27102714777 2.10426640511
+        <UV>  {
+          0.158019 0.708808
+          <Tangent> { -0.896496 0.436526 -0.075768 }
+          <Binormal> { -0.029815 -0.061356 -0.000717 }
+        }
+        <Normal> { 0.899350 -0.437117 0.007569 }
+      }
+      <Vertex> 2841 {
+        -0.0268633309752 0.359876453876 2.42605423927
+        <UV>  {
+          0.112591 0.796118
+          <Tangent> { -0.914017 0.389659 -0.112863 }
+          <Binormal> { -0.041237 -0.139941 -0.149188 }
+        }
+        <Normal> { 0.967803 -0.249367 -0.033601 }
+      }
+      <Vertex> 2842 {
+        0.248577266932 0.223355844617 2.32219982147
+        <UV>  {
+          0.185620 0.761353
+          <Tangent> { -0.999521 -0.012939 -0.028099 }
+          <Binormal> { -0.000730 0.051485 0.002251 }
+        }
+        <Normal> { 0.996765 0.010651 0.079531 }
+      }
+      <Vertex> 2843 {
+        0.248577281833 0.263456165791 2.47745895386
+        <UV>  {
+          0.186736 0.799414
+          <Tangent> { -0.999344 -0.027587 -0.023475 }
+          <Binormal> { -0.009797 0.348575 0.007440 }
+        }
+        <Normal> { 0.928587 0.018189 0.370617 }
+      }
+      <Vertex> 2844 {
+        0.0598745495081 0.338298797607 2.49082612991
+        <UV>  {
+          0.137782 0.810030
+          <Tangent> { -0.948221 0.293798 -0.120667 }
+          <Binormal> { 0.138145 0.501807 0.136227 }
+        }
+        <Normal> { 0.698691 -0.360149 0.618122 }
+      }
+      <Vertex> 2845 {
+        -0.0268633309752 0.359876453876 2.42605423927
+        <UV>  {
+          0.112591 0.796118
+          <Tangent> { -0.914017 0.389659 -0.112863 }
+          <Binormal> { -0.041237 -0.139941 -0.149188 }
+        }
+        <Normal> { 0.967803 -0.249367 -0.033601 }
+      }
+      <Vertex> 2846 {
+        0.248577281833 0.263456165791 2.47745895386
+        <UV>  {
+          0.186736 0.799414
+          <Tangent> { -0.999344 -0.027587 -0.023475 }
+          <Binormal> { -0.009797 0.348575 0.007440 }
+        }
+        <Normal> { 0.928587 0.018189 0.370617 }
+      }
+      <Vertex> 2847 {
+        0.0598745495081 0.338298797607 2.49082612991
+        <UV>  {
+          0.137782 0.810030
+          <Tangent> { -0.948221 0.293798 -0.120667 }
+          <Binormal> { 0.138145 0.501807 0.136227 }
+        }
+        <Normal> { 0.698691 -0.360149 0.618122 }
+      }
+      <Vertex> 2848 {
+        0.248577281833 0.263456165791 2.47745895386
+        <UV>  {
+          0.186736 0.799414
+          <Tangent> { -0.999344 -0.027587 -0.023475 }
+          <Binormal> { -0.009797 0.348575 0.007440 }
+        }
+        <Normal> { 0.928587 0.018189 0.370617 }
+      }
+      <Vertex> 2849 {
+        0.248577281833 0.339249521494 2.58159637451
+        <UV>  {
+          0.187871 0.831218
+          <Tangent> { -0.999190 -0.035202 -0.019522 }
+          <Binormal> { -0.024433 0.687393 0.011042 }
+        }
+        <Normal> { 0.712149 0.014039 0.701865 }
+      }
+      <Vertex> 2850 {
+        0.156737163663 0.27102714777 2.10426640511
+        <UV>  {
+          0.158019 0.708808
+          <Tangent> { -0.896496 0.436526 -0.075768 }
+          <Binormal> { -0.029815 -0.061356 -0.000717 }
+        }
+        <Normal> { 0.899350 -0.437117 0.007569 }
+      }
+      <Vertex> 2851 {
+        -0.0268633309752 0.359876453876 2.42605423927
+        <UV>  {
+          0.112591 0.796118
+          <Tangent> { -0.914017 0.389659 -0.112863 }
+          <Binormal> { -0.041237 -0.139941 -0.149188 }
+        }
+        <Normal> { 0.967803 -0.249367 -0.033601 }
+      }
+      <Vertex> 2852 {
+        -0.0703917145729 0.381648719311 2.29257559776
+        <UV>  {
+          0.097022 0.762749
+          <Tangent> { -0.883168 0.462740 -0.076718 }
+          <Binormal> { -0.161008 -0.287794 0.117610 }
+        }
+        <Normal> { 0.794916 -0.549669 -0.256813 }
+      }
+      <Vertex> 2853 {
+        0.156737163663 0.27102714777 2.10426640511
+        <UV>  {
+          0.158019 0.708808
+          <Tangent> { -0.896496 0.436526 -0.075768 }
+          <Binormal> { -0.029815 -0.061356 -0.000717 }
+        }
+        <Normal> { 0.899350 -0.437117 0.007569 }
+      }
+      <Vertex> 2854 {
+        -0.0703917145729 0.381648719311 2.29257559776
+        <UV>  {
+          0.097022 0.762749
+          <Tangent> { -0.883168 0.462740 -0.076718 }
+          <Binormal> { -0.161008 -0.287794 0.117610 }
+        }
+        <Normal> { 0.794916 -0.549669 -0.256813 }
+      }
+      <Vertex> 2855 {
+        -0.0626586526632 0.399097323418 2.01623797417
+        <UV>  {
+          0.090723 0.690498
+          <Tangent> { -0.834528 0.546651 -0.068815 }
+          <Binormal> { -0.075247 -0.073340 0.329931 }
+        }
+        <Normal> { 0.607562 -0.793329 -0.037782 }
+      }
+      <Vertex> 2856 {
+        0.248577266932 0.23618850112 1.24630725384
+        <UV>  {
+          0.178152 0.483614
+          <Tangent> { -0.999497 -0.022363 -0.022472 }
+          <Binormal> { 0.021517 -0.959156 -0.002520 }
+        }
+        <Normal> { 0.303323 0.009308 -0.952818 }
+      }
+      <Vertex> 2857 {
+        0.176724329591 0.299050122499 1.22716104984
+        <UV>  {
+          0.155848 0.471827
+          <Tangent> { -0.916978 0.398118 0.025541 }
+          <Binormal> { -0.315043 -0.717180 -0.131745 }
+        }
+        <Normal> { 0.591144 -0.112980 -0.798578 }
+      }
+      <Vertex> 2858 {
+        0.156737178564 0.695588648319 1.23194479942
+        <UV>  {
+          0.146858 0.346484
+          <Tangent> { -0.959555 0.166255 -0.227184 }
+          <Binormal> { -0.073155 -0.753843 -0.242684 }
+        }
+        <Normal> { -0.370037 0.317026 -0.873226 }
+      }
+      <Vertex> 2859 {
+        0.156737178564 0.695588648319 1.23194479942
+        <UV>  {
+          0.146858 0.346484
+          <Tangent> { -0.959555 0.166255 -0.227184 }
+          <Binormal> { -0.073155 -0.753843 -0.242684 }
+        }
+        <Normal> { -0.370037 0.317026 -0.873226 }
+      }
+      <Vertex> 2860 {
+        0.248577296734 0.683510422707 1.24961578846
+        <UV>  {
+          0.180167 0.348760
+          <Tangent> { -0.999861 -0.015849 -0.005180 }
+          <Binormal> { 0.014626 -0.921097 -0.004869 }
+        }
+        <Normal> { -0.384198 -0.001221 -0.923215 }
+      }
+      <Vertex> 2861 {
+        0.248577266932 0.23618850112 1.24630725384
+        <UV>  {
+          0.178152 0.483614
+          <Tangent> { -0.999497 -0.022363 -0.022472 }
+          <Binormal> { 0.021517 -0.959156 -0.002520 }
+        }
+        <Normal> { 0.303323 0.009308 -0.952818 }
+      }
+      <Vertex> 2862 {
+        0.248577266932 0.209162637591 1.3418943882
+        <UV>  {
+          0.179570 0.507963
+          <Tangent> { -0.999238 0.014095 -0.036400 }
+          <Binormal> { -0.005175 -0.389802 -0.008871 }
+        }
+        <Normal> { 0.934446 -0.004303 -0.356059 }
+      }
+      <Vertex> 2863 {
+        0.156737163663 0.263334274292 1.29201555252
+        <UV>  {
+          0.152584 0.492557
+          <Tangent> { -0.949480 0.313426 0.015852 }
+          <Binormal> { -0.139957 -0.418616 -0.106034 }
+        }
+        <Normal> { 0.872585 -0.176366 -0.455458 }
+      }
+      <Vertex> 2864 {
+        0.176724329591 0.299050122499 1.22716104984
+        <UV>  {
+          0.155848 0.471827
+          <Tangent> { -0.916978 0.398118 0.025541 }
+          <Binormal> { -0.315043 -0.717180 -0.131745 }
+        }
+        <Normal> { 0.591144 -0.112980 -0.798578 }
+      }
+      <Vertex> 2865 {
+        0.0961812138557 0.245635911822 1.39633226395
+        <UV>  {
+          0.137973 0.522367
+          <Tangent> { -0.933753 0.356315 -0.033843 }
+          <Binormal> { -0.009194 -0.023571 0.005512 }
+        }
+        <Normal> { 0.932249 -0.361644 0.008545 }
+      }
+      <Vertex> 2866 {
+        0.156737163663 0.263334274292 1.29201555252
+        <UV>  {
+          0.152584 0.492557
+          <Tangent> { -0.949480 0.313426 0.015852 }
+          <Binormal> { -0.139957 -0.418616 -0.106034 }
+        }
+        <Normal> { 0.872585 -0.176366 -0.455458 }
+      }
+      <Vertex> 2867 {
+        0.248577266932 0.190188720822 1.45099437237
+        <UV>  {
+          0.180246 0.535940
+          <Tangent> { -0.999622 0.012325 -0.024569 }
+          <Binormal> { -0.001723 -0.146624 -0.003446 }
+        }
+        <Normal> { 0.992431 -0.008789 -0.122288 }
+      }
+      <Vertex> 2868 {
+        0.248577266932 0.222316816449 1.73560297489
+        <UV>  {
+          0.181940 0.610501
+          <Tangent> { -0.999706 -0.004190 -0.023894 }
+          <Binormal> { -0.000249 0.050065 0.001646 }
+        }
+        <Normal> { 0.997253 0.002533 0.073916 }
+      }
+      <Vertex> 2869 {
+        0.0117017161101 0.309294193983 1.53859758377
+        <UV>  {
+          0.112941 0.561337
+          <Tangent> { -0.883780 0.465307 -0.049206 }
+          <Binormal> { 0.011950 0.029907 0.068177 }
+        }
+        <Normal> { 0.848048 -0.523637 0.081057 }
+      }
+      <Vertex> 2870 {
+        0.0961812138557 0.245635911822 1.39633226395
+        <UV>  {
+          0.137973 0.522367
+          <Tangent> { -0.933753 0.356315 -0.033843 }
+          <Binormal> { -0.009194 -0.023571 0.005512 }
+        }
+        <Normal> { 0.932249 -0.361644 0.008545 }
+      }
+      <Vertex> 2871 {
+        0.248577266932 0.190188720822 1.45099437237
+        <UV>  {
+          0.180246 0.535940
+          <Tangent> { -0.999622 0.012325 -0.024569 }
+          <Binormal> { -0.001723 -0.146624 -0.003446 }
+        }
+        <Normal> { 0.992431 -0.008789 -0.122288 }
+      }
+      <Vertex> 2872 {
+        0.248577266932 0.222316816449 1.73560297489
+        <UV>  {
+          0.181940 0.610501
+          <Tangent> { -0.999706 -0.004190 -0.023894 }
+          <Binormal> { -0.000249 0.050065 0.001646 }
+        }
+        <Normal> { 0.997253 0.002533 0.073916 }
+      }
+      <Vertex> 2873 {
+        0.0961812138557 0.245635911822 1.39633226395
+        <UV>  {
+          0.137973 0.522367
+          <Tangent> { -0.933753 0.356315 -0.033843 }
+          <Binormal> { -0.009194 -0.023571 0.005512 }
+        }
+        <Normal> { 0.932249 -0.361644 0.008545 }
+      }
+      <Vertex> 2874 {
+        0.248577266932 0.209162637591 1.3418943882
+        <UV>  {
+          0.179570 0.507963
+          <Tangent> { -0.999238 0.014095 -0.036400 }
+          <Binormal> { -0.005175 -0.389802 -0.008871 }
+        }
+        <Normal> { 0.934446 -0.004303 -0.356059 }
+      }
+      <Vertex> 2875 {
+        0.248577266932 0.190188720822 1.45099437237
+        <UV>  {
+          0.180246 0.535940
+          <Tangent> { -0.999622 0.012325 -0.024569 }
+          <Binormal> { -0.001723 -0.146624 -0.003446 }
+        }
+        <Normal> { 0.992431 -0.008789 -0.122288 }
+      }
+      <Vertex> 2876 {
+        0.156737163663 0.263334274292 1.29201555252
+        <UV>  {
+          0.152584 0.492557
+          <Tangent> { -0.949480 0.313426 0.015852 }
+          <Binormal> { -0.139957 -0.418616 -0.106034 }
+        }
+        <Normal> { 0.872585 -0.176366 -0.455458 }
+      }
+      <Vertex> 2877 {
+        0.248577266932 0.23618850112 1.24630725384
+        <UV>  {
+          0.178152 0.483614
+          <Tangent> { -0.999497 -0.022363 -0.022472 }
+          <Binormal> { 0.021517 -0.959156 -0.002520 }
+        }
+        <Normal> { 0.303323 0.009308 -0.952818 }
+      }
+      <Vertex> 2878 {
+        0.248577266932 0.209162637591 1.3418943882
+        <UV>  {
+          0.179570 0.507963
+          <Tangent> { -0.999238 0.014095 -0.036400 }
+          <Binormal> { -0.005175 -0.389802 -0.008871 }
+        }
+        <Normal> { 0.934446 -0.004303 -0.356059 }
+      }
+      <Vertex> 2879 {
+        0.176724329591 0.299050122499 1.22716104984
+        <UV>  {
+          0.155848 0.471827
+          <Tangent> { -0.916978 0.398118 0.025541 }
+          <Binormal> { -0.315043 -0.717180 -0.131745 }
+        }
+        <Normal> { 0.591144 -0.112980 -0.798578 }
+      }
+      <Vertex> 2880 {
+        0.248577311635 0.97661948204 1.52601051331
+        <UV>  {
+          0.182209 0.215068
+          <Tangent> { -0.999790 -0.009244 -0.018293 }
+          <Binormal> { 0.003346 -0.348263 -0.006896 }
+        }
+        <Normal> { -0.930845 -0.001709 -0.365368 }
+      }
+      <Vertex> 2881 {
+        0.182248339057 0.992426335812 1.4097417593
+        <UV>  {
+          0.156047 0.242505
+          <Tangent> { -0.995459 -0.018485 0.093379 }
+          <Binormal> { 0.023383 -0.348079 0.180372 }
+        }
+        <Normal> { -0.944639 -0.198737 -0.261055 }
+      }
+      <Vertex> 2882 {
+        0.182248339057 0.989793002605 1.50772547722
+        <UV>  {
+          0.158348 0.216991
+          <Tangent> { -0.906877 -0.378616 -0.185001 }
+          <Binormal> { -0.180862 0.375024 0.119078 }
+        }
+        <Normal> { -0.841700 -0.482711 0.241829 }
+      }
+      <Vertex> 2883 {
+        0.248577311635 0.97661948204 1.52601051331
+        <UV>  {
+          0.182209 0.215068
+          <Tangent> { -0.999790 -0.009244 -0.018293 }
+          <Binormal> { 0.003346 -0.348263 -0.006896 }
+        }
+        <Normal> { -0.930845 -0.001709 -0.365368 }
+      }
+      <Vertex> 2884 {
+        0.248577311635 0.940166473389 1.4468537569
+        <UV>  {
+          0.181839 0.239784
+          <Tangent> { -0.999875 -0.012020 -0.010263 }
+          <Binormal> { 0.007127 -0.586667 -0.007311 }
+        }
+        <Normal> { -0.803705 -0.002350 -0.594989 }
+      }
+      <Vertex> 2885 {
+        0.182248339057 0.931515991688 1.33387601376
+        <UV>  {
+          0.158979 0.262863
+          <Tangent> { -0.964439 0.178323 -0.195087 }
+          <Binormal> { -0.096835 -0.643330 -0.109330 }
+        }
+        <Normal> { -0.579760 0.220557 -0.784326 }
+      }
+      <Vertex> 2886 {
+        0.182248339057 0.931515991688 1.33387601376
+        <UV>  {
+          0.158979 0.262863
+          <Tangent> { -0.964439 0.178323 -0.195087 }
+          <Binormal> { -0.096835 -0.643330 -0.109330 }
+        }
+        <Normal> { -0.579760 0.220557 -0.784326 }
+      }
+      <Vertex> 2887 {
+        0.182248339057 0.992426335812 1.4097417593
+        <UV>  {
+          0.156047 0.242505
+          <Tangent> { -0.995459 -0.018485 0.093379 }
+          <Binormal> { 0.023383 -0.348079 0.180372 }
+        }
+        <Normal> { -0.944639 -0.198737 -0.261055 }
+      }
+      <Vertex> 2888 {
+        0.248577311635 0.97661948204 1.52601051331
+        <UV>  {
+          0.182209 0.215068
+          <Tangent> { -0.999790 -0.009244 -0.018293 }
+          <Binormal> { 0.003346 -0.348263 -0.006896 }
+        }
+        <Normal> { -0.930845 -0.001709 -0.365368 }
+      }
+      <Vertex> 2889 {
+        0.248577311635 0.940166473389 1.4468537569
+        <UV>  {
+          0.181839 0.239784
+          <Tangent> { -0.999875 -0.012020 -0.010263 }
+          <Binormal> { 0.007127 -0.586667 -0.007311 }
+        }
+        <Normal> { -0.803705 -0.002350 -0.594989 }
+      }
+      <Vertex> 2890 {
+        0.248577296734 0.825507104397 1.36095297337
+        <UV>  {
+          0.181085 0.287149
+          <Tangent> { -0.999839 -0.017373 -0.004553 }
+          <Binormal> { 0.015793 -0.907597 -0.004957 }
+        }
+        <Normal> { -0.415326 -0.002258 -0.909635 }
+      }
+      <Vertex> 2891 {
+        0.182248339057 0.931515991688 1.33387601376
+        <UV>  {
+          0.158979 0.262863
+          <Tangent> { -0.964439 0.178323 -0.195087 }
+          <Binormal> { -0.096835 -0.643330 -0.109330 }
+        }
+        <Normal> { -0.579760 0.220557 -0.784326 }
+      }
+      <Vertex> 2892 {
+        0.248577296734 0.825507104397 1.36095297337
+        <UV>  {
+          0.181085 0.287149
+          <Tangent> { -0.999839 -0.017373 -0.004553 }
+          <Binormal> { 0.015793 -0.907597 -0.004957 }
+        }
+        <Normal> { -0.415326 -0.002258 -0.909635 }
+      }
+      <Vertex> 2893 {
+        0.182248339057 0.847973823547 1.32980763912
+        <UV>  {
+          0.156179 0.284592
+          <Tangent> { -0.994346 -0.098830 -0.038829 }
+          <Binormal> { 0.067400 -0.836492 0.403073 }
+        }
+        <Normal> { -0.290597 -0.434248 -0.852596 }
+      }
+      <Vertex> 2894 {
+        0.182248339057 0.931515991688 1.33387601376
+        <UV>  {
+          0.158979 0.262863
+          <Tangent> { -0.964439 0.178323 -0.195087 }
+          <Binormal> { -0.096835 -0.643330 -0.109330 }
+        }
+        <Normal> { -0.579760 0.220557 -0.784326 }
+      }
+      <Vertex> 2895 {
+        0.131226047873 0.936121821404 1.44520449638
+        <UV>  {
+          0.125640 0.239989
+          <Tangent> { -0.526030 -0.777210 0.345306 }
+          <Binormal> { 0.333309 -0.058755 0.375509 }
+        }
+        <Normal> { -0.182287 -0.983184 0.007965 }
+      }
+      <Vertex> 2896 {
+        0.182248339057 0.989793002605 1.50772547722
+        <UV>  {
+          0.158348 0.216991
+          <Tangent> { -0.906877 -0.378616 -0.185001 }
+          <Binormal> { -0.180862 0.375024 0.119078 }
+        }
+        <Normal> { -0.841700 -0.482711 0.241829 }
+      }
+      <Vertex> 2897 {
+        0.182248339057 0.992426335812 1.4097417593
+        <UV>  {
+          0.156047 0.242505
+          <Tangent> { -0.995459 -0.018485 0.093379 }
+          <Binormal> { 0.023383 -0.348079 0.180372 }
+        }
+        <Normal> { -0.944639 -0.198737 -0.261055 }
+      }
+      <Vertex> 2898 {
+        0.131226047873 0.936121821404 1.44520449638
+        <UV>  {
+          0.125640 0.239989
+          <Tangent> { -0.526030 -0.777210 0.345306 }
+          <Binormal> { 0.333309 -0.058755 0.375509 }
+        }
+        <Normal> { -0.182287 -0.983184 0.007965 }
+      }
+      <Vertex> 2899 {
+        0.182248339057 0.992426335812 1.4097417593
+        <UV>  {
+          0.156047 0.242505
+          <Tangent> { -0.995459 -0.018485 0.093379 }
+          <Binormal> { 0.023383 -0.348079 0.180372 }
+        }
+        <Normal> { -0.944639 -0.198737 -0.261055 }
+      }
+      <Vertex> 2900 {
+        0.182248339057 0.931515991688 1.33387601376
+        <UV>  {
+          0.158979 0.262863
+          <Tangent> { -0.964439 0.178323 -0.195087 }
+          <Binormal> { -0.096835 -0.643330 -0.109330 }
+        }
+        <Normal> { -0.579760 0.220557 -0.784326 }
+      }
+      <Vertex> 2901 {
+        0.182248339057 0.931515991688 1.33387601376
+        <UV>  {
+          0.158979 0.262863
+          <Tangent> { -0.964439 0.178323 -0.195087 }
+          <Binormal> { -0.096835 -0.643330 -0.109330 }
+        }
+        <Normal> { -0.579760 0.220557 -0.784326 }
+      }
+      <Vertex> 2902 {
+        0.182248339057 0.847973823547 1.32980763912
+        <UV>  {
+          0.156179 0.284592
+          <Tangent> { -0.994346 -0.098830 -0.038829 }
+          <Binormal> { 0.067400 -0.836492 0.403073 }
+        }
+        <Normal> { -0.290597 -0.434248 -0.852596 }
+      }
+      <Vertex> 2903 {
+        0.131226047873 0.936121821404 1.44520449638
+        <UV>  {
+          0.125640 0.239989
+          <Tangent> { -0.526030 -0.777210 0.345306 }
+          <Binormal> { 0.333309 -0.058755 0.375509 }
+        }
+        <Normal> { -0.182287 -0.983184 0.007965 }
+      }
+      <Vertex> 2904 {
+        0.182248339057 0.847973823547 1.32980763912
+        <UV>  {
+          0.156179 0.284592
+          <Tangent> { -0.994346 -0.098830 -0.038829 }
+          <Binormal> { 0.067400 -0.836492 0.403073 }
+        }
+        <Normal> { -0.290597 -0.434248 -0.852596 }
+      }
+      <Vertex> 2905 {
+        0.248577296734 0.825507104397 1.36095297337
+        <UV>  {
+          0.181085 0.287149
+          <Tangent> { -0.999839 -0.017373 -0.004553 }
+          <Binormal> { 0.015793 -0.907597 -0.004957 }
+        }
+        <Normal> { -0.415326 -0.002258 -0.909635 }
+      }
+      <Vertex> 2906 {
+        0.248577296734 0.683510422707 1.24961578846
+        <UV>  {
+          0.180167 0.348760
+          <Tangent> { -0.999861 -0.015849 -0.005180 }
+          <Binormal> { 0.014626 -0.921097 -0.004869 }
+        }
+        <Normal> { -0.384198 -0.001221 -0.923215 }
+      }
+      <Vertex> 2907 {
+        0.248577296734 0.683510422707 1.24961578846
+        <UV>  {
+          0.180167 0.348760
+          <Tangent> { -0.999861 -0.015849 -0.005180 }
+          <Binormal> { 0.014626 -0.921097 -0.004869 }
+        }
+        <Normal> { -0.384198 -0.001221 -0.923215 }
+      }
+      <Vertex> 2908 {
+        0.156737178564 0.695588648319 1.23194479942
+        <UV>  {
+          0.146858 0.346484
+          <Tangent> { -0.959555 0.166255 -0.227184 }
+          <Binormal> { -0.073155 -0.753843 -0.242684 }
+        }
+        <Normal> { -0.370037 0.317026 -0.873226 }
+      }
+      <Vertex> 2909 {
+        0.182248339057 0.847973823547 1.32980763912
+        <UV>  {
+          0.156179 0.284592
+          <Tangent> { -0.994346 -0.098830 -0.038829 }
+          <Binormal> { 0.067400 -0.836492 0.403073 }
+        }
+        <Normal> { -0.290597 -0.434248 -0.852596 }
+      }
+      <Vertex> 2910 {
+        0.3397590518 0.253009915352 1.87418532372
+        <UV>  {
+          0.207719 0.647116
+          <Tangent> { -0.889756 -0.456426 0.003130 }
+          <Binormal> { -0.016874 0.032898 0.000414 }
+        }
+        <Normal> { 0.889431 0.455794 0.033845 }
+      }
+      <Vertex> 2911 {
+        0.479692280293 0.309294164181 1.53500580788
+        <UV>  {
+          0.247432 0.557414
+          <Tangent> { -0.871651 -0.490059 0.008217 }
+          <Binormal> { -0.054003 0.095094 -0.057169 }
+        }
+        <Normal> { 0.837733 0.536576 0.101199 }
+      }
+      <Vertex> 2912 {
+        0.548950433731 0.393995076418 1.67912220955
+        <UV>  {
+          0.275002 0.596382
+          <Tangent> { -0.794467 -0.607121 0.015039 }
+          <Binormal> { -0.086611 0.108359 -0.200964 }
+        }
+        <Normal> { 0.650014 0.749687 0.124088 }
+      }
+      <Vertex> 2913 {
+        0.548950433731 0.397479206324 1.83828282356
+        <UV>  {
+          0.275002 0.638383
+          <Tangent> { -0.825354 -0.564505 0.011190 }
+          <Binormal> { 0.005068 -0.014740 -0.369802 }
+        }
+        <Normal> { 0.557787 0.829554 -0.025422 }
+      }
+      <Vertex> 2914 {
+        0.3397590518 0.253009915352 1.87418532372
+        <UV>  {
+          0.207719 0.647116
+          <Tangent> { -0.889756 -0.456426 0.003130 }
+          <Binormal> { -0.016874 0.032898 0.000414 }
+        }
+        <Normal> { 0.889431 0.455794 0.033845 }
+      }
+      <Vertex> 2915 {
+        0.548950433731 0.393995076418 1.67912220955
+        <UV>  {
+          0.275002 0.596382
+          <Tangent> { -0.794467 -0.607121 0.015039 }
+          <Binormal> { -0.086611 0.108359 -0.200964 }
+        }
+        <Normal> { 0.650014 0.749687 0.124088 }
+      }
+      <Vertex> 2916 {
+        0.548950433731 0.397479206324 1.83828282356
+        <UV>  {
+          0.275002 0.638383
+          <Tangent> { -0.825354 -0.564505 0.011190 }
+          <Binormal> { 0.005068 -0.014740 -0.369802 }
+        }
+        <Normal> { 0.557787 0.829554 -0.025422 }
+      }
+      <Vertex> 2917 {
+        0.548950433731 0.378688395023 2.01623558998
+        <UV>  {
+          0.271708 0.685421
+          <Tangent> { -0.866057 -0.499729 0.014728 }
+          <Binormal> { -0.016207 0.017914 -0.345191 }
+        }
+        <Normal> { 0.640278 0.768029 0.009796 }
+      }
+      <Vertex> 2918 {
+        0.3397590518 0.253009915352 1.87418532372
+        <UV>  {
+          0.207719 0.647116
+          <Tangent> { -0.889756 -0.456426 0.003130 }
+          <Binormal> { -0.016874 0.032898 0.000414 }
+        }
+        <Normal> { 0.889431 0.455794 0.033845 }
+      }
+      <Vertex> 2919 {
+        0.3397590518 0.253009915352 1.87418532372
+        <UV>  {
+          0.207719 0.647116
+          <Tangent> { -0.889756 -0.456426 0.003130 }
+          <Binormal> { -0.016874 0.032898 0.000414 }
+        }
+        <Normal> { 0.889431 0.455794 0.033845 }
+      }
+      <Vertex> 2920 {
+        0.248577266932 0.230368763208 1.94288098812
+        <UV>  {
+          0.183212 0.665728
+          <Tangent> { -0.999662 -0.001982 -0.025931 }
+          <Binormal> { -0.000039 0.007887 0.000882 }
+        }
+        <Normal> { 0.999420 0.001099 0.033815 }
+      }
+      <Vertex> 2921 {
+        0.248577266932 0.222316816449 1.73560297489
+        <UV>  {
+          0.181940 0.610501
+          <Tangent> { -0.999706 -0.004190 -0.023894 }
+          <Binormal> { -0.000249 0.050065 0.001646 }
+        }
+        <Normal> { 0.997253 0.002533 0.073916 }
+      }
+      <Vertex> 2922 {
+        0.3397590518 0.253009915352 1.87418532372
+        <UV>  {
+          0.207719 0.647116
+          <Tangent> { -0.889756 -0.456426 0.003130 }
+          <Binormal> { -0.016874 0.032898 0.000414 }
+        }
+        <Normal> { 0.889431 0.455794 0.033845 }
+      }
+      <Vertex> 2923 {
+        0.248577266932 0.222316816449 1.73560297489
+        <UV>  {
+          0.181940 0.610501
+          <Tangent> { -0.999706 -0.004190 -0.023894 }
+          <Binormal> { -0.000249 0.050065 0.001646 }
+        }
+        <Normal> { 0.997253 0.002533 0.073916 }
+      }
+      <Vertex> 2924 {
+        0.479692280293 0.309294164181 1.53500580788
+        <UV>  {
+          0.247432 0.557414
+          <Tangent> { -0.871651 -0.490059 0.008217 }
+          <Binormal> { -0.054003 0.095094 -0.057169 }
+        }
+        <Normal> { 0.837733 0.536576 0.101199 }
+      }
+      <Vertex> 2925 {
+        0.3397590518 0.253009915352 1.87418532372
+        <UV>  {
+          0.207719 0.647116
+          <Tangent> { -0.889756 -0.456426 0.003130 }
+          <Binormal> { -0.016874 0.032898 0.000414 }
+        }
+        <Normal> { 0.889431 0.455794 0.033845 }
+      }
+      <Vertex> 2926 {
+        0.548950433731 0.378688395023 2.01623558998
+        <UV>  {
+          0.271708 0.685421
+          <Tangent> { -0.866057 -0.499729 0.014728 }
+          <Binormal> { -0.016207 0.017914 -0.345191 }
+        }
+        <Normal> { 0.640278 0.768029 0.009796 }
+      }
+      <Vertex> 2927 {
+        0.3397590518 0.27102714777 2.10426402092
+        <UV>  {
+          0.210378 0.707474
+          <Tangent> { -0.900570 -0.434090 0.023210 }
+          <Binormal> { -0.021803 0.045289 0.001048 }
+        }
+        <Normal> { 0.900906 0.433088 0.027070 }
+      }
+      <Vertex> 2928 {
+        0.248577266932 0.230368763208 1.94288098812
+        <UV>  {
+          0.183212 0.665728
+          <Tangent> { -0.999662 -0.001982 -0.025931 }
+          <Binormal> { -0.000039 0.007887 0.000882 }
+        }
+        <Normal> { 0.999420 0.001099 0.033815 }
+      }
+      <Vertex> 2929 {
+        0.3397590518 0.253009915352 1.87418532372
+        <UV>  {
+          0.207719 0.647116
+          <Tangent> { -0.889756 -0.456426 0.003130 }
+          <Binormal> { -0.016874 0.032898 0.000414 }
+        }
+        <Normal> { 0.889431 0.455794 0.033845 }
+      }
+      <Vertex> 2930 {
+        0.3397590518 0.27102714777 2.10426402092
+        <UV>  {
+          0.210378 0.707474
+          <Tangent> { -0.900570 -0.434090 0.023210 }
+          <Binormal> { -0.021803 0.045289 0.001048 }
+        }
+        <Normal> { 0.900906 0.433088 0.027070 }
+      }
+      <Vertex> 2931 {
+        0.3397590518 0.27102714777 2.10426402092
+        <UV>  {
+          0.210378 0.707474
+          <Tangent> { -0.900570 -0.434090 0.023210 }
+          <Binormal> { -0.021803 0.045289 0.001048 }
+        }
+        <Normal> { 0.900906 0.433088 0.027070 }
+      }
+      <Vertex> 2932 {
+        0.248577266932 0.223355844617 2.32219982147
+        <UV>  {
+          0.185620 0.761353
+          <Tangent> { -0.999521 -0.012939 -0.028099 }
+          <Binormal> { -0.000730 0.051485 0.002251 }
+        }
+        <Normal> { 0.996765 0.010651 0.079531 }
+      }
+      <Vertex> 2933 {
+        0.248577266932 0.230368763208 1.94288098812
+        <UV>  {
+          0.183212 0.665728
+          <Tangent> { -0.999662 -0.001982 -0.025931 }
+          <Binormal> { -0.000039 0.007887 0.000882 }
+        }
+        <Normal> { 0.999420 0.001099 0.033815 }
+      }
+      <Vertex> 2934 {
+        0.3397590518 0.27102714777 2.10426402092
+        <UV>  {
+          0.210378 0.707474
+          <Tangent> { -0.900570 -0.434090 0.023210 }
+          <Binormal> { -0.021803 0.045289 0.001048 }
+        }
+        <Normal> { 0.900906 0.433088 0.027070 }
+      }
+      <Vertex> 2935 {
+        0.500399529934 0.359876424074 2.42860293388
+        <UV>  {
+          0.255213 0.792603
+          <Tangent> { -0.904220 -0.422389 0.063036 }
+          <Binormal> { -0.022861 0.067937 0.127300 }
+        }
+        <Normal> { 0.952544 0.304178 0.008728 }
+      }
+      <Vertex> 2936 {
+        0.248577266932 0.223355844617 2.32219982147
+        <UV>  {
+          0.185620 0.761353
+          <Tangent> { -0.999521 -0.012939 -0.028099 }
+          <Binormal> { -0.000730 0.051485 0.002251 }
+        }
+        <Normal> { 0.996765 0.010651 0.079531 }
+      }
+      <Vertex> 2937 {
+        0.248577281833 0.263456165791 2.47745895386
+        <UV>  {
+          0.186736 0.799414
+          <Tangent> { -0.999344 -0.027587 -0.023475 }
+          <Binormal> { -0.009797 0.348575 0.007440 }
+        }
+        <Normal> { 0.928587 0.018189 0.370617 }
+      }
+      <Vertex> 2938 {
+        0.248577266932 0.223355844617 2.32219982147
+        <UV>  {
+          0.185620 0.761353
+          <Tangent> { -0.999521 -0.012939 -0.028099 }
+          <Binormal> { -0.000730 0.051485 0.002251 }
+        }
+        <Normal> { 0.996765 0.010651 0.079531 }
+      }
+      <Vertex> 2939 {
+        0.500399529934 0.359876424074 2.42860293388
+        <UV>  {
+          0.255213 0.792603
+          <Tangent> { -0.904220 -0.422389 0.063036 }
+          <Binormal> { -0.022861 0.067937 0.127300 }
+        }
+        <Normal> { 0.952544 0.304178 0.008728 }
+      }
+      <Vertex> 2940 {
+        0.248577281833 0.263456165791 2.47745895386
+        <UV>  {
+          0.186736 0.799414
+          <Tangent> { -0.999344 -0.027587 -0.023475 }
+          <Binormal> { -0.009797 0.348575 0.007440 }
+        }
+        <Normal> { 0.928587 0.018189 0.370617 }
+      }
+      <Vertex> 2941 {
+        0.500399529934 0.359876424074 2.42860293388
+        <UV>  {
+          0.255213 0.792603
+          <Tangent> { -0.904220 -0.422389 0.063036 }
+          <Binormal> { -0.022861 0.067937 0.127300 }
+        }
+        <Normal> { 0.952544 0.304178 0.008728 }
+      }
+      <Vertex> 2942 {
+        0.42641723156 0.351054638624 2.50102829933
+        <UV>  {
+          0.234781 0.810773
+          <Tangent> { -0.932439 -0.352175 0.080815 }
+          <Binormal> { -0.261250 0.669918 -0.094929 }
+        }
+        <Normal> { 0.662587 0.352062 0.661031 }
+      }
+      <Vertex> 2943 {
+        0.248577281833 0.339249521494 2.58159637451
+        <UV>  {
+          0.187871 0.831218
+          <Tangent> { -0.999190 -0.035202 -0.019522 }
+          <Binormal> { -0.024433 0.687393 0.011042 }
+        }
+        <Normal> { 0.712149 0.014039 0.701865 }
+      }
+      <Vertex> 2944 {
+        0.248577281833 0.263456165791 2.47745895386
+        <UV>  {
+          0.186736 0.799414
+          <Tangent> { -0.999344 -0.027587 -0.023475 }
+          <Binormal> { -0.009797 0.348575 0.007440 }
+        }
+        <Normal> { 0.928587 0.018189 0.370617 }
+      }
+      <Vertex> 2945 {
+        0.42641723156 0.351054638624 2.50102829933
+        <UV>  {
+          0.234781 0.810773
+          <Tangent> { -0.932439 -0.352175 0.080815 }
+          <Binormal> { -0.261250 0.669918 -0.094929 }
+        }
+        <Normal> { 0.662587 0.352062 0.661031 }
+      }
+      <Vertex> 2946 {
+        0.549030125141 0.381648719311 2.30277752876
+        <UV>  {
+          0.270034 0.760440
+          <Tangent> { -0.889735 -0.455974 0.021436 }
+          <Binormal> { 0.087062 -0.178882 -0.191404 }
+        }
+        <Normal> { 0.764031 0.606677 -0.219459 }
+      }
+      <Vertex> 2947 {
+        0.500399529934 0.359876424074 2.42860293388
+        <UV>  {
+          0.255213 0.792603
+          <Tangent> { -0.904220 -0.422389 0.063036 }
+          <Binormal> { -0.022861 0.067937 0.127300 }
+        }
+        <Normal> { 0.952544 0.304178 0.008728 }
+      }
+      <Vertex> 2948 {
+        0.3397590518 0.27102714777 2.10426402092
+        <UV>  {
+          0.210378 0.707474
+          <Tangent> { -0.900570 -0.434090 0.023210 }
+          <Binormal> { -0.021803 0.045289 0.001048 }
+        }
+        <Normal> { 0.900906 0.433088 0.027070 }
+      }
+      <Vertex> 2949 {
+        0.548950433731 0.378688395023 2.01623558998
+        <UV>  {
+          0.271708 0.685421
+          <Tangent> { -0.866057 -0.499729 0.014728 }
+          <Binormal> { -0.016207 0.017914 -0.345191 }
+        }
+        <Normal> { 0.640278 0.768029 0.009796 }
+      }
+      <Vertex> 2950 {
+        0.549030125141 0.381648719311 2.30277752876
+        <UV>  {
+          0.270034 0.760440
+          <Tangent> { -0.889735 -0.455974 0.021436 }
+          <Binormal> { 0.087062 -0.178882 -0.191404 }
+        }
+        <Normal> { 0.764031 0.606677 -0.219459 }
+      }
+      <Vertex> 2951 {
+        0.3397590518 0.27102714777 2.10426402092
+        <UV>  {
+          0.210378 0.707474
+          <Tangent> { -0.900570 -0.434090 0.023210 }
+          <Binormal> { -0.021803 0.045289 0.001048 }
+        }
+        <Normal> { 0.900906 0.433088 0.027070 }
+      }
+      <Vertex> 2952 {
+        0.339759081602 0.695588648319 1.23194229603
+        <UV>  {
+          0.213284 0.347517
+          <Tangent> { -0.950752 -0.193457 0.242167 }
+          <Binormal> { 0.246847 -0.915864 0.237483 }
+        }
+        <Normal> { -0.374859 -0.326060 -0.867824 }
+      }
+      <Vertex> 2953 {
+        0.309567451477 0.30606546998 1.22715938091
+        <UV>  {
+          0.198320 0.468956
+          <Tangent> { -0.910409 -0.408474 -0.065601 }
+          <Binormal> { 0.346194 -0.801018 0.183171 }
+        }
+        <Normal> { 0.539506 0.040864 -0.840968 }
+      }
+      <Vertex> 2954 {
+        0.248577266932 0.23618850112 1.24630725384
+        <UV>  {
+          0.178152 0.483614
+          <Tangent> { -0.999497 -0.022363 -0.022472 }
+          <Binormal> { 0.021517 -0.959156 -0.002520 }
+        }
+        <Normal> { 0.303323 0.009308 -0.952818 }
+      }
+      <Vertex> 2955 {
+        0.248577266932 0.23618850112 1.24630725384
+        <UV>  {
+          0.178152 0.483614
+          <Tangent> { -0.999497 -0.022363 -0.022472 }
+          <Binormal> { 0.021517 -0.959156 -0.002520 }
+        }
+        <Normal> { 0.303323 0.009308 -0.952818 }
+      }
+      <Vertex> 2956 {
+        0.248577296734 0.683510422707 1.24961578846
+        <UV>  {
+          0.180167 0.348760
+          <Tangent> { -0.999861 -0.015849 -0.005180 }
+          <Binormal> { 0.014626 -0.921097 -0.004869 }
+        }
+        <Normal> { -0.384198 -0.001221 -0.923215 }
+      }
+      <Vertex> 2957 {
+        0.339759081602 0.695588648319 1.23194229603
+        <UV>  {
+          0.213284 0.347517
+          <Tangent> { -0.950752 -0.193457 0.242167 }
+          <Binormal> { 0.246847 -0.915864 0.237483 }
+        }
+        <Normal> { -0.374859 -0.326060 -0.867824 }
+      }
+      <Vertex> 2958 {
+        0.309567451477 0.30606546998 1.22715938091
+        <UV>  {
+          0.198320 0.468956
+          <Tangent> { -0.910409 -0.408474 -0.065601 }
+          <Binormal> { 0.346194 -0.801018 0.183171 }
+        }
+        <Normal> { 0.539506 0.040864 -0.840968 }
+      }
+      <Vertex> 2959 {
+        0.347412407398 0.263333946466 1.28946197033
+        <UV>  {
+          0.207479 0.490495
+          <Tangent> { -0.964163 -0.261112 -0.047015 }
+          <Binormal> { 0.134311 -0.517716 0.120894 }
+        }
+        <Normal> { 0.862148 0.108097 -0.494919 }
+      }
+      <Vertex> 2960 {
+        0.248577266932 0.209162637591 1.3418943882
+        <UV>  {
+          0.179570 0.507963
+          <Tangent> { -0.999238 0.014095 -0.036400 }
+          <Binormal> { -0.005175 -0.389802 -0.008871 }
+        }
+        <Normal> { 0.934446 -0.004303 -0.356059 }
+      }
+      <Vertex> 2961 {
+        0.248577266932 0.190188720822 1.45099437237
+        <UV>  {
+          0.180246 0.535940
+          <Tangent> { -0.999622 0.012325 -0.024569 }
+          <Binormal> { -0.001723 -0.146624 -0.003446 }
+        }
+        <Normal> { 0.992431 -0.008789 -0.122288 }
+      }
+      <Vertex> 2962 {
+        0.347412407398 0.263333946466 1.28946197033
+        <UV>  {
+          0.207479 0.490495
+          <Tangent> { -0.964163 -0.261112 -0.047015 }
+          <Binormal> { 0.134311 -0.517716 0.120894 }
+        }
+        <Normal> { 0.862148 0.108097 -0.494919 }
+      }
+      <Vertex> 2963 {
+        0.407968342304 0.245635583997 1.39632916451
+        <UV>  {
+          0.223618 0.520283
+          <Tangent> { -0.933561 -0.358259 -0.010681 }
+          <Binormal> { -0.003274 0.008815 -0.009465 }
+        }
+        <Normal> { 0.929960 0.367016 0.020081 }
+      }
+      <Vertex> 2964 {
+        0.407968342304 0.245635583997 1.39632916451
+        <UV>  {
+          0.223618 0.520283
+          <Tangent> { -0.933561 -0.358259 -0.010681 }
+          <Binormal> { -0.003274 0.008815 -0.009465 }
+        }
+        <Normal> { 0.929960 0.367016 0.020081 }
+      }
+      <Vertex> 2965 {
+        0.479692280293 0.309294164181 1.53500580788
+        <UV>  {
+          0.247432 0.557414
+          <Tangent> { -0.871651 -0.490059 0.008217 }
+          <Binormal> { -0.054003 0.095094 -0.057169 }
+        }
+        <Normal> { 0.837733 0.536576 0.101199 }
+      }
+      <Vertex> 2966 {
+        0.248577266932 0.222316816449 1.73560297489
+        <UV>  {
+          0.181940 0.610501
+          <Tangent> { -0.999706 -0.004190 -0.023894 }
+          <Binormal> { -0.000249 0.050065 0.001646 }
+        }
+        <Normal> { 0.997253 0.002533 0.073916 }
+      }
+      <Vertex> 2967 {
+        0.407968342304 0.245635583997 1.39632916451
+        <UV>  {
+          0.223618 0.520283
+          <Tangent> { -0.933561 -0.358259 -0.010681 }
+          <Binormal> { -0.003274 0.008815 -0.009465 }
+        }
+        <Normal> { 0.929960 0.367016 0.020081 }
+      }
+      <Vertex> 2968 {
+        0.248577266932 0.222316816449 1.73560297489
+        <UV>  {
+          0.181940 0.610501
+          <Tangent> { -0.999706 -0.004190 -0.023894 }
+          <Binormal> { -0.000249 0.050065 0.001646 }
+        }
+        <Normal> { 0.997253 0.002533 0.073916 }
+      }
+      <Vertex> 2969 {
+        0.248577266932 0.190188720822 1.45099437237
+        <UV>  {
+          0.180246 0.535940
+          <Tangent> { -0.999622 0.012325 -0.024569 }
+          <Binormal> { -0.001723 -0.146624 -0.003446 }
+        }
+        <Normal> { 0.992431 -0.008789 -0.122288 }
+      }
+      <Vertex> 2970 {
+        0.347412407398 0.263333946466 1.28946197033
+        <UV>  {
+          0.207479 0.490495
+          <Tangent> { -0.964163 -0.261112 -0.047015 }
+          <Binormal> { 0.134311 -0.517716 0.120894 }
+        }
+        <Normal> { 0.862148 0.108097 -0.494919 }
+      }
+      <Vertex> 2971 {
+        0.248577266932 0.190188720822 1.45099437237
+        <UV>  {
+          0.180246 0.535940
+          <Tangent> { -0.999622 0.012325 -0.024569 }
+          <Binormal> { -0.001723 -0.146624 -0.003446 }
+        }
+        <Normal> { 0.992431 -0.008789 -0.122288 }
+      }
+      <Vertex> 2972 {
+        0.248577266932 0.209162637591 1.3418943882
+        <UV>  {
+          0.179570 0.507963
+          <Tangent> { -0.999238 0.014095 -0.036400 }
+          <Binormal> { -0.005175 -0.389802 -0.008871 }
+        }
+        <Normal> { 0.934446 -0.004303 -0.356059 }
+      }
+      <Vertex> 2973 {
+        0.309567451477 0.30606546998 1.22715938091
+        <UV>  {
+          0.198320 0.468956
+          <Tangent> { -0.910409 -0.408474 -0.065601 }
+          <Binormal> { 0.346194 -0.801018 0.183171 }
+        }
+        <Normal> { 0.539506 0.040864 -0.840968 }
+      }
+      <Vertex> 2974 {
+        0.248577266932 0.209162637591 1.3418943882
+        <UV>  {
+          0.179570 0.507963
+          <Tangent> { -0.999238 0.014095 -0.036400 }
+          <Binormal> { -0.005175 -0.389802 -0.008871 }
+        }
+        <Normal> { 0.934446 -0.004303 -0.356059 }
+      }
+      <Vertex> 2975 {
+        0.248577266932 0.23618850112 1.24630725384
+        <UV>  {
+          0.178152 0.483614
+          <Tangent> { -0.999497 -0.022363 -0.022472 }
+          <Binormal> { 0.021517 -0.959156 -0.002520 }
+        }
+        <Normal> { 0.303323 0.009308 -0.952818 }
+      }
+      <Vertex> 2976 {
+        0.31424793601 0.989793002605 1.50772297382
+        <UV>  {
+          0.205824 0.217722
+          <Tangent> { -0.909889 0.386321 0.151187 }
+          <Binormal> { 0.020228 0.092334 -0.114202 }
+        }
+        <Normal> { -0.841731 0.482894 0.241340 }
+      }
+      <Vertex> 2977 {
+        0.31424793601 0.992426335812 1.40973925591
+        <UV>  {
+          0.207391 0.243320
+          <Tangent> { -0.988899 -0.004335 -0.148524 }
+          <Binormal> { 0.030443 -0.117375 -0.199269 }
+        }
+        <Normal> { -0.945036 0.197363 -0.260628 }
+      }
+      <Vertex> 2978 {
+        0.248577311635 0.97661948204 1.52601051331
+        <UV>  {
+          0.182209 0.215068
+          <Tangent> { -0.999790 -0.009244 -0.018293 }
+          <Binormal> { 0.003346 -0.348263 -0.006896 }
+        }
+        <Normal> { -0.930845 -0.001709 -0.365368 }
+      }
+      <Vertex> 2979 {
+        0.31424793601 0.931515991688 1.33387351036
+        <UV>  {
+          0.203817 0.263549
+          <Tangent> { -0.961053 -0.218212 0.169591 }
+          <Binormal> { 0.209117 -0.851438 0.089501 }
+        }
+        <Normal> { -0.578967 -0.224586 -0.783776 }
+      }
+      <Vertex> 2980 {
+        0.248577311635 0.940166473389 1.4468537569
+        <UV>  {
+          0.181839 0.239784
+          <Tangent> { -0.999875 -0.012020 -0.010263 }
+          <Binormal> { 0.007127 -0.586667 -0.007311 }
+        }
+        <Normal> { -0.803705 -0.002350 -0.594989 }
+      }
+      <Vertex> 2981 {
+        0.248577311635 0.97661948204 1.52601051331
+        <UV>  {
+          0.182209 0.215068
+          <Tangent> { -0.999790 -0.009244 -0.018293 }
+          <Binormal> { 0.003346 -0.348263 -0.006896 }
+        }
+        <Normal> { -0.930845 -0.001709 -0.365368 }
+      }
+      <Vertex> 2982 {
+        0.248577311635 0.97661948204 1.52601051331
+        <UV>  {
+          0.182209 0.215068
+          <Tangent> { -0.999790 -0.009244 -0.018293 }
+          <Binormal> { 0.003346 -0.348263 -0.006896 }
+        }
+        <Normal> { -0.930845 -0.001709 -0.365368 }
+      }
+      <Vertex> 2983 {
+        0.31424793601 0.992426335812 1.40973925591
+        <UV>  {
+          0.207391 0.243320
+          <Tangent> { -0.988899 -0.004335 -0.148524 }
+          <Binormal> { 0.030443 -0.117375 -0.199269 }
+        }
+        <Normal> { -0.945036 0.197363 -0.260628 }
+      }
+      <Vertex> 2984 {
+        0.31424793601 0.931515991688 1.33387351036
+        <UV>  {
+          0.203817 0.263549
+          <Tangent> { -0.961053 -0.218212 0.169591 }
+          <Binormal> { 0.209117 -0.851438 0.089501 }
+        }
+        <Normal> { -0.578967 -0.224586 -0.783776 }
+      }
+      <Vertex> 2985 {
+        0.31424793601 0.931515991688 1.33387351036
+        <UV>  {
+          0.203817 0.263549
+          <Tangent> { -0.961053 -0.218212 0.169591 }
+          <Binormal> { 0.209117 -0.851438 0.089501 }
+        }
+        <Normal> { -0.578967 -0.224586 -0.783776 }
+      }
+      <Vertex> 2986 {
+        0.248577296734 0.825507104397 1.36095297337
+        <UV>  {
+          0.181085 0.287149
+          <Tangent> { -0.999839 -0.017373 -0.004553 }
+          <Binormal> { 0.015793 -0.907597 -0.004957 }
+        }
+        <Normal> { -0.415326 -0.002258 -0.909635 }
+      }
+      <Vertex> 2987 {
+        0.248577311635 0.940166473389 1.4468537569
+        <UV>  {
+          0.181839 0.239784
+          <Tangent> { -0.999875 -0.012020 -0.010263 }
+          <Binormal> { 0.007127 -0.586667 -0.007311 }
+        }
+        <Normal> { -0.803705 -0.002350 -0.594989 }
+      }
+      <Vertex> 2988 {
+        0.31424793601 0.931515991688 1.33387351036
+        <UV>  {
+          0.203817 0.263549
+          <Tangent> { -0.961053 -0.218212 0.169591 }
+          <Binormal> { 0.209117 -0.851438 0.089501 }
+        }
+        <Normal> { -0.578967 -0.224586 -0.783776 }
+      }
+      <Vertex> 2989 {
+        0.31424793601 0.847973823547 1.32980525494
+        <UV>  {
+          0.205892 0.285353
+          <Tangent> { -0.997905 0.058048 0.028547 }
+          <Binormal> { -0.061888 -0.859839 -0.414972 }
+        }
+        <Normal> { -0.290689 0.432752 -0.853328 }
+      }
+      <Vertex> 2990 {
+        0.248577296734 0.825507104397 1.36095297337
+        <UV>  {
+          0.181085 0.287149
+          <Tangent> { -0.999839 -0.017373 -0.004553 }
+          <Binormal> { 0.015793 -0.907597 -0.004957 }
+        }
+        <Normal> { -0.415326 -0.002258 -0.909635 }
+      }
+      <Vertex> 2991 {
+        0.31424793601 0.992426335812 1.40973925591
+        <UV>  {
+          0.207391 0.243320
+          <Tangent> { -0.988899 -0.004335 -0.148524 }
+          <Binormal> { 0.030443 -0.117375 -0.199269 }
+        }
+        <Normal> { -0.945036 0.197363 -0.260628 }
+      }
+      <Vertex> 2992 {
+        0.31424793601 0.989793002605 1.50772297382
+        <UV>  {
+          0.205824 0.217722
+          <Tangent> { -0.909889 0.386321 0.151187 }
+          <Binormal> { 0.020228 0.092334 -0.114202 }
+        }
+        <Normal> { -0.841731 0.482894 0.241340 }
+      }
+      <Vertex> 2993 {
+        0.365270227194 0.936121821404 1.44520199299
+        <UV>  {
+          0.237878 0.241743
+          <Tangent> { -0.526000 0.763911 -0.373849 }
+          <Binormal> { 0.373648 0.072338 -0.377904 }
+        }
+        <Normal> { -0.182287 0.983184 0.007965 }
+      }
+      <Vertex> 2994 {
+        0.31424793601 0.931515991688 1.33387351036
+        <UV>  {
+          0.203817 0.263549
+          <Tangent> { -0.961053 -0.218212 0.169591 }
+          <Binormal> { 0.209117 -0.851438 0.089501 }
+        }
+        <Normal> { -0.578967 -0.224586 -0.783776 }
+      }
+      <Vertex> 2995 {
+        0.31424793601 0.992426335812 1.40973925591
+        <UV>  {
+          0.207391 0.243320
+          <Tangent> { -0.988899 -0.004335 -0.148524 }
+          <Binormal> { 0.030443 -0.117375 -0.199269 }
+        }
+        <Normal> { -0.945036 0.197363 -0.260628 }
+      }
+      <Vertex> 2996 {
+        0.365270227194 0.936121821404 1.44520199299
+        <UV>  {
+          0.237878 0.241743
+          <Tangent> { -0.526000 0.763911 -0.373849 }
+          <Binormal> { 0.373648 0.072338 -0.377904 }
+        }
+        <Normal> { -0.182287 0.983184 0.007965 }
+      }
+      <Vertex> 2997 {
+        0.365270227194 0.936121821404 1.44520199299
+        <UV>  {
+          0.237878 0.241743
+          <Tangent> { -0.526000 0.763911 -0.373849 }
+          <Binormal> { 0.373648 0.072338 -0.377904 }
+        }
+        <Normal> { -0.182287 0.983184 0.007965 }
+      }
+      <Vertex> 2998 {
+        0.31424793601 0.847973823547 1.32980525494
+        <UV>  {
+          0.205892 0.285353
+          <Tangent> { -0.997905 0.058048 0.028547 }
+          <Binormal> { -0.061888 -0.859839 -0.414972 }
+        }
+        <Normal> { -0.290689 0.432752 -0.853328 }
+      }
+      <Vertex> 2999 {
+        0.31424793601 0.931515991688 1.33387351036
+        <UV>  {
+          0.203817 0.263549
+          <Tangent> { -0.961053 -0.218212 0.169591 }
+          <Binormal> { 0.209117 -0.851438 0.089501 }
+        }
+        <Normal> { -0.578967 -0.224586 -0.783776 }
+      }
+      <Vertex> 3000 {
+        0.248577296734 0.683510422707 1.24961578846
+        <UV>  {
+          0.180167 0.348760
+          <Tangent> { -0.999861 -0.015849 -0.005180 }
+          <Binormal> { 0.014626 -0.921097 -0.004869 }
+        }
+        <Normal> { -0.384198 -0.001221 -0.923215 }
+      }
+      <Vertex> 3001 {
+        0.248577296734 0.825507104397 1.36095297337
+        <UV>  {
+          0.181085 0.287149
+          <Tangent> { -0.999839 -0.017373 -0.004553 }
+          <Binormal> { 0.015793 -0.907597 -0.004957 }
+        }
+        <Normal> { -0.415326 -0.002258 -0.909635 }
+      }
+      <Vertex> 3002 {
+        0.31424793601 0.847973823547 1.32980525494
+        <UV>  {
+          0.205892 0.285353
+          <Tangent> { -0.997905 0.058048 0.028547 }
+          <Binormal> { -0.061888 -0.859839 -0.414972 }
+        }
+        <Normal> { -0.290689 0.432752 -0.853328 }
+      }
+      <Vertex> 3003 {
+        0.31424793601 0.847973823547 1.32980525494
+        <UV>  {
+          0.205892 0.285353
+          <Tangent> { -0.997905 0.058048 0.028547 }
+          <Binormal> { -0.061888 -0.859839 -0.414972 }
+        }
+        <Normal> { -0.290689 0.432752 -0.853328 }
+      }
+      <Vertex> 3004 {
+        0.339759081602 0.695588648319 1.23194229603
+        <UV>  {
+          0.213284 0.347517
+          <Tangent> { -0.950752 -0.193457 0.242167 }
+          <Binormal> { 0.246847 -0.915864 0.237483 }
+        }
+        <Normal> { -0.374859 -0.326060 -0.867824 }
+      }
+      <Vertex> 3005 {
+        0.248577296734 0.683510422707 1.24961578846
+        <UV>  {
+          0.180167 0.348760
+          <Tangent> { -0.999861 -0.015849 -0.005180 }
+          <Binormal> { 0.014626 -0.921097 -0.004869 }
+        }
+        <Normal> { -0.384198 -0.001221 -0.923215 }
+      }
+      <Vertex> 3006 {
+        0.4032073915 0.0598407760262 3.22907686234
+        <UV>  {
+          0.502038 0.777562
+          <Tangent> { -0.191353 0.093922 0.977017 }
+          <Binormal> { 0.009095 0.990925 -0.093477 }
+        }
+        <Normal> { 0.995270 0.000000 0.096835 }
+      }
+      <Vertex> 3007 {
+        0.4032073915 0.0854838788509 3.31478643417
+        <UV>  {
+          0.485629 0.783634
+          <Tangent> { -0.190416 0.281388 0.940512 }
+          <Binormal> { 0.120333 0.939119 -0.256609 }
+        }
+        <Normal> { 0.918485 -0.009674 0.395306 }
+      }
+      <Vertex> 3008 {
+        0.37082657218 0.0843533650041 3.3028845787
+        <UV>  {
+          0.485629 0.771490
+          <Tangent> { -0.190415 0.281387 0.940512 }
+          <Binormal> { 0.243254 0.933790 -0.230127 }
+        }
+        <Normal> { 0.919004 -0.149510 0.364757 }
+      }
+      <Vertex> 3009 {
+        0.37082657218 0.0843533650041 3.3028845787
+        <UV>  {
+          0.519640 0.759351
+          <Tangent> { 0.989159 0.043370 0.140297 }
+          <Binormal> { 0.036795 -0.231870 -0.187747 }
+        }
+        <Normal> { 0.919004 -0.149510 0.364757 }
+      }
+      <Vertex> 3010 {
+        0.4032073915 0.0854838788509 3.31478643417
+        <UV>  {
+          0.514867 0.755546
+          <Tangent> { 0.554905 -0.410978 -0.723310 }
+          <Binormal> { -0.169460 -0.883707 0.372109 }
+        }
+        <Normal> { 0.918485 -0.009674 0.395306 }
+      }
+      <Vertex> 3011 {
+        0.403207421303 0.152986124158 3.43607854843
+        <UV>  {
+          0.520491 0.747630
+          <Tangent> { 0.884425 -0.349595 -0.309152 }
+          <Binormal> { -0.245148 -0.859770 0.270924 }
+        }
+        <Normal> { 0.675985 0.039125 0.735832 }
+      }
+      <Vertex> 3012 {
+        0.403207421303 0.152986124158 3.43607854843
+        <UV>  {
+          0.520491 0.747630
+          <Tangent> { 0.884425 -0.349595 -0.309152 }
+          <Binormal> { -0.245148 -0.859770 0.270924 }
+        }
+        <Normal> { 0.675985 0.039125 0.735832 }
+      }
+      <Vertex> 3013 {
+        0.347122251987 0.13998247683 3.41546368599
+        <UV>  {
+          0.521644 0.748613
+          <Tangent> { 0.868608 0.063191 0.491453 }
+          <Binormal> { 0.191890 -0.236738 -0.308712 }
+        }
+        <Normal> { 0.685751 -0.305521 0.660543 }
+      }
+      <Vertex> 3014 {
+        0.37082657218 0.0843533650041 3.3028845787
+        <UV>  {
+          0.519640 0.759351
+          <Tangent> { 0.989159 0.043370 0.140297 }
+          <Binormal> { 0.036795 -0.231870 -0.187747 }
+        }
+        <Normal> { 0.919004 -0.149510 0.364757 }
+      }
+      <Vertex> 3015 {
+        0.347122251987 0.13998247683 3.41546368599
+        <UV>  {
+          0.521644 0.748613
+          <Tangent> { 0.868608 0.063191 0.491453 }
+          <Binormal> { 0.191890 -0.236738 -0.308712 }
+        }
+        <Normal> { 0.685751 -0.305521 0.660543 }
+      }
+      <Vertex> 3016 {
+        0.403207421303 0.152986124158 3.43607854843
+        <UV>  {
+          0.520491 0.747630
+          <Tangent> { 0.884425 -0.349595 -0.309152 }
+          <Binormal> { -0.245148 -0.859770 0.270924 }
+        }
+        <Normal> { 0.675985 0.039125 0.735832 }
+      }
+      <Vertex> 3017 {
+        0.403207421303 0.178602680564 3.44820761681
+        <UV>  {
+          0.521391 0.746491
+          <Tangent> { 0.774369 -0.584633 0.241985 }
+          <Binormal> { -0.587117 -0.786773 -0.022020 }
+        }
+        <Normal> { -0.056825 0.014466 0.998260 }
+      }
+      <Vertex> 3018 {
+        0.403207421303 0.178602680564 3.44820761681
+        <UV>  {
+          0.521391 0.746491
+          <Tangent> { 0.774369 -0.584633 0.241985 }
+          <Binormal> { -0.587117 -0.786773 -0.022020 }
+        }
+        <Normal> { -0.056825 0.014466 0.998260 }
+      }
+      <Vertex> 3019 {
+        0.338445752859 0.176341682673 3.42440366745
+        <UV>  {
+          0.522011 0.747005
+          <Tangent> { 0.749157 -0.144267 0.646492 }
+          <Binormal> { 0.270962 -0.653019 -0.459716 }
+        }
+        <Normal> { -0.085940 -0.597095 0.797510 }
+      }
+      <Vertex> 3020 {
+        0.347122251987 0.13998247683 3.41546368599
+        <UV>  {
+          0.521644 0.748613
+          <Tangent> { 0.868608 0.063191 0.491453 }
+          <Binormal> { 0.191890 -0.236738 -0.308712 }
+        }
+        <Normal> { 0.685751 -0.305521 0.660543 }
+      }
+      <Vertex> 3021 {
+        0.338445752859 0.176341682673 3.42440366745
+        <UV>  {
+          0.522011 0.747005
+          <Tangent> { 0.749157 -0.144267 0.646492 }
+          <Binormal> { 0.270962 -0.653019 -0.459716 }
+        }
+        <Normal> { -0.085940 -0.597095 0.797510 }
+      }
+      <Vertex> 3022 {
+        0.403207421303 0.178602680564 3.44820761681
+        <UV>  {
+          0.521391 0.746491
+          <Tangent> { 0.774369 -0.584633 0.241985 }
+          <Binormal> { -0.587117 -0.786773 -0.022020 }
+        }
+        <Normal> { -0.056825 0.014466 0.998260 }
+      }
+      <Vertex> 3023 {
+        0.403207421303 0.240551263094 3.41272878647
+        <UV>  {
+          0.521840 0.745935
+          <Tangent> { 0.663320 -0.475774 0.577620 }
+          <Binormal> { -0.320689 -0.876539 -0.353718 }
+        }
+        <Normal> { -0.714866 -0.020508 0.698935 }
+      }
+      <Vertex> 3024 {
+        0.403207421303 0.240551263094 3.41272878647
+        <UV>  {
+          0.521840 0.745935
+          <Tangent> { 0.663320 -0.475774 0.577620 }
+          <Binormal> { -0.320689 -0.876539 -0.353718 }
+        }
+        <Normal> { -0.714866 -0.020508 0.698935 }
+      }
+      <Vertex> 3025 {
+        0.347122251987 0.238593146205 3.39211392403
+        <UV>  {
+          0.522199 0.746213
+          <Tangent> { 0.664694 -0.105575 0.739618 }
+          <Binormal> { 0.308914 -0.862235 -0.400698 }
+        }
+        <Normal> { -0.664418 -0.497299 0.557878 }
+      }
+      <Vertex> 3026 {
+        0.338445752859 0.176341682673 3.42440366745
+        <UV>  {
+          0.522011 0.747005
+          <Tangent> { 0.749157 -0.144267 0.646492 }
+          <Binormal> { 0.270962 -0.653019 -0.459716 }
+        }
+        <Normal> { -0.085940 -0.597095 0.797510 }
+      }
+      <Vertex> 3027 {
+        0.347122251987 0.238593146205 3.39211392403
+        <UV>  {
+          0.522199 0.746213
+          <Tangent> { 0.664694 -0.105575 0.739618 }
+          <Binormal> { 0.308914 -0.862235 -0.400698 }
+        }
+        <Normal> { -0.664418 -0.497299 0.557878 }
+      }
+      <Vertex> 3028 {
+        0.403207421303 0.240551263094 3.41272878647
+        <UV>  {
+          0.521840 0.745935
+          <Tangent> { 0.663320 -0.475774 0.577620 }
+          <Binormal> { -0.320689 -0.876539 -0.353718 }
+        }
+        <Normal> { -0.714866 -0.020508 0.698935 }
+      }
+      <Vertex> 3029 {
+        0.403207421303 0.281378746033 3.33914852142
+        <UV>  {
+          0.522141 0.745532
+          <Tangent> { 0.640206 -0.218763 0.736396 }
+          <Binormal> { -0.041893 -0.907137 -0.233065 }
+        }
+        <Normal> { -0.941679 -0.042268 0.333781 }
+      }
+      <Vertex> 3030 {
+        0.403207421303 0.281378746033 3.33914852142
+        <UV>  {
+          0.522141 0.745532
+          <Tangent> { 0.640206 -0.218763 0.736396 }
+          <Binormal> { -0.041893 -0.907137 -0.233065 }
+        }
+        <Normal> { -0.941679 -0.042268 0.333781 }
+      }
+      <Vertex> 3031 {
+        0.37082657218 0.280248254538 3.32724666595
+        <UV>  {
+          0.522313 0.745656
+          <Tangent> { 0.632722 0.003599 0.774371 }
+          <Binormal> { 0.245640 -0.869688 -0.196665 }
+        }
+        <Normal> { -0.913327 -0.316019 0.256722 }
+      }
+      <Vertex> 3032 {
+        0.347122251987 0.238593146205 3.39211392403
+        <UV>  {
+          0.522199 0.746213
+          <Tangent> { 0.664694 -0.105575 0.739618 }
+          <Binormal> { 0.308914 -0.862235 -0.400698 }
+        }
+        <Normal> { -0.664418 -0.497299 0.557878 }
+      }
+      <Vertex> 3033 {
+        0.403207421303 0.290145397186 3.24718236923
+        <UV>  {
+          0.522395 0.745149
+          <Tangent> { 0.619447 0.074242 0.781520 }
+          <Binormal> { -0.007142 -0.718284 0.073895 }
+        }
+        <Normal> { -0.995331 0.000000 -0.096194 }
+      }
+      <Vertex> 3034 {
+        0.37082657218 0.280248254538 3.32724666595
+        <UV>  {
+          0.522313 0.745656
+          <Tangent> { 0.632722 0.003599 0.774371 }
+          <Binormal> { 0.245640 -0.869688 -0.196665 }
+        }
+        <Normal> { -0.913327 -0.316019 0.256722 }
+      }
+      <Vertex> 3035 {
+        0.403207421303 0.281378746033 3.33914852142
+        <UV>  {
+          0.522141 0.745532
+          <Tangent> { 0.640206 -0.218763 0.736396 }
+          <Binormal> { -0.041893 -0.907137 -0.233065 }
+        }
+        <Normal> { -0.941679 -0.042268 0.333781 }
+      }
+      <Vertex> 3036 {
+        0.4032073915 0.0598407760262 3.22907686234
+        <UV>  {
+          0.502038 0.777562
+          <Tangent> { -0.191353 0.093922 0.977017 }
+          <Binormal> { 0.009095 0.990925 -0.093477 }
+        }
+        <Normal> { 0.995270 0.000000 0.096835 }
+      }
+      <Vertex> 3037 {
+        0.37082657218 0.0843533650041 3.3028845787
+        <UV>  {
+          0.485629 0.771490
+          <Tangent> { -0.190415 0.281387 0.940512 }
+          <Binormal> { 0.243254 0.933790 -0.230127 }
+        }
+        <Normal> { 0.919004 -0.149510 0.364757 }
+      }
+      <Vertex> 3038 {
+        0.347122251987 0.0812647491693 3.27036762238
+        <UV>  {
+          0.490026 0.760972
+          <Tangent> { -0.191229 0.231789 0.953785 }
+          <Binormal> { 0.322165 0.932686 -0.162070 }
+        }
+        <Normal> { 0.926267 -0.275216 0.257424 }
+      }
+      <Vertex> 3039 {
+        0.347122251987 0.0812647491693 3.27036762238
+        <UV>  {
+          0.525151 0.759352
+          <Tangent> { 0.469412 0.251078 0.846529 }
+          <Binormal> { 0.297612 0.663275 -0.361755 }
+        }
+        <Normal> { 0.926267 -0.275216 0.257424 }
+      }
+      <Vertex> 3040 {
+        0.37082657218 0.0843533650041 3.3028845787
+        <UV>  {
+          0.519640 0.759351
+          <Tangent> { 0.989159 0.043370 0.140297 }
+          <Binormal> { 0.036795 -0.231870 -0.187747 }
+        }
+        <Normal> { 0.919004 -0.149510 0.364757 }
+      }
+      <Vertex> 3041 {
+        0.347122251987 0.13998247683 3.41546368599
+        <UV>  {
+          0.521644 0.748613
+          <Tangent> { 0.868608 0.063191 0.491453 }
+          <Binormal> { 0.191890 -0.236738 -0.308712 }
+        }
+        <Normal> { 0.685751 -0.305521 0.660543 }
+      }
+      <Vertex> 3042 {
+        0.347122251987 0.13998247683 3.41546368599
+        <UV>  {
+          0.521644 0.748613
+          <Tangent> { 0.868608 0.063191 0.491453 }
+          <Binormal> { 0.191890 -0.236738 -0.308712 }
+        }
+        <Normal> { 0.685751 -0.305521 0.660543 }
+      }
+      <Vertex> 3043 {
+        0.306064903736 0.120560653508 3.35914254189
+        <UV>  {
+          0.522999 0.748668
+          <Tangent> { 0.419921 0.169545 0.891583 }
+          <Binormal> { 0.668218 0.406182 -0.391960 }
+        }
+        <Normal> { 0.632069 -0.678213 0.374737 }
+      }
+      <Vertex> 3044 {
+        0.347122251987 0.0812647491693 3.27036762238
+        <UV>  {
+          0.525151 0.759352
+          <Tangent> { 0.469412 0.251078 0.846529 }
+          <Binormal> { 0.297612 0.663275 -0.361755 }
+        }
+        <Normal> { 0.926267 -0.275216 0.257424 }
+      }
+      <Vertex> 3045 {
+        0.306064903736 0.120560653508 3.35914254189
+        <UV>  {
+          0.522999 0.748668
+          <Tangent> { 0.419921 0.169545 0.891583 }
+          <Binormal> { 0.668218 0.406182 -0.391960 }
+        }
+        <Normal> { 0.632069 -0.678213 0.374737 }
+      }
+      <Vertex> 3046 {
+        0.347122251987 0.13998247683 3.41546368599
+        <UV>  {
+          0.521644 0.748613
+          <Tangent> { 0.868608 0.063191 0.491453 }
+          <Binormal> { 0.191890 -0.236738 -0.308712 }
+        }
+        <Normal> { 0.685751 -0.305521 0.660543 }
+      }
+      <Vertex> 3047 {
+        0.338445752859 0.176341682673 3.42440366745
+        <UV>  {
+          0.522011 0.747005
+          <Tangent> { 0.749157 -0.144267 0.646492 }
+          <Binormal> { 0.270962 -0.653019 -0.459716 }
+        }
+        <Normal> { -0.085940 -0.597095 0.797510 }
+      }
+      <Vertex> 3048 {
+        0.338445752859 0.176341682673 3.42440366745
+        <UV>  {
+          0.522011 0.747005
+          <Tangent> { 0.749157 -0.144267 0.646492 }
+          <Binormal> { 0.270962 -0.653019 -0.459716 }
+        }
+        <Normal> { -0.085940 -0.597095 0.797510 }
+      }
+      <Vertex> 3049 {
+        0.291036874056 0.170164465904 3.35936999321
+        <UV>  {
+          0.522735 0.747021
+          <Tangent> { 0.437640 0.205488 0.875355 }
+          <Binormal> { 0.885720 -0.194053 -0.397269 }
+        }
+        <Normal> { -0.026368 -0.920133 0.390667 }
+      }
+      <Vertex> 3050 {
+        0.306064903736 0.120560653508 3.35914254189
+        <UV>  {
+          0.522999 0.748668
+          <Tangent> { 0.419921 0.169545 0.891583 }
+          <Binormal> { 0.668218 0.406182 -0.391960 }
+        }
+        <Normal> { 0.632069 -0.678213 0.374737 }
+      }
+      <Vertex> 3051 {
+        0.291036874056 0.170164465904 3.35936999321
+        <UV>  {
+          0.522735 0.747021
+          <Tangent> { 0.437640 0.205488 0.875355 }
+          <Binormal> { 0.885720 -0.194053 -0.397269 }
+        }
+        <Normal> { -0.026368 -0.920133 0.390667 }
+      }
+      <Vertex> 3052 {
+        0.338445752859 0.176341682673 3.42440366745
+        <UV>  {
+          0.522011 0.747005
+          <Tangent> { 0.749157 -0.144267 0.646492 }
+          <Binormal> { 0.270962 -0.653019 -0.459716 }
+        }
+        <Normal> { -0.085940 -0.597095 0.797510 }
+      }
+      <Vertex> 3053 {
+        0.347122251987 0.238593146205 3.39211392403
+        <UV>  {
+          0.522199 0.746213
+          <Tangent> { 0.664694 -0.105575 0.739618 }
+          <Binormal> { 0.308914 -0.862235 -0.400698 }
+        }
+        <Normal> { -0.664418 -0.497299 0.557878 }
+      }
+      <Vertex> 3054 {
+        0.347122251987 0.238593146205 3.39211392403
+        <UV>  {
+          0.522199 0.746213
+          <Tangent> { 0.664694 -0.105575 0.739618 }
+          <Binormal> { 0.308914 -0.862235 -0.400698 }
+        }
+        <Normal> { -0.664418 -0.497299 0.557878 }
+      }
+      <Vertex> 3055 {
+        0.306064903736 0.233243539929 3.33579301834
+        <UV>  {
+          0.522610 0.746206
+          <Tangent> { 0.504069 0.261384 0.823160 }
+          <Binormal> { 0.709687 -0.604396 -0.242665 }
+        }
+        <Normal> { -0.569445 -0.776696 0.269112 }
+      }
+      <Vertex> 3056 {
+        0.291036874056 0.170164465904 3.35936999321
+        <UV>  {
+          0.522735 0.747021
+          <Tangent> { 0.437640 0.205488 0.875355 }
+          <Binormal> { 0.885720 -0.194053 -0.397269 }
+        }
+        <Normal> { -0.026368 -0.920133 0.390667 }
+      }
+      <Vertex> 3057 {
+        0.306064903736 0.233243539929 3.33579301834
+        <UV>  {
+          0.522610 0.746206
+          <Tangent> { 0.504069 0.261384 0.823160 }
+          <Binormal> { 0.709687 -0.604396 -0.242665 }
+        }
+        <Normal> { -0.569445 -0.776696 0.269112 }
+      }
+      <Vertex> 3058 {
+        0.347122251987 0.238593146205 3.39211392403
+        <UV>  {
+          0.522199 0.746213
+          <Tangent> { 0.664694 -0.105575 0.739618 }
+          <Binormal> { 0.308914 -0.862235 -0.400698 }
+        }
+        <Normal> { -0.664418 -0.497299 0.557878 }
+      }
+      <Vertex> 3059 {
+        0.37082657218 0.280248254538 3.32724666595
+        <UV>  {
+          0.522313 0.745656
+          <Tangent> { 0.632722 0.003599 0.774371 }
+          <Binormal> { 0.245640 -0.869688 -0.196665 }
+        }
+        <Normal> { -0.913327 -0.316019 0.256722 }
+      }
+      <Vertex> 3060 {
+        0.37082657218 0.280248254538 3.32724666595
+        <UV>  {
+          0.522313 0.745656
+          <Tangent> { 0.632722 0.003599 0.774371 }
+          <Binormal> { 0.245640 -0.869688 -0.196665 }
+        }
+        <Normal> { -0.913327 -0.316019 0.256722 }
+      }
+      <Vertex> 3061 {
+        0.347122251987 0.277159661055 3.29472947121
+        <UV>  {
+          0.522508 0.745645
+          <Tangent> { 0.573648 0.233759 0.785038 }
+          <Binormal> { 0.408677 -0.733018 -0.080362 }
+        }
+        <Normal> { -0.865139 -0.492630 0.093875 }
+      }
+      <Vertex> 3062 {
+        0.306064903736 0.233243539929 3.33579301834
+        <UV>  {
+          0.522610 0.746206
+          <Tangent> { 0.504069 0.261384 0.823160 }
+          <Binormal> { 0.709687 -0.604396 -0.242665 }
+        }
+        <Normal> { -0.569445 -0.776696 0.269112 }
+      }
+      <Vertex> 3063 {
+        0.403207421303 0.290145397186 3.24718236923
+        <UV>  {
+          0.522395 0.745149
+          <Tangent> { 0.619447 0.074242 0.781520 }
+          <Binormal> { -0.007142 -0.718284 0.073895 }
+        }
+        <Normal> { -0.995331 0.000000 -0.096194 }
+      }
+      <Vertex> 3064 {
+        0.347122251987 0.277159661055 3.29472947121
+        <UV>  {
+          0.522508 0.745645
+          <Tangent> { 0.573648 0.233759 0.785038 }
+          <Binormal> { 0.408677 -0.733018 -0.080362 }
+        }
+        <Normal> { -0.865139 -0.492630 0.093875 }
+      }
+      <Vertex> 3065 {
+        0.37082657218 0.280248254538 3.32724666595
+        <UV>  {
+          0.522313 0.745656
+          <Tangent> { 0.632722 0.003599 0.774371 }
+          <Binormal> { 0.245640 -0.869688 -0.196665 }
+        }
+        <Normal> { -0.913327 -0.316019 0.256722 }
+      }
+      <Vertex> 3066 {
+        0.4032073915 0.0598407760262 3.22907686234
+        <UV>  {
+          0.502038 0.777562
+          <Tangent> { -0.191353 0.093922 0.977017 }
+          <Binormal> { 0.009095 0.990925 -0.093477 }
+        }
+        <Normal> { 0.995270 0.000000 0.096835 }
+      }
+      <Vertex> 3067 {
+        0.347122251987 0.0812647491693 3.27036762238
+        <UV>  {
+          0.490026 0.760972
+          <Tangent> { -0.191229 0.231789 0.953785 }
+          <Binormal> { 0.322165 0.932686 -0.162070 }
+        }
+        <Normal> { 0.926267 -0.275216 0.257424 }
+      }
+      <Vertex> 3068 {
+        0.338445752859 0.0770456567407 3.22594857216
+        <UV>  {
+          0.497642 0.754900
+          <Tangent> { -0.191443 0.143957 0.970889 }
+          <Binormal> { 0.494781 0.852208 -0.028798 }
+        }
+        <Normal> { 0.863613 -0.498978 0.071749 }
+      }
+      <Vertex> 3069 {
+        0.338445752859 0.0770456567407 3.22594857216
+        <UV>  {
+          0.529924 0.755546
+          <Tangent> { -0.032080 0.131875 0.990747 }
+          <Binormal> { 0.503823 0.857924 -0.097882 }
+        }
+        <Normal> { 0.863613 -0.498978 0.071749 }
+      }
+      <Vertex> 3070 {
+        0.347122251987 0.0812647491693 3.27036762238
+        <UV>  {
+          0.525151 0.759352
+          <Tangent> { 0.469412 0.251078 0.846529 }
+          <Binormal> { 0.297612 0.663275 -0.361755 }
+        }
+        <Normal> { 0.926267 -0.275216 0.257424 }
+      }
+      <Vertex> 3071 {
+        0.306064903736 0.120560653508 3.35914254189
+        <UV>  {
+          0.522999 0.748668
+          <Tangent> { 0.419921 0.169545 0.891583 }
+          <Binormal> { 0.668218 0.406182 -0.391960 }
+        }
+        <Normal> { 0.632069 -0.678213 0.374737 }
+      }
+      <Vertex> 3072 {
+        0.306064903736 0.120560653508 3.35914254189
+        <UV>  {
+          0.522999 0.748668
+          <Tangent> { 0.419921 0.169545 0.891583 }
+          <Binormal> { 0.668218 0.406182 -0.391960 }
+        }
+        <Normal> { 0.632069 -0.678213 0.374737 }
+      }
+      <Vertex> 3073 {
+        0.291036844254 0.125839084387 3.28220677376
+        <UV>  {
+          0.524192 0.747780
+          <Tangent> { -0.050075 0.306160 0.950662 }
+          <Binormal> { 0.809003 0.512657 -0.122487 }
+        }
+        <Normal> { 0.537889 -0.842586 0.026093 }
+      }
+      <Vertex> 3074 {
+        0.338445752859 0.0770456567407 3.22594857216
+        <UV>  {
+          0.529924 0.755546
+          <Tangent> { -0.032080 0.131875 0.990747 }
+          <Binormal> { 0.503823 0.857924 -0.097882 }
+        }
+        <Normal> { 0.863613 -0.498978 0.071749 }
+      }
+      <Vertex> 3075 {
+        0.291036844254 0.125839084387 3.28220677376
+        <UV>  {
+          0.524192 0.747780
+          <Tangent> { -0.050075 0.306160 0.950662 }
+          <Binormal> { 0.809003 0.512657 -0.122487 }
+        }
+        <Normal> { 0.537889 -0.842586 0.026093 }
+      }
+      <Vertex> 3076 {
+        0.306064903736 0.120560653508 3.35914254189
+        <UV>  {
+          0.522999 0.748668
+          <Tangent> { 0.419921 0.169545 0.891583 }
+          <Binormal> { 0.668218 0.406182 -0.391960 }
+        }
+        <Normal> { 0.632069 -0.678213 0.374737 }
+      }
+      <Vertex> 3077 {
+        0.291036874056 0.170164465904 3.35936999321
+        <UV>  {
+          0.522735 0.747021
+          <Tangent> { 0.437640 0.205488 0.875355 }
+          <Binormal> { 0.885720 -0.194053 -0.397269 }
+        }
+        <Normal> { -0.026368 -0.920133 0.390667 }
+      }
+      <Vertex> 3078 {
+        0.291036874056 0.170164465904 3.35936999321
+        <UV>  {
+          0.522735 0.747021
+          <Tangent> { 0.437640 0.205488 0.875355 }
+          <Binormal> { 0.885720 -0.194053 -0.397269 }
+        }
+        <Normal> { -0.026368 -0.920133 0.390667 }
+      }
+      <Vertex> 3079 {
+        0.273684054613 0.161726236343 3.27053189278
+        <UV>  {
+          0.523367 0.746536
+          <Tangent> { 0.104193 0.568754 0.815882 }
+          <Binormal> { 0.819125 0.074074 -0.156245 }
+        }
+        <Normal> { 0.092318 -0.995636 0.011963 }
+      }
+      <Vertex> 3080 {
+        0.291036844254 0.125839084387 3.28220677376
+        <UV>  {
+          0.524192 0.747780
+          <Tangent> { -0.050075 0.306160 0.950662 }
+          <Binormal> { 0.809003 0.512657 -0.122487 }
+        }
+        <Normal> { 0.537889 -0.842586 0.026093 }
+      }
+      <Vertex> 3081 {
+        0.273684054613 0.161726236343 3.27053189278
+        <UV>  {
+          0.523367 0.746536
+          <Tangent> { 0.104193 0.568754 0.815882 }
+          <Binormal> { 0.819125 0.074074 -0.156245 }
+        }
+        <Normal> { 0.092318 -0.995636 0.011963 }
+      }
+      <Vertex> 3082 {
+        0.291036874056 0.170164465904 3.35936999321
+        <UV>  {
+          0.522735 0.747021
+          <Tangent> { 0.437640 0.205488 0.875355 }
+          <Binormal> { 0.885720 -0.194053 -0.397269 }
+        }
+        <Normal> { -0.026368 -0.920133 0.390667 }
+      }
+      <Vertex> 3083 {
+        0.306064903736 0.233243539929 3.33579301834
+        <UV>  {
+          0.522610 0.746206
+          <Tangent> { 0.504069 0.261384 0.823160 }
+          <Binormal> { 0.709687 -0.604396 -0.242665 }
+        }
+        <Normal> { -0.569445 -0.776696 0.269112 }
+      }
+      <Vertex> 3084 {
+        0.306064903736 0.233243539929 3.33579301834
+        <UV>  {
+          0.522610 0.746206
+          <Tangent> { 0.504069 0.261384 0.823160 }
+          <Binormal> { 0.709687 -0.604396 -0.242665 }
+        }
+        <Normal> { -0.569445 -0.776696 0.269112 }
+      }
+      <Vertex> 3085 {
+        0.291036874056 0.225935831666 3.2588570118
+        <UV>  {
+          0.522964 0.745916
+          <Tangent> { 0.343995 0.582997 0.736058 }
+          <Binormal> { 0.605094 -0.345194 -0.009378 }
+        }
+        <Normal> { -0.495376 -0.866817 -0.056490 }
+      }
+      <Vertex> 3086 {
+        0.273684054613 0.161726236343 3.27053189278
+        <UV>  {
+          0.523367 0.746536
+          <Tangent> { 0.104193 0.568754 0.815882 }
+          <Binormal> { 0.819125 0.074074 -0.156245 }
+        }
+        <Normal> { 0.092318 -0.995636 0.011963 }
+      }
+      <Vertex> 3087 {
+        0.291036874056 0.225935831666 3.2588570118
+        <UV>  {
+          0.522964 0.745916
+          <Tangent> { 0.343995 0.582997 0.736058 }
+          <Binormal> { 0.605094 -0.345194 -0.009378 }
+        }
+        <Normal> { -0.495376 -0.866817 -0.056490 }
+      }
+      <Vertex> 3088 {
+        0.306064903736 0.233243539929 3.33579301834
+        <UV>  {
+          0.522610 0.746206
+          <Tangent> { 0.504069 0.261384 0.823160 }
+          <Binormal> { 0.709687 -0.604396 -0.242665 }
+        }
+        <Normal> { -0.569445 -0.776696 0.269112 }
+      }
+      <Vertex> 3089 {
+        0.347122251987 0.277159661055 3.29472947121
+        <UV>  {
+          0.522508 0.745645
+          <Tangent> { 0.573648 0.233759 0.785038 }
+          <Binormal> { 0.408677 -0.733018 -0.080362 }
+        }
+        <Normal> { -0.865139 -0.492630 0.093875 }
+      }
+      <Vertex> 3090 {
+        0.347122251987 0.277159661055 3.29472947121
+        <UV>  {
+          0.522508 0.745645
+          <Tangent> { 0.573648 0.233759 0.785038 }
+          <Binormal> { 0.408677 -0.733018 -0.080362 }
+        }
+        <Normal> { -0.865139 -0.492630 0.093875 }
+      }
+      <Vertex> 3091 {
+        0.338445752859 0.272940546274 3.25031065941
+        <UV>  {
+          0.522672 0.745501
+          <Tangent> { 0.525678 0.425550 0.736594 }
+          <Binormal> { 0.357138 -0.554452 0.065446 }
+        }
+        <Normal> { -0.829890 -0.547319 -0.108127 }
+      }
+      <Vertex> 3092 {
+        0.291036874056 0.225935831666 3.2588570118
+        <UV>  {
+          0.522964 0.745916
+          <Tangent> { 0.343995 0.582997 0.736058 }
+          <Binormal> { 0.605094 -0.345194 -0.009378 }
+        }
+        <Normal> { -0.495376 -0.866817 -0.056490 }
+      }
+      <Vertex> 3093 {
+        0.403207421303 0.290145397186 3.24718236923
+        <UV>  {
+          0.522395 0.745149
+          <Tangent> { 0.619447 0.074242 0.781520 }
+          <Binormal> { -0.007142 -0.718284 0.073895 }
+        }
+        <Normal> { -0.995331 0.000000 -0.096194 }
+      }
+      <Vertex> 3094 {
+        0.338445752859 0.272940546274 3.25031065941
+        <UV>  {
+          0.522672 0.745501
+          <Tangent> { 0.525678 0.425550 0.736594 }
+          <Binormal> { 0.357138 -0.554452 0.065446 }
+        }
+        <Normal> { -0.829890 -0.547319 -0.108127 }
+      }
+      <Vertex> 3095 {
+        0.347122251987 0.277159661055 3.29472947121
+        <UV>  {
+          0.522508 0.745645
+          <Tangent> { 0.573648 0.233759 0.785038 }
+          <Binormal> { 0.408677 -0.733018 -0.080362 }
+        }
+        <Normal> { -0.865139 -0.492630 0.093875 }
+      }
+      <Vertex> 3096 {
+        0.4032073915 0.0598407760262 3.22907686234
+        <UV>  {
+          0.502038 0.777562
+          <Tangent> { -0.191353 0.093922 0.977017 }
+          <Binormal> { 0.009095 0.990925 -0.093477 }
+        }
+        <Normal> { 0.995270 0.000000 0.096835 }
+      }
+      <Vertex> 3097 {
+        0.338445752859 0.0770456567407 3.22594857216
+        <UV>  {
+          0.497642 0.754900
+          <Tangent> { -0.191443 0.143957 0.970889 }
+          <Binormal> { 0.494781 0.852208 -0.028798 }
+        }
+        <Normal> { 0.863613 -0.498978 0.071749 }
+      }
+      <Vertex> 3098 {
+        0.347122251987 0.0728265270591 3.18152976036
+        <UV>  {
+          0.506435 0.754900
+          <Tangent> { -0.189811 0.041874 0.980927 }
+          <Binormal> { 0.575585 0.747291 0.079476 }
+        }
+        <Normal> { 0.790887 -0.593188 -0.150212 }
+      }
+      <Vertex> 3099 {
+        0.347122251987 0.0728265270591 3.18152976036
+        <UV>  {
+          0.532679 0.748955
+          <Tangent> { -0.462667 0.422249 0.779516 }
+          <Binormal> { 0.398973 0.547011 -0.059502 }
+        }
+        <Normal> { 0.790887 -0.593188 -0.150212 }
+      }
+      <Vertex> 3100 {
+        0.338445752859 0.0770456567407 3.22594857216
+        <UV>  {
+          0.529924 0.755546
+          <Tangent> { -0.032080 0.131875 0.990747 }
+          <Binormal> { 0.503823 0.857924 -0.097882 }
+        }
+        <Normal> { 0.863613 -0.498978 0.071749 }
+      }
+      <Vertex> 3101 {
+        0.291036844254 0.125839084387 3.28220677376
+        <UV>  {
+          0.524192 0.747780
+          <Tangent> { -0.050075 0.306160 0.950662 }
+          <Binormal> { 0.809003 0.512657 -0.122487 }
+        }
+        <Normal> { 0.537889 -0.842586 0.026093 }
+      }
+      <Vertex> 3102 {
+        0.291036844254 0.125839084387 3.28220677376
+        <UV>  {
+          0.524192 0.747780
+          <Tangent> { -0.050075 0.306160 0.950662 }
+          <Binormal> { 0.809003 0.512657 -0.122487 }
+        }
+        <Normal> { 0.537889 -0.842586 0.026093 }
+      }
+      <Vertex> 3103 {
+        0.306064903736 0.118531376123 3.20527076721
+        <UV>  {
+          0.524904 0.746187
+          <Tangent> { -0.505782 0.748831 0.428294 }
+          <Binormal> { 0.210264 0.159573 -0.030692 }
+        }
+        <Normal> { 0.578906 -0.796411 -0.174718 }
+      }
+      <Vertex> 3104 {
+        0.347122251987 0.0728265270591 3.18152976036
+        <UV>  {
+          0.532679 0.748955
+          <Tangent> { -0.462667 0.422249 0.779516 }
+          <Binormal> { 0.398973 0.547011 -0.059502 }
+        }
+        <Normal> { 0.790887 -0.593188 -0.150212 }
+      }
+      <Vertex> 3105 {
+        0.306064903736 0.118531376123 3.20527076721
+        <UV>  {
+          0.524904 0.746187
+          <Tangent> { -0.505782 0.748831 0.428294 }
+          <Binormal> { 0.210264 0.159573 -0.030692 }
+        }
+        <Normal> { 0.578906 -0.796411 -0.174718 }
+      }
+      <Vertex> 3106 {
+        0.291036844254 0.125839084387 3.28220677376
+        <UV>  {
+          0.524192 0.747780
+          <Tangent> { -0.050075 0.306160 0.950662 }
+          <Binormal> { 0.809003 0.512657 -0.122487 }
+        }
+        <Normal> { 0.537889 -0.842586 0.026093 }
+      }
+      <Vertex> 3107 {
+        0.273684054613 0.161726236343 3.27053189278
+        <UV>  {
+          0.523367 0.746536
+          <Tangent> { 0.104193 0.568754 0.815882 }
+          <Binormal> { 0.819125 0.074074 -0.156245 }
+        }
+        <Normal> { 0.092318 -0.995636 0.011963 }
+      }
+      <Vertex> 3108 {
+        0.273684054613 0.161726236343 3.27053189278
+        <UV>  {
+          0.523367 0.746536
+          <Tangent> { 0.104193 0.568754 0.815882 }
+          <Binormal> { 0.819125 0.074074 -0.156245 }
+        }
+        <Normal> { 0.092318 -0.995636 0.011963 }
+      }
+      <Vertex> 3109 {
+        0.291036844254 0.153288006783 3.18169426918
+        <UV>  {
+          0.523739 0.745679
+          <Tangent> { -0.023454 0.956134 0.291991 }
+          <Binormal> { -0.061056 0.031386 -0.107678 }
+        }
+        <Normal> { 0.135380 -0.927946 -0.347240 }
+      }
+      <Vertex> 3110 {
+        0.306064903736 0.118531376123 3.20527076721
+        <UV>  {
+          0.524904 0.746187
+          <Tangent> { -0.505782 0.748831 0.428294 }
+          <Binormal> { 0.210264 0.159573 -0.030692 }
+        }
+        <Normal> { 0.578906 -0.796411 -0.174718 }
+      }
+      <Vertex> 3111 {
+        0.291036844254 0.153288006783 3.18169426918
+        <UV>  {
+          0.523739 0.745679
+          <Tangent> { -0.023454 0.956134 0.291991 }
+          <Binormal> { -0.061056 0.031386 -0.107678 }
+        }
+        <Normal> { 0.135380 -0.927946 -0.347240 }
+      }
+      <Vertex> 3112 {
+        0.273684054613 0.161726236343 3.27053189278
+        <UV>  {
+          0.523367 0.746536
+          <Tangent> { 0.104193 0.568754 0.815882 }
+          <Binormal> { 0.819125 0.074074 -0.156245 }
+        }
+        <Normal> { 0.092318 -0.995636 0.011963 }
+      }
+      <Vertex> 3113 {
+        0.291036874056 0.225935831666 3.2588570118
+        <UV>  {
+          0.522964 0.745916
+          <Tangent> { 0.343995 0.582997 0.736058 }
+          <Binormal> { 0.605094 -0.345194 -0.009378 }
+        }
+        <Normal> { -0.495376 -0.866817 -0.056490 }
+      }
+      <Vertex> 3114 {
+        0.291036874056 0.225935831666 3.2588570118
+        <UV>  {
+          0.522964 0.745916
+          <Tangent> { 0.343995 0.582997 0.736058 }
+          <Binormal> { 0.605094 -0.345194 -0.009378 }
+        }
+        <Normal> { -0.495376 -0.866817 -0.056490 }
+      }
+      <Vertex> 3115 {
+        0.306064903736 0.2186280936 3.18192124367
+        <UV>  {
+          0.523166 0.745421
+          <Tangent> { 0.327178 0.810325 0.486136 }
+          <Binormal> { 0.061986 -0.094027 0.115013 }
+        }
+        <Normal> { -0.461806 -0.792230 -0.398785 }
+      }
+      <Vertex> 3116 {
+        0.291036844254 0.153288006783 3.18169426918
+        <UV>  {
+          0.523739 0.745679
+          <Tangent> { -0.023454 0.956134 0.291991 }
+          <Binormal> { -0.061056 0.031386 -0.107678 }
+        }
+        <Normal> { 0.135380 -0.927946 -0.347240 }
+      }
+      <Vertex> 3117 {
+        0.306064903736 0.2186280936 3.18192124367
+        <UV>  {
+          0.523166 0.745421
+          <Tangent> { 0.327178 0.810325 0.486136 }
+          <Binormal> { 0.061986 -0.094027 0.115013 }
+        }
+        <Normal> { -0.461806 -0.792230 -0.398785 }
+      }
+      <Vertex> 3118 {
+        0.291036874056 0.225935831666 3.2588570118
+        <UV>  {
+          0.522964 0.745916
+          <Tangent> { 0.343995 0.582997 0.736058 }
+          <Binormal> { 0.605094 -0.345194 -0.009378 }
+        }
+        <Normal> { -0.495376 -0.866817 -0.056490 }
+      }
+      <Vertex> 3119 {
+        0.338445752859 0.272940546274 3.25031065941
+        <UV>  {
+          0.522672 0.745501
+          <Tangent> { 0.525678 0.425550 0.736594 }
+          <Binormal> { 0.357138 -0.554452 0.065446 }
+        }
+        <Normal> { -0.829890 -0.547319 -0.108127 }
+      }
+      <Vertex> 3120 {
+        0.338445752859 0.272940546274 3.25031065941
+        <UV>  {
+          0.522672 0.745501
+          <Tangent> { 0.525678 0.425550 0.736594 }
+          <Binormal> { 0.357138 -0.554452 0.065446 }
+        }
+        <Normal> { -0.829890 -0.547319 -0.108127 }
+      }
+      <Vertex> 3121 {
+        0.347122251987 0.268721431494 3.20589160919
+        <UV>  {
+          0.522763 0.745263
+          <Tangent> { 0.539930 0.533835 0.650765 }
+          <Binormal> { 0.139647 -0.364288 0.182970 }
+        }
+        <Normal> { -0.821955 -0.473800 -0.315989 }
+      }
+      <Vertex> 3122 {
+        0.306064903736 0.2186280936 3.18192124367
+        <UV>  {
+          0.523166 0.745421
+          <Tangent> { 0.327178 0.810325 0.486136 }
+          <Binormal> { 0.061986 -0.094027 0.115013 }
+        }
+        <Normal> { -0.461806 -0.792230 -0.398785 }
+      }
+      <Vertex> 3123 {
+        0.403207421303 0.290145397186 3.24718236923
+        <UV>  {
+          0.522395 0.745149
+          <Tangent> { 0.619447 0.074242 0.781520 }
+          <Binormal> { -0.007142 -0.718284 0.073895 }
+        }
+        <Normal> { -0.995331 0.000000 -0.096194 }
+      }
+      <Vertex> 3124 {
+        0.347122251987 0.268721431494 3.20589160919
+        <UV>  {
+          0.522763 0.745263
+          <Tangent> { 0.539930 0.533835 0.650765 }
+          <Binormal> { 0.139647 -0.364288 0.182970 }
+        }
+        <Normal> { -0.821955 -0.473800 -0.315989 }
+      }
+      <Vertex> 3125 {
+        0.338445752859 0.272940546274 3.25031065941
+        <UV>  {
+          0.522672 0.745501
+          <Tangent> { 0.525678 0.425550 0.736594 }
+          <Binormal> { 0.357138 -0.554452 0.065446 }
+        }
+        <Normal> { -0.829890 -0.547319 -0.108127 }
+      }
+      <Vertex> 3126 {
+        0.4032073915 0.0598407760262 3.22907686234
+        <UV>  {
+          0.502038 0.777562
+          <Tangent> { -0.191353 0.093922 0.977017 }
+          <Binormal> { 0.009095 0.990925 -0.093477 }
+        }
+        <Normal> { 0.995270 0.000000 0.096835 }
+      }
+      <Vertex> 3127 {
+        0.347122251987 0.0728265270591 3.18152976036
+        <UV>  {
+          0.506435 0.754900
+          <Tangent> { -0.189811 0.041874 0.980927 }
+          <Binormal> { 0.575585 0.747291 0.079476 }
+        }
+        <Normal> { 0.790887 -0.593188 -0.150212 }
+      }
+      <Vertex> 3128 {
+        0.37082657218 0.0697379484773 3.14901256561
+        <UV>  {
+          0.514051 0.760972
+          <Tangent> { -0.188993 -0.041490 0.981102 }
+          <Binormal> { 0.430627 0.772460 0.115619 }
+        }
+        <Normal> { 0.848109 -0.425581 -0.315470 }
+      }
+      <Vertex> 3129 {
+        0.37082657218 0.0697379484773 3.14901256561
+        <UV>  {
+          0.532679 0.741344
+          <Tangent> { -0.239766 0.316016 -0.917958 }
+          <Binormal> { -0.490358 -0.854167 -0.165976 }
+        }
+        <Normal> { 0.848109 -0.425581 -0.315470 }
+      }
+      <Vertex> 3130 {
+        0.347122251987 0.0728265270591 3.18152976036
+        <UV>  {
+          0.532679 0.748955
+          <Tangent> { -0.462667 0.422249 0.779516 }
+          <Binormal> { 0.398973 0.547011 -0.059502 }
+        }
+        <Normal> { 0.790887 -0.593188 -0.150212 }
+      }
+      <Vertex> 3131 {
+        0.306064903736 0.118531376123 3.20527076721
+        <UV>  {
+          0.524904 0.746187
+          <Tangent> { -0.505782 0.748831 0.428294 }
+          <Binormal> { 0.210264 0.159573 -0.030692 }
+        }
+        <Normal> { 0.578906 -0.796411 -0.174718 }
+      }
+      <Vertex> 3132 {
+        0.306064903736 0.118531376123 3.20527076721
+        <UV>  {
+          0.524904 0.746187
+          <Tangent> { -0.505782 0.748831 0.428294 }
+          <Binormal> { 0.210264 0.159573 -0.030692 }
+        }
+        <Normal> { 0.578906 -0.796411 -0.174718 }
+      }
+      <Vertex> 3133 {
+        0.347122251987 0.0848592817783 3.14895009995
+        <UV>  {
+          0.524943 0.744316
+          <Tangent> { 0.135529 0.769360 -0.624273 }
+          <Binormal> { -0.792884 -0.293522 -0.533873 }
+        }
+        <Normal> { 0.595477 -0.558824 -0.577136 }
+      }
+      <Vertex> 3134 {
+        0.37082657218 0.0697379484773 3.14901256561
+        <UV>  {
+          0.532679 0.741344
+          <Tangent> { -0.239766 0.316016 -0.917958 }
+          <Binormal> { -0.490358 -0.854167 -0.165976 }
+        }
+        <Normal> { 0.848109 -0.425581 -0.315470 }
+      }
+      <Vertex> 3135 {
+        0.347122251987 0.0848592817783 3.14895009995
+        <UV>  {
+          0.524943 0.744316
+          <Tangent> { 0.135529 0.769360 -0.624273 }
+          <Binormal> { -0.792884 -0.293522 -0.533873 }
+        }
+        <Normal> { 0.595477 -0.558824 -0.577136 }
+      }
+      <Vertex> 3136 {
+        0.306064903736 0.118531376123 3.20527076721
+        <UV>  {
+          0.524904 0.746187
+          <Tangent> { -0.505782 0.748831 0.428294 }
+          <Binormal> { 0.210264 0.159573 -0.030692 }
+        }
+        <Normal> { 0.578906 -0.796411 -0.174718 }
+      }
+      <Vertex> 3137 {
+        0.291036844254 0.153288006783 3.18169426918
+        <UV>  {
+          0.523739 0.745679
+          <Tangent> { -0.023454 0.956134 0.291991 }
+          <Binormal> { -0.061056 0.031386 -0.107678 }
+        }
+        <Normal> { 0.135380 -0.927946 -0.347240 }
+      }
+      <Vertex> 3138 {
+        0.291036844254 0.153288006783 3.18169426918
+        <UV>  {
+          0.523739 0.745679
+          <Tangent> { -0.023454 0.956134 0.291991 }
+          <Binormal> { -0.061056 0.031386 -0.107678 }
+        }
+        <Normal> { 0.135380 -0.927946 -0.347240 }
+      }
+      <Vertex> 3139 {
+        0.338445752859 0.147110790014 3.1166601181
+        <UV>  {
+          0.523751 0.744681
+          <Tangent> { 0.291663 0.934576 -0.203718 }
+          <Binormal> { -0.854718 0.198967 -0.310920 }
+        }
+        <Normal> { 0.143620 -0.605823 -0.782495 }
+      }
+      <Vertex> 3140 {
+        0.347122251987 0.0848592817783 3.14895009995
+        <UV>  {
+          0.524943 0.744316
+          <Tangent> { 0.135529 0.769360 -0.624273 }
+          <Binormal> { -0.792884 -0.293522 -0.533873 }
+        }
+        <Normal> { 0.595477 -0.558824 -0.577136 }
+      }
+      <Vertex> 3141 {
+        0.338445752859 0.147110790014 3.1166601181
+        <UV>  {
+          0.523751 0.744681
+          <Tangent> { 0.291663 0.934576 -0.203718 }
+          <Binormal> { -0.854718 0.198967 -0.310920 }
+        }
+        <Normal> { 0.143620 -0.605823 -0.782495 }
+      }
+      <Vertex> 3142 {
+        0.291036844254 0.153288006783 3.18169426918
+        <UV>  {
+          0.523739 0.745679
+          <Tangent> { -0.023454 0.956134 0.291991 }
+          <Binormal> { -0.061056 0.031386 -0.107678 }
+        }
+        <Normal> { 0.135380 -0.927946 -0.347240 }
+      }
+      <Vertex> 3143 {
+        0.306064903736 0.2186280936 3.18192124367
+        <UV>  {
+          0.523166 0.745421
+          <Tangent> { 0.327178 0.810325 0.486136 }
+          <Binormal> { 0.061986 -0.094027 0.115013 }
+        }
+        <Normal> { -0.461806 -0.792230 -0.398785 }
+      }
+      <Vertex> 3144 {
+        0.306064903736 0.2186280936 3.18192124367
+        <UV>  {
+          0.523166 0.745421
+          <Tangent> { 0.327178 0.810325 0.486136 }
+          <Binormal> { 0.061986 -0.094027 0.115013 }
+        }
+        <Normal> { -0.461806 -0.792230 -0.398785 }
+      }
+      <Vertex> 3145 {
+        0.347122251987 0.213278487325 3.12560033798
+        <UV>  {
+          0.523161 0.744852
+          <Tangent> { 0.500193 0.814762 0.293206 }
+          <Binormal> { -0.446521 0.227637 0.129184 }
+        }
+        <Normal> { -0.466475 -0.501572 -0.728538 }
+      }
+      <Vertex> 3146 {
+        0.338445752859 0.147110790014 3.1166601181
+        <UV>  {
+          0.523751 0.744681
+          <Tangent> { 0.291663 0.934576 -0.203718 }
+          <Binormal> { -0.854718 0.198967 -0.310920 }
+        }
+        <Normal> { 0.143620 -0.605823 -0.782495 }
+      }
+      <Vertex> 3147 {
+        0.347122251987 0.213278487325 3.12560033798
+        <UV>  {
+          0.523161 0.744852
+          <Tangent> { 0.500193 0.814762 0.293206 }
+          <Binormal> { -0.446521 0.227637 0.129184 }
+        }
+        <Normal> { -0.466475 -0.501572 -0.728538 }
+      }
+      <Vertex> 3148 {
+        0.306064903736 0.2186280936 3.18192124367
+        <UV>  {
+          0.523166 0.745421
+          <Tangent> { 0.327178 0.810325 0.486136 }
+          <Binormal> { 0.061986 -0.094027 0.115013 }
+        }
+        <Normal> { -0.461806 -0.792230 -0.398785 }
+      }
+      <Vertex> 3149 {
+        0.347122251987 0.268721431494 3.20589160919
+        <UV>  {
+          0.522763 0.745263
+          <Tangent> { 0.539930 0.533835 0.650765 }
+          <Binormal> { 0.139647 -0.364288 0.182970 }
+        }
+        <Normal> { -0.821955 -0.473800 -0.315989 }
+      }
+      <Vertex> 3150 {
+        0.347122251987 0.268721431494 3.20589160919
+        <UV>  {
+          0.522763 0.745263
+          <Tangent> { 0.539930 0.533835 0.650765 }
+          <Binormal> { 0.139647 -0.364288 0.182970 }
+        }
+        <Normal> { -0.821955 -0.473800 -0.315989 }
+      }
+      <Vertex> 3151 {
+        0.37082657218 0.265632808208 3.17337489128
+        <UV>  {
+          0.522755 0.744994
+          <Tangent> { 0.609796 0.511794 0.605157 }
+          <Binormal> { -0.088404 -0.209977 0.266664 }
+        }
+        <Normal> { -0.834590 -0.263161 -0.483902 }
+      }
+      <Vertex> 3152 {
+        0.347122251987 0.213278487325 3.12560033798
+        <UV>  {
+          0.523161 0.744852
+          <Tangent> { 0.500193 0.814762 0.293206 }
+          <Binormal> { -0.446521 0.227637 0.129184 }
+        }
+        <Normal> { -0.466475 -0.501572 -0.728538 }
+      }
+      <Vertex> 3153 {
+        0.403207421303 0.290145397186 3.24718236923
+        <UV>  {
+          0.522395 0.745149
+          <Tangent> { 0.619447 0.074242 0.781520 }
+          <Binormal> { -0.007142 -0.718284 0.073895 }
+        }
+        <Normal> { -0.995331 0.000000 -0.096194 }
+      }
+      <Vertex> 3154 {
+        0.37082657218 0.265632808208 3.17337489128
+        <UV>  {
+          0.522755 0.744994
+          <Tangent> { 0.609796 0.511794 0.605157 }
+          <Binormal> { -0.088404 -0.209977 0.266664 }
+        }
+        <Normal> { -0.834590 -0.263161 -0.483902 }
+      }
+      <Vertex> 3155 {
+        0.347122251987 0.268721431494 3.20589160919
+        <UV>  {
+          0.522763 0.745263
+          <Tangent> { 0.539930 0.533835 0.650765 }
+          <Binormal> { 0.139647 -0.364288 0.182970 }
+        }
+        <Normal> { -0.821955 -0.473800 -0.315989 }
+      }
+      <Vertex> 3156 {
+        0.4032073915 0.0598407760262 3.22907686234
+        <UV>  {
+          0.502038 0.777562
+          <Tangent> { -0.191353 0.093922 0.977017 }
+          <Binormal> { 0.009095 0.990925 -0.093477 }
+        }
+        <Normal> { 0.995270 0.000000 0.096835 }
+      }
+      <Vertex> 3157 {
+        0.37082657218 0.0697379484773 3.14901256561
+        <UV>  {
+          0.514051 0.760972
+          <Tangent> { -0.188993 -0.041490 0.981102 }
+          <Binormal> { 0.430627 0.772460 0.115619 }
+        }
+        <Normal> { 0.848109 -0.425581 -0.315470 }
+      }
+      <Vertex> 3158 {
+        0.4032073915 0.0681332051754 3.13853979111
+        <UV>  {
+          0.518448 0.771490
+          <Tangent> { -0.187479 -0.089592 0.978174 }
+          <Binormal> { 0.123532 0.676457 0.085634 }
+        }
+        <Normal> { 0.804529 -0.072298 -0.589465 }
+      }
+      <Vertex> 3159 {
+        0.4032073915 0.0681332051754 3.13853979111
+        <UV>  {
+          0.529924 0.734752
+          <Tangent> { 0.936853 0.092570 -0.337250 }
+          <Binormal> { -0.078949 0.280914 -0.142208 }
+        }
+        <Normal> { 0.804529 -0.072298 -0.589465 }
+      }
+      <Vertex> 3160 {
+        0.37082657218 0.0697379484773 3.14901256561
+        <UV>  {
+          0.532679 0.741344
+          <Tangent> { -0.239766 0.316016 -0.917958 }
+          <Binormal> { -0.490358 -0.854167 -0.165976 }
+        }
+        <Normal> { 0.848109 -0.425581 -0.315470 }
+      }
+      <Vertex> 3161 {
+        0.347122251987 0.0848592817783 3.14895009995
+        <UV>  {
+          0.524943 0.744316
+          <Tangent> { 0.135529 0.769360 -0.624273 }
+          <Binormal> { -0.792884 -0.293522 -0.533873 }
+        }
+        <Normal> { 0.595477 -0.558824 -0.577136 }
+      }
+      <Vertex> 3162 {
+        0.347122251987 0.0848592817783 3.14895009995
+        <UV>  {
+          0.524943 0.744316
+          <Tangent> { 0.135529 0.769360 -0.624273 }
+          <Binormal> { -0.792884 -0.293522 -0.533873 }
+        }
+        <Normal> { 0.595477 -0.558824 -0.577136 }
+      }
+      <Vertex> 3163 {
+        0.4032073915 0.0829011946917 3.12833499908
+        <UV>  {
+          0.524300 0.742668
+          <Tangent> { 0.765075 0.543189 -0.345841 }
+          <Binormal> { -0.463780 0.469014 -0.289334 }
+        }
+        <Normal> { 0.525651 -0.004975 -0.850642 }
+      }
+      <Vertex> 3164 {
+        0.4032073915 0.0681332051754 3.13853979111
+        <UV>  {
+          0.529924 0.734752
+          <Tangent> { 0.936853 0.092570 -0.337250 }
+          <Binormal> { -0.078949 0.280914 -0.142208 }
+        }
+        <Normal> { 0.804529 -0.072298 -0.589465 }
+      }
+      <Vertex> 3165 {
+        0.4032073915 0.0829011946917 3.12833499908
+        <UV>  {
+          0.524300 0.742668
+          <Tangent> { 0.765075 0.543189 -0.345841 }
+          <Binormal> { -0.463780 0.469014 -0.289334 }
+        }
+        <Normal> { 0.525651 -0.004975 -0.850642 }
+      }
+      <Vertex> 3166 {
+        0.347122251987 0.0848592817783 3.14895009995
+        <UV>  {
+          0.524943 0.744316
+          <Tangent> { 0.135529 0.769360 -0.624273 }
+          <Binormal> { -0.792884 -0.293522 -0.533873 }
+        }
+        <Normal> { 0.595477 -0.558824 -0.577136 }
+      }
+      <Vertex> 3167 {
+        0.338445752859 0.147110790014 3.1166601181
+        <UV>  {
+          0.523751 0.744681
+          <Tangent> { 0.291663 0.934576 -0.203718 }
+          <Binormal> { -0.854718 0.198967 -0.310920 }
+        }
+        <Normal> { 0.143620 -0.605823 -0.782495 }
+      }
+      <Vertex> 3168 {
+        0.338445752859 0.147110790014 3.1166601181
+        <UV>  {
+          0.523751 0.744681
+          <Tangent> { 0.291663 0.934576 -0.203718 }
+          <Binormal> { -0.854718 0.198967 -0.310920 }
+        }
+        <Normal> { 0.143620 -0.605823 -0.782495 }
+      }
+      <Vertex> 3169 {
+        0.4032073915 0.144849777222 3.09285616875
+        <UV>  {
+          0.523400 0.743807
+          <Tangent> { 0.720375 0.693187 -0.023480 }
+          <Binormal> { -0.683145 0.705874 -0.120030 }
+        }
+        <Normal> { 0.170049 -0.002991 -0.985412 }
+      }
+      <Vertex> 3170 {
+        0.4032073915 0.0829011946917 3.12833499908
+        <UV>  {
+          0.524300 0.742668
+          <Tangent> { 0.765075 0.543189 -0.345841 }
+          <Binormal> { -0.463780 0.469014 -0.289334 }
+        }
+        <Normal> { 0.525651 -0.004975 -0.850642 }
+      }
+      <Vertex> 3171 {
+        0.4032073915 0.144849777222 3.09285616875
+        <UV>  {
+          0.523400 0.743807
+          <Tangent> { 0.720375 0.693187 -0.023480 }
+          <Binormal> { -0.683145 0.705874 -0.120030 }
+        }
+        <Normal> { 0.170049 -0.002991 -0.985412 }
+      }
+      <Vertex> 3172 {
+        0.338445752859 0.147110790014 3.1166601181
+        <UV>  {
+          0.523751 0.744681
+          <Tangent> { 0.291663 0.934576 -0.203718 }
+          <Binormal> { -0.854718 0.198967 -0.310920 }
+        }
+        <Normal> { 0.143620 -0.605823 -0.782495 }
+      }
+      <Vertex> 3173 {
+        0.347122251987 0.213278487325 3.12560033798
+        <UV>  {
+          0.523161 0.744852
+          <Tangent> { 0.500193 0.814762 0.293206 }
+          <Binormal> { -0.446521 0.227637 0.129184 }
+        }
+        <Normal> { -0.466475 -0.501572 -0.728538 }
+      }
+      <Vertex> 3174 {
+        0.347122251987 0.213278487325 3.12560033798
+        <UV>  {
+          0.523161 0.744852
+          <Tangent> { 0.500193 0.814762 0.293206 }
+          <Binormal> { -0.446521 0.227637 0.129184 }
+        }
+        <Normal> { -0.466475 -0.501572 -0.728538 }
+      }
+      <Vertex> 3175 {
+        0.403207421303 0.211320370436 3.10498547554
+        <UV>  {
+          0.522951 0.744364
+          <Tangent> { 0.694344 0.594096 0.406123 }
+          <Binormal> { -0.528647 0.412007 0.301120 }
+        }
+        <Normal> { -0.482528 0.020814 -0.875607 }
+      }
+      <Vertex> 3176 {
+        0.4032073915 0.144849777222 3.09285616875
+        <UV>  {
+          0.523400 0.743807
+          <Tangent> { 0.720375 0.693187 -0.023480 }
+          <Binormal> { -0.683145 0.705874 -0.120030 }
+        }
+        <Normal> { 0.170049 -0.002991 -0.985412 }
+      }
+      <Vertex> 3177 {
+        0.403207421303 0.211320370436 3.10498547554
+        <UV>  {
+          0.522951 0.744364
+          <Tangent> { 0.694344 0.594096 0.406123 }
+          <Binormal> { -0.528647 0.412007 0.301120 }
+        }
+        <Normal> { -0.482528 0.020814 -0.875607 }
+      }
+      <Vertex> 3178 {
+        0.347122251987 0.213278487325 3.12560033798
+        <UV>  {
+          0.523161 0.744852
+          <Tangent> { 0.500193 0.814762 0.293206 }
+          <Binormal> { -0.446521 0.227637 0.129184 }
+        }
+        <Normal> { -0.466475 -0.501572 -0.728538 }
+      }
+      <Vertex> 3179 {
+        0.37082657218 0.265632808208 3.17337489128
+        <UV>  {
+          0.522755 0.744994
+          <Tangent> { 0.609796 0.511794 0.605157 }
+          <Binormal> { -0.088404 -0.209977 0.266664 }
+        }
+        <Normal> { -0.834590 -0.263161 -0.483902 }
+      }
+      <Vertex> 3180 {
+        0.37082657218 0.265632808208 3.17337489128
+        <UV>  {
+          0.522755 0.744994
+          <Tangent> { 0.609796 0.511794 0.605157 }
+          <Binormal> { -0.088404 -0.209977 0.266664 }
+        }
+        <Normal> { -0.834590 -0.263161 -0.483902 }
+      }
+      <Vertex> 3181 {
+        0.403207421303 0.264502316713 3.16147279739
+        <UV>  {
+          0.522650 0.744766
+          <Tangent> { 0.662958 0.361249 0.655733 }
+          <Binormal> { -0.224214 -0.196179 0.334761 }
+        }
+        <Normal> { -0.842219 0.046022 -0.537126 }
+      }
+      <Vertex> 3182 {
+        0.403207421303 0.211320370436 3.10498547554
+        <UV>  {
+          0.522951 0.744364
+          <Tangent> { 0.694344 0.594096 0.406123 }
+          <Binormal> { -0.528647 0.412007 0.301120 }
+        }
+        <Normal> { -0.482528 0.020814 -0.875607 }
+      }
+      <Vertex> 3183 {
+        0.403207421303 0.290145397186 3.24718236923
+        <UV>  {
+          0.522395 0.745149
+          <Tangent> { 0.619447 0.074242 0.781520 }
+          <Binormal> { -0.007142 -0.718284 0.073895 }
+        }
+        <Normal> { -0.995331 0.000000 -0.096194 }
+      }
+      <Vertex> 3184 {
+        0.403207421303 0.264502316713 3.16147279739
+        <UV>  {
+          0.522650 0.744766
+          <Tangent> { 0.662958 0.361249 0.655733 }
+          <Binormal> { -0.224214 -0.196179 0.334761 }
+        }
+        <Normal> { -0.842219 0.046022 -0.537126 }
+      }
+      <Vertex> 3185 {
+        0.37082657218 0.265632808208 3.17337489128
+        <UV>  {
+          0.522755 0.744994
+          <Tangent> { 0.609796 0.511794 0.605157 }
+          <Binormal> { -0.088404 -0.209977 0.266664 }
+        }
+        <Normal> { -0.834590 -0.263161 -0.483902 }
+      }
+      <Vertex> 3186 {
+        0.4032073915 0.0598407760262 3.22907686234
+        <UV>  {
+          0.502038 0.777562
+          <Tangent> { -0.191353 0.093922 0.977017 }
+          <Binormal> { 0.009095 0.990925 -0.093477 }
+        }
+        <Normal> { 0.995270 0.000000 0.096835 }
+      }
+      <Vertex> 3187 {
+        0.4032073915 0.0681332051754 3.13853979111
+        <UV>  {
+          0.518448 0.771490
+          <Tangent> { -0.187479 -0.089592 0.978174 }
+          <Binormal> { 0.123532 0.676457 0.085634 }
+        }
+        <Normal> { 0.804529 -0.072298 -0.589465 }
+      }
+      <Vertex> 3188 {
+        0.435588210821 0.0697379410267 3.14901256561
+        <UV>  {
+          0.518448 0.783634
+          <Tangent> { -0.185367 -0.092291 0.978326 }
+          <Binormal> { -0.255499 0.740218 0.021419 }
+        }
+        <Normal> { 0.841365 0.303354 -0.447279 }
+      }
+      <Vertex> 3189 {
+        0.435588210821 0.0697379410267 3.14901256561
+        <UV>  {
+          0.525151 0.730947
+          <Tangent> { 0.918589 0.074333 0.388161 }
+          <Binormal> { -0.150998 0.737451 0.216116 }
+        }
+        <Normal> { 0.841365 0.303354 -0.447279 }
+      }
+      <Vertex> 3190 {
+        0.4032073915 0.0681332051754 3.13853979111
+        <UV>  {
+          0.529924 0.734752
+          <Tangent> { 0.936853 0.092570 -0.337250 }
+          <Binormal> { -0.078949 0.280914 -0.142208 }
+        }
+        <Normal> { 0.804529 -0.072298 -0.589465 }
+      }
+      <Vertex> 3191 {
+        0.4032073915 0.0829011946917 3.12833499908
+        <UV>  {
+          0.524300 0.742668
+          <Tangent> { 0.765075 0.543189 -0.345841 }
+          <Binormal> { -0.463780 0.469014 -0.289334 }
+        }
+        <Normal> { 0.525651 -0.004975 -0.850642 }
+      }
+      <Vertex> 3192 {
+        0.4032073915 0.0829011946917 3.12833499908
+        <UV>  {
+          0.524300 0.742668
+          <Tangent> { 0.765075 0.543189 -0.345841 }
+          <Binormal> { -0.463780 0.469014 -0.289334 }
+        }
+        <Normal> { 0.525651 -0.004975 -0.850642 }
+      }
+      <Vertex> 3193 {
+        0.459292531013 0.0848592743278 3.14895009995
+        <UV>  {
+          0.523147 0.741685
+          <Tangent> { 0.815782 0.402464 0.415359 }
+          <Binormal> { -0.474985 0.731780 0.223828 }
+        }
+        <Normal> { 0.568285 0.554735 -0.607685 }
+      }
+      <Vertex> 3194 {
+        0.435588210821 0.0697379410267 3.14901256561
+        <UV>  {
+          0.525151 0.730947
+          <Tangent> { 0.918589 0.074333 0.388161 }
+          <Binormal> { -0.150998 0.737451 0.216116 }
+        }
+        <Normal> { 0.841365 0.303354 -0.447279 }
+      }
+      <Vertex> 3195 {
+        0.459292531013 0.0848592743278 3.14895009995
+        <UV>  {
+          0.523147 0.741685
+          <Tangent> { 0.815782 0.402464 0.415359 }
+          <Binormal> { -0.474985 0.731780 0.223828 }
+        }
+        <Normal> { 0.568285 0.554735 -0.607685 }
+      }
+      <Vertex> 3196 {
+        0.4032073915 0.0829011946917 3.12833499908
+        <UV>  {
+          0.524300 0.742668
+          <Tangent> { 0.765075 0.543189 -0.345841 }
+          <Binormal> { -0.463780 0.469014 -0.289334 }
+        }
+        <Normal> { 0.525651 -0.004975 -0.850642 }
+      }
+      <Vertex> 3197 {
+        0.4032073915 0.144849777222 3.09285616875
+        <UV>  {
+          0.523400 0.743807
+          <Tangent> { 0.720375 0.693187 -0.023480 }
+          <Binormal> { -0.683145 0.705874 -0.120030 }
+        }
+        <Normal> { 0.170049 -0.002991 -0.985412 }
+      }
+      <Vertex> 3198 {
+        0.4032073915 0.144849777222 3.09285616875
+        <UV>  {
+          0.523400 0.743807
+          <Tangent> { 0.720375 0.693187 -0.023480 }
+          <Binormal> { -0.683145 0.705874 -0.120030 }
+        }
+        <Normal> { 0.170049 -0.002991 -0.985412 }
+      }
+      <Vertex> 3199 {
+        0.467969059944 0.147110790014 3.1166601181
+        <UV>  {
+          0.522780 0.743293
+          <Tangent> { 0.754945 0.336975 0.562589 }
+          <Binormal> { -0.606331 0.673455 0.410261 }
+        }
+        <Normal> { 0.163366 0.616352 -0.770318 }
+      }
+      <Vertex> 3200 {
+        0.459292531013 0.0848592743278 3.14895009995
+        <UV>  {
+          0.523147 0.741685
+          <Tangent> { 0.815782 0.402464 0.415359 }
+          <Binormal> { -0.474985 0.731780 0.223828 }
+        }
+        <Normal> { 0.568285 0.554735 -0.607685 }
+      }
+      <Vertex> 3201 {
+        0.467969059944 0.147110790014 3.1166601181
+        <UV>  {
+          0.522780 0.743293
+          <Tangent> { 0.754945 0.336975 0.562589 }
+          <Binormal> { -0.606331 0.673455 0.410261 }
+        }
+        <Normal> { 0.163366 0.616352 -0.770318 }
+      }
+      <Vertex> 3202 {
+        0.4032073915 0.144849777222 3.09285616875
+        <UV>  {
+          0.523400 0.743807
+          <Tangent> { 0.720375 0.693187 -0.023480 }
+          <Binormal> { -0.683145 0.705874 -0.120030 }
+        }
+        <Normal> { 0.170049 -0.002991 -0.985412 }
+      }
+      <Vertex> 3203 {
+        0.403207421303 0.211320370436 3.10498547554
+        <UV>  {
+          0.522951 0.744364
+          <Tangent> { 0.694344 0.594096 0.406123 }
+          <Binormal> { -0.528647 0.412007 0.301120 }
+        }
+        <Normal> { -0.482528 0.020814 -0.875607 }
+      }
+      <Vertex> 3204 {
+        0.403207421303 0.211320370436 3.10498547554
+        <UV>  {
+          0.522951 0.744364
+          <Tangent> { 0.694344 0.594096 0.406123 }
+          <Binormal> { -0.528647 0.412007 0.301120 }
+        }
+        <Normal> { -0.482528 0.020814 -0.875607 }
+      }
+      <Vertex> 3205 {
+        0.459292560816 0.213278472424 3.12560033798
+        <UV>  {
+          0.522592 0.744085
+          <Tangent> { 0.679302 0.245345 0.691632 }
+          <Binormal> { -0.535849 0.150759 0.472817 }
+        }
+        <Normal> { -0.475723 0.524216 -0.706290 }
+      }
+      <Vertex> 3206 {
+        0.467969059944 0.147110790014 3.1166601181
+        <UV>  {
+          0.522780 0.743293
+          <Tangent> { 0.754945 0.336975 0.562589 }
+          <Binormal> { -0.606331 0.673455 0.410261 }
+        }
+        <Normal> { 0.163366 0.616352 -0.770318 }
+      }
+      <Vertex> 3207 {
+        0.459292560816 0.213278472424 3.12560033798
+        <UV>  {
+          0.522592 0.744085
+          <Tangent> { 0.679302 0.245345 0.691632 }
+          <Binormal> { -0.535849 0.150759 0.472817 }
+        }
+        <Normal> { -0.475723 0.524216 -0.706290 }
+      }
+      <Vertex> 3208 {
+        0.403207421303 0.211320370436 3.10498547554
+        <UV>  {
+          0.522951 0.744364
+          <Tangent> { 0.694344 0.594096 0.406123 }
+          <Binormal> { -0.528647 0.412007 0.301120 }
+        }
+        <Normal> { -0.482528 0.020814 -0.875607 }
+      }
+      <Vertex> 3209 {
+        0.403207421303 0.264502316713 3.16147279739
+        <UV>  {
+          0.522650 0.744766
+          <Tangent> { 0.662958 0.361249 0.655733 }
+          <Binormal> { -0.224214 -0.196179 0.334761 }
+        }
+        <Normal> { -0.842219 0.046022 -0.537126 }
+      }
+      <Vertex> 3210 {
+        0.403207421303 0.264502316713 3.16147279739
+        <UV>  {
+          0.522650 0.744766
+          <Tangent> { 0.662958 0.361249 0.655733 }
+          <Binormal> { -0.224214 -0.196179 0.334761 }
+        }
+        <Normal> { -0.842219 0.046022 -0.537126 }
+      }
+      <Vertex> 3211 {
+        0.435588210821 0.265632808208 3.17337489128
+        <UV>  {
+          0.522478 0.744642
+          <Tangent> { 0.638611 0.142399 0.756240 }
+          <Binormal> { -0.315967 -0.344985 0.331780 }
+        }
+        <Normal> { -0.831263 0.334178 -0.444166 }
+      }
+      <Vertex> 3212 {
+        0.459292560816 0.213278472424 3.12560033798
+        <UV>  {
+          0.522592 0.744085
+          <Tangent> { 0.679302 0.245345 0.691632 }
+          <Binormal> { -0.535849 0.150759 0.472817 }
+        }
+        <Normal> { -0.475723 0.524216 -0.706290 }
+      }
+      <Vertex> 3213 {
+        0.403207421303 0.290145397186 3.24718236923
+        <UV>  {
+          0.522395 0.745149
+          <Tangent> { 0.619447 0.074242 0.781520 }
+          <Binormal> { -0.007142 -0.718284 0.073895 }
+        }
+        <Normal> { -0.995331 0.000000 -0.096194 }
+      }
+      <Vertex> 3214 {
+        0.435588210821 0.265632808208 3.17337489128
+        <UV>  {
+          0.522478 0.744642
+          <Tangent> { 0.638611 0.142399 0.756240 }
+          <Binormal> { -0.315967 -0.344985 0.331780 }
+        }
+        <Normal> { -0.831263 0.334178 -0.444166 }
+      }
+      <Vertex> 3215 {
+        0.403207421303 0.264502316713 3.16147279739
+        <UV>  {
+          0.522650 0.744766
+          <Tangent> { 0.662958 0.361249 0.655733 }
+          <Binormal> { -0.224214 -0.196179 0.334761 }
+        }
+        <Normal> { -0.842219 0.046022 -0.537126 }
+      }
+      <Vertex> 3216 {
+        0.4032073915 0.0598407760262 3.22907686234
+        <UV>  {
+          0.502038 0.777562
+          <Tangent> { -0.191353 0.093922 0.977017 }
+          <Binormal> { 0.009095 0.990925 -0.093477 }
+        }
+        <Normal> { 0.995270 0.000000 0.096835 }
+      }
+      <Vertex> 3217 {
+        0.435588210821 0.0697379410267 3.14901256561
+        <UV>  {
+          0.518448 0.783634
+          <Tangent> { -0.185367 -0.092291 0.978326 }
+          <Binormal> { -0.255499 0.740218 0.021419 }
+        }
+        <Normal> { 0.841365 0.303354 -0.447279 }
+      }
+      <Vertex> 3218 {
+        0.459292531013 0.0728265196085 3.18152976036
+        <UV>  {
+          0.514051 0.794152
+          <Tangent> { -0.186870 -0.044762 0.981364 }
+          <Binormal> { -0.512586 0.799897 -0.061121 }
+        }
+        <Normal> { 0.839442 0.528153 -0.127903 }
+      }
+      <Vertex> 3219 {
+        0.459292531013 0.0728265196085 3.18152976036
+        <UV>  {
+          0.519640 0.730947
+          <Tangent> { 0.496708 0.345625 0.796131 }
+          <Binormal> { -0.464686 0.731837 -0.027794 }
+        }
+        <Normal> { 0.839442 0.528153 -0.127903 }
+      }
+      <Vertex> 3220 {
+        0.435588210821 0.0697379410267 3.14901256561
+        <UV>  {
+          0.525151 0.730947
+          <Tangent> { 0.918589 0.074333 0.388161 }
+          <Binormal> { -0.150998 0.737451 0.216116 }
+        }
+        <Normal> { 0.841365 0.303354 -0.447279 }
+      }
+      <Vertex> 3221 {
+        0.459292531013 0.0848592743278 3.14895009995
+        <UV>  {
+          0.523147 0.741685
+          <Tangent> { 0.815782 0.402464 0.415359 }
+          <Binormal> { -0.474985 0.731780 0.223828 }
+        }
+        <Normal> { 0.568285 0.554735 -0.607685 }
+      }
+      <Vertex> 3222 {
+        0.459292531013 0.0848592743278 3.14895009995
+        <UV>  {
+          0.523147 0.741685
+          <Tangent> { 0.815782 0.402464 0.415359 }
+          <Binormal> { -0.474985 0.731780 0.223828 }
+        }
+        <Normal> { 0.568285 0.554735 -0.607685 }
+      }
+      <Vertex> 3223 {
+        0.500349879265 0.118531368673 3.20527076721
+        <UV>  {
+          0.521792 0.741630
+          <Tangent> { 0.427004 0.158743 0.890207 }
+          <Binormal> { -0.748837 0.592307 0.253572 }
+        }
+        <Normal> { 0.553270 0.799524 -0.233680 }
+      }
+      <Vertex> 3224 {
+        0.459292531013 0.0728265196085 3.18152976036
+        <UV>  {
+          0.519640 0.730947
+          <Tangent> { 0.496708 0.345625 0.796131 }
+          <Binormal> { -0.464686 0.731837 -0.027794 }
+        }
+        <Normal> { 0.839442 0.528153 -0.127903 }
+      }
+      <Vertex> 3225 {
+        0.500349879265 0.118531368673 3.20527076721
+        <UV>  {
+          0.521792 0.741630
+          <Tangent> { 0.427004 0.158743 0.890207 }
+          <Binormal> { -0.748837 0.592307 0.253572 }
+        }
+        <Normal> { 0.553270 0.799524 -0.233680 }
+      }
+      <Vertex> 3226 {
+        0.459292531013 0.0848592743278 3.14895009995
+        <UV>  {
+          0.523147 0.741685
+          <Tangent> { 0.815782 0.402464 0.415359 }
+          <Binormal> { -0.474985 0.731780 0.223828 }
+        }
+        <Normal> { 0.568285 0.554735 -0.607685 }
+      }
+      <Vertex> 3227 {
+        0.467969059944 0.147110790014 3.1166601181
+        <UV>  {
+          0.522780 0.743293
+          <Tangent> { 0.754945 0.336975 0.562589 }
+          <Binormal> { -0.606331 0.673455 0.410261 }
+        }
+        <Normal> { 0.163366 0.616352 -0.770318 }
+      }
+      <Vertex> 3228 {
+        0.467969059944 0.147110790014 3.1166601181
+        <UV>  {
+          0.522780 0.743293
+          <Tangent> { 0.754945 0.336975 0.562589 }
+          <Binormal> { -0.606331 0.673455 0.410261 }
+        }
+        <Normal> { 0.163366 0.616352 -0.770318 }
+      }
+      <Vertex> 3229 {
+        0.515377998352 0.153288006783 3.18169426918
+        <UV>  {
+          0.522056 0.743277
+          <Tangent> { 0.423961 -0.039305 0.904827 }
+          <Binormal> { -0.806972 0.316640 0.391865 }
+        }
+        <Normal> { 0.171300 0.908414 -0.381268 }
+      }
+      <Vertex> 3230 {
+        0.500349879265 0.118531368673 3.20527076721
+        <UV>  {
+          0.521792 0.741630
+          <Tangent> { 0.427004 0.158743 0.890207 }
+          <Binormal> { -0.748837 0.592307 0.253572 }
+        }
+        <Normal> { 0.553270 0.799524 -0.233680 }
+      }
+      <Vertex> 3231 {
+        0.515377998352 0.153288006783 3.18169426918
+        <UV>  {
+          0.522056 0.743277
+          <Tangent> { 0.423961 -0.039305 0.904827 }
+          <Binormal> { -0.806972 0.316640 0.391865 }
+        }
+        <Normal> { 0.171300 0.908414 -0.381268 }
+      }
+      <Vertex> 3232 {
+        0.467969059944 0.147110790014 3.1166601181
+        <UV>  {
+          0.522780 0.743293
+          <Tangent> { 0.754945 0.336975 0.562589 }
+          <Binormal> { -0.606331 0.673455 0.410261 }
+        }
+        <Normal> { 0.163366 0.616352 -0.770318 }
+      }
+      <Vertex> 3233 {
+        0.459292560816 0.213278472424 3.12560033798
+        <UV>  {
+          0.522592 0.744085
+          <Tangent> { 0.679302 0.245345 0.691632 }
+          <Binormal> { -0.535849 0.150759 0.472817 }
+        }
+        <Normal> { -0.475723 0.524216 -0.706290 }
+      }
+      <Vertex> 3234 {
+        0.459292560816 0.213278472424 3.12560033798
+        <UV>  {
+          0.522592 0.744085
+          <Tangent> { 0.679302 0.245345 0.691632 }
+          <Binormal> { -0.535849 0.150759 0.472817 }
+        }
+        <Normal> { -0.475723 0.524216 -0.706290 }
+      }
+      <Vertex> 3235 {
+        0.500349938869 0.218628108501 3.18192148209
+        <UV>  {
+          0.522181 0.744092
+          <Tangent> { 0.491107 -0.096231 0.865768 }
+          <Binormal> { -0.653316 -0.220848 0.346046 }
+        }
+        <Normal> { -0.470290 0.796777 -0.379376 }
+      }
+      <Vertex> 3236 {
+        0.515377998352 0.153288006783 3.18169426918
+        <UV>  {
+          0.522056 0.743277
+          <Tangent> { 0.423961 -0.039305 0.904827 }
+          <Binormal> { -0.806972 0.316640 0.391865 }
+        }
+        <Normal> { 0.171300 0.908414 -0.381268 }
+      }
+      <Vertex> 3237 {
+        0.500349938869 0.218628108501 3.18192148209
+        <UV>  {
+          0.522181 0.744092
+          <Tangent> { 0.491107 -0.096231 0.865768 }
+          <Binormal> { -0.653316 -0.220848 0.346046 }
+        }
+        <Normal> { -0.470290 0.796777 -0.379376 }
+      }
+      <Vertex> 3238 {
+        0.459292560816 0.213278472424 3.12560033798
+        <UV>  {
+          0.522592 0.744085
+          <Tangent> { 0.679302 0.245345 0.691632 }
+          <Binormal> { -0.535849 0.150759 0.472817 }
+        }
+        <Normal> { -0.475723 0.524216 -0.706290 }
+      }
+      <Vertex> 3239 {
+        0.435588210821 0.265632808208 3.17337489128
+        <UV>  {
+          0.522478 0.744642
+          <Tangent> { 0.638611 0.142399 0.756240 }
+          <Binormal> { -0.315967 -0.344985 0.331780 }
+        }
+        <Normal> { -0.831263 0.334178 -0.444166 }
+      }
+      <Vertex> 3240 {
+        0.435588210821 0.265632808208 3.17337489128
+        <UV>  {
+          0.522478 0.744642
+          <Tangent> { 0.638611 0.142399 0.756240 }
+          <Binormal> { -0.315967 -0.344985 0.331780 }
+        }
+        <Normal> { -0.831263 0.334178 -0.444166 }
+      }
+      <Vertex> 3241 {
+        0.459292560816 0.268721431494 3.20589160919
+        <UV>  {
+          0.522283 0.744653
+          <Tangent> { 0.561338 -0.077503 0.823949 }
+          <Binormal> { -0.396676 -0.531269 0.220274 }
+        }
+        <Normal> { -0.822260 0.505936 -0.260506 }
+      }
+      <Vertex> 3242 {
+        0.500349938869 0.218628108501 3.18192148209
+        <UV>  {
+          0.522181 0.744092
+          <Tangent> { 0.491107 -0.096231 0.865768 }
+          <Binormal> { -0.653316 -0.220848 0.346046 }
+        }
+        <Normal> { -0.470290 0.796777 -0.379376 }
+      }
+      <Vertex> 3243 {
+        0.403207421303 0.290145397186 3.24718236923
+        <UV>  {
+          0.522395 0.745149
+          <Tangent> { 0.619447 0.074242 0.781520 }
+          <Binormal> { -0.007142 -0.718284 0.073895 }
+        }
+        <Normal> { -0.995331 0.000000 -0.096194 }
+      }
+      <Vertex> 3244 {
+        0.459292560816 0.268721431494 3.20589160919
+        <UV>  {
+          0.522283 0.744653
+          <Tangent> { 0.561338 -0.077503 0.823949 }
+          <Binormal> { -0.396676 -0.531269 0.220274 }
+        }
+        <Normal> { -0.822260 0.505936 -0.260506 }
+      }
+      <Vertex> 3245 {
+        0.435588210821 0.265632808208 3.17337489128
+        <UV>  {
+          0.522478 0.744642
+          <Tangent> { 0.638611 0.142399 0.756240 }
+          <Binormal> { -0.315967 -0.344985 0.331780 }
+        }
+        <Normal> { -0.831263 0.334178 -0.444166 }
+      }
+      <Vertex> 3246 {
+        0.4032073915 0.0598407760262 3.22907686234
+        <UV>  {
+          0.502038 0.777562
+          <Tangent> { -0.191353 0.093922 0.977017 }
+          <Binormal> { 0.009095 0.990925 -0.093477 }
+        }
+        <Normal> { 0.995270 0.000000 0.096835 }
+      }
+      <Vertex> 3247 {
+        0.459292531013 0.0728265196085 3.18152976036
+        <UV>  {
+          0.514051 0.794152
+          <Tangent> { -0.186870 -0.044762 0.981364 }
+          <Binormal> { -0.512586 0.799897 -0.061121 }
+        }
+        <Normal> { 0.839442 0.528153 -0.127903 }
+      }
+      <Vertex> 3248 {
+        0.467969059944 0.0770456492901 3.22594857216
+        <UV>  {
+          0.506435 0.800224
+          <Tangent> { -0.189813 0.041875 0.980927 }
+          <Binormal> { -0.538162 0.825739 -0.139387 }
+        }
+        <Normal> { 0.833888 0.550371 0.040864 }
+      }
+      <Vertex> 3249 {
+        0.467969059944 0.0770456492901 3.22594857216
+        <UV>  {
+          0.514867 0.734752
+          <Tangent> { -0.051393 -0.137066 0.989228 }
+          <Binormal> { -0.550043 0.827005 0.086013 }
+        }
+        <Normal> { 0.833888 0.550371 0.040864 }
+      }
+      <Vertex> 3250 {
+        0.459292531013 0.0728265196085 3.18152976036
+        <UV>  {
+          0.519640 0.730947
+          <Tangent> { 0.496708 0.345625 0.796131 }
+          <Binormal> { -0.464686 0.731837 -0.027794 }
+        }
+        <Normal> { 0.839442 0.528153 -0.127903 }
+      }
+      <Vertex> 3251 {
+        0.500349879265 0.118531368673 3.20527076721
+        <UV>  {
+          0.521792 0.741630
+          <Tangent> { 0.427004 0.158743 0.890207 }
+          <Binormal> { -0.748837 0.592307 0.253572 }
+        }
+        <Normal> { 0.553270 0.799524 -0.233680 }
+      }
+      <Vertex> 3252 {
+        0.500349879265 0.118531368673 3.20527076721
+        <UV>  {
+          0.521792 0.741630
+          <Tangent> { 0.427004 0.158743 0.890207 }
+          <Binormal> { -0.748837 0.592307 0.253572 }
+        }
+        <Normal> { 0.553270 0.799524 -0.233680 }
+      }
+      <Vertex> 3253 {
+        0.515377998352 0.125839069486 3.28220677376
+        <UV>  {
+          0.520599 0.742518
+          <Tangent> { -0.050777 -0.198658 0.978753 }
+          <Binormal> { -0.779497 0.595145 0.080358 }
+        }
+        <Normal> { 0.607501 0.794214 0.010865 }
+      }
+      <Vertex> 3254 {
+        0.467969059944 0.0770456492901 3.22594857216
+        <UV>  {
+          0.514867 0.734752
+          <Tangent> { -0.051393 -0.137066 0.989228 }
+          <Binormal> { -0.550043 0.827005 0.086013 }
+        }
+        <Normal> { 0.833888 0.550371 0.040864 }
+      }
+      <Vertex> 3255 {
+        0.515377998352 0.125839069486 3.28220677376
+        <UV>  {
+          0.520599 0.742518
+          <Tangent> { -0.050777 -0.198658 0.978753 }
+          <Binormal> { -0.779497 0.595145 0.080358 }
+        }
+        <Normal> { 0.607501 0.794214 0.010865 }
+      }
+      <Vertex> 3256 {
+        0.500349879265 0.118531368673 3.20527076721
+        <UV>  {
+          0.521792 0.741630
+          <Tangent> { 0.427004 0.158743 0.890207 }
+          <Binormal> { -0.748837 0.592307 0.253572 }
+        }
+        <Normal> { 0.553270 0.799524 -0.233680 }
+      }
+      <Vertex> 3257 {
+        0.515377998352 0.153288006783 3.18169426918
+        <UV>  {
+          0.522056 0.743277
+          <Tangent> { 0.423961 -0.039305 0.904827 }
+          <Binormal> { -0.806972 0.316640 0.391865 }
+        }
+        <Normal> { 0.171300 0.908414 -0.381268 }
+      }
+      <Vertex> 3258 {
+        0.515377998352 0.153288006783 3.18169426918
+        <UV>  {
+          0.522056 0.743277
+          <Tangent> { 0.423961 -0.039305 0.904827 }
+          <Binormal> { -0.806972 0.316640 0.391865 }
+        }
+        <Normal> { 0.171300 0.908414 -0.381268 }
+      }
+      <Vertex> 3259 {
+        0.532730817795 0.161726221442 3.27053189278
+        <UV>  {
+          0.521424 0.743762
+          <Tangent> { 0.093569 -0.379594 0.920409 }
+          <Binormal> { -0.916289 0.068783 0.121518 }
+        }
+        <Normal> { 0.074313 0.997223 -0.004120 }
+      }
+      <Vertex> 3260 {
+        0.515377998352 0.125839069486 3.28220677376
+        <UV>  {
+          0.520599 0.742518
+          <Tangent> { -0.050777 -0.198658 0.978753 }
+          <Binormal> { -0.779497 0.595145 0.080358 }
+        }
+        <Normal> { 0.607501 0.794214 0.010865 }
+      }
+      <Vertex> 3261 {
+        0.532730817795 0.161726221442 3.27053189278
+        <UV>  {
+          0.521424 0.743762
+          <Tangent> { 0.093569 -0.379594 0.920409 }
+          <Binormal> { -0.916289 0.068783 0.121518 }
+        }
+        <Normal> { 0.074313 0.997223 -0.004120 }
+      }
+      <Vertex> 3262 {
+        0.515377998352 0.153288006783 3.18169426918
+        <UV>  {
+          0.522056 0.743277
+          <Tangent> { 0.423961 -0.039305 0.904827 }
+          <Binormal> { -0.806972 0.316640 0.391865 }
+        }
+        <Normal> { 0.171300 0.908414 -0.381268 }
+      }
+      <Vertex> 3263 {
+        0.500349938869 0.218628108501 3.18192148209
+        <UV>  {
+          0.522181 0.744092
+          <Tangent> { 0.491107 -0.096231 0.865768 }
+          <Binormal> { -0.653316 -0.220848 0.346046 }
+        }
+        <Normal> { -0.470290 0.796777 -0.379376 }
+      }
+      <Vertex> 3264 {
+        0.500349938869 0.218628108501 3.18192148209
+        <UV>  {
+          0.522181 0.744092
+          <Tangent> { 0.491107 -0.096231 0.865768 }
+          <Binormal> { -0.653316 -0.220848 0.346046 }
+        }
+        <Normal> { -0.470290 0.796777 -0.379376 }
+      }
+      <Vertex> 3265 {
+        0.515377998352 0.225935816765 3.2588570118
+        <UV>  {
+          0.521827 0.744382
+          <Tangent> { 0.321476 -0.397872 0.859274 }
+          <Binormal> { -0.727954 -0.415926 0.079759 }
+        }
+        <Normal> { -0.498978 0.865658 -0.039918 }
+      }
+      <Vertex> 3266 {
+        0.532730817795 0.161726221442 3.27053189278
+        <UV>  {
+          0.521424 0.743762
+          <Tangent> { 0.093569 -0.379594 0.920409 }
+          <Binormal> { -0.916289 0.068783 0.121518 }
+        }
+        <Normal> { 0.074313 0.997223 -0.004120 }
+      }
+      <Vertex> 3267 {
+        0.515377998352 0.225935816765 3.2588570118
+        <UV>  {
+          0.521827 0.744382
+          <Tangent> { 0.321476 -0.397872 0.859274 }
+          <Binormal> { -0.727954 -0.415926 0.079759 }
+        }
+        <Normal> { -0.498978 0.865658 -0.039918 }
+      }
+      <Vertex> 3268 {
+        0.500349938869 0.218628108501 3.18192148209
+        <UV>  {
+          0.522181 0.744092
+          <Tangent> { 0.491107 -0.096231 0.865768 }
+          <Binormal> { -0.653316 -0.220848 0.346046 }
+        }
+        <Normal> { -0.470290 0.796777 -0.379376 }
+      }
+      <Vertex> 3269 {
+        0.459292560816 0.268721431494 3.20589160919
+        <UV>  {
+          0.522283 0.744653
+          <Tangent> { 0.561338 -0.077503 0.823949 }
+          <Binormal> { -0.396676 -0.531269 0.220274 }
+        }
+        <Normal> { -0.822260 0.505936 -0.260506 }
+      }
+      <Vertex> 3270 {
+        0.459292560816 0.268721431494 3.20589160919
+        <UV>  {
+          0.522283 0.744653
+          <Tangent> { 0.561338 -0.077503 0.823949 }
+          <Binormal> { -0.396676 -0.531269 0.220274 }
+        }
+        <Normal> { -0.822260 0.505936 -0.260506 }
+      }
+      <Vertex> 3271 {
+        0.467969059944 0.272940516472 3.25031065941
+        <UV>  {
+          0.522119 0.744797
+          <Tangent> { 0.501869 -0.261161 0.824574 }
+          <Binormal> { -0.435490 -0.664278 0.054665 }
+        }
+        <Normal> { -0.837123 0.544542 -0.051790 }
+      }
+      <Vertex> 3272 {
+        0.515377998352 0.225935816765 3.2588570118
+        <UV>  {
+          0.521827 0.744382
+          <Tangent> { 0.321476 -0.397872 0.859274 }
+          <Binormal> { -0.727954 -0.415926 0.079759 }
+        }
+        <Normal> { -0.498978 0.865658 -0.039918 }
+      }
+      <Vertex> 3273 {
+        0.403207421303 0.290145397186 3.24718236923
+        <UV>  {
+          0.522395 0.745149
+          <Tangent> { 0.619447 0.074242 0.781520 }
+          <Binormal> { -0.007142 -0.718284 0.073895 }
+        }
+        <Normal> { -0.995331 0.000000 -0.096194 }
+      }
+      <Vertex> 3274 {
+        0.467969059944 0.272940516472 3.25031065941
+        <UV>  {
+          0.522119 0.744797
+          <Tangent> { 0.501869 -0.261161 0.824574 }
+          <Binormal> { -0.435490 -0.664278 0.054665 }
+        }
+        <Normal> { -0.837123 0.544542 -0.051790 }
+      }
+      <Vertex> 3275 {
+        0.459292560816 0.268721431494 3.20589160919
+        <UV>  {
+          0.522283 0.744653
+          <Tangent> { 0.561338 -0.077503 0.823949 }
+          <Binormal> { -0.396676 -0.531269 0.220274 }
+        }
+        <Normal> { -0.822260 0.505936 -0.260506 }
+      }
+      <Vertex> 3276 {
+        0.4032073915 0.0598407760262 3.22907686234
+        <UV>  {
+          0.502038 0.777562
+          <Tangent> { -0.191353 0.093922 0.977017 }
+          <Binormal> { 0.009095 0.990925 -0.093477 }
+        }
+        <Normal> { 0.995270 0.000000 0.096835 }
+      }
+      <Vertex> 3277 {
+        0.467969059944 0.0770456492901 3.22594857216
+        <UV>  {
+          0.506435 0.800224
+          <Tangent> { -0.189813 0.041875 0.980927 }
+          <Binormal> { -0.538162 0.825739 -0.139387 }
+        }
+        <Normal> { 0.833888 0.550371 0.040864 }
+      }
+      <Vertex> 3278 {
+        0.459292531013 0.0812647491693 3.27036762238
+        <UV>  {
+          0.497641 0.800224
+          <Tangent> { -0.191453 0.143959 0.970887 }
+          <Binormal> { -0.354542 0.909999 -0.204844 }
+        }
+        <Normal> { 0.900540 0.392804 0.186346 }
+      }
+      <Vertex> 3279 {
+        0.459292531013 0.0812647491693 3.27036762238
+        <UV>  {
+          0.512112 0.741344
+          <Tangent> { -0.783213 -0.586341 -0.206837 }
+          <Binormal> { -0.028016 -0.040316 0.220375 }
+        }
+        <Normal> { 0.900540 0.392804 0.186346 }
+      }
+      <Vertex> 3280 {
+        0.467969059944 0.0770456492901 3.22594857216
+        <UV>  {
+          0.514867 0.734752
+          <Tangent> { -0.051393 -0.137066 0.989228 }
+          <Binormal> { -0.550043 0.827005 0.086013 }
+        }
+        <Normal> { 0.833888 0.550371 0.040864 }
+      }
+      <Vertex> 3281 {
+        0.515377998352 0.125839069486 3.28220677376
+        <UV>  {
+          0.520599 0.742518
+          <Tangent> { -0.050777 -0.198658 0.978753 }
+          <Binormal> { -0.779497 0.595145 0.080358 }
+        }
+        <Normal> { 0.607501 0.794214 0.010865 }
+      }
+      <Vertex> 3282 {
+        0.515377998352 0.125839069486 3.28220677376
+        <UV>  {
+          0.520599 0.742518
+          <Tangent> { -0.050777 -0.198658 0.978753 }
+          <Binormal> { -0.779497 0.595145 0.080358 }
+        }
+        <Normal> { 0.607501 0.794214 0.010865 }
+      }
+      <Vertex> 3283 {
+        0.500349879265 0.120560646057 3.35914254189
+        <UV>  {
+          0.519887 0.744111
+          <Tangent> { -0.447338 -0.769601 0.455635 }
+          <Binormal> { -0.560882 0.446479 0.203468 }
+        }
+        <Normal> { 0.658315 0.677725 0.327555 }
+      }
+      <Vertex> 3284 {
+        0.459292531013 0.0812647491693 3.27036762238
+        <UV>  {
+          0.512112 0.741344
+          <Tangent> { -0.783213 -0.586341 -0.206837 }
+          <Binormal> { -0.028016 -0.040316 0.220375 }
+        }
+        <Normal> { 0.900540 0.392804 0.186346 }
+      }
+      <Vertex> 3285 {
+        0.500349879265 0.120560646057 3.35914254189
+        <UV>  {
+          0.519887 0.744111
+          <Tangent> { -0.447338 -0.769601 0.455635 }
+          <Binormal> { -0.560882 0.446479 0.203468 }
+        }
+        <Normal> { 0.658315 0.677725 0.327555 }
+      }
+      <Vertex> 3286 {
+        0.515377998352 0.125839069486 3.28220677376
+        <UV>  {
+          0.520599 0.742518
+          <Tangent> { -0.050777 -0.198658 0.978753 }
+          <Binormal> { -0.779497 0.595145 0.080358 }
+        }
+        <Normal> { 0.607501 0.794214 0.010865 }
+      }
+      <Vertex> 3287 {
+        0.532730817795 0.161726221442 3.27053189278
+        <UV>  {
+          0.521424 0.743762
+          <Tangent> { 0.093569 -0.379594 0.920409 }
+          <Binormal> { -0.916289 0.068783 0.121518 }
+        }
+        <Normal> { 0.074313 0.997223 -0.004120 }
+      }
+      <Vertex> 3288 {
+        0.532730817795 0.161726221442 3.27053189278
+        <UV>  {
+          0.521424 0.743762
+          <Tangent> { 0.093569 -0.379594 0.920409 }
+          <Binormal> { -0.916289 0.068783 0.121518 }
+        }
+        <Normal> { 0.074313 0.997223 -0.004120 }
+      }
+      <Vertex> 3289 {
+        0.515377998352 0.170164451003 3.35936999321
+        <UV>  {
+          0.521052 0.744619
+          <Tangent> { -0.022148 -0.786780 0.616836 }
+          <Binormal> { -0.881970 -0.003364 -0.035958 }
+        }
+        <Normal> { -0.019959 0.914518 0.404004 }
+      }
+      <Vertex> 3290 {
+        0.500349879265 0.120560646057 3.35914254189
+        <UV>  {
+          0.519887 0.744111
+          <Tangent> { -0.447338 -0.769601 0.455635 }
+          <Binormal> { -0.560882 0.446479 0.203468 }
+        }
+        <Normal> { 0.658315 0.677725 0.327555 }
+      }
+      <Vertex> 3291 {
+        0.515377998352 0.170164451003 3.35936999321
+        <UV>  {
+          0.521052 0.744619
+          <Tangent> { -0.022148 -0.786780 0.616836 }
+          <Binormal> { -0.881970 -0.003364 -0.035958 }
+        }
+        <Normal> { -0.019959 0.914518 0.404004 }
+      }
+      <Vertex> 3292 {
+        0.532730817795 0.161726221442 3.27053189278
+        <UV>  {
+          0.521424 0.743762
+          <Tangent> { 0.093569 -0.379594 0.920409 }
+          <Binormal> { -0.916289 0.068783 0.121518 }
+        }
+        <Normal> { 0.074313 0.997223 -0.004120 }
+      }
+      <Vertex> 3293 {
+        0.515377998352 0.225935816765 3.2588570118
+        <UV>  {
+          0.521827 0.744382
+          <Tangent> { 0.321476 -0.397872 0.859274 }
+          <Binormal> { -0.727954 -0.415926 0.079759 }
+        }
+        <Normal> { -0.498978 0.865658 -0.039918 }
+      }
+      <Vertex> 3294 {
+        0.515377998352 0.225935816765 3.2588570118
+        <UV>  {
+          0.521827 0.744382
+          <Tangent> { 0.321476 -0.397872 0.859274 }
+          <Binormal> { -0.727954 -0.415926 0.079759 }
+        }
+        <Normal> { -0.498978 0.865658 -0.039918 }
+      }
+      <Vertex> 3295 {
+        0.500349938869 0.233243539929 3.33579301834
+        <UV>  {
+          0.521625 0.744878
+          <Tangent> { 0.303477 -0.641844 0.704229 }
+          <Binormal> { -0.727168 -0.488705 -0.132051 }
+        }
+        <Normal> { -0.569597 0.769555 0.288583 }
+      }
+      <Vertex> 3296 {
+        0.515377998352 0.170164451003 3.35936999321
+        <UV>  {
+          0.521052 0.744619
+          <Tangent> { -0.022148 -0.786780 0.616836 }
+          <Binormal> { -0.881970 -0.003364 -0.035958 }
+        }
+        <Normal> { -0.019959 0.914518 0.404004 }
+      }
+      <Vertex> 3297 {
+        0.500349938869 0.233243539929 3.33579301834
+        <UV>  {
+          0.521625 0.744878
+          <Tangent> { 0.303477 -0.641844 0.704229 }
+          <Binormal> { -0.727168 -0.488705 -0.132051 }
+        }
+        <Normal> { -0.569597 0.769555 0.288583 }
+      }
+      <Vertex> 3298 {
+        0.515377998352 0.225935816765 3.2588570118
+        <UV>  {
+          0.521827 0.744382
+          <Tangent> { 0.321476 -0.397872 0.859274 }
+          <Binormal> { -0.727954 -0.415926 0.079759 }
+        }
+        <Normal> { -0.498978 0.865658 -0.039918 }
+      }
+      <Vertex> 3299 {
+        0.467969059944 0.272940516472 3.25031065941
+        <UV>  {
+          0.522119 0.744797
+          <Tangent> { 0.501869 -0.261161 0.824574 }
+          <Binormal> { -0.435490 -0.664278 0.054665 }
+        }
+        <Normal> { -0.837123 0.544542 -0.051790 }
+      }
+      <Vertex> 3300 {
+        0.467969059944 0.272940516472 3.25031065941
+        <UV>  {
+          0.522119 0.744797
+          <Tangent> { 0.501869 -0.261161 0.824574 }
+          <Binormal> { -0.435490 -0.664278 0.054665 }
+        }
+        <Normal> { -0.837123 0.544542 -0.051790 }
+      }
+      <Vertex> 3301 {
+        0.459292560816 0.277159631252 3.29472947121
+        <UV>  {
+          0.522028 0.745036
+          <Tangent> { 0.510578 -0.372765 0.774827 }
+          <Binormal> { -0.407742 -0.753693 -0.093912 }
+        }
+        <Normal> { -0.877743 0.456893 0.144139 }
+      }
+      <Vertex> 3302 {
+        0.500349938869 0.233243539929 3.33579301834
+        <UV>  {
+          0.521625 0.744878
+          <Tangent> { 0.303477 -0.641844 0.704229 }
+          <Binormal> { -0.727168 -0.488705 -0.132051 }
+        }
+        <Normal> { -0.569597 0.769555 0.288583 }
+      }
+      <Vertex> 3303 {
+        0.403207421303 0.290145397186 3.24718236923
+        <UV>  {
+          0.522395 0.745149
+          <Tangent> { 0.619447 0.074242 0.781520 }
+          <Binormal> { -0.007142 -0.718284 0.073895 }
+        }
+        <Normal> { -0.995331 0.000000 -0.096194 }
+      }
+      <Vertex> 3304 {
+        0.459292560816 0.277159631252 3.29472947121
+        <UV>  {
+          0.522028 0.745036
+          <Tangent> { 0.510578 -0.372765 0.774827 }
+          <Binormal> { -0.407742 -0.753693 -0.093912 }
+        }
+        <Normal> { -0.877743 0.456893 0.144139 }
+      }
+      <Vertex> 3305 {
+        0.467969059944 0.272940516472 3.25031065941
+        <UV>  {
+          0.522119 0.744797
+          <Tangent> { 0.501869 -0.261161 0.824574 }
+          <Binormal> { -0.435490 -0.664278 0.054665 }
+        }
+        <Normal> { -0.837123 0.544542 -0.051790 }
+      }
+      <Vertex> 3306 {
+        0.4032073915 0.0598407760262 3.22907686234
+        <UV>  {
+          0.502038 0.777562
+          <Tangent> { -0.191353 0.093922 0.977017 }
+          <Binormal> { 0.009095 0.990925 -0.093477 }
+        }
+        <Normal> { 0.995270 0.000000 0.096835 }
+      }
+      <Vertex> 3307 {
+        0.459292531013 0.0812647491693 3.27036762238
+        <UV>  {
+          0.497641 0.800224
+          <Tangent> { -0.191453 0.143959 0.970887 }
+          <Binormal> { -0.354542 0.909999 -0.204844 }
+        }
+        <Normal> { 0.900540 0.392804 0.186346 }
+      }
+      <Vertex> 3308 {
+        0.435588210821 0.0843533650041 3.3028845787
+        <UV>  {
+          0.490026 0.794152
+          <Tangent> { -0.191234 0.231791 0.953783 }
+          <Binormal> { -0.077132 0.950505 -0.246459 }
+        }
+        <Normal> { 0.930692 0.160710 0.328532 }
+      }
+      <Vertex> 3309 {
+        0.435588210821 0.0843533650041 3.3028845787
+        <UV>  {
+          0.512112 0.748955
+          <Tangent> { -0.036719 -0.413435 -0.909793 }
+          <Binormal> { 0.010387 -0.834674 0.378879 }
+        }
+        <Normal> { 0.930692 0.160710 0.328532 }
+      }
+      <Vertex> 3310 {
+        0.459292531013 0.0812647491693 3.27036762238
+        <UV>  {
+          0.512112 0.741344
+          <Tangent> { -0.783213 -0.586341 -0.206837 }
+          <Binormal> { -0.028016 -0.040316 0.220375 }
+        }
+        <Normal> { 0.900540 0.392804 0.186346 }
+      }
+      <Vertex> 3311 {
+        0.500349879265 0.120560646057 3.35914254189
+        <UV>  {
+          0.519887 0.744111
+          <Tangent> { -0.447338 -0.769601 0.455635 }
+          <Binormal> { -0.560882 0.446479 0.203468 }
+        }
+        <Normal> { 0.658315 0.677725 0.327555 }
+      }
+      <Vertex> 3312 {
+        0.500349879265 0.120560646057 3.35914254189
+        <UV>  {
+          0.519887 0.744111
+          <Tangent> { -0.447338 -0.769601 0.455635 }
+          <Binormal> { -0.560882 0.446479 0.203468 }
+        }
+        <Normal> { 0.658315 0.677725 0.327555 }
+      }
+      <Vertex> 3313 {
+        0.459292531013 0.13998247683 3.41546368599
+        <UV>  {
+          0.519848 0.745983
+          <Tangent> { 0.143497 -0.818971 -0.555603 }
+          <Binormal> { -0.320046 -0.460437 0.596035 }
+        }
+        <Normal> { 0.661489 0.378368 0.647481 }
+      }
+      <Vertex> 3314 {
+        0.435588210821 0.0843533650041 3.3028845787
+        <UV>  {
+          0.512112 0.748955
+          <Tangent> { -0.036719 -0.413435 -0.909793 }
+          <Binormal> { 0.010387 -0.834674 0.378879 }
+        }
+        <Normal> { 0.930692 0.160710 0.328532 }
+      }
+      <Vertex> 3315 {
+        0.459292531013 0.13998247683 3.41546368599
+        <UV>  {
+          0.519848 0.745983
+          <Tangent> { 0.143497 -0.818971 -0.555603 }
+          <Binormal> { -0.320046 -0.460437 0.596035 }
+        }
+        <Normal> { 0.661489 0.378368 0.647481 }
+      }
+      <Vertex> 3316 {
+        0.500349879265 0.120560646057 3.35914254189
+        <UV>  {
+          0.519887 0.744111
+          <Tangent> { -0.447338 -0.769601 0.455635 }
+          <Binormal> { -0.560882 0.446479 0.203468 }
+        }
+        <Normal> { 0.658315 0.677725 0.327555 }
+      }
+      <Vertex> 3317 {
+        0.515377998352 0.170164451003 3.35936999321
+        <UV>  {
+          0.521052 0.744619
+          <Tangent> { -0.022148 -0.786780 0.616836 }
+          <Binormal> { -0.881970 -0.003364 -0.035958 }
+        }
+        <Normal> { -0.019959 0.914518 0.404004 }
+      }
+      <Vertex> 3318 {
+        0.515377998352 0.170164451003 3.35936999321
+        <UV>  {
+          0.521052 0.744619
+          <Tangent> { -0.022148 -0.786780 0.616836 }
+          <Binormal> { -0.881970 -0.003364 -0.035958 }
+        }
+        <Normal> { -0.019959 0.914518 0.404004 }
+      }
+      <Vertex> 3319 {
+        0.467969059944 0.176341667771 3.42440366745
+        <UV>  {
+          0.521040 0.745618
+          <Tangent> { 0.342269 -0.925691 0.161085 }
+          <Binormal> { -0.836263 -0.279752 0.169248 }
+        }
+        <Normal> { -0.039033 0.600055 0.798975 }
+      }
+      <Vertex> 3320 {
+        0.459292531013 0.13998247683 3.41546368599
+        <UV>  {
+          0.519848 0.745983
+          <Tangent> { 0.143497 -0.818971 -0.555603 }
+          <Binormal> { -0.320046 -0.460437 0.596035 }
+        }
+        <Normal> { 0.661489 0.378368 0.647481 }
+      }
+      <Vertex> 3321 {
+        0.467969059944 0.176341667771 3.42440366745
+        <UV>  {
+          0.521040 0.745618
+          <Tangent> { 0.342269 -0.925691 0.161085 }
+          <Binormal> { -0.836263 -0.279752 0.169248 }
+        }
+        <Normal> { -0.039033 0.600055 0.798975 }
+      }
+      <Vertex> 3322 {
+        0.515377998352 0.170164451003 3.35936999321
+        <UV>  {
+          0.521052 0.744619
+          <Tangent> { -0.022148 -0.786780 0.616836 }
+          <Binormal> { -0.881970 -0.003364 -0.035958 }
+        }
+        <Normal> { -0.019959 0.914518 0.404004 }
+      }
+      <Vertex> 3323 {
+        0.500349938869 0.233243539929 3.33579301834
+        <UV>  {
+          0.521625 0.744878
+          <Tangent> { 0.303477 -0.641844 0.704229 }
+          <Binormal> { -0.727168 -0.488705 -0.132051 }
+        }
+        <Normal> { -0.569597 0.769555 0.288583 }
+      }
+      <Vertex> 3324 {
+        0.500349938869 0.233243539929 3.33579301834
+        <UV>  {
+          0.521625 0.744878
+          <Tangent> { 0.303477 -0.641844 0.704229 }
+          <Binormal> { -0.727168 -0.488705 -0.132051 }
+        }
+        <Normal> { -0.569597 0.769555 0.288583 }
+      }
+      <Vertex> 3325 {
+        0.459292560816 0.238593146205 3.39211392403
+        <UV>  {
+          0.521630 0.745446
+          <Tangent> { 0.473370 -0.693036 0.543711 }
+          <Binormal> { -0.658037 -0.635244 -0.236801 }
+        }
+        <Normal> { -0.664602 0.472762 0.578600 }
+      }
+      <Vertex> 3326 {
+        0.467969059944 0.176341667771 3.42440366745
+        <UV>  {
+          0.521040 0.745618
+          <Tangent> { 0.342269 -0.925691 0.161085 }
+          <Binormal> { -0.836263 -0.279752 0.169248 }
+        }
+        <Normal> { -0.039033 0.600055 0.798975 }
+      }
+      <Vertex> 3327 {
+        0.459292560816 0.238593146205 3.39211392403
+        <UV>  {
+          0.521630 0.745446
+          <Tangent> { 0.473370 -0.693036 0.543711 }
+          <Binormal> { -0.658037 -0.635244 -0.236801 }
+        }
+        <Normal> { -0.664602 0.472762 0.578600 }
+      }
+      <Vertex> 3328 {
+        0.500349938869 0.233243539929 3.33579301834
+        <UV>  {
+          0.521625 0.744878
+          <Tangent> { 0.303477 -0.641844 0.704229 }
+          <Binormal> { -0.727168 -0.488705 -0.132051 }
+        }
+        <Normal> { -0.569597 0.769555 0.288583 }
+      }
+      <Vertex> 3329 {
+        0.459292560816 0.277159631252 3.29472947121
+        <UV>  {
+          0.522028 0.745036
+          <Tangent> { 0.510578 -0.372765 0.774827 }
+          <Binormal> { -0.407742 -0.753693 -0.093912 }
+        }
+        <Normal> { -0.877743 0.456893 0.144139 }
+      }
+      <Vertex> 3330 {
+        0.459292560816 0.277159631252 3.29472947121
+        <UV>  {
+          0.522028 0.745036
+          <Tangent> { 0.510578 -0.372765 0.774827 }
+          <Binormal> { -0.407742 -0.753693 -0.093912 }
+        }
+        <Normal> { -0.877743 0.456893 0.144139 }
+      }
+      <Vertex> 3331 {
+        0.435588210821 0.280248254538 3.32724666595
+        <UV>  {
+          0.522036 0.745305
+          <Tangent> { 0.579784 -0.362642 0.729617 }
+          <Binormal> { -0.285691 -0.842473 -0.191713 }
+        }
+        <Normal> { -0.924558 0.247627 0.289590 }
+      }
+      <Vertex> 3332 {
+        0.459292560816 0.238593146205 3.39211392403
+        <UV>  {
+          0.521630 0.745446
+          <Tangent> { 0.473370 -0.693036 0.543711 }
+          <Binormal> { -0.658037 -0.635244 -0.236801 }
+        }
+        <Normal> { -0.664602 0.472762 0.578600 }
+      }
+      <Vertex> 3333 {
+        0.403207421303 0.290145397186 3.24718236923
+        <UV>  {
+          0.522395 0.745149
+          <Tangent> { 0.619447 0.074242 0.781520 }
+          <Binormal> { -0.007142 -0.718284 0.073895 }
+        }
+        <Normal> { -0.995331 0.000000 -0.096194 }
+      }
+      <Vertex> 3334 {
+        0.435588210821 0.280248254538 3.32724666595
+        <UV>  {
+          0.522036 0.745305
+          <Tangent> { 0.579784 -0.362642 0.729617 }
+          <Binormal> { -0.285691 -0.842473 -0.191713 }
+        }
+        <Normal> { -0.924558 0.247627 0.289590 }
+      }
+      <Vertex> 3335 {
+        0.459292560816 0.277159631252 3.29472947121
+        <UV>  {
+          0.522028 0.745036
+          <Tangent> { 0.510578 -0.372765 0.774827 }
+          <Binormal> { -0.407742 -0.753693 -0.093912 }
+        }
+        <Normal> { -0.877743 0.456893 0.144139 }
+      }
+      <Vertex> 3336 {
+        0.4032073915 0.0598407760262 3.22907686234
+        <UV>  {
+          0.502038 0.777562
+          <Tangent> { -0.191353 0.093922 0.977017 }
+          <Binormal> { 0.009095 0.990925 -0.093477 }
+        }
+        <Normal> { 0.995270 0.000000 0.096835 }
+      }
+      <Vertex> 3337 {
+        0.435588210821 0.0843533650041 3.3028845787
+        <UV>  {
+          0.490026 0.794152
+          <Tangent> { -0.191234 0.231791 0.953783 }
+          <Binormal> { -0.077132 0.950505 -0.246459 }
+        }
+        <Normal> { 0.930692 0.160710 0.328532 }
+      }
+      <Vertex> 3338 {
+        0.4032073915 0.0854838788509 3.31478643417
+        <UV>  {
+          0.485629 0.783634
+          <Tangent> { -0.190416 0.281388 0.940512 }
+          <Binormal> { 0.120333 0.939119 -0.256609 }
+        }
+        <Normal> { 0.918485 -0.009674 0.395306 }
+      }
+      <Vertex> 3339 {
+        0.4032073915 0.0854838788509 3.31478643417
+        <UV>  {
+          0.514867 0.755546
+          <Tangent> { 0.554905 -0.410978 -0.723310 }
+          <Binormal> { -0.169460 -0.883707 0.372109 }
+        }
+        <Normal> { 0.918485 -0.009674 0.395306 }
+      }
+      <Vertex> 3340 {
+        0.435588210821 0.0843533650041 3.3028845787
+        <UV>  {
+          0.512112 0.748955
+          <Tangent> { -0.036719 -0.413435 -0.909793 }
+          <Binormal> { 0.010387 -0.834674 0.378879 }
+        }
+        <Normal> { 0.930692 0.160710 0.328532 }
+      }
+      <Vertex> 3341 {
+        0.459292531013 0.13998247683 3.41546368599
+        <UV>  {
+          0.519848 0.745983
+          <Tangent> { 0.143497 -0.818971 -0.555603 }
+          <Binormal> { -0.320046 -0.460437 0.596035 }
+        }
+        <Normal> { 0.661489 0.378368 0.647481 }
+      }
+      <Vertex> 3342 {
+        0.459292531013 0.13998247683 3.41546368599
+        <UV>  {
+          0.519848 0.745983
+          <Tangent> { 0.143497 -0.818971 -0.555603 }
+          <Binormal> { -0.320046 -0.460437 0.596035 }
+        }
+        <Normal> { 0.661489 0.378368 0.647481 }
+      }
+      <Vertex> 3343 {
+        0.403207421303 0.152986124158 3.43607854843
+        <UV>  {
+          0.520491 0.747630
+          <Tangent> { 0.884425 -0.349595 -0.309152 }
+          <Binormal> { -0.245148 -0.859770 0.270924 }
+        }
+        <Normal> { 0.675985 0.039125 0.735832 }
+      }
+      <Vertex> 3344 {
+        0.4032073915 0.0854838788509 3.31478643417
+        <UV>  {
+          0.514867 0.755546
+          <Tangent> { 0.554905 -0.410978 -0.723310 }
+          <Binormal> { -0.169460 -0.883707 0.372109 }
+        }
+        <Normal> { 0.918485 -0.009674 0.395306 }
+      }
+      <Vertex> 3345 {
+        0.403207421303 0.152986124158 3.43607854843
+        <UV>  {
+          0.520491 0.747630
+          <Tangent> { 0.884425 -0.349595 -0.309152 }
+          <Binormal> { -0.245148 -0.859770 0.270924 }
+        }
+        <Normal> { 0.675985 0.039125 0.735832 }
+      }
+      <Vertex> 3346 {
+        0.459292531013 0.13998247683 3.41546368599
+        <UV>  {
+          0.519848 0.745983
+          <Tangent> { 0.143497 -0.818971 -0.555603 }
+          <Binormal> { -0.320046 -0.460437 0.596035 }
+        }
+        <Normal> { 0.661489 0.378368 0.647481 }
+      }
+      <Vertex> 3347 {
+        0.467969059944 0.176341667771 3.42440366745
+        <UV>  {
+          0.521040 0.745618
+          <Tangent> { 0.342269 -0.925691 0.161085 }
+          <Binormal> { -0.836263 -0.279752 0.169248 }
+        }
+        <Normal> { -0.039033 0.600055 0.798975 }
+      }
+      <Vertex> 3348 {
+        0.467969059944 0.176341667771 3.42440366745
+        <UV>  {
+          0.521040 0.745618
+          <Tangent> { 0.342269 -0.925691 0.161085 }
+          <Binormal> { -0.836263 -0.279752 0.169248 }
+        }
+        <Normal> { -0.039033 0.600055 0.798975 }
+      }
+      <Vertex> 3349 {
+        0.403207421303 0.178602680564 3.44820761681
+        <UV>  {
+          0.521391 0.746491
+          <Tangent> { 0.774369 -0.584633 0.241985 }
+          <Binormal> { -0.587117 -0.786773 -0.022020 }
+        }
+        <Normal> { -0.056825 0.014466 0.998260 }
+      }
+      <Vertex> 3350 {
+        0.403207421303 0.152986124158 3.43607854843
+        <UV>  {
+          0.520491 0.747630
+          <Tangent> { 0.884425 -0.349595 -0.309152 }
+          <Binormal> { -0.245148 -0.859770 0.270924 }
+        }
+        <Normal> { 0.675985 0.039125 0.735832 }
+      }
+      <Vertex> 3351 {
+        0.403207421303 0.178602680564 3.44820761681
+        <UV>  {
+          0.521391 0.746491
+          <Tangent> { 0.774369 -0.584633 0.241985 }
+          <Binormal> { -0.587117 -0.786773 -0.022020 }
+        }
+        <Normal> { -0.056825 0.014466 0.998260 }
+      }
+      <Vertex> 3352 {
+        0.467969059944 0.176341667771 3.42440366745
+        <UV>  {
+          0.521040 0.745618
+          <Tangent> { 0.342269 -0.925691 0.161085 }
+          <Binormal> { -0.836263 -0.279752 0.169248 }
+        }
+        <Normal> { -0.039033 0.600055 0.798975 }
+      }
+      <Vertex> 3353 {
+        0.459292560816 0.238593146205 3.39211392403
+        <UV>  {
+          0.521630 0.745446
+          <Tangent> { 0.473370 -0.693036 0.543711 }
+          <Binormal> { -0.658037 -0.635244 -0.236801 }
+        }
+        <Normal> { -0.664602 0.472762 0.578600 }
+      }
+      <Vertex> 3354 {
+        0.459292560816 0.238593146205 3.39211392403
+        <UV>  {
+          0.521630 0.745446
+          <Tangent> { 0.473370 -0.693036 0.543711 }
+          <Binormal> { -0.658037 -0.635244 -0.236801 }
+        }
+        <Normal> { -0.664602 0.472762 0.578600 }
+      }
+      <Vertex> 3355 {
+        0.403207421303 0.240551263094 3.41272878647
+        <UV>  {
+          0.521840 0.745935
+          <Tangent> { 0.663320 -0.475774 0.577620 }
+          <Binormal> { -0.320689 -0.876539 -0.353718 }
+        }
+        <Normal> { -0.714866 -0.020508 0.698935 }
+      }
+      <Vertex> 3356 {
+        0.403207421303 0.178602680564 3.44820761681
+        <UV>  {
+          0.521391 0.746491
+          <Tangent> { 0.774369 -0.584633 0.241985 }
+          <Binormal> { -0.587117 -0.786773 -0.022020 }
+        }
+        <Normal> { -0.056825 0.014466 0.998260 }
+      }
+      <Vertex> 3357 {
+        0.403207421303 0.240551263094 3.41272878647
+        <UV>  {
+          0.521840 0.745935
+          <Tangent> { 0.663320 -0.475774 0.577620 }
+          <Binormal> { -0.320689 -0.876539 -0.353718 }
+        }
+        <Normal> { -0.714866 -0.020508 0.698935 }
+      }
+      <Vertex> 3358 {
+        0.459292560816 0.238593146205 3.39211392403
+        <UV>  {
+          0.521630 0.745446
+          <Tangent> { 0.473370 -0.693036 0.543711 }
+          <Binormal> { -0.658037 -0.635244 -0.236801 }
+        }
+        <Normal> { -0.664602 0.472762 0.578600 }
+      }
+      <Vertex> 3359 {
+        0.435588210821 0.280248254538 3.32724666595
+        <UV>  {
+          0.522036 0.745305
+          <Tangent> { 0.579784 -0.362642 0.729617 }
+          <Binormal> { -0.285691 -0.842473 -0.191713 }
+        }
+        <Normal> { -0.924558 0.247627 0.289590 }
+      }
+      <Vertex> 3360 {
+        0.435588210821 0.280248254538 3.32724666595
+        <UV>  {
+          0.522036 0.745305
+          <Tangent> { 0.579784 -0.362642 0.729617 }
+          <Binormal> { -0.285691 -0.842473 -0.191713 }
+        }
+        <Normal> { -0.924558 0.247627 0.289590 }
+      }
+      <Vertex> 3361 {
+        0.403207421303 0.281378746033 3.33914852142
+        <UV>  {
+          0.522141 0.745532
+          <Tangent> { 0.640206 -0.218763 0.736396 }
+          <Binormal> { -0.041893 -0.907137 -0.233065 }
+        }
+        <Normal> { -0.941679 -0.042268 0.333781 }
+      }
+      <Vertex> 3362 {
+        0.403207421303 0.240551263094 3.41272878647
+        <UV>  {
+          0.521840 0.745935
+          <Tangent> { 0.663320 -0.475774 0.577620 }
+          <Binormal> { -0.320689 -0.876539 -0.353718 }
+        }
+        <Normal> { -0.714866 -0.020508 0.698935 }
+      }
+      <Vertex> 3363 {
+        0.403207421303 0.290145397186 3.24718236923
+        <UV>  {
+          0.522395 0.745149
+          <Tangent> { 0.619447 0.074242 0.781520 }
+          <Binormal> { -0.007142 -0.718284 0.073895 }
+        }
+        <Normal> { -0.995331 0.000000 -0.096194 }
+      }
+      <Vertex> 3364 {
+        0.403207421303 0.281378746033 3.33914852142
+        <UV>  {
+          0.522141 0.745532
+          <Tangent> { 0.640206 -0.218763 0.736396 }
+          <Binormal> { -0.041893 -0.907137 -0.233065 }
+        }
+        <Normal> { -0.941679 -0.042268 0.333781 }
+      }
+      <Vertex> 3365 {
+        0.435588210821 0.280248254538 3.32724666595
+        <UV>  {
+          0.522036 0.745305
+          <Tangent> { 0.579784 -0.362642 0.729617 }
+          <Binormal> { -0.285691 -0.842473 -0.191713 }
+        }
+        <Normal> { -0.924558 0.247627 0.289590 }
+      }
+      <Vertex> 3366 {
+        0.100032962859 0.0598407909274 3.22907686234
+        <UV>  {
+          0.501925 0.777049
+          <Tangent> { -0.190881 0.092821 0.977215 }
+          <Binormal> { 0.008929 0.991014 -0.092387 }
+        }
+        <Normal> { 0.995331 0.000000 0.096194 }
+      }
+      <Vertex> 3367 {
+        0.100032962859 0.0854838937521 3.31478643417
+        <UV>  {
+          0.485516 0.783121
+          <Tangent> { -0.190416 0.281388 0.940512 }
+          <Binormal> { 0.120333 0.939119 -0.256609 }
+        }
+        <Normal> { 0.918485 -0.009674 0.395306 }
+      }
+      <Vertex> 3368 {
+        0.0676521137357 0.0843533799052 3.3028845787
+        <UV>  {
+          0.485516 0.770976
+          <Tangent> { -0.190417 0.281388 0.940512 }
+          <Binormal> { 0.243254 0.933790 -0.230127 }
+        }
+        <Normal> { 0.919004 -0.149510 0.364757 }
+      }
+      <Vertex> 3369 {
+        0.0676521137357 0.0843533799052 3.3028845787
+        <UV>  {
+          0.535006 0.789195
+          <Tangent> { 0.894717 -0.220287 -0.388528 }
+          <Binormal> { -0.138440 -0.683414 0.068675 }
+        }
+        <Normal> { 0.919004 -0.149510 0.364757 }
+      }
+      <Vertex> 3370 {
+        0.100032962859 0.0854838937521 3.31478643417
+        <UV>  {
+          0.532530 0.783271
+          <Tangent> { 0.159576 -0.479306 -0.863019 }
+          <Binormal> { -0.197822 -0.855751 0.438691 }
+        }
+        <Normal> { 0.918485 -0.009674 0.395306 }
+      }
+      <Vertex> 3371 {
+        0.100032970309 0.152986124158 3.43607854843
+        <UV>  {
+          0.539482 0.780600
+          <Tangent> { 0.470248 -0.719764 -0.510692 }
+          <Binormal> { -0.509645 -0.691243 0.504948 }
+        }
+        <Normal> { 0.675985 0.039125 0.735832 }
+      }
+      <Vertex> 3372 {
+        0.100032970309 0.152986124158 3.43607854843
+        <UV>  {
+          0.539482 0.780600
+          <Tangent> { 0.470248 -0.719764 -0.510692 }
+          <Binormal> { -0.509645 -0.691243 0.504948 }
+        }
+        <Normal> { 0.675985 0.039125 0.735832 }
+      }
+      <Vertex> 3373 {
+        0.0439478084445 0.139982491732 3.41546368599
+        <UV>  {
+          0.540060 0.782081
+          <Tangent> { 0.914155 -0.200538 0.352286 }
+          <Binormal> { -0.024833 -0.362258 -0.141774 }
+        }
+        <Normal> { 0.685751 -0.305521 0.660543 }
+      }
+      <Vertex> 3374 {
+        0.0676521137357 0.0843533799052 3.3028845787
+        <UV>  {
+          0.535006 0.789195
+          <Tangent> { 0.894717 -0.220287 -0.388528 }
+          <Binormal> { -0.138440 -0.683414 0.068675 }
+        }
+        <Normal> { 0.919004 -0.149510 0.364757 }
+      }
+      <Vertex> 3375 {
+        0.0439478084445 0.139982491732 3.41546368599
+        <UV>  {
+          0.540060 0.782081
+          <Tangent> { 0.914155 -0.200538 0.352286 }
+          <Binormal> { -0.024833 -0.362258 -0.141774 }
+        }
+        <Normal> { 0.685751 -0.305521 0.660543 }
+      }
+      <Vertex> 3376 {
+        0.100032970309 0.152986124158 3.43607854843
+        <UV>  {
+          0.539482 0.780600
+          <Tangent> { 0.470248 -0.719764 -0.510692 }
+          <Binormal> { -0.509645 -0.691243 0.504948 }
+        }
+        <Normal> { 0.675985 0.039125 0.735832 }
+      }
+      <Vertex> 3377 {
+        0.100032970309 0.178602695465 3.44820761681
+        <UV>  {
+          0.540553 0.780272
+          <Tangent> { 0.307941 -0.864358 0.397565 }
+          <Binormal> { -0.868605 -0.329998 -0.044663 }
+        }
+        <Normal> { -0.056825 0.014466 0.998260 }
+      }
+      <Vertex> 3378 {
+        0.100032970309 0.178602695465 3.44820761681
+        <UV>  {
+          0.540553 0.780272
+          <Tangent> { 0.307941 -0.864358 0.397565 }
+          <Binormal> { -0.868605 -0.329998 -0.044663 }
+        }
+        <Normal> { -0.056825 0.014466 0.998260 }
+      }
+      <Vertex> 3379 {
+        0.0352712757885 0.176341697574 3.42440366745
+        <UV>  {
+          0.540869 0.781057
+          <Tangent> { 0.553248 -0.501724 0.664973 }
+          <Binormal> { -0.003078 -0.498368 -0.373459 }
+        }
+        <Normal> { -0.085940 -0.597095 0.797510 }
+      }
+      <Vertex> 3380 {
+        0.0439478084445 0.139982491732 3.41546368599
+        <UV>  {
+          0.540060 0.782081
+          <Tangent> { 0.914155 -0.200538 0.352286 }
+          <Binormal> { -0.024833 -0.362258 -0.141774 }
+        }
+        <Normal> { 0.685751 -0.305521 0.660543 }
+      }
+      <Vertex> 3381 {
+        0.0352712757885 0.176341697574 3.42440366745
+        <UV>  {
+          0.540869 0.781057
+          <Tangent> { 0.553248 -0.501724 0.664973 }
+          <Binormal> { -0.003078 -0.498368 -0.373459 }
+        }
+        <Normal> { -0.085940 -0.597095 0.797510 }
+      }
+      <Vertex> 3382 {
+        0.100032970309 0.178602695465 3.44820761681
+        <UV>  {
+          0.540553 0.780272
+          <Tangent> { 0.307941 -0.864358 0.397565 }
+          <Binormal> { -0.868605 -0.329998 -0.044663 }
+        }
+        <Normal> { -0.056825 0.014466 0.998260 }
+      }
+      <Vertex> 3383 {
+        0.100032970309 0.240551277995 3.41272878647
+        <UV>  {
+          0.541084 0.780117
+          <Tangent> { 0.240158 -0.615787 0.750421 }
+          <Binormal> { -0.415005 -0.704304 -0.445130 }
+        }
+        <Normal> { -0.714866 -0.020508 0.698935 }
+      }
+      <Vertex> 3384 {
+        0.100032970309 0.240551277995 3.41272878647
+        <UV>  {
+          0.541084 0.780117
+          <Tangent> { 0.240158 -0.615787 0.750421 }
+          <Binormal> { -0.415005 -0.704304 -0.445130 }
+        }
+        <Normal> { -0.714866 -0.020508 0.698935 }
+      }
+      <Vertex> 3385 {
+        0.0439478121698 0.238593161106 3.39211392403
+        <UV>  {
+          0.541273 0.780557
+          <Tangent> { 0.351099 -0.386539 0.852829 }
+          <Binormal> { 0.208469 -0.762506 -0.431425 }
+        }
+        <Normal> { -0.664418 -0.497299 0.557878 }
+      }
+      <Vertex> 3386 {
+        0.0352712757885 0.176341697574 3.42440366745
+        <UV>  {
+          0.540869 0.781057
+          <Tangent> { 0.553248 -0.501724 0.664973 }
+          <Binormal> { -0.003078 -0.498368 -0.373459 }
+        }
+        <Normal> { -0.085940 -0.597095 0.797510 }
+      }
+      <Vertex> 3387 {
+        0.0439478121698 0.238593161106 3.39211392403
+        <UV>  {
+          0.541273 0.780557
+          <Tangent> { 0.351099 -0.386539 0.852829 }
+          <Binormal> { 0.208469 -0.762506 -0.431425 }
+        }
+        <Normal> { -0.664418 -0.497299 0.557878 }
+      }
+      <Vertex> 3388 {
+        0.100032970309 0.240551277995 3.41272878647
+        <UV>  {
+          0.541084 0.780117
+          <Tangent> { 0.240158 -0.615787 0.750421 }
+          <Binormal> { -0.415005 -0.704304 -0.445130 }
+        }
+        <Normal> { -0.714866 -0.020508 0.698935 }
+      }
+      <Vertex> 3389 {
+        0.100032970309 0.281378775835 3.33914852142
+        <UV>  {
+          0.541449 0.779990
+          <Tangent> { 0.235234 -0.296536 0.925598 }
+          <Binormal> { -0.059855 -0.950133 -0.289185 }
+        }
+        <Normal> { -0.941679 -0.042268 0.333781 }
+      }
+      <Vertex> 3390 {
+        0.100032970309 0.281378775835 3.33914852142
+        <UV>  {
+          0.541449 0.779990
+          <Tangent> { 0.235234 -0.296536 0.925598 }
+          <Binormal> { -0.059855 -0.950133 -0.289185 }
+        }
+        <Normal> { -0.941679 -0.042268 0.333781 }
+      }
+      <Vertex> 3391 {
+        0.0676521286368 0.280248254538 3.32724666595
+        <UV>  {
+          0.541543 0.780195
+          <Tangent> { 0.267096 -0.162790 0.949820 }
+          <Binormal> { 0.258370 -0.936067 -0.233088 }
+        }
+        <Normal> { -0.913327 -0.316019 0.256722 }
+      }
+      <Vertex> 3392 {
+        0.0439478121698 0.238593161106 3.39211392403
+        <UV>  {
+          0.541273 0.780557
+          <Tangent> { 0.351099 -0.386539 0.852829 }
+          <Binormal> { 0.208469 -0.762506 -0.431425 }
+        }
+        <Normal> { -0.664418 -0.497299 0.557878 }
+      }
+      <Vertex> 3393 {
+        0.100032970309 0.290145397186 3.24718236923
+        <UV>  {
+          0.541772 0.779851
+          <Tangent> { 0.221647 0.092207 0.970758 }
+          <Binormal> { -0.008870 -0.944904 0.091776 }
+        }
+        <Normal> { -0.995331 0.000000 -0.096194 }
+      }
+      <Vertex> 3394 {
+        0.0676521286368 0.280248254538 3.32724666595
+        <UV>  {
+          0.541543 0.780195
+          <Tangent> { 0.267096 -0.162790 0.949820 }
+          <Binormal> { 0.258370 -0.936067 -0.233088 }
+        }
+        <Normal> { -0.913327 -0.316019 0.256722 }
+      }
+      <Vertex> 3395 {
+        0.100032970309 0.281378775835 3.33914852142
+        <UV>  {
+          0.541449 0.779990
+          <Tangent> { 0.235234 -0.296536 0.925598 }
+          <Binormal> { -0.059855 -0.950133 -0.289185 }
+        }
+        <Normal> { -0.941679 -0.042268 0.333781 }
+      }
+      <Vertex> 3396 {
+        0.100032962859 0.0598407909274 3.22907686234
+        <UV>  {
+          0.501925 0.777049
+          <Tangent> { -0.190881 0.092821 0.977215 }
+          <Binormal> { 0.008929 0.991014 -0.092387 }
+        }
+        <Normal> { 0.995331 0.000000 0.096194 }
+      }
+      <Vertex> 3397 {
+        0.0676521137357 0.0843533799052 3.3028845787
+        <UV>  {
+          0.485516 0.770976
+          <Tangent> { -0.190417 0.281388 0.940512 }
+          <Binormal> { 0.243254 0.933790 -0.230127 }
+        }
+        <Normal> { 0.919004 -0.149510 0.364757 }
+      }
+      <Vertex> 3398 {
+        0.0439478084445 0.0812647640705 3.27036762238
+        <UV>  {
+          0.489913 0.760459
+          <Tangent> { -0.191234 0.231791 0.953783 }
+          <Binormal> { 0.322165 0.932686 -0.162070 }
+        }
+        <Normal> { 0.926267 -0.275216 0.257424 }
+      }
+      <Vertex> 3399 {
+        0.0439478084445 0.0812647640705 3.27036762238
+        <UV>  {
+          0.539295 0.792615
+          <Tangent> { 0.685289 0.162554 0.709898 }
+          <Binormal> { 0.237220 0.481145 -0.339171 }
+        }
+        <Normal> { 0.926267 -0.275216 0.257424 }
+      }
+      <Vertex> 3400 {
+        0.0676521137357 0.0843533799052 3.3028845787
+        <UV>  {
+          0.535006 0.789195
+          <Tangent> { 0.894717 -0.220287 -0.388528 }
+          <Binormal> { -0.138440 -0.683414 0.068675 }
+        }
+        <Normal> { 0.919004 -0.149510 0.364757 }
+      }
+      <Vertex> 3401 {
+        0.0439478084445 0.139982491732 3.41546368599
+        <UV>  {
+          0.540060 0.782081
+          <Tangent> { 0.914155 -0.200538 0.352286 }
+          <Binormal> { -0.024833 -0.362258 -0.141774 }
+        }
+        <Normal> { 0.685751 -0.305521 0.660543 }
+      }
+      <Vertex> 3402 {
+        0.0439478084445 0.139982491732 3.41546368599
+        <UV>  {
+          0.540060 0.782081
+          <Tangent> { 0.914155 -0.200538 0.352286 }
+          <Binormal> { -0.024833 -0.362258 -0.141774 }
+        }
+        <Normal> { 0.685751 -0.305521 0.660543 }
+      }
+      <Vertex> 3403 {
+        0.00289046438411 0.120560668409 3.35914254189
+        <UV>  {
+          0.541097 0.782964
+          <Tangent> { 0.493277 -0.051007 0.868376 }
+          <Binormal> { 0.569829 0.364024 -0.302307 }
+        }
+        <Normal> { 0.632069 -0.678213 0.374737 }
+      }
+      <Vertex> 3404 {
+        0.0439478084445 0.0812647640705 3.27036762238
+        <UV>  {
+          0.539295 0.792615
+          <Tangent> { 0.685289 0.162554 0.709898 }
+          <Binormal> { 0.237220 0.481145 -0.339171 }
+        }
+        <Normal> { 0.926267 -0.275216 0.257424 }
+      }
+      <Vertex> 3405 {
+        0.00289046438411 0.120560668409 3.35914254189
+        <UV>  {
+          0.541097 0.782964
+          <Tangent> { 0.493277 -0.051007 0.868376 }
+          <Binormal> { 0.569829 0.364024 -0.302307 }
+        }
+        <Normal> { 0.632069 -0.678213 0.374737 }
+      }
+      <Vertex> 3406 {
+        0.0439478084445 0.139982491732 3.41546368599
+        <UV>  {
+          0.540060 0.782081
+          <Tangent> { 0.914155 -0.200538 0.352286 }
+          <Binormal> { -0.024833 -0.362258 -0.141774 }
+        }
+        <Normal> { 0.685751 -0.305521 0.660543 }
+      }
+      <Vertex> 3407 {
+        0.0352712757885 0.176341697574 3.42440366745
+        <UV>  {
+          0.540869 0.781057
+          <Tangent> { 0.553248 -0.501724 0.664973 }
+          <Binormal> { -0.003078 -0.498368 -0.373459 }
+        }
+        <Normal> { -0.085940 -0.597095 0.797510 }
+      }
+      <Vertex> 3408 {
+        0.0352712757885 0.176341697574 3.42440366745
+        <UV>  {
+          0.540869 0.781057
+          <Tangent> { 0.553248 -0.501724 0.664973 }
+          <Binormal> { -0.003078 -0.498368 -0.373459 }
+        }
+        <Normal> { -0.085940 -0.597095 0.797510 }
+      }
+      <Vertex> 3409 {
+        -0.0121375992894 0.170164480805 3.35936999321
+        <UV>  {
+          0.541427 0.781518
+          <Tangent> { 0.366509 -0.125505 0.921911 }
+          <Binormal> { 0.799250 -0.167492 -0.340547 }
+        }
+        <Normal> { -0.026368 -0.920133 0.390667 }
+      }
+      <Vertex> 3410 {
+        0.00289046438411 0.120560668409 3.35914254189
+        <UV>  {
+          0.541097 0.782964
+          <Tangent> { 0.493277 -0.051007 0.868376 }
+          <Binormal> { 0.569829 0.364024 -0.302307 }
+        }
+        <Normal> { 0.632069 -0.678213 0.374737 }
+      }
+      <Vertex> 3411 {
+        -0.0121375992894 0.170164480805 3.35936999321
+        <UV>  {
+          0.541427 0.781518
+          <Tangent> { 0.366509 -0.125505 0.921911 }
+          <Binormal> { 0.799250 -0.167492 -0.340547 }
+        }
+        <Normal> { -0.026368 -0.920133 0.390667 }
+      }
+      <Vertex> 3412 {
+        0.0352712757885 0.176341697574 3.42440366745
+        <UV>  {
+          0.540869 0.781057
+          <Tangent> { 0.553248 -0.501724 0.664973 }
+          <Binormal> { -0.003078 -0.498368 -0.373459 }
+        }
+        <Normal> { -0.085940 -0.597095 0.797510 }
+      }
+      <Vertex> 3413 {
+        0.0439478121698 0.238593161106 3.39211392403
+        <UV>  {
+          0.541273 0.780557
+          <Tangent> { 0.351099 -0.386539 0.852829 }
+          <Binormal> { 0.208469 -0.762506 -0.431425 }
+        }
+        <Normal> { -0.664418 -0.497299 0.557878 }
+      }
+      <Vertex> 3414 {
+        0.0439478121698 0.238593161106 3.39211392403
+        <UV>  {
+          0.541273 0.780557
+          <Tangent> { 0.351099 -0.386539 0.852829 }
+          <Binormal> { 0.208469 -0.762506 -0.431425 }
+        }
+        <Normal> { -0.664418 -0.497299 0.557878 }
+      }
+      <Vertex> 3415 {
+        0.00289046927355 0.233243554831 3.33579301834
+        <UV>  {
+          0.541595 0.780807
+          <Tangent> { 0.276635 -0.062114 0.958966 }
+          <Binormal> { 0.728109 -0.620524 -0.250231 }
+        }
+        <Normal> { -0.569445 -0.776696 0.269112 }
+      }
+      <Vertex> 3416 {
+        -0.0121375992894 0.170164480805 3.35936999321
+        <UV>  {
+          0.541427 0.781518
+          <Tangent> { 0.366509 -0.125505 0.921911 }
+          <Binormal> { 0.799250 -0.167492 -0.340547 }
+        }
+        <Normal> { -0.026368 -0.920133 0.390667 }
+      }
+      <Vertex> 3417 {
+        0.00289046927355 0.233243554831 3.33579301834
+        <UV>  {
+          0.541595 0.780807
+          <Tangent> { 0.276635 -0.062114 0.958966 }
+          <Binormal> { 0.728109 -0.620524 -0.250231 }
+        }
+        <Normal> { -0.569445 -0.776696 0.269112 }
+      }
+      <Vertex> 3418 {
+        0.0439478121698 0.238593161106 3.39211392403
+        <UV>  {
+          0.541273 0.780557
+          <Tangent> { 0.351099 -0.386539 0.852829 }
+          <Binormal> { 0.208469 -0.762506 -0.431425 }
+        }
+        <Normal> { -0.664418 -0.497299 0.557878 }
+      }
+      <Vertex> 3419 {
+        0.0676521286368 0.280248254538 3.32724666595
+        <UV>  {
+          0.541543 0.780195
+          <Tangent> { 0.267096 -0.162790 0.949820 }
+          <Binormal> { 0.258370 -0.936067 -0.233088 }
+        }
+        <Normal> { -0.913327 -0.316019 0.256722 }
+      }
+      <Vertex> 3420 {
+        0.0676521286368 0.280248254538 3.32724666595
+        <UV>  {
+          0.541543 0.780195
+          <Tangent> { 0.267096 -0.162790 0.949820 }
+          <Binormal> { 0.258370 -0.936067 -0.233088 }
+        }
+        <Normal> { -0.913327 -0.316019 0.256722 }
+      }
+      <Vertex> 3421 {
+        0.0439478158951 0.277159661055 3.29472947121
+        <UV>  {
+          0.541698 0.780307
+          <Tangent> { 0.237148 0.030781 0.970986 }
+          <Binormal> { 0.481226 -0.862300 -0.090196 }
+        }
+        <Normal> { -0.865139 -0.492630 0.093875 }
+      }
+      <Vertex> 3422 {
+        0.00289046927355 0.233243554831 3.33579301834
+        <UV>  {
+          0.541595 0.780807
+          <Tangent> { 0.276635 -0.062114 0.958966 }
+          <Binormal> { 0.728109 -0.620524 -0.250231 }
+        }
+        <Normal> { -0.569445 -0.776696 0.269112 }
+      }
+      <Vertex> 3423 {
+        0.100032970309 0.290145397186 3.24718236923
+        <UV>  {
+          0.541772 0.779851
+          <Tangent> { 0.221647 0.092207 0.970758 }
+          <Binormal> { -0.008870 -0.944904 0.091776 }
+        }
+        <Normal> { -0.995331 0.000000 -0.096194 }
+      }
+      <Vertex> 3424 {
+        0.0439478158951 0.277159661055 3.29472947121
+        <UV>  {
+          0.541698 0.780307
+          <Tangent> { 0.237148 0.030781 0.970986 }
+          <Binormal> { 0.481226 -0.862300 -0.090196 }
+        }
+        <Normal> { -0.865139 -0.492630 0.093875 }
+      }
+      <Vertex> 3425 {
+        0.0676521286368 0.280248254538 3.32724666595
+        <UV>  {
+          0.541543 0.780195
+          <Tangent> { 0.267096 -0.162790 0.949820 }
+          <Binormal> { 0.258370 -0.936067 -0.233088 }
+        }
+        <Normal> { -0.913327 -0.316019 0.256722 }
+      }
+      <Vertex> 3426 {
+        0.100032962859 0.0598407909274 3.22907686234
+        <UV>  {
+          0.501925 0.777049
+          <Tangent> { -0.190881 0.092821 0.977215 }
+          <Binormal> { 0.008929 0.991014 -0.092387 }
+        }
+        <Normal> { 0.995331 0.000000 0.096194 }
+      }
+      <Vertex> 3427 {
+        0.0439478084445 0.0812647640705 3.27036762238
+        <UV>  {
+          0.489913 0.760459
+          <Tangent> { -0.191234 0.231791 0.953783 }
+          <Binormal> { 0.322165 0.932686 -0.162070 }
+        }
+        <Normal> { 0.926267 -0.275216 0.257424 }
+      }
+      <Vertex> 3428 {
+        0.0352712720633 0.0770456716418 3.22594857216
+        <UV>  {
+          0.497528 0.754386
+          <Tangent> { -0.191453 0.143960 0.970887 }
+          <Binormal> { 0.494780 0.852207 -0.028795 }
+        }
+        <Normal> { 0.863613 -0.498978 0.071749 }
+      }
+      <Vertex> 3429 {
+        0.0352712720633 0.0770456716418 3.22594857216
+        <UV>  {
+          0.544248 0.792615
+          <Tangent> { 0.107836 0.007136 0.994143 }
+          <Binormal> { 0.496567 0.850818 -0.059971 }
+        }
+        <Normal> { 0.863613 -0.498978 0.071749 }
+      }
+      <Vertex> 3430 {
+        0.0439478084445 0.0812647640705 3.27036762238
+        <UV>  {
+          0.539295 0.792615
+          <Tangent> { 0.685289 0.162554 0.709898 }
+          <Binormal> { 0.237220 0.481145 -0.339171 }
+        }
+        <Normal> { 0.926267 -0.275216 0.257424 }
+      }
+      <Vertex> 3431 {
+        0.00289046438411 0.120560668409 3.35914254189
+        <UV>  {
+          0.541097 0.782964
+          <Tangent> { 0.493277 -0.051007 0.868376 }
+          <Binormal> { 0.569829 0.364024 -0.302307 }
+        }
+        <Normal> { 0.632069 -0.678213 0.374737 }
+      }
+      <Vertex> 3432 {
+        0.00289046438411 0.120560668409 3.35914254189
+        <UV>  {
+          0.541097 0.782964
+          <Tangent> { 0.493277 -0.051007 0.868376 }
+          <Binormal> { 0.569829 0.364024 -0.302307 }
+        }
+        <Normal> { 0.632069 -0.678213 0.374737 }
+      }
+      <Vertex> 3433 {
+        -0.0121376011521 0.125839099288 3.28220677376
+        <UV>  {
+          0.542314 0.783013
+          <Tangent> { 0.039022 0.094300 0.994779 }
+          <Binormal> { 0.840647 0.534062 -0.083602 }
+        }
+        <Normal> { 0.537889 -0.842586 0.026093 }
+      }
+      <Vertex> 3434 {
+        0.0352712720633 0.0770456716418 3.22594857216
+        <UV>  {
+          0.544248 0.792615
+          <Tangent> { 0.107836 0.007136 0.994143 }
+          <Binormal> { 0.496567 0.850818 -0.059971 }
+        }
+        <Normal> { 0.863613 -0.498978 0.071749 }
+      }
+      <Vertex> 3435 {
+        -0.0121376011521 0.125839099288 3.28220677376
+        <UV>  {
+          0.542314 0.783013
+          <Tangent> { 0.039022 0.094300 0.994779 }
+          <Binormal> { 0.840647 0.534062 -0.083602 }
+        }
+        <Normal> { 0.537889 -0.842586 0.026093 }
+      }
+      <Vertex> 3436 {
+        0.00289046438411 0.120560668409 3.35914254189
+        <UV>  {
+          0.541097 0.782964
+          <Tangent> { 0.493277 -0.051007 0.868376 }
+          <Binormal> { 0.569829 0.364024 -0.302307 }
+        }
+        <Normal> { 0.632069 -0.678213 0.374737 }
+      }
+      <Vertex> 3437 {
+        -0.0121375992894 0.170164480805 3.35936999321
+        <UV>  {
+          0.541427 0.781518
+          <Tangent> { 0.366509 -0.125505 0.921911 }
+          <Binormal> { 0.799250 -0.167492 -0.340547 }
+        }
+        <Normal> { -0.026368 -0.920133 0.390667 }
+      }
+      <Vertex> 3438 {
+        -0.0121375992894 0.170164480805 3.35936999321
+        <UV>  {
+          0.541427 0.781518
+          <Tangent> { 0.366509 -0.125505 0.921911 }
+          <Binormal> { 0.799250 -0.167492 -0.340547 }
+        }
+        <Normal> { -0.026368 -0.920133 0.390667 }
+      }
+      <Vertex> 3439 {
+        -0.0294904001057 0.161726251245 3.27053189278
+        <UV>  {
+          0.542077 0.781533
+          <Tangent> { 0.045601 0.212399 0.976119 }
+          <Binormal> { 0.974400 0.089568 -0.065011 }
+        }
+        <Normal> { 0.092318 -0.995636 0.011963 }
+      }
+      <Vertex> 3440 {
+        -0.0121376011521 0.125839099288 3.28220677376
+        <UV>  {
+          0.542314 0.783013
+          <Tangent> { 0.039022 0.094300 0.994779 }
+          <Binormal> { 0.840647 0.534062 -0.083602 }
+        }
+        <Normal> { 0.537889 -0.842586 0.026093 }
+      }
+      <Vertex> 3441 {
+        -0.0294904001057 0.161726251245 3.27053189278
+        <UV>  {
+          0.542077 0.781533
+          <Tangent> { 0.045601 0.212399 0.976119 }
+          <Binormal> { 0.974400 0.089568 -0.065011 }
+        }
+        <Normal> { 0.092318 -0.995636 0.011963 }
+      }
+      <Vertex> 3442 {
+        -0.0121375992894 0.170164480805 3.35936999321
+        <UV>  {
+          0.541427 0.781518
+          <Tangent> { 0.366509 -0.125505 0.921911 }
+          <Binormal> { 0.799250 -0.167492 -0.340547 }
+        }
+        <Normal> { -0.026368 -0.920133 0.390667 }
+      }
+      <Vertex> 3443 {
+        0.00289046927355 0.233243554831 3.33579301834
+        <UV>  {
+          0.541595 0.780807
+          <Tangent> { 0.276635 -0.062114 0.958966 }
+          <Binormal> { 0.728109 -0.620524 -0.250231 }
+        }
+        <Normal> { -0.569445 -0.776696 0.269112 }
+      }
+      <Vertex> 3444 {
+        0.00289046927355 0.233243554831 3.33579301834
+        <UV>  {
+          0.541595 0.780807
+          <Tangent> { 0.276635 -0.062114 0.958966 }
+          <Binormal> { 0.728109 -0.620524 -0.250231 }
+        }
+        <Normal> { -0.569445 -0.776696 0.269112 }
+      }
+      <Vertex> 3445 {
+        -0.0121375964954 0.225935831666 3.2588570118
+        <UV>  {
+          0.541965 0.780801
+          <Tangent> { 0.113363 0.257849 0.959512 }
+          <Binormal> { 0.817155 -0.468916 0.029468 }
+        }
+        <Normal> { -0.495376 -0.866817 -0.056490 }
+      }
+      <Vertex> 3446 {
+        -0.0294904001057 0.161726251245 3.27053189278
+        <UV>  {
+          0.542077 0.781533
+          <Tangent> { 0.045601 0.212399 0.976119 }
+          <Binormal> { 0.974400 0.089568 -0.065011 }
+        }
+        <Normal> { 0.092318 -0.995636 0.011963 }
+      }
+      <Vertex> 3447 {
+        -0.0121375964954 0.225935831666 3.2588570118
+        <UV>  {
+          0.541965 0.780801
+          <Tangent> { 0.113363 0.257849 0.959512 }
+          <Binormal> { 0.817155 -0.468916 0.029468 }
+        }
+        <Normal> { -0.495376 -0.866817 -0.056490 }
+      }
+      <Vertex> 3448 {
+        0.00289046927355 0.233243554831 3.33579301834
+        <UV>  {
+          0.541595 0.780807
+          <Tangent> { 0.276635 -0.062114 0.958966 }
+          <Binormal> { 0.728109 -0.620524 -0.250231 }
+        }
+        <Normal> { -0.569445 -0.776696 0.269112 }
+      }
+      <Vertex> 3449 {
+        0.0439478158951 0.277159661055 3.29472947121
+        <UV>  {
+          0.541698 0.780307
+          <Tangent> { 0.237148 0.030781 0.970986 }
+          <Binormal> { 0.481226 -0.862300 -0.090196 }
+        }
+        <Normal> { -0.865139 -0.492630 0.093875 }
+      }
+      <Vertex> 3450 {
+        0.0439478158951 0.277159661055 3.29472947121
+        <UV>  {
+          0.541698 0.780307
+          <Tangent> { 0.237148 0.030781 0.970986 }
+          <Binormal> { 0.481226 -0.862300 -0.090196 }
+        }
+        <Normal> { -0.865139 -0.492630 0.093875 }
+      }
+      <Vertex> 3451 {
+        0.0352712795138 0.272940546274 3.25031065941
+        <UV>  {
+          0.541873 0.780297
+          <Tangent> { 0.178944 0.233057 0.955857 }
+          <Binormal> { 0.497959 -0.773908 0.095472 }
+        }
+        <Normal> { -0.829890 -0.547319 -0.108127 }
+      }
+      <Vertex> 3452 {
+        -0.0121375964954 0.225935831666 3.2588570118
+        <UV>  {
+          0.541965 0.780801
+          <Tangent> { 0.113363 0.257849 0.959512 }
+          <Binormal> { 0.817155 -0.468916 0.029468 }
+        }
+        <Normal> { -0.495376 -0.866817 -0.056490 }
+      }
+      <Vertex> 3453 {
+        0.100032970309 0.290145397186 3.24718236923
+        <UV>  {
+          0.541772 0.779851
+          <Tangent> { 0.221647 0.092207 0.970758 }
+          <Binormal> { -0.008870 -0.944904 0.091776 }
+        }
+        <Normal> { -0.995331 0.000000 -0.096194 }
+      }
+      <Vertex> 3454 {
+        0.0352712795138 0.272940546274 3.25031065941
+        <UV>  {
+          0.541873 0.780297
+          <Tangent> { 0.178944 0.233057 0.955857 }
+          <Binormal> { 0.497959 -0.773908 0.095472 }
+        }
+        <Normal> { -0.829890 -0.547319 -0.108127 }
+      }
+      <Vertex> 3455 {
+        0.0439478158951 0.277159661055 3.29472947121
+        <UV>  {
+          0.541698 0.780307
+          <Tangent> { 0.237148 0.030781 0.970986 }
+          <Binormal> { 0.481226 -0.862300 -0.090196 }
+        }
+        <Normal> { -0.865139 -0.492630 0.093875 }
+      }
+      <Vertex> 3456 {
+        0.100032962859 0.0598407909274 3.22907686234
+        <UV>  {
+          0.501925 0.777049
+          <Tangent> { -0.190881 0.092821 0.977215 }
+          <Binormal> { 0.008929 0.991014 -0.092387 }
+        }
+        <Normal> { 0.995331 0.000000 0.096194 }
+      }
+      <Vertex> 3457 {
+        0.0352712720633 0.0770456716418 3.22594857216
+        <UV>  {
+          0.497528 0.754386
+          <Tangent> { -0.191453 0.143960 0.970887 }
+          <Binormal> { 0.494780 0.852207 -0.028795 }
+        }
+        <Normal> { 0.863613 -0.498978 0.071749 }
+      }
+      <Vertex> 3458 {
+        0.0439478084445 0.0728265419602 3.18152976036
+        <UV>  {
+          0.506322 0.754386
+          <Tangent> { -0.189814 0.041875 0.980927 }
+          <Binormal> { 0.575584 0.747290 0.079477 }
+        }
+        <Normal> { 0.790887 -0.593188 -0.150212 }
+      }
+      <Vertex> 3459 {
+        0.0439478084445 0.0728265419602 3.18152976036
+        <UV>  {
+          0.548538 0.789195
+          <Tangent> { -0.339083 0.238806 0.909942 }
+          <Binormal> { 0.503895 0.668727 0.012271 }
+        }
+        <Normal> { 0.790887 -0.593188 -0.150212 }
+      }
+      <Vertex> 3460 {
+        0.0352712720633 0.0770456716418 3.22594857216
+        <UV>  {
+          0.544248 0.792615
+          <Tangent> { 0.107836 0.007136 0.994143 }
+          <Binormal> { 0.496567 0.850818 -0.059971 }
+        }
+        <Normal> { 0.863613 -0.498978 0.071749 }
+      }
+      <Vertex> 3461 {
+        -0.0121376011521 0.125839099288 3.28220677376
+        <UV>  {
+          0.542314 0.783013
+          <Tangent> { 0.039022 0.094300 0.994779 }
+          <Binormal> { 0.840647 0.534062 -0.083602 }
+        }
+        <Normal> { 0.537889 -0.842586 0.026093 }
+      }
+      <Vertex> 3462 {
+        -0.0121376011521 0.125839099288 3.28220677376
+        <UV>  {
+          0.542314 0.783013
+          <Tangent> { 0.039022 0.094300 0.994779 }
+          <Binormal> { 0.840647 0.534062 -0.083602 }
+        }
+        <Normal> { 0.537889 -0.842586 0.026093 }
+      }
+      <Vertex> 3463 {
+        0.00289046438411 0.118531391025 3.20527076721
+        <UV>  {
+          0.543387 0.782215
+          <Tangent> { -0.405897 0.413939 0.814802 }
+          <Binormal> { 0.576594 0.400776 0.083629 }
+        }
+        <Normal> { 0.578906 -0.796411 -0.174718 }
+      }
+      <Vertex> 3464 {
+        0.0439478084445 0.0728265419602 3.18152976036
+        <UV>  {
+          0.548538 0.789195
+          <Tangent> { -0.339083 0.238806 0.909942 }
+          <Binormal> { 0.503895 0.668727 0.012271 }
+        }
+        <Normal> { 0.790887 -0.593188 -0.150212 }
+      }
+      <Vertex> 3465 {
+        0.00289046438411 0.118531391025 3.20527076721
+        <UV>  {
+          0.543387 0.782215
+          <Tangent> { -0.405897 0.413939 0.814802 }
+          <Binormal> { 0.576594 0.400776 0.083629 }
+        }
+        <Normal> { 0.578906 -0.796411 -0.174718 }
+      }
+      <Vertex> 3466 {
+        -0.0121376011521 0.125839099288 3.28220677376
+        <UV>  {
+          0.542314 0.783013
+          <Tangent> { 0.039022 0.094300 0.994779 }
+          <Binormal> { 0.840647 0.534062 -0.083602 }
+        }
+        <Normal> { 0.537889 -0.842586 0.026093 }
+      }
+      <Vertex> 3467 {
+        -0.0294904001057 0.161726251245 3.27053189278
+        <UV>  {
+          0.542077 0.781533
+          <Tangent> { 0.045601 0.212399 0.976119 }
+          <Binormal> { 0.974400 0.089568 -0.065011 }
+        }
+        <Normal> { 0.092318 -0.995636 0.011963 }
+      }
+      <Vertex> 3468 {
+        -0.0294904001057 0.161726251245 3.27053189278
+        <UV>  {
+          0.542077 0.781533
+          <Tangent> { 0.045601 0.212399 0.976119 }
+          <Binormal> { 0.974400 0.089568 -0.065011 }
+        }
+        <Normal> { 0.092318 -0.995636 0.011963 }
+      }
+      <Vertex> 3469 {
+        -0.0121376002207 0.153288021684 3.18169426918
+        <UV>  {
+          0.542645 0.781097
+          <Tangent> { -0.240602 0.616621 0.749593 }
+          <Binormal> { 0.481485 0.017941 0.139788 }
+        }
+        <Normal> { 0.135380 -0.927946 -0.347209 }
+      }
+      <Vertex> 3470 {
+        0.00289046438411 0.118531391025 3.20527076721
+        <UV>  {
+          0.543387 0.782215
+          <Tangent> { -0.405897 0.413939 0.814802 }
+          <Binormal> { 0.576594 0.400776 0.083629 }
+        }
+        <Normal> { 0.578906 -0.796411 -0.174718 }
+      }
+      <Vertex> 3471 {
+        -0.0121376002207 0.153288021684 3.18169426918
+        <UV>  {
+          0.542645 0.781097
+          <Tangent> { -0.240602 0.616621 0.749593 }
+          <Binormal> { 0.481485 0.017941 0.139788 }
+        }
+        <Normal> { 0.135380 -0.927946 -0.347209 }
+      }
+      <Vertex> 3472 {
+        -0.0294904001057 0.161726251245 3.27053189278
+        <UV>  {
+          0.542077 0.781533
+          <Tangent> { 0.045601 0.212399 0.976119 }
+          <Binormal> { 0.974400 0.089568 -0.065011 }
+        }
+        <Normal> { 0.092318 -0.995636 0.011963 }
+      }
+      <Vertex> 3473 {
+        -0.0121375964954 0.225935831666 3.2588570118
+        <UV>  {
+          0.541965 0.780801
+          <Tangent> { 0.113363 0.257849 0.959512 }
+          <Binormal> { 0.817155 -0.468916 0.029468 }
+        }
+        <Normal> { -0.495376 -0.866817 -0.056490 }
+      }
+      <Vertex> 3474 {
+        -0.0121375964954 0.225935831666 3.2588570118
+        <UV>  {
+          0.541965 0.780801
+          <Tangent> { 0.113363 0.257849 0.959512 }
+          <Binormal> { 0.817155 -0.468916 0.029468 }
+        }
+        <Normal> { -0.495376 -0.866817 -0.056490 }
+      }
+      <Vertex> 3475 {
+        0.00289046880789 0.218628108501 3.18192124367
+        <UV>  {
+          0.542283 0.780540
+          <Tangent> { -0.003635 0.568375 0.822762 }
+          <Binormal> { 0.425157 -0.381406 0.265359 }
+        }
+        <Normal> { -0.461806 -0.792230 -0.398785 }
+      }
+      <Vertex> 3476 {
+        -0.0121376002207 0.153288021684 3.18169426918
+        <UV>  {
+          0.542645 0.781097
+          <Tangent> { -0.240602 0.616621 0.749593 }
+          <Binormal> { 0.481485 0.017941 0.139788 }
+        }
+        <Normal> { 0.135380 -0.927946 -0.347209 }
+      }
+      <Vertex> 3477 {
+        0.00289046880789 0.218628108501 3.18192124367
+        <UV>  {
+          0.542283 0.780540
+          <Tangent> { -0.003635 0.568375 0.822762 }
+          <Binormal> { 0.425157 -0.381406 0.265359 }
+        }
+        <Normal> { -0.461806 -0.792230 -0.398785 }
+      }
+      <Vertex> 3478 {
+        -0.0121375964954 0.225935831666 3.2588570118
+        <UV>  {
+          0.541965 0.780801
+          <Tangent> { 0.113363 0.257849 0.959512 }
+          <Binormal> { 0.817155 -0.468916 0.029468 }
+        }
+        <Normal> { -0.495376 -0.866817 -0.056490 }
+      }
+      <Vertex> 3479 {
+        0.0352712795138 0.272940546274 3.25031065941
+        <UV>  {
+          0.541873 0.780297
+          <Tangent> { 0.178944 0.233057 0.955857 }
+          <Binormal> { 0.497959 -0.773908 0.095472 }
+        }
+        <Normal> { -0.829890 -0.547319 -0.108127 }
+      }
+      <Vertex> 3480 {
+        0.0352712795138 0.272940546274 3.25031065941
+        <UV>  {
+          0.541873 0.780297
+          <Tangent> { 0.178944 0.233057 0.955857 }
+          <Binormal> { 0.497959 -0.773908 0.095472 }
+        }
+        <Normal> { -0.829890 -0.547319 -0.108127 }
+      }
+      <Vertex> 3481 {
+        0.0439478158951 0.268721431494 3.20589160919
+        <UV>  {
+          0.542021 0.780167
+          <Tangent> { 0.148783 0.408911 0.900364 }
+          <Binormal> { 0.297381 -0.693045 0.265613 }
+        }
+        <Normal> { -0.821955 -0.473800 -0.315989 }
+      }
+      <Vertex> 3482 {
+        0.00289046880789 0.218628108501 3.18192124367
+        <UV>  {
+          0.542283 0.780540
+          <Tangent> { -0.003635 0.568375 0.822762 }
+          <Binormal> { 0.425157 -0.381406 0.265359 }
+        }
+        <Normal> { -0.461806 -0.792230 -0.398785 }
+      }
+      <Vertex> 3483 {
+        0.100032970309 0.290145397186 3.24718236923
+        <UV>  {
+          0.541772 0.779851
+          <Tangent> { 0.221647 0.092207 0.970758 }
+          <Binormal> { -0.008870 -0.944904 0.091776 }
+        }
+        <Normal> { -0.995331 0.000000 -0.096194 }
+      }
+      <Vertex> 3484 {
+        0.0439478158951 0.268721431494 3.20589160919
+        <UV>  {
+          0.542021 0.780167
+          <Tangent> { 0.148783 0.408911 0.900364 }
+          <Binormal> { 0.297381 -0.693045 0.265613 }
+        }
+        <Normal> { -0.821955 -0.473800 -0.315989 }
+      }
+      <Vertex> 3485 {
+        0.0352712795138 0.272940546274 3.25031065941
+        <UV>  {
+          0.541873 0.780297
+          <Tangent> { 0.178944 0.233057 0.955857 }
+          <Binormal> { 0.497959 -0.773908 0.095472 }
+        }
+        <Normal> { -0.829890 -0.547319 -0.108127 }
+      }
+      <Vertex> 3486 {
+        0.100032962859 0.0598407909274 3.22907686234
+        <UV>  {
+          0.501925 0.777049
+          <Tangent> { -0.190881 0.092821 0.977215 }
+          <Binormal> { 0.008929 0.991014 -0.092387 }
+        }
+        <Normal> { 0.995331 0.000000 0.096194 }
+      }
+      <Vertex> 3487 {
+        0.0439478084445 0.0728265419602 3.18152976036
+        <UV>  {
+          0.506322 0.754386
+          <Tangent> { -0.189814 0.041875 0.980927 }
+          <Binormal> { 0.575584 0.747290 0.079477 }
+        }
+        <Normal> { 0.790887 -0.593188 -0.150212 }
+      }
+      <Vertex> 3488 {
+        0.0676521137357 0.0697379633784 3.14901256561
+        <UV>  {
+          0.513938 0.760459
+          <Tangent> { -0.186871 -0.044763 0.981364 }
+          <Binormal> { 0.431656 0.777225 0.117648 }
+        }
+        <Normal> { 0.850673 -0.425794 -0.308206 }
+      }
+      <Vertex> 3489 {
+        0.0676521137357 0.0697379633784 3.14901256561
+        <UV>  {
+          0.551014 0.783271
+          <Tangent> { -0.687174 0.472228 0.552080 }
+          <Binormal> { 0.089529 0.257848 -0.109117 }
+        }
+        <Normal> { 0.850673 -0.425794 -0.308206 }
+      }
+      <Vertex> 3490 {
+        0.0439478084445 0.0728265419602 3.18152976036
+        <UV>  {
+          0.548538 0.789195
+          <Tangent> { -0.339083 0.238806 0.909942 }
+          <Binormal> { 0.503895 0.668727 0.012271 }
+        }
+        <Normal> { 0.790887 -0.593188 -0.150212 }
+      }
+      <Vertex> 3491 {
+        0.00289046438411 0.118531391025 3.20527076721
+        <UV>  {
+          0.543387 0.782215
+          <Tangent> { -0.405897 0.413939 0.814802 }
+          <Binormal> { 0.576594 0.400776 0.083629 }
+        }
+        <Normal> { 0.578906 -0.796411 -0.174718 }
+      }
+      <Vertex> 3492 {
+        0.00289046438411 0.118531391025 3.20527076721
+        <UV>  {
+          0.543387 0.782215
+          <Tangent> { -0.405897 0.413939 0.814802 }
+          <Binormal> { 0.576594 0.400776 0.083629 }
+        }
+        <Normal> { 0.578906 -0.796411 -0.174718 }
+      }
+      <Vertex> 3493 {
+        0.0439478084445 0.0848592966795 3.14895009995
+        <UV>  {
+          0.544026 0.780783
+          <Tangent> { -0.474003 0.880409 0.014143 }
+          <Binormal> { -0.499074 -0.264607 -0.254566 }
+        }
+        <Normal> { 0.592425 -0.563311 -0.575915 }
+      }
+      <Vertex> 3494 {
+        0.0676521137357 0.0697379633784 3.14901256561
+        <UV>  {
+          0.551014 0.783271
+          <Tangent> { -0.687174 0.472228 0.552080 }
+          <Binormal> { 0.089529 0.257848 -0.109117 }
+        }
+        <Normal> { 0.850673 -0.425794 -0.308206 }
+      }
+      <Vertex> 3495 {
+        0.0439478084445 0.0848592966795 3.14895009995
+        <UV>  {
+          0.544026 0.780783
+          <Tangent> { -0.474003 0.880409 0.014143 }
+          <Binormal> { -0.499074 -0.264607 -0.254566 }
+        }
+        <Normal> { 0.592425 -0.563311 -0.575915 }
+      }
+      <Vertex> 3496 {
+        0.00289046438411 0.118531391025 3.20527076721
+        <UV>  {
+          0.543387 0.782215
+          <Tangent> { -0.405897 0.413939 0.814802 }
+          <Binormal> { 0.576594 0.400776 0.083629 }
+        }
+        <Normal> { 0.578906 -0.796411 -0.174718 }
+      }
+      <Vertex> 3497 {
+        -0.0121376002207 0.153288021684 3.18169426918
+        <UV>  {
+          0.542645 0.781097
+          <Tangent> { -0.240602 0.616621 0.749593 }
+          <Binormal> { 0.481485 0.017941 0.139788 }
+        }
+        <Normal> { 0.135380 -0.927946 -0.347209 }
+      }
+      <Vertex> 3498 {
+        -0.0121376002207 0.153288021684 3.18169426918
+        <UV>  {
+          0.542645 0.781097
+          <Tangent> { -0.240602 0.616621 0.749593 }
+          <Binormal> { 0.481485 0.017941 0.139788 }
+        }
+        <Normal> { 0.135380 -0.927946 -0.347209 }
+      }
+      <Vertex> 3499 {
+        0.0352712720633 0.147110804915 3.1166601181
+        <UV>  {
+          0.542980 0.780327
+          <Tangent> { -0.179958 0.963419 0.198592 }
+          <Binormal> { -0.633558 -0.112294 -0.029344 }
+        }
+        <Normal> { 0.143620 -0.605823 -0.782495 }
+      }
+      <Vertex> 3500 {
+        0.0439478084445 0.0848592966795 3.14895009995
+        <UV>  {
+          0.544026 0.780783
+          <Tangent> { -0.474003 0.880409 0.014143 }
+          <Binormal> { -0.499074 -0.264607 -0.254566 }
+        }
+        <Normal> { 0.592425 -0.563311 -0.575915 }
+      }
+      <Vertex> 3501 {
+        0.0352712720633 0.147110804915 3.1166601181
+        <UV>  {
+          0.542980 0.780327
+          <Tangent> { -0.179958 0.963419 0.198592 }
+          <Binormal> { -0.633558 -0.112294 -0.029344 }
+        }
+        <Normal> { 0.143620 -0.605823 -0.782495 }
+      }
+      <Vertex> 3502 {
+        -0.0121376002207 0.153288021684 3.18169426918
+        <UV>  {
+          0.542645 0.781097
+          <Tangent> { -0.240602 0.616621 0.749593 }
+          <Binormal> { 0.481485 0.017941 0.139788 }
+        }
+        <Normal> { 0.135380 -0.927946 -0.347209 }
+      }
+      <Vertex> 3503 {
+        0.00289046880789 0.218628108501 3.18192124367
+        <UV>  {
+          0.542283 0.780540
+          <Tangent> { -0.003635 0.568375 0.822762 }
+          <Binormal> { 0.425157 -0.381406 0.265359 }
+        }
+        <Normal> { -0.461806 -0.792230 -0.398785 }
+      }
+      <Vertex> 3504 {
+        0.00289046880789 0.218628108501 3.18192124367
+        <UV>  {
+          0.542283 0.780540
+          <Tangent> { -0.003635 0.568375 0.822762 }
+          <Binormal> { 0.425157 -0.381406 0.265359 }
+        }
+        <Normal> { -0.461806 -0.792230 -0.398785 }
+      }
+      <Vertex> 3505 {
+        0.0439478121698 0.213278502226 3.12560033798
+        <UV>  {
+          0.542464 0.780095
+          <Tangent> { 0.054352 0.794468 0.604869 }
+          <Binormal> { -0.275415 -0.242559 0.343338 }
+        }
+        <Normal> { -0.466475 -0.501572 -0.728538 }
+      }
+      <Vertex> 3506 {
+        0.0352712720633 0.147110804915 3.1166601181
+        <UV>  {
+          0.542980 0.780327
+          <Tangent> { -0.179958 0.963419 0.198592 }
+          <Binormal> { -0.633558 -0.112294 -0.029344 }
+        }
+        <Normal> { 0.143620 -0.605823 -0.782495 }
+      }
+      <Vertex> 3507 {
+        0.0439478121698 0.213278502226 3.12560033798
+        <UV>  {
+          0.542464 0.780095
+          <Tangent> { 0.054352 0.794468 0.604869 }
+          <Binormal> { -0.275415 -0.242559 0.343338 }
+        }
+        <Normal> { -0.466475 -0.501572 -0.728538 }
+      }
+      <Vertex> 3508 {
+        0.00289046880789 0.218628108501 3.18192124367
+        <UV>  {
+          0.542283 0.780540
+          <Tangent> { -0.003635 0.568375 0.822762 }
+          <Binormal> { 0.425157 -0.381406 0.265359 }
+        }
+        <Normal> { -0.461806 -0.792230 -0.398785 }
+      }
+      <Vertex> 3509 {
+        0.0439478158951 0.268721431494 3.20589160919
+        <UV>  {
+          0.542021 0.780167
+          <Tangent> { 0.148783 0.408911 0.900364 }
+          <Binormal> { 0.297381 -0.693045 0.265613 }
+        }
+        <Normal> { -0.821955 -0.473800 -0.315989 }
+      }
+      <Vertex> 3510 {
+        0.0439478158951 0.268721431494 3.20589160919
+        <UV>  {
+          0.542021 0.780167
+          <Tangent> { 0.148783 0.408911 0.900364 }
+          <Binormal> { 0.297381 -0.693045 0.265613 }
+        }
+        <Normal> { -0.821955 -0.473800 -0.315989 }
+      }
+      <Vertex> 3511 {
+        0.0676521286368 0.265632838011 3.17337489128
+        <UV>  {
+          0.542102 0.779953
+          <Tangent> { 0.181892 0.509982 0.840734 }
+          <Binormal> { -0.025532 -0.613650 0.377758 }
+        }
+        <Normal> { -0.834590 -0.263161 -0.483902 }
+      }
+      <Vertex> 3512 {
+        0.0439478121698 0.213278502226 3.12560033798
+        <UV>  {
+          0.542464 0.780095
+          <Tangent> { 0.054352 0.794468 0.604869 }
+          <Binormal> { -0.275415 -0.242559 0.343338 }
+        }
+        <Normal> { -0.466475 -0.501572 -0.728538 }
+      }
+      <Vertex> 3513 {
+        0.100032970309 0.290145397186 3.24718236923
+        <UV>  {
+          0.541772 0.779851
+          <Tangent> { 0.221647 0.092207 0.970758 }
+          <Binormal> { -0.008870 -0.944904 0.091776 }
+        }
+        <Normal> { -0.995331 0.000000 -0.096194 }
+      }
+      <Vertex> 3514 {
+        0.0676521286368 0.265632838011 3.17337489128
+        <UV>  {
+          0.542102 0.779953
+          <Tangent> { 0.181892 0.509982 0.840734 }
+          <Binormal> { -0.025532 -0.613650 0.377758 }
+        }
+        <Normal> { -0.834590 -0.263161 -0.483902 }
+      }
+      <Vertex> 3515 {
+        0.0439478158951 0.268721431494 3.20589160919
+        <UV>  {
+          0.542021 0.780167
+          <Tangent> { 0.148783 0.408911 0.900364 }
+          <Binormal> { 0.297381 -0.693045 0.265613 }
+        }
+        <Normal> { -0.821955 -0.473800 -0.315989 }
+      }
+      <Vertex> 3516 {
+        0.100032962859 0.0598407909274 3.22907686234
+        <UV>  {
+          0.501925 0.777049
+          <Tangent> { -0.190881 0.092821 0.977215 }
+          <Binormal> { 0.008929 0.991014 -0.092387 }
+        }
+        <Normal> { 0.995331 0.000000 0.096194 }
+      }
+      <Vertex> 3517 {
+        0.0676521137357 0.0697379633784 3.14901256561
+        <UV>  {
+          0.513938 0.760459
+          <Tangent> { -0.186871 -0.044763 0.981364 }
+          <Binormal> { 0.431656 0.777225 0.117648 }
+        }
+        <Normal> { 0.850673 -0.425794 -0.308206 }
+      }
+      <Vertex> 3518 {
+        0.100032962859 0.068607442081 3.13711071014
+        <UV>  {
+          0.518335 0.770976
+          <Tangent> { -0.184608 -0.093264 0.978377 }
+          <Binormal> { 0.126491 0.668950 0.087635 }
+        }
+        <Normal> { 0.796899 -0.072115 -0.599750 }
+      }
+      <Vertex> 3519 {
+        0.100032962859 0.068607442081 3.13711071014
+        <UV>  {
+          0.551014 0.776430
+          <Tangent> { 0.764381 0.449765 -0.461988 }
+          <Binormal> { -0.303063 0.090280 -0.413541 }
+        }
+        <Normal> { 0.796899 -0.072115 -0.599750 }
+      }
+      <Vertex> 3520 {
+        0.0676521137357 0.0697379633784 3.14901256561
+        <UV>  {
+          0.551014 0.783271
+          <Tangent> { -0.687174 0.472228 0.552080 }
+          <Binormal> { 0.089529 0.257848 -0.109117 }
+        }
+        <Normal> { 0.850673 -0.425794 -0.308206 }
+      }
+      <Vertex> 3521 {
+        0.0439478084445 0.0848592966795 3.14895009995
+        <UV>  {
+          0.544026 0.780783
+          <Tangent> { -0.474003 0.880409 0.014143 }
+          <Binormal> { -0.499074 -0.264607 -0.254566 }
+        }
+        <Normal> { 0.592425 -0.563311 -0.575915 }
+      }
+      <Vertex> 3522 {
+        0.0439478084445 0.0848592966795 3.14895009995
+        <UV>  {
+          0.544026 0.780783
+          <Tangent> { -0.474003 0.880409 0.014143 }
+          <Binormal> { -0.499074 -0.264607 -0.254566 }
+        }
+        <Normal> { 0.592425 -0.563311 -0.575915 }
+      }
+      <Vertex> 3523 {
+        0.100032962859 0.0829012095928 3.12833499908
+        <UV>  {
+          0.544062 0.779102
+          <Tangent> { 0.302821 0.855161 -0.420712 }
+          <Binormal> { -0.735796 0.045823 -0.436471 }
+        }
+        <Normal> { 0.510147 -0.000702 -0.860073 }
+      }
+      <Vertex> 3524 {
+        0.100032962859 0.068607442081 3.13711071014
+        <UV>  {
+          0.551014 0.776430
+          <Tangent> { 0.764381 0.449765 -0.461988 }
+          <Binormal> { -0.303063 0.090280 -0.413541 }
+        }
+        <Normal> { 0.796899 -0.072115 -0.599750 }
+      }
+      <Vertex> 3525 {
+        0.100032962859 0.0829012095928 3.12833499908
+        <UV>  {
+          0.544062 0.779102
+          <Tangent> { 0.302821 0.855161 -0.420712 }
+          <Binormal> { -0.735796 0.045823 -0.436471 }
+        }
+        <Normal> { 0.510147 -0.000702 -0.860073 }
+      }
+      <Vertex> 3526 {
+        0.0439478084445 0.0848592966795 3.14895009995
+        <UV>  {
+          0.544026 0.780783
+          <Tangent> { -0.474003 0.880409 0.014143 }
+          <Binormal> { -0.499074 -0.264607 -0.254566 }
+        }
+        <Normal> { 0.592425 -0.563311 -0.575915 }
+      }
+      <Vertex> 3527 {
+        0.0352712720633 0.147110804915 3.1166601181
+        <UV>  {
+          0.542980 0.780327
+          <Tangent> { -0.179958 0.963419 0.198592 }
+          <Binormal> { -0.633558 -0.112294 -0.029344 }
+        }
+        <Normal> { 0.143620 -0.605823 -0.782495 }
+      }
+      <Vertex> 3528 {
+        0.0352712720633 0.147110804915 3.1166601181
+        <UV>  {
+          0.542980 0.780327
+          <Tangent> { -0.179958 0.963419 0.198592 }
+          <Binormal> { -0.633558 -0.112294 -0.029344 }
+        }
+        <Normal> { 0.143620 -0.605823 -0.782495 }
+      }
+      <Vertex> 3529 {
+        0.100032970309 0.144849792123 3.09285616875
+        <UV>  {
+          0.542990 0.779430
+          <Tangent> { 0.267438 0.963575 0.000779 }
+          <Binormal> { -0.949516 0.263669 -0.164655 }
+        }
+        <Normal> { 0.170049 -0.002991 -0.985412 }
+      }
+      <Vertex> 3530 {
+        0.100032962859 0.0829012095928 3.12833499908
+        <UV>  {
+          0.544062 0.779102
+          <Tangent> { 0.302821 0.855161 -0.420712 }
+          <Binormal> { -0.735796 0.045823 -0.436471 }
+        }
+        <Normal> { 0.510147 -0.000702 -0.860073 }
+      }
+      <Vertex> 3531 {
+        0.100032970309 0.144849792123 3.09285616875
+        <UV>  {
+          0.542990 0.779430
+          <Tangent> { 0.267438 0.963575 0.000779 }
+          <Binormal> { -0.949516 0.263669 -0.164655 }
+        }
+        <Normal> { 0.170049 -0.002991 -0.985412 }
+      }
+      <Vertex> 3532 {
+        0.0352712720633 0.147110804915 3.1166601181
+        <UV>  {
+          0.542980 0.780327
+          <Tangent> { -0.179958 0.963419 0.198592 }
+          <Binormal> { -0.633558 -0.112294 -0.029344 }
+        }
+        <Normal> { 0.143620 -0.605823 -0.782495 }
+      }
+      <Vertex> 3533 {
+        0.0439478121698 0.213278502226 3.12560033798
+        <UV>  {
+          0.542464 0.780095
+          <Tangent> { 0.054352 0.794468 0.604869 }
+          <Binormal> { -0.275415 -0.242559 0.343338 }
+        }
+        <Normal> { -0.466475 -0.501572 -0.728538 }
+      }
+      <Vertex> 3534 {
+        0.0439478121698 0.213278502226 3.12560033798
+        <UV>  {
+          0.542464 0.780095
+          <Tangent> { 0.054352 0.794468 0.604869 }
+          <Binormal> { -0.275415 -0.242559 0.343338 }
+        }
+        <Normal> { -0.466475 -0.501572 -0.728538 }
+      }
+      <Vertex> 3535 {
+        0.100032970309 0.211320385337 3.10498547554
+        <UV>  {
+          0.542460 0.779584
+          <Tangent> { 0.260022 0.795967 0.546648 }
+          <Binormal> { -0.708332 -0.036096 0.389489 }
+        }
+        <Normal> { -0.482528 0.020814 -0.875607 }
+      }
+      <Vertex> 3536 {
+        0.100032970309 0.144849792123 3.09285616875
+        <UV>  {
+          0.542990 0.779430
+          <Tangent> { 0.267438 0.963575 0.000779 }
+          <Binormal> { -0.949516 0.263669 -0.164655 }
+        }
+        <Normal> { 0.170049 -0.002991 -0.985412 }
+      }
+      <Vertex> 3537 {
+        0.100032970309 0.211320385337 3.10498547554
+        <UV>  {
+          0.542460 0.779584
+          <Tangent> { 0.260022 0.795967 0.546648 }
+          <Binormal> { -0.708332 -0.036096 0.389489 }
+        }
+        <Normal> { -0.482528 0.020814 -0.875607 }
+      }
+      <Vertex> 3538 {
+        0.0439478121698 0.213278502226 3.12560033798
+        <UV>  {
+          0.542464 0.780095
+          <Tangent> { 0.054352 0.794468 0.604869 }
+          <Binormal> { -0.275415 -0.242559 0.343338 }
+        }
+        <Normal> { -0.466475 -0.501572 -0.728538 }
+      }
+      <Vertex> 3539 {
+        0.0676521286368 0.265632838011 3.17337489128
+        <UV>  {
+          0.542102 0.779953
+          <Tangent> { 0.181892 0.509982 0.840734 }
+          <Binormal> { -0.025532 -0.613650 0.377758 }
+        }
+        <Normal> { -0.834590 -0.263161 -0.483902 }
+      }
+      <Vertex> 3540 {
+        0.0676521286368 0.265632838011 3.17337489128
+        <UV>  {
+          0.542102 0.779953
+          <Tangent> { 0.181892 0.509982 0.840734 }
+          <Binormal> { -0.025532 -0.613650 0.377758 }
+        }
+        <Normal> { -0.834590 -0.263161 -0.483902 }
+      }
+      <Vertex> 3541 {
+        0.100032970309 0.264502316713 3.16147279739
+        <UV>  {
+          0.542095 0.779711
+          <Tangent> { 0.249665 0.487545 0.836641 }
+          <Binormal> { -0.300377 -0.570533 0.422110 }
+        }
+        <Normal> { -0.842219 0.046022 -0.537126 }
+      }
+      <Vertex> 3542 {
+        0.100032970309 0.211320385337 3.10498547554
+        <UV>  {
+          0.542460 0.779584
+          <Tangent> { 0.260022 0.795967 0.546648 }
+          <Binormal> { -0.708332 -0.036096 0.389489 }
+        }
+        <Normal> { -0.482528 0.020814 -0.875607 }
+      }
+      <Vertex> 3543 {
+        0.100032970309 0.290145397186 3.24718236923
+        <UV>  {
+          0.541772 0.779851
+          <Tangent> { 0.221647 0.092207 0.970758 }
+          <Binormal> { -0.008870 -0.944904 0.091776 }
+        }
+        <Normal> { -0.995331 0.000000 -0.096194 }
+      }
+      <Vertex> 3544 {
+        0.100032970309 0.264502316713 3.16147279739
+        <UV>  {
+          0.542095 0.779711
+          <Tangent> { 0.249665 0.487545 0.836641 }
+          <Binormal> { -0.300377 -0.570533 0.422110 }
+        }
+        <Normal> { -0.842219 0.046022 -0.537126 }
+      }
+      <Vertex> 3545 {
+        0.0676521286368 0.265632838011 3.17337489128
+        <UV>  {
+          0.542102 0.779953
+          <Tangent> { 0.181892 0.509982 0.840734 }
+          <Binormal> { -0.025532 -0.613650 0.377758 }
+        }
+        <Normal> { -0.834590 -0.263161 -0.483902 }
+      }
+      <Vertex> 3546 {
+        0.100032962859 0.0598407909274 3.22907686234
+        <UV>  {
+          0.501925 0.777049
+          <Tangent> { -0.190881 0.092821 0.977215 }
+          <Binormal> { 0.008929 0.991014 -0.092387 }
+        }
+        <Normal> { 0.995331 0.000000 0.096194 }
+      }
+      <Vertex> 3547 {
+        0.100032962859 0.068607442081 3.13711071014
+        <UV>  {
+          0.518335 0.770976
+          <Tangent> { -0.184608 -0.093264 0.978377 }
+          <Binormal> { 0.126491 0.668950 0.087635 }
+        }
+        <Normal> { 0.796899 -0.072115 -0.599750 }
+      }
+      <Vertex> 3548 {
+        0.132413804531 0.0697379559278 3.14901256561
+        <UV>  {
+          0.518335 0.783121
+          <Tangent> { -0.184609 -0.093264 0.978377 }
+          <Binormal> { -0.260924 0.732896 0.020630 }
+        }
+        <Normal> { 0.834895 0.310038 -0.454726 }
+      }
+      <Vertex> 3549 {
+        0.132413804531 0.0697379559278 3.14901256561
+        <UV>  {
+          0.548538 0.770507
+          <Tangent> { 0.925108 0.135401 0.354742 }
+          <Binormal> { -0.171554 0.716843 0.173773 }
+        }
+        <Normal> { 0.834895 0.310038 -0.454726 }
+      }
+      <Vertex> 3550 {
+        0.100032962859 0.068607442081 3.13711071014
+        <UV>  {
+          0.551014 0.776430
+          <Tangent> { 0.764381 0.449765 -0.461988 }
+          <Binormal> { -0.303063 0.090280 -0.413541 }
+        }
+        <Normal> { 0.796899 -0.072115 -0.599750 }
+      }
+      <Vertex> 3551 {
+        0.100032962859 0.0829012095928 3.12833499908
+        <UV>  {
+          0.544062 0.779102
+          <Tangent> { 0.302821 0.855161 -0.420712 }
+          <Binormal> { -0.735796 0.045823 -0.436471 }
+        }
+        <Normal> { 0.510147 -0.000702 -0.860073 }
+      }
+      <Vertex> 3552 {
+        0.100032962859 0.0829012095928 3.12833499908
+        <UV>  {
+          0.544062 0.779102
+          <Tangent> { 0.302821 0.855161 -0.420712 }
+          <Binormal> { -0.735796 0.045823 -0.436471 }
+        }
+        <Normal> { 0.510147 -0.000702 -0.860073 }
+      }
+      <Vertex> 3553 {
+        0.156118109822 0.0848592892289 3.14895009995
+        <UV>  {
+          0.543484 0.777621
+          <Tangent> { 0.697530 0.688102 0.199919 }
+          <Binormal> { -0.529051 0.537489 -0.004094 }
+        }
+        <Normal> { 0.568285 0.554735 -0.607685 }
+      }
+      <Vertex> 3554 {
+        0.132413804531 0.0697379559278 3.14901256561
+        <UV>  {
+          0.548538 0.770507
+          <Tangent> { 0.925108 0.135401 0.354742 }
+          <Binormal> { -0.171554 0.716843 0.173773 }
+        }
+        <Normal> { 0.834895 0.310038 -0.454726 }
+      }
+      <Vertex> 3555 {
+        0.156118109822 0.0848592892289 3.14895009995
+        <UV>  {
+          0.543484 0.777621
+          <Tangent> { 0.697530 0.688102 0.199919 }
+          <Binormal> { -0.529051 0.537489 -0.004094 }
+        }
+        <Normal> { 0.568285 0.554735 -0.607685 }
+      }
+      <Vertex> 3556 {
+        0.100032962859 0.0829012095928 3.12833499908
+        <UV>  {
+          0.544062 0.779102
+          <Tangent> { 0.302821 0.855161 -0.420712 }
+          <Binormal> { -0.735796 0.045823 -0.436471 }
+        }
+        <Normal> { 0.510147 -0.000702 -0.860073 }
+      }
+      <Vertex> 3557 {
+        0.100032970309 0.144849792123 3.09285616875
+        <UV>  {
+          0.542990 0.779430
+          <Tangent> { 0.267438 0.963575 0.000779 }
+          <Binormal> { -0.949516 0.263669 -0.164655 }
+        }
+        <Normal> { 0.170049 -0.002991 -0.985412 }
+      }
+      <Vertex> 3558 {
+        0.100032970309 0.144849792123 3.09285616875
+        <UV>  {
+          0.542990 0.779430
+          <Tangent> { 0.267438 0.963575 0.000779 }
+          <Binormal> { -0.949516 0.263669 -0.164655 }
+        }
+        <Normal> { 0.170049 -0.002991 -0.985412 }
+      }
+      <Vertex> 3559 {
+        0.164794638753 0.147110804915 3.1166601181
+        <UV>  {
+          0.542675 0.778645
+          <Tangent> { 0.558148 0.706853 0.434545 }
+          <Binormal> { -0.812334 0.500941 0.228540 }
+        }
+        <Normal> { 0.163366 0.616352 -0.770318 }
+      }
+      <Vertex> 3560 {
+        0.156118109822 0.0848592892289 3.14895009995
+        <UV>  {
+          0.543484 0.777621
+          <Tangent> { 0.697530 0.688102 0.199919 }
+          <Binormal> { -0.529051 0.537489 -0.004094 }
+        }
+        <Normal> { 0.568285 0.554735 -0.607685 }
+      }
+      <Vertex> 3561 {
+        0.164794638753 0.147110804915 3.1166601181
+        <UV>  {
+          0.542675 0.778645
+          <Tangent> { 0.558148 0.706853 0.434545 }
+          <Binormal> { -0.812334 0.500941 0.228540 }
+        }
+        <Normal> { 0.163366 0.616352 -0.770318 }
+      }
+      <Vertex> 3562 {
+        0.100032970309 0.144849792123 3.09285616875
+        <UV>  {
+          0.542990 0.779430
+          <Tangent> { 0.267438 0.963575 0.000779 }
+          <Binormal> { -0.949516 0.263669 -0.164655 }
+        }
+        <Normal> { 0.170049 -0.002991 -0.985412 }
+      }
+      <Vertex> 3563 {
+        0.100032970309 0.211320385337 3.10498547554
+        <UV>  {
+          0.542460 0.779584
+          <Tangent> { 0.260022 0.795967 0.546648 }
+          <Binormal> { -0.708332 -0.036096 0.389489 }
+        }
+        <Normal> { -0.482528 0.020814 -0.875607 }
+      }
+      <Vertex> 3564 {
+        0.100032970309 0.211320385337 3.10498547554
+        <UV>  {
+          0.542460 0.779584
+          <Tangent> { 0.260022 0.795967 0.546648 }
+          <Binormal> { -0.708332 -0.036096 0.389489 }
+        }
+        <Normal> { -0.482528 0.020814 -0.875607 }
+      }
+      <Vertex> 3565 {
+        0.156118124723 0.213278487325 3.12560033798
+        <UV>  {
+          0.542271 0.779145
+          <Tangent> { 0.374886 0.568742 0.732116 }
+          <Binormal> { -0.785484 -0.083506 0.467084 }
+        }
+        <Normal> { -0.475723 0.524216 -0.706290 }
+      }
+      <Vertex> 3566 {
+        0.164794638753 0.147110804915 3.1166601181
+        <UV>  {
+          0.542675 0.778645
+          <Tangent> { 0.558148 0.706853 0.434545 }
+          <Binormal> { -0.812334 0.500941 0.228540 }
+        }
+        <Normal> { 0.163366 0.616352 -0.770318 }
+      }
+      <Vertex> 3567 {
+        0.156118124723 0.213278487325 3.12560033798
+        <UV>  {
+          0.542271 0.779145
+          <Tangent> { 0.374886 0.568742 0.732116 }
+          <Binormal> { -0.785484 -0.083506 0.467084 }
+        }
+        <Normal> { -0.475723 0.524216 -0.706290 }
+      }
+      <Vertex> 3568 {
+        0.100032970309 0.211320385337 3.10498547554
+        <UV>  {
+          0.542460 0.779584
+          <Tangent> { 0.260022 0.795967 0.546648 }
+          <Binormal> { -0.708332 -0.036096 0.389489 }
+        }
+        <Normal> { -0.482528 0.020814 -0.875607 }
+      }
+      <Vertex> 3569 {
+        0.100032970309 0.264502316713 3.16147279739
+        <UV>  {
+          0.542095 0.779711
+          <Tangent> { 0.249665 0.487545 0.836641 }
+          <Binormal> { -0.300377 -0.570533 0.422110 }
+        }
+        <Normal> { -0.842219 0.046022 -0.537126 }
+      }
+      <Vertex> 3570 {
+        0.100032970309 0.264502316713 3.16147279739
+        <UV>  {
+          0.542095 0.779711
+          <Tangent> { 0.249665 0.487545 0.836641 }
+          <Binormal> { -0.300377 -0.570533 0.422110 }
+        }
+        <Normal> { -0.842219 0.046022 -0.537126 }
+      }
+      <Vertex> 3571 {
+        0.132413804531 0.265632838011 3.17337489128
+        <UV>  {
+          0.542001 0.779507
+          <Tangent> { 0.278185 0.348570 0.895048 }
+          <Binormal> { -0.453928 -0.620460 0.382717 }
+        }
+        <Normal> { -0.831263 0.334178 -0.444166 }
+      }
+      <Vertex> 3572 {
+        0.156118124723 0.213278487325 3.12560033798
+        <UV>  {
+          0.542271 0.779145
+          <Tangent> { 0.374886 0.568742 0.732116 }
+          <Binormal> { -0.785484 -0.083506 0.467084 }
+        }
+        <Normal> { -0.475723 0.524216 -0.706290 }
+      }
+      <Vertex> 3573 {
+        0.100032970309 0.290145397186 3.24718236923
+        <UV>  {
+          0.541772 0.779851
+          <Tangent> { 0.221647 0.092207 0.970758 }
+          <Binormal> { -0.008870 -0.944904 0.091776 }
+        }
+        <Normal> { -0.995331 0.000000 -0.096194 }
+      }
+      <Vertex> 3574 {
+        0.132413804531 0.265632838011 3.17337489128
+        <UV>  {
+          0.542001 0.779507
+          <Tangent> { 0.278185 0.348570 0.895048 }
+          <Binormal> { -0.453928 -0.620460 0.382717 }
+        }
+        <Normal> { -0.831263 0.334178 -0.444166 }
+      }
+      <Vertex> 3575 {
+        0.100032970309 0.264502316713 3.16147279739
+        <UV>  {
+          0.542095 0.779711
+          <Tangent> { 0.249665 0.487545 0.836641 }
+          <Binormal> { -0.300377 -0.570533 0.422110 }
+        }
+        <Normal> { -0.842219 0.046022 -0.537126 }
+      }
+      <Vertex> 3576 {
+        0.100032962859 0.0598407909274 3.22907686234
+        <UV>  {
+          0.501925 0.777049
+          <Tangent> { -0.190881 0.092821 0.977215 }
+          <Binormal> { 0.008929 0.991014 -0.092387 }
+        }
+        <Normal> { 0.995331 0.000000 0.096194 }
+      }
+      <Vertex> 3577 {
+        0.132413804531 0.0697379559278 3.14901256561
+        <UV>  {
+          0.518335 0.783121
+          <Tangent> { -0.184609 -0.093264 0.978377 }
+          <Binormal> { -0.260924 0.732896 0.020630 }
+        }
+        <Normal> { 0.834895 0.310038 -0.454726 }
+      }
+      <Vertex> 3578 {
+        0.156118109822 0.0728265345097 3.18152976036
+        <UV>  {
+          0.513938 0.793639
+          <Tangent> { -0.186873 -0.044763 0.981364 }
+          <Binormal> { -0.512585 0.799896 -0.061122 }
+        }
+        <Normal> { 0.839442 0.528153 -0.127903 }
+      }
+      <Vertex> 3579 {
+        0.156118109822 0.0728265345097 3.18152976036
+        <UV>  {
+          0.544248 0.767086
+          <Tangent> { 0.528655 0.404773 0.746111 }
+          <Binormal> { -0.445833 0.693934 -0.060573 }
+        }
+        <Normal> { 0.839442 0.528153 -0.127903 }
+      }
+      <Vertex> 3580 {
+        0.132413804531 0.0697379559278 3.14901256561
+        <UV>  {
+          0.548538 0.770507
+          <Tangent> { 0.925108 0.135401 0.354742 }
+          <Binormal> { -0.171554 0.716843 0.173773 }
+        }
+        <Normal> { 0.834895 0.310038 -0.454726 }
+      }
+      <Vertex> 3581 {
+        0.156118109822 0.0848592892289 3.14895009995
+        <UV>  {
+          0.543484 0.777621
+          <Tangent> { 0.697530 0.688102 0.199919 }
+          <Binormal> { -0.529051 0.537489 -0.004094 }
+        }
+        <Normal> { 0.568285 0.554735 -0.607685 }
+      }
+      <Vertex> 3582 {
+        0.156118109822 0.0848592892289 3.14895009995
+        <UV>  {
+          0.543484 0.777621
+          <Tangent> { 0.697530 0.688102 0.199919 }
+          <Binormal> { -0.529051 0.537489 -0.004094 }
+        }
+        <Normal> { 0.568285 0.554735 -0.607685 }
+      }
+      <Vertex> 3583 {
+        0.197175472975 0.118531383574 3.20527076721
+        <UV>  {
+          0.542447 0.776737
+          <Tangent> { 0.481295 0.343132 0.806607 }
+          <Binormal> { -0.725085 0.558741 0.194962 }
+        }
+        <Normal> { 0.553270 0.799524 -0.233680 }
+      }
+      <Vertex> 3584 {
+        0.156118109822 0.0728265345097 3.18152976036
+        <UV>  {
+          0.544248 0.767086
+          <Tangent> { 0.528655 0.404773 0.746111 }
+          <Binormal> { -0.445833 0.693934 -0.060573 }
+        }
+        <Normal> { 0.839442 0.528153 -0.127903 }
+      }
+      <Vertex> 3585 {
+        0.197175472975 0.118531383574 3.20527076721
+        <UV>  {
+          0.542447 0.776737
+          <Tangent> { 0.481295 0.343132 0.806607 }
+          <Binormal> { -0.725085 0.558741 0.194962 }
+        }
+        <Normal> { 0.553270 0.799524 -0.233680 }
+      }
+      <Vertex> 3586 {
+        0.156118109822 0.0848592892289 3.14895009995
+        <UV>  {
+          0.543484 0.777621
+          <Tangent> { 0.697530 0.688102 0.199919 }
+          <Binormal> { -0.529051 0.537489 -0.004094 }
+        }
+        <Normal> { 0.568285 0.554735 -0.607685 }
+      }
+      <Vertex> 3587 {
+        0.164794638753 0.147110804915 3.1166601181
+        <UV>  {
+          0.542675 0.778645
+          <Tangent> { 0.558148 0.706853 0.434545 }
+          <Binormal> { -0.812334 0.500941 0.228540 }
+        }
+        <Normal> { 0.163366 0.616352 -0.770318 }
+      }
+      <Vertex> 3588 {
+        0.164794638753 0.147110804915 3.1166601181
+        <UV>  {
+          0.542675 0.778645
+          <Tangent> { 0.558148 0.706853 0.434545 }
+          <Binormal> { -0.812334 0.500941 0.228540 }
+        }
+        <Normal> { 0.163366 0.616352 -0.770318 }
+      }
+      <Vertex> 3589 {
+        0.212203517556 0.153288006783 3.18169426918
+        <UV>  {
+          0.542117 0.778183
+          <Tangent> { 0.381120 0.282528 0.880298 }
+          <Binormal> { -0.907394 0.296104 0.297818 }
+        }
+        <Normal> { 0.171300 0.908414 -0.381268 }
+      }
+      <Vertex> 3590 {
+        0.197175472975 0.118531383574 3.20527076721
+        <UV>  {
+          0.542447 0.776737
+          <Tangent> { 0.481295 0.343132 0.806607 }
+          <Binormal> { -0.725085 0.558741 0.194962 }
+        }
+        <Normal> { 0.553270 0.799524 -0.233680 }
+      }
+      <Vertex> 3591 {
+        0.212203517556 0.153288006783 3.18169426918
+        <UV>  {
+          0.542117 0.778183
+          <Tangent> { 0.381120 0.282528 0.880298 }
+          <Binormal> { -0.907394 0.296104 0.297818 }
+        }
+        <Normal> { 0.171300 0.908414 -0.381268 }
+      }
+      <Vertex> 3592 {
+        0.164794638753 0.147110804915 3.1166601181
+        <UV>  {
+          0.542675 0.778645
+          <Tangent> { 0.558148 0.706853 0.434545 }
+          <Binormal> { -0.812334 0.500941 0.228540 }
+        }
+        <Normal> { 0.163366 0.616352 -0.770318 }
+      }
+      <Vertex> 3593 {
+        0.156118124723 0.213278487325 3.12560033798
+        <UV>  {
+          0.542271 0.779145
+          <Tangent> { 0.374886 0.568742 0.732116 }
+          <Binormal> { -0.785484 -0.083506 0.467084 }
+        }
+        <Normal> { -0.475723 0.524216 -0.706290 }
+      }
+      <Vertex> 3594 {
+        0.156118124723 0.213278487325 3.12560033798
+        <UV>  {
+          0.542271 0.779145
+          <Tangent> { 0.374886 0.568742 0.732116 }
+          <Binormal> { -0.785484 -0.083506 0.467084 }
+        }
+        <Normal> { -0.475723 0.524216 -0.706290 }
+      }
+      <Vertex> 3595 {
+        0.197175472975 0.218628123403 3.18192148209
+        <UV>  {
+          0.541949 0.778895
+          <Tangent> { 0.283604 0.245121 0.927084 }
+          <Binormal> { -0.831672 -0.328406 0.341247 }
+        }
+        <Normal> { -0.470290 0.796777 -0.379376 }
+      }
+      <Vertex> 3596 {
+        0.212203517556 0.153288006783 3.18169426918
+        <UV>  {
+          0.542117 0.778183
+          <Tangent> { 0.381120 0.282528 0.880298 }
+          <Binormal> { -0.907394 0.296104 0.297818 }
+        }
+        <Normal> { 0.171300 0.908414 -0.381268 }
+      }
+      <Vertex> 3597 {
+        0.197175472975 0.218628123403 3.18192148209
+        <UV>  {
+          0.541949 0.778895
+          <Tangent> { 0.283604 0.245121 0.927084 }
+          <Binormal> { -0.831672 -0.328406 0.341247 }
+        }
+        <Normal> { -0.470290 0.796777 -0.379376 }
+      }
+      <Vertex> 3598 {
+        0.156118124723 0.213278487325 3.12560033798
+        <UV>  {
+          0.542271 0.779145
+          <Tangent> { 0.374886 0.568742 0.732116 }
+          <Binormal> { -0.785484 -0.083506 0.467084 }
+        }
+        <Normal> { -0.475723 0.524216 -0.706290 }
+      }
+      <Vertex> 3599 {
+        0.132413804531 0.265632838011 3.17337489128
+        <UV>  {
+          0.542001 0.779507
+          <Tangent> { 0.278185 0.348570 0.895048 }
+          <Binormal> { -0.453928 -0.620460 0.382717 }
+        }
+        <Normal> { -0.831263 0.334178 -0.444166 }
+      }
+      <Vertex> 3600 {
+        0.132413804531 0.265632838011 3.17337489128
+        <UV>  {
+          0.542001 0.779507
+          <Tangent> { 0.278185 0.348570 0.895048 }
+          <Binormal> { -0.453928 -0.620460 0.382717 }
+        }
+        <Normal> { -0.831263 0.334178 -0.444166 }
+      }
+      <Vertex> 3601 {
+        0.156118124723 0.268721431494 3.20589160919
+        <UV>  {
+          0.541846 0.779395
+          <Tangent> { 0.239501 0.153166 0.958739 }
+          <Binormal> { -0.524961 -0.725941 0.247114 }
+        }
+        <Normal> { -0.822260 0.505936 -0.260506 }
+      }
+      <Vertex> 3602 {
+        0.197175472975 0.218628123403 3.18192148209
+        <UV>  {
+          0.541949 0.778895
+          <Tangent> { 0.283604 0.245121 0.927084 }
+          <Binormal> { -0.831672 -0.328406 0.341247 }
+        }
+        <Normal> { -0.470290 0.796777 -0.379376 }
+      }
+      <Vertex> 3603 {
+        0.100032970309 0.290145397186 3.24718236923
+        <UV>  {
+          0.541772 0.779851
+          <Tangent> { 0.221647 0.092207 0.970758 }
+          <Binormal> { -0.008870 -0.944904 0.091776 }
+        }
+        <Normal> { -0.995331 0.000000 -0.096194 }
+      }
+      <Vertex> 3604 {
+        0.156118124723 0.268721431494 3.20589160919
+        <UV>  {
+          0.541846 0.779395
+          <Tangent> { 0.239501 0.153166 0.958739 }
+          <Binormal> { -0.524961 -0.725941 0.247114 }
+        }
+        <Normal> { -0.822260 0.505936 -0.260506 }
+      }
+      <Vertex> 3605 {
+        0.132413804531 0.265632838011 3.17337489128
+        <UV>  {
+          0.542001 0.779507
+          <Tangent> { 0.278185 0.348570 0.895048 }
+          <Binormal> { -0.453928 -0.620460 0.382717 }
+        }
+        <Normal> { -0.831263 0.334178 -0.444166 }
+      }
+      <Vertex> 3606 {
+        0.100032962859 0.0598407909274 3.22907686234
+        <UV>  {
+          0.501925 0.777049
+          <Tangent> { -0.190881 0.092821 0.977215 }
+          <Binormal> { 0.008929 0.991014 -0.092387 }
+        }
+        <Normal> { 0.995331 0.000000 0.096194 }
+      }
+      <Vertex> 3607 {
+        0.156118109822 0.0728265345097 3.18152976036
+        <UV>  {
+          0.513938 0.793639
+          <Tangent> { -0.186873 -0.044763 0.981364 }
+          <Binormal> { -0.512585 0.799896 -0.061122 }
+        }
+        <Normal> { 0.839442 0.528153 -0.127903 }
+      }
+      <Vertex> 3608 {
+        0.164794638753 0.0770456641912 3.22594857216
+        <UV>  {
+          0.506322 0.799711
+          <Tangent> { -0.189814 0.041875 0.980927 }
+          <Binormal> { -0.538162 0.825739 -0.139387 }
+        }
+        <Normal> { 0.833888 0.550371 0.040864 }
+      }
+      <Vertex> 3609 {
+        0.164794638753 0.0770456641912 3.22594857216
+        <UV>  {
+          0.539295 0.767086
+          <Tangent> { 0.118005 0.056904 0.991381 }
+          <Binormal> { -0.543302 0.821878 0.017495 }
+        }
+        <Normal> { 0.833888 0.550371 0.040864 }
+      }
+      <Vertex> 3610 {
+        0.156118109822 0.0728265345097 3.18152976036
+        <UV>  {
+          0.544248 0.767086
+          <Tangent> { 0.528655 0.404773 0.746111 }
+          <Binormal> { -0.445833 0.693934 -0.060573 }
+        }
+        <Normal> { 0.839442 0.528153 -0.127903 }
+      }
+      <Vertex> 3611 {
+        0.197175472975 0.118531383574 3.20527076721
+        <UV>  {
+          0.542447 0.776737
+          <Tangent> { 0.481295 0.343132 0.806607 }
+          <Binormal> { -0.725085 0.558741 0.194962 }
+        }
+        <Normal> { 0.553270 0.799524 -0.233680 }
+      }
+      <Vertex> 3612 {
+        0.197175472975 0.118531383574 3.20527076721
+        <UV>  {
+          0.542447 0.776737
+          <Tangent> { 0.481295 0.343132 0.806607 }
+          <Binormal> { -0.725085 0.558741 0.194962 }
+        }
+        <Normal> { 0.553270 0.799524 -0.233680 }
+      }
+      <Vertex> 3613 {
+        0.212203517556 0.125839084387 3.28220677376
+        <UV>  {
+          0.541230 0.776688
+          <Tangent> { 0.039806 -0.006076 0.999189 }
+          <Binormal> { -0.793636 0.606576 0.035305 }
+        }
+        <Normal> { 0.607501 0.794214 0.010865 }
+      }
+      <Vertex> 3614 {
+        0.164794638753 0.0770456641912 3.22594857216
+        <UV>  {
+          0.539295 0.767086
+          <Tangent> { 0.118005 0.056904 0.991381 }
+          <Binormal> { -0.543302 0.821878 0.017495 }
+        }
+        <Normal> { 0.833888 0.550371 0.040864 }
+      }
+      <Vertex> 3615 {
+        0.212203517556 0.125839084387 3.28220677376
+        <UV>  {
+          0.541230 0.776688
+          <Tangent> { 0.039806 -0.006076 0.999189 }
+          <Binormal> { -0.793636 0.606576 0.035305 }
+        }
+        <Normal> { 0.607501 0.794214 0.010865 }
+      }
+      <Vertex> 3616 {
+        0.197175472975 0.118531383574 3.20527076721
+        <UV>  {
+          0.542447 0.776737
+          <Tangent> { 0.481295 0.343132 0.806607 }
+          <Binormal> { -0.725085 0.558741 0.194962 }
+        }
+        <Normal> { 0.553270 0.799524 -0.233680 }
+      }
+      <Vertex> 3617 {
+        0.212203517556 0.153288006783 3.18169426918
+        <UV>  {
+          0.542117 0.778183
+          <Tangent> { 0.381120 0.282528 0.880298 }
+          <Binormal> { -0.907394 0.296104 0.297818 }
+        }
+        <Normal> { 0.171300 0.908414 -0.381268 }
+      }
+      <Vertex> 3618 {
+        0.212203517556 0.153288006783 3.18169426918
+        <UV>  {
+          0.542117 0.778183
+          <Tangent> { 0.381120 0.282528 0.880298 }
+          <Binormal> { -0.907394 0.296104 0.297818 }
+        }
+        <Normal> { 0.171300 0.908414 -0.381268 }
+      }
+      <Vertex> 3619 {
+        0.229556322098 0.161726236343 3.27053189278
+        <UV>  {
+          0.541467 0.778168
+          <Tangent> { 0.044178 -0.041247 0.998172 }
+          <Binormal> { -0.995230 0.074359 0.047120 }
+        }
+        <Normal> { 0.074313 0.997223 -0.004120 }
+      }
+      <Vertex> 3620 {
+        0.212203517556 0.125839084387 3.28220677376
+        <UV>  {
+          0.541230 0.776688
+          <Tangent> { 0.039806 -0.006076 0.999189 }
+          <Binormal> { -0.793636 0.606576 0.035305 }
+        }
+        <Normal> { 0.607501 0.794214 0.010865 }
+      }
+      <Vertex> 3621 {
+        0.229556322098 0.161726236343 3.27053189278
+        <UV>  {
+          0.541467 0.778168
+          <Tangent> { 0.044178 -0.041247 0.998172 }
+          <Binormal> { -0.995230 0.074359 0.047120 }
+        }
+        <Normal> { 0.074313 0.997223 -0.004120 }
+      }
+      <Vertex> 3622 {
+        0.212203517556 0.153288006783 3.18169426918
+        <UV>  {
+          0.542117 0.778183
+          <Tangent> { 0.381120 0.282528 0.880298 }
+          <Binormal> { -0.907394 0.296104 0.297818 }
+        }
+        <Normal> { 0.171300 0.908414 -0.381268 }
+      }
+      <Vertex> 3623 {
+        0.197175472975 0.218628123403 3.18192148209
+        <UV>  {
+          0.541949 0.778895
+          <Tangent> { 0.283604 0.245121 0.927084 }
+          <Binormal> { -0.831672 -0.328406 0.341247 }
+        }
+        <Normal> { -0.470290 0.796777 -0.379376 }
+      }
+      <Vertex> 3624 {
+        0.197175472975 0.218628123403 3.18192148209
+        <UV>  {
+          0.541949 0.778895
+          <Tangent> { 0.283604 0.245121 0.927084 }
+          <Binormal> { -0.831672 -0.328406 0.341247 }
+        }
+        <Normal> { -0.470290 0.796777 -0.379376 }
+      }
+      <Vertex> 3625 {
+        0.212203517556 0.225935831666 3.2588570118
+        <UV>  {
+          0.541579 0.778901
+          <Tangent> { 0.110281 -0.067995 0.991572 }
+          <Binormal> { -0.855647 -0.490370 0.061538 }
+        }
+        <Normal> { -0.498978 0.865658 -0.039918 }
+      }
+      <Vertex> 3626 {
+        0.229556322098 0.161726236343 3.27053189278
+        <UV>  {
+          0.541467 0.778168
+          <Tangent> { 0.044178 -0.041247 0.998172 }
+          <Binormal> { -0.995230 0.074359 0.047120 }
+        }
+        <Normal> { 0.074313 0.997223 -0.004120 }
+      }
+      <Vertex> 3627 {
+        0.212203517556 0.225935831666 3.2588570118
+        <UV>  {
+          0.541579 0.778901
+          <Tangent> { 0.110281 -0.067995 0.991572 }
+          <Binormal> { -0.855647 -0.490370 0.061538 }
+        }
+        <Normal> { -0.498978 0.865658 -0.039918 }
+      }
+      <Vertex> 3628 {
+        0.197175472975 0.218628123403 3.18192148209
+        <UV>  {
+          0.541949 0.778895
+          <Tangent> { 0.283604 0.245121 0.927084 }
+          <Binormal> { -0.831672 -0.328406 0.341247 }
+        }
+        <Normal> { -0.470290 0.796777 -0.379376 }
+      }
+      <Vertex> 3629 {
+        0.156118124723 0.268721431494 3.20589160919
+        <UV>  {
+          0.541846 0.779395
+          <Tangent> { 0.239501 0.153166 0.958739 }
+          <Binormal> { -0.524961 -0.725941 0.247114 }
+        }
+        <Normal> { -0.822260 0.505936 -0.260506 }
+      }
+      <Vertex> 3630 {
+        0.156118124723 0.268721431494 3.20589160919
+        <UV>  {
+          0.541846 0.779395
+          <Tangent> { 0.239501 0.153166 0.958739 }
+          <Binormal> { -0.524961 -0.725941 0.247114 }
+        }
+        <Normal> { -0.822260 0.505936 -0.260506 }
+      }
+      <Vertex> 3631 {
+        0.164794653654 0.272940546274 3.25031065941
+        <UV>  {
+          0.541671 0.779405
+          <Tangent> { 0.174853 -0.045573 0.983539 }
+          <Binormal> { -0.533218 -0.814287 0.057064 }
+        }
+        <Normal> { -0.837123 0.544542 -0.051790 }
+      }
+      <Vertex> 3632 {
+        0.212203517556 0.225935831666 3.2588570118
+        <UV>  {
+          0.541579 0.778901
+          <Tangent> { 0.110281 -0.067995 0.991572 }
+          <Binormal> { -0.855647 -0.490370 0.061538 }
+        }
+        <Normal> { -0.498978 0.865658 -0.039918 }
+      }
+      <Vertex> 3633 {
+        0.100032970309 0.290145397186 3.24718236923
+        <UV>  {
+          0.541772 0.779851
+          <Tangent> { 0.221647 0.092207 0.970758 }
+          <Binormal> { -0.008870 -0.944904 0.091776 }
+        }
+        <Normal> { -0.995331 0.000000 -0.096194 }
+      }
+      <Vertex> 3634 {
+        0.164794653654 0.272940546274 3.25031065941
+        <UV>  {
+          0.541671 0.779405
+          <Tangent> { 0.174853 -0.045573 0.983539 }
+          <Binormal> { -0.533218 -0.814287 0.057064 }
+        }
+        <Normal> { -0.837123 0.544542 -0.051790 }
+      }
+      <Vertex> 3635 {
+        0.156118124723 0.268721431494 3.20589160919
+        <UV>  {
+          0.541846 0.779395
+          <Tangent> { 0.239501 0.153166 0.958739 }
+          <Binormal> { -0.524961 -0.725941 0.247114 }
+        }
+        <Normal> { -0.822260 0.505936 -0.260506 }
+      }
+      <Vertex> 3636 {
+        0.100032962859 0.0598407909274 3.22907686234
+        <UV>  {
+          0.501925 0.777049
+          <Tangent> { -0.190881 0.092821 0.977215 }
+          <Binormal> { 0.008929 0.991014 -0.092387 }
+        }
+        <Normal> { 0.995331 0.000000 0.096194 }
+      }
+      <Vertex> 3637 {
+        0.164794638753 0.0770456641912 3.22594857216
+        <UV>  {
+          0.506322 0.799711
+          <Tangent> { -0.189814 0.041875 0.980927 }
+          <Binormal> { -0.538162 0.825739 -0.139387 }
+        }
+        <Normal> { 0.833888 0.550371 0.040864 }
+      }
+      <Vertex> 3638 {
+        0.156118109822 0.0812647566199 3.27036762238
+        <UV>  {
+          0.497528 0.799711
+          <Tangent> { -0.191452 0.143959 0.970887 }
+          <Binormal> { -0.354542 0.909999 -0.204844 }
+        }
+        <Normal> { 0.900540 0.392804 0.186346 }
+      }
+      <Vertex> 3639 {
+        0.156118109822 0.0812647566199 3.27036762238
+        <UV>  {
+          0.535006 0.770507
+          <Tangent> { -0.529525 -0.268214 0.804776 }
+          <Binormal> { -0.366100 0.823408 0.033538 }
+        }
+        <Normal> { 0.900540 0.392804 0.186346 }
+      }
+      <Vertex> 3640 {
+        0.164794638753 0.0770456641912 3.22594857216
+        <UV>  {
+          0.539295 0.767086
+          <Tangent> { 0.118005 0.056904 0.991381 }
+          <Binormal> { -0.543302 0.821878 0.017495 }
+        }
+        <Normal> { 0.833888 0.550371 0.040864 }
+      }
+      <Vertex> 3641 {
+        0.212203517556 0.125839084387 3.28220677376
+        <UV>  {
+          0.541230 0.776688
+          <Tangent> { 0.039806 -0.006076 0.999189 }
+          <Binormal> { -0.793636 0.606576 0.035305 }
+        }
+        <Normal> { 0.607501 0.794214 0.010865 }
+      }
+      <Vertex> 3642 {
+        0.212203517556 0.125839084387 3.28220677376
+        <UV>  {
+          0.541230 0.776688
+          <Tangent> { 0.039806 -0.006076 0.999189 }
+          <Binormal> { -0.793636 0.606576 0.035305 }
+        }
+        <Normal> { 0.607501 0.794214 0.010865 }
+      }
+      <Vertex> 3643 {
+        0.197175472975 0.120560660958 3.35914254189
+        <UV>  {
+          0.540157 0.777487
+          <Tangent> { -0.423460 -0.266772 0.865745 }
+          <Binormal> { -0.674119 0.708639 -0.111369 }
+        }
+        <Normal> { 0.658315 0.677725 0.327555 }
+      }
+      <Vertex> 3644 {
+        0.156118109822 0.0812647566199 3.27036762238
+        <UV>  {
+          0.535006 0.770507
+          <Tangent> { -0.529525 -0.268214 0.804776 }
+          <Binormal> { -0.366100 0.823408 0.033538 }
+        }
+        <Normal> { 0.900540 0.392804 0.186346 }
+      }
+      <Vertex> 3645 {
+        0.197175472975 0.120560660958 3.35914254189
+        <UV>  {
+          0.540157 0.777487
+          <Tangent> { -0.423460 -0.266772 0.865745 }
+          <Binormal> { -0.674119 0.708639 -0.111369 }
+        }
+        <Normal> { 0.658315 0.677725 0.327555 }
+      }
+      <Vertex> 3646 {
+        0.212203517556 0.125839084387 3.28220677376
+        <UV>  {
+          0.541230 0.776688
+          <Tangent> { 0.039806 -0.006076 0.999189 }
+          <Binormal> { -0.793636 0.606576 0.035305 }
+        }
+        <Normal> { 0.607501 0.794214 0.010865 }
+      }
+      <Vertex> 3647 {
+        0.229556322098 0.161726236343 3.27053189278
+        <UV>  {
+          0.541467 0.778168
+          <Tangent> { 0.044178 -0.041247 0.998172 }
+          <Binormal> { -0.995230 0.074359 0.047120 }
+        }
+        <Normal> { 0.074313 0.997223 -0.004120 }
+      }
+      <Vertex> 3648 {
+        0.229556322098 0.161726236343 3.27053189278
+        <UV>  {
+          0.541467 0.778168
+          <Tangent> { 0.044178 -0.041247 0.998172 }
+          <Binormal> { -0.995230 0.074359 0.047120 }
+        }
+        <Normal> { 0.074313 0.997223 -0.004120 }
+      }
+      <Vertex> 3649 {
+        0.212203517556 0.170164465904 3.35936999321
+        <UV>  {
+          0.540899 0.778604
+          <Tangent> { -0.226395 -0.376764 0.898217 }
+          <Binormal> { -0.973650 0.073537 -0.214562 }
+        }
+        <Normal> { -0.019959 0.914518 0.404004 }
+      }
+      <Vertex> 3650 {
+        0.197175472975 0.120560660958 3.35914254189
+        <UV>  {
+          0.540157 0.777487
+          <Tangent> { -0.423460 -0.266772 0.865745 }
+          <Binormal> { -0.674119 0.708639 -0.111369 }
+        }
+        <Normal> { 0.658315 0.677725 0.327555 }
+      }
+      <Vertex> 3651 {
+        0.212203517556 0.170164465904 3.35936999321
+        <UV>  {
+          0.540899 0.778604
+          <Tangent> { -0.226395 -0.376764 0.898217 }
+          <Binormal> { -0.973650 0.073537 -0.214562 }
+        }
+        <Normal> { -0.019959 0.914518 0.404004 }
+      }
+      <Vertex> 3652 {
+        0.229556322098 0.161726236343 3.27053189278
+        <UV>  {
+          0.541467 0.778168
+          <Tangent> { 0.044178 -0.041247 0.998172 }
+          <Binormal> { -0.995230 0.074359 0.047120 }
+        }
+        <Normal> { 0.074313 0.997223 -0.004120 }
+      }
+      <Vertex> 3653 {
+        0.212203517556 0.225935831666 3.2588570118
+        <UV>  {
+          0.541579 0.778901
+          <Tangent> { 0.110281 -0.067995 0.991572 }
+          <Binormal> { -0.855647 -0.490370 0.061538 }
+        }
+        <Normal> { -0.498978 0.865658 -0.039918 }
+      }
+      <Vertex> 3654 {
+        0.212203517556 0.225935831666 3.2588570118
+        <UV>  {
+          0.541579 0.778901
+          <Tangent> { 0.110281 -0.067995 0.991572 }
+          <Binormal> { -0.855647 -0.490370 0.061538 }
+        }
+        <Normal> { -0.498978 0.865658 -0.039918 }
+      }
+      <Vertex> 3655 {
+        0.197175472975 0.233243539929 3.33579301834
+        <UV>  {
+          0.541261 0.779161
+          <Tangent> { -0.003378 -0.368376 0.929671 }
+          <Binormal> { -0.821740 -0.528563 -0.212426 }
+        }
+        <Normal> { -0.569597 0.769555 0.288583 }
+      }
+      <Vertex> 3656 {
+        0.212203517556 0.170164465904 3.35936999321
+        <UV>  {
+          0.540899 0.778604
+          <Tangent> { -0.226395 -0.376764 0.898217 }
+          <Binormal> { -0.973650 0.073537 -0.214562 }
+        }
+        <Normal> { -0.019959 0.914518 0.404004 }
+      }
+      <Vertex> 3657 {
+        0.197175472975 0.233243539929 3.33579301834
+        <UV>  {
+          0.541261 0.779161
+          <Tangent> { -0.003378 -0.368376 0.929671 }
+          <Binormal> { -0.821740 -0.528563 -0.212426 }
+        }
+        <Normal> { -0.569597 0.769555 0.288583 }
+      }
+      <Vertex> 3658 {
+        0.212203517556 0.225935831666 3.2588570118
+        <UV>  {
+          0.541579 0.778901
+          <Tangent> { 0.110281 -0.067995 0.991572 }
+          <Binormal> { -0.855647 -0.490370 0.061538 }
+        }
+        <Normal> { -0.498978 0.865658 -0.039918 }
+      }
+      <Vertex> 3659 {
+        0.164794653654 0.272940546274 3.25031065941
+        <UV>  {
+          0.541671 0.779405
+          <Tangent> { 0.174853 -0.045573 0.983539 }
+          <Binormal> { -0.533218 -0.814287 0.057064 }
+        }
+        <Normal> { -0.837123 0.544542 -0.051790 }
+      }
+      <Vertex> 3660 {
+        0.164794653654 0.272940546274 3.25031065941
+        <UV>  {
+          0.541671 0.779405
+          <Tangent> { 0.174853 -0.045573 0.983539 }
+          <Binormal> { -0.533218 -0.814287 0.057064 }
+        }
+        <Normal> { -0.837123 0.544542 -0.051790 }
+      }
+      <Vertex> 3661 {
+        0.156118124723 0.277159661055 3.29472947121
+        <UV>  {
+          0.541523 0.779534
+          <Tangent> { 0.141534 -0.215829 0.966119 }
+          <Binormal> { -0.472522 -0.868405 -0.124777 }
+        }
+        <Normal> { -0.877743 0.456893 0.144139 }
+      }
+      <Vertex> 3662 {
+        0.197175472975 0.233243539929 3.33579301834
+        <UV>  {
+          0.541261 0.779161
+          <Tangent> { -0.003378 -0.368376 0.929671 }
+          <Binormal> { -0.821740 -0.528563 -0.212426 }
+        }
+        <Normal> { -0.569597 0.769555 0.288583 }
+      }
+      <Vertex> 3663 {
+        0.100032970309 0.290145397186 3.24718236923
+        <UV>  {
+          0.541772 0.779851
+          <Tangent> { 0.221647 0.092207 0.970758 }
+          <Binormal> { -0.008870 -0.944904 0.091776 }
+        }
+        <Normal> { -0.995331 0.000000 -0.096194 }
+      }
+      <Vertex> 3664 {
+        0.156118124723 0.277159661055 3.29472947121
+        <UV>  {
+          0.541523 0.779534
+          <Tangent> { 0.141534 -0.215829 0.966119 }
+          <Binormal> { -0.472522 -0.868405 -0.124777 }
+        }
+        <Normal> { -0.877743 0.456893 0.144139 }
+      }
+      <Vertex> 3665 {
+        0.164794653654 0.272940546274 3.25031065941
+        <UV>  {
+          0.541671 0.779405
+          <Tangent> { 0.174853 -0.045573 0.983539 }
+          <Binormal> { -0.533218 -0.814287 0.057064 }
+        }
+        <Normal> { -0.837123 0.544542 -0.051790 }
+      }
+      <Vertex> 3666 {
+        0.100032962859 0.0598407909274 3.22907686234
+        <UV>  {
+          0.501925 0.777049
+          <Tangent> { -0.190881 0.092821 0.977215 }
+          <Binormal> { 0.008929 0.991014 -0.092387 }
+        }
+        <Normal> { 0.995331 0.000000 0.096194 }
+      }
+      <Vertex> 3667 {
+        0.156118109822 0.0812647566199 3.27036762238
+        <UV>  {
+          0.497528 0.799711
+          <Tangent> { -0.191452 0.143959 0.970887 }
+          <Binormal> { -0.354542 0.909999 -0.204844 }
+        }
+        <Normal> { 0.900540 0.392804 0.186346 }
+      }
+      <Vertex> 3668 {
+        0.132413804531 0.0843533799052 3.3028845787
+        <UV>  {
+          0.489913 0.793639
+          <Tangent> { -0.191233 0.231791 0.953784 }
+          <Binormal> { -0.077132 0.950505 -0.246459 }
+        }
+        <Normal> { 0.930692 0.160710 0.328532 }
+      }
+      <Vertex> 3669 {
+        0.132413804531 0.0843533799052 3.3028845787
+        <UV>  {
+          0.532530 0.776431
+          <Tangent> { -0.672071 -0.398089 -0.624376 }
+          <Binormal> { -0.030441 -0.360305 0.262490 }
+        }
+        <Normal> { 0.930692 0.160710 0.328532 }
+      }
+      <Vertex> 3670 {
+        0.156118109822 0.0812647566199 3.27036762238
+        <UV>  {
+          0.535006 0.770507
+          <Tangent> { -0.529525 -0.268214 0.804776 }
+          <Binormal> { -0.366100 0.823408 0.033538 }
+        }
+        <Normal> { 0.900540 0.392804 0.186346 }
+      }
+      <Vertex> 3671 {
+        0.197175472975 0.120560660958 3.35914254189
+        <UV>  {
+          0.540157 0.777487
+          <Tangent> { -0.423460 -0.266772 0.865745 }
+          <Binormal> { -0.674119 0.708639 -0.111369 }
+        }
+        <Normal> { 0.658315 0.677725 0.327555 }
+      }
+      <Vertex> 3672 {
+        0.197175472975 0.120560660958 3.35914254189
+        <UV>  {
+          0.540157 0.777487
+          <Tangent> { -0.423460 -0.266772 0.865745 }
+          <Binormal> { -0.674119 0.708639 -0.111369 }
+        }
+        <Normal> { 0.658315 0.677725 0.327555 }
+      }
+      <Vertex> 3673 {
+        0.156118124723 0.139982491732 3.41546368599
+        <UV>  {
+          0.539518 0.778918
+          <Tangent> { -0.650530 -0.751169 0.112051 }
+          <Binormal> { -0.528764 0.495326 0.250750 }
+        }
+        <Normal> { 0.661489 0.378368 0.647481 }
+      }
+      <Vertex> 3674 {
+        0.132413804531 0.0843533799052 3.3028845787
+        <UV>  {
+          0.532530 0.776431
+          <Tangent> { -0.672071 -0.398089 -0.624376 }
+          <Binormal> { -0.030441 -0.360305 0.262490 }
+        }
+        <Normal> { 0.930692 0.160710 0.328532 }
+      }
+      <Vertex> 3675 {
+        0.156118124723 0.139982491732 3.41546368599
+        <UV>  {
+          0.539518 0.778918
+          <Tangent> { -0.650530 -0.751169 0.112051 }
+          <Binormal> { -0.528764 0.495326 0.250750 }
+        }
+        <Normal> { 0.661489 0.378368 0.647481 }
+      }
+      <Vertex> 3676 {
+        0.197175472975 0.120560660958 3.35914254189
+        <UV>  {
+          0.540157 0.777487
+          <Tangent> { -0.423460 -0.266772 0.865745 }
+          <Binormal> { -0.674119 0.708639 -0.111369 }
+        }
+        <Normal> { 0.658315 0.677725 0.327555 }
+      }
+      <Vertex> 3677 {
+        0.212203517556 0.170164465904 3.35936999321
+        <UV>  {
+          0.540899 0.778604
+          <Tangent> { -0.226395 -0.376764 0.898217 }
+          <Binormal> { -0.973650 0.073537 -0.214562 }
+        }
+        <Normal> { -0.019959 0.914518 0.404004 }
+      }
+      <Vertex> 3678 {
+        0.212203517556 0.170164465904 3.35936999321
+        <UV>  {
+          0.540899 0.778604
+          <Tangent> { -0.226395 -0.376764 0.898217 }
+          <Binormal> { -0.973650 0.073537 -0.214562 }
+        }
+        <Normal> { -0.019959 0.914518 0.404004 }
+      }
+      <Vertex> 3679 {
+        0.164794638753 0.176341682673 3.42440366745
+        <UV>  {
+          0.540564 0.779374
+          <Tangent> { -0.195966 -0.787687 0.584077 }
+          <Binormal> { -0.979820 0.133774 -0.148336 }
+        }
+        <Normal> { -0.039033 0.600055 0.798975 }
+      }
+      <Vertex> 3680 {
+        0.156118124723 0.139982491732 3.41546368599
+        <UV>  {
+          0.539518 0.778918
+          <Tangent> { -0.650530 -0.751169 0.112051 }
+          <Binormal> { -0.528764 0.495326 0.250750 }
+        }
+        <Normal> { 0.661489 0.378368 0.647481 }
+      }
+      <Vertex> 3681 {
+        0.164794638753 0.176341682673 3.42440366745
+        <UV>  {
+          0.540564 0.779374
+          <Tangent> { -0.195966 -0.787687 0.584077 }
+          <Binormal> { -0.979820 0.133774 -0.148336 }
+        }
+        <Normal> { -0.039033 0.600055 0.798975 }
+      }
+      <Vertex> 3682 {
+        0.212203517556 0.170164465904 3.35936999321
+        <UV>  {
+          0.540899 0.778604
+          <Tangent> { -0.226395 -0.376764 0.898217 }
+          <Binormal> { -0.973650 0.073537 -0.214562 }
+        }
+        <Normal> { -0.019959 0.914518 0.404004 }
+      }
+      <Vertex> 3683 {
+        0.197175472975 0.233243539929 3.33579301834
+        <UV>  {
+          0.541261 0.779161
+          <Tangent> { -0.003378 -0.368376 0.929671 }
+          <Binormal> { -0.821740 -0.528563 -0.212426 }
+        }
+        <Normal> { -0.569597 0.769555 0.288583 }
+      }
+      <Vertex> 3684 {
+        0.197175472975 0.233243539929 3.33579301834
+        <UV>  {
+          0.541261 0.779161
+          <Tangent> { -0.003378 -0.368376 0.929671 }
+          <Binormal> { -0.821740 -0.528563 -0.212426 }
+        }
+        <Normal> { -0.569597 0.769555 0.288583 }
+      }
+      <Vertex> 3685 {
+        0.156118124723 0.238593161106 3.39211392403
+        <UV>  {
+          0.541080 0.779607
+          <Tangent> { 0.049890 -0.601158 0.797571 }
+          <Binormal> { -0.724892 -0.558933 -0.375944 }
+        }
+        <Normal> { -0.664602 0.472762 0.578600 }
+      }
+      <Vertex> 3686 {
+        0.164794638753 0.176341682673 3.42440366745
+        <UV>  {
+          0.540564 0.779374
+          <Tangent> { -0.195966 -0.787687 0.584077 }
+          <Binormal> { -0.979820 0.133774 -0.148336 }
+        }
+        <Normal> { -0.039033 0.600055 0.798975 }
+      }
+      <Vertex> 3687 {
+        0.156118124723 0.238593161106 3.39211392403
+        <UV>  {
+          0.541080 0.779607
+          <Tangent> { 0.049890 -0.601158 0.797571 }
+          <Binormal> { -0.724892 -0.558933 -0.375944 }
+        }
+        <Normal> { -0.664602 0.472762 0.578600 }
+      }
+      <Vertex> 3688 {
+        0.197175472975 0.233243539929 3.33579301834
+        <UV>  {
+          0.541261 0.779161
+          <Tangent> { -0.003378 -0.368376 0.929671 }
+          <Binormal> { -0.821740 -0.528563 -0.212426 }
+        }
+        <Normal> { -0.569597 0.769555 0.288583 }
+      }
+      <Vertex> 3689 {
+        0.156118124723 0.277159661055 3.29472947121
+        <UV>  {
+          0.541523 0.779534
+          <Tangent> { 0.141534 -0.215829 0.966119 }
+          <Binormal> { -0.472522 -0.868405 -0.124777 }
+        }
+        <Normal> { -0.877743 0.456893 0.144139 }
+      }
+      <Vertex> 3690 {
+        0.156118124723 0.277159661055 3.29472947121
+        <UV>  {
+          0.541523 0.779534
+          <Tangent> { 0.141534 -0.215829 0.966119 }
+          <Binormal> { -0.472522 -0.868405 -0.124777 }
+        }
+        <Normal> { -0.877743 0.456893 0.144139 }
+      }
+      <Vertex> 3691 {
+        0.132413804531 0.280248254538 3.32724666595
+        <UV>  {
+          0.541442 0.779749
+          <Tangent> { 0.170820 -0.315112 0.933555 }
+          <Binormal> { -0.322427 -0.912594 -0.249040 }
+        }
+        <Normal> { -0.924558 0.247627 0.289590 }
+      }
+      <Vertex> 3692 {
+        0.156118124723 0.238593161106 3.39211392403
+        <UV>  {
+          0.541080 0.779607
+          <Tangent> { 0.049890 -0.601158 0.797571 }
+          <Binormal> { -0.724892 -0.558933 -0.375944 }
+        }
+        <Normal> { -0.664602 0.472762 0.578600 }
+      }
+      <Vertex> 3693 {
+        0.100032970309 0.290145397186 3.24718236923
+        <UV>  {
+          0.541772 0.779851
+          <Tangent> { 0.221647 0.092207 0.970758 }
+          <Binormal> { -0.008870 -0.944904 0.091776 }
+        }
+        <Normal> { -0.995331 0.000000 -0.096194 }
+      }
+      <Vertex> 3694 {
+        0.132413804531 0.280248254538 3.32724666595
+        <UV>  {
+          0.541442 0.779749
+          <Tangent> { 0.170820 -0.315112 0.933555 }
+          <Binormal> { -0.322427 -0.912594 -0.249040 }
+        }
+        <Normal> { -0.924558 0.247627 0.289590 }
+      }
+      <Vertex> 3695 {
+        0.156118124723 0.277159661055 3.29472947121
+        <UV>  {
+          0.541523 0.779534
+          <Tangent> { 0.141534 -0.215829 0.966119 }
+          <Binormal> { -0.472522 -0.868405 -0.124777 }
+        }
+        <Normal> { -0.877743 0.456893 0.144139 }
+      }
+      <Vertex> 3696 {
+        0.100032962859 0.0598407909274 3.22907686234
+        <UV>  {
+          0.501925 0.777049
+          <Tangent> { -0.190881 0.092821 0.977215 }
+          <Binormal> { 0.008929 0.991014 -0.092387 }
+        }
+        <Normal> { 0.995331 0.000000 0.096194 }
+      }
+      <Vertex> 3697 {
+        0.132413804531 0.0843533799052 3.3028845787
+        <UV>  {
+          0.489913 0.793639
+          <Tangent> { -0.191233 0.231791 0.953784 }
+          <Binormal> { -0.077132 0.950505 -0.246459 }
+        }
+        <Normal> { 0.930692 0.160710 0.328532 }
+      }
+      <Vertex> 3698 {
+        0.100032962859 0.0854838937521 3.31478643417
+        <UV>  {
+          0.485516 0.783121
+          <Tangent> { -0.190416 0.281388 0.940512 }
+          <Binormal> { 0.120333 0.939119 -0.256609 }
+        }
+        <Normal> { 0.918485 -0.009674 0.395306 }
+      }
+      <Vertex> 3699 {
+        0.100032962859 0.0854838937521 3.31478643417
+        <UV>  {
+          0.532530 0.783271
+          <Tangent> { 0.159576 -0.479306 -0.863019 }
+          <Binormal> { -0.197822 -0.855751 0.438691 }
+        }
+        <Normal> { 0.918485 -0.009674 0.395306 }
+      }
+      <Vertex> 3700 {
+        0.132413804531 0.0843533799052 3.3028845787
+        <UV>  {
+          0.532530 0.776431
+          <Tangent> { -0.672071 -0.398089 -0.624376 }
+          <Binormal> { -0.030441 -0.360305 0.262490 }
+        }
+        <Normal> { 0.930692 0.160710 0.328532 }
+      }
+      <Vertex> 3701 {
+        0.156118124723 0.139982491732 3.41546368599
+        <UV>  {
+          0.539518 0.778918
+          <Tangent> { -0.650530 -0.751169 0.112051 }
+          <Binormal> { -0.528764 0.495326 0.250750 }
+        }
+        <Normal> { 0.661489 0.378368 0.647481 }
+      }
+      <Vertex> 3702 {
+        0.156118124723 0.139982491732 3.41546368599
+        <UV>  {
+          0.539518 0.778918
+          <Tangent> { -0.650530 -0.751169 0.112051 }
+          <Binormal> { -0.528764 0.495326 0.250750 }
+        }
+        <Normal> { 0.661489 0.378368 0.647481 }
+      }
+      <Vertex> 3703 {
+        0.100032970309 0.152986124158 3.43607854843
+        <UV>  {
+          0.539482 0.780600
+          <Tangent> { 0.470248 -0.719764 -0.510692 }
+          <Binormal> { -0.509645 -0.691243 0.504948 }
+        }
+        <Normal> { 0.675985 0.039125 0.735832 }
+      }
+      <Vertex> 3704 {
+        0.100032962859 0.0854838937521 3.31478643417
+        <UV>  {
+          0.532530 0.783271
+          <Tangent> { 0.159576 -0.479306 -0.863019 }
+          <Binormal> { -0.197822 -0.855751 0.438691 }
+        }
+        <Normal> { 0.918485 -0.009674 0.395306 }
+      }
+      <Vertex> 3705 {
+        0.100032970309 0.152986124158 3.43607854843
+        <UV>  {
+          0.539482 0.780600
+          <Tangent> { 0.470248 -0.719764 -0.510692 }
+          <Binormal> { -0.509645 -0.691243 0.504948 }
+        }
+        <Normal> { 0.675985 0.039125 0.735832 }
+      }
+      <Vertex> 3706 {
+        0.156118124723 0.139982491732 3.41546368599
+        <UV>  {
+          0.539518 0.778918
+          <Tangent> { -0.650530 -0.751169 0.112051 }
+          <Binormal> { -0.528764 0.495326 0.250750 }
+        }
+        <Normal> { 0.661489 0.378368 0.647481 }
+      }
+      <Vertex> 3707 {
+        0.164794638753 0.176341682673 3.42440366745
+        <UV>  {
+          0.540564 0.779374
+          <Tangent> { -0.195966 -0.787687 0.584077 }
+          <Binormal> { -0.979820 0.133774 -0.148336 }
+        }
+        <Normal> { -0.039033 0.600055 0.798975 }
+      }
+      <Vertex> 3708 {
+        0.164794638753 0.176341682673 3.42440366745
+        <UV>  {
+          0.540564 0.779374
+          <Tangent> { -0.195966 -0.787687 0.584077 }
+          <Binormal> { -0.979820 0.133774 -0.148336 }
+        }
+        <Normal> { -0.039033 0.600055 0.798975 }
+      }
+      <Vertex> 3709 {
+        0.100032970309 0.178602695465 3.44820761681
+        <UV>  {
+          0.540553 0.780272
+          <Tangent> { 0.307941 -0.864358 0.397565 }
+          <Binormal> { -0.868605 -0.329998 -0.044663 }
+        }
+        <Normal> { -0.056825 0.014466 0.998260 }
+      }
+      <Vertex> 3710 {
+        0.100032970309 0.152986124158 3.43607854843
+        <UV>  {
+          0.539482 0.780600
+          <Tangent> { 0.470248 -0.719764 -0.510692 }
+          <Binormal> { -0.509645 -0.691243 0.504948 }
+        }
+        <Normal> { 0.675985 0.039125 0.735832 }
+      }
+      <Vertex> 3711 {
+        0.100032970309 0.178602695465 3.44820761681
+        <UV>  {
+          0.540553 0.780272
+          <Tangent> { 0.307941 -0.864358 0.397565 }
+          <Binormal> { -0.868605 -0.329998 -0.044663 }
+        }
+        <Normal> { -0.056825 0.014466 0.998260 }
+      }
+      <Vertex> 3712 {
+        0.164794638753 0.176341682673 3.42440366745
+        <UV>  {
+          0.540564 0.779374
+          <Tangent> { -0.195966 -0.787687 0.584077 }
+          <Binormal> { -0.979820 0.133774 -0.148336 }
+        }
+        <Normal> { -0.039033 0.600055 0.798975 }
+      }
+      <Vertex> 3713 {
+        0.156118124723 0.238593161106 3.39211392403
+        <UV>  {
+          0.541080 0.779607
+          <Tangent> { 0.049890 -0.601158 0.797571 }
+          <Binormal> { -0.724892 -0.558933 -0.375944 }
+        }
+        <Normal> { -0.664602 0.472762 0.578600 }
+      }
+      <Vertex> 3714 {
+        0.156118124723 0.238593161106 3.39211392403
+        <UV>  {
+          0.541080 0.779607
+          <Tangent> { 0.049890 -0.601158 0.797571 }
+          <Binormal> { -0.724892 -0.558933 -0.375944 }
+        }
+        <Normal> { -0.664602 0.472762 0.578600 }
+      }
+      <Vertex> 3715 {
+        0.100032970309 0.240551277995 3.41272878647
+        <UV>  {
+          0.541084 0.780117
+          <Tangent> { 0.240158 -0.615787 0.750421 }
+          <Binormal> { -0.415005 -0.704304 -0.445130 }
+        }
+        <Normal> { -0.714866 -0.020508 0.698935 }
+      }
+      <Vertex> 3716 {
+        0.100032970309 0.178602695465 3.44820761681
+        <UV>  {
+          0.540553 0.780272
+          <Tangent> { 0.307941 -0.864358 0.397565 }
+          <Binormal> { -0.868605 -0.329998 -0.044663 }
+        }
+        <Normal> { -0.056825 0.014466 0.998260 }
+      }
+      <Vertex> 3717 {
+        0.100032970309 0.240551277995 3.41272878647
+        <UV>  {
+          0.541084 0.780117
+          <Tangent> { 0.240158 -0.615787 0.750421 }
+          <Binormal> { -0.415005 -0.704304 -0.445130 }
+        }
+        <Normal> { -0.714866 -0.020508 0.698935 }
+      }
+      <Vertex> 3718 {
+        0.156118124723 0.238593161106 3.39211392403
+        <UV>  {
+          0.541080 0.779607
+          <Tangent> { 0.049890 -0.601158 0.797571 }
+          <Binormal> { -0.724892 -0.558933 -0.375944 }
+        }
+        <Normal> { -0.664602 0.472762 0.578600 }
+      }
+      <Vertex> 3719 {
+        0.132413804531 0.280248254538 3.32724666595
+        <UV>  {
+          0.541442 0.779749
+          <Tangent> { 0.170820 -0.315112 0.933555 }
+          <Binormal> { -0.322427 -0.912594 -0.249040 }
+        }
+        <Normal> { -0.924558 0.247627 0.289590 }
+      }
+      <Vertex> 3720 {
+        0.132413804531 0.280248254538 3.32724666595
+        <UV>  {
+          0.541442 0.779749
+          <Tangent> { 0.170820 -0.315112 0.933555 }
+          <Binormal> { -0.322427 -0.912594 -0.249040 }
+        }
+        <Normal> { -0.924558 0.247627 0.289590 }
+      }
+      <Vertex> 3721 {
+        0.100032970309 0.281378775835 3.33914852142
+        <UV>  {
+          0.541449 0.779990
+          <Tangent> { 0.235234 -0.296536 0.925598 }
+          <Binormal> { -0.059855 -0.950133 -0.289185 }
+        }
+        <Normal> { -0.941679 -0.042268 0.333781 }
+      }
+      <Vertex> 3722 {
+        0.100032970309 0.240551277995 3.41272878647
+        <UV>  {
+          0.541084 0.780117
+          <Tangent> { 0.240158 -0.615787 0.750421 }
+          <Binormal> { -0.415005 -0.704304 -0.445130 }
+        }
+        <Normal> { -0.714866 -0.020508 0.698935 }
+      }
+      <Vertex> 3723 {
+        0.100032970309 0.290145397186 3.24718236923
+        <UV>  {
+          0.541772 0.779851
+          <Tangent> { 0.221647 0.092207 0.970758 }
+          <Binormal> { -0.008870 -0.944904 0.091776 }
+        }
+        <Normal> { -0.995331 0.000000 -0.096194 }
+      }
+      <Vertex> 3724 {
+        0.100032970309 0.281378775835 3.33914852142
+        <UV>  {
+          0.541449 0.779990
+          <Tangent> { 0.235234 -0.296536 0.925598 }
+          <Binormal> { -0.059855 -0.950133 -0.289185 }
+        }
+        <Normal> { -0.941679 -0.042268 0.333781 }
+      }
+      <Vertex> 3725 {
+        0.132413804531 0.280248254538 3.32724666595
+        <UV>  {
+          0.541442 0.779749
+          <Tangent> { 0.170820 -0.315112 0.933555 }
+          <Binormal> { -0.322427 -0.912594 -0.249040 }
+        }
+        <Normal> { -0.924558 0.247627 0.289590 }
+      }
+      <Vertex> 3726 {
+        -0.969941854477 -1.07175028324 1.7198985815
+        <UV>  {
+          0.592681 0.359208
+          <Tangent> { 0.822938 0.478944 0.305591 }
+          <Binormal> { -0.022208 0.459802 -0.660830 }
+        }
+        <Normal> { 0.944792 -0.253151 -0.207892 }
+      }
+      <Vertex> 3727 {
+        -0.855165183544 -0.94533854723 1.67227327824
+        <UV>  {
+          0.531111 0.391847
+          <Tangent> { 0.402681 0.897357 0.180550 }
+          <Binormal> { -0.788434 0.355026 -0.006079 }
+        }
+        <Normal> { 0.271798 0.590594 -0.759789 }
+      }
+      <Vertex> 3728 {
+        -0.830201804638 -0.962691545486 1.72073435783
+        <UV>  {
+          0.527026 0.374196
+          <Tangent> { 0.378562 0.902919 0.203538 }
+          <Binormal> { -0.487379 0.220063 -0.069746 }
+        }
+        <Normal> { 0.426557 0.833155 -0.351970 }
+      }
+      <Vertex> 3729 {
+        -0.830201804638 -0.962691545486 1.72073435783
+        <UV>  {
+          0.527026 0.374196
+          <Tangent> { 0.378562 0.902919 0.203538 }
+          <Binormal> { -0.487379 0.220063 -0.069746 }
+        }
+        <Normal> { 0.426557 0.833155 -0.351970 }
+      }
+      <Vertex> 3730 {
+        -0.855165183544 -0.94533854723 1.67227327824
+        <UV>  {
+          0.531111 0.391847
+          <Tangent> { 0.402681 0.897357 0.180550 }
+          <Binormal> { -0.788434 0.355026 -0.006079 }
+        }
+        <Normal> { 0.271798 0.590594 -0.759789 }
+      }
+      <Vertex> 3731 {
+        -0.617474913597 -0.0582663118839 1.86747777462
+        <UV>  {
+          0.387857 0.382056
+          <Tangent> { -0.022670 0.976673 0.213534 }
+          <Binormal> { -0.556995 -0.111063 0.448852 }
+        }
+        <Normal> { -0.477737 0.782525 -0.399213 }
+      }
+      <Vertex> 3732 {
+        -0.617474913597 -0.0582663118839 1.86747777462
+        <UV>  {
+          0.387857 0.382056
+          <Tangent> { -0.022670 0.976673 0.213534 }
+          <Binormal> { -0.556995 -0.111063 0.448852 }
+        }
+        <Normal> { -0.477737 0.782525 -0.399213 }
+      }
+      <Vertex> 3733 {
+        -0.592511415482 -0.0756193101406 1.91593897343
+        <UV>  {
+          0.392818 0.365600
+          <Tangent> { 0.014490 0.985084 0.171462 }
+          <Binormal> { -0.180755 -0.060321 0.361833 }
+        }
+        <Normal> { -0.353557 0.935148 -0.020722 }
+      }
+      <Vertex> 3734 {
+        -0.830201804638 -0.962691545486 1.72073435783
+        <UV>  {
+          0.527026 0.374196
+          <Tangent> { 0.378562 0.902919 0.203538 }
+          <Binormal> { -0.487379 0.220063 -0.069746 }
+        }
+        <Normal> { 0.426557 0.833155 -0.351970 }
+      }
+      <Vertex> 3735 {
+        -0.697165191174 -0.0537342838943 1.94391787052
+        <UV>  {
+          0.349367 0.356712
+          <Tangent> { -0.886606 0.312585 -0.340912 }
+          <Binormal> { 0.151286 0.506409 0.070883 }
+        }
+        <Normal> { -0.944792 0.253151 0.207892 }
+      }
+      <Vertex> 3736 {
+        -0.592511415482 -0.0756193101406 1.91593897343
+        <UV>  {
+          0.392818 0.365600
+          <Tangent> { 0.014490 0.985084 0.171462 }
+          <Binormal> { -0.180755 -0.060321 0.361833 }
+        }
+        <Normal> { -0.353557 0.935148 -0.020722 }
+      }
+      <Vertex> 3737 {
+        -0.617474913597 -0.0582663118839 1.86747777462
+        <UV>  {
+          0.387857 0.382056
+          <Tangent> { -0.022670 0.976673 0.213534 }
+          <Binormal> { -0.556995 -0.111063 0.448852 }
+        }
+        <Normal> { -0.477737 0.782525 -0.399213 }
+      }
+      <Vertex> 3738 {
+        -0.969941854477 -1.07175028324 1.7198985815
+        <UV>  {
+          0.592681 0.359208
+          <Tangent> { 0.822938 0.478944 0.305591 }
+          <Binormal> { -0.022208 0.459802 -0.660830 }
+        }
+        <Normal> { 0.944792 -0.253151 -0.207892 }
+      }
+      <Vertex> 3739 {
+        -0.830201804638 -0.962691545486 1.72073435783
+        <UV>  {
+          0.527026 0.374196
+          <Tangent> { 0.378562 0.902919 0.203538 }
+          <Binormal> { -0.487379 0.220063 -0.069746 }
+        }
+        <Normal> { 0.426557 0.833155 -0.351970 }
+      }
+      <Vertex> 3740 {
+        -0.833280324936 -0.974180579185 1.77669250965
+        <UV>  {
+          0.526099 0.357575
+          <Tangent> { 0.377592 0.901873 0.209882 }
+          <Binormal> { -0.053072 0.060999 -0.166634 }
+        }
+        <Normal> { 0.534135 0.834468 0.135350 }
+      }
+      <Vertex> 3741 {
+        -0.833280324936 -0.974180579185 1.77669250965
+        <UV>  {
+          0.526099 0.357575
+          <Tangent> { 0.377592 0.901873 0.209882 }
+          <Binormal> { -0.053072 0.060999 -0.166634 }
+        }
+        <Normal> { 0.534135 0.834468 0.135350 }
+      }
+      <Vertex> 3742 {
+        -0.830201804638 -0.962691545486 1.72073435783
+        <UV>  {
+          0.527026 0.374196
+          <Tangent> { 0.378562 0.902919 0.203538 }
+          <Binormal> { -0.487379 0.220063 -0.069746 }
+        }
+        <Normal> { 0.426557 0.833155 -0.351970 }
+      }
+      <Vertex> 3743 {
+        -0.592511415482 -0.0756193101406 1.91593897343
+        <UV>  {
+          0.392818 0.365600
+          <Tangent> { 0.014490 0.985084 0.171462 }
+          <Binormal> { -0.180755 -0.060321 0.361833 }
+        }
+        <Normal> { -0.353557 0.935148 -0.020722 }
+      }
+      <Vertex> 3744 {
+        -0.592511415482 -0.0756193101406 1.91593897343
+        <UV>  {
+          0.392818 0.365600
+          <Tangent> { 0.014490 0.985084 0.171462 }
+          <Binormal> { -0.180755 -0.060321 0.361833 }
+        }
+        <Normal> { -0.353557 0.935148 -0.020722 }
+      }
+      <Vertex> 3745 {
+        -0.59558993578 -0.087108194828 1.97189700603
+        <UV>  {
+          0.393240 0.349894
+          <Tangent> { 0.030543 0.985753 0.165403 }
+          <Binormal> { 0.244360 -0.058050 0.300838 }
+        }
+        <Normal> { -0.278054 0.875637 0.394818 }
+      }
+      <Vertex> 3746 {
+        -0.833280324936 -0.974180579185 1.77669250965
+        <UV>  {
+          0.526099 0.357575
+          <Tangent> { 0.377592 0.901873 0.209882 }
+          <Binormal> { -0.053072 0.060999 -0.166634 }
+        }
+        <Normal> { 0.534135 0.834468 0.135350 }
+      }
+      <Vertex> 3747 {
+        -0.697165191174 -0.0537342838943 1.94391787052
+        <UV>  {
+          0.349367 0.356712
+          <Tangent> { -0.886606 0.312585 -0.340912 }
+          <Binormal> { 0.151286 0.506409 0.070883 }
+        }
+        <Normal> { -0.944792 0.253151 0.207892 }
+      }
+      <Vertex> 3748 {
+        -0.59558993578 -0.087108194828 1.97189700603
+        <UV>  {
+          0.393240 0.349894
+          <Tangent> { 0.030543 0.985753 0.165403 }
+          <Binormal> { 0.244360 -0.058050 0.300838 }
+        }
+        <Normal> { -0.278054 0.875637 0.394818 }
+      }
+      <Vertex> 3749 {
+        -0.592511415482 -0.0756193101406 1.91593897343
+        <UV>  {
+          0.392818 0.365600
+          <Tangent> { 0.014490 0.985084 0.171462 }
+          <Binormal> { -0.180755 -0.060321 0.361833 }
+        }
+        <Normal> { -0.353557 0.935148 -0.020722 }
+      }
+      <Vertex> 3750 {
+        -0.969941854477 -1.07175028324 1.7198985815
+        <UV>  {
+          0.592681 0.359208
+          <Tangent> { 0.822938 0.478944 0.305591 }
+          <Binormal> { -0.022208 0.459802 -0.660830 }
+        }
+        <Normal> { 0.944792 -0.253151 -0.207892 }
+      }
+      <Vertex> 3751 {
+        -0.833280324936 -0.974180579185 1.77669250965
+        <UV>  {
+          0.526099 0.357575
+          <Tangent> { 0.377592 0.901873 0.209882 }
+          <Binormal> { -0.053072 0.060999 -0.166634 }
+        }
+        <Normal> { 0.534135 0.834468 0.135350 }
+      }
+      <Vertex> 3752 {
+        -0.86357575655 -0.976727068424 1.82515347004
+        <UV>  {
+          0.527974 0.340966
+          <Tangent> { 0.397555 0.888331 0.229822 }
+          <Binormal> { 0.371275 -0.097242 -0.266377 }
+        }
+        <Normal> { 0.565783 0.594195 0.571673 }
+      }
+      <Vertex> 3753 {
+        -0.86357575655 -0.976727068424 1.82515347004
+        <UV>  {
+          0.527974 0.340966
+          <Tangent> { 0.397555 0.888331 0.229822 }
+          <Binormal> { 0.371275 -0.097242 -0.266377 }
+        }
+        <Normal> { 0.565783 0.594195 0.571673 }
+      }
+      <Vertex> 3754 {
+        -0.833280324936 -0.974180579185 1.77669250965
+        <UV>  {
+          0.526099 0.357575
+          <Tangent> { 0.377592 0.901873 0.209882 }
+          <Binormal> { -0.053072 0.060999 -0.166634 }
+        }
+        <Normal> { 0.534135 0.834468 0.135350 }
+      }
+      <Vertex> 3755 {
+        -0.59558993578 -0.087108194828 1.97189700603
+        <UV>  {
+          0.393240 0.349894
+          <Tangent> { 0.030543 0.985753 0.165403 }
+          <Binormal> { 0.244360 -0.058050 0.300838 }
+        }
+        <Normal> { -0.278054 0.875637 0.394818 }
+      }
+      <Vertex> 3756 {
+        -0.59558993578 -0.087108194828 1.97189700603
+        <UV>  {
+          0.393240 0.349894
+          <Tangent> { 0.030543 0.985753 0.165403 }
+          <Binormal> { 0.244360 -0.058050 0.300838 }
+        }
+        <Normal> { -0.278054 0.875637 0.394818 }
+      }
+      <Vertex> 3757 {
+        -0.625885486603 -0.0896547213197 2.02035808563
+        <UV>  {
+          0.389218 0.333374
+          <Tangent> { 0.022333 0.990263 0.137404 }
+          <Binormal> { 0.643820 -0.053741 0.282664 }
+        }
+        <Normal> { -0.271462 0.619922 0.736167 }
+      }
+      <Vertex> 3758 {
+        -0.86357575655 -0.976727068424 1.82515347004
+        <UV>  {
+          0.527974 0.340966
+          <Tangent> { 0.397555 0.888331 0.229822 }
+          <Binormal> { 0.371275 -0.097242 -0.266377 }
+        }
+        <Normal> { 0.565783 0.594195 0.571673 }
+      }
+      <Vertex> 3759 {
+        -0.697165191174 -0.0537342838943 1.94391787052
+        <UV>  {
+          0.349367 0.356712
+          <Tangent> { -0.886606 0.312585 -0.340912 }
+          <Binormal> { 0.151286 0.506409 0.070883 }
+        }
+        <Normal> { -0.944792 0.253151 0.207892 }
+      }
+      <Vertex> 3760 {
+        -0.625885486603 -0.0896547213197 2.02035808563
+        <UV>  {
+          0.389218 0.333374
+          <Tangent> { 0.022333 0.990263 0.137404 }
+          <Binormal> { 0.643820 -0.053741 0.282664 }
+        }
+        <Normal> { -0.271462 0.619922 0.736167 }
+      }
+      <Vertex> 3761 {
+        -0.59558993578 -0.087108194828 1.97189700603
+        <UV>  {
+          0.393240 0.349894
+          <Tangent> { 0.030543 0.985753 0.165403 }
+          <Binormal> { 0.244360 -0.058050 0.300838 }
+        }
+        <Normal> { -0.278054 0.875637 0.394818 }
+      }
+      <Vertex> 3762 {
+        -0.969941854477 -1.07175028324 1.7198985815
+        <UV>  {
+          0.592681 0.359208
+          <Tangent> { 0.822938 0.478944 0.305591 }
+          <Binormal> { -0.022208 0.459802 -0.660830 }
+        }
+        <Normal> { 0.944792 -0.253151 -0.207892 }
+      }
+      <Vertex> 3763 {
+        -0.86357575655 -0.976727068424 1.82515347004
+        <UV>  {
+          0.527974 0.340966
+          <Tangent> { 0.397555 0.888331 0.229822 }
+          <Binormal> { 0.371275 -0.097242 -0.266377 }
+        }
+        <Normal> { 0.565783 0.594195 0.571673 }
+      }
+      <Vertex> 3764 {
+        -0.912970602512 -0.969648718834 1.85313260555
+        <UV>  {
+          0.533119 0.323370
+          <Tangent> { 0.415346 0.864203 0.283974 }
+          <Binormal> { 0.675744 -0.203221 -0.369905 }
+        }
+        <Normal> { 0.512955 0.176702 0.839991 }
+      }
+      <Vertex> 3765 {
+        -0.912970602512 -0.969648718834 1.85313260555
+        <UV>  {
+          0.533119 0.323370
+          <Tangent> { 0.415346 0.864203 0.283974 }
+          <Binormal> { 0.675744 -0.203221 -0.369905 }
+        }
+        <Normal> { 0.512955 0.176702 0.839991 }
+      }
+      <Vertex> 3766 {
+        -0.86357575655 -0.976727068424 1.82515347004
+        <UV>  {
+          0.527974 0.340966
+          <Tangent> { 0.397555 0.888331 0.229822 }
+          <Binormal> { 0.371275 -0.097242 -0.266377 }
+        }
+        <Normal> { 0.565783 0.594195 0.571673 }
+      }
+      <Vertex> 3767 {
+        -0.625885486603 -0.0896547213197 2.02035808563
+        <UV>  {
+          0.389218 0.333374
+          <Tangent> { 0.022333 0.990263 0.137404 }
+          <Binormal> { 0.643820 -0.053741 0.282664 }
+        }
+        <Normal> { -0.271462 0.619922 0.736167 }
+      }
+      <Vertex> 3768 {
+        -0.625885486603 -0.0896547213197 2.02035808563
+        <UV>  {
+          0.389218 0.333374
+          <Tangent> { 0.022333 0.990263 0.137404 }
+          <Binormal> { 0.643820 -0.053741 0.282664 }
+        }
+        <Normal> { -0.271462 0.619922 0.736167 }
+      }
+      <Vertex> 3769 {
+        -0.675280153751 -0.0825763270259 2.04833698273
+        <UV>  {
+          0.378118 0.314127
+          <Tangent> { 0.076038 0.988294 0.132263 }
+          <Binormal> { 0.869875 -0.113714 0.349607 }
+        }
+        <Normal> { -0.335551 0.236518 0.911832 }
+      }
+      <Vertex> 3770 {
+        -0.912970602512 -0.969648718834 1.85313260555
+        <UV>  {
+          0.533119 0.323370
+          <Tangent> { 0.415346 0.864203 0.283974 }
+          <Binormal> { 0.675744 -0.203221 -0.369905 }
+        }
+        <Normal> { 0.512955 0.176702 0.839991 }
+      }
+      <Vertex> 3771 {
+        -0.697165191174 -0.0537342838943 1.94391787052
+        <UV>  {
+          0.349367 0.356712
+          <Tangent> { -0.886606 0.312585 -0.340912 }
+          <Binormal> { 0.151286 0.506409 0.070883 }
+        }
+        <Normal> { -0.944792 0.253151 0.207892 }
+      }
+      <Vertex> 3772 {
+        -0.675280153751 -0.0825763270259 2.04833698273
+        <UV>  {
+          0.378118 0.314127
+          <Tangent> { 0.076038 0.988294 0.132263 }
+          <Binormal> { 0.869875 -0.113714 0.349607 }
+        }
+        <Normal> { -0.335551 0.236518 0.911832 }
+      }
+      <Vertex> 3773 {
+        -0.625885486603 -0.0896547213197 2.02035808563
+        <UV>  {
+          0.389218 0.333374
+          <Tangent> { 0.022333 0.990263 0.137404 }
+          <Binormal> { 0.643820 -0.053741 0.282664 }
+        }
+        <Normal> { -0.271462 0.619922 0.736167 }
+      }
+      <Vertex> 3774 {
+        -0.969941854477 -1.07175028324 1.7198985815
+        <UV>  {
+          0.592681 0.359208
+          <Tangent> { 0.822938 0.478944 0.305591 }
+          <Binormal> { -0.022208 0.459802 -0.660830 }
+        }
+        <Normal> { 0.944792 -0.253151 -0.207892 }
+      }
+      <Vertex> 3775 {
+        -0.912970602512 -0.969648718834 1.85313260555
+        <UV>  {
+          0.533119 0.323370
+          <Tangent> { 0.415346 0.864203 0.283974 }
+          <Binormal> { 0.675744 -0.203221 -0.369905 }
+        }
+        <Normal> { 0.512955 0.176702 0.839991 }
+      }
+      <Vertex> 3776 {
+        -0.968229353428 -0.954842150211 1.85313260555
+        <UV>  {
+          0.542833 0.304351
+          <Tangent> { 0.464790 0.806244 0.365980 }
+          <Binormal> { 0.812246 -0.260993 -0.456581 }
+        }
+        <Normal> { 0.389843 -0.306101 0.868496 }
+      }
+      <Vertex> 3777 {
+        -0.968229353428 -0.954842150211 1.85313260555
+        <UV>  {
+          0.542833 0.304351
+          <Tangent> { 0.464790 0.806244 0.365980 }
+          <Binormal> { 0.812246 -0.260993 -0.456581 }
+        }
+        <Normal> { 0.389843 -0.306101 0.868496 }
+      }
+      <Vertex> 3778 {
+        -0.912970602512 -0.969648718834 1.85313260555
+        <UV>  {
+          0.533119 0.323370
+          <Tangent> { 0.415346 0.864203 0.283974 }
+          <Binormal> { 0.675744 -0.203221 -0.369905 }
+        }
+        <Normal> { 0.512955 0.176702 0.839991 }
+      }
+      <Vertex> 3779 {
+        -0.675280153751 -0.0825763270259 2.04833698273
+        <UV>  {
+          0.378118 0.314127
+          <Tangent> { 0.076038 0.988294 0.132263 }
+          <Binormal> { 0.869875 -0.113714 0.349607 }
+        }
+        <Normal> { -0.335551 0.236518 0.911832 }
+      }
+      <Vertex> 3780 {
+        -0.675280153751 -0.0825763270259 2.04833698273
+        <UV>  {
+          0.359026 0.406029
+          <Tangent> { 0.629503 0.773906 -0.069247 }
+          <Binormal> { 0.722051 -0.550765 0.408574 }
+        }
+        <Normal> { -0.335551 0.236518 0.911832 }
+      }
+      <Vertex> 3781 {
+        -0.730538904667 -0.0677697658539 2.04833698273
+        <UV>  {
+          0.377096 0.386770
+          <Tangent> { 0.540116 0.835881 0.097871 }
+          <Binormal> { 0.747979 -0.516797 0.285942 }
+        }
+        <Normal> { -0.453108 -0.171819 0.874722 }
+      }
+      <Vertex> 3782 {
+        -0.968229353428 -0.954842150211 1.85313260555
+        <UV>  {
+          0.540366 0.412293
+          <Tangent> { 0.168972 0.951047 0.258761 }
+          <Binormal> { 0.905188 -0.045875 -0.422482 }
+        }
+        <Normal> { 0.389843 -0.306101 0.868496 }
+      }
+      <Vertex> 3783 {
+        -0.697165191174 -0.0537342838943 1.94391787052
+        <UV>  {
+          0.339708 0.349281
+          <Tangent> { 0.961223 -0.221370 -0.164457 }
+          <Binormal> { -0.004389 -0.044453 0.034186 }
+        }
+        <Normal> { -0.944792 0.253151 0.207892 }
+      }
+      <Vertex> 3784 {
+        -0.730538904667 -0.0677697658539 2.04833698273
+        <UV>  {
+          0.377096 0.386770
+          <Tangent> { 0.540116 0.835881 0.097871 }
+          <Binormal> { 0.747979 -0.516797 0.285942 }
+        }
+        <Normal> { -0.453108 -0.171819 0.874722 }
+      }
+      <Vertex> 3785 {
+        -0.675280153751 -0.0825763270259 2.04833698273
+        <UV>  {
+          0.359026 0.406029
+          <Tangent> { 0.629503 0.773906 -0.069247 }
+          <Binormal> { 0.722051 -0.550765 0.408574 }
+        }
+        <Normal> { -0.335551 0.236518 0.911832 }
+      }
+      <Vertex> 3786 {
+        -0.969941854477 -1.07175028324 1.7198985815
+        <UV>  {
+          0.602987 0.358838
+          <Tangent> { -0.467932 0.882627 0.044832 }
+          <Binormal> { -0.172142 -0.054922 -0.715441 }
+        }
+        <Normal> { 0.944792 -0.253151 -0.207892 }
+      }
+      <Vertex> 3787 {
+        -0.968229353428 -0.954842150211 1.85313260555
+        <UV>  {
+          0.540366 0.412293
+          <Tangent> { 0.168972 0.951047 0.258761 }
+          <Binormal> { 0.905188 -0.045875 -0.422482 }
+        }
+        <Normal> { 0.389843 -0.306101 0.868496 }
+      }
+      <Vertex> 3788 {
+        -1.0145457983 -0.936274826527 1.82515347004
+        <UV>  {
+          0.532971 0.390130
+          <Tangent> { 0.137586 0.955637 0.260439 }
+          <Binormal> { 0.809446 -0.029603 -0.318997 }
+        }
+        <Normal> { 0.229438 -0.724906 0.649464 }
+      }
+      <Vertex> 3789 {
+        -1.0145457983 -0.936274826527 1.82515347004
+        <UV>  {
+          0.532971 0.390130
+          <Tangent> { 0.137586 0.955637 0.260439 }
+          <Binormal> { 0.809446 -0.029603 -0.318997 }
+        }
+        <Normal> { 0.229438 -0.724906 0.649464 }
+      }
+      <Vertex> 3790 {
+        -0.968229353428 -0.954842150211 1.85313260555
+        <UV>  {
+          0.540366 0.412293
+          <Tangent> { 0.168972 0.951047 0.258761 }
+          <Binormal> { 0.905188 -0.045875 -0.422482 }
+        }
+        <Normal> { 0.389843 -0.306101 0.868496 }
+      }
+      <Vertex> 3791 {
+        -0.730538904667 -0.0677697658539 2.04833698273
+        <UV>  {
+          0.377096 0.386770
+          <Tangent> { 0.540116 0.835881 0.097871 }
+          <Binormal> { 0.747979 -0.516797 0.285942 }
+        }
+        <Normal> { -0.453108 -0.171819 0.874722 }
+      }
+      <Vertex> 3792 {
+        -0.730538904667 -0.0677697658539 2.04833698273
+        <UV>  {
+          0.377096 0.386770
+          <Tangent> { 0.540116 0.835881 0.097871 }
+          <Binormal> { 0.747979 -0.516797 0.285942 }
+        }
+        <Normal> { -0.453108 -0.171819 0.874722 }
+      }
+      <Vertex> 3793 {
+        -0.776855409145 -0.0492024086416 2.02035808563
+        <UV>  {
+          0.385911 0.369628
+          <Tangent> { 0.510982 0.837592 0.193227 }
+          <Binormal> { 0.627445 -0.438874 0.243156 }
+        }
+        <Normal> { -0.592700 -0.495682 0.634754 }
+      }
+      <Vertex> 3794 {
+        -1.0145457983 -0.936274826527 1.82515347004
+        <UV>  {
+          0.532971 0.390130
+          <Tangent> { 0.137586 0.955637 0.260439 }
+          <Binormal> { 0.809446 -0.029603 -0.318997 }
+        }
+        <Normal> { 0.229438 -0.724906 0.649464 }
+      }
+      <Vertex> 3795 {
+        -0.697165191174 -0.0537342838943 1.94391787052
+        <UV>  {
+          0.339708 0.349281
+          <Tangent> { 0.961223 -0.221370 -0.164457 }
+          <Binormal> { -0.004389 -0.044453 0.034186 }
+        }
+        <Normal> { -0.944792 0.253151 0.207892 }
+      }
+      <Vertex> 3796 {
+        -0.776855409145 -0.0492024086416 2.02035808563
+        <UV>  {
+          0.385911 0.369628
+          <Tangent> { 0.510982 0.837592 0.193227 }
+          <Binormal> { 0.627445 -0.438874 0.243156 }
+        }
+        <Normal> { -0.592700 -0.495682 0.634754 }
+      }
+      <Vertex> 3797 {
+        -0.730538904667 -0.0677697658539 2.04833698273
+        <UV>  {
+          0.377096 0.386770
+          <Tangent> { 0.540116 0.835881 0.097871 }
+          <Binormal> { 0.747979 -0.516797 0.285942 }
+        }
+        <Normal> { -0.453108 -0.171819 0.874722 }
+      }
+      <Vertex> 3798 {
+        -0.969941854477 -1.07175028324 1.7198985815
+        <UV>  {
+          0.602987 0.358838
+          <Tangent> { -0.467932 0.882627 0.044832 }
+          <Binormal> { -0.172142 -0.054922 -0.715441 }
+        }
+        <Normal> { 0.944792 -0.253151 -0.207892 }
+      }
+      <Vertex> 3799 {
+        -1.0145457983 -0.936274826527 1.82515347004
+        <UV>  {
+          0.532971 0.390130
+          <Tangent> { 0.137586 0.955637 0.260439 }
+          <Binormal> { 0.809446 -0.029603 -0.318997 }
+        }
+        <Normal> { 0.229438 -0.724906 0.649464 }
+      }
+      <Vertex> 3800 {
+        -1.03950917721 -0.918921530247 1.77669239044
+        <UV>  {
+          0.530098 0.370812
+          <Tangent> { 0.138167 0.959294 0.246303 }
+          <Binormal> { 0.470099 -0.014986 -0.205340 }
+        }
+        <Normal> { 0.074709 -0.967467 0.241646 }
+      }
+      <Vertex> 3801 {
+        -1.03950917721 -0.918921530247 1.77669239044
+        <UV>  {
+          0.530098 0.370812
+          <Tangent> { 0.138167 0.959294 0.246303 }
+          <Binormal> { 0.470099 -0.014986 -0.205340 }
+        }
+        <Normal> { 0.074709 -0.967467 0.241646 }
+      }
+      <Vertex> 3802 {
+        -1.0145457983 -0.936274826527 1.82515347004
+        <UV>  {
+          0.532971 0.390130
+          <Tangent> { 0.137586 0.955637 0.260439 }
+          <Binormal> { 0.809446 -0.029603 -0.318997 }
+        }
+        <Normal> { 0.229438 -0.724906 0.649464 }
+      }
+      <Vertex> 3803 {
+        -0.776855409145 -0.0492024086416 2.02035808563
+        <UV>  {
+          0.385911 0.369628
+          <Tangent> { 0.510982 0.837592 0.193227 }
+          <Binormal> { 0.627445 -0.438874 0.243156 }
+        }
+        <Normal> { -0.592700 -0.495682 0.634754 }
+      }
+      <Vertex> 3804 {
+        -0.776855409145 -0.0492024086416 2.02035808563
+        <UV>  {
+          0.385911 0.369628
+          <Tangent> { 0.510982 0.837592 0.193227 }
+          <Binormal> { 0.627445 -0.438874 0.243156 }
+        }
+        <Normal> { -0.592700 -0.495682 0.634754 }
+      }
+      <Vertex> 3805 {
+        -0.801818788052 -0.0318493358791 1.97189688683
+        <UV>  {
+          0.389572 0.353563
+          <Tangent> { 0.463483 0.855818 0.229694 }
+          <Binormal> { 0.368260 -0.283451 0.313026 }
+        }
+        <Normal> { -0.716880 -0.648335 0.256294 }
+      }
+      <Vertex> 3806 {
+        -1.03950917721 -0.918921530247 1.77669239044
+        <UV>  {
+          0.530098 0.370812
+          <Tangent> { 0.138167 0.959294 0.246303 }
+          <Binormal> { 0.470099 -0.014986 -0.205340 }
+        }
+        <Normal> { 0.074709 -0.967467 0.241646 }
+      }
+      <Vertex> 3807 {
+        -0.697165191174 -0.0537342838943 1.94391787052
+        <UV>  {
+          0.339708 0.349281
+          <Tangent> { 0.961223 -0.221370 -0.164457 }
+          <Binormal> { -0.004389 -0.044453 0.034186 }
+        }
+        <Normal> { -0.944792 0.253151 0.207892 }
+      }
+      <Vertex> 3808 {
+        -0.801818788052 -0.0318493358791 1.97189688683
+        <UV>  {
+          0.389572 0.353563
+          <Tangent> { 0.463483 0.855818 0.229694 }
+          <Binormal> { 0.368260 -0.283451 0.313026 }
+        }
+        <Normal> { -0.716880 -0.648335 0.256294 }
+      }
+      <Vertex> 3809 {
+        -0.776855409145 -0.0492024086416 2.02035808563
+        <UV>  {
+          0.385911 0.369628
+          <Tangent> { 0.510982 0.837592 0.193227 }
+          <Binormal> { 0.627445 -0.438874 0.243156 }
+        }
+        <Normal> { -0.592700 -0.495682 0.634754 }
+      }
+      <Vertex> 3810 {
+        -0.969941854477 -1.07175028324 1.7198985815
+        <UV>  {
+          0.602987 0.358838
+          <Tangent> { -0.467932 0.882627 0.044832 }
+          <Binormal> { -0.172142 -0.054922 -0.715441 }
+        }
+        <Normal> { 0.944792 -0.253151 -0.207892 }
+      }
+      <Vertex> 3811 {
+        -1.03950917721 -0.918921530247 1.77669239044
+        <UV>  {
+          0.530098 0.370812
+          <Tangent> { 0.138167 0.959294 0.246303 }
+          <Binormal> { 0.470099 -0.014986 -0.205340 }
+        }
+        <Normal> { 0.074709 -0.967467 0.241646 }
+      }
+      <Vertex> 3812 {
+        -1.03643071651 -0.907432794571 1.72073435783
+        <UV>  {
+          0.530428 0.352774
+          <Tangent> { 0.118583 0.963999 0.237999 }
+          <Binormal> { -0.006261 0.021310 -0.083196 }
+        }
+        <Normal> { -0.032868 -0.968780 -0.245674 }
+      }
+      <Vertex> 3813 {
+        -1.03643071651 -0.907432794571 1.72073435783
+        <UV>  {
+          0.530428 0.352774
+          <Tangent> { 0.118583 0.963999 0.237999 }
+          <Binormal> { -0.006261 0.021310 -0.083196 }
+        }
+        <Normal> { -0.032868 -0.968780 -0.245674 }
+      }
+      <Vertex> 3814 {
+        -1.03950917721 -0.918921530247 1.77669239044
+        <UV>  {
+          0.530098 0.370812
+          <Tangent> { 0.138167 0.959294 0.246303 }
+          <Binormal> { 0.470099 -0.014986 -0.205340 }
+        }
+        <Normal> { 0.074709 -0.967467 0.241646 }
+      }
+      <Vertex> 3815 {
+        -0.801818788052 -0.0318493358791 1.97189688683
+        <UV>  {
+          0.389572 0.353563
+          <Tangent> { 0.463483 0.855818 0.229694 }
+          <Binormal> { 0.368260 -0.283451 0.313026 }
+        }
+        <Normal> { -0.716880 -0.648335 0.256294 }
+      }
+      <Vertex> 3816 {
+        -0.801818788052 -0.0318493358791 1.97189688683
+        <UV>  {
+          0.389572 0.353563
+          <Tangent> { 0.463483 0.855818 0.229694 }
+          <Binormal> { 0.368260 -0.283451 0.313026 }
+        }
+        <Normal> { -0.716880 -0.648335 0.256294 }
+      }
+      <Vertex> 3817 {
+        -0.798740267754 -0.0203603673726 1.91593873501
+        <UV>  {
+          0.389274 0.337256
+          <Tangent> { 0.446713 0.863649 0.233575 }
+          <Binormal> { -0.000024 -0.113930 0.421306 }
+        }
+        <Normal> { -0.792383 -0.588824 -0.159276 }
+      }
+      <Vertex> 3818 {
+        -1.03643071651 -0.907432794571 1.72073435783
+        <UV>  {
+          0.530428 0.352774
+          <Tangent> { 0.118583 0.963999 0.237999 }
+          <Binormal> { -0.006261 0.021310 -0.083196 }
+        }
+        <Normal> { -0.032868 -0.968780 -0.245674 }
+      }
+      <Vertex> 3819 {
+        -0.697165191174 -0.0537342838943 1.94391787052
+        <UV>  {
+          0.339708 0.349281
+          <Tangent> { 0.961223 -0.221370 -0.164457 }
+          <Binormal> { -0.004389 -0.044453 0.034186 }
+        }
+        <Normal> { -0.944792 0.253151 0.207892 }
+      }
+      <Vertex> 3820 {
+        -0.798740267754 -0.0203603673726 1.91593873501
+        <UV>  {
+          0.389274 0.337256
+          <Tangent> { 0.446713 0.863649 0.233575 }
+          <Binormal> { -0.000024 -0.113930 0.421306 }
+        }
+        <Normal> { -0.792383 -0.588824 -0.159276 }
+      }
+      <Vertex> 3821 {
+        -0.801818788052 -0.0318493358791 1.97189688683
+        <UV>  {
+          0.389572 0.353563
+          <Tangent> { 0.463483 0.855818 0.229694 }
+          <Binormal> { 0.368260 -0.283451 0.313026 }
+        }
+        <Normal> { -0.716880 -0.648335 0.256294 }
+      }
+      <Vertex> 3822 {
+        -0.969941854477 -1.07175028324 1.7198985815
+        <UV>  {
+          0.602987 0.358838
+          <Tangent> { -0.467932 0.882627 0.044832 }
+          <Binormal> { -0.172142 -0.054922 -0.715441 }
+        }
+        <Normal> { 0.944792 -0.253151 -0.207892 }
+      }
+      <Vertex> 3823 {
+        -1.03643071651 -0.907432794571 1.72073435783
+        <UV>  {
+          0.530428 0.352774
+          <Tangent> { 0.118583 0.963999 0.237999 }
+          <Binormal> { -0.006261 0.021310 -0.083196 }
+        }
+        <Normal> { -0.032868 -0.968780 -0.245674 }
+      }
+      <Vertex> 3824 {
+        -1.00613534451 -0.904886305332 1.67227327824
+        <UV>  {
+          0.533719 0.334863
+          <Tangent> { 0.081771 0.974942 0.206885 }
+          <Binormal> { -0.514161 0.042424 0.003299 }
+        }
+        <Normal> { -0.064486 -0.728507 -0.681967 }
+      }
+      <Vertex> 3825 {
+        -1.00613534451 -0.904886305332 1.67227327824
+        <UV>  {
+          0.533719 0.334863
+          <Tangent> { 0.081771 0.974942 0.206885 }
+          <Binormal> { -0.514161 0.042424 0.003299 }
+        }
+        <Normal> { -0.064486 -0.728507 -0.681967 }
+      }
+      <Vertex> 3826 {
+        -1.03643071651 -0.907432794571 1.72073435783
+        <UV>  {
+          0.530428 0.352774
+          <Tangent> { 0.118583 0.963999 0.237999 }
+          <Binormal> { -0.006261 0.021310 -0.083196 }
+        }
+        <Normal> { -0.032868 -0.968780 -0.245674 }
+      }
+      <Vertex> 3827 {
+        -0.798740267754 -0.0203603673726 1.91593873501
+        <UV>  {
+          0.389274 0.337256
+          <Tangent> { 0.446713 0.863649 0.233575 }
+          <Binormal> { -0.000024 -0.113930 0.421306 }
+        }
+        <Normal> { -0.792383 -0.588824 -0.159276 }
+      }
+      <Vertex> 3828 {
+        -0.798740267754 -0.0203603673726 1.91593873501
+        <UV>  {
+          0.389274 0.337256
+          <Tangent> { 0.446713 0.863649 0.233575 }
+          <Binormal> { -0.000024 -0.113930 0.421306 }
+        }
+        <Normal> { -0.792383 -0.588824 -0.159276 }
+      }
+      <Vertex> 3829 {
+        -0.768444895744 -0.0178140029311 1.86747777462
+        <UV>  {
+          0.384303 0.319251
+          <Tangent> { 0.448085 0.854869 0.261569 }
+          <Binormal> { -0.340846 0.015328 0.533797 }
+        }
+        <Normal> { -0.799005 -0.333079 -0.500626 }
+      }
+      <Vertex> 3830 {
+        -1.00613534451 -0.904886305332 1.67227327824
+        <UV>  {
+          0.533719 0.334863
+          <Tangent> { 0.081771 0.974942 0.206885 }
+          <Binormal> { -0.514161 0.042424 0.003299 }
+        }
+        <Normal> { -0.064486 -0.728507 -0.681967 }
+      }
+      <Vertex> 3831 {
+        -0.697165191174 -0.0537342838943 1.94391787052
+        <UV>  {
+          0.339708 0.349281
+          <Tangent> { 0.961223 -0.221370 -0.164457 }
+          <Binormal> { -0.004389 -0.044453 0.034186 }
+        }
+        <Normal> { -0.944792 0.253151 0.207892 }
+      }
+      <Vertex> 3832 {
+        -0.768444895744 -0.0178140029311 1.86747777462
+        <UV>  {
+          0.384303 0.319251
+          <Tangent> { 0.448085 0.854869 0.261569 }
+          <Binormal> { -0.340846 0.015328 0.533797 }
+        }
+        <Normal> { -0.799005 -0.333079 -0.500626 }
+      }
+      <Vertex> 3833 {
+        -0.798740267754 -0.0203603673726 1.91593873501
+        <UV>  {
+          0.389274 0.337256
+          <Tangent> { 0.446713 0.863649 0.233575 }
+          <Binormal> { -0.000024 -0.113930 0.421306 }
+        }
+        <Normal> { -0.792383 -0.588824 -0.159276 }
+      }
+      <Vertex> 3834 {
+        -0.969941854477 -1.07175028324 1.7198985815
+        <UV>  {
+          0.602987 0.358838
+          <Tangent> { -0.467932 0.882627 0.044832 }
+          <Binormal> { -0.172142 -0.054922 -0.715441 }
+        }
+        <Normal> { 0.944792 -0.253151 -0.207892 }
+      }
+      <Vertex> 3835 {
+        -1.00613534451 -0.904886305332 1.67227327824
+        <UV>  {
+          0.533719 0.334863
+          <Tangent> { 0.081771 0.974942 0.206885 }
+          <Binormal> { -0.514161 0.042424 0.003299 }
+        }
+        <Normal> { -0.064486 -0.728507 -0.681967 }
+      }
+      <Vertex> 3836 {
+        -0.956740438938 -0.911964774132 1.64429438114
+        <UV>  {
+          0.540613 0.315983
+          <Tangent> { 0.052025 0.989383 0.135701 }
+          <Binormal> { -0.898021 0.047854 -0.004616 }
+        }
+        <Normal> { -0.011689 -0.311014 -0.950316 }
+      }
+      <Vertex> 3837 {
+        -0.956740438938 -0.911964774132 1.64429438114
+        <UV>  {
+          0.540613 0.315983
+          <Tangent> { 0.052025 0.989383 0.135701 }
+          <Binormal> { -0.898021 0.047854 -0.004616 }
+        }
+        <Normal> { -0.011689 -0.311014 -0.950316 }
+      }
+      <Vertex> 3838 {
+        -1.00613534451 -0.904886305332 1.67227327824
+        <UV>  {
+          0.533719 0.334863
+          <Tangent> { 0.081771 0.974942 0.206885 }
+          <Binormal> { -0.514161 0.042424 0.003299 }
+        }
+        <Normal> { -0.064486 -0.728507 -0.681967 }
+      }
+      <Vertex> 3839 {
+        -0.768444895744 -0.0178140029311 1.86747777462
+        <UV>  {
+          0.384303 0.319251
+          <Tangent> { 0.448085 0.854869 0.261569 }
+          <Binormal> { -0.340846 0.015328 0.533797 }
+        }
+        <Normal> { -0.799005 -0.333079 -0.500626 }
+      }
+      <Vertex> 3840 {
+        -0.768444895744 -0.0178140029311 1.86747777462
+        <UV>  {
+          0.384303 0.319251
+          <Tangent> { 0.448085 0.854869 0.261569 }
+          <Binormal> { -0.340846 0.015328 0.533797 }
+        }
+        <Normal> { -0.799005 -0.333079 -0.500626 }
+      }
+      <Vertex> 3841 {
+        -0.719050168991 -0.0248923972249 1.83949875832
+        <UV>  {
+          0.370973 0.297363
+          <Tangent> { 0.529032 0.787013 -0.317389 }
+          <Binormal> { -0.516262 0.591017 0.604996 }
+        }
+        <Normal> { -0.734916 0.050295 -0.676260 }
+      }
+      <Vertex> 3842 {
+        -0.956740438938 -0.911964774132 1.64429438114
+        <UV>  {
+          0.540613 0.315983
+          <Tangent> { 0.052025 0.989383 0.135701 }
+          <Binormal> { -0.898021 0.047854 -0.004616 }
+        }
+        <Normal> { -0.011689 -0.311014 -0.950316 }
+      }
+      <Vertex> 3843 {
+        -0.697165191174 -0.0537342838943 1.94391787052
+        <UV>  {
+          0.339708 0.349281
+          <Tangent> { 0.961223 -0.221370 -0.164457 }
+          <Binormal> { -0.004389 -0.044453 0.034186 }
+        }
+        <Normal> { -0.944792 0.253151 0.207892 }
+      }
+      <Vertex> 3844 {
+        -0.719050168991 -0.0248923972249 1.83949875832
+        <UV>  {
+          0.370973 0.297363
+          <Tangent> { 0.529032 0.787013 -0.317389 }
+          <Binormal> { -0.516262 0.591017 0.604996 }
+        }
+        <Normal> { -0.734916 0.050295 -0.676260 }
+      }
+      <Vertex> 3845 {
+        -0.768444895744 -0.0178140029311 1.86747777462
+        <UV>  {
+          0.384303 0.319251
+          <Tangent> { 0.448085 0.854869 0.261569 }
+          <Binormal> { -0.340846 0.015328 0.533797 }
+        }
+        <Normal> { -0.799005 -0.333079 -0.500626 }
+      }
+      <Vertex> 3846 {
+        -0.969941854477 -1.07175028324 1.7198985815
+        <UV>  {
+          0.602987 0.358838
+          <Tangent> { -0.467932 0.882627 0.044832 }
+          <Binormal> { -0.172142 -0.054922 -0.715441 }
+        }
+        <Normal> { 0.944792 -0.253151 -0.207892 }
+      }
+      <Vertex> 3847 {
+        -0.956740438938 -0.911964774132 1.64429438114
+        <UV>  {
+          0.540613 0.315983
+          <Tangent> { 0.052025 0.989383 0.135701 }
+          <Binormal> { -0.898021 0.047854 -0.004616 }
+        }
+        <Normal> { -0.011689 -0.311014 -0.950316 }
+      }
+      <Vertex> 3848 {
+        -0.901481509209 -0.926771342754 1.64429414272
+        <UV>  {
+          0.552638 0.295667
+          <Tangent> { -0.435597 0.838895 -0.326360 }
+          <Binormal> { -0.765037 -0.462712 -0.168277 }
+        }
+        <Normal> { 0.111393 0.171789 -0.978790 }
+      }
+      <Vertex> 3849 {
+        -0.901481509209 -0.926771342754 1.64429414272
+        <UV>  {
+          0.552638 0.295667
+          <Tangent> { -0.435597 0.838895 -0.326360 }
+          <Binormal> { -0.765037 -0.462712 -0.168277 }
+        }
+        <Normal> { 0.111393 0.171789 -0.978790 }
+      }
+      <Vertex> 3850 {
+        -0.956740438938 -0.911964774132 1.64429438114
+        <UV>  {
+          0.540613 0.315983
+          <Tangent> { 0.052025 0.989383 0.135701 }
+          <Binormal> { -0.898021 0.047854 -0.004616 }
+        }
+        <Normal> { -0.011689 -0.311014 -0.950316 }
+      }
+      <Vertex> 3851 {
+        -0.719050168991 -0.0248923972249 1.83949875832
+        <UV>  {
+          0.370973 0.297363
+          <Tangent> { 0.529032 0.787013 -0.317389 }
+          <Binormal> { -0.516262 0.591017 0.604996 }
+        }
+        <Normal> { -0.734916 0.050295 -0.676260 }
+      }
+      <Vertex> 3852 {
+        -0.719050168991 -0.0248923972249 1.83949875832
+        <UV>  {
+          0.370973 0.297363
+          <Tangent> { 0.529032 0.787013 -0.317389 }
+          <Binormal> { -0.516262 0.591017 0.604996 }
+        }
+        <Normal> { -0.734916 0.050295 -0.676260 }
+      }
+      <Vertex> 3853 {
+        -0.663791239262 -0.0396987982094 1.83949875832
+        <UV>  {
+          0.375392 0.401135
+          <Tangent> { -0.047135 0.958596 -0.280841 }
+          <Binormal> { -0.483883 0.143244 0.570151 }
+        }
+        <Normal> { -0.617328 0.458632 -0.639149 }
+      }
+      <Vertex> 3854 {
+        -0.901481509209 -0.926771342754 1.64429414272
+        <UV>  {
+          0.552638 0.295667
+          <Tangent> { -0.435597 0.838895 -0.326360 }
+          <Binormal> { -0.765037 -0.462712 -0.168277 }
+        }
+        <Normal> { 0.111393 0.171789 -0.978790 }
+      }
+      <Vertex> 3855 {
+        -0.697165191174 -0.0537342838943 1.94391787052
+        <UV>  {
+          0.349367 0.356712
+          <Tangent> { -0.886606 0.312585 -0.340912 }
+          <Binormal> { 0.151286 0.506409 0.070883 }
+        }
+        <Normal> { -0.944792 0.253151 0.207892 }
+      }
+      <Vertex> 3856 {
+        -0.663791239262 -0.0396987982094 1.83949875832
+        <UV>  {
+          0.375392 0.401135
+          <Tangent> { -0.047135 0.958596 -0.280841 }
+          <Binormal> { -0.483883 0.143244 0.570151 }
+        }
+        <Normal> { -0.617328 0.458632 -0.639149 }
+      }
+      <Vertex> 3857 {
+        -0.719050168991 -0.0248923972249 1.83949875832
+        <UV>  {
+          0.370973 0.297363
+          <Tangent> { 0.529032 0.787013 -0.317389 }
+          <Binormal> { -0.516262 0.591017 0.604996 }
+        }
+        <Normal> { -0.734916 0.050295 -0.676260 }
+      }
+      <Vertex> 3858 {
+        -0.969941854477 -1.07175028324 1.7198985815
+        <UV>  {
+          0.592681 0.359208
+          <Tangent> { 0.822938 0.478944 0.305591 }
+          <Binormal> { -0.022208 0.459802 -0.660830 }
+        }
+        <Normal> { 0.944792 -0.253151 -0.207892 }
+      }
+      <Vertex> 3859 {
+        -0.901481509209 -0.926771342754 1.64429414272
+        <UV>  {
+          0.539521 0.411045
+          <Tangent> { 0.488058 0.861201 0.141888 }
+          <Binormal> { -0.867310 0.493511 -0.012089 }
+        }
+        <Normal> { 0.111393 0.171789 -0.978790 }
+      }
+      <Vertex> 3860 {
+        -0.855165183544 -0.94533854723 1.67227327824
+        <UV>  {
+          0.531111 0.391847
+          <Tangent> { 0.402681 0.897357 0.180550 }
+          <Binormal> { -0.788434 0.355026 -0.006079 }
+        }
+        <Normal> { 0.271798 0.590594 -0.759789 }
+      }
+      <Vertex> 3861 {
+        -0.855165183544 -0.94533854723 1.67227327824
+        <UV>  {
+          0.531111 0.391847
+          <Tangent> { 0.402681 0.897357 0.180550 }
+          <Binormal> { -0.788434 0.355026 -0.006079 }
+        }
+        <Normal> { 0.271798 0.590594 -0.759789 }
+      }
+      <Vertex> 3862 {
+        -0.901481509209 -0.926771342754 1.64429414272
+        <UV>  {
+          0.539521 0.411045
+          <Tangent> { 0.488058 0.861201 0.141888 }
+          <Binormal> { -0.867310 0.493511 -0.012089 }
+        }
+        <Normal> { 0.111393 0.171789 -0.978790 }
+      }
+      <Vertex> 3863 {
+        -0.663791239262 -0.0396987982094 1.83949875832
+        <UV>  {
+          0.375392 0.401135
+          <Tangent> { -0.047135 0.958596 -0.280841 }
+          <Binormal> { -0.483883 0.143244 0.570151 }
+        }
+        <Normal> { -0.617328 0.458632 -0.639149 }
+      }
+      <Vertex> 3864 {
+        -0.663791239262 -0.0396987982094 1.83949875832
+        <UV>  {
+          0.375392 0.401135
+          <Tangent> { -0.047135 0.958596 -0.280841 }
+          <Binormal> { -0.483883 0.143244 0.570151 }
+        }
+        <Normal> { -0.617328 0.458632 -0.639149 }
+      }
+      <Vertex> 3865 {
+        -0.617474913597 -0.0582663118839 1.86747777462
+        <UV>  {
+          0.387857 0.382056
+          <Tangent> { -0.022670 0.976673 0.213534 }
+          <Binormal> { -0.556995 -0.111063 0.448852 }
+        }
+        <Normal> { -0.477737 0.782525 -0.399213 }
+      }
+      <Vertex> 3866 {
+        -0.855165183544 -0.94533854723 1.67227327824
+        <UV>  {
+          0.531111 0.391847
+          <Tangent> { 0.402681 0.897357 0.180550 }
+          <Binormal> { -0.788434 0.355026 -0.006079 }
+        }
+        <Normal> { 0.271798 0.590594 -0.759789 }
+      }
+      <Vertex> 3867 {
+        -0.697165191174 -0.0537342838943 1.94391787052
+        <UV>  {
+          0.349367 0.356712
+          <Tangent> { -0.886606 0.312585 -0.340912 }
+          <Binormal> { 0.151286 0.506409 0.070883 }
+        }
+        <Normal> { -0.944792 0.253151 0.207892 }
+      }
+      <Vertex> 3868 {
+        -0.617474913597 -0.0582663118839 1.86747777462
+        <UV>  {
+          0.387857 0.382056
+          <Tangent> { -0.022670 0.976673 0.213534 }
+          <Binormal> { -0.556995 -0.111063 0.448852 }
+        }
+        <Normal> { -0.477737 0.782525 -0.399213 }
+      }
+      <Vertex> 3869 {
+        -0.663791239262 -0.0396987982094 1.83949875832
+        <UV>  {
+          0.375392 0.401135
+          <Tangent> { -0.047135 0.958596 -0.280841 }
+          <Binormal> { -0.483883 0.143244 0.570151 }
+        }
+        <Normal> { -0.617328 0.458632 -0.639149 }
+      }
+      <Vertex> 3870 {
+        -0.692226469517 -0.154301956296 1.84307396412
+        <UV>  {
+          0.383555 0.213335
+          <Tangent> { -0.601282 -0.751456 0.271615 }
+          <Binormal> { -0.679006 0.372049 -0.473816 }
+        }
+        <Normal> { -0.002777 0.784539 0.620014 }
+      }
+      <Vertex> 3871 {
+        -0.703200399876 -0.195257201791 1.83406150341
+        <UV>  {
+          0.366127 0.218734
+          <Tangent> { 0.613200 -0.649344 -0.449819 }
+          <Binormal> { -0.205899 -0.659308 0.671070 }
+        }
+        <Normal> { 0.897458 0.144017 0.416852 }
+      }
+      <Vertex> 3872 {
+        -0.676202595234 -0.0944998711348 1.60666716099
+        <UV>  {
+          0.352239 0.172277
+          <Tangent> { -0.168130 -0.627467 -0.760275 }
+          <Binormal> { 0.910335 -0.367415 0.101919 }
+        }
+        <Normal> { 0.316263 0.574114 -0.755181 }
+      }
+      <Vertex> 3873 {
+        -0.676202595234 -0.0944998711348 1.60666716099
+        <UV>  {
+          0.352239 0.172277
+          <Tangent> { -0.168130 -0.627467 -0.760275 }
+          <Binormal> { 0.910335 -0.367415 0.101919 }
+        }
+        <Normal> { 0.316263 0.574114 -0.755181 }
+      }
+      <Vertex> 3874 {
+        -0.644436001778 0.0240545328707 1.63275563717
+        <UV>  {
+          0.402687 0.156650
+          <Tangent> { -0.168128 -0.627460 -0.760280 }
+          <Binormal> { 0.426109 0.555494 -0.552679 }
+        }
+        <Normal> { -0.693106 0.700552 0.169744 }
+      }
+      <Vertex> 3875 {
+        -0.692226469517 -0.154301956296 1.84307396412
+        <UV>  {
+          0.383555 0.213335
+          <Tangent> { -0.601282 -0.751456 0.271615 }
+          <Binormal> { -0.679006 0.372049 -0.473816 }
+        }
+        <Normal> { -0.002777 0.784539 0.620014 }
+      }
+      <Vertex> 3876 {
+        -0.751726090908 -0.138359054923 1.84307396412
+        <UV>  {
+          0.383810 0.234942
+          <Tangent> { -0.611237 -0.782656 0.117634 }
+          <Binormal> { -0.691051 0.514350 -0.168635 }
+        }
+        <Normal> { -0.364238 -0.190497 0.911588 }
+      }
+      <Vertex> 3877 {
+        -0.692226469517 -0.154301956296 1.84307396412
+        <UV>  {
+          0.383555 0.213335
+          <Tangent> { -0.601282 -0.751456 0.271615 }
+          <Binormal> { -0.679006 0.372049 -0.473816 }
+        }
+        <Normal> { -0.002777 0.784539 0.620014 }
+      }
+      <Vertex> 3878 {
+        -0.644436001778 0.0240545328707 1.63275563717
+        <UV>  {
+          0.409969 0.271819
+          <Tangent> { -0.980578 -0.051554 0.189234 }
+          <Binormal> { -0.141319 0.035288 -0.722678 }
+        }
+        <Normal> { -0.693106 0.700552 0.169744 }
+      }
+      <Vertex> 3879 {
+        -0.644436001778 0.0240545328707 1.63275563717
+        <UV>  {
+          0.409969 0.271819
+          <Tangent> { -0.980578 -0.051554 0.189234 }
+          <Binormal> { -0.141319 0.035288 -0.722678 }
+        }
+        <Normal> { -0.693106 0.700552 0.169744 }
+      }
+      <Vertex> 3880 {
+        -0.703935623169 0.0399973653257 1.63275563717
+        <UV>  {
+          0.395444 0.264020
+          <Tangent> { -0.509891 -0.837129 -0.198057 }
+          <Binormal> { 0.287326 -0.126319 -0.205799 }
+        }
+        <Normal> { -0.619861 -0.614063 -0.488510 }
+      }
+      <Vertex> 3881 {
+        -0.751726090908 -0.138359054923 1.84307396412
+        <UV>  {
+          0.383810 0.234942
+          <Tangent> { -0.611237 -0.782656 0.117634 }
+          <Binormal> { -0.691051 0.514350 -0.168635 }
+        }
+        <Normal> { -0.364238 -0.190497 0.911588 }
+      }
+      <Vertex> 3882 {
+        -0.762700021267 -0.179314374924 1.83406150341
+        <UV>  {
+          0.379373 0.237445
+          <Tangent> { 0.034733 -0.874670 -0.483473 }
+          <Binormal> { -0.663380 -0.123293 0.175397 }
+        }
+        <Normal> { 0.237922 -0.941679 0.237922 }
+      }
+      <Vertex> 3883 {
+        -0.751726090908 -0.138359054923 1.84307396412
+        <UV>  {
+          0.383810 0.234942
+          <Tangent> { -0.611237 -0.782656 0.117634 }
+          <Binormal> { -0.691051 0.514350 -0.168635 }
+        }
+        <Normal> { -0.364238 -0.190497 0.911588 }
+      }
+      <Vertex> 3884 {
+        -0.703935623169 0.0399973653257 1.63275563717
+        <UV>  {
+          0.395444 0.264020
+          <Tangent> { -0.509891 -0.837129 -0.198057 }
+          <Binormal> { 0.287326 -0.126319 -0.205799 }
+        }
+        <Normal> { -0.619861 -0.614063 -0.488510 }
+      }
+      <Vertex> 3885 {
+        -0.703935623169 0.0399973653257 1.63275563717
+        <UV>  {
+          0.395444 0.264020
+          <Tangent> { -0.509891 -0.837129 -0.198057 }
+          <Binormal> { 0.287326 -0.126319 -0.205799 }
+        }
+        <Normal> { -0.619861 -0.614063 -0.488510 }
+      }
+      <Vertex> 3886 {
+        -0.735702216625 -0.0785570368171 1.60666716099
+        <UV>  {
+          0.382439 0.267154
+          <Tangent> { 0.282425 -0.908760 -0.307231 }
+          <Binormal> { 0.466015 0.043296 0.300322 }
+        }
+        <Normal> { 0.494339 -0.527268 -0.691061 }
+      }
+      <Vertex> 3887 {
+        -0.762700021267 -0.179314374924 1.83406150341
+        <UV>  {
+          0.379373 0.237445
+          <Tangent> { 0.034733 -0.874670 -0.483473 }
+          <Binormal> { -0.663380 -0.123293 0.175397 }
+        }
+        <Normal> { 0.237922 -0.941679 0.237922 }
+      }
+      <Vertex> 3888 {
+        -0.703200399876 -0.195257201791 1.83406150341
+        <UV>  {
+          0.366127 0.218734
+          <Tangent> { 0.613200 -0.649344 -0.449819 }
+          <Binormal> { -0.205899 -0.659308 0.671070 }
+        }
+        <Normal> { 0.897458 0.144017 0.416852 }
+      }
+      <Vertex> 3889 {
+        -0.762700021267 -0.179314374924 1.83406150341
+        <UV>  {
+          0.379373 0.237445
+          <Tangent> { 0.034733 -0.874670 -0.483473 }
+          <Binormal> { -0.663380 -0.123293 0.175397 }
+        }
+        <Normal> { 0.237922 -0.941679 0.237922 }
+      }
+      <Vertex> 3890 {
+        -0.735702216625 -0.0785570368171 1.60666716099
+        <UV>  {
+          0.382439 0.267154
+          <Tangent> { 0.282425 -0.908760 -0.307231 }
+          <Binormal> { 0.466015 0.043296 0.300322 }
+        }
+        <Normal> { 0.494339 -0.527268 -0.691061 }
+      }
+      <Vertex> 3891 {
+        -0.735702216625 -0.0785570368171 1.60666716099
+        <UV>  {
+          0.382439 0.267154
+          <Tangent> { 0.282425 -0.908760 -0.307231 }
+          <Binormal> { 0.466015 0.043296 0.300322 }
+        }
+        <Normal> { 0.494339 -0.527268 -0.691061 }
+      }
+      <Vertex> 3892 {
+        -0.676202595234 -0.0944998711348 1.60666716099
+        <UV>  {
+          0.376499 0.291525
+          <Tangent> { -0.026953 -0.943211 0.331099 }
+          <Binormal> { 0.522206 0.084360 0.282829 }
+        }
+        <Normal> { 0.316263 0.574114 -0.755181 }
+      }
+      <Vertex> 3893 {
+        -0.703200399876 -0.195257201791 1.83406150341
+        <UV>  {
+          0.366127 0.218734
+          <Tangent> { 0.613200 -0.649344 -0.449819 }
+          <Binormal> { -0.205899 -0.659308 0.671070 }
+        }
+        <Normal> { 0.897458 0.144017 0.416852 }
+      }
+      <Vertex> 3894 {
+        -0.751726090908 -0.138359054923 1.84307396412
+        <UV>  {
+          0.383810 0.234942
+          <Tangent> { -0.611237 -0.782656 0.117634 }
+          <Binormal> { -0.691051 0.514350 -0.168635 }
+        }
+        <Normal> { -0.364238 -0.190497 0.911588 }
+      }
+      <Vertex> 3895 {
+        -0.762700021267 -0.179314374924 1.83406150341
+        <UV>  {
+          0.379373 0.237445
+          <Tangent> { 0.034733 -0.874670 -0.483473 }
+          <Binormal> { -0.663380 -0.123293 0.175397 }
+        }
+        <Normal> { 0.237922 -0.941679 0.237922 }
+      }
+      <Vertex> 3896 {
+        -0.703200399876 -0.195257201791 1.83406150341
+        <UV>  {
+          0.366127 0.218734
+          <Tangent> { 0.613200 -0.649344 -0.449819 }
+          <Binormal> { -0.205899 -0.659308 0.671070 }
+        }
+        <Normal> { 0.897458 0.144017 0.416852 }
+      }
+      <Vertex> 3897 {
+        -0.703200399876 -0.195257201791 1.83406150341
+        <UV>  {
+          0.366127 0.218734
+          <Tangent> { 0.613200 -0.649344 -0.449819 }
+          <Binormal> { -0.205899 -0.659308 0.671070 }
+        }
+        <Normal> { 0.897458 0.144017 0.416852 }
+      }
+      <Vertex> 3898 {
+        -0.692226469517 -0.154301956296 1.84307396412
+        <UV>  {
+          0.383555 0.213335
+          <Tangent> { -0.601282 -0.751456 0.271615 }
+          <Binormal> { -0.679006 0.372049 -0.473816 }
+        }
+        <Normal> { -0.002777 0.784539 0.620014 }
+      }
+      <Vertex> 3899 {
+        -0.751726090908 -0.138359054923 1.84307396412
+        <UV>  {
+          0.383810 0.234942
+          <Tangent> { -0.611237 -0.782656 0.117634 }
+          <Binormal> { -0.691051 0.514350 -0.168635 }
+        }
+        <Normal> { -0.364238 -0.190497 0.911588 }
+      }
+      <Vertex> 3900 {
+        -0.703935623169 0.0399973653257 1.63275563717
+        <UV>  {
+          0.395444 0.264020
+          <Tangent> { -0.509891 -0.837129 -0.198057 }
+          <Binormal> { 0.287326 -0.126319 -0.205799 }
+        }
+        <Normal> { -0.619861 -0.614063 -0.488510 }
+      }
+      <Vertex> 3901 {
+        -0.644436001778 0.0240545328707 1.63275563717
+        <UV>  {
+          0.409969 0.271819
+          <Tangent> { -0.980578 -0.051554 0.189234 }
+          <Binormal> { -0.141319 0.035288 -0.722678 }
+        }
+        <Normal> { -0.693106 0.700552 0.169744 }
+      }
+      <Vertex> 3902 {
+        -0.676202595234 -0.0944998711348 1.60666716099
+        <UV>  {
+          0.376499 0.291525
+          <Tangent> { -0.026953 -0.943211 0.331099 }
+          <Binormal> { 0.522206 0.084360 0.282829 }
+        }
+        <Normal> { 0.316263 0.574114 -0.755181 }
+      }
+      <Vertex> 3903 {
+        -0.676202595234 -0.0944998711348 1.60666716099
+        <UV>  {
+          0.376499 0.291525
+          <Tangent> { -0.026953 -0.943211 0.331099 }
+          <Binormal> { 0.522206 0.084360 0.282829 }
+        }
+        <Normal> { 0.316263 0.574114 -0.755181 }
+      }
+      <Vertex> 3904 {
+        -0.735702216625 -0.0785570368171 1.60666716099
+        <UV>  {
+          0.382439 0.267154
+          <Tangent> { 0.282425 -0.908760 -0.307231 }
+          <Binormal> { 0.466015 0.043296 0.300322 }
+        }
+        <Normal> { 0.494339 -0.527268 -0.691061 }
+      }
+      <Vertex> 3905 {
+        -0.703935623169 0.0399973653257 1.63275563717
+        <UV>  {
+          0.395444 0.264020
+          <Tangent> { -0.509891 -0.837129 -0.198057 }
+          <Binormal> { 0.287326 -0.126319 -0.205799 }
+        }
+        <Normal> { -0.619861 -0.614063 -0.488510 }
+      }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 0 1 2 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3 4 5 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 6 7 8 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 9 10 11 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 12 13 14 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 15 16 17 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 18 19 20 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 21 22 23 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 24 25 26 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 27 28 29 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 30 31 32 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 33 34 35 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 36 37 38 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 39 40 41 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 42 43 44 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 45 46 47 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 48 49 50 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 51 52 53 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 54 55 56 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 57 58 59 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 60 61 62 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 63 64 65 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 66 67 68 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 69 70 71 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 72 73 74 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 75 76 77 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 78 79 80 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 81 82 83 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 84 85 86 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 87 88 89 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 90 91 92 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 93 94 95 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 96 97 98 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 99 100 101 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 102 103 104 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 105 106 107 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 108 109 110 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 111 112 113 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 114 115 116 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 117 118 119 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 120 121 122 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 123 124 125 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 126 127 128 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 129 130 131 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 132 133 134 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 135 136 137 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 138 139 140 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 141 142 143 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 144 145 146 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 147 148 149 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 150 151 152 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 153 154 155 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 156 157 158 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 159 160 161 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 162 163 164 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 165 166 167 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 168 169 170 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 171 172 173 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 174 175 176 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 177 178 179 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 180 181 182 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 183 184 185 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 186 187 188 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 189 190 191 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 192 193 194 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 195 196 197 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 198 199 200 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 201 202 203 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 204 205 206 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 207 208 209 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 210 211 212 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 213 214 215 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 216 217 218 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 219 220 221 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 222 223 224 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 225 226 227 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 228 229 230 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 231 232 233 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 234 235 236 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 237 238 239 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 240 241 242 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 243 244 245 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 246 247 248 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 249 250 251 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 252 253 254 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 255 256 257 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 258 259 260 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 261 262 263 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 264 265 266 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 267 268 269 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 270 271 272 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 273 274 275 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 276 277 278 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 279 280 281 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 282 283 284 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 285 286 287 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 288 289 290 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 291 292 293 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 294 295 296 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 297 298 299 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 300 301 302 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 303 304 305 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 306 307 308 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 309 310 311 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 312 313 314 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 315 316 317 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 318 319 320 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 321 322 323 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 324 325 326 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 327 328 329 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 330 331 332 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 333 334 335 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 336 337 338 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 339 340 341 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 342 343 344 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 345 346 347 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 348 349 350 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 351 352 353 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 354 355 356 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 357 358 359 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 360 361 362 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 363 364 365 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 366 367 368 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 369 370 371 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 372 373 374 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 375 376 377 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 378 379 380 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 381 382 383 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 384 385 386 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 387 388 389 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 390 391 392 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 393 394 395 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 396 397 398 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 399 400 401 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 402 403 404 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 405 406 407 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 408 409 410 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 411 412 413 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 414 415 416 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 417 418 419 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 420 421 422 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 423 424 425 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 426 427 428 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 429 430 431 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 432 433 434 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 435 436 437 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 438 439 440 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 441 442 443 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 444 445 446 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 447 448 449 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 450 451 452 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 453 454 455 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 456 457 458 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 459 460 461 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 462 463 464 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 465 466 467 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 468 469 470 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 471 472 473 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 474 475 476 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 477 478 479 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 480 481 482 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 483 484 485 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 486 487 488 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 489 490 491 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 492 493 494 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 495 496 497 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 498 499 500 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 501 502 503 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 504 505 506 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 507 508 509 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 510 511 512 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 513 514 515 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 516 517 518 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 519 520 521 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 522 523 524 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 525 526 527 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 528 529 530 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 531 532 533 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 534 535 536 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 537 538 539 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 540 541 542 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 543 544 545 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 546 547 548 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 549 550 551 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 552 553 554 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 555 556 557 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 558 559 560 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 561 562 563 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 564 565 566 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 567 568 569 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 570 571 572 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 573 574 575 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 576 577 578 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 579 580 581 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 582 583 584 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 585 586 587 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 588 589 590 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 591 592 593 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 594 595 596 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 597 598 599 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 600 601 602 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 603 604 605 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 606 607 608 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 609 610 611 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 612 613 614 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 615 616 617 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 618 619 620 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 621 622 623 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 624 625 626 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 627 628 629 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 630 631 632 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 633 634 635 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 636 637 638 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 639 640 641 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 642 643 644 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 645 646 647 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 648 649 650 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 651 652 653 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 654 655 656 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 657 658 659 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 660 661 662 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 663 664 665 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 666 667 668 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 669 670 671 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 672 673 674 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 675 676 677 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 678 679 680 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 681 682 683 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 684 685 686 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 687 688 689 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 690 691 692 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 693 694 695 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 696 697 698 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 699 700 701 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 702 703 704 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 705 706 707 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 708 709 710 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 711 712 713 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 714 715 716 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 717 718 719 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 720 721 722 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 723 724 725 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 726 727 728 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 729 730 731 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 732 733 734 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 735 736 737 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 738 739 740 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 741 742 743 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 744 745 746 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 747 748 749 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 750 751 752 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 753 754 755 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 756 757 758 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 759 760 761 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 762 763 764 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 765 766 767 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 768 769 770 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 771 772 773 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 774 775 776 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 777 778 779 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 780 781 782 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 783 784 785 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 786 787 788 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 789 790 791 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 792 793 794 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 795 796 797 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 798 799 800 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 801 802 803 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 804 805 806 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 807 808 809 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 810 811 812 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 813 814 815 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 816 817 818 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 819 820 821 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 822 823 824 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 825 826 827 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 828 829 830 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 831 832 833 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 834 835 836 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 837 838 839 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 840 841 842 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 843 844 845 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 846 847 848 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 849 850 851 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 852 853 854 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 855 856 857 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 858 859 860 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 861 862 863 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 864 865 866 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 867 868 869 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 870 871 872 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 873 874 875 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 876 877 878 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 879 880 881 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 882 883 884 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 885 886 887 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 888 889 890 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 891 892 893 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 894 895 896 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 897 898 899 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 900 901 902 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 903 904 905 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 906 907 908 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 909 910 911 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 912 913 914 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 915 916 917 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 918 919 920 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 921 922 923 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 924 925 926 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 927 928 929 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 930 931 932 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 933 934 935 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 936 937 938 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 939 940 941 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 942 943 944 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 945 946 947 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 948 949 950 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 951 952 953 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 954 955 956 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 957 958 959 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 960 961 962 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 963 964 965 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 966 967 968 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 969 970 971 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 972 973 974 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 975 976 977 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 978 979 980 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 981 982 983 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 984 985 986 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 987 988 989 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 990 991 992 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 993 994 995 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 996 997 998 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 999 1000 1001 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1002 1003 1004 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1005 1006 1007 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1008 1009 1010 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1011 1012 1013 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1014 1015 1016 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1017 1018 1019 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1020 1021 1022 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1023 1024 1025 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1026 1027 1028 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1029 1030 1031 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1032 1033 1034 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1035 1036 1037 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1038 1039 1040 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1041 1042 1043 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1044 1045 1046 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1047 1048 1049 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1050 1051 1052 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1053 1054 1055 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1056 1057 1058 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1059 1060 1061 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1062 1063 1064 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1065 1066 1067 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1068 1069 1070 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1071 1072 1073 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1074 1075 1076 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1077 1078 1079 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1080 1081 1082 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1083 1084 1085 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1086 1087 1088 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1089 1090 1091 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1092 1093 1094 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1095 1096 1097 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1098 1099 1100 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1101 1102 1103 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1104 1105 1106 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1107 1108 1109 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1110 1111 1112 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1113 1114 1115 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1116 1117 1118 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1119 1120 1121 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1122 1123 1124 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1125 1126 1127 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1128 1129 1130 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1131 1132 1133 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1134 1135 1136 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1137 1138 1139 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1140 1141 1142 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1143 1144 1145 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1146 1147 1148 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1149 1150 1151 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1152 1153 1154 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1155 1156 1157 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1158 1159 1160 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1161 1162 1163 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1164 1165 1166 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1167 1168 1169 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1170 1171 1172 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1173 1174 1175 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1176 1177 1178 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1179 1180 1181 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1182 1183 1184 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1185 1186 1187 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1188 1189 1190 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1191 1192 1193 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1194 1195 1196 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1197 1198 1199 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1200 1201 1202 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1203 1204 1205 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1206 1207 1208 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1209 1210 1211 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1212 1213 1214 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1215 1216 1217 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1218 1219 1220 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1221 1222 1223 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1224 1225 1226 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1227 1228 1229 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1230 1231 1232 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1233 1234 1235 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1236 1237 1238 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1239 1240 1241 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1242 1243 1244 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1245 1246 1247 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1248 1249 1250 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1251 1252 1253 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1254 1255 1256 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1257 1258 1259 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1260 1261 1262 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1263 1264 1265 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1266 1267 1268 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1269 1270 1271 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1272 1273 1274 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1275 1276 1277 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1278 1279 1280 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1281 1282 1283 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1284 1285 1286 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1287 1288 1289 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1290 1291 1292 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1293 1294 1295 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1296 1297 1298 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1299 1300 1301 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1302 1303 1304 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1305 1306 1307 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1308 1309 1310 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1311 1312 1313 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1314 1315 1316 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1317 1318 1319 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1320 1321 1322 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1323 1324 1325 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1326 1327 1328 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1329 1330 1331 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1332 1333 1334 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1335 1336 1337 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1338 1339 1340 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1341 1342 1343 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1344 1345 1346 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1347 1348 1349 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1350 1351 1352 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1353 1354 1355 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1356 1357 1358 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1359 1360 1361 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1362 1363 1364 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1365 1366 1367 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1368 1369 1370 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1371 1372 1373 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1374 1375 1376 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1377 1378 1379 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1380 1381 1382 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1383 1384 1385 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1386 1387 1388 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1389 1390 1391 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1392 1393 1394 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1395 1396 1397 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1398 1399 1400 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1401 1402 1403 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1404 1405 1406 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1407 1408 1409 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1410 1411 1412 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1413 1414 1415 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1416 1417 1418 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1419 1420 1421 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1422 1423 1424 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1425 1426 1427 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1428 1429 1430 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1431 1432 1433 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1434 1435 1436 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1437 1438 1439 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1440 1441 1442 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1443 1444 1445 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1446 1447 1448 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1449 1450 1451 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1452 1453 1454 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1455 1456 1457 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1458 1459 1460 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1461 1462 1463 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1464 1465 1466 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1467 1468 1469 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1470 1471 1472 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1473 1474 1475 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1476 1477 1478 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1479 1480 1481 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1482 1483 1484 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1485 1486 1487 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1488 1489 1490 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1491 1492 1493 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1494 1495 1496 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1497 1498 1499 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1500 1501 1502 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1503 1504 1505 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1506 1507 1508 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1509 1510 1511 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1512 1513 1514 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1515 1516 1517 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1518 1519 1520 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1521 1522 1523 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1524 1525 1526 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1527 1528 1529 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1530 1531 1532 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1533 1534 1535 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1536 1537 1538 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1539 1540 1541 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1542 1543 1544 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1545 1546 1547 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1548 1549 1550 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1551 1552 1553 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1554 1555 1556 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1557 1558 1559 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1560 1561 1562 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1563 1564 1565 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1566 1567 1568 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1569 1570 1571 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1572 1573 1574 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1575 1576 1577 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1578 1579 1580 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1581 1582 1583 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1584 1585 1586 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1587 1588 1589 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1590 1591 1592 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1593 1594 1595 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1596 1597 1598 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1599 1600 1601 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1602 1603 1604 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1605 1606 1607 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1608 1609 1610 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1611 1612 1613 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1614 1615 1616 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1617 1618 1619 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1620 1621 1622 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1623 1624 1625 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1626 1627 1628 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1629 1630 1631 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1632 1633 1634 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1635 1636 1637 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1638 1639 1640 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1641 1642 1643 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1644 1645 1646 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1647 1648 1649 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1650 1651 1652 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1653 1654 1655 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1656 1657 1658 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1659 1660 1661 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1662 1663 1664 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1665 1666 1667 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1668 1669 1670 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1671 1672 1673 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1674 1675 1676 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1677 1678 1679 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1680 1681 1682 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1683 1684 1685 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1686 1687 1688 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1689 1690 1691 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1692 1693 1694 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1695 1696 1697 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1698 1699 1700 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1701 1702 1703 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1704 1705 1706 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1707 1708 1709 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1710 1711 1712 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1713 1714 1715 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1716 1717 1718 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1719 1720 1721 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1722 1723 1724 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1725 1726 1727 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1728 1729 1730 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1731 1732 1733 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1734 1735 1736 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1737 1738 1739 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1740 1741 1742 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1743 1744 1745 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1746 1747 1748 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1749 1750 1751 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1752 1753 1754 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1755 1756 1757 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1758 1759 1760 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1761 1762 1763 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1764 1765 1766 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1767 1768 1769 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1770 1771 1772 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1773 1774 1775 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1776 1777 1778 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1779 1780 1781 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1782 1783 1784 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1785 1786 1787 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1788 1789 1790 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1791 1792 1793 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1794 1795 1796 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1797 1798 1799 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1800 1801 1802 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1803 1804 1805 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1806 1807 1808 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1809 1810 1811 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1812 1813 1814 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1815 1816 1817 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1818 1819 1820 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1821 1822 1823 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1824 1825 1826 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1827 1828 1829 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1830 1831 1832 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1833 1834 1835 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1836 1837 1838 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1839 1840 1841 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1842 1843 1844 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1845 1846 1847 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1848 1849 1850 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1851 1852 1853 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1854 1855 1856 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1857 1858 1859 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1860 1861 1862 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1863 1864 1865 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1866 1867 1868 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1869 1870 1871 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1872 1873 1874 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1875 1876 1877 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1878 1879 1880 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1881 1882 1883 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1884 1885 1886 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1887 1888 1889 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1890 1891 1892 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1893 1894 1895 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1896 1897 1898 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1899 1900 1901 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1902 1903 1904 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1905 1906 1907 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1908 1909 1910 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1911 1912 1913 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1914 1915 1916 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1917 1918 1919 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1920 1921 1922 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1923 1924 1925 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1926 1927 1928 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1929 1930 1931 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1932 1933 1934 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1935 1936 1937 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1938 1939 1940 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1941 1942 1943 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1944 1945 1946 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1947 1948 1949 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1950 1951 1952 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1953 1954 1955 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1956 1957 1958 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1959 1960 1961 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1962 1963 1964 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1965 1966 1967 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1968 1969 1970 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1971 1972 1973 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1974 1975 1976 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1977 1978 1979 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1980 1981 1982 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1983 1984 1985 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1986 1987 1988 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1989 1990 1991 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1992 1993 1994 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1995 1996 1997 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 1998 1999 2000 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2001 2002 2003 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2004 2005 2006 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2007 2008 2009 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2010 2011 2012 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2013 2014 2015 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2016 2017 2018 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2019 2020 2021 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2022 2023 2024 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2025 2026 2027 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2028 2029 2030 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2031 2032 2033 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2034 2035 2036 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2037 2038 2039 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2040 2041 2042 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2043 2044 2045 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2046 2047 2048 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2049 2050 2051 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2052 2053 2054 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2055 2056 2057 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2058 2059 2060 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2061 2062 2063 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2064 2065 2066 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2067 2068 2069 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2070 2071 2072 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2073 2074 2075 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2076 2077 2078 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2079 2080 2081 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2082 2083 2084 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2085 2086 2087 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2088 2089 2090 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2091 2092 2093 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2094 2095 2096 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2097 2098 2099 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2100 2101 2102 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2103 2104 2105 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2106 2107 2108 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2109 2110 2111 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2112 2113 2114 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2115 2116 2117 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2118 2119 2120 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2121 2122 2123 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2124 2125 2126 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2127 2128 2129 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2130 2131 2132 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2133 2134 2135 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2136 2137 2138 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2139 2140 2141 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2142 2143 2144 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2145 2146 2147 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2148 2149 2150 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2151 2152 2153 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2154 2155 2156 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2157 2158 2159 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2160 2161 2162 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2163 2164 2165 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2166 2167 2168 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2169 2170 2171 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2172 2173 2174 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2175 2176 2177 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2178 2179 2180 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2181 2182 2183 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2184 2185 2186 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2187 2188 2189 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2190 2191 2192 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2193 2194 2195 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2196 2197 2198 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2199 2200 2201 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2202 2203 2204 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2205 2206 2207 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2208 2209 2210 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2211 2212 2213 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2214 2215 2216 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2217 2218 2219 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2220 2221 2222 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2223 2224 2225 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2226 2227 2228 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2229 2230 2231 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2232 2233 2234 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2235 2236 2237 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2238 2239 2240 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2241 2242 2243 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2244 2245 2246 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2247 2248 2249 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2250 2251 2252 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2253 2254 2255 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2256 2257 2258 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2259 2260 2261 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2262 2263 2264 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2265 2266 2267 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2268 2269 2270 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2271 2272 2273 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2274 2275 2276 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2277 2278 2279 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2280 2281 2282 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2283 2284 2285 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2286 2287 2288 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2289 2290 2291 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2292 2293 2294 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2295 2296 2297 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2298 2299 2300 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2301 2302 2303 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2304 2305 2306 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2307 2308 2309 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2310 2311 2312 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2313 2314 2315 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2316 2317 2318 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2319 2320 2321 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2322 2323 2324 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2325 2326 2327 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2328 2329 2330 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2331 2332 2333 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2334 2335 2336 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2337 2338 2339 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2340 2341 2342 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2343 2344 2345 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2346 2347 2348 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2349 2350 2351 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2352 2353 2354 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2355 2356 2357 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2358 2359 2360 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2361 2362 2363 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2364 2365 2366 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2367 2368 2369 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2370 2371 2372 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2373 2374 2375 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2376 2377 2378 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2379 2380 2381 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2382 2383 2384 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2385 2386 2387 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2388 2389 2390 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2391 2392 2393 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2394 2395 2396 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2397 2398 2399 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2400 2401 2402 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2403 2404 2405 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2406 2407 2408 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2409 2410 2411 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2412 2413 2414 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2415 2416 2417 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2418 2419 2420 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2421 2422 2423 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2424 2425 2426 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2427 2428 2429 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2430 2431 2432 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2433 2434 2435 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2436 2437 2438 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2439 2440 2441 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2442 2443 2444 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2445 2446 2447 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2448 2449 2450 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2451 2452 2453 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2454 2455 2456 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2457 2458 2459 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2460 2461 2462 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2463 2464 2465 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2466 2467 2468 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2469 2470 2471 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2472 2473 2474 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2475 2476 2477 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2478 2479 2480 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2481 2482 2483 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2484 2485 2486 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2487 2488 2489 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2490 2491 2492 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2493 2494 2495 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2496 2497 2498 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2499 2500 2501 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2502 2503 2504 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2505 2506 2507 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2508 2509 2510 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2511 2512 2513 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2514 2515 2516 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2517 2518 2519 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2520 2521 2522 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2523 2524 2525 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2526 2527 2528 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2529 2530 2531 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2532 2533 2534 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2535 2536 2537 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2538 2539 2540 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2541 2542 2543 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2544 2545 2546 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2547 2548 2549 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2550 2551 2552 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2553 2554 2555 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2556 2557 2558 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2559 2560 2561 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2562 2563 2564 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2565 2566 2567 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2568 2569 2570 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2571 2572 2573 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2574 2575 2576 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2577 2578 2579 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2580 2581 2582 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2583 2584 2585 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2586 2587 2588 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2589 2590 2591 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2592 2593 2594 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2595 2596 2597 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2598 2599 2600 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2601 2602 2603 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2604 2605 2606 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2607 2608 2609 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2610 2611 2612 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2613 2614 2615 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2616 2617 2618 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2619 2620 2621 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2622 2623 2624 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2625 2626 2627 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2628 2629 2630 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2631 2632 2633 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2634 2635 2636 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2637 2638 2639 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2640 2641 2642 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2643 2644 2645 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2646 2647 2648 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2649 2650 2651 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2652 2653 2654 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2655 2656 2657 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2658 2659 2660 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2661 2662 2663 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2664 2665 2666 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2667 2668 2669 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2670 2671 2672 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2673 2674 2675 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2676 2677 2678 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2679 2680 2681 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2682 2683 2684 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2685 2686 2687 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2688 2689 2690 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2691 2692 2693 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2694 2695 2696 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2697 2698 2699 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2700 2701 2702 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2703 2704 2705 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2706 2707 2708 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2709 2710 2711 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2712 2713 2714 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2715 2716 2717 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2718 2719 2720 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2721 2722 2723 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2724 2725 2726 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2727 2728 2729 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2730 2731 2732 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2733 2734 2735 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2736 2737 2738 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2739 2740 2741 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2742 2743 2744 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2745 2746 2747 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2748 2749 2750 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2751 2752 2753 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2754 2755 2756 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2757 2758 2759 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2760 2761 2762 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2763 2764 2765 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2766 2767 2768 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2769 2770 2771 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2772 2773 2774 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2775 2776 2777 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2778 2779 2780 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2781 2782 2783 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2784 2785 2786 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2787 2788 2789 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2790 2791 2792 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2793 2794 2795 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2796 2797 2798 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2799 2800 2801 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2802 2803 2804 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2805 2806 2807 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2808 2809 2810 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2811 2812 2813 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2814 2815 2816 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2817 2818 2819 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2820 2821 2822 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2823 2824 2825 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2826 2827 2828 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2829 2830 2831 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2832 2833 2834 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2835 2836 2837 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2838 2839 2840 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2841 2842 2843 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2844 2845 2846 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2847 2848 2849 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2850 2851 2852 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2853 2854 2855 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2856 2857 2858 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2859 2860 2861 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2862 2863 2864 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2865 2866 2867 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2868 2869 2870 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2871 2872 2873 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2874 2875 2876 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2877 2878 2879 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2880 2881 2882 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2883 2884 2885 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2886 2887 2888 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2889 2890 2891 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2892 2893 2894 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2895 2896 2897 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2898 2899 2900 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2901 2902 2903 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2904 2905 2906 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2907 2908 2909 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2910 2911 2912 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2913 2914 2915 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2916 2917 2918 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2919 2920 2921 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2922 2923 2924 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2925 2926 2927 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2928 2929 2930 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2931 2932 2933 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2934 2935 2936 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2937 2938 2939 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2940 2941 2942 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2943 2944 2945 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2946 2947 2948 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2949 2950 2951 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2952 2953 2954 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2955 2956 2957 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2958 2959 2960 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2961 2962 2963 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2964 2965 2966 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2967 2968 2969 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2970 2971 2972 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2973 2974 2975 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2976 2977 2978 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2979 2980 2981 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2982 2983 2984 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2985 2986 2987 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2988 2989 2990 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2991 2992 2993 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2994 2995 2996 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 2997 2998 2999 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3000 3001 3002 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3003 3004 3005 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3006 3007 3008 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3009 3010 3011 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3012 3013 3014 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3015 3016 3017 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3018 3019 3020 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3021 3022 3023 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3024 3025 3026 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3027 3028 3029 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3030 3031 3032 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3033 3034 3035 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3036 3037 3038 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3039 3040 3041 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3042 3043 3044 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3045 3046 3047 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3048 3049 3050 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3051 3052 3053 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3054 3055 3056 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3057 3058 3059 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3060 3061 3062 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3063 3064 3065 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3066 3067 3068 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3069 3070 3071 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3072 3073 3074 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3075 3076 3077 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3078 3079 3080 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3081 3082 3083 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3084 3085 3086 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3087 3088 3089 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3090 3091 3092 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3093 3094 3095 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3096 3097 3098 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3099 3100 3101 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3102 3103 3104 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3105 3106 3107 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3108 3109 3110 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3111 3112 3113 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3114 3115 3116 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3117 3118 3119 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3120 3121 3122 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3123 3124 3125 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3126 3127 3128 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3129 3130 3131 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3132 3133 3134 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3135 3136 3137 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3138 3139 3140 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3141 3142 3143 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3144 3145 3146 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3147 3148 3149 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3150 3151 3152 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3153 3154 3155 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3156 3157 3158 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3159 3160 3161 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3162 3163 3164 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3165 3166 3167 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3168 3169 3170 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3171 3172 3173 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3174 3175 3176 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3177 3178 3179 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3180 3181 3182 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3183 3184 3185 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3186 3187 3188 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3189 3190 3191 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3192 3193 3194 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3195 3196 3197 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3198 3199 3200 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3201 3202 3203 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3204 3205 3206 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3207 3208 3209 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3210 3211 3212 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3213 3214 3215 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3216 3217 3218 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3219 3220 3221 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3222 3223 3224 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3225 3226 3227 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3228 3229 3230 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3231 3232 3233 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3234 3235 3236 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3237 3238 3239 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3240 3241 3242 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3243 3244 3245 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3246 3247 3248 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3249 3250 3251 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3252 3253 3254 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3255 3256 3257 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3258 3259 3260 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3261 3262 3263 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3264 3265 3266 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3267 3268 3269 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3270 3271 3272 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3273 3274 3275 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3276 3277 3278 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3279 3280 3281 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3282 3283 3284 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3285 3286 3287 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3288 3289 3290 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3291 3292 3293 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3294 3295 3296 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3297 3298 3299 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3300 3301 3302 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3303 3304 3305 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3306 3307 3308 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3309 3310 3311 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3312 3313 3314 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3315 3316 3317 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3318 3319 3320 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3321 3322 3323 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3324 3325 3326 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3327 3328 3329 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3330 3331 3332 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3333 3334 3335 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3336 3337 3338 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3339 3340 3341 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3342 3343 3344 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3345 3346 3347 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3348 3349 3350 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3351 3352 3353 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3354 3355 3356 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3357 3358 3359 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3360 3361 3362 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3363 3364 3365 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3366 3367 3368 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3369 3370 3371 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3372 3373 3374 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3375 3376 3377 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3378 3379 3380 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3381 3382 3383 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3384 3385 3386 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3387 3388 3389 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3390 3391 3392 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3393 3394 3395 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3396 3397 3398 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3399 3400 3401 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3402 3403 3404 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3405 3406 3407 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3408 3409 3410 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3411 3412 3413 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3414 3415 3416 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3417 3418 3419 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3420 3421 3422 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3423 3424 3425 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3426 3427 3428 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3429 3430 3431 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3432 3433 3434 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3435 3436 3437 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3438 3439 3440 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3441 3442 3443 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3444 3445 3446 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3447 3448 3449 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3450 3451 3452 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3453 3454 3455 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3456 3457 3458 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3459 3460 3461 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3462 3463 3464 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3465 3466 3467 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3468 3469 3470 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3471 3472 3473 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3474 3475 3476 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3477 3478 3479 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3480 3481 3482 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3483 3484 3485 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3486 3487 3488 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3489 3490 3491 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3492 3493 3494 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3495 3496 3497 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3498 3499 3500 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3501 3502 3503 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3504 3505 3506 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3507 3508 3509 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3510 3511 3512 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3513 3514 3515 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3516 3517 3518 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3519 3520 3521 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3522 3523 3524 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3525 3526 3527 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3528 3529 3530 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3531 3532 3533 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3534 3535 3536 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3537 3538 3539 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3540 3541 3542 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3543 3544 3545 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3546 3547 3548 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3549 3550 3551 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3552 3553 3554 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3555 3556 3557 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3558 3559 3560 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3561 3562 3563 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3564 3565 3566 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3567 3568 3569 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3570 3571 3572 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3573 3574 3575 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3576 3577 3578 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3579 3580 3581 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3582 3583 3584 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3585 3586 3587 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3588 3589 3590 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3591 3592 3593 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3594 3595 3596 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3597 3598 3599 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3600 3601 3602 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3603 3604 3605 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3606 3607 3608 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3609 3610 3611 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3612 3613 3614 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3615 3616 3617 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3618 3619 3620 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3621 3622 3623 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3624 3625 3626 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3627 3628 3629 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3630 3631 3632 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3633 3634 3635 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3636 3637 3638 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3639 3640 3641 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3642 3643 3644 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3645 3646 3647 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3648 3649 3650 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3651 3652 3653 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3654 3655 3656 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3657 3658 3659 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3660 3661 3662 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3663 3664 3665 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3666 3667 3668 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3669 3670 3671 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3672 3673 3674 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3675 3676 3677 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3678 3679 3680 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3681 3682 3683 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3684 3685 3686 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3687 3688 3689 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3690 3691 3692 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3693 3694 3695 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3696 3697 3698 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3699 3700 3701 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3702 3703 3704 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3705 3706 3707 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3708 3709 3710 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3711 3712 3713 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3714 3715 3716 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3717 3718 3719 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3720 3721 3722 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3723 3724 3725 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3726 3727 3728 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3729 3730 3731 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3732 3733 3734 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3735 3736 3737 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3738 3739 3740 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3741 3742 3743 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3744 3745 3746 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3747 3748 3749 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3750 3751 3752 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3753 3754 3755 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3756 3757 3758 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3759 3760 3761 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3762 3763 3764 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3765 3766 3767 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3768 3769 3770 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3771 3772 3773 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3774 3775 3776 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3777 3778 3779 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3780 3781 3782 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3783 3784 3785 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3786 3787 3788 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3789 3790 3791 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3792 3793 3794 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3795 3796 3797 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3798 3799 3800 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3801 3802 3803 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3804 3805 3806 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3807 3808 3809 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3810 3811 3812 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3813 3814 3815 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3816 3817 3818 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3819 3820 3821 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3822 3823 3824 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3825 3826 3827 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3828 3829 3830 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3831 3832 3833 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3834 3835 3836 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3837 3838 3839 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3840 3841 3842 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3843 3844 3845 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3846 3847 3848 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3849 3850 3851 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3852 3853 3854 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3855 3856 3857 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3858 3859 3860 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3861 3862 3863 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3864 3865 3866 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3867 3868 3869 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3870 3871 3872 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3873 3874 3875 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3876 3877 3878 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3879 3880 3881 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3882 3883 3884 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3885 3886 3887 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3888 3889 3890 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3891 3892 3893 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3894 3895 3896 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3897 3898 3899 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3900 3901 3902 <Ref> { stand_None } }
+    }
+    <Polygon> {
+      <TRef> { Material.001_00_Tex.001 }
+      <MRef> { Material.001 }
+      <VertexRef> { 3903 3904 3905 <Ref> { stand_None } }
+    }
+  }
+  <Joint> Bone {
+    <Transform> {
+      <Matrix4> {
+        0.000000 -0.997840 -0.000000 0.000000
+        0.000000 -0.000000 0.997840 0.000000
+        -0.997840 -0.000000 0.000000 0.000000
+        0.256792 0.559680 1.350479 1.000000
+      }
+    }
+    <VertexRef> {
+      217 221 224 256 259
+      <Scalar> membership { 0.098039 }
+      <Ref> { stand_None }
+    }
+    <VertexRef> {
+      1230 1235 1238 1371 1381 1386 1391
+      <Scalar> membership { 0.392157 }
+      <Ref> { stand_None }
+    }
+    <VertexRef> {
+      151 155 156 160 289 298 301
+      <Scalar> membership { 0.811765 }
+      <Ref> { stand_None }
+    }
+    <VertexRef> {
+      1237 1239 1244 1246 1375 1384 1387
+      <Scalar> membership { 0.152941 }
+      <Ref> { stand_None }
+    }
+    <VertexRef> {
+      108 111 856 858 1196 1199 1942 1946 3 8 113 1091 1092 1197 7 10 1093 1096 122 124 2815 2826 2869 121 144 149 2865 2870 2873 148 152 154 2863 2866 2876 153 158 2857 2864 2879 142 157 159 853 2858 2859 2908 109 133 136 140 141 846 851 854 855 4 18 21 110 112 132 0 5 6 11 12 15 23 1 17 24 30 33 66 118 125 2814 2817 19 52 131 134 135 13 20 22 51 55 14 16 31 54 58 60 48 59 62 71 74 53 56 61 68 69 115 119 126 130 138 143 161 277 288 293 116 128 275 280 842 1926 2880 2883 2888 2978 2981 2982 836 837 841 1920 1925 1927 835 859 1921 1945 850 852 2893 2902 2904 2909 838 840 845 2882 2896 834 839 844 847 857 860 843 848 849 2895 2898 2903 1206 1210 2911 2924 2965 1207 1232 1233 2963 2964 2967 1234 1236 1240 2959 2962 2970 1241 1242 2953 2958 2973 1228 1243 1247 1939 2952 2957 3004 1195 1219 1222 1224 1229 1934 1935 1938 1943 1090 1106 1109 1194 1198 1220 1088 1089 1094 1095 1100 1103 1107 1087 1101 1112 1118 1121 1151 1153 1156 1160 2913 2916 1154 1204 1209 2912 2915 1105 1138 1215 1218 1223 1099 1104 1108 1139 1141 1098 1102 1117 1142 1144 1148 1136 1143 1146 1155 1158 1137 1140 1147 1152 1157 1201 1203 1214 1216 1213 1217 1221 1225 1357 1361 1364 1200 1212 1359 1366 1936 1940 2989 2998 3002 3003 1924 1928 1929 2976 2992 1922 1923 1930 1933 1941 1944 1931 1932 1937 2993 2996 2997 2824 2834 2835 2920 2928 2933 2823 2827 2868 2872 2921 2923 2966 2968 2867 2871 2875 2961 2969 2971 2862 2874 2878 2960 2972 2974 2856 2861 2877 2954 2955 2975 2860 2906 2907 2956 3000 3005 2816 2818 2820 2825 2828 2831 2833 2890 2892 2905 2986 2990 3001 2884 2889 2980 2987 2885 2886 2891 2894 2900 2901 2881 2887 2897 2899 2910 2914 2918 2919 2922 2925 2929 2979 2984 2985 2988 2994 2999 2977 2983 2991 2995
+      <Scalar> membership { 1.000000 }
+      <Ref> { stand_None }
+    }
+    <VertexRef> {
+      127 129 137 139 271 273 276
+      <Scalar> membership { 0.168627 }
+      <Ref> { stand_None }
+    }
+    <VertexRef> {
+      63 67 70 72 2819 2822
+      <Scalar> membership { 0.682353 }
+      <Ref> { stand_None }
+    }
+    <VertexRef> {
+      49 65 73 97 99 104
+      <Scalar> membership { 0.211765 }
+      <Ref> { stand_None }
+    }
+    <VertexRef> {
+      1202 1205 1208 1211 1231 1367 1369 1373
+      <Scalar> membership { 0.003922 }
+      <Ref> { stand_None }
+    }
+    <VertexRef> {
+      541 545 548 551 601 603 606 609 535 537 542 595 599 600 517 519 538 577 581 598 550 552 556 610 614 616 555 563 617 621 544 546 642 645 658 660 534 540 543 639 643 516 536 539 637 640 510 513 518 521 635 638 547 549 553 647 650 554 557 558 561 649 653 607 611 613 684 689 646 648 651 654 657 655 659 662 665 802 804
+      <Scalar> membership { 0.000000 }
+      <Ref> { stand_None }
+    }
+    <VertexRef> {
+      242 254 391 401 468
+      <Scalar> membership { 0.054902 }
+      <Ref> { stand_None }
+    }
+    <VertexRef> {
+      206 218 241 243 252 255
+      <Scalar> membership { 0.415686 }
+      <Ref> { stand_None }
+    }
+    <VertexRef> {
+      146 147 150 287 295 302 303
+      <Scalar> membership { 0.219608 }
+      <Ref> { stand_None }
+    }
+    <Joint> Bone.001 {
+      <Transform> {
+        <Matrix4> {
+          -0.998919 0.000000 -0.046475 0.000000
+          -0.000000 1.000000 0.000000 0.000000
+          0.046475 0.000000 -0.998919 0.000000
+          0.000000 0.520252 -0.000000 1.000000
+        }
+      }
+      <VertexRef> {
+        184 188 189 193 2839 2841 2845 2851
+        <Scalar> membership { 0.882353 }
+        <Ref> { stand_None }
+      }
+      <VertexRef> {
+        48 59 62 71 74
+        <Scalar> membership { 0.450980 }
+        <Ref> { stand_None }
+      }
+      <VertexRef> {
+        1316 1317 1321 1349 1352 1353
+        <Scalar> membership { 0.317647 }
+        <Ref> { stand_None }
+      }
+      <VertexRef> {
+        1275 1278 1283 1287 1311 1324
+        <Scalar> membership { 0.792157 }
+        <Ref> { stand_None }
+      }
+      <VertexRef> {
+        75 1162 2849 2943 7 10 1093 1096 2 9 26 29 1086 1097 1110 1113 28 44 1114 1128 40 43 47 1126 1129 1131 77 81 178 180 185 2844 2847 1 17 24 30 33 25 27 35 41 42 92 93 36 39 45 91 166 169 14 16 31 54 58 60 32 34 50 57 94 96 49 65 73 97 99 104 106 192 197 2852 2854 90 95 98 101 162 167 198 100 103 107 196 199 202 163 200 201 220 222 226 1163 1168 1264 1268 1269 2942 2945 1270 1272 1277 1279 2935 2939 2941 2947 1088 1089 1094 1095 1100 1103 1107 1087 1101 1112 1118 1121 1111 1115 1119 1125 1130 1176 1181 1124 1127 1133 1177 1252 1255 1150 1190 1193 2917 2926 2949 1098 1102 1117 1142 1144 1148 1116 1120 1134 1145 1180 1184 1135 1149 1159 1183 1187 1188 1136 1143 1146 1155 1158 1192 1280 1281 2946 2950 1178 1179 1182 1185 1250 1251 1286 1186 1189 1191 1282 1285 1288 1309 1313 1320 1325 1344 1354 1303 1305 1308 1342 1345 2843 2846 2848 2937 2940 2944 2836 2838 2842 2932 2936 2938 2829 2832 2837 2840 2850 2853 2927 2930 2931 2934 2948 2951
+        <Scalar> membership { 1.000000 }
+        <Ref> { stand_None }
+      }
+      <VertexRef> {
+        164 165 170 171 205 207 216 219
+        <Scalar> membership { 0.396078 }
+        <Ref> { stand_None }
+      }
+      <VertexRef> {
+        1249 1284 1289 1306 1310 1312
+        <Scalar> membership { 0.239216 }
+        <Ref> { stand_None }
+      }
+      <VertexRef> {
+        0 5 6 11 12 15 23
+        <Scalar> membership { 0.694118 }
+        <Ref> { stand_None }
+      }
+      <VertexRef> {
+        1137 1140 1147 1152 1157 1201 1203 1214 1216
+        <Scalar> membership { 0.050980 }
+        <Ref> { stand_None }
+      }
+      <VertexRef> {
+        945 962 2036 2049 947 950 951 2034 2037 2042 2263 2389 2391 2530 2656 2660 2262 2267 2274 2531 2532 2543 2273 2276 2278 2282 2283 2538 2541 2545 2547 2552 2281 2284 2294 2295 2304 2271 2285 2297 2300 2540 2550 2562 2565 2310 2313 2316 2328 2331 2334 2292 2306 2327 2330 2332 2302 2307 2312 2335 2569 2576 2577 2602 2293 2296 2298 2301 2329 2336 2560 2563 2567 2570 2596 2601 2392 2421 2659 2687 2507 2508 2526 2537 2646 2651 2653 2527 2529 2534 2652 2657 2490 2525 2558 2587 2589 2528 2533 2535 2542 2544 2553 2546 2549 2554 2557 2572 2590 2594 2548 2551 2559 2564 2573 2584 2588 2591 2593 2598 2579 2582 2585 2597 2600 2603 2561 2571 2592 2595 2599 2650 2654 2655 2658 2681 2682 2685 2690 2743 2760 2765 2768 2769 2748 2753 2755 2766 2771 2754 2759 2761 2767 2744 2745 2764 2774 2775 2746 2750 2751 2773 2752 2756 2757 2772 2777 2758 2762 2763 2776 2778 2783 2785 2806 2784 2789 2791 2802 2807 2780 2781 2800 2810 2811 2782 2786 2787 2809 2788 2792 2793 2808 2813 2794 2798 2799 2812
+        <Scalar> membership { 0.000000 }
+        <Ref> { stand_None }
+      }
+      <VertexRef> {
+        1273 1276 1319 1322 1323
+        <Scalar> membership { 0.266667 }
+        <Ref> { stand_None }
+      }
+      <VertexRef> {
+        64 102 105 2821 2830 2855
+        <Scalar> membership { 0.533333 }
+        <Ref> { stand_None }
+      }
+      <Joint> Bone.012 {
+        <Transform> {
+          <Matrix4> {
+            0.998919 -0.000002 -0.046477 0.000000
+            -0.045161 -0.236355 -0.970617 0.000000
+            -0.010983 0.971667 -0.236100 0.000000
+            -0.000000 0.659966 -0.000000 1.000000
+          }
+        }
+        <VertexRef> {
+          37 85 89 168 173 176
+          <Scalar> membership { 0.764706 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          77 81 178 180 185 2844 2847 184 188 189 193 2839 2841 2845 2851 80 83 86 175 179 100 103 107 196 199 202 182 183 186 214 229 232 164 165 170 171 205 207 216 219 172 174 177 181 209 212 215
+          <Scalar> membership { 1.000000 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          2843 2846 2848 2937 2940 2944
+          <Scalar> membership { 0.305882 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          106 192 197 2852 2854
+          <Scalar> membership { 0.474510 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          38 46 88 979 1122 1132 1174 2068
+          <Scalar> membership { 0.376471 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          3 8 113 1091 1092 1197 7 10 1093 1096 2 9 26 29 1086 1097 1110 1113 28 44 1114 1128 40 43 47 1126 1129 1131 4 18 21 110 112 132 0 5 6 11 12 15 23 1 17 24 30 33 25 27 35 41 42 92 93 36 39 45 91 166 169 64 102 105 2821 2830 2855 63 67 70 72 2819 2822 19 52 131 134 135 13 20 22 51 55 14 16 31 54 58 60 32 34 50 57 94 96 49 65 73 97 99 104 48 59 62 71 74 53 56 61 68 69 115 119 126 130 90 95 98 101 162 167 198 187 190 231 234 239 191 194 195 203 227 238 228 233 235 261 264 269 223 225 236 237 260 268 1090 1106 1109 1194 1198 1220 1088 1089 1094 1095 1100 1103 1107 1087 1101 1112 1118 1121 1111 1115 1119 1125 1130 1176 1181 1124 1127 1133 1177 1252 1255 1098 1102 1117 1142 1144 1148 1116 1120 1134 1145 1180 1184 1137 1140 1147 1152 1157 1201 1203 1214 1216 1200 1212 1359 1366 1508 1512 1517 1557 1562 1564 2824 2834 2835 2920 2928 2933 2829 2832 2837 2840 2850 2853 2816 2818 2820 2825 2828 2831 2833 2927 2930 2931 2934 2948 2951 2910 2914 2918 2919 2922 2925 2929
+          <Scalar> membership { 0.000000 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          2507 2508 2526 2537 2646 2651 2653
+          <Scalar> membership { 0.015686 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          2836 2838 2842 2932 2936 2938
+          <Scalar> membership { 0.274510 }
+          <Ref> { stand_None }
+        }
+        <Joint> Bone.015 {
+          <Transform> {
+            <Matrix4> {
+              0.987837 0.103741 -0.115825 0.000000
+              -0.155492 0.659069 -0.735833 0.000000
+              0.000001 0.744893 0.667184 0.000000
+              0.000000 0.492760 0.000000 1.000000
+            }
+          }
+          <VertexRef> {
+            253 257 258 266 267 430 438 469 472
+            <Scalar> membership { 0.098039 }
+            <Ref> { stand_None }
+          }
+          <VertexRef> {
+            76 78 82 976 1161 1165 1167 2065 75 1162 2849 2943 79 84 87 975 980 981 984 80 83 86 175 179 964 2175 2181 2184 942 946 952 956 957 961 965 2179 2183 861 868 943 1949 1954 2032 2178 960 963 2051 2054 2176 945 962 2036 2049 947 950 951 2034 2037 2042 949 966 977 985 2038 2057 2064 2074 864 872 880 886 863 865 869 871 875 867 874 921 944 958 933 936 948 953 955 967 974 870 873 878 879 922 929 931 923 930 937 940 954 959 916 924 928 932 941 968 971 973 982 986 1024 1072 1080 1083 2194 1164 1172 1175 2066 2067 2072 2075 2053 2177 2185 2033 2035 2041 2043 2048 2050 2052 2180 2182 2186 1947 1951 1953 1957 1959 1955 1960 2012 2031 2047 2024 2027 2039 2040 2044 2056 2061 2010 2021 2026 2029 2045 2046 2055 2058 2062 2071 2073 2238 2243 2261 2268 2381 2382 2386 2260 2264 2265 2387 2388 2263 2389 2391 2530 2656 2660 2220 2227 2231 2352 2360 2218 2221 2343 2346 2351 2354 2213 2216 2219 2337 2342 2348 2225 2256 2289 2320 2324 2259 2266 2270 2275 2279 2288 2215 2217 2222 2224 2228 2314 2318 2321 2212 2214 2308 2311 2315 2479 2483 2575 2578 2580 2262 2267 2274 2531 2532 2543 2277 2280 2287 2290 2305 2323 2325 2273 2276 2278 2282 2283 2538 2541 2545 2547 2552 2281 2284 2294 2295 2304 2271 2285 2297 2300 2540 2550 2562 2565 2317 2319 2322 2326 2333 2310 2313 2316 2328 2331 2334 2292 2306 2327 2330 2332 2302 2307 2312 2335 2569 2576 2577 2602 2293 2296 2298 2301 2329 2336 2560 2563 2567 2570 2596 2601 2374 2378 2379 2384 2406 2409 2413 2419 2383 2385 2390 2393 2415 2420 2423 2424 2392 2421 2659 2687 2416 2426 2445 2450 2422 2425 2686 2689 2446 2471 2468 2469 2497 2501 2622 2627 2629 2499 2503 2514 2519 2624 2631 2504 2633 2636 2502 2505 2510 2511 2515 2635 2637 2642 2645 2506 2644 2647 2507 2508 2526 2537 2646 2651 2653 2527 2529 2534 2652 2657 2489 2494 2496 2621 2625 2485 2488 2612 2615 2616 2619 2478 2481 2484 2606 2607 2613 2492 2495 2498 2500 2518 2521 2523 2513 2516 2517 2522 2490 2525 2558 2587 2589 2509 2512 2520 2524 2536 2555 2556 2528 2533 2535 2542 2544 2553 2482 2486 2487 2491 2493 2581 2583 2586 2546 2549 2554 2557 2572 2590 2594 2548 2551 2559 2564 2573 2584 2588 2591 2593 2598 2579 2582 2585 2597 2600 2603 2561 2571 2592 2595 2599 2641 2643 2648 2649 2672 2675 2677 2683 2650 2654 2655 2658 2681 2682 2685 2690 2676 2679 2684 2702 2705 2707 2713 2680 2688 2711 2712 2706 2709 2714 2726 2729 2731 2734 2710 2733 2743 2760 2765 2768 2769 2742 2747 2749 2770 2754 2759 2761 2767 2744 2745 2764 2774 2775 2746 2750 2751 2773 2752 2756 2757 2772 2777 2758 2762 2763 2776 2778 2783 2785 2806 2784 2789 2791 2802 2807 2790 2795 2797 2803 2782 2786 2787 2809 2788 2792 2793 2808 2813 2794 2798 2799 2812 3006 3036 3066 3096 3126 3156 3186 3216 3246 3276 3306 3336 3007 3010 3338 3339 3344 3008 3009 3014 3037 3040 3038 3039 3044 3067 3070 3068 3069 3074 3097 3100 3098 3099 3104 3127 3130 3128 3129 3134 3157 3160 3158 3159 3164 3187 3190 3188 3189 3194 3217 3220 3218 3219 3224 3247 3250 3248 3249 3254 3277 3280 3278 3279 3284 3307 3310 3308 3309 3314 3337 3340 3013 3015 3020 3041 3042 3046 3043 3045 3050 3071 3072 3076 3073 3075 3080 3101 3102 3106 3103 3105 3110 3131 3132 3136 3133 3135 3140 3161 3162 3166 3163 3165 3170 3191 3192 3196 3193 3195 3200 3221 3222 3226 3223 3225 3230 3251 3252 3256 3253 3255 3260 3281 3282 3286 3109 3111 3116 3137 3138 3142 3139 3141 3146 3167 3168 3172 3169 3171 3176 3197 3198 3202 3199 3201 3206 3227 3228 3232 3229 3231 3236 3257 3258 3262 3259 3261 3266 3287 3288 3292 3205 3207 3212 3233 3234 3238 3235 3237 3242 3263 3264 3268 3366 3396 3426 3456 3486 3516 3546 3576 3606 3636 3666 3696 3367 3370 3698 3699 3704 3368 3369 3374 3397 3400 3398 3399 3404 3427 3430 3428 3429 3434 3457 3460 3458 3459 3464 3487 3490 3488 3489 3494 3517 3520 3518 3519 3524 3547 3550 3548 3549 3554 3577 3580 3578 3579 3584 3607 3610 3608 3609 3614 3637 3640 3638 3639 3644 3667 3670 3668 3669 3674 3697 3700 3371 3372 3376 3703 3705 3710 3373 3375 3380 3401 3402 3406 3403 3405 3410 3431 3432 3436 3433 3435 3440 3461 3462 3466 3463 3465 3470 3491 3492 3496 3493 3495 3500 3521 3522 3526 3523 3525 3530 3551 3552 3556 3553 3555 3560 3581 3582 3586 3583 3585 3590 3611 3612 3616 3613 3615 3620 3641 3642 3646 3643 3645 3650 3671 3672 3676 3673 3675 3680 3701 3702 3706 3377 3378 3382 3709 3711 3716 3409 3411 3416 3437 3438 3442 3439 3441 3446 3467 3468 3472 3469 3471 3476 3497 3498 3502 3499 3501 3506 3527 3528 3532 3529 3531 3536 3557 3558 3562 3559 3561 3566 3587 3588 3592 3679 3681 3686 3707 3708 3712
+            <Scalar> membership { 0.000000 }
+            <Ref> { stand_None }
+          }
+          <VertexRef> {
+            182 183 186 214 229 232 187 190 231 234 239 164 165 170 171 205 207 216 219 172 174 177 181 209 212 215 191 194 195 203 227 238 163 200 201 220 222 226 211 213 230 250 262 228 233 235 261 264 269 206 218 241 243 252 255 204 208 210 245 248 251 223 225 236 237 260 268 217 221 224 256 259
+            <Scalar> membership { 1.000000 }
+            <Ref> { stand_None }
+          }
+          <VertexRef> {
+            247 249 263 265 439 444 456 461
+            <Scalar> membership { 0.074510 }
+            <Ref> { stand_None }
+          }
+          <VertexRef> {
+            106 192 197 2852 2854
+            <Scalar> membership { 0.509804 }
+            <Ref> { stand_None }
+          }
+          <Joint> Bone.016 {
+            <Transform> {
+              <Matrix4> {
+                0.826806 0.527125 0.196293 0.000000
+                -0.560684 0.800261 0.212641 0.000000
+                -0.044998 -0.285871 0.957211 0.000000
+                -0.000000 0.416113 -0.000000 1.000000
+              }
+            }
+            <VertexRef> {
+              108 111 856 858 1196 1199 1942 1946 3 8 113 1091 1092 1197 122 124 2815 2826 2869 121 144 149 2865 2870 2873 148 152 154 2863 2866 2876 153 158 2857 2864 2879 142 157 159 853 2858 2859 2908 109 133 136 140 141 846 851 854 855 4 18 21 110 112 132 19 52 131 134 135 114 117 120 123 145 279 283 285 146 147 150 287 295 302 303 127 129 137 139 271 273 276 138 143 161 277 288 293 116 128 275 280 151 155 156 160 289 298 301 282 286 296 315 319 321 294 304 323 331 338 339 272 278 292 307 309 312 270 274 281 284 311 316 299 300 305 325 334 337 318 322 332 351 355 357 330 340 359 367 374 375 308 314 328 343 345 348 306 310 317 320 347 352 335 336 341 361 370 373 541 545 548 551 601 603 606 609 535 537 542 595 599 600 517 519 538 577 581 598 511 520 571 580 550 552 556 610 614 616 544 546 642 645 658 660 534 540 543 639 643 516 536 539 637 640 510 513 518 521 635 638 547 549 553 647 650 554 557 558 561 649 653 842 1926 2880 2883 2888 2978 2981 2982 836 837 841 1920 1925 1927 835 859 1921 1945 850 852 2893 2902 2904 2909 838 840 845 2882 2896 834 839 844 847 857 860 843 848 849 2895 2898 2903 1207 1232 1233 2963 2964 2967 1234 1236 1240 2959 2962 2970 1241 1242 2953 2958 2973 1228 1243 1247 1939 2952 2957 3004 1195 1219 1222 1224 1229 1934 1935 1938 1943 1090 1106 1109 1194 1198 1220 1230 1235 1238 1371 1381 1386 1391 1213 1217 1221 1225 1357 1361 1364 1226 1227 1245 1363 1376 1377 1237 1239 1244 1246 1375 1384 1387 1382 1390 1407 1417 1422 1427 1356 1362 1378 1393 1397 1400 1374 1379 1385 1399 1412 1413 1383 1388 1389 1411 1420 1423 1936 1940 2989 2998 3002 3003 1924 1928 1929 2976 2992 2862 2874 2878 2960 2972 2974 2856 2861 2877 2954 2955 2975 2860 2906 2907 2956 3000 3005 2890 2892 2905 2986 2990 3001 2884 2889 2980 2987 2885 2886 2891 2894 2900 2901 2881 2887 2897 2899 2979 2984 2985 2988 2994 2999 2977 2983 2991 2995
+              <Scalar> membership { 0.000000 }
+              <Ref> { stand_None }
+            }
+            <VertexRef> {
+              211 213 230 250 262 206 218 241 243 252 255 204 208 210 245 248 251 247 249 263 265 439 444 456 461 242 254 391 401 468 240 244 246 400 407 457 253 257 258 266 267 430 438 469 472 403 406 416 458 459 464 465 412 415 462 499 503 378 381 475 477 482 485 383 387 392 470 471 476 379 384 481 486 490 385 393 396 410 488 493 408 411 492 497 500 380 382 386 388 395 389 390 394 398 399 404 405 397 402 409 413 414 442 445 453 460 467 451 454 463 466 502 419 422 479 483 420 428 429 473 474 478 418 425 480 484 491 424 434 437 447 487 489 494 495 449 452 496 498 501 417 421 423 427 432 426 431 433 435 440 441 446 436 443 448 450 455 3726 3738 3750 3762 3774 3786 3798 3810 3822 3834 3846 3858 3727 3730 3860 3861 3866 3728 3729 3734 3739 3742 3740 3741 3746 3751 3754 3752 3753 3758 3763 3766 3764 3765 3770 3775 3778 3776 3777 3782 3787 3790 3788 3789 3794 3799 3802 3800 3801 3806 3811 3814 3812 3813 3818 3823 3826 3824 3825 3830 3835 3838 3836 3837 3842 3847 3850 3848 3849 3854 3859 3862 3735 3747 3759 3771 3783 3795 3807 3819 3831 3843 3855 3867 3731 3732 3737 3865 3868 3733 3736 3743 3744 3749 3745 3748 3755 3756 3761 3757 3760 3767 3768 3773 3769 3772 3779 3780 3785 3781 3784 3791 3792 3797 3793 3796 3803 3804 3809 3805 3808 3815 3816 3821 3817 3820 3827 3828 3833 3829 3832 3839 3840 3845 3841 3844 3851 3852 3857 3853 3856 3863 3864 3869 3871 3888 3893 3896 3897 3870 3875 3877 3898 3876 3881 3883 3894 3899 3882 3887 3889 3895 3872 3873 3892 3902 3903 3874 3878 3879 3901 3880 3884 3885 3900 3905 3886 3890 3891 3904
+              <Scalar> membership { 1.000000 }
+              <Ref> { stand_None }
+            }
+            <VertexRef> {
+              217 221 224 256 259
+              <Scalar> membership { 0.094118 }
+              <Ref> { stand_None }
+            }
+            <VertexRef> {
+              228 233 235 261 264 269
+              <Scalar> membership { 0.592157 }
+              <Ref> { stand_None }
+            }
+          }
+        }
+      }
+      <Joint> Bone.011 {
+        <Transform> {
+          <Matrix4> {
+            0.998919 0.000001 -0.046478 0.000000
+            0.043803 -0.334410 0.941409 0.000000
+            -0.015542 -0.942428 -0.334048 0.000000
+            -0.000000 0.659966 -0.000000 1.000000
+          }
+        }
+        <VertexRef> {
+          1124 1127 1133 1177 1252 1255
+          <Scalar> membership { 0.741176 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          1258 1262 1265 1267 1293 1296 1299
+          <Scalar> membership { 0.886275 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          76 78 82 976 1161 1165 1167 2065 75 1162 2849 2943 38 46 88 979 1122 1132 1174 2068 37 85 89 168 173 176 1163 1168 1264 1268 1269 2942 2945 1270 1272 1277 1279 2935 2939 2941 2947 1123 1171 1173 1256 1257 1260 1166 1169 1170 1261 1263 1192 1280 1281 2946 2950 1248 1253 1254 1259 1291 1295 1304 1307 2843 2846 2848 2937 2940 2944
+          <Scalar> membership { 1.000000 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          1164 1172 1175 2066 2067 2072 2075
+          <Scalar> membership { 0.239216 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          1186 1189 1191 1282 1285 1288
+          <Scalar> membership { 0.062745 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          7 10 1093 1096 2 9 26 29 1086 1097 1110 1113 28 44 1114 1128 77 81 178 180 185 2844 2847 184 188 189 193 2839 2841 2845 2851 153 158 2857 2864 2879 142 157 159 853 2858 2859 2908 0 5 6 11 12 15 23 1 17 24 30 33 25 27 35 41 42 92 93 36 39 45 91 166 169 64 102 105 2821 2830 2855 63 67 70 72 2819 2822 14 16 31 54 58 60 32 34 50 57 94 96 49 65 73 97 99 104 48 59 62 71 74 79 84 87 975 980 981 984 80 83 86 175 179 106 192 197 2852 2854 90 95 98 101 162 167 198 100 103 107 196 199 202 146 147 150 287 295 302 303 138 143 161 277 288 293 182 183 186 214 229 232 187 190 231 234 239 164 165 170 171 205 207 216 219 172 174 177 181 209 212 215 191 194 195 203 227 238 163 200 201 220 222 226 211 213 230 250 262 228 233 235 261 264 269 223 225 236 237 260 268 294 304 323 331 338 339 1207 1232 1233 2963 2964 2967 1228 1243 1247 1939 2952 2957 3004 1087 1101 1112 1118 1121 1111 1115 1119 1125 1130 1176 1181 1150 1190 1193 2917 2926 2949 1151 1153 1156 1160 2913 2916 1154 1204 1209 2912 2915 1105 1138 1215 1218 1223 1098 1102 1117 1142 1144 1148 1116 1120 1134 1145 1180 1184 1135 1149 1159 1183 1187 1188 1136 1143 1146 1155 1158 1137 1140 1147 1152 1157 1201 1203 1214 1216 1178 1179 1182 1185 1250 1251 1286 1202 1205 1208 1211 1231 1367 1369 1373 1230 1235 1238 1371 1381 1386 1391 1213 1217 1221 1225 1357 1361 1364 1226 1227 1245 1363 1376 1377 1200 1212 1359 1366 1237 1239 1244 1246 1375 1384 1387 1266 1271 1274 1300 1315 1318 1273 1276 1319 1322 1323 1275 1278 1283 1287 1311 1324 1249 1284 1289 1306 1310 1312 1297 1301 1314 1336 1348 1316 1317 1321 1349 1352 1353 1290 1302 1327 1331 1340 1343 1292 1294 1298 1329 1332 1335 1309 1313 1320 1325 1344 1354 1303 1305 1308 1342 1345 1333 1337 1347 1351 1516 1526 1555 1558 1328 1330 1334 1525 1532 1544 1545 1339 1341 1346 1350 1355 1477 1485 1556 1370 1372 1380 1403 1405 1409 1356 1362 1378 1393 1397 1400 1374 1379 1385 1399 1412 1413 1358 1360 1365 1368 1395 1402 1392 1398 1414 1429 1433 1436 1410 1415 1421 1435 1448 1449 1394 1396 1401 1404 1431 1438 1489 1492 1500 1542 1547 1548 1553 1498 1501 1550 1585 1587 1466 1469 1561 1565 1566 1569 1467 1475 1476 1554 1559 1560 1465 1472 1567 1574 1576 1471 1481 1484 1494 1572 1579 1496 1499 1580 1581 1584 1483 1490 1495 1497 1502 1528 1531 1541 1546 1551 1537 1540 1549 1552 1588 1503 1506 1563 1571 1508 1512 1517 1557 1562 1564 1504 1509 1568 1570 1575 1510 1518 1521 1535 1573 1577 1578 1583 1533 1536 1582 1586 1589 1505 1507 1511 1513 1520 1514 1515 1519 1523 1524 1529 1530 1522 1527 1534 1538 1539 2836 2838 2842 2932 2936 2938 2824 2834 2835 2920 2928 2933 2823 2827 2868 2872 2921 2923 2966 2968 2856 2861 2877 2954 2955 2975 2860 2906 2907 2956 3000 3005 2829 2832 2837 2840 2850 2853 2816 2818 2820 2825 2828 2831 2833 2927 2930 2931 2934 2948 2951 2910 2914 2918 2919 2922 2925 2929
+          <Scalar> membership { 0.000000 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          40 43 47 1126 1129 1131
+          <Scalar> membership { 0.721569 }
+          <Ref> { stand_None }
+        }
+        <Joint> Bone.013 {
+          <Transform> {
+            <Matrix4> {
+              0.994092 0.084526 0.068094 0.000000
+              -0.108542 0.774127 0.623656 0.000000
+              0.000001 -0.627362 0.778728 0.000000
+              -0.000000 0.425662 -0.000000 1.000000
+            }
+          }
+          <VertexRef> {
+            1150 1190 1193 2917 2926 2949 1099 1104 1108 1139 1141 1098 1102 1117 1142 1144 1148 1116 1120 1134 1145 1180 1184 1135 1149 1159 1183 1187 1188 1136 1143 1146 1155 1158 1137 1140 1147 1152 1157 1201 1203 1214 1216 1202 1205 1208 1211 1231 1367 1369 1373 1200 1212 1359 1366 1370 1372 1380 1403 1405 1409 1358 1360 1365 1368 1395 1402 1496 1499 1580 1581 1584
+            <Scalar> membership { 0.000000 }
+            <Ref> { stand_None }
+          }
+          <VertexRef> {
+            1186 1189 1191 1282 1285 1288 1266 1271 1274 1300 1315 1318 1273 1276 1319 1322 1323 1248 1253 1254 1259 1291 1295 1304 1307 1258 1262 1265 1267 1293 1296 1299 1275 1278 1283 1287 1311 1324 1249 1284 1289 1306 1310 1312 1297 1301 1314 1336 1348 1316 1317 1321 1349 1352 1353 1290 1302 1327 1331 1340 1343 1292 1294 1298 1329 1332 1335 1309 1313 1320 1325 1344 1354 1333 1337 1347 1351 1516 1526 1555 1558 1326 1338 1486 1491 1543 1328 1330 1334 1525 1532 1544 1545 1339 1341 1346 1350 1355 1477 1485 1556
+            <Scalar> membership { 1.000000 }
+            <Ref> { stand_None }
+          }
+          <VertexRef> {
+            1303 1305 1308 1342 1345
+            <Scalar> membership { 0.886275 }
+            <Ref> { stand_None }
+          }
+          <Joint> Bone.014 {
+            <Transform> {
+              <Matrix4> {
+                0.059942 0.549002 -0.833669 0.000000
+                0.994092 -0.108540 -0.000001 0.000000
+                -0.090487 -0.828743 -0.552265 0.000000
+                0.000000 0.596107 0.000000 1.000000
+              }
+            }
+          }
+          <Joint> Bone.021 {
+            <Transform> {
+              <Matrix4> {
+                0.965780 0.219093 0.138807 0.000000
+                -0.254826 0.901226 0.350508 0.000000
+                -0.048302 -0.373885 0.926216 0.000000
+                0.000000 0.596107 0.000000 1.000000
+              }
+            }
+            <VertexRef> {
+              1105 1138 1215 1218 1223 1099 1104 1108 1139 1141 1098 1102 1117 1142 1144 1148 1370 1372 1380 1403 1405 1409 1358 1360 1365 1368 1395 1402
+              <Scalar> membership { 0.000000 }
+              <Ref> { stand_None }
+            }
+            <VertexRef> {
+              1333 1337 1347 1351 1516 1526 1555 1558 1326 1338 1486 1491 1543 1328 1330 1334 1525 1532 1544 1545 1339 1341 1346 1350 1355 1477 1485 1556 1489 1492 1500 1542 1547 1548 1553 1498 1501 1550 1585 1587 1466 1469 1561 1565 1566 1569 1467 1475 1476 1554 1559 1560 1465 1472 1567 1574 1576 1471 1481 1484 1494 1572 1579 1496 1499 1580 1581 1584 1464 1468 1470 1474 1479 1473 1478 1480 1482 1487 1488 1493 1483 1490 1495 1497 1502 1528 1531 1541 1546 1551 1537 1540 1549 1552 1588 1503 1506 1563 1571 1508 1512 1517 1557 1562 1564 1504 1509 1568 1570 1575 1510 1518 1521 1535 1573 1577 1578 1583 1533 1536 1582 1586 1589 1505 1507 1511 1513 1520 1514 1515 1519 1523 1524 1529 1530 1522 1527 1534 1538 1539
+              <Scalar> membership { 1.000000 }
+              <Ref> { stand_None }
+            }
+          }
+        }
+      }
+      <Joint> Bone.010 {
+        <Transform> {
+          <Matrix4> {
+            0.998919 -0.000000 -0.046475 0.000000
+            0.000603 0.999916 0.012970 0.000000
+            0.046471 -0.012984 0.998835 0.000000
+            -0.000000 0.659966 -0.000000 1.000000
+          }
+        }
+        <VertexRef> {
+          3391 3394 3419 3420 3425
+          <Scalar> membership { 0.364706 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          3145 3147 3152 3173 3174 3178 3535 3537 3542 3563 3564 3568
+          <Scalar> membership { 0.513726 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          3595 3597 3602 3623 3624 3628
+          <Scalar> membership { 0.207843 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          1013 1014 1059 1064
+          <Scalar> membership { 0.639216 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          3691 3694 3719 3720 3725
+          <Scalar> membership { 0.509804 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          3685 3687 3692 3713 3714 3718
+          <Scalar> membership { 0.976471 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          3175 3177 3182 3203 3204 3208
+          <Scalar> membership { 0.376471 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          3505 3507 3512 3533 3534 3538
+          <Scalar> membership { 0.431373 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          3421 3424 3449 3450 3455
+          <Scalar> membership { 0.066667 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          3389 3390 3395 3721 3724
+          <Scalar> membership { 0.419608 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          3181 3184 3209 3210 3215
+          <Scalar> membership { 0.243137 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          3383 3384 3388 3715 3717 3722
+          <Scalar> membership { 0.666667 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          3589 3591 3596 3617 3618 3622
+          <Scalar> membership { 0.113725 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          3451 3454 3479 3480 3485
+          <Scalar> membership { 0.431373 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          1015 1017 1030 1063 1067 1078
+          <Scalar> membership { 0.380392 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          3631 3634 3659 3660 3665
+          <Scalar> membership { 0.305882 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          76 78 82 976 1161 1165 1167 2065 38 46 88 979 1122 1132 1174 2068 79 84 87 975 980 981 984 964 2175 2181 2184 942 946 952 956 957 961 965 2179 2183 861 868 943 1949 1954 2032 2178 862 866 882 887 1948 1950 1970 1971 883 888 1969 1976 1979 2396 889 891 894 1978 1982 1985 895 1984 2203 2210 2199 2204 2207 2209 908 911 1995 1998 2200 2206 906 970 978 983 1997 2059 2069 2070 960 963 2051 2054 2176 945 962 2036 2049 947 950 951 2034 2037 2042 949 966 977 985 2038 2057 2064 2074 864 872 880 886 876 881 884 885 897 900 2395 890 893 901 904 1085 2193 2198 2394 863 865 869 871 875 867 874 921 944 958 933 936 948 953 955 967 974 892 896 905 910 914 920 2201 2202 907 909 912 935 969 972 870 873 878 879 922 929 931 877 899 925 927 898 902 903 917 919 926 923 930 937 940 954 959 913 915 918 934 938 939 916 924 928 932 941 968 971 973 982 986 1024 1072 1080 1083 2194 1018 1066 1081 1084 2197 1164 1172 1175 2066 2067 2072 2075 2053 2177 2185 2033 2035 2041 2043 2048 2050 2052 2180 2182 2186 1952 1956 1966 1972 1964 1965 1968 1973 1974 1988 1991 1975 1977 1980 1990 1993 2172 2189 2190 1947 1951 1953 1957 1959 1955 1960 2012 2031 2047 2024 2027 2039 2040 2044 2056 2061 1981 1983 1992 1999 2001 2007 2205 2208 1996 2000 2003 2022 2060 2063 1958 1961 1962 1967 2011 2016 2020 1963 1986 2014 2018 1987 1989 1994 2004 2008 2013 2010 2021 2026 2029 2045 2046 2002 2006 2009 2023 2025 2030 2005 2015 2017 2019 2028 2055 2058 2062 2071 2073 2116 2161 2171 2174 2188 2230 2232 2357 2358 2362 2234 2236 2249 2250 2355 2366 2235 2364 2367 2237 2240 2241 2246 2248 2368 2372 2373 2376 2239 2377 2380 2238 2243 2261 2268 2381 2382 2386 2260 2264 2265 2387 2388 2263 2389 2391 2530 2656 2660 2220 2227 2231 2352 2360 2218 2221 2343 2346 2351 2354 2213 2216 2219 2337 2342 2348 2211 2341 2480 2608 2223 2226 2229 2233 2251 2254 2258 2244 2247 2252 2253 2225 2256 2289 2320 2324 2242 2245 2255 2257 2269 2286 2291 2259 2266 2270 2275 2279 2288 2215 2217 2222 2224 2228 2314 2318 2321 2212 2214 2308 2311 2315 2479 2483 2575 2578 2580 2262 2267 2274 2531 2532 2543 2277 2280 2287 2290 2305 2323 2325 2273 2276 2278 2282 2283 2538 2541 2545 2547 2552 2281 2284 2294 2295 2304 2271 2285 2297 2300 2540 2550 2562 2565 2317 2319 2322 2326 2333 2310 2313 2316 2328 2331 2334 2292 2306 2327 2330 2332 2302 2307 2312 2335 2569 2576 2577 2602 2293 2296 2298 2301 2329 2336 2560 2563 2567 2570 2596 2601 2356 2363 2365 2369 2371 2405 2427 2374 2378 2379 2384 2406 2409 2413 2419 2383 2385 2390 2393 2415 2420 2423 2424 2392 2421 2659 2687 2349 2353 2359 2361 2399 2429 2432 2344 2350 2398 2401 2338 2345 2347 2400 2339 2340 2604 2609 2404 2407 2411 2428 2430 2435 2451 2410 2412 2433 2438 2414 2417 2418 2436 2439 2443 2449 2416 2426 2445 2450 2397 2402 2431 2453 2456 2422 2425 2686 2689 2434 2437 2441 2452 2454 2459 2472 2440 2442 2457 2462 2444 2447 2448 2460 2463 2467 2470 2446 2471 2455 2474 2477 2458 2461 2465 2473 2475 2464 2466 2468 2469 2497 2501 2622 2627 2629 2499 2503 2514 2519 2624 2631 2504 2633 2636 2502 2505 2510 2511 2515 2635 2637 2642 2645 2506 2644 2647 2507 2508 2526 2537 2646 2651 2653 2527 2529 2534 2652 2657 2489 2494 2496 2621 2625 2485 2488 2612 2615 2616 2619 2478 2481 2484 2606 2607 2613 2492 2495 2498 2500 2518 2521 2523 2513 2516 2517 2522 2490 2525 2558 2587 2589 2509 2512 2520 2524 2536 2555 2556 2528 2533 2535 2542 2544 2553 2482 2486 2487 2491 2493 2581 2583 2586 2546 2549 2554 2557 2572 2590 2594 2548 2551 2559 2564 2573 2584 2588 2591 2593 2598 2579 2582 2585 2597 2600 2603 2561 2571 2592 2595 2599 2623 2628 2632 2634 2638 2667 2693 2639 2640 2669 2670 2641 2643 2648 2649 2672 2675 2677 2683 2650 2654 2655 2658 2681 2682 2685 2690 2618 2620 2626 2630 2661 2691 2694 2611 2617 2662 2665 2605 2610 2614 2666 2668 2671 2673 2692 2696 2697 2717 2674 2678 2699 2700 2676 2679 2684 2702 2705 2707 2713 2680 2688 2711 2712 2663 2664 2695 2715 2718 2698 2701 2703 2716 2720 2721 2738 2704 2708 2723 2724 2706 2709 2714 2726 2729 2731 2734 2710 2733 2719 2736 2739 2722 2725 2727 2737 2741 2728 2732 2730 2735 2743 2760 2765 2768 2769 2742 2747 2749 2770 2754 2759 2761 2767 2744 2745 2764 2774 2775 2746 2750 2751 2773 2752 2756 2757 2772 2777 2758 2762 2763 2776 2778 2783 2785 2806 2784 2789 2791 2802 2807 2790 2795 2797 2803 2780 2781 2800 2810 2811 2782 2786 2787 2809 2788 2792 2793 2808 2813 2794 2798 2799 2812 3006 3036 3066 3096 3126 3156 3186 3216 3246 3276 3306 3336 3007 3010 3338 3339 3344 3008 3009 3014 3037 3040 3038 3039 3044 3067 3070 3068 3069 3074 3097 3100 3098 3099 3104 3127 3130 3128 3129 3134 3157 3160 3158 3159 3164 3187 3190 3188 3189 3194 3217 3220 3218 3219 3224 3247 3250 3248 3249 3254 3277 3280 3278 3279 3284 3307 3310 3308 3309 3314 3337 3340 3011 3012 3016 3343 3345 3350 3013 3015 3020 3041 3042 3046 3043 3045 3050 3071 3072 3076 3073 3075 3080 3101 3102 3106 3103 3105 3110 3131 3132 3136 3133 3135 3140 3161 3162 3166 3163 3165 3170 3191 3192 3196 3193 3195 3200 3221 3222 3226 3223 3225 3230 3251 3252 3256 3253 3255 3260 3281 3282 3286 3283 3285 3290 3311 3312 3316 3313 3315 3320 3341 3342 3346 3017 3018 3022 3349 3351 3356 3019 3021 3026 3047 3048 3052 3049 3051 3056 3077 3078 3082 3109 3111 3116 3137 3138 3142 3139 3141 3146 3167 3168 3172 3169 3171 3176 3197 3198 3202 3199 3201 3206 3227 3228 3232 3229 3231 3236 3257 3258 3262 3259 3261 3266 3287 3288 3292 3289 3291 3296 3317 3318 3322 3319 3321 3326 3347 3348 3352 3023 3024 3028 3355 3357 3362 3025 3027 3032 3053 3054 3058 3055 3057 3062 3083 3084 3088 3205 3207 3212 3233 3234 3238 3235 3237 3242 3263 3264 3268 3265 3267 3272 3293 3294 3298 3325 3327 3332 3353 3354 3358 3029 3030 3035 3361 3364 3211 3214 3239 3240 3245 3241 3244 3269 3270 3275 3271 3274 3299 3300 3305 3331 3334 3359 3360 3365 3033 3063 3093 3123 3153 3183 3213 3243 3273 3303 3333 3363 3366 3396 3426 3456 3486 3516 3546 3576 3606 3636 3666 3696 3367 3370 3698 3699 3704 3368 3369 3374 3397 3400 3398 3399 3404 3427 3430 3428 3429 3434 3457 3460 3458 3459 3464 3487 3490 3488 3489 3494 3517 3520 3518 3519 3524 3547 3550 3548 3549 3554 3577 3580 3578 3579 3584 3607 3610 3608 3609 3614 3637 3640 3638 3639 3644 3667 3670 3668 3669 3674 3697 3700 3371 3372 3376 3703 3705 3710 3373 3375 3380 3401 3402 3406 3403 3405 3410 3431 3432 3436 3433 3435 3440 3461 3462 3466 3463 3465 3470 3491 3492 3496 3493 3495 3500 3521 3522 3526 3523 3525 3530 3551 3552 3556 3553 3555 3560 3581 3582 3586 3583 3585 3590 3611 3612 3616 3613 3615 3620 3641 3642 3646 3643 3645 3650 3671 3672 3676 3673 3675 3680 3701 3702 3706 3377 3378 3382 3709 3711 3716 3379 3381 3386 3407 3408 3412 3409 3411 3416 3437 3438 3442 3439 3441 3446 3467 3468 3472 3469 3471 3476 3497 3498 3502 3499 3501 3506 3527 3528 3532 3529 3531 3536 3557 3558 3562 3559 3561 3566 3587 3588 3592 3619 3621 3626 3647 3648 3652 3649 3651 3656 3677 3678 3682 3679 3681 3686 3707 3708 3712 3385 3387 3392 3413 3414 3418 3415 3417 3422 3443 3444 3448 3445 3447 3452 3473 3474 3478 3475 3477 3482 3503 3504 3508 3565 3567 3572 3593 3594 3598 3655 3657 3662 3683 3684 3688
+          <Scalar> membership { 1.000000 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          3079 3081 3086 3107 3108 3112
+          <Scalar> membership { 0.152941 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          2539 2566 2568 2574
+          <Scalar> membership { 0.254902 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          3601 3604 3629 3630 3635
+          <Scalar> membership { 0.388235 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          3625 3627 3632 3653 3654 3658
+          <Scalar> membership { 0.450980 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          1166 1169 1170 1261 1263
+          <Scalar> membership { 0.047059 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          3301 3304 3329 3330 3335
+          <Scalar> membership { 0.533333 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          2110 2155 2170 2173 2191
+          <Scalar> membership { 0.094118 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          2370 2375 2403 2408
+          <Scalar> membership { 0.600000 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          3085 3087 3092 3113 3114 3118
+          <Scalar> membership { 0.541176 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          2748 2753 2755 2766 2771
+          <Scalar> membership { 0.192157 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          3091 3094 3119 3120 3125 3541 3544 3569 3570 3575
+          <Scalar> membership { 0.050980 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          3031 3034 3059 3060 3065
+          <Scalar> membership { 0.717647 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          3121 3124 3149 3150 3155
+          <Scalar> membership { 0.454902 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          3061 3064 3089 3090 3095
+          <Scalar> membership { 0.850980 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          2272 2299 2303 2309
+          <Scalar> membership { 0.286275 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          3571 3574 3599 3600 3605
+          <Scalar> membership { 0.149020 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          3481 3484 3509 3510 3515
+          <Scalar> membership { 0.733333 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          3661 3664 3689 3690 3695
+          <Scalar> membership { 0.462745 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          3115 3117 3122 3143 3144 3148
+          <Scalar> membership { 0.878431 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          3295 3297 3302 3323 3324 3328
+          <Scalar> membership { 0.588235 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          3151 3154 3179 3180 3185
+          <Scalar> membership { 0.294118 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          3393 3423 3453 3483 3513 3543 3573 3603 3633 3663 3693 3723
+          <Scalar> membership { 0.407843 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          3511 3514 3539 3540 3545
+          <Scalar> membership { 0.352941 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          75 1162 2849 2943 77 81 178 180 185 2844 2847 80 83 86 175 179 1163 1168 1264 1268 1269 2942 2945 1270 1272 1277 1279 2935 2939 2941 2947 1116 1120 1134 1145 1180 1184 1135 1149 1159 1183 1187 1188 1192 1280 1281 2946 2950 1186 1189 1191 1282 1285 1288 1266 1271 1274 1300 1315 1318 1273 1276 1319 1322 1323 1275 1278 1283 1287 1311 1324 1297 1301 1314 1336 1348 1316 1317 1321 1349 1352 1353 1290 1302 1327 1331 1340 1343 1292 1294 1298 1329 1332 1335 1406 1408 1416 1439 1441 1445 1418 1426 1443 1453 1458 1463 1442 1444 1452 1876 1880 1881 1454 1462 1874 1877 1446 1451 1457 1860 1864 1866 1430 1432 1437 1440 1848 1852 1854 1879 1455 1460 1461 1868 1871 1872 1627 1629 1632 1635 1687 1691 1694 1697 1621 1625 1626 1681 1683 1688 1603 1607 1624 1663 1665 1684 1597 1606 1657 1666 1591 1594 1596 1600 1651 1654 1658 1660 1593 1610 1613 1655 1668 1671 1636 1640 1642 1696 1698 1702 1643 1647 1701 1709 1622 1628 1631 1727 1729 1604 1620 1623 1723 1726 1598 1601 1602 1605 1719 1722 1652 1653 1670 1792 1797 1650 1661 1790 1791 1796 1656 1659 1664 1667 1786 1789 1662 1682 1685 1783 1785 1669 1673 1675 1677 1798 1801 1803 1806 1680 1686 1689 1779 1782 1690 1692 1774 1776 1781 1693 1695 1699 1772 1773 1700 1703 1704 1707 1763 1764 1767 1771 1705 1762 1915 1919 1793 1794 1799 1800 1855 1878 1883 1777 1780 1784 1787 1788 1795 1870 1873 1875 1882 1802 1805 1832 1844 1853 1856 1768 1770 1775 1778 1814 1818 1863 1867 1869 1765 1769 1809 1813 1810 1812 1816 1820 1823 1826 1819 1824 1846 1858 1862 1865 2843 2846 2848 2937 2940 2944
+          <Scalar> membership { 0.000000 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          2779 2796 2801 2804 2805
+          <Scalar> membership { 0.141176 }
+          <Ref> { stand_None }
+        }
+        <Joint> Bone.019 {
+          <Transform> {
+            <Matrix4> {
+              0.965262 -0.226297 -0.130608 0.000000
+              0.261283 0.836014 0.482506 0.000000
+              0.000001 -0.499871 0.866100 0.000000
+              0.000000 0.996502 0.000000 1.000000
+            }
+          }
+          <VertexRef> {
+            2110 2155 2170 2173 2191
+            <Scalar> membership { 0.673588 }
+            <Ref> { stand_None }
+          }
+          <VertexRef> {
+            2156 2160 2163 2168 2169
+            <Scalar> membership { 1.000000 }
+            <Ref> { stand_None }
+          }
+          <VertexRef> {
+            2107 2111 2122 2152 2154 2167 2103 2108 2150 2151 2113 2115 2119 2158 2162 2164
+            <Scalar> membership { 1.000000 }
+            <Ref> { stand_None }
+          }
+          <VertexRef> {
+            889 891 894 1978 1982 1985
+            <Scalar> membership { 0.743629 }
+            <Ref> { stand_None }
+          }
+          <VertexRef> {
+            2093 2101 2105 2106 2114 2118 2123
+            <Scalar> membership { 0.953439 }
+            <Ref> { stand_None }
+          }
+          <VertexRef> {
+            2136 2146 2148 2153 2157 2165 2166
+            <Scalar> membership { 0.646509 }
+            <Ref> { stand_None }
+          }
+          <VertexRef> {
+            2109 2117 2120 2121 2187 2192
+            <Scalar> membership { 0.999999 }
+            <Ref> { stand_None }
+          }
+          <VertexRef> {
+            883 888 1969 1976 1979 2396 895 1984 2203 2210 1964 1965 1968 1973 1974 1988 1991 1975 1977 1980 1990 1993 2172 2189 2190 1981 1983 1992 1999 2001 2007 2205 2208 1963 1986 2014 2018 1987 1989 1994 2004 2008 2013 2005 2015 2017 2019 2028 2116 2161 2171 2174 2188 2349 2353 2359 2361 2399 2429 2432 2397 2402 2431 2453 2456 2455 2474 2477
+            <Scalar> membership { 0.000000 }
+            <Ref> { stand_None }
+          }
+          <VertexRef> {
+            2098 2102 2104 2143 2145 2149
+            <Scalar> membership { 0.686755 }
+            <Ref> { stand_None }
+          }
+          <Joint> Bone.020 {
+            <Transform> {
+              <Matrix4> {
+                0.965262 0.261283 0.000000 0.000000
+                -0.257761 0.952253 -0.163628 0.000000
+                -0.042754 0.157944 0.986522 0.000000
+                -0.000000 0.577090 0.000000 1.000000
+              }
+            }
+            <VertexRef> {
+              2088 2095 2135 2140
+              <Scalar> membership { 0.997732 }
+              <Ref> { stand_None }
+            }
+            <VertexRef> {
+              2092 2096 2112 2137 2139 2159
+              <Scalar> membership { 0.998128 }
+              <Ref> { stand_None }
+            }
+            <VertexRef> {
+              2078
+              <Scalar> membership { 0.999469 }
+              <Ref> { stand_None }
+            }
+            <VertexRef> {
+              2077 2086 2099 2131 2142
+              <Scalar> membership { 0.999997 }
+              <Ref> { stand_None }
+            }
+            <VertexRef> {
+              2136 2146 2148 2153 2157 2165 2166
+              <Scalar> membership { 0.883335 }
+              <Ref> { stand_None }
+            }
+            <VertexRef> {
+              2124 2129 2132 2134 2138 2141 2144 2147
+              <Scalar> membership { 1.000000 }
+              <Ref> { stand_None }
+            }
+            <VertexRef> {
+              2076 2083 2087 2128 2130
+              <Scalar> membership { 0.999127 }
+              <Ref> { stand_None }
+            }
+            <VertexRef> {
+              2098 2102 2104 2143 2145 2149
+              <Scalar> membership { 0.439116 }
+              <Ref> { stand_None }
+            }
+            <VertexRef> {
+              2079 2084 2126 2127
+              <Scalar> membership { 1.000000 }
+              <Ref> { stand_None }
+            }
+            <VertexRef> {
+              2080 2090 2125 2133
+              <Scalar> membership { 1.000000 }
+              <Ref> { stand_None }
+            }
+            <VertexRef> {
+              2081 2082 2085 2089 2091 2094 2097 2100
+              <Scalar> membership { 0.999998 }
+              <Ref> { stand_None }
+            }
+          }
+        }
+        <Joint> Bone.017 {
+          <Transform> {
+            <Matrix4> {
+              0.961536 -0.180351 0.207177 0.000000
+              0.272697 0.717236 -0.641256 0.000000
+              -0.032943 0.673087 0.738829 0.000000
+              0.000000 0.996502 0.000000 1.000000
+            }
+          }
+          <VertexRef> {
+            1019 1023 1026 1031 2195 2196
+            <Scalar> membership { 0.568627 }
+            <Ref> { stand_None }
+          }
+          <VertexRef> {
+            1024 1072 1080 1083 2194
+            <Scalar> membership { 0.411765 }
+            <Ref> { stand_None }
+          }
+          <VertexRef> {
+            1000 1002 1022 1048 1052 1068
+            <Scalar> membership { 0.149020 }
+            <Ref> { stand_None }
+          }
+          <VertexRef> {
+            1015 1017 1030 1063 1067 1078 1013 1014 1059 1064 1006 1008 1012 1054 1058 1060 1021 1025 1027 1069 1071 1075 1065 1073 1076 1077 1082
+            <Scalar> membership { 1.000000 }
+            <Ref> { stand_None }
+          }
+          <VertexRef> {
+            889 891 894 1978 1982 1985
+            <Scalar> membership { 0.227451 }
+            <Ref> { stand_None }
+          }
+          <VertexRef> {
+            876 881 884 885 897 900 2395 890 893 901 904 1085 2193 2198 2394 877 899 925 927 1018 1066 1081 1084 2197
+            <Scalar> membership { 0.000000 }
+            <Ref> { stand_None }
+          }
+          <Joint> Bone.018 {
+            <Transform> {
+              <Matrix4> {
+                0.961536 0.272696 -0.032943 0.000000
+                -0.265080 0.952665 0.148869 0.000000
+                0.071980 -0.134411 0.988308 0.000000
+                0.000000 0.552935 -0.000000 1.000000
+              }
+            }
+            <VertexRef> {
+              1021 1025 1027 1069 1071 1075
+              <Scalar> membership { 0.627451 }
+              <Ref> { stand_None }
+            }
+            <VertexRef> {
+              1006 1008 1012 1054 1058 1060 998 1003 1044 1051 1000 1002 1022 1048 1052 1068 988 996 1036 1046 994 1005 1033 1042 1055 991 993 1032 1039 1043 989 990 1035 1040 1034 987 992 995 997 1001 1004 1007 1010 999 1009 1011 1016 1020 1028 1029 1037 1038 1041 1045 1047 1050 1053 1056 1049 1057 1061 1062 1070 1074 1079
+              <Scalar> membership { 1.000000 }
+              <Ref> { stand_None }
+            }
+          }
+        }
+      }
+    }
+  }
+  <Joint> Bone.022 {
+    <Transform> {
+      <Matrix4> {
+        0.905998 0.175230 -0.379666 0.000000
+        0.000000 0.905998 0.418153 0.000000
+        0.418153 -0.379666 0.822609 0.000000
+        0.256792 0.559680 1.350479 1.000000
+      }
+    }
+    <VertexRef> {
+      109 133 136 140 141 846 851 854 855
+      <Scalar> membership { 0.313726 }
+      <Ref> { stand_None }
+    }
+    <VertexRef> {
+      836 837 841 1920 1925 1927
+      <Scalar> membership { 0.952941 }
+      <Ref> { stand_None }
+    }
+    <VertexRef> {
+      3 8 113 1091 1092 1197 1090 1106 1109 1194 1198 1220 1213 1217 1221 1225 1357 1361 1364
+      <Scalar> membership { 0.000000 }
+      <Ref> { stand_None }
+    }
+    <VertexRef> {
+      108 111 856 858 1196 1199 1942 1946 842 1926 2880 2883 2888 2978 2981 2982 835 859 1921 1945 850 852 2893 2902 2904 2909 838 840 845 2882 2896 834 839 844 847 857 860 843 848 849 2895 2898 2903 1195 1219 1222 1224 1229 1934 1935 1938 1943 1936 1940 2989 2998 3002 3003 1924 1928 1929 2976 2992 1922 1923 1930 1933 1941 1944 1931 1932 1937 2993 2996 2997 2890 2892 2905 2986 2990 3001 2884 2889 2980 2987 2885 2886 2891 2894 2900 2901 2881 2887 2897 2899 2979 2984 2985 2988 2994 2999 2977 2983 2991 2995
+      <Scalar> membership { 1.000000 }
+      <Ref> { stand_None }
+    }
+    <VertexRef> {
+      142 157 159 853 2858 2859 2908
+      <Scalar> membership { 0.054902 }
+      <Ref> { stand_None }
+    }
+  }
+  <Joint> Bone.002 {
+    <Transform> {
+      <Matrix4> {
+        0.000000 0.997840 -0.000000 0.000000
+        0.975690 -0.000000 -0.209076 0.000000
+        -0.209076 -0.000000 -0.975690 0.000000
+        0.256792 0.559680 1.350479 1.000000
+      }
+    }
+    <VertexRef> {
+      1374 1379 1385 1399 1412 1413
+      <Scalar> membership { 0.211765 }
+      <Ref> { stand_None }
+    }
+    <VertexRef> {
+      2979 2984 2985 2988 2994 2999
+      <Scalar> membership { 0.019608 }
+      <Ref> { stand_None }
+    }
+    <VertexRef> {
+      1228 1243 1247 1939 2952 2957 3004 1202 1205 1208 1211 1231 1367 1369 1373 1230 1235 1238 1371 1381 1386 1391 1213 1217 1221 1225 1357 1361 1364 1226 1227 1245 1363 1376 1377 1200 1212 1359 1366 1237 1239 1244 1246 1375 1384 1387 1356 1362 1378 1393 1397 1400
+      <Scalar> membership { 1.000000 }
+      <Ref> { stand_None }
+    }
+    <VertexRef> {
+      1137 1140 1147 1152 1157 1201 1203 1214 1216
+      <Scalar> membership { 0.129412 }
+      <Ref> { stand_None }
+    }
+    <VertexRef> {
+      550 552 556 610 614 616 547 549 553 647 650 554 557 558 561 649 653 1489 1492 1500 1542 1547 1548 1553 1466 1469 1561 1565 1566 1569 1467 1475 1476 1554 1559 1560 1465 1472 1567 1574 1576 1471 1481 1484 1494 1572 1579 1537 1540 1549 1552 1588 1503 1506 1563 1571 1508 1512 1517 1557 1562 1564 1504 1509 1568 1570 1575 1510 1518 1521 1535 1573 1577 1578 1583 1533 1536 1582 1586 1589 1522 1527 1534 1538 1539
+      <Scalar> membership { 0.000000 }
+      <Ref> { stand_None }
+    }
+    <VertexRef> {
+      1931 1932 1937 2993 2996 2997
+      <Scalar> membership { 0.870588 }
+      <Ref> { stand_None }
+    }
+    <VertexRef> {
+      1936 1940 2989 2998 3002 3003
+      <Scalar> membership { 0.329412 }
+      <Ref> { stand_None }
+    }
+    <Joint> Bone.003 {
+      <Transform> {
+        <Matrix4> {
+          1.000000 0.000000 -0.000000 0.000000
+          0.000000 0.449563 0.893249 0.000000
+          0.000000 -0.893249 0.449563 0.000000
+          -0.000000 0.370559 -0.000000 1.000000
+        }
+      }
+      <VertexRef> {
+        142 157 159 853 2858 2859 2908 151 155 156 160 289 298 301 550 552 556 610 614 616 547 549 553 647 650 554 557 558 561 649 653 850 852 2893 2902 2904 2909 843 848 849 2895 2898 2903 1489 1492 1500 1542 1547 1548 1553 1466 1469 1561 1565 1566 1569 1467 1475 1476 1554 1559 1560 1465 1472 1567 1574 1576 1471 1481 1484 1494 1572 1579 1528 1531 1541 1546 1551 1537 1540 1549 1552 1588 1503 1506 1563 1571 1508 1512 1517 1557 1562 1564 1504 1509 1568 1570 1575 1510 1518 1521 1535 1573 1577 1578 1583 1533 1536 1582 1586 1589 1505 1507 1511 1513 1520 1514 1515 1519 1523 1524 1529 1530 1522 1527 1534 1538 1539 2860 2906 2907 2956 3000 3005 2890 2892 2905 2986 2990 3001 2885 2886 2891 2894 2900 2901
+        <Scalar> membership { 0.000000 }
+        <Ref> { stand_None }
+      }
+      <VertexRef> {
+        1230 1235 1238 1371 1381 1386 1391 1213 1217 1221 1225 1357 1361 1364 1226 1227 1245 1363 1376 1377 1237 1239 1244 1246 1375 1384 1387 1370 1372 1380 1403 1405 1409 1382 1390 1407 1417 1422 1427 1356 1362 1378 1393 1397 1400 1374 1379 1385 1399 1412 1413 1358 1360 1365 1368 1395 1402 1383 1388 1389 1411 1420 1423
+        <Scalar> membership { 1.000000 }
+        <Ref> { stand_None }
+      }
+      <VertexRef> {
+        138 143 161 277 288 293
+        <Scalar> membership { 0.317647 }
+        <Ref> { stand_None }
+      }
+      <Joint> Bone.004 {
+        <Transform> {
+          <Matrix4> {
+            1.000000 0.000000 0.000000 0.000000
+            -0.000000 0.982908 0.184100 0.000000
+            -0.000000 -0.184100 0.982908 0.000000
+            -0.000000 0.307592 0.000000 1.000000
+          }
+        }
+        <VertexRef> {
+          1455 1460 1461 1868 1871 1872
+          <Scalar> membership { 0.945098 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          1768 1770 1775 1778 1814 1818 1863 1867 1869
+          <Scalar> membership { 0.796078 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          1662 1682 1685 1783 1785
+          <Scalar> membership { 0.749020 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          1370 1372 1380 1403 1405 1409 1382 1390 1407 1417 1422 1427 1406 1408 1416 1439 1441 1445 1418 1426 1443 1453 1458 1463 1392 1398 1414 1429 1433 1436 1410 1415 1421 1435 1448 1449 1394 1396 1401 1404 1431 1438 1419 1424 1425 1447 1456 1459 1442 1444 1452 1876 1880 1881 1454 1462 1874 1877 1428 1434 1450 1850 1859 1861 1446 1451 1457 1860 1864 1866 1430 1432 1437 1440 1848 1852 1854 1879 1777 1780 1784 1787 1788 1795 1870 1873 1875 1882
+          <Scalar> membership { 1.000000 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          1383 1388 1389 1411 1420 1423
+          <Scalar> membership { 0.176471 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          1612 1618 1672 1678
+          <Scalar> membership { 0.043137 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          344 350 364 762 771 775 362 363 369 776 778 782 550 552 556 610 614 616 750 757 759 763 767 773 737 739 743 751 755 761 742 747 753 820 823 547 549 553 647 650 554 557 558 561 649 653 619 676 829 831 646 648 651 654 657 718 720 746 748 817 819 677 678 723 731 826 828 724 728 730 732 735 738 745 749 752 754 758 733 740 760 772 774 777 729 736 741 824 825 1466 1469 1561 1565 1566 1569 1467 1475 1476 1554 1559 1560 1465 1472 1567 1574 1576 1471 1481 1484 1494 1572 1579 1627 1629 1632 1635 1687 1691 1694 1697 1621 1625 1626 1681 1683 1688 1603 1607 1624 1663 1665 1684 1597 1606 1657 1666 1591 1594 1596 1600 1651 1654 1658 1660 1593 1610 1613 1655 1668 1671 1614 1617 1676 1679 1897 1900 1636 1640 1642 1696 1698 1702 1643 1647 1701 1709 1644 1648 1706 1708 1885 1918 1537 1540 1549 1552 1588 1503 1506 1563 1571 1508 1512 1517 1557 1562 1564 1504 1509 1568 1570 1575 1510 1518 1521 1535 1573 1577 1578 1583 1533 1536 1582 1586 1589 1505 1507 1511 1513 1520 1522 1527 1534 1538 1539 1838 1843 1847 1849 1851 1857 1821 1825 1827 1837 1839 1845 1828 1835 1841 1906 1909 1630 1634 1730 1733 1744 1748 1622 1628 1631 1727 1729 1604 1620 1623 1723 1726 1598 1601 1602 1605 1719 1722 1592 1599 1717 1721 1753 1757 1590 1595 1608 1714 1716 1609 1611 1615 1619 1710 1713 1616 1712 1759 1893 1898 1633 1637 1639 1731 1734 1638 1641 1646 1649 1735 1737 1645 1738 1740 1884 1889 1652 1653 1670 1792 1797 1650 1661 1790 1791 1796 1656 1659 1664 1667 1786 1789 1669 1673 1675 1677 1798 1801 1803 1806 1674 1807 1899 1904 1690 1692 1774 1776 1781 1693 1695 1699 1772 1773 1700 1703 1704 1707 1763 1764 1767 1771 1705 1762 1915 1919 1732 1736 1739 1742 1745 1720 1724 1725 1728 1747 1751 1754 1741 1743 1746 1749 1888 1892 1750 1752 1755 1758 1891 1894 1793 1794 1799 1800 1855 1878 1883 1802 1805 1832 1844 1853 1856 1804 1808 1830 1834 1903 1907 1765 1769 1809 1813 1761 1766 1811 1815 1912 1916 1810 1812 1816 1820 1823 1826 1831 1833 1836 1840 1842 1819 1824 1846 1858 1862 1865 1817 1822 1829 1908 1913 1886 1887 1890 1895 1896 1901 1902 1905 1910 1911 1914 1917
+          <Scalar> membership { 0.000000 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          1680 1686 1689 1779 1782
+          <Scalar> membership { 0.717647 }
+          <Ref> { stand_None }
+        }
+        <Joint> Bone.005 {
+          <Transform> {
+            <Matrix4> {
+              0.001153 -0.001179 0.999999 0.000000
+              -0.999860 0.016724 0.001172 0.000000
+              -0.016725 -0.999859 -0.001160 0.000000
+              -0.000000 0.739777 0.000000 1.000000
+            }
+          }
+          <VertexRef> {
+            1633 1637 1639 1731 1734
+            <Scalar> membership { 0.780392 }
+            <Ref> { stand_None }
+          }
+          <VertexRef> {
+            1627 1629 1632 1635 1687 1691 1694 1697 1621 1625 1626 1681 1683 1688 1603 1607 1624 1663 1665 1684 1597 1606 1657 1666 1591 1594 1596 1600 1651 1654 1658 1660 1593 1610 1613 1655 1668 1671 1612 1618 1672 1678 1614 1617 1676 1679 1897 1900 1636 1640 1642 1696 1698 1702 1643 1647 1701 1709 1644 1648 1706 1708 1885 1918 1838 1843 1847 1849 1851 1857 1821 1825 1827 1837 1839 1845 1828 1835 1841 1906 1909 1630 1634 1730 1733 1744 1748 1622 1628 1631 1727 1729 1604 1620 1623 1723 1726 1598 1601 1602 1605 1719 1722 1592 1599 1717 1721 1753 1757 1590 1595 1608 1714 1716 1609 1611 1615 1619 1710 1713 1616 1712 1759 1893 1898 1638 1641 1646 1649 1735 1737 1645 1738 1740 1884 1889 1652 1653 1670 1792 1797 1650 1661 1790 1791 1796 1656 1659 1664 1667 1786 1789 1669 1673 1675 1677 1798 1801 1803 1806 1674 1807 1899 1904 1680 1686 1689 1779 1782 1690 1692 1774 1776 1781 1693 1695 1699 1772 1773 1700 1703 1704 1707 1763 1764 1767 1771 1705 1762 1915 1919 1732 1736 1739 1742 1745 1720 1724 1725 1728 1747 1751 1754 1711 1715 1718 1756 1760 1741 1743 1746 1749 1888 1892 1750 1752 1755 1758 1891 1894 1793 1794 1799 1800 1855 1878 1883 1802 1805 1832 1844 1853 1856 1804 1808 1830 1834 1903 1907 1768 1770 1775 1778 1814 1818 1863 1867 1869 1765 1769 1809 1813 1761 1766 1811 1815 1912 1916 1810 1812 1816 1820 1823 1826 1831 1833 1836 1840 1842 1819 1824 1846 1858 1862 1865 1817 1822 1829 1908 1913 1886 1887 1890 1895 1896 1901 1902 1905 1910 1911 1914 1917
+            <Scalar> membership { 1.000000 }
+            <Ref> { stand_None }
+          }
+          <VertexRef> {
+            1446 1451 1457 1860 1864 1866
+            <Scalar> membership { 0.517647 }
+            <Ref> { stand_None }
+          }
+          <VertexRef> {
+            550 552 556 610 614 616 547 549 553 647 650 554 557 558 561 649 653 1466 1469 1561 1565 1566 1569 1467 1475 1476 1554 1559 1560 1465 1472 1567 1574 1576 1471 1481 1484 1494 1572 1579 1503 1506 1563 1571 1508 1512 1517 1557 1562 1564 1504 1509 1568 1570 1575 1510 1518 1521 1535 1573 1577 1578 1583 1533 1536 1582 1586 1589 1505 1507 1511 1513 1520 1514 1515 1519 1523 1524 1529 1530
+            <Scalar> membership { 0.000000 }
+            <Ref> { stand_None }
+          }
+          <VertexRef> {
+            1455 1460 1461 1868 1871 1872
+            <Scalar> membership { 0.211765 }
+            <Ref> { stand_None }
+          }
+          <VertexRef> {
+            1662 1682 1685 1783 1785
+            <Scalar> membership { 0.647059 }
+            <Ref> { stand_None }
+          }
+          <VertexRef> {
+            1442 1444 1452 1876 1880 1881
+            <Scalar> membership { 0.011765 }
+            <Ref> { stand_None }
+          }
+        }
+      }
+    }
+  }
+  <Joint> Bone.006 {
+    <Transform> {
+      <Matrix4> {
+        0.000000 0.997840 0.000000 0.000000
+        -0.985877 0.000000 -0.154046 0.000000
+        -0.154046 -0.000000 0.985877 0.000000
+        0.256792 0.559680 1.350479 1.000000
+      }
+    }
+    <VertexRef> {
+      53 56 61 68 69 115 119 126 130
+      <Scalar> membership { 0.976471 }
+      <Ref> { stand_None }
+    }
+    <VertexRef> {
+      843 848 849 2895 2898 2903
+      <Scalar> membership { 0.078431 }
+      <Ref> { stand_None }
+    }
+    <VertexRef> {
+      2860 2906 2907 2956 3000 3005
+      <Scalar> membership { 0.800000 }
+      <Ref> { stand_None }
+    }
+    <VertexRef> {
+      148 152 154 2863 2866 2876 153 158 2857 2864 2879 142 157 159 853 2858 2859 2908 114 117 120 123 145 279 283 285 146 147 150 287 295 302 303 127 129 137 139 271 273 276 138 143 161 277 288 293 116 128 275 280 850 852 2893 2902 2904 2909 2885 2886 2891 2894 2900 2901
+      <Scalar> membership { 1.000000 }
+      <Ref> { stand_None }
+    }
+    <VertexRef> {
+      1241 1242 2953 2958 2973
+      <Scalar> membership { 0.168627 }
+      <Ref> { stand_None }
+    }
+    <VertexRef> {
+      151 155 156 160 289 298 301
+      <Scalar> membership { 0.160784 }
+      <Ref> { stand_None }
+    }
+    <VertexRef> {
+      1604 1620 1623 1723 1726
+      <Scalar> membership { 0.035294 }
+      <Ref> { stand_None }
+    }
+    <VertexRef> {
+      121 144 149 2865 2870 2873
+      <Scalar> membership { 0.368627 }
+      <Ref> { stand_None }
+    }
+    <VertexRef> {
+      122 124 2815 2826 2869 66 118 125 2814 2817 79 84 87 975 980 981 984 182 183 186 214 229 232 187 190 231 234 239 164 165 170 171 205 207 216 219 172 174 177 181 209 212 215 191 194 195 203 227 238 211 213 230 250 262 228 233 235 261 264 269 206 218 241 243 252 255 204 208 210 245 248 251 223 225 236 237 260 268 217 221 224 256 259 247 249 263 265 439 444 456 461 242 254 391 401 468 240 244 246 400 407 457 253 257 258 266 267 430 438 469 472 403 406 416 458 459 464 465 412 415 462 499 503 378 381 475 477 482 485 383 387 392 470 471 476 379 384 481 486 490 385 393 396 410 488 493 408 411 492 497 500 380 382 386 388 395 389 390 394 398 399 404 405 397 402 409 413 414 442 445 453 460 467 451 454 463 466 502 419 422 479 483 420 428 429 473 474 478 418 425 480 484 491 424 434 437 447 487 489 494 495 449 452 496 498 501 417 421 423 427 432 426 431 433 435 440 441 446 436 443 448 450 455 908 911 1995 1998 2200 2206 892 896 905 910 914 920 2201 2202 907 909 912 935 969 972 870 873 878 879 922 929 931 877 899 925 927 898 902 903 917 919 926 923 930 937 940 954 959 913 915 918 934 938 939 916 924 928 932 941 968 971 973 982 986 1024 1072 1080 1083 2194 1015 1017 1030 1063 1067 1078 1013 1014 1059 1064 1006 1008 1012 1054 1058 1060 1021 1025 1027 1069 1071 1075 1000 1002 1022 1048 1052 1068 994 1005 1033 1042 1055 1034 999 1009 1011 1016 1020 1028 1029 1019 1023 1026 1031 2195 2196 1049 1057 1061 1062 1070 1074 1079 1065 1073 1076 1077 1082 1234 1236 1240 2959 2962 2970 2497 2501 2622 2627 2629 2499 2503 2514 2519 2624 2631 2504 2633 2636 2502 2505 2510 2511 2515 2635 2637 2642 2645 2506 2644 2647 2513 2516 2517 2522 2623 2628 2632 2634 2638 2667 2693 2639 2640 2669 2670 2668 2671 2673 2692 2696 2697 2717 2698 2701 2703 2716 2720 2721 2738 2706 2709 2714 2726 2729 2731 2734 2728 2732 2730 2735 2823 2827 2868 2872 2921 2923 2966 2968 2867 2871 2875 2961 2969 2971 2862 2874 2878 2960 2972 2974 2856 2861 2877 2954 2955 2975 3409 3411 3416 3437 3438 3442 3726 3738 3750 3762 3774 3786 3798 3810 3822 3834 3846 3858 3727 3730 3860 3861 3866 3728 3729 3734 3739 3742 3740 3741 3746 3751 3754 3752 3753 3758 3763 3766 3764 3765 3770 3775 3778 3776 3777 3782 3787 3790 3788 3789 3794 3799 3802 3800 3801 3806 3811 3814 3812 3813 3818 3823 3826 3824 3825 3830 3835 3838 3836 3837 3842 3847 3850 3848 3849 3854 3859 3862 3731 3732 3737 3865 3868 3733 3736 3743 3744 3749 3745 3748 3755 3756 3761 3757 3760 3767 3768 3773 3769 3772 3779 3780 3785 3781 3784 3791 3792 3797 3793 3796 3803 3804 3809 3805 3808 3815 3816 3821 3817 3820 3827 3828 3833 3829 3832 3839 3840 3845 3841 3844 3851 3852 3857 3853 3856 3863 3864 3869 3871 3888 3893 3896 3897 3870 3875 3877 3898 3876 3881 3883 3894 3899 3882 3887 3889 3895 3872 3873 3892 3902 3903 3874 3878 3879 3901 3880 3884 3885 3900 3905 3886 3890 3891 3904
+      <Scalar> membership { 0.000000 }
+      <Ref> { stand_None }
+    }
+    <VertexRef> {
+      19 52 131 134 135
+      <Scalar> membership { 0.784314 }
+      <Ref> { stand_None }
+    }
+    <Joint> Bone.007 {
+      <Transform> {
+        <Matrix4> {
+          1.000000 -0.000000 -0.000000 0.000000
+          -0.000000 0.308536 -0.951213 0.000000
+          0.000000 0.951213 0.308536 0.000000
+          -0.000000 0.419120 -0.000000 1.000000
+        }
+      }
+      <VertexRef> {
+        108 111 856 858 1196 1199 1942 1946 3 8 113 1091 1092 1197 7 10 1093 1096 109 133 136 140 141 846 851 854 855 4 18 21 110 112 132 0 5 6 11 12 15 23 182 183 186 214 229 232 211 213 230 250 262 228 233 235 261 264 269 206 218 241 243 252 255 223 225 236 237 260 268 217 221 224 256 259 247 249 263 265 439 444 456 461 242 254 391 401 468 240 244 246 400 407 457 253 257 258 266 267 430 438 469 472 403 406 416 458 459 464 465 412 415 462 499 503 378 381 475 477 482 485 383 387 392 470 471 476 379 384 481 486 490 385 393 396 410 488 493 408 411 492 497 500 380 382 386 388 395 389 390 394 398 399 404 405 397 402 409 413 414 442 445 453 460 467 451 454 463 466 502 419 422 479 483 420 428 429 473 474 478 418 425 480 484 491 424 434 437 447 487 489 494 495 449 452 496 498 501 417 421 423 427 432 426 431 433 435 440 441 446 436 443 448 450 455 842 1926 2880 2883 2888 2978 2981 2982 836 837 841 1920 1925 1927 850 852 2893 2902 2904 2909 838 840 845 2882 2896 834 839 844 847 857 860 843 848 849 2895 2898 2903 1228 1243 1247 1939 2952 2957 3004 1195 1219 1222 1224 1229 1934 1935 1938 1943 1090 1106 1109 1194 1198 1220 1088 1089 1094 1095 1100 1103 1107 1087 1101 1112 1118 1121 1105 1138 1215 1218 1223 1099 1104 1108 1139 1141 1098 1102 1117 1142 1144 1148 1116 1120 1134 1145 1180 1184 1213 1217 1221 1225 1357 1361 1364 1273 1276 1319 1322 1323 1275 1278 1283 1287 1311 1324 1316 1317 1321 1349 1352 1353 1309 1313 1320 1325 1344 1354 1303 1305 1308 1342 1345 1936 1940 2989 2998 3002 3003 1924 1928 1929 2976 2992 1931 1932 1937 2993 2996 2997 2890 2892 2905 2986 2990 3001 2884 2889 2980 2987 2885 2886 2891 2894 2900 2901 2881 2887 2897 2899 2979 2984 2985 2988 2994 2999 2977 2983 2991 2995 3726 3738 3750 3762 3774 3786 3798 3810 3822 3834 3846 3858 3727 3730 3860 3861 3866 3728 3729 3734 3739 3742 3740 3741 3746 3751 3754 3752 3753 3758 3763 3766 3764 3765 3770 3775 3778 3776 3777 3782 3787 3790 3788 3789 3794 3799 3802 3800 3801 3806 3811 3814 3812 3813 3818 3823 3826 3824 3825 3830 3835 3838 3836 3837 3842 3847 3850 3848 3849 3854 3859 3862 3731 3732 3737 3865 3868 3733 3736 3743 3744 3749 3745 3748 3755 3756 3761 3781 3784 3791 3792 3797 3793 3796 3803 3804 3809 3805 3808 3815 3816 3821 3817 3820 3827 3828 3833 3829 3832 3839 3840 3845 3841 3844 3851 3852 3857 3853 3856 3863 3864 3869 3871 3888 3893 3896 3897 3870 3875 3877 3898 3876 3881 3883 3894 3899 3882 3887 3889 3895 3872 3873 3892 3902 3903 3874 3878 3879 3901 3880 3884 3885 3900 3905 3886 3890 3891 3904
+        <Scalar> membership { 0.000000 }
+        <Ref> { stand_None }
+      }
+      <VertexRef> {
+        146 147 150 287 295 302 303 151 155 156 160 289 298 301 282 286 296 315 319 321 294 304 323 331 338 339 272 278 292 307 309 312 290 291 297 313 324 329 270 274 281 284 311 316 299 300 305 325 334 337
+        <Scalar> membership { 1.000000 }
+        <Ref> { stand_None }
+      }
+      <VertexRef> {
+        138 143 161 277 288 293
+        <Scalar> membership { 0.866667 }
+        <Ref> { stand_None }
+      }
+      <Joint> Bone.008 {
+        <Transform> {
+          <Matrix4> {
+            1.000000 -0.000000 0.000000 0.000000
+            0.000000 0.999135 -0.041595 0.000000
+            0.000000 0.041595 0.999135 0.000000
+            -0.000000 0.327627 0.000000 1.000000
+          }
+        }
+        <VertexRef> {
+          354 358 368 790 792 797
+          <Scalar> membership { 0.545098 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          290 291 297 313 324 329
+          <Scalar> membership { 0.662745 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          299 300 305 325 334 337
+          <Scalar> membership { 0.980392 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          691 694 696 699 704 709 784 787 791 796
+          <Scalar> membership { 0.035294 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          330 340 359 367 374 375
+          <Scalar> membership { 0.670588 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          318 322 332 351 355 357 308 314 328 343 345 348 326 327 333 349 360 365 306 310 317 320 347 352 335 336 341 361 370 373 366 376 786 789 344 350 364 762 771 775 362 363 369 776 778 782 729 736 741 824 825
+          <Scalar> membership { 1.000000 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          138 143 161 277 288 293
+          <Scalar> membership { 0.400000 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          108 111 856 858 1196 1199 1942 1946 3 8 113 1091 1092 1197 7 10 1093 1096 109 133 136 140 141 846 851 854 855 4 18 21 110 112 132 247 249 263 265 439 444 456 461 403 406 416 458 459 464 465 412 415 462 499 503 378 381 475 477 482 485 383 387 392 470 471 476 379 384 481 486 490 385 393 396 410 488 493 408 411 492 497 500 541 545 548 551 601 603 606 609 535 537 542 595 599 600 517 519 538 577 581 598 511 520 571 580 505 508 512 514 565 568 570 574 509 522 525 567 584 587 526 532 586 592 530 533 588 591 811 814 550 552 556 610 614 616 555 563 617 621 560 562 618 622 799 832 380 382 386 388 395 389 390 394 398 399 404 405 397 402 409 413 414 442 445 453 460 467 451 454 463 466 502 419 422 479 483 420 428 429 473 474 478 418 425 480 484 491 424 434 437 447 487 489 494 495 449 452 496 498 501 426 431 433 435 440 441 446 436 443 448 450 455 737 739 743 751 755 761 742 747 753 820 823 544 546 642 645 658 660 534 540 543 639 643 516 536 539 637 640 510 513 518 521 635 638 504 515 631 633 667 669 523 527 529 531 626 629 528 624 673 809 810 547 549 553 647 650 554 557 558 561 649 653 559 652 656 800 801 564 569 582 706 713 566 573 702 707 708 572 575 576 579 700 703 583 585 589 593 712 715 719 722 590 721 815 816 596 602 605 695 698 604 608 688 692 693 607 611 613 684 689 612 615 620 623 675 680 683 685 619 676 829 831 646 648 651 654 657 634 636 641 644 661 663 666 625 627 630 670 672 655 659 662 665 802 804 664 668 671 674 805 808 705 710 711 716 769 794 795 714 717 744 756 765 768 718 720 746 748 817 819 682 686 687 690 726 734 779 781 785 679 681 725 727 677 678 723 731 826 828 724 728 730 732 735 738 745 749 752 754 758 733 740 760 772 774 777 842 1926 2880 2883 2888 2978 2981 2982 836 837 841 1920 1925 1927 850 852 2893 2902 2904 2909 838 840 845 2882 2896 834 839 844 847 857 860 843 848 849 2895 2898 2903 1228 1243 1247 1939 2952 2957 3004 1195 1219 1222 1224 1229 1934 1935 1938 1943 1090 1106 1109 1194 1198 1220 1088 1089 1094 1095 1100 1103 1107 1087 1101 1112 1118 1121 1105 1138 1215 1218 1223 1099 1104 1108 1139 1141 1098 1102 1117 1142 1144 1148 1116 1120 1134 1145 1180 1184 1178 1179 1182 1185 1250 1251 1286 1213 1217 1221 1225 1357 1361 1364 1226 1227 1245 1363 1376 1377 1248 1253 1254 1259 1291 1295 1304 1307 1249 1284 1289 1306 1310 1312 1290 1302 1327 1331 1340 1343 1292 1294 1298 1329 1332 1335 1303 1305 1308 1342 1345 1339 1341 1346 1350 1355 1477 1485 1556 1643 1647 1701 1709 1644 1648 1706 1708 1885 1918 1690 1692 1774 1776 1781 1693 1695 1699 1772 1773 1700 1703 1704 1707 1763 1764 1767 1771 1705 1762 1915 1919 1765 1769 1809 1813 1761 1766 1811 1815 1912 1916 1936 1940 2989 2998 3002 3003 1924 1928 1929 2976 2992 1931 1932 1937 2993 2996 2997 2860 2906 2907 2956 3000 3005 2890 2892 2905 2986 2990 3001 2884 2889 2980 2987 2885 2886 2891 2894 2900 2901 2881 2887 2897 2899 2979 2984 2985 2988 2994 2999 2977 2983 2991 2995 3726 3738 3750 3762 3774 3786 3798 3810 3822 3834 3846 3858 3727 3730 3860 3861 3866 3728 3729 3734 3739 3742 3776 3777 3782 3787 3790 3788 3789 3794 3799 3802 3800 3801 3806 3811 3814 3812 3813 3818 3823 3826 3824 3825 3830 3835 3838 3836 3837 3842 3847 3850 3848 3849 3854 3859 3862 3731 3732 3737 3865 3868 3733 3736 3743 3744 3749 3745 3748 3755 3756 3761 3757 3760 3767 3768 3773 3817 3820 3827 3828 3833 3829 3832 3839 3840 3845 3841 3844 3851 3852 3857 3853 3856 3863 3864 3869 3871 3888 3893 3896 3897 3870 3875 3877 3898 3876 3881 3883 3894 3899 3882 3887 3889 3895 3872 3873 3892 3902 3903 3874 3878 3879 3901 3880 3884 3885 3900 3905 3886 3890 3891 3904
+          <Scalar> membership { 0.000000 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          342 346 353 356 764 766 770 793
+          <Scalar> membership { 0.890196 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          750 757 759 763 767 773
+          <Scalar> membership { 0.407843 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          371 372 377 780 783 788
+          <Scalar> membership { 0.968627 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          578 594 597 697 701
+          <Scalar> membership { 0.627451 }
+          <Ref> { stand_None }
+        }
+        <VertexRef> {
+          506 507 524 628 632
+          <Scalar> membership { 0.274510 }
+          <Ref> { stand_None }
+        }
+        <Joint> Bone.009 {
+          <Transform> {
+            <Matrix4> {
+              0.017046 0.271215 0.962368 0.000000
+              -0.994156 0.107218 -0.012607 0.000000
+              -0.106602 -0.956528 0.271457 0.000000
+              -0.000000 0.664870 0.000000 1.000000
+            }
+          }
+          <VertexRef> {
+            691 694 696 699 704 709 784 787 791 796
+            <Scalar> membership { 0.466667 }
+            <Ref> { stand_None }
+          }
+          <VertexRef> {
+            108 111 856 858 1196 1199 1942 1946 3 8 113 1091 1092 1197 7 10 1093 1096 109 133 136 140 141 846 851 854 855 4 18 21 110 112 132 842 1926 2880 2883 2888 2978 2981 2982 836 837 841 1920 1925 1927 850 852 2893 2902 2904 2909 838 840 845 2882 2896 843 848 849 2895 2898 2903 1195 1219 1222 1224 1229 1934 1935 1938 1943 1090 1106 1109 1194 1198 1220 1088 1089 1094 1095 1100 1103 1107 1087 1101 1112 1118 1121 1105 1138 1215 1218 1223 1099 1104 1108 1139 1141 1098 1102 1117 1142 1144 1148 1116 1120 1134 1145 1180 1184 1178 1179 1182 1185 1250 1251 1286 1248 1253 1254 1259 1291 1295 1304 1307 1249 1284 1289 1306 1310 1312 1303 1305 1308 1342 1345 1936 1940 2989 2998 3002 3003 1924 1928 1929 2976 2992 1931 1932 1937 2993 2996 2997 2890 2892 2905 2986 2990 3001 2884 2889 2980 2987 2885 2886 2891 2894 2900 2901 2881 2887 2897 2899 2979 2984 2985 2988 2994 2999 2977 2983 2991 2995
+            <Scalar> membership { 0.000000 }
+            <Ref> { stand_None }
+          }
+          <VertexRef> {
+            344 350 364 762 771 775 362 363 369 776 778 782 342 346 353 356 764 766 770 793 371 372 377 780 783 788 541 545 548 551 601 603 606 609 535 537 542 595 599 600 517 519 538 577 581 598 511 520 571 580 505 508 512 514 565 568 570 574 509 522 525 567 584 587 526 532 586 592 530 533 588 591 811 814 550 552 556 610 614 616 555 563 617 621 560 562 618 622 799 832 750 757 759 763 767 773 737 739 743 751 755 761 742 747 753 820 823 544 546 642 645 658 660 534 540 543 639 643 516 536 539 637 640 510 513 518 521 635 638 504 515 631 633 667 669 506 507 524 628 632 523 527 529 531 626 629 528 624 673 809 810 547 549 553 647 650 554 557 558 561 649 653 559 652 656 800 801 564 569 582 706 713 566 573 702 707 708 572 575 576 579 700 703 578 594 597 697 701 583 585 589 593 712 715 719 722 590 721 815 816 596 602 605 695 698 604 608 688 692 693 607 611 613 684 689 612 615 620 623 675 680 683 685 619 676 829 831 646 648 651 654 657 634 636 641 644 661 663 666 625 627 630 670 672 655 659 662 665 802 804 664 668 671 674 805 808 705 710 711 716 769 794 795 714 717 744 756 765 768 718 720 746 748 817 819 682 686 687 690 726 734 779 781 785 679 681 725 727 677 678 723 731 826 828 724 728 730 732 735 738 745 749 752 754 758 733 740 760 772 774 777 729 736 741 824 825 798 803 806 807 812 813 818 821 822 827 830 833
+            <Scalar> membership { 1.000000 }
+            <Ref> { stand_None }
+          }
+          <VertexRef> {
+            335 336 341 361 370 373
+            <Scalar> membership { 0.113725 }
+            <Ref> { stand_None }
+          }
+          <VertexRef> {
+            308 314 328 343 345 348
+            <Scalar> membership { 0.435294 }
+            <Ref> { stand_None }
+          }
+        }
+      }
+    }
+  }
+}
+<Table> {
+  <Bundle> stand {
+    <Table> "<skeleton>" {
+      <Table> Bone {
+        <Xfm$Anim> xform {
+          <Scalar> fps { 15 }
+          <Scalar> order { sprht }
+          <Scalar> contents { ijkprhxyz }
+          <V> {
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 1.10642755808e-12 -90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 7.95618345512e-12 -89.6789627075 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 2.29462802925e-11 -88.7153015137 0.256791830063 0.559679985046 1.35047888756
+            0.99783962965 0.997839510441 0.99783962965 89.9999923706 3.62190312464e-11 -87.1667251587 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 3.92594776133e-11 -85.195274353 0.256791830063 0.559679985046 1.35047888756
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 3.09925383968e-11 -83.0676651001 0.256791830063 0.559679985046 1.35047888756
+            0.99783962965 0.997839510441 0.99783962965 89.9999923706 1.72349270272e-11 -81.0962982178 0.256791830063 0.559679985046 1.35047888756
+            0.997839689255 0.997839510441 0.997839689255 89.9999923706 6.85523599692e-12 -79.5478439331 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 1.65490451204e-12 -78.5842819214 0.256791830063 0.559679985046 1.35047888756
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 1.29883115981e-12 -78.2632904053 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 -3.10282208997e-13 -78.3878555298 0.256791830063 0.559679985046 1.35047888756
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 -4.16713365203e-12 -78.7822570801 0.256791830063 0.559679985046 1.35047888756
+            0.997839689255 0.997839510441 0.997839689255 89.9999923706 -6.85750414786e-12 -79.4698791504 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 -6.19216006595e-12 -80.4549636841 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 -2.69670939225e-12 -81.7122650146 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 1.88504246934e-12 -83.1844482422 0.256791830063 0.559679985046 1.35047888756
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 4.68340600676e-12 -84.7924423218 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 4.67575500887e-12 -86.4545059204 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 2.64699959e-12 -88.1027755737 0.256791830063 0.559679985046 1.35047888756
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 1.02092130323e-12 -89.6902236938 0.256791830063 0.559679985046 1.35047888756
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 -2.76460061441e-12 -91.3457260132 0.256791830063 0.559679985046 1.35047888756
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 -1.50204744476e-11 -93.3770904541 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 -2.85083397861e-11 -95.7541122437 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 -3.63312956109e-11 -98.3881759644 0.256791830063 0.559679985046 1.35047888756
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 -3.41644108837e-11 -101.135398865 0.256791830063 0.559679985046 1.35047888756
+            0.997839450836 0.997839510441 0.997839450836 89.9999923706 -2.31070926282e-11 -103.808898926 0.256791830063 0.559679985046 1.35047888756
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 -1.01795507787e-11 -106.212738037 0.256791830063 0.559679985046 1.35047888756
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 -1.6910412415e-13 -108.183792114 0.256791830063 0.559679985046 1.35047888756
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 4.22993497867e-12 -109.618988037 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 2.76038458584e-12 -110.477813721 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 1.2305353134e-12 -110.767356873 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 1.62137490933e-12 -110.307937622 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 1.83198898759e-12 -109.086578369 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 2.01727913887e-12 -107.313682556 0.256791830063 0.559679985046 1.35047888756
+            0.997839450836 0.997839510441 0.997839450836 89.9999923706 1.65022650492e-12 -105.113128662 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 1.44402426214e-12 -102.565505981 0.256791830063 0.559679985046 1.35047888756
+            0.997839450836 0.997839510441 0.997839450836 89.9999923706 1.01908629105e-12 -99.7274932861 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 -1.27275550125e-13 -96.6421127319 0.256791830063 0.559679985046 1.35047888756
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 -9.13242355002e-13 -93.3475036621 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 6.89625927978e-13 -90.0029373169 0.256791830063 0.559679985046 1.35047888756
+            0.99783962965 0.99783962965 0.997839510441 89.9999923706 -0.566704392433 -90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839570045 0.997839570045 0.997839510441 89.9999923706 -1.15819990635 -90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 -1.68201625347 -90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839570045 0.997839570045 0.997839510441 89.9999923706 -2.11750411987 -90.0 0.256791830063 0.559679985046 1.35047888756
+            0.99783962965 0.99783962965 0.997839510441 89.9999923706 -2.43193173409 -90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839570045 0.997839570045 0.997839510441 89.9999923706 -2.5618891716 -90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839570045 0.997839570045 0.997839510441 89.9999923706 -2.46569848061 -90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839570045 0.997839570045 0.997839510441 89.9999923706 -2.1792075634 -90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 -1.73189496994 -90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 -1.19679379463 -90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839570045 0.997839570045 0.997839510441 89.9999923706 -0.678480386734 -90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 -0.27504208684 -90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839570045 0.997839570045 0.997839510441 89.9999923706 -0.0458876341581 -90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 1.10642755808e-12 -90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 1.10642755808e-12 -90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 1.10642755808e-12 -90.0 0.256791830063 0.559679985046 1.35047888756
+          }
+        }
+        <Table> Bone.001 {
+          <Xfm$Anim> xform {
+            <Scalar> fps { 15 }
+            <Scalar> order { sprht }
+            <Scalar> contents { ijkprhxyz }
+            <V> {
+              1.0 1.0 1.0 -2.23238621402e-05 177.336227417 -1.03749459868e-06 1.81405077626e-08 0.520252346992 -3.72971626916e-08
+              1.00000011921 1.0 1.00000011921 -2.2320464268e-05 177.527145386 -1.000168254e-06 -8.69084928468e-08 0.520252466202 -5.06509998388e-08
+              1.0 1.0 1.0 -2.2311016437e-05 178.10005188 -8.88255158316e-07 1.44139660208e-08 0.520252346992 -1.47608227863e-08
+              1.0 0.999999940395 1.0 -2.22981907427e-05 179.020217896 -7.08764389401e-07 1.22289964821e-08 0.520252287388 -2.98327726966e-08
+              1.00000011921 1.0 1.00000011921 -2.22860326176e-05 -179.808929443 -4.80695746319e-07 2.13685567019e-08 0.520252346992 -2.62185615441e-08
+              1.0 1.0 1.0 -2.22781454795e-05 -178.545547485 -2.34813128941e-07 -2.4844013069e-08 0.520252346992 -8.92104967676e-09
+              1.00000023842 1.0 1.00000023842 -2.22756734729e-05 -177.374694824 -6.92272550396e-09 -1.70752834094e-08 0.520252346992 8.13529421606e-09
+              1.0 1.0 1.0 -2.22770031542e-05 -176.454559326 1.72306982904e-07 4.14567846718e-09 0.520252406597 -8.31490876152e-09
+              1.0 0.999999940395 1.0 -2.22792914428e-05 -175.88168335 2.84004784135e-07 1.4203117793e-08 0.520252168179 3.07578384984e-09
+              1.0 1.0 1.0 -2.2280299163e-05 -175.690765381 3.21249927993e-07 3.32986793694e-08 0.520252406597 5.7033844314e-08
+              1.0 0.999999940395 1.0 -2.22798425966e-05 -175.774871826 3.04838152942e-07 1.72655170161e-08 0.520252287388 1.14170015664e-08
+              1.0 1.0 1.0 -2.22785529331e-05 -176.038101196 2.53495642255e-07 9.62829549422e-09 0.520252406597 1.35549322877e-08
+              1.00000011921 1.0 1.00000011921 -2.22768976528e-05 -176.490127563 1.6537453007e-07 7.1712000782e-09 0.520252406597 -4.87921125725e-09
+              0.999999940395 1.0 0.999999940395 -2.22757480515e-05 -177.12600708 4.15000620535e-08 -5.56002621721e-09 0.520252466202 -1.31246276069e-08
+              1.00000011921 1.0 1.00000011921 -2.22762446356e-05 -177.920135498 -1.13103311605e-07 -4.77401087551e-08 0.520252346992 5.43832401334e-09
+              1.0 0.999999940395 1.0 -2.2279433324e-05 -178.826416016 -2.89474286319e-07 1.33682931391e-08 0.520252287388 8.68987637404e-09
+              1.0 0.999999940395 1.0 -2.22858525376e-05 -179.787094116 -4.76452896692e-07 -3.96413302184e-09 0.520252168179 -2.97453635056e-08
+              0.999999940395 0.999999940395 0.999999940395 -2.2295396775e-05 179.253540039 -6.63298635573e-07 3.8227632615e-08 0.520252168179 -9.18413878281e-09
+              1.0 0.999999940395 1.0 -2.2307413019e-05 178.3387146 -8.41677092467e-07 3.2167768893e-08 0.520252287388 -1.38063329658e-08
+              1.00000011921 1.0 1.00000011921 -2.23210117838e-05 177.495925903 -1.00627414668e-06 2.24207408195e-08 0.520252466202 -6.25957383704e-08
+              1.00000011921 1.0 1.00000011921 -2.2336940674e-05 176.658447266 -1.17015088108e-06 4.15127097142e-08 0.520252346992 -2.15582609542e-08
+              1.00000011921 1.0 1.00000011921 -2.23588958761e-05 175.667922974 -1.36448898047e-06 -1.90582083448e-09 0.520252346992 -2.60817909492e-08
+              1.0 0.999999940395 1.0 -2.23880597332e-05 174.539642334 -1.58667057804e-06 6.16185724667e-09 0.520252227783 -3.10660652758e-08
+              1.0 1.0 1.0 -2.24247760343e-05 173.314788818 -1.82905466772e-06 -3.44002906161e-08 0.520252346992 1.15582476923e-09
+              1.00000011921 1.0 1.00000011921 -2.24680152314e-05 172.057357788 -2.07939956454e-06 -6.48788400781e-08 0.520252346992 -5.23702059496e-09
+              1.00000011921 0.999999940395 1.00000011921 -2.25149688049e-05 170.848358154 -2.32178581427e-06 -3.686875516e-08 0.520252227783 2.88586718966e-08
+              1.0 0.999999940395 1.0 -2.25613293878e-05 169.771133423 -2.53933808381e-06 -1.59093005436e-09 0.520252227783 1.85507076367e-08
+              1.00000011921 0.999999940395 1.00000011921 -2.26022839342e-05 168.893798828 -2.7177420634e-06 4.15500061024e-08 0.520252227783 -2.38482087411e-08
+              1.0 1.0 1.0 -2.26337724598e-05 168.258270264 -2.84772409032e-06 6.3348837287e-09 0.520252466202 6.15387607539e-09
+              1.00000023842 1.0 1.00000023842 -2.26532774832e-05 167.879516602 -2.92550271297e-06 4.32840785436e-08 0.520252287388 -2.820902123e-10
+              1.0 0.999999940395 1.0 -2.26599586313e-05 167.752227783 -2.95169479614e-06 -2.79009384485e-08 0.520252227783 1.72332959014e-09
+              1.0 1.0 1.0 -2.26488191402e-05 167.965118408 -2.90790489998e-06 7.66750130055e-09 0.520252466202 -2.79654575053e-08
+              1.00000023842 1.0 1.00000023842 -2.26200972975e-05 168.530487061 -2.79197138298e-06 2.8384954831e-08 0.520252346992 -1.53371857436e-08
+              1.0 0.999999940395 1.0 -2.25806325034e-05 169.349899292 -2.62485150415e-06 -5.4995630272e-09 0.520252227783 -1.67520594618e-10
+              1.00000011921 1.0 1.00000011921 -2.25352232519e-05 170.365341187 -2.41913608079e-06 -1.1262397237e-08 0.520252227783 3.58979548309e-08
+              1.0 1.0 1.0 -2.2487480237e-05 171.539398193 -2.18302216126e-06 -5.99048135541e-08 0.520252346992 2.60029437982e-08
+              1.0 1.0 1.0 -2.24402228923e-05 172.846389771 -1.92211041394e-06 -1.85593176383e-08 0.520252346992 1.30709905122e-08
+              1.00000011921 1.0 1.00000011921 -2.23957540584e-05 174.267684937 -1.6403690779e-06 -2.01674836831e-08 0.520252346992 3.69746433471e-09
+              1.00000011921 1.0 1.00000011921 -2.23560618906e-05 175.787582397 -1.3409770645e-06 -5.27530410466e-08 0.520252466202 -3.44481669856e-08
+              1.0 1.0 1.0 -2.2323887606e-05 177.334869385 -1.03776062588e-06 1.44513485623e-08 0.520252227783 -1.9054510858e-08
+              1.0 1.0 1.0 -0.23384526372 176.967880249 0.388156890869 4.85040629883e-09 0.520252466202 -4.87227502788e-09
+              1.0 0.999999940395 0.999999940395 -0.475316822529 176.581741333 0.791837990284 5.45137304186e-08 0.520252287388 -3.11496179961e-08
+              1.00000011921 1.0 1.00000011921 -0.686963737011 176.238372803 1.14810872078 -1.25941763685e-08 0.520252406597 2.28640495425e-10
+              1.00000011921 1.00000011921 0.999999940395 -0.861354708672 175.951919556 1.44344365597 1.67084941438e-08 0.520252346992 3.00793945307e-09
+              1.0 1.0 0.999999880791 -0.986384570599 175.744522095 1.65620052814 3.744490229e-08 0.520252406597 4.42224878938e-09
+              0.999999940395 1.0 1.00000011921 -1.03784525394 175.658691406 1.74401986599 1.65319828938e-08 0.520252227783 4.19523926709e-09
+              0.999999940395 0.999999940395 0.999999880791 -0.999767780304 175.722229004 1.67902469635 4.81821729181e-08 0.520252227783 4.57369564444e-09
+              0.999999940395 1.0 1.0 -0.885949254036 175.911254883 1.48522663116 1.1401758826e-07 0.520252227783 2.47637510498e-09
+              0.999999940395 0.999999940395 0.999999880791 -0.707009673119 176.205612183 1.18197441101 4.97203238581e-08 0.520252287388 1.26449828386e-09
+              1.00000023842 1.00000011921 1.0 -0.490980565548 176.556488037 0.818126320839 4.18314698436e-08 0.520252346992 2.86313550646e-08
+              1.0 1.0 1.00000011921 -0.279678076506 176.895050049 0.464554637671 -1.67333862322e-08 0.520252287388 -4.35744906824e-09
+              1.00000011921 1.0 0.999999940395 -0.113807372749 177.157653809 0.188558027148 -1.80626873458e-08 0.520252406597 -5.40978994934e-09
+              1.0 0.999999940395 1.0 -0.01904579252 177.306472778 0.0314805172384 7.88736613799e-08 0.520252287388 -7.28166371644e-09
+              1.0 1.0 1.0 -2.23238621402e-05 177.336227417 -1.03749459868e-06 1.81405077626e-08 0.520252346992 -3.72971626916e-08
+              1.0 1.0 1.0 -2.23238621402e-05 177.336227417 -1.03749459868e-06 1.81405077626e-08 0.520252346992 -3.72971626916e-08
+              1.0 1.0 1.0 -2.23238621402e-05 177.336227417 -1.03749459868e-06 1.81405077626e-08 0.520252346992 -3.72971626916e-08
+            }
+          }
+          <Table> Bone.012 {
+            <Xfm$Anim> xform {
+              <Scalar> fps { 15 }
+              <Scalar> order { sprht }
+              <Scalar> contents { ijkprhxyz }
+              <V> {
+                1.0 1.00000011921 1.00000011921 -103.671539307 2.66391968727 -0.00011119802366 -3.56476483887e-08 0.659965574741 -1.78639663062e-08
+                1.0 1.0 1.00000011921 -103.778030396 2.74008774757 -0.0499966591597 -6.25426181955e-08 0.659965157509 -8.17611844894e-09
+                1.0 1.0 1.0 -104.098007202 2.96807909012 -0.200552493334 3.50241524671e-09 0.659965455532 -1.12209814773e-08
+                1.00000011921 1.00000011921 1.00000023842 -104.613258362 3.3324444294 -0.445063978434 1.470519706e-08 0.659965395927 -2.35686297145e-08
+                1.0 1.0 1.0 -105.271362305 3.79282546043 -0.761029183865 3.1290550595e-08 0.659965217113 -6.88562540319e-09
+                1.0 1.00000011921 1.00000023842 -105.984695435 4.28544855118 -1.10806512833 -1.31803510328e-08 0.659965395927 -1.18988428e-08
+                1.0 1.00000011921 1.0 -106.648910522 4.73812913895 -1.43538606167 -1.47203413903e-08 0.659965097904 1.16665006544e-08
+                1.00000011921 1.00000011921 1.00000011921 -107.173088074 5.09124517441 -1.69648957253 -2.69149271759e-08 0.659965515137 7.87917997513e-09
+                1.0 1.00000011921 1.00000011921 -107.500457764 5.30992174149 -1.86078643799 8.61445415001e-10 0.659965515137 -1.41097213913e-08
+                1.00000011921 1.00000011921 1.00000011921 -107.609725952 5.38258838654 -1.91583287716 -3.0982221233e-08 0.659965515137 -5.61237101238e-08
+                1.0 1.00000023842 1.0 -107.524765015 5.32609558105 -1.87302207947 -5.13750926245e-08 0.659965336323 5.10686337662e-09
+                1.0 1.0 1.0 -107.269233704 5.15561914444 -1.7446449995 -1.73751359966e-08 0.659965097904 -7.87905918287e-09
+                0.999999940395 0.999999940395 0.999999940395 -106.853858948 4.87663412094 -1.53718578815 -3.39596546439e-08 0.659965217113 1.67328710887e-08
+                1.0 1.0 1.0 -106.309921265 4.50783252716 -1.26784038544 -4.27569446515e-08 0.659965217113 -1.34501956239e-08
+                1.00000011921 1.00000011921 1.00000011921 -105.691398621 4.08371019363 -0.964812278748 9.09514525915e-08 0.659965515137 2.79153162808e-08
+                1.0 1.0 1.00000011921 -105.068115234 3.65124297142 -0.663012742996 2.47951028598e-08 0.659965395927 2.30975487625e-08
+                1.0 1.0 1.0 -104.510482788 3.2600338459 -0.396086931229 5.67831826004e-08 0.659965217113 -1.9608888735e-08
+                1.00000011921 1.00000011921 1.00000023842 -104.073883057 2.95093560219 -0.189167678356 2.78891292282e-08 0.659965395927 -4.57831994538e-09
+                1.0 1.00000011921 0.999999940395 -103.791252136 2.74953436852 -0.0561982691288 1.90441085124e-09 0.659965217113 1.61774025287e-08
+                1.0 1.00000011921 1.00000011921 -103.674865723 2.66630101204 -0.00166809710208 -1.53500245847e-09 0.659965455532 -6.59056698105e-10
+                1.0 1.0 1.00000011921 -103.671539307 2.66391968727 -0.00011119802366 2.03303791579e-08 0.659965455532 -2.02359657919e-08
+                0.999999940395 0.999999940395 1.0 -103.671539307 2.66392016411 -0.00011119802366 -9.90519666288e-10 0.659965157509 -1.51948817972e-08
+                1.0 1.0 1.00000011921 -103.671539307 2.66391849518 -0.000111198016384 -2.26094378775e-08 0.659965455532 4.3061936239e-09
+                1.0 1.00000011921 1.00000011921 -103.671539307 2.66391921043 -0.00011119802366 -3.26982210197e-08 0.659965455532 2.594854287e-08
+                0.999999940395 0.999999940395 1.0 -103.671539307 2.66391801834 -0.000111198038212 5.74774787765e-08 0.659965157509 -2.1227011815e-10
+                1.0 1.00000011921 1.0 -103.671539307 2.66391777992 -0.000111198016384 2.82921082118e-08 0.659965276718 -5.25689047848e-09
+                0.999999880791 0.999999940395 1.0 -103.671539307 2.66391921043 -0.00011119802366 -1.62036197793e-08 0.659965157509 -1.87148918585e-09
+                1.0 0.999999940395 1.0 -103.671539307 2.66392016411 -0.000111198016384 1.17488880846e-08 0.659965157509 2.77990412911e-08
+                0.999999940395 0.999999940395 1.0 -103.671539307 2.6639187336 -0.00011119802366 -2.15115907309e-08 0.659965217113 4.31705160508e-09
+                0.999999940395 1.0 1.00000011921 -103.671539307 2.66391849518 -0.000111198038212 -7.87092346854e-08 0.659965395927 1.20506493673e-08
+                1.0 1.00000011921 0.999999940395 -103.671539307 2.66391634941 -0.000111198016384 3.80542495293e-08 0.659965097904 5.13932763013e-09
+                1.0 1.0 1.00000011921 -103.671539307 2.66391921043 -0.000111198016384 -4.86903815045e-08 0.659965515137 2.00795398086e-08
+                0.999999940395 0.999999940395 1.0 -103.671539307 2.66391849518 -0.00011119802366 -3.03756202413e-08 0.659965336323 -2.13192619114e-09
+                0.999999940395 1.0 1.0 -103.671539307 2.66391777992 -0.00011119802366 -2.65598139038e-08 0.659965157509 1.04829256387e-08
+                0.999999940395 1.0 1.00000011921 -103.671539307 2.66392087936 -0.000111198038212 1.86900823707e-08 0.659965336323 -9.61078328032e-09
+                1.0 1.0 1.0 -103.671539307 2.66391921043 -0.000111198016384 3.24203419666e-08 0.659965276718 -1.16979910203e-08
+                0.999999940395 1.0 1.0 -103.671539307 2.66391897202 -0.00011119802366 -3.39513057668e-08 0.659965276718 3.5343945548e-09
+                0.999999940395 0.999999940395 1.0 -103.671539307 2.66391825676 -0.00011119802366 3.09544212485e-08 0.659965395927 1.33449491457e-08
+                1.0 1.0 1.0 -103.671539307 2.66391968727 -0.000111198016384 1.84681638871e-08 0.659965276718 1.90138660372e-09
+                1.0 1.0 1.0 -103.671539307 2.66391968727 -0.000111198016384 9.60358548241e-09 0.659965276718 -9.28841981107e-09
+                1.0 1.0 1.0 -103.501159668 2.61974692345 2.26058840752 -1.99390530753e-08 0.659965276718 -7.46141637364e-09
+                1.00000011921 0.999999940395 1.00000011921 -103.325157166 2.56646466255 4.62213134766 8.97275711509e-08 0.659965395927 -5.88502828691e-08
+                1.00000023842 1.00000023842 1.00000023842 -103.17124176 2.51325559616 6.71362161636 -3.72974966467e-08 0.659965634346 2.29239063287e-08
+                1.00000011921 1.00000011921 1.00000023842 -103.044868469 2.46479105949 8.45154666901 -3.48899114044e-08 0.659965515137 -2.19567830584e-08
+                1.00000011921 1.00000011921 1.00000023842 -102.95463562 2.42745614052 9.70539283752 2.24247127534e-08 0.659965395927 -3.50313289488e-09
+                1.0 1.00000011921 1.00000011921 -102.917610168 2.41145968437 10.2233133316 1.58869184474e-08 0.659965157509 -2.39648869638e-08
+                1.0 1.00000011921 1.00000011921 -102.944999695 2.42333221436 9.83998584747 -4.49351809095e-08 0.659965455532 -4.94418408437e-08
+                0.999999940395 1.0 0.999999940395 -103.02709198 2.45761990547 8.69768810272 -3.73852202529e-08 0.659965455532 -2.06357952948e-09
+                0.999999940395 1.0 1.00000011921 -103.156684875 2.50790286064 6.91275405884 -5.44599956243e-08 0.659965395927 -3.89065597517e-08
+                0.999999940395 1.0 1.0 -103.31375885 2.56274414063 4.77627754211 -8.33377384879e-08 0.659965395927 -2.92804802626e-08
+                1.0 1.00000011921 1.00000011921 -103.467735291 2.61024451256 2.70679020882 7.43927515146e-08 0.659965336323 -6.19445872374e-09
+                1.0 1.00000011921 1.00000023842 -103.588653564 2.64333200455 1.09677135944 -1.51664600878e-08 0.659965276718 -2.12437623048e-08
+                1.00000023842 1.00000011921 1.00000011921 -103.657691956 2.6605963707 0.182840138674 9.91502133729e-08 0.659965276718 -9.65273105891e-09
+                1.0 1.00000011921 1.00000011921 -103.671539307 2.66391968727 -0.00011119802366 -3.56476483887e-08 0.659965574741 -1.78639663062e-08
+                1.0 1.00000011921 1.00000011921 -103.671539307 2.66391968727 -0.00011119802366 -3.56476483887e-08 0.659965574741 -1.78639663062e-08
+                1.0 1.00000011921 1.00000011921 -103.671539307 2.66391968727 -0.00011119802366 -3.56476483887e-08 0.659965574741 -1.78639663062e-08
+              }
+            }
+            <Table> Bone.015 {
+              <Xfm$Anim> xform {
+                <Scalar> fps { 15 }
+                <Scalar> order { sprht }
+                <Scalar> contents { ijkprhxyz }
+                <V> {
+                  1.0 1.00000011921 0.999999940395 -47.8012466431 6.65121126175 5.99512863159 9.53401624315e-09 0.492759793997 1.29348165956e-07
+                  1.00000011921 0.999999940395 0.999999940395 -48.0114974976 6.55022001266 5.88866519928 -1.68843712345e-08 0.492759793997 -2.205932077e-07
+                  1.00000011921 1.0 0.999999940395 -48.6411132813 6.24480724335 5.57152462006 -1.02714892591e-07 0.492759793997 6.02599925514e-08
+                  1.00000011921 1.00000011921 1.00000011921 -49.648235321 5.7469959259 5.06954193115 -3.88953189656e-08 0.492759823799 3.61700003282e-08
+                  1.00000011921 1.0 0.999999940395 -50.9223823547 5.10091018677 4.4441037178 -9.51052356868e-08 0.492759764194 1.00057064856e-08
+                  1.00000011921 1.00000011921 1.00000011921 -52.2879257202 4.38843774796 3.78620791435 1.78594561362e-08 0.492759764194 -4.49048940254e-08
+                  1.00000011921 1.0 0.999999940395 -53.5448913574 3.71445703506 3.19240880013 8.23198309519e-09 0.492759793997 6.8818934551e-08
+                  1.0 1.00000011921 1.0 -54.5269393921 3.17590236664 2.73661589622 -4.15276524279e-08 0.492759853601 1.16444539344e-07
+                  1.00000011921 1.00000011921 0.999999940395 -55.1358184814 2.83675789833 2.45770049095 1.6118509194e-08 0.49275970459 7.35149896514e-08
+                  0.999999940395 1.0 1.0 -55.3382873535 2.72310209274 2.36558961868 3.98669008916e-09 0.492759793997 1.89006659213e-08
+                  1.0 0.999999940395 0.999999940395 -55.1808929443 2.81149363518 2.43716788292 -8.10753135738e-08 0.49275970459 -8.8820186761e-08
+                  1.00000011921 1.0 0.999999940395 -54.7061080933 3.07651686668 2.65424132347 -4.71496086618e-08 0.492759823799 2.46877611687e-08
+                  0.999999940395 1.00000011921 0.999999880791 -53.9298934937 3.5045645237 3.01285099983 -4.69785632617e-08 0.49275970459 2.95610877998e-08
+                  1.0 1.0 1.0 -52.9051361084 4.05965042114 3.49318790436 -3.44338104696e-08 0.492759823799 1.46962584324e-08
+                  0.999999940395 1.00000011921 1.0 -51.7284049988 4.68285655975 4.05418491364 -2.52496565878e-08 0.492759823799 4.59384565943e-08
+                  1.0 0.999999940395 0.999999880791 -50.5303039551 5.30164384842 4.63538312912 -2.29992984657e-08 0.492759764194 1.79855689453e-07
+                  1.00000011921 1.00000023842 1.00000011921 -49.4479751587 5.84688425064 5.16882276535 -1.12563158794e-08 0.492759793997 -5.94746873972e-09
+                  1.0 1.00000011921 1.0 -48.5937461853 6.26793766022 5.59529399872 2.79423453264e-08 0.492759793997 -7.42928492059e-08
+                  1.00000023842 1.00000011921 1.0 -48.0375709534 6.53765916824 5.87548017502 -7.05745222263e-08 0.492759764194 2.9385569178e-07
+                  1.00000011921 1.00000011921 1.0 -47.8078193665 6.64806127548 5.99179506302 -9.269620449e-08 0.492759823799 2.22444867859e-07
+                  1.0 1.00000011921 0.999999940395 -47.8012466431 6.65121078491 5.99512815475 -1.72340133275e-08 0.492759793997 4.0800546941e-08
+                  1.00000011921 1.0 1.0 -47.8012466431 6.65121030807 5.99512767792 1.29475461463e-08 0.492759793997 1.06993596205e-07
+                  0.999999940395 1.0 0.999999940395 -47.8012466431 6.65121126175 5.99512910843 -6.80636276229e-08 0.492759674788 2.80722076695e-07
+                  1.00000011921 1.00000011921 1.0 -47.8012466431 6.65121221542 5.99512863159 -1.1139959355e-07 0.49275970459 1.52658444108e-07
+                  1.0 1.00000011921 0.999999940395 -47.8012466431 6.65121126175 5.99512863159 -5.99816516456e-08 0.49275970459 3.21476960607e-07
+                  1.00000011921 1.00000011921 1.0 -47.8012466431 6.65121126175 5.99513053894 -5.61930768583e-08 0.492759764194 3.68871496903e-07
+                  1.00000011921 1.00000011921 1.0 -47.8012466431 6.65121078491 5.99513053894 -1.10420181443e-07 0.49275970459 1.53382998747e-07
+                  1.0 1.0 0.999999940395 -47.8012466431 6.65121078491 5.99512577057 3.30746772192e-08 0.492759793997 -5.25130552376e-08
+                  1.00000011921 1.00000011921 0.999999940395 -47.8012466431 6.65121078491 5.99513053894 -4.92206666536e-08 0.492759764194 3.81477889277e-07
+                  1.0 1.00000011921 0.999999940395 -47.8012466431 6.65121126175 5.99512720108 9.79403225188e-09 0.492759764194 1.81240167763e-07
+                  1.00000011921 1.00000011921 0.999999940395 -47.8012466431 6.65121078491 5.99512958527 -4.5825707673e-08 0.492759764194 1.97164183646e-07
+                  1.00000011921 1.00000011921 1.0 -47.8012466431 6.65121078491 5.99513053894 -1.14678933016e-07 0.492759793997 3.90440746401e-09
+                  1.0 1.0 0.999999940395 -47.8012466431 6.65121030807 5.9951300621 -6.19649966893e-08 0.492759764194 6.84122269945e-08
+                  1.0 1.00000011921 0.999999940395 -47.8012466431 6.65121030807 5.99512958527 1.61004827248e-08 0.492759793997 4.83936673845e-07
+                  1.0 1.00000011921 0.999999940395 -47.8012466431 6.65121126175 5.99512863159 2.42766517999e-08 0.492759734392 1.52703819367e-07
+                  1.00000011921 1.00000011921 1.00000011921 -47.8012466431 6.65121221542 5.99512910843 -1.41029738998e-08 0.492759734392 2.17389768409e-07
+                  1.00000011921 1.00000011921 0.999999940395 -47.8012466431 6.65121126175 5.9951300621 3.78735762752e-08 0.492759674788 1.71779333868e-07
+                  1.00000011921 1.00000011921 1.0 -47.8012466431 6.65121126175 5.99512958527 -5.30644150842e-08 0.492759734392 1.31920089075e-07
+                  1.00000011921 1.00000023842 1.00000011921 -47.8012466431 6.65121173859 5.99512910843 -1.71434262342e-08 0.492759823799 5.058106467e-07
+                  1.0 1.00000011921 0.999999940395 -47.8012466431 6.65121173859 5.99512910843 -5.53166801254e-09 0.492759764194 1.39105978292e-07
+                  1.00000011921 1.00000011921 1.0 -47.8012466431 6.65121173859 5.99512958527 1.065032329e-08 0.492759793997 1.03595617418e-07
+                  1.0 1.0 0.999999940395 -47.8012466431 6.65121030807 5.99512767792 2.76652407649e-08 0.492759764194 -3.8933816171e-09
+                  1.0 1.0 0.999999940395 -47.8012466431 6.65121126175 5.99512863159 -5.92341038441e-08 0.492759793997 -3.06415529394e-07
+                  0.999999940395 1.0 0.999999940395 -47.8012466431 6.65121126175 5.99512863159 -5.64883215759e-08 0.492759793997 1.20925747638e-07
+                  1.00000011921 1.0 0.999999880791 -47.8012466431 6.65121030807 5.99512767792 6.70445530204e-08 0.492759793997 1.1015111312e-07
+                  1.0 0.999999940395 0.999999880791 -47.8012466431 6.65121030807 5.99512815475 7.19029316087e-08 0.49275970459 1.20178853535e-07
+                  1.0 1.0 0.999999940395 -47.8012466431 6.65121078491 5.99512815475 4.91752238929e-08 0.49275970459 1.19089492046e-07
+                  0.999999880791 1.0 0.999999880791 -47.8012466431 6.65121221542 5.99512958527 -1.17670664324e-08 0.492759734392 -1.08114377895e-07
+                  0.999999940395 1.0 0.999999940395 -47.8012466431 6.65121173859 5.99512863159 9.38737940714e-08 0.492759734392 2.57274223259e-07
+                  1.0 1.0 1.0 -47.8012466431 6.65121078491 5.99512815475 6.30518570688e-08 0.492759793997 -1.25637257042e-07
+                  1.0 1.0 0.999999940395 -47.8012466431 6.65121126175 5.99512815475 -4.13118854681e-08 0.492759793997 2.0713943627e-07
+                  0.999999940395 0.999999940395 0.999999940395 -47.8012466431 6.65121078491 5.99512863159 8.71027978633e-08 0.49275970459 1.52657833041e-07
+                  1.0 1.0 1.0 -47.8012466431 6.65121126175 5.99512815475 -4.68092302697e-08 0.492759853601 -1.61857300895e-08
+                  1.0 1.00000011921 0.999999940395 -47.8012466431 6.65121126175 5.99512863159 9.53401624315e-09 0.492759793997 1.29348165956e-07
+                  1.0 1.00000011921 0.999999940395 -47.8012466431 6.65121126175 5.99512863159 9.53401624315e-09 0.492759793997 1.29348165956e-07
+                  1.0 1.00000011921 0.999999940395 -47.8012466431 6.65121126175 5.99512863159 9.53401624315e-09 0.492759793997 1.29348165956e-07
+                }
+              }
+              <Table> Bone.016 {
+                <Xfm$Anim> xform {
+                  <Scalar> fps { 15 }
+                  <Scalar> order { sprht }
+                  <Scalar> contents { ijkprhxyz }
+                  <V> {
+                    1.0 0.999999940395 0.999999940395 12.524643898 -11.3202705383 32.5192718506 -1.48151828583e-08 0.41611289978 -5.20806722193e-08
+                    0.999999940395 1.0 1.0 12.4256973267 -11.3918895721 32.1652488708 -1.32622872684e-08 0.41611289978 -5.41155706912e-08
+                    0.999999940395 1.0 1.0 12.1311893463 -11.6105327606 31.102481842 3.15259036654e-08 0.416112810373 -1.54718460266e-08
+                    1.0 0.999999940395 0.999999940395 11.6660423279 -11.9731531143 29.3945827484 -5.9465417479e-08 0.416113048792 -5.28843173697e-08
+                    1.0 1.0 1.0 11.0890598297 -12.454372406 27.2204437256 4.97509624608e-08 0.416112959385 4.40698144644e-10
+                    0.999999940395 0.999999821186 1.0 10.4865112305 -12.9973974228 24.8746986389 -6.16066486714e-08 0.416112542152 3.85552958448e-08
+                    1.0 1.0 1.0 9.94788742065 -13.5215625763 22.7021198273 3.94212840149e-08 0.416113048792 -1.63830208066e-07
+                    1.0 1.00000011921 1.0 9.53870868683 -13.9468193054 20.9964447021 2.73931846095e-08 0.416113078594 -7.0292799137e-08
+                    1.0 1.0 1.0 9.2904586792 -14.2172288895 19.9354629517 3.20787876262e-08 0.416112929583 -2.2441003722e-08
+                    1.0 1.00000011921 1.00000011921 9.20887088776 -14.3082723618 19.5820960999 7.99112775951e-09 0.416112869978 -1.14472442192e-07
+                    1.0 1.0 0.999999880791 9.27225399017 -14.2374477386 19.8568210602 6.95326605182e-08 0.416113108397 -1.24796684986e-07
+                    1.0 1.0 1.00000011921 9.46520805359 -14.0258665085 20.6845035553 -7.56802087665e-09 0.41611289978 -9.60308668141e-08
+                    1.0 0.999999940395 0.999999940395 9.7862033844 -13.6866731644 22.0342845917 -7.09741954097e-09 0.416113227606 -1.52041593537e-07
+                    0.999999940395 1.0 0.999999940395 10.2200021744 -13.2519330978 23.8094940186 2.45365683327e-09 0.416112780571 -5.79197401152e-09
+                    1.0 1.0 0.999999940395 10.7312812805 -12.7715539932 25.8378276825 -3.75880375714e-08 0.416112691164 -1.5173554857e-07
+                    1.0 1.00000011921 1.00000011921 11.2651357651 -12.3036813736 27.8911094666 1.55645381028e-08 0.416112780571 -1.60131136795e-07
+                    1.0 0.999999880791 1.0 11.7579030991 -11.8998260498 29.73503685 2.69633204653e-09 0.416112869978 2.91874133751e-08
+                    0.999999940395 0.999999880791 0.999999940395 12.1532402039 -11.5938854218 31.1826381683 4.51662103274e-08 0.416112959385 -1.99996932793e-07
+                    0.999999940395 0.999999940395 0.999999880791 12.4134435654 -11.4008235931 32.1213302612 -9.75162350869e-09 0.416112720966 -5.03115060724e-08
+                    1.0 0.999999940395 1.00000011921 12.5215473175 -11.3225021362 32.5082054138 4.07027611615e-09 0.41611301899 -1.60961462825e-07
+                    0.999999940395 0.999999940395 0.999999940395 12.524641037 -11.3202705383 32.5192756653 3.11133447894e-08 0.416113048792 -8.31404989299e-08
+                    0.999999940395 0.999999940395 1.0 12.5246429443 -11.3202705383 32.5192756653 -7.114611833e-08 0.416112869978 -1.2477214284e-07
+                    1.0 1.0 1.0 12.5246419907 -11.3202705383 32.5192680359 6.33013712559e-08 0.416112869978 -6.98097579743e-08
+                    1.0 1.0 0.999999940395 12.524643898 -11.3202724457 32.5192718506 -3.31177973933e-09 0.41611301899 -1.30292974632e-07
+                    1.0 0.999999940395 0.999999940395 12.524643898 -11.320271492 32.5192718506 -5.33539292746e-08 0.416112840176 -8.66267555466e-08
+                    1.0 1.0 0.999999940395 12.524643898 -11.3202695847 32.5192718506 -6.04455792086e-08 0.416112840176 -5.15367162279e-08
+                    1.0 0.999999940395 1.0 12.5246429443 -11.3202695847 32.5192680359 -1.2974460617e-08 0.416112869978 -3.63571928119e-08
+                    1.0 0.999999940395 0.999999880791 12.5246448517 -11.3202695847 32.5192718506 -4.66112552999e-08 0.416112929583 -2.33693349116e-08
+                    1.0 0.999999880791 0.999999940395 12.5246458054 -11.3202695847 32.5192718506 3.80922884347e-08 0.416112869978 -1.08987407543e-07
+                    1.0 0.999999940395 0.999999940395 12.5246429443 -11.320271492 32.5192718506 -1.05636786429e-07 0.416112959385 -7.28042195419e-08
+                    1.0 0.999999880791 0.999999880791 12.5246429443 -11.3202695847 32.5192718506 -3.46623814096e-08 0.416112840176 -3.10549737037e-08
+                    1.0 1.0 0.999999940395 12.5246429443 -11.3202705383 32.5192718506 5.1854165406e-10 0.416112929583 -7.27310194293e-08
+                    0.999999940395 0.999999940395 1.0 12.5246429443 -11.3202705383 32.5192756653 -3.95780759277e-08 0.416112869978 -4.71450789519e-08
+                    0.999999940395 1.0 1.0 12.5246448517 -11.320271492 32.5192756653 2.02709387054e-08 0.416112959385 -6.27826821642e-08
+                    0.999999880791 0.999999940395 1.0 12.5246400833 -11.3202676773 32.5192680359 6.36336565663e-08 0.416112840176 2.52818814772e-08
+                    1.00000011921 0.999999940395 0.999999940395 12.524643898 -11.320271492 32.5192680359 -7.01941402781e-08 0.416112959385 -4.22337436135e-08
+                    0.999999940395 0.999999880791 1.0 12.524643898 -11.3202695847 32.5192756653 -2.29792984641e-09 0.416112959385 4.26342552373e-08
+                    0.999999940395 1.0 1.0 12.524641037 -11.3202695847 32.5192642212 5.9630259841e-08 0.416112989187 -1.53196381802e-07
+                    1.0 1.0 1.00000011921 12.5246429443 -11.320268631 32.5192680359 -6.40396891072e-08 0.416112750769 -8.9918692936e-08
+                    1.0 1.0 0.999999940395 12.524641037 -11.320271492 32.5192718506 -8.18590706331e-08 0.416112810373 -1.65353156945e-07
+                    1.0 1.0 1.00000011921 12.5246429443 -11.3202695847 32.5192756653 -2.22321041576e-08 0.416112929583 -2.23259149834e-07
+                    1.0 0.999999940395 1.00000011921 12.5246419907 -11.3202705383 32.5192756653 2.76053633286e-08 0.416112720966 -5.78475134461e-09
+                    0.999999940395 1.0 1.0 12.5246429443 -11.3202676773 32.5192680359 -4.82779967115e-08 0.416112869978 -4.46651178265e-08
+                    1.0 1.0 0.999999940395 12.5246448517 -11.3202695847 32.5192718506 -7.78618272079e-08 0.416112780571 -3.55146880793e-08
+                    1.0 1.0 0.999999940395 12.5246419907 -11.320271492 32.5192718506 6.04443783914e-09 0.416112780571 -1.93147343452e-07
+                    1.0 1.0 1.0 12.5246391296 -11.3202695847 32.5192718506 3.71860870985e-08 0.416112840176 -4.29292299486e-08
+                    1.0 1.0 0.999999940395 12.5246419907 -11.3202695847 32.5192718506 -1.1834487168e-07 0.416112840176 -3.65634420518e-08
+                    1.0 1.00000011921 1.00000011921 12.524643898 -11.3202676773 32.5192680359 -4.25508552837e-08 0.416112929583 2.32708377013e-08
+                    1.00000011921 1.00000011921 1.0 12.524641037 -11.3202676773 32.5192718506 -2.32487895602e-08 0.416112869978 -6.2876601703e-08
+                    1.0 1.0 1.0 12.5246448517 -11.3202705383 32.5192718506 -4.95189089733e-09 0.416112750769 -1.35444921057e-07
+                    0.999999940395 0.999999880791 0.999999940395 12.524641037 -11.3202695847 32.5192756653 -3.92678778383e-08 0.416112750769 -2.00994080046e-07
+                    0.999999880791 1.0 0.999999940395 12.5246362686 -11.3202676773 32.5192680359 1.49649341807e-08 0.416113048792 -9.9602353032e-08
+                    1.0 1.0 1.00000011921 12.5246400833 -11.320268631 32.5192680359 3.22393987062e-08 0.416112929583 -5.42568123763e-08
+                    1.0 0.999999940395 0.999999940395 12.524643898 -11.3202705383 32.5192718506 -1.48151828583e-08 0.41611289978 -5.20806722193e-08
+                    1.0 0.999999940395 0.999999940395 12.524643898 -11.3202705383 32.5192718506 -1.48151828583e-08 0.41611289978 -5.20806722193e-08
+                    1.0 0.999999940395 0.999999940395 12.524643898 -11.3202705383 32.5192718506 -1.48151828583e-08 0.41611289978 -5.20806722193e-08
+                  }
+                }
+              }
+            }
+          }
+          <Table> Bone.011 {
+            <Xfm$Anim> xform {
+              <Scalar> fps { 15 }
+              <Scalar> order { sprht }
+              <Scalar> contents { ijkprhxyz }
+              <V> {
+                0.999999940395 1.0 1.0 109.536636353 2.66396570206 4.45101031801e-05 -3.56476483887e-08 0.659965574741 -1.78639663062e-08
+                0.999999821186 0.999999940395 0.999999940395 109.536636353 2.66396546364 4.45101031801e-05 -6.25426181955e-08 0.659965157509 -8.17611844894e-09
+                0.999999940395 1.0 1.00000011921 109.536643982 2.66396546364 4.45100995421e-05 3.50241524671e-09 0.659965455532 -1.12209814773e-08
+                1.0 0.999999940395 1.00000011921 109.536643982 2.66396546364 4.45100959041e-05 1.470519706e-08 0.659965395927 -2.35686297145e-08
+                0.999999940395 0.999999940395 1.0 109.536643982 2.66396617889 4.45100959041e-05 3.1290550595e-08 0.659965217113 -6.88562540319e-09
+                0.999999940395 0.999999940395 1.0 109.536636353 2.66396617889 4.45101031801e-05 -1.31803510328e-08 0.659965395927 -1.18988428e-08
+                1.0 1.0 0.999999880791 109.536636353 2.6639649868 4.45100959041e-05 -1.47203413903e-08 0.659965097904 1.16665006544e-08
+                1.0 1.0 1.0 109.536636353 2.66396427155 4.45100959041e-05 -2.69149271759e-08 0.659965515137 7.87917997513e-09
+                0.999999940395 1.0 1.0 109.536636353 2.66396570206 4.45101031801e-05 8.61445415001e-10 0.659965515137 -1.41097213913e-08
+                0.999999940395 0.999999940395 1.0 109.536636353 2.66396427155 4.45101031801e-05 -3.0982221233e-08 0.659965515137 -5.61237101238e-08
+                0.999999940395 0.999999940395 0.999999940395 109.536643982 2.66396164894 4.45100959041e-05 -5.13750926245e-08 0.659965336323 5.10686337662e-09
+                0.999999880791 0.999999940395 1.0 109.536643982 2.66396546364 4.45100995421e-05 -1.73751359966e-08 0.659965097904 -7.87905918287e-09
+                0.999999940395 0.999999880791 1.0 109.536643982 2.66396665573 4.45100959041e-05 -3.39596546439e-08 0.659965217113 1.67328710887e-08
+                0.999999940395 0.999999940395 1.0 109.536643982 2.66396546364 4.45100959041e-05 -4.27569446515e-08 0.659965217113 -1.34501956239e-08
+                1.0 1.0 1.00000011921 109.536643982 2.66396594048 4.45100995421e-05 9.09514525915e-08 0.659965515137 2.79153162808e-08
+                0.999999940395 1.0 1.0 109.536636353 2.66396641731 4.45101031801e-05 2.47951028598e-08 0.659965395927 2.30975487625e-08
+                0.999999880791 0.999999880791 1.0 109.536643982 2.66396570206 4.45101031801e-05 5.67831826004e-08 0.659965217113 -1.9608888735e-08
+                1.00000011921 1.0 1.00000011921 109.536643982 2.66396594048 4.45100959041e-05 2.78891292282e-08 0.659965395927 -4.57831994538e-09
+                1.0 1.00000011921 0.999999940395 109.536636353 2.66396570206 4.45100959041e-05 1.90441085124e-09 0.659965217113 1.61774025287e-08
+                1.0 1.0 1.0 109.536636353 2.66396522522 4.45100995421e-05 -1.53500245847e-09 0.659965455532 -6.59056698105e-10
+                1.0 0.999999940395 1.0 109.536636353 2.66396594048 4.45100995421e-05 2.03303791579e-08 0.659965455532 -2.02359657919e-08
+                0.999999880791 0.999999940395 0.999999940395 109.536636353 2.66396594048 4.45101031801e-05 -9.90519666288e-10 0.659965157509 -1.51948817972e-08
+                1.0 0.999999940395 1.0 109.536643982 2.66396427155 4.45100995421e-05 -2.26094378775e-08 0.659965455532 4.3061936239e-09
+                1.0 1.0 1.0 109.536643982 2.66396474838 4.45100995421e-05 -3.26982210197e-08 0.659965455532 2.594854287e-08
+                0.999999880791 0.999999940395 0.999999880791 109.536636353 2.6639649868 4.45100995421e-05 5.74774787765e-08 0.659965157509 -2.1227011815e-10
+                0.999999880791 0.999999940395 0.999999940395 109.536643982 2.66396284103 4.45100995421e-05 2.82921082118e-08 0.659965276718 -5.25689047848e-09
+                0.999999821186 0.999999880791 0.999999940395 109.536643982 2.66396379471 4.45100995421e-05 -1.62036197793e-08 0.659965157509 -1.87148918585e-09
+                0.999999880791 0.999999940395 0.999999940395 109.536636353 2.66396594048 4.45100995421e-05 1.17488880846e-08 0.659965157509 2.77990412911e-08
+                0.999999940395 0.999999940395 0.999999940395 109.536636353 2.66396617889 4.45100995421e-05 -2.15115907309e-08 0.659965217113 4.31705160508e-09
+                0.999999880791 0.999999940395 1.0 109.536636353 2.66396570206 4.45101031801e-05 -7.87092346854e-08 0.659965395927 1.20506493673e-08
+                0.999999880791 0.999999880791 0.999999940395 109.536643982 2.66396331787 4.45100995421e-05 3.80542495293e-08 0.659965097904 5.13932763013e-09
+                0.999999940395 1.0 1.0 109.536636353 2.66396474838 4.45100995421e-05 -4.86903815045e-08 0.659965515137 2.00795398086e-08
+                0.999999880791 0.999999940395 0.999999880791 109.536636353 2.66396403313 4.45100995421e-05 -3.03756202413e-08 0.659965336323 -2.13192619114e-09
+                0.999999880791 0.999999940395 0.999999880791 109.536636353 2.66396355629 4.45100995421e-05 -2.65598139038e-08 0.659965157509 1.04829256387e-08
+                0.999999880791 1.0 1.0 109.536636353 2.66396689415 4.45101068181e-05 1.86900823707e-08 0.659965336323 -9.61078328032e-09
+                0.999999940395 0.999999940395 0.999999940395 109.536643982 2.66396450996 4.45100959041e-05 3.24203419666e-08 0.659965276718 -1.16979910203e-08
+                0.999999880791 0.999999940395 0.999999880791 109.536636353 2.66396522522 4.45100995421e-05 -3.39513057668e-08 0.659965276718 3.5343945548e-09
+                0.999999880791 0.999999880791 0.999999940395 109.536643982 2.66396427155 4.45101031801e-05 3.09544212485e-08 0.659965395927 1.33449491457e-08
+                0.999999940395 0.999999940395 1.0 109.536643982 2.66396617889 4.45100959041e-05 1.84681638871e-08 0.659965276718 1.90138660372e-09
+                1.0 0.999999940395 1.0 109.536643982 2.66396546364 4.45100959041e-05 9.60358548241e-09 0.659965276718 -9.28841981107e-09
+                0.999999940395 0.999999940395 0.999999940395 109.77494812 2.60016036034 3.16871714592 -1.99390530753e-08 0.659965276718 -7.46141637364e-09
+                1.0 0.999999880791 1.0 110.019966125 2.51947546005 6.48174905777 8.97275711509e-08 0.659965395927 -5.88502828691e-08
+                1.0 1.0 1.00000011921 110.232803345 2.43628287315 9.41630935669 -3.72974966467e-08 0.659965634346 2.29239063287e-08
+                1.0 1.0 1.00000011921 110.406158447 2.35897159576 11.8536272049 -3.48899114044e-08 0.659965515137 -2.19567830584e-08
+                0.999999880791 0.999999940395 0.999999940395 110.529022217 2.29869246483 13.6107444763 2.24247127534e-08 0.659965395927 -3.50313289488e-09
+                1.0 0.999999940395 1.0 110.579200745 2.27271223068 14.3361129761 1.58869184474e-08 0.659965157509 -2.39648869638e-08
+                0.999999940395 1.0 1.00000011921 110.542098999 2.29200053215 13.7992725372 -4.49351809095e-08 0.659965455532 -4.94418408437e-08
+                1.0 0.999999940395 0.999999940395 110.430435181 2.34742474556 12.1986761093 -3.73852202529e-08 0.659965455532 -2.06357952948e-09
+                1.0 0.999999940395 1.0 110.252830505 2.42777872086 9.69568157196 -5.44599956243e-08 0.659965395927 -3.89065597517e-08
+                0.999999880791 0.999999880791 1.0 110.03578949 2.51368904114 6.6980805397 -8.33377384879e-08 0.659965395927 -2.92804802626e-08
+                1.0 0.999999880791 1.0 109.821586609 2.58597946167 3.79458069801 7.43927515146e-08 0.659965336323 -6.19445872374e-09
+                1.0 0.999999940395 1.00000011921 109.652671814 2.63464689255 1.53698539734 -1.51664600878e-08 0.659965276718 -2.12437623048e-08
+                0.999999940395 0.999999940395 0.999999940395 109.556045532 2.65929222107 0.256316363811 9.91502133729e-08 0.659965276718 -9.65273105891e-09
+                0.999999940395 1.0 1.0 109.536636353 2.66396570206 4.45101031801e-05 -3.56476483887e-08 0.659965574741 -1.78639663062e-08
+                0.999999940395 1.0 1.0 109.536636353 2.66396570206 4.45101031801e-05 -3.56476483887e-08 0.659965574741 -1.78639663062e-08
+                0.999999940395 1.0 1.0 109.536636353 2.66396570206 4.45101031801e-05 -3.56476483887e-08 0.659965574741 -1.78639663062e-08
+              }
+            }
+            <Table> Bone.013 {
+              <Xfm$Anim> xform {
+                <Scalar> fps { 15 }
+                <Scalar> order { sprht }
+                <Scalar> contents { ijkprhxyz }
+                <V> {
+                  1.00000011921 1.0 1.00000011921 38.6899986267 -3.90452003479 4.86005544662 -7.32099181278e-08 0.425662249327 -3.9282138431e-08
+                  1.0 1.00000011921 1.00000011921 38.5983734131 -3.43010044098 4.45429849625 -7.90711922605e-08 0.425662219524 -9.95434419337e-08
+                  1.00000011921 1.0 1.0 38.3028717041 -2.00796294212 3.23088908195 -4.26925872432e-09 0.425662249327 1.13696501103e-07
+                  1.00000011921 1.0 1.00000011921 37.7633705139 0.268588453531 1.24571192265 1.73338410292e-08 0.425662249327 1.29854456077e-07
+                  1.00000011921 1.00000011921 1.0 36.9599113464 3.14356160164 -1.32168161869 -2.79412137871e-08 0.42566215992 9.1476422881e-08
+                  1.00000011921 1.00000011921 0.999999940395 35.9437789917 6.20466709137 -4.1518535614 -2.9983514338e-08 0.425662130117 -1.50553347567e-07
+                  1.0 1.00000011921 1.00000023842 34.8614845276 8.98990154266 -6.83798599243 1.19806387033e-08 0.425662219524 -3.61847725117e-08
+                  1.0 1.0 1.00000011921 33.9146537781 11.1351776123 -8.99614906311 -4.21718162613e-08 0.425662219524 -6.86682426476e-08
+                  1.00000011921 1.00000011921 0.999999940395 33.2818870544 12.4484558105 -10.3623418808 2.41781128452e-09 0.425662219524 3.99897288617e-08
+                  1.00000011921 0.999999940395 1.0 33.0636024475 12.8819541931 -10.8216152191 -5.84744341836e-08 0.42566215992 1.59386544851e-07
+                  1.00000011921 1.00000011921 1.0 33.2336387634 12.545091629 -10.4643526077 -6.65357120511e-08 0.425662279129 3.00443545598e-08
+                  1.00000011921 1.00000023842 1.00000023842 33.732131958 11.5230178833 -9.39579868317 -8.44105230158e-08 0.425662219524 4.06331075453e-08
+                  1.00000011921 0.999999940395 1.0 34.5010528564 9.83442687988 -7.6773443222 -7.59685647722e-08 0.425662219524 5.25092183068e-08
+                  1.0 1.0 0.999999940395 35.4303016663 7.57672739029 -5.46008491516 -7.06437859321e-08 0.425662249327 1.77049685135e-07
+                  1.0 1.0 1.00000011921 36.3799362183 4.95339536667 -2.98099398613 -9.69676392515e-08 0.425662219524 -9.29454202492e-08
+                  1.00000011921 1.0 1.0 37.2217941284 2.25956082344 -0.523743569851 -5.33728297114e-08 0.425662100315 8.71647074518e-08
+                  1.0 1.00000011921 1.00000011921 37.8772621155 -0.184567138553 1.64407241344 -6.0982337402e-08 0.425662219524 -4.24668122889e-08
+                  1.00000011921 0.999999940395 1.00000011921 38.3261871338 -2.11535668373 3.32382321358 -2.48900704491e-08 0.425662249327 2.6988988111e-07
+                  1.0 0.999999940395 1.0 38.5867462158 -3.37136816978 4.40404367447 -2.61150372438e-08 0.425662189722 1.1496409158e-08
+                  1.0 1.00000011921 1.00000011921 38.6871871948 -3.88969635963 4.84739685059 -3.01351610332e-09 0.425662189722 -8.89017854888e-08
+                  1.00000011921 1.0 1.0 38.6899986267 -3.90451955795 4.86005496979 1.86449948814e-08 0.425662249327 4.95839813652e-08
+                  1.00000011921 0.999999940395 1.0 38.6900024414 -3.90451908112 4.86005496979 -1.19773462259e-08 0.42566215992 -5.23815302245e-08
+                  1.0 1.0 1.0 38.6899986267 -3.90451955795 4.86005544662 -5.84821346905e-09 0.42566215992 1.20719194641e-08
+                  1.00000011921 1.0 1.00000011921 38.689994812 -3.90451955795 4.86005544662 -6.27427851896e-08 0.425662219524 5.95387312785e-08
+                  1.0 0.999999940395 0.999999940395 38.6900024414 -3.90451908112 4.86005592346 -1.87021989007e-08 0.425662308931 -3.38599477345e-08
+                  1.00000011921 1.0 1.0 38.6899986267 -3.90452003479 4.86005401611 -3.14540891111e-08 0.425662249327 -1.33980604389e-08
+                  1.00000011921 1.0 0.999999940395 38.6899986267 -3.90451955795 4.86005306244 5.72094149831e-09 0.425662219524 1.77822386149e-07
+                  1.00000011921 1.0 0.999999940395 38.6899986267 -3.90451908112 4.86005687714 -1.00066372966e-07 0.425662219524 1.76623217385e-07
+                  1.00000011921 1.0 1.00000011921 38.689994812 -3.90451908112 4.86005401611 1.23483134828e-08 0.425662189722 1.4167822826e-07
+                  1.0 0.999999940395 1.0 38.6900024414 -3.90451908112 4.86005449295 -8.0290483595e-08 0.425662189722 1.08764432127e-07
+                  1.00000011921 0.999999940395 1.0 38.6900024414 -3.90451860428 4.86005353928 -3.53018485555e-08 0.425662189722 8.90844287227e-09
+                  0.999999940395 0.999999940395 0.999999940395 38.6900024414 -3.90451908112 4.86005449295 -7.34091187837e-08 0.425662279129 7.96646091317e-08
+                  1.00000011921 1.0 0.999999940395 38.6899986267 -3.90451908112 4.86005735397 -2.56856012015e-08 0.425662219524 1.71333525145e-07
+                  1.00000011921 1.0 1.0 38.6899986267 -3.90451955795 4.86005401611 3.69298036595e-09 0.425662249327 -2.62793264483e-07
+                  1.00000011921 0.999999940395 1.0 38.6900024414 -3.90451908112 4.8600564003 -1.87617121838e-09 0.425662279129 -7.36944585356e-08
+                  1.00000011921 1.0 1.0 38.6899986267 -3.90451955795 4.86005592346 -6.39349266862e-08 0.42566215992 1.89780413606e-09
+                  0.999999940395 0.999999940395 0.999999940395 38.6900024414 -3.90451812744 4.8600564003 -4.92160481258e-08 0.425662189722 -8.53626573871e-08
+                  1.00000011921 1.0 0.999999940395 38.6899986267 -3.90451955795 4.86005544662 -5.72185463454e-08 0.425662219524 2.38859136914e-08
+                  1.0 0.999999940395 1.0 38.6900024414 -3.90451955795 4.86005496979 -3.79275171269e-08 0.425662279129 -1.44775668787e-07
+                  0.999999940395 0.999999880791 0.999999940395 38.6900024414 -3.90451955795 4.86005496979 -2.19353744058e-08 0.425662189722 2.74051103588e-07
+                  0.999999940395 0.999999940395 0.999999940395 38.6900024414 -3.90451908112 4.86005496979 8.49449932616e-08 0.42566215992 -1.3770029561e-08
+                  1.0 1.0 1.0 38.6900024414 -3.90452003479 4.86005592346 -3.01671354563e-09 0.425662219524 -2.41034541659e-07
+                  1.0 1.0 1.0 38.6900024414 -3.90452003479 4.86005544662 -3.59847796005e-08 0.425662189722 7.58305915838e-08
+                  1.00000011921 1.0 1.0 38.689994812 -3.90451908112 4.86005496979 -2.58137689002e-09 0.425662219524 2.73234178394e-07
+                  1.00000011921 1.0 1.00000011921 38.6899986267 -3.90451908112 4.86005544662 5.31035730944e-08 0.425662189722 3.0508900295e-08
+                  1.00000011921 1.00000011921 1.0 38.6900024414 -3.90451908112 4.86005496979 4.10047569233e-08 0.42566215992 -2.8825803966e-08
+                  1.00000011921 1.00000011921 1.0 38.6900062561 -3.90451860428 4.86005544662 -3.58009657475e-08 0.425662338734 1.56079906333e-07
+                  1.0 1.00000011921 1.0 38.6900024414 -3.90451908112 4.86005544662 2.37013804139e-08 0.425662189722 3.48244597603e-08
+                  1.0 1.0 0.999999940395 38.6900024414 -3.90451908112 4.86005592346 -2.15077156085e-09 0.425662189722 -4.27396251723e-08
+                  1.0 1.0 1.0 38.6900024414 -3.90451955795 4.86005496979 4.81479709435e-08 0.425662219524 3.11884349458e-08
+                  1.00000011921 1.00000011921 1.0 38.6900024414 -3.90451908112 4.86005544662 -1.64965496818e-09 0.425662219524 -2.90360304689e-07
+                  1.0 1.0 1.00000011921 38.6900024414 -3.90451908112 4.86005496979 6.12811490441e-08 0.425662219524 -1.43173409128e-07
+                  1.0 1.00000011921 1.0 38.6900024414 -3.90451955795 4.86005544662 -6.30778771438e-08 0.425662189722 1.02610741237e-07
+                  1.00000011921 1.0 1.00000011921 38.6899986267 -3.90452003479 4.86005544662 -7.32099181278e-08 0.425662249327 -3.9282138431e-08
+                  1.00000011921 1.0 1.00000011921 38.6899986267 -3.90452003479 4.86005544662 -7.32099181278e-08 0.425662249327 -3.9282138431e-08
+                  1.00000011921 1.0 1.00000011921 38.6899986267 -3.90452003479 4.86005544662 -7.32099181278e-08 0.425662249327 -3.9282138431e-08
+                }
+              }
+              <Table> Bone.014 {
+                <Xfm$Anim> xform {
+                  <Scalar> fps { 15 }
+                  <Scalar> order { sprht }
+                  <Scalar> contents { ijkprhxyz }
+                  <V> {
+                    1.0 1.00000023842 1.0 0.000116418959806 123.522537231 -96.2310409546 1.4383417124e-08 0.596106886864 7.30154710027e-08
+                    1.0 1.00000023842 0.999999940395 0.000116465118481 123.522537231 -96.2310409546 6.1092655379e-09 0.596106946468 -2.84535994766e-09
+                    0.999999940395 1.00000011921 1.0 0.000116525472549 123.522537231 -96.2310409546 -8.22534573786e-09 0.596106767654 -2.56986236735e-08
+                    0.999999940395 1.00000011921 1.0 0.000116802242701 123.522537231 -96.2310409546 7.95456998048e-08 0.59610670805 2.68737156972e-08
+                    1.00000011921 1.00000035763 1.0 0.000115873212053 123.522521973 -96.2310409546 2.32468426731e-08 0.596106886864 8.42831653358e-08
+                    1.00000011921 1.00000011921 1.0 0.000119140458992 123.522537231 -96.2310409546 -7.70299948272e-08 0.596106886864 -1.40798604775e-07
+                    1.0 1.00000011921 1.0 0.000118711643154 123.522537231 -96.2310409546 -1.93007245741e-08 0.596106827259 -1.22824559412e-07
+                    1.0 1.00000023842 1.00000011921 0.00011902715778 123.522537231 -96.2310409546 1.10421929378e-08 0.596106767654 -1.1776348785e-09
+                    1.00000011921 1.00000035763 1.00000011921 0.000114758309792 123.522521973 -96.2310409546 1.51851253349e-07 0.596106648445 -5.45064331448e-08
+                    1.00000011921 1.00000023842 1.0 0.000114560920338 123.522537231 -96.2310409546 8.91986644547e-08 0.596106886864 2.09598454148e-08
+                    0.999999940395 1.00000011921 1.0 0.000119532691315 123.522537231 -96.2310409546 4.70983465561e-08 0.596106767654 -3.51247919639e-08
+                    0.999999940395 1.00000011921 1.0 0.000118489770102 123.522537231 -96.2310409546 6.7909368795e-08 0.596106886864 -5.38179563137e-08
+                    0.999999940395 1.00000011921 1.00000011921 0.000120816264825 123.522537231 -96.2310409546 -7.42633190498e-08 0.596106886864 -1.15509408261e-07
+                    1.0 1.00000011921 1.0 0.000114758666314 123.522537231 -96.2310409546 -7.99215982283e-09 0.596106767654 -1.79428212732e-07
+                    1.0 1.00000023842 1.0 0.000117417082947 123.522537231 -96.2310409546 1.10921774876e-07 0.596106946468 -7.06226757075e-08
+                    1.0 1.00000023842 1.0 0.000116300005175 123.522537231 -96.2310409546 3.4641381319e-08 0.596106886864 8.86196431793e-08
+                    0.999999940395 1.00000011921 0.999999880791 0.000116637631436 123.522537231 -96.2310409546 -2.50523672918e-08 0.596106767654 -3.98289685677e-08
+                    1.0 1.00000011921 1.00000011921 0.00011622565944 123.522537231 -96.2310409546 -2.11580388765e-08 0.596106886864 -8.79178259083e-08
+                    1.0 1.00000023842 1.0 0.000116463736049 123.522537231 -96.2310409546 2.77218497047e-08 0.596106886864 -1.20822178928e-07
+                    1.0 1.00000011921 1.0 0.000116417591926 123.522537231 -96.2310409546 1.0184300514e-08 0.596106886864 3.03525027334e-08
+                    1.0 1.00000023842 0.999999940395 0.000116512535897 123.522537231 -96.2310409546 1.10303650658e-08 0.596106827259 -1.91266824601e-08
+                    0.999999940395 1.00000011921 0.999999880791 0.000114967260743 123.522537231 -96.2310409546 8.16131517922e-08 0.596106946468 2.26564438321e-08
+                    1.0 1.00000011921 0.999999940395 0.000115337221359 123.522537231 -96.2310409546 1.65996034696e-08 0.596106767654 4.91693441518e-08
+                    0.999999940395 1.00000011921 0.999999880791 0.000115468690637 123.522537231 -96.2310409546 2.20725411282e-08 0.596106886864 -1.48521266397e-07
+                    1.0 1.00000011921 1.0 0.00011579682905 123.522537231 -96.2310409546 3.05984961813e-08 0.596106827259 -9.81543806233e-08
+                    0.999999940395 1.00000011921 0.999999940395 0.000118329975521 123.522537231 -96.2310409546 2.08482369146e-08 0.596106767654 -9.33438286665e-08
+                    1.00000011921 1.00000023842 1.00000011921 0.00011448602163 123.522537231 -96.2310333252 8.87610784872e-09 0.596106886864 -9.34259105634e-08
+                    0.999999940395 1.00000011921 0.999999880791 0.000116570678074 123.522537231 -96.2310409546 -2.58880170634e-08 0.59610670805 -6.06120096336e-08
+                    0.999999940395 1.00000011921 0.999999880791 0.000115389331768 123.522537231 -96.2310409546 -4.09080485042e-08 0.596106946468 -3.99610478041e-09
+                    1.00000011921 1.00000023842 1.00000011921 0.000117280629638 123.522537231 -96.231048584 -2.02274641481e-10 0.596106827259 -1.14341716539e-07
+                    1.00000011921 1.00000023842 1.0 0.000110716151539 123.522537231 -96.2310409546 1.07274935601e-08 0.596106886864 -1.81205521699e-07
+                    1.0 1.00000011921 1.0 0.000112041831017 123.522537231 -96.2310333252 -1.59399604627e-08 0.596106886864 4.08220763859e-08
+                    0.999999940395 1.00000023842 0.999999940395 0.000112926420115 123.522537231 -96.2310409546 6.86417607199e-08 0.596107006073 -1.03676448759e-07
+                    1.00000011921 1.00000011921 1.0 0.000115041570098 123.522537231 -96.2310409546 -7.30175031549e-10 0.596106648445 -1.16084848401e-08
+                    0.999999940395 1.00000011921 0.999999880791 0.000113975591375 123.522537231 -96.2310409546 -2.53266172479e-08 0.596106946468 4.60506903721e-08
+                    0.999999940395 1.00000011921 1.0 0.000116942072054 123.522537231 -96.2310409546 -3.65295438343e-09 0.596106946468 -8.79663915043e-08
+                    1.0 1.00000011921 1.0 0.000115112306958 123.522537231 -96.2310409546 -2.70280757775e-08 0.596106827259 -1.12390274865e-07
+                    1.00000011921 1.00000011921 1.0 0.000117440591566 123.522537231 -96.2310409546 -4.07765767818e-08 0.596106827259 -6.55668301874e-08
+                    0.999999880791 1.00000011921 0.999999880791 0.000115794966405 123.522537231 -96.2310409546 -2.52486387353e-09 0.596106886864 -8.10771041415e-08
+                    1.0 1.00000011921 1.0 0.000116182105558 123.522537231 -96.2310409546 1.08930731102e-08 0.596106827259 -8.34906543901e-08
+                    1.0 1.00000011921 1.0 0.000116119794257 123.522537231 -96.2310409546 -1.37020954583e-08 0.596106827259 -1.09750445176e-07
+                    0.999999940395 1.00000011921 0.999999880791 0.000115736511361 123.522537231 -96.2310409546 6.2782163468e-08 0.596106827259 2.2334429417e-08
+                    1.0 1.00000011921 0.999999940395 0.000116342787805 123.522537231 -96.2310409546 -1.25461738776e-08 0.596106827259 -1.33493983867e-07
+                    0.999999940395 1.00000011921 0.999999940395 0.000115448900033 123.522537231 -96.2310409546 5.09918285374e-09 0.596106767654 -6.39626094312e-08
+                    1.0 1.00000011921 1.0 0.00011699325114 123.522537231 -96.2310409546 -6.43607833695e-09 0.596106886864 -7.05551101987e-08
+                    1.0 1.00000011921 0.999999940395 0.000115593116789 123.522537231 -96.2310409546 -6.52929159628e-08 0.596106827259 -1.20095720035e-08
+                    1.00000011921 1.00000035763 1.0 0.000114764850878 123.522521973 -96.2310409546 3.99836785903e-09 0.596106827259 -1.99875707096e-08
+                    1.00000011921 1.00000023842 1.00000011921 0.000115139577247 123.522521973 -96.2310409546 -9.00259493619e-08 0.596106886864 -6.29772358707e-08
+                    1.0 1.00000011921 1.0 0.000115576927783 123.522537231 -96.2310409546 -1.17787166687e-08 0.596106827259 1.28229515894e-08
+                    1.0 1.00000023842 1.00000011921 0.000115936600196 123.522537231 -96.2310409546 -1.12483007797e-07 0.596106946468 -7.03311755501e-08
+                    1.00000011921 1.00000011921 1.00000011921 0.000116348717711 123.522537231 -96.2310409546 8.08174149824e-09 0.596106886864 -2.99219564681e-08
+                    0.999999880791 1.00000011921 0.999999940395 0.000116068731586 123.522537231 -96.2310409546 3.6477059151e-09 0.596106767654 2.17753601817e-08
+                    0.999999940395 1.00000011921 1.0 0.000116281742521 123.522537231 -96.2310409546 1.07873727728e-08 0.596106767654 -1.36745370583e-08
+                    1.0 1.00000023842 1.0 0.000116418959806 123.522537231 -96.2310409546 1.4383417124e-08 0.596106886864 7.30154710027e-08
+                    1.0 1.00000023842 1.0 0.000116418959806 123.522537231 -96.2310409546 1.4383417124e-08 0.596106886864 7.30154710027e-08
+                    1.0 1.00000023842 1.0 0.000116418959806 123.522537231 -96.2310409546 1.4383417124e-08 0.596106886864 7.30154710027e-08
+                  }
+                }
+              }
+              <Table> Bone.021 {
+                <Xfm$Anim> xform {
+                  <Scalar> fps { 15 }
+                  <Scalar> order { sprht }
+                  <Scalar> contents { ijkprhxyz }
+                  <V> {
+                    1.0 1.0 1.00000011921 20.7281665802 -7.97880411148 12.7815847397 1.4383417124e-08 0.596106886864 7.30154710027e-08
+                    1.00000011921 0.999999940395 1.0 20.8053283691 -8.58514213562 13.5733289719 6.1092655379e-09 0.596106946468 -2.84535994766e-09
+                    1.00000011921 1.0 1.00000011921 20.9873352051 -10.4192790985 15.9643859863 -8.22534573786e-09 0.596106767654 -2.56986236735e-08
+                    1.00000011921 1.0 0.999999880791 21.1178226471 -13.4001569748 19.8575630188 7.95456998048e-08 0.59610670805 2.68737156972e-08
+                    1.00000011921 1.0 1.00000011921 20.9780826569 -17.2224693298 24.9202747345 2.32468426731e-08 0.596106886864 8.42831653358e-08
+                    1.0 1.00000011921 1.00000023842 20.4165687561 -21.3274726868 30.5446548462 -7.70299948272e-08 0.596106886864 -1.40798604775e-07
+                    1.0 1.00000011921 1.00000011921 19.4906330109 -25.0554485321 35.9333076477 -1.93007245741e-08 0.596106827259 -1.22824559412e-07
+                    1.0 0.999999940395 1.00000011921 18.4753952026 -27.8960933685 40.3033294678 1.10421929378e-08 0.596106767654 -1.1776348785e-09
+                    1.00000011921 1.00000011921 1.00000011921 17.7114696503 -29.6119747162 43.0895996094 1.51851253349e-07 0.596106648445 -5.45064331448e-08
+                    1.00000011921 1.0 1.00000011921 17.4340763092 -30.1733989716 44.0298042297 8.91986644547e-08 0.596106886864 2.09598454148e-08
+                    1.0 1.0 1.0 17.6507663727 -29.7373600006 43.2982444763 4.70983465561e-08 0.596106767654 -3.51247919639e-08
+                    1.0 1.00000011921 1.0 18.2616233826 -28.404964447 41.1165122986 6.7909368795e-08 0.596106886864 -5.38179563137e-08
+                    1.0 1.0 1.00000011921 19.1244316101 -26.1781406403 37.6276779175 -7.42633190498e-08 0.596106886864 -1.15509408261e-07
+                    1.0 1.0 1.00000011921 20.0136508942 -23.1670608521 33.1610069275 -7.99215982283e-09 0.596106767654 -1.79428212732e-07
+                    1.00000023842 1.00000011921 1.00000011921 20.7015743256 -19.6473884583 28.2096443176 1.10921774876e-07 0.596106946468 -7.06226757075e-08
+                    1.00000011921 1.0 1.00000011921 21.0599632263 -16.0414428711 23.3408851624 3.4641381319e-08 0.596106886864 8.86196431793e-08
+                    1.0 0.999999940395 1.0 21.10887146 -12.8024234772 19.0730323792 -2.50523672918e-08 0.596106767654 -3.98289685677e-08
+                    1.0 1.0 1.00000011921 20.9765949249 -10.2796049118 15.781375885 -2.11580388765e-08 0.596106886864 -8.79178259083e-08
+                    1.00000011921 1.0 1.00000011921 20.8144416809 -8.66027736664 13.6710147858 2.77218497047e-08 0.596106886864 -1.20822178928e-07
+                    1.00000011921 1.00000011921 1.00000011921 20.7307033539 -7.99770355225 12.8062705994 1.0184300514e-08 0.596106886864 3.03525027334e-08
+                    1.0 0.999999940395 1.0 20.7281684875 -7.97880315781 12.7815847397 1.10303650658e-08 0.596106827259 -1.91266824601e-08
+                    1.0 1.0 1.0 20.7281646729 -7.97880411148 12.7815847397 8.16131517922e-08 0.596106946468 2.26564438321e-08
+                    0.999999940395 1.0 1.0 20.7281665802 -7.97880411148 12.781586647 1.65996034696e-08 0.596106767654 4.91693441518e-08
+                    1.0 1.0 1.0 20.7281665802 -7.97880411148 12.781583786 2.20725411282e-08 0.596106886864 -1.48521266397e-07
+                    1.00000011921 1.0 1.00000011921 20.7281684875 -7.97880601883 12.7815847397 3.05984961813e-08 0.596106827259 -9.81543806233e-08
+                    1.0 1.00000011921 1.0 20.7281665802 -7.97880172729 12.7815847397 2.08482369146e-08 0.596106767654 -9.33438286665e-08
+                    1.00000011921 1.0 1.0 20.7281703949 -7.97880506516 12.7815856934 8.87610784872e-09 0.596106886864 -9.34259105634e-08
+                    1.0 1.0 1.0 20.7281665802 -7.97880268097 12.7815847397 -2.58880170634e-08 0.59610670805 -6.06120096336e-08
+                    1.0 0.999999940395 1.0 20.7281684875 -7.97880506516 12.781583786 -4.09080485042e-08 0.596106946468 -3.99610478041e-09
+                    0.999999940395 0.999999940395 1.0 20.7281665802 -7.97880315781 12.7815876007 -2.02274641481e-10 0.596106827259 -1.14341716539e-07
+                    1.00000011921 1.00000011921 1.00000011921 20.7281703949 -7.97880315781 12.7815856934 1.07274935601e-08 0.596106886864 -1.81205521699e-07
+                    1.00000011921 1.00000011921 1.00000011921 20.7281684875 -7.97880601883 12.7815847397 -1.59399604627e-08 0.596106886864 4.08220763859e-08
+                    1.0 1.0 1.0 20.7281684875 -7.97880601883 12.781583786 6.86417607199e-08 0.596107006073 -1.03676448759e-07
+                    1.0 1.00000011921 1.00000011921 20.7281646729 -7.97880411148 12.7815856934 -7.30175031549e-10 0.596106648445 -1.16084848401e-08
+                    0.999999940395 1.0 1.0 20.7281646729 -7.97880506516 12.781583786 -2.53266172479e-08 0.596106946468 4.60506903721e-08
+                    1.0 0.999999940395 1.0 20.7281703949 -7.97880601883 12.781583786 -3.65295438343e-09 0.596106946468 -8.79663915043e-08
+                    1.0 1.0 1.00000011921 20.7281665802 -7.97880506516 12.7815856934 -2.70280757775e-08 0.596106827259 -1.12390274865e-07
+                    1.0 1.00000011921 1.00000023842 20.7281665802 -7.97880411148 12.7815856934 -4.07765767818e-08 0.596106827259 -6.55668301874e-08
+                    0.999999940395 1.0 1.00000011921 20.7281646729 -7.97880506516 12.7815847397 -2.52486387353e-09 0.596106886864 -8.10771041415e-08
+                    1.0 1.00000011921 1.00000011921 20.7281665802 -7.97880411148 12.7815856934 1.08930731102e-08 0.596106827259 -8.34906543901e-08
+                    1.0 1.0 1.00000011921 20.7281665802 -7.97880506516 12.7815847397 -1.37020954583e-08 0.596106827259 -1.09750445176e-07
+                    1.0 0.999999940395 1.00000011921 20.7281684875 -7.97880411148 12.7815847397 6.2782163468e-08 0.596106827259 2.2334429417e-08
+                    1.0 1.0 1.00000011921 20.7281703949 -7.97880506516 12.781583786 -1.25461738776e-08 0.596106827259 -1.33493983867e-07
+                    1.0 1.0 1.00000011921 20.7281646729 -7.97880411148 12.7815847397 5.09918285374e-09 0.596106767654 -6.39626094312e-08
+                    1.0 0.999999940395 1.00000011921 20.7281684875 -7.97880411148 12.7815847397 -6.43607833695e-09 0.596106886864 -7.05551101987e-08
+                    1.0 1.0 1.0 20.7281646729 -7.97880315781 12.7815847397 -6.52929159628e-08 0.596106827259 -1.20095720035e-08
+                    1.0 0.999999940395 1.00000011921 20.7281665802 -7.97880411148 12.7815828323 3.99836785903e-09 0.596106827259 -1.99875707096e-08
+                    0.999999940395 1.0 1.00000011921 20.7281646729 -7.97880411148 12.7815856934 -9.00259493619e-08 0.596106886864 -6.29772358707e-08
+                    0.999999940395 0.999999940395 1.0 20.7281665802 -7.97880506516 12.7815856934 -1.17787166687e-08 0.596106827259 1.28229515894e-08
+                    1.00000011921 1.0 1.00000023842 20.7281684875 -7.97880506516 12.781586647 -1.12483007797e-07 0.596106946468 -7.03311755501e-08
+                    1.00000011921 1.0 1.00000011921 20.7281684875 -7.97880601883 12.781586647 8.08174149824e-09 0.596106886864 -2.99219564681e-08
+                    0.999999940395 1.0 1.0 20.7281665802 -7.97880411148 12.7815856934 3.6477059151e-09 0.596106767654 2.17753601817e-08
+                    1.00000011921 1.00000023842 1.00000011921 20.7281646729 -7.97880411148 12.781586647 1.07873727728e-08 0.596106767654 -1.36745370583e-08
+                    1.0 1.0 1.00000011921 20.7281665802 -7.97880411148 12.7815847397 1.4383417124e-08 0.596106886864 7.30154710027e-08
+                    1.0 1.0 1.00000011921 20.7281665802 -7.97880411148 12.7815847397 1.4383417124e-08 0.596106886864 7.30154710027e-08
+                    1.0 1.0 1.00000011921 20.7281665802 -7.97880411148 12.7815847397 1.4383417124e-08 0.596106886864 7.30154710027e-08
+                  }
+                }
+              }
+            }
+          }
+          <Table> Bone.010 {
+            <Xfm$Anim> xform {
+              <Scalar> fps { 15 }
+              <Scalar> order { sprht }
+              <Scalar> contents { ijkprhxyz }
+              <V> {
+                1.00000011921 1.00000011921 1.00000011921 0.8032964468 12.6022386551 1.03085958958 -3.56476483887e-08 0.659965574741 -1.78639663062e-08
+                0.999999880791 0.999999880791 1.0 0.817643880844 13.3781719208 1.03409063816 -6.25426181955e-08 0.659965157509 -8.17611844894e-09
+                0.999999880791 1.0 1.0 0.861404776573 15.7130174637 1.04509568214 3.50241524671e-09 0.659965455532 -1.12209814773e-08
+                1.0 1.0 1.0 0.934236288071 19.4799785614 1.06713533401 1.470519706e-08 0.659965395927 -2.35686297145e-08
+                1.00000011921 1.0 1.0 1.03248667717 24.2932662964 1.10379266739 3.1290550595e-08 0.659965217113 -6.88562540319e-09
+                1.00000011921 1.00000011921 1.00000011921 1.14748156071 29.4952201843 1.1558535099 -1.31803510328e-08 0.659965395927 -1.18988428e-08
+                1.00000011921 1.0 1.00000011921 1.26488411427 34.3072128296 1.21793472767 -1.47203413903e-08 0.659965097904 1.16665006544e-08
+                1.0 1.0 1.0 1.36649525166 38.0722770691 1.27795267105 -2.69149271759e-08 0.659965515137 7.87917997513e-09
+                1.0 0.999999940395 0.999999940395 1.43483412266 40.4055519104 1.32118368149 8.61445415001e-10 0.659965515137 -1.41097213913e-08
+                0.999999940395 1.00000011921 1.0 1.45859205723 41.1808776855 1.33670508862 -3.0982221233e-08 0.659965515137 -5.61237101238e-08
+                0.999999940395 0.999999880791 1.0 1.44526672363 40.7500343323 1.3277785778 -5.13750926245e-08 0.659965336323 5.10686337662e-09
+                1.00000011921 0.999999940395 0.999999940395 1.40537464619 39.4254074097 1.30154538155 -1.73751359966e-08 0.659965097904 -7.87905918287e-09
+                1.0 0.999999940395 1.0 1.34177994728 37.2028083801 1.26129603386 -3.39596546439e-08 0.659965217113 1.67328710887e-08
+                0.999999880791 0.999999880791 1.0 1.26077735424 34.1661720276 1.21308362484 -4.27569446515e-08 0.659965217113 -1.34501956239e-08
+                1.0 0.999999940395 1.0 1.17079246044 30.5118732452 1.16404736042 9.09514525915e-08 0.659965515137 2.79153162808e-08
+                1.0 0.999999940395 1.0 1.08032214642 26.533821106 1.12024116516 2.47951028598e-08 0.659965395927 2.30975487625e-08
+                1.0 0.999999880791 0.999999940395 0.996101915836 22.5606899261 1.08514928818 5.67831826004e-08 0.659965217113 -1.9608888735e-08
+                1.00000011921 0.999999940395 1.00000011921 0.922294139862 18.8774147034 1.05957353115 2.78891292282e-08 0.659965395927 -4.57831994538e-09
+                1.00000011921 0.999999940395 1.00000011921 0.860737025738 15.6768503189 1.04251885414 1.90441085124e-09 0.659965217113 1.61774025287e-08
+                0.999999940395 1.0 1.0 0.811702430248 13.0566701889 1.03226208687 -1.53500245847e-09 0.659965455532 -6.59056698105e-10
+                1.0 1.0 1.0 0.770373284817 10.8090248108 1.02588069439 2.03303791579e-08 0.659965455532 -2.02359657919e-08
+                0.999999940395 0.999999880791 0.999999880791 0.727867841721 8.46435546875 1.02033424377 -9.90519666288e-10 0.659965157509 -1.51948817972e-08
+                1.0 1.00000011921 1.00000011921 0.68474906683 6.05673503876 1.01580321789 -2.26094378775e-08 0.659965455532 4.3061936239e-09
+                1.00000011921 1.00000011921 1.0 0.64226680994 3.6617629528 1.01248514652 -3.26982210197e-08 0.659965455532 2.594854287e-08
+                1.0 0.999999821186 0.999999940395 0.602044343948 1.37881159782 1.01043474674 5.74774787765e-08 0.659965157509 -2.1227011815e-10
+                1.0 0.999999880791 0.999999940395 0.565873026848 -0.682402074337 1.00951600075 2.82921082118e-08 0.659965276718 -5.25689047848e-09
+                1.0 0.999999940395 1.0 0.535362482071 -2.42408156395 1.00942003727 -1.62036197793e-08 0.659965157509 -1.87148918585e-09
+                0.999999940395 0.999999821186 0.999999940395 0.511600732803 -3.78093695641 1.00976073742 1.17488880846e-08 0.659965157509 2.77990412911e-08
+                1.0 0.999999940395 0.999999940395 0.495006978512 -4.72826147079 1.01019561291 -2.15115907309e-08 0.659965217113 4.31705160508e-09
+                0.999999880791 1.0 0.999999940395 0.485411852598 -5.27597236633 1.0105047226 -7.87092346854e-08 0.659965395927 1.20506493673e-08
+                1.0 0.999999940395 1.0 0.482262909412 -5.45577335358 1.01060819626 3.80542495293e-08 0.659965097904 5.13932763013e-09
+                1.0 1.0 1.0 0.489346981049 -5.05574083328 1.00995886326 -4.86903815045e-08 0.659965515137 2.00795398086e-08
+                0.999999940395 0.999999940395 0.999999940395 0.508131563663 -3.99271941185 1.00847673416 -3.03756202413e-08 0.659965336323 -2.13192619114e-09
+                1.0 0.999999940395 1.0 0.535302460194 -2.4503993988 1.0069488287 -2.65598139038e-08 0.659965157509 1.04829256387e-08
+                1.0 1.0 0.999999940395 0.568928539753 -0.536990880966 1.00607144833 1.86900823707e-08 0.659965336323 -9.61078328032e-09
+                1.00000011921 1.0 1.00000011921 0.607820808887 1.67729473114 1.00645756721 3.24203419666e-08 0.659965276718 -1.16979910203e-08
+                0.999999940395 0.999999821186 0.999999880791 0.651245772839 4.14344930649 1.0086619854 -3.39513057668e-08 0.659965276718 3.5343945548e-09
+                0.999999940395 0.999999880791 0.999999940395 0.698773860931 6.8247923851 1.01320409775 3.09544212485e-08 0.659965395927 1.33449491457e-08
+                1.0 0.999999880791 1.0 0.750145196915 9.68925094604 1.02058267593 1.84681638871e-08 0.659965276718 1.90138660372e-09
+                1.0 0.999999880791 1.0 0.803249359131 12.5996847153 1.03084921837 9.60358548241e-09 0.659965276718 -9.28841981107e-09
+                0.999999940395 1.0 1.0 0.479410707951 12.6714401245 -3.18598628044 -1.99390530753e-08 0.659965276718 -7.46141637364e-09
+                1.0 1.00000011921 1.0 0.135497406125 12.7187318802 -7.6031498909 8.97275711509e-08 0.659965395927 -5.88502828691e-08
+                1.00000011921 1.00000011921 1.0 -0.17164324224 12.7389259338 -11.5181446075 -3.72974966467e-08 0.659965634346 2.29239063287e-08
+                1.0 1.00000011921 1.0 -0.427226692438 12.740114212 -14.7684345245 -3.48899114044e-08 0.659965515137 -2.19567830584e-08
+                1.0 1.0 0.999999940395 -0.611150622368 12.7322063446 -17.1094722748 2.24247127534e-08 0.659965395927 -3.50313289488e-09
+                1.00000011921 1.00000011921 1.0 -0.686894714832 12.726808548 -18.0751285553 1.58869184474e-08 0.659965157509 -2.39648869638e-08
+                1.00000011921 1.00000011921 1.0 -0.630852818489 12.7309179306 -17.3604927063 -4.49351809095e-08 0.659965455532 -4.94418408437e-08
+                1.0 1.0 0.999999940395 -0.463396042585 12.7391214371 -15.2283153534 -3.73852202529e-08 0.659965455532 -2.06357952948e-09
+                1.0 1.0 1.0 -0.200973242521 12.7397499084 -11.8908185959 -5.44599956243e-08 0.659965395927 -3.89065597517e-08
+                0.999999940395 1.00000011921 0.999999940395 0.112857349217 12.7208786011 -7.89177036285 -8.33377384879e-08 0.659965395927 -2.92804802626e-08
+                1.00000011921 1.00000011921 1.00000011921 0.414719492197 12.6823043823 -4.01998901367 7.43927515146e-08 0.659965336323 -6.19445872374e-09
+                1.0 1.0 1.00000011921 0.646913647652 12.638671875 -1.01322638988 -1.51664600878e-08 0.659965276718 -2.12437623048e-08
+                1.00000011921 0.999999940395 1.0 0.777328908443 12.6086893082 0.690217494965 9.91502133729e-08 0.659965276718 -9.65273105891e-09
+                1.00000011921 1.00000011921 1.00000011921 0.8032964468 12.6022386551 1.03085958958 -3.56476483887e-08 0.659965574741 -1.78639663062e-08
+                1.00000011921 1.00000011921 1.00000011921 0.8032964468 12.6022386551 1.03085958958 -3.56476483887e-08 0.659965574741 -1.78639663062e-08
+                1.00000011921 1.00000011921 1.00000011921 0.8032964468 12.6022386551 1.03085958958 -3.56476483887e-08 0.659965574741 -1.78639663062e-08
+              }
+            }
+            <Table> Bone.019 {
+              <Xfm$Anim> xform {
+                <Scalar> fps { 15 }
+                <Scalar> order { sprht }
+                <Scalar> contents { ijkprhxyz }
+                <V> {
+                  1.00000011921 1.00000011921 1.00000011921 29.1222705841 7.50473880768 -13.194196701 -1.06532432653e-07 0.996502220631 -2.46181937058e-08
+                  1.00000011921 1.0 1.0 29.3570346832 7.53736591339 -12.8898849487 -4.04994580094e-08 0.996502637863 -1.33177673334e-08
+                  1.0 1.0 1.0 30.0629692078 7.62789201736 -11.9753608704 -1.65867657387e-08 0.996502220631 -1.01842978495e-09
+                  1.00000011921 1.0 1.0 31.2007312775 7.74994421005 -10.5028743744 1.92291693679e-09 0.996501982212 2.15147686333e-08
+                  1.00000011921 1.00000011921 1.00000011921 32.6538696289 7.86332130432 -8.62429332733 -3.78260018863e-08 0.996502518654 -1.704021102e-08
+                  1.00000011921 1.0 0.999999880791 34.2259025574 7.93263626099 -6.59372854233 -9.82769599034e-09 0.996501922607 -3.40412320554e-08
+                  1.0 0.999999940395 1.0 35.6839065552 7.94755363464 -4.71116018295 1.33921833623e-08 0.996502280235 -5.29488595191e-08
+                  1.00000023842 1.00000023842 1.00000011921 36.8287582397 7.92600679398 -3.23287534714 4.16594474473e-08 0.996502399445 -2.76905431917e-08
+                  1.00000011921 1.00000011921 1.0 37.5405349731 7.89785432816 -2.31357002258 -2.69208104697e-08 0.996502280235 -5.84754324962e-08
+                  1.00000011921 1.00000011921 1.00000011921 37.7774887085 7.88596391678 -2.00746965408 -3.32125367208e-08 0.996502161026 9.15984976757e-09
+                  1.00000011921 1.00000011921 1.0 37.5932731628 7.89531564713 -2.24544382095 -4.26703650191e-08 0.996502280235 2.68852762275e-09
+                  1.0 1.00000011921 1.00000011921 37.0380744934 7.91890954971 -2.96255302429 -4.09514058219e-08 0.996502220631 -7.36864569362e-10
+                  1.00000011921 1.00000011921 0.999999880791 36.1322174072 7.94260692596 -4.1323184967 -8.25198753773e-08 0.996502459049 -9.30764354479e-09
+                  1.0 1.0 1.0 34.9406700134 7.94588851929 -5.67080211639 -3.26564641995e-09 0.99650233984 -4.08451974465e-08
+                  1.00000011921 0.999999940395 0.999999940395 33.580116272 7.91086864471 -7.42774391174 -4.65310385778e-08 0.996502101421 1.54750399162e-08
+                  1.0 1.00000011921 1.00000011921 32.2051963806 7.83340740204 -9.2041425705 -7.85702525263e-09 0.996502459049 -2.4273232313e-08
+                  1.0 1.0 1.0 30.9736881256 7.72794914246 -10.7965974808 -3.3758368545e-08 0.996502280235 2.42158648689e-09
+                  1.0 1.0 0.999999940395 30.0097026825 7.62146902084 -12.0443468094 1.02979509364e-08 0.996501863003 2.26327898645e-08
+                  1.00000011921 1.00000011921 1.0 29.3861789703 7.54133081436 -12.8521108627 -9.52403400589e-09 0.996502757072 -7.02395031027e-09
+                  1.00000011921 1.00000011921 1.0 29.1295986176 7.50577783585 -13.1846895218 -8.352440517e-08 0.996502280235 -1.32481314807e-08
+                  1.00000011921 1.0 1.0 29.1222667694 7.50473690033 -13.194196701 -5.03481061287e-08 0.996502041817 -4.58247839674e-09
+                  1.00000011921 1.0 1.0 29.1222667694 7.50473594666 -13.1941957474 1.33272246572e-08 0.99650233984 1.91570173058e-08
+                  1.00000011921 1.0 1.0 29.1222667694 7.50473594666 -13.194196701 -2.88813808424e-08 0.996502459049 6.61040822081e-09
+                  1.0 1.0 0.999999940395 29.1222705841 7.50473690033 -13.194196701 1.54167345556e-08 0.996502280235 2.66259512216e-08
+                  1.00000011921 1.0 1.0 29.1222629547 7.50473690033 -13.194196701 -1.90673210554e-09 0.996502101421 1.76111498718e-08
+                  1.00000011921 1.00000011921 1.0 29.1222629547 7.504737854 -13.194196701 -3.38756223073e-08 0.996502518654 1.27830119823e-08
+                  1.00000011921 1.0 1.0 29.1222667694 7.50473690033 -13.194196701 -1.93272597926e-08 0.99650233984 8.38325497909e-09
+                  1.00000011921 1.0 1.0 29.1222667694 7.50473594666 -13.194196701 5.8688506499e-08 0.996502220631 4.84097695264e-09
+                  1.0 1.0 1.0 29.1222667694 7.504737854 -13.1941976547 -1.67371450033e-10 0.996502161026 -2.50478997543e-08
+                  1.00000011921 1.0 1.0 29.1222667694 7.50473690033 -13.1941957474 -7.93092809204e-08 0.996502161026 1.07601021426e-08
+                  1.0 0.999999940395 1.0 29.1222667694 7.504737854 -13.194196701 -1.18369491986e-08 0.996501922607 -4.34306421937e-08
+                  1.0 1.0 1.0 29.1222667694 7.50474023819 -13.1941976547 4.08941929209e-08 0.996502220631 -5.79580223814e-08
+                  1.0 1.0 0.999999940395 29.1222667694 7.50473594666 -13.1941986084 6.64250237037e-08 0.996502280235 -4.47788117697e-09
+                  1.0 1.0 1.0 29.1222667694 7.50473594666 -13.1941986084 1.24266463786e-08 0.996502399445 -4.57522997266e-09
+                  1.00000011921 1.0 1.0 29.1222667694 7.504737854 -13.194196701 -4.83955666652e-08 0.996502280235 5.359082067e-09
+                  1.0 1.0 0.999999880791 29.1222667694 7.50473880768 -13.1941976547 1.53510981704e-09 0.996502459049 1.630987434e-08
+                  1.00000011921 1.0 1.0 29.1222629547 7.50473690033 -13.194196701 -5.4828756646e-08 0.996502041817 2.94907209764e-09
+                  1.00000011921 0.999999940395 1.00000011921 29.1222667694 7.50473690033 -13.194196701 -2.12033377522e-08 0.996502041817 1.74177117174e-08
+                  1.0 1.00000011921 1.00000011921 29.1222629547 7.504737854 -13.1941986084 -5.69319382748e-08 0.99650233984 1.85951130049e-08
+                  1.00000011921 1.00000011921 1.00000011921 29.1222705841 7.50473690033 -13.194196701 -7.6452423059e-08 0.996502041817 -4.32814939444e-09
+                  1.00000011921 0.999999940395 1.0 29.1222667694 7.504737854 -13.194196701 6.81156393512e-08 0.996502101421 5.93500004697e-09
+                  1.00000011921 1.0 1.00000011921 29.1222667694 7.50473594666 -13.194196701 -1.12437767541e-07 0.996502399445 2.34300507884e-08
+                  1.00000011921 1.0 1.0 29.1222667694 7.504737854 -13.1941957474 -7.0574103006e-08 0.996502101421 -3.13326609103e-08
+                  1.00000011921 1.0 1.0 29.1222667694 7.50473594666 -13.1941957474 6.11393602412e-08 0.996501982212 1.41593936576e-08
+                  1.00000011921 1.0 1.00000011921 29.1222667694 7.504737854 -13.1941957474 1.34056762136e-07 0.996502161026 1.6086490362e-08
+                  1.00000011921 1.0 0.999999940395 29.1222667694 7.50473594666 -13.1941947937 6.72097044685e-08 0.996502101421 -9.50308631786e-09
+                  1.00000011921 1.0 1.0 29.1222667694 7.50473594666 -13.194196701 -3.66879615576e-09 0.99650233984 2.29292584919e-09
+                  1.0 1.0 1.0 29.1222667694 7.504737854 -13.19419384 -4.28416555565e-08 0.99650233984 -1.27892665347e-08
+                  1.00000011921 1.0 1.0 29.1222667694 7.50473690033 -13.1941957474 -4.13992964354e-08 0.996502101421 -1.22035102024e-08
+                  1.00000011921 1.0 1.0 29.1222667694 7.504737854 -13.1941947937 -9.79287335667e-08 0.996502459049 -1.0327115163e-08
+                  1.00000011921 1.0 1.00000011921 29.1222667694 7.50473546982 -13.1941947937 -9.74602265558e-09 0.996502280235 -1.50623691297e-08
+                  1.00000011921 0.999999940395 0.999999940395 29.1222667694 7.50473690033 -13.1941957474 -1.84918942381e-08 0.996502101421 -5.65026203603e-09
+                  1.00000011921 1.0 1.0 29.1222667694 7.50473546982 -13.194196701 4.30629532033e-10 0.996502101421 -1.33983508732e-08
+                  1.00000011921 1.00000011921 1.00000011921 29.1222705841 7.50473880768 -13.194196701 -1.06532432653e-07 0.996502220631 -2.46181937058e-08
+                  1.00000011921 1.00000011921 1.00000011921 29.1222705841 7.50473880768 -13.194196701 -1.06532432653e-07 0.996502220631 -2.46181937058e-08
+                  1.00000011921 1.00000011921 1.00000011921 29.1222705841 7.50473880768 -13.194196701 -1.06532432653e-07 0.996502220631 -2.46181937058e-08
+                }
+              }
+              <Table> Bone.020 {
+                <Xfm$Anim> xform {
+                  <Scalar> fps { 15 }
+                  <Scalar> order { sprht }
+                  <Scalar> contents { ijkprhxyz }
+                  <V> {
+                    1.0 1.0 1.0 -9.41754722595 -2.21405334742e-05 15.1461906433 -1.55252344314e-09 0.577089369297 1.06012137735e-07
+                    1.00000011921 1.00000011921 1.00000011921 -8.83825397491 0.290014594793 15.7580528259 -1.31744656073e-07 0.57708978653 1.61799547982e-07
+                    1.0 1.0 0.999999880791 -7.07475662231 1.12591266632 17.6186504364 5.08368600549e-08 0.577089607716 -1.45121120454e-07
+                    1.00000011921 1.00000011921 1.00000011921 -4.16845321655 2.35339355469 20.6790084839 -1.52195568148e-07 0.577089846134 -2.99503071233e-08
+                    0.999999940395 1.0 1.0 -0.355895549059 3.69242501259 24.6843700409 -5.11315576546e-08 0.577089607716 -2.20963727315e-07
+                    1.00000011921 1.00000011921 1.00000011921 3.86855506897 4.83392381668 29.1130161285 -1.71553597994e-08 0.577089488506 1.94023073163e-07
+                    1.00000011921 1.00000011921 1.0 7.84802246094 5.59436321259 33.2783470154 -4.90490847938e-08 0.577089607716 2.51460420486e-07
+                    1.0 1.0 1.0 10.9925317764 5.98585271835 36.5667686462 -1.60129420834e-08 0.57708978653 -4.32115818683e-08
+                    1.0 0.999999940395 1.0 12.9483909607 6.1377081871 38.6113166809 3.98341981622e-09 0.577089726925 5.18020328855e-08
+                    1.0 1.0 1.0 13.5988006592 6.17274427414 39.2911376953 -6.31498480175e-08 0.57708966732 -8.32316047195e-08
+                    1.0 1.0 1.0 13.0931806564 6.14618206024 38.7626571655 -4.48934613928e-08 0.577089548111 -6.45649294029e-08
+                    1.0 1.0 1.0 11.5678043365 6.03780460358 37.1681518555 -6.69151063448e-08 0.577089726925 -1.1249594678e-07
+                    1.0 1.0 0.999999940395 9.07810020447 5.76936006546 34.5648765564 -2.69428834798e-08 0.577089250088 -8.82204247432e-08
+                    1.00000011921 1.00000011921 0.999999940395 5.81357765198 5.24320745468 31.1493301392 -4.79726693925e-08 0.577089607716 -1.22973176531e-07
+                    1.00000011921 1.0 0.999999940395 2.12195920944 4.40473079681 27.2827358246 2.57524561675e-08 0.57708966732 -9.7313460401e-08
+                    1.0 1.0 1.0 -1.54474270344 3.30728507042 23.4360809326 -1.07833663776e-07 0.577089726925 -1.01768293348e-07
+                    0.999999940395 1.00000011921 1.0 -4.75510168076 2.12055110931 20.0615406036 -4.55688820011e-08 0.577089250088 -9.06912447363e-08
+                    1.0 1.0 0.999999940395 -7.2093706131 1.06469261646 17.476556778 -1.35302286708e-07 0.577090024948 -2.47711184898e-08
+                    0.999999880791 0.999999880791 0.999999880791 -8.76624107361 0.325574696064 15.8340301514 -6.7551169991e-08 0.577089846134 -7.23797413116e-08
+                    1.0 1.0 1.0 -9.3995141983 0.00912723317742 15.1652412415 -2.29458194667e-08 0.577089905739 2.92319182194e-08
+                    1.0 1.0 0.999999940395 -9.41754817963 -2.22737180593e-05 15.1461906433 -9.30584320713e-08 0.57708966732 -2.90635000511e-07
+                    0.999999880791 0.999999940395 0.999999940395 -9.41754722595 -2.23957576964e-05 15.146188736 -1.35283173108e-07 0.577089548111 -1.8028094928e-07
+                    0.999999940395 0.999999880791 0.999999880791 -9.41754817963 -2.32261754718e-05 15.146188736 5.17068770023e-08 0.577089309692 -2.13540864991e-08
+                    0.999999940395 1.0 0.999999940395 -9.4175491333 -2.14754145418e-05 15.1461906433 -9.04269441548e-08 0.577089726925 -1.15570081505e-07
+                    1.00000011921 1.0 1.00000011921 -9.4175453186 -2.07898647204e-05 15.1461868286 -6.31502459214e-08 0.577089488506 4.12352854084e-08
+                    0.999999940395 0.999999880791 0.999999940395 -9.41754627228 -2.19532248593e-05 15.1461906433 -1.5525186825e-07 0.577089428902 7.51951887423e-08
+                    0.999999940395 0.999999940395 0.999999940395 -9.4175453186 -2.09949212149e-05 15.1461906433 4.11252401022e-08 0.577089607716 -4.2785899268e-09
+                    1.0 1.0 0.999999940395 -9.41754817963 -2.25065577979e-05 15.146188736 -6.16929654029e-08 0.577089428902 8.3381674898e-09
+                    1.0 0.999999940395 1.0 -9.41754817963 -2.42893256654e-05 15.1461906433 -1.05853168009e-07 0.577089905739 -3.27603089545e-07
+                    1.00000011921 1.00000011921 1.00000011921 -9.41754722595 -2.05364085559e-05 15.146188736 -5.85231738626e-08 0.57708966732 -2.71221210824e-07
+                    1.0 0.999999940395 0.999999821186 -9.41754722595 -2.22431990551e-05 15.1461906433 -7.14332486496e-08 0.57708966732 -3.13655235118e-08
+                    1.0 1.0 1.0 -9.41754817963 -2.0498966478e-05 15.1461906433 -2.29885195324e-08 0.577089846134 5.2744002943e-08
+                    0.999999940395 0.999999940395 0.999999880791 -9.4175453186 -2.18707809836e-05 15.1461906433 -8.43849434773e-08 0.577089369297 3.34695442916e-07
+                    1.0 0.999999940395 0.999999940395 -9.41754627228 -1.86566849152e-05 15.1461906433 -5.50314780412e-08 0.577089369297 2.28514537071e-07
+                    1.0 1.0 0.999999940395 -9.41754817963 -2.27807868214e-05 15.1461906433 -2.96133233491e-08 0.577089607716 3.18795514431e-08
+                    1.0 1.0 1.0 -9.4175491333 -2.11133083212e-05 15.1461906433 1.42338443254e-08 0.577089190483 -1.03400495277e-07
+                    0.999999880791 1.0 1.0 -9.41754817963 -2.18980239879e-05 15.1461906433 6.32321004446e-08 0.57708966732 6.65606734174e-08
+                    0.999999880791 0.999999940395 0.999999880791 -9.41754817963 -2.23000770347e-05 15.1461906433 -1.08879007144e-07 0.577089548111 4.8745665282e-08
+                    0.999999940395 1.0 0.999999880791 -9.41754722595 -2.23978986469e-05 15.1461906433 -1.16307063536e-07 0.57708966732 -5.50343237649e-08
+                    0.999999940395 1.0 1.0 -9.41755008698 -2.14608662645e-05 15.1461906433 -4.20474606244e-08 0.577089726925 -7.69828574221e-08
+                    1.0 1.0 1.00000011921 -9.41754627228 -2.11680762732e-05 15.146188736 -4.82254947087e-08 0.577089846134 4.93575278426e-08
+                    1.0 1.0 1.0 -9.41754817963 -2.30518216995e-05 15.1461906433 -6.52110614396e-08 0.57708966732 1.48846638126e-07
+                    0.999999880791 1.0 0.999999940395 -9.41754817963 -2.34353556152e-05 15.146188736 -2.86041093034e-08 0.577089548111 -8.08794524687e-08
+                    0.999999940395 1.0 0.999999940395 -9.4175491333 -2.09833178815e-05 15.146188736 8.80016983729e-08 0.577089846134 -1.14838663023e-08
+                    1.0 0.999999940395 0.999999940395 -9.4175453186 -2.25654584938e-05 15.1461906433 -2.31307581089e-07 0.577089846134 -9.87743007386e-08
+                    1.0 1.0 1.00000011921 -9.4175453186 -2.2943415388e-05 15.1461868286 -8.36202218579e-08 0.577089965343 3.53136933029e-08
+                    1.0 0.999999940395 0.999999880791 -9.41754627228 -2.26438332902e-05 15.1461906433 -2.33026995033e-07 0.577089428902 1.53285640181e-07
+                    1.00000011921 1.00000011921 1.00000011921 -9.41754627228 -2.24767063628e-05 15.1461868286 -4.09443927651e-08 0.577089488506 1.11357955745e-07
+                    1.0 0.999999940395 1.0 -9.41754817963 -2.30129535339e-05 15.1461906433 -5.27704173692e-08 0.577089369297 -9.26000396362e-08
+                    0.999999940395 1.0 1.0 -9.41754722595 -2.28838234761e-05 15.1461906433 -9.18309837061e-08 0.577089607716 1.97758055265e-07
+                    1.0 1.0 1.00000011921 -9.41754817963 -2.17792694457e-05 15.1461868286 -7.46398427509e-08 0.577089428902 2.99115328062e-08
+                    1.0 1.00000011921 1.0 -9.41754817963 -2.16864464164e-05 15.1461906433 -8.14118834569e-08 0.577090203762 -7.46712487398e-08
+                    0.999999940395 1.0 0.999999940395 -9.41754722595 -2.22269645747e-05 15.1461906433 2.29659047335e-08 0.577089726925 3.9694199927e-08
+                    1.0 1.0 1.0 -9.41754722595 -2.21405334742e-05 15.1461906433 -1.55252344314e-09 0.577089369297 1.06012137735e-07
+                    1.0 1.0 1.0 -9.41754722595 -2.21405334742e-05 15.1461906433 -1.55252344314e-09 0.577089369297 1.06012137735e-07
+                    1.0 1.0 1.0 -9.41754722595 -2.21405334742e-05 15.1461906433 -1.55252344314e-09 0.577089369297 1.06012137735e-07
+                  }
+                }
+              }
+            }
+            <Table> Bone.017 {
+              <Xfm$Anim> xform {
+                <Scalar> fps { 15 }
+                <Scalar> order { sprht }
+                <Scalar> contents { ijkprhxyz }
+                <V> {
+                  0.999999880791 1.0 0.999999940395 -40.9558830261 -11.956949234 -10.6232967377 -1.06532432653e-07 0.996502220631 -2.46181937058e-08
+                  1.00000011921 1.00000011921 1.0 -41.1753768921 -11.8458089828 -11.2058906555 -4.04994580094e-08 0.996502637863 -1.33177673334e-08
+                  1.0 1.0 0.999999940395 -41.8416938782 -11.5248603821 -12.9590091705 -1.65867657387e-08 0.996502220631 -1.01842978495e-09
+                  0.999999880791 1.0 0.999999940395 -42.9341964722 -11.0501422882 -15.7880220413 1.92291693679e-09 0.996501982212 2.15147686333e-08
+                  0.999999880791 1.0 1.0 -44.3587646484 -10.5221204758 -19.4055938721 -3.78260018863e-08 0.996502518654 -1.704021102e-08
+                  0.999999940395 0.999999940395 1.0 -45.9300765991 -10.0522699356 -23.321352005 -9.82769599034e-09 0.996501922607 -3.40412320554e-08
+                  1.0 1.00000011921 1.0 -47.408531189 -9.71253871918 -26.9515190125 1.33921833623e-08 0.996502280235 -5.29488595191e-08
+                  1.00000011921 1.0 1.00000011921 -48.579246521 -9.51127338409 -29.798500061 4.16594474473e-08 0.996502399445 -2.76905431917e-08
+                  0.999999880791 1.0 0.999999880791 -49.3098983765 -9.4153175354 -31.5661258698 -2.69208104697e-08 0.996502280235 -5.84754324962e-08
+                  1.0 1.00000011921 1.0 -49.5534515381 -9.38833522797 -32.1540870667 -3.32125367208e-08 0.996502161026 9.15984976757e-09
+                  0.999999940395 1.0 1.00000011921 -49.3640937805 -9.40910148621 -31.6969985962 -4.26703650191e-08 0.996502280235 2.68852762275e-09
+                  0.999999880791 1.0 1.0 -48.7939376831 -9.4807434082 -30.3185005188 -4.09514058219e-08 0.996502220631 -7.36864569362e-10
+                  1.00000011921 1.0 1.0 -47.8661270142 -9.62688732147 -28.0667285919 -8.25198753773e-08 0.996502459049 -9.30764354479e-09
+                  0.999999940395 0.999999940395 0.999999880791 -46.6527137756 -9.87419033051 -25.101190567 -3.26564641995e-09 0.99650233984 -4.08451974465e-08
+                  1.0 1.00000011921 0.999999940395 -45.2812194824 -10.2325353622 -21.7124099731 -4.65310385778e-08 0.996502101421 1.54750399162e-08
+                  0.999999880791 1.0 1.0 -43.9156799316 -10.6758203506 -18.2878856659 -7.85702525263e-09 0.996502459049 -2.4273232313e-08
+                  0.999999880791 1.0 1.0 -42.7144203186 -11.1407785416 -15.2228746414 -3.3758368545e-08 0.996502280235 2.42158648689e-09
+                  0.999999940395 0.999999880791 1.0 -41.7910728455 -11.5484771729 -12.8264656067 1.02979509364e-08 0.996501863003 2.26327898645e-08
+                  0.999999940395 1.0 1.0 -41.2026901245 -11.832201004 -11.2781658173 -9.52403400589e-09 0.996502757072 -7.02395031027e-09
+                  1.0 0.999999940395 1.0 -40.9627227783 -11.9534482956 -10.6414871216 -8.352440517e-08 0.996502280235 -1.32481314807e-08
+                  1.0 0.999999940395 0.999999940395 -40.9558830261 -11.9569501877 -10.623295784 -5.03481061287e-08 0.996502041817 -4.58247839674e-09
+                  0.999999940395 0.999999940395 0.999999940395 -40.9558830261 -11.9569501877 -10.6232948303 1.33272246572e-08 0.99650233984 1.91570173058e-08
+                  0.999999940395 1.0 0.999999880791 -40.9558830261 -11.9569501877 -10.6232976913 -2.88813808424e-08 0.996502459049 6.61040822081e-09
+                  0.999999940395 0.999999940395 0.999999940395 -40.9558830261 -11.9569501877 -10.6232948303 1.54167345556e-08 0.996502280235 2.66259512216e-08
+                  1.0 0.999999940395 0.999999940395 -40.9558830261 -11.9569482803 -10.623295784 -1.90673210554e-09 0.996502101421 1.76111498718e-08
+                  1.0 1.0 1.0 -40.9558830261 -11.9569444656 -10.6232967377 -3.38756223073e-08 0.996502518654 1.27830119823e-08
+                  0.999999880791 0.999999940395 0.999999940395 -40.9558830261 -11.9569501877 -10.6232967377 -1.93272597926e-08 0.99650233984 8.38325497909e-09
+                  1.0 0.999999940395 1.0 -40.9558830261 -11.9569501877 -10.623295784 5.8688506499e-08 0.996502220631 4.84097695264e-09
+                  0.999999880791 0.999999940395 1.0 -40.9558830261 -11.9569454193 -10.6232976913 -1.67371450033e-10 0.996502161026 -2.50478997543e-08
+                  1.0 1.0 0.999999940395 -40.9558830261 -11.956949234 -10.623295784 -7.93092809204e-08 0.996502161026 1.07601021426e-08
+                  0.999999880791 0.999999940395 0.999999940395 -40.9558830261 -11.9569473267 -10.623295784 -1.18369491986e-08 0.996501922607 -4.34306421937e-08
+                  0.999999880791 1.0 0.999999940395 -40.9558830261 -11.9569482803 -10.6232967377 4.08941929209e-08 0.996502220631 -5.79580223814e-08
+                  0.999999940395 1.0 0.999999940395 -40.9558830261 -11.956952095 -10.6232967377 6.64250237037e-08 0.996502280235 -4.47788117697e-09
+                  0.999999940395 1.0 0.999999940395 -40.9558792114 -11.9569482803 -10.623295784 1.24266463786e-08 0.996502399445 -4.57522997266e-09
+                  0.999999940395 1.0 1.0 -40.9558792114 -11.9569482803 -10.623295784 -4.83955666652e-08 0.996502280235 5.359082067e-09
+                  0.999999940395 1.0 0.999999940395 -40.9558830261 -11.9569444656 -10.6232967377 1.53510981704e-09 0.996502459049 1.630987434e-08
+                  1.0 1.0 0.999999940395 -40.9558792114 -11.9569482803 -10.623295784 -5.4828756646e-08 0.996502041817 2.94907209764e-09
+                  1.0 0.999999940395 1.0 -40.9558792114 -11.9569501877 -10.6232948303 -2.12033377522e-08 0.996502041817 1.74177117174e-08
+                  0.999999940395 1.0 1.0 -40.9558792114 -11.9569501877 -10.6232967377 -5.69319382748e-08 0.99650233984 1.85951130049e-08
+                  0.999999940395 1.0 0.999999940395 -40.9558830261 -11.9569501877 -10.6232967377 -7.6452423059e-08 0.996502041817 -4.32814939444e-09
+                  0.999999940395 0.999999940395 0.999999940395 -40.9558830261 -11.956949234 -10.6232948303 6.81156393512e-08 0.996502101421 5.93500004697e-09
+                  1.0 1.0 1.0 -40.9558830261 -11.9569501877 -10.623295784 -1.12437767541e-07 0.996502399445 2.34300507884e-08
+                  0.999999940395 1.0 0.999999940395 -40.9558792114 -11.9569501877 -10.623295784 -7.0574103006e-08 0.996502101421 -3.13326609103e-08
+                  0.999999940395 0.999999940395 1.0 -40.9558792114 -11.9569501877 -10.6232948303 6.11393602412e-08 0.996501982212 1.41593936576e-08
+                  1.0 1.0 1.0 -40.9558830261 -11.9569501877 -10.6232976913 1.34056762136e-07 0.996502161026 1.6086490362e-08
+                  0.999999940395 0.999999940395 0.999999940395 -40.9558792114 -11.9569501877 -10.6232976913 6.72097044685e-08 0.996502101421 -9.50308631786e-09
+                  0.999999940395 0.999999940395 0.999999940395 -40.9558830261 -11.9569501877 -10.6232948303 -3.66879615576e-09 0.99650233984 2.29292584919e-09
+                  0.999999880791 0.999999940395 1.0 -40.9558830261 -11.9569501877 -10.6232948303 -4.28416555565e-08 0.99650233984 -1.27892665347e-08
+                  0.999999940395 0.999999940395 0.999999940395 -40.9558830261 -11.9569501877 -10.6232976913 -4.13992964354e-08 0.996502101421 -1.22035102024e-08
+                  1.0 1.0 1.0 -40.9558830261 -11.956949234 -10.6232948303 -9.79287335667e-08 0.996502459049 -1.0327115163e-08
+                  1.0 1.0 0.999999940395 -40.9558792114 -11.956949234 -10.6232948303 -9.74602265558e-09 0.996502280235 -1.50623691297e-08
+                  0.999999880791 0.999999940395 0.999999940395 -40.9558830261 -11.9569501877 -10.6232967377 -1.84918942381e-08 0.996502101421 -5.65026203603e-09
+                  0.999999880791 1.0 0.999999940395 -40.9558830261 -11.9569501877 -10.623295784 4.30629532033e-10 0.996502101421 -1.33983508732e-08
+                  0.999999880791 1.0 0.999999940395 -40.9558830261 -11.956949234 -10.6232967377 -1.06532432653e-07 0.996502220631 -2.46181937058e-08
+                  0.999999880791 1.0 0.999999940395 -40.9558830261 -11.956949234 -10.6232967377 -1.06532432653e-07 0.996502220631 -2.46181937058e-08
+                  0.999999880791 1.0 0.999999940395 -40.9558830261 -11.956949234 -10.6232967377 -1.06532432653e-07 0.996502220631 -2.46181937058e-08
+                }
+              }
+              <Table> Bone.018 {
+                <Xfm$Anim> xform {
+                  <Scalar> fps { 15 }
+                  <Scalar> order { sprht }
+                  <Scalar> contents { ijkprhxyz }
+                  <V> {
+                    1.00000011921 1.0 1.00000011921 8.5660943985 1.88784313202 15.8335924149 -3.50876696587e-08 0.552934885025 -8.02835202762e-08
+                    1.00000011921 1.0 1.0 8.31871414185 2.09057068825 15.5515432358 -1.00516444945e-07 0.552935183048 8.38912512791e-08
+                    0.999999940395 0.999999940395 1.0 7.56964254379 2.6919836998 14.699098587 -7.19400645721e-08 0.552935123444 4.46428316536e-08
+                    1.00000011921 1.00000011921 0.999999940395 6.3456993103 3.63533234596 13.3110685349 4.00044051219e-08 0.552934765816 1.06707020109e-07
+                    1.0 1.00000011921 1.00000011921 4.75190639496 4.79324913025 11.5118579865 5.2336879719e-08 0.552935063839 3.4095617707e-07
+                    1.0 1.00000023842 1.00000011921 2.98803925514 5.98590612411 9.53041362762 -5.84660604375e-08 0.552935183048 2.27660180485e-07
+                    0.999999940395 1.0 1.00000011921 1.31424725056 7.03541851044 7.65860748291 2.24720153597e-08 0.552935063839 1.72774690554e-07
+                    1.0 0.999999940395 1.00000011921 -0.0261576995254 7.82061815262 6.16493415833 -2.64862364929e-07 0.552935004234 1.8711507721e-07
+                    1.00000011921 1.00000011921 1.00000011921 -0.871291399002 8.29126358032 5.22538423538 -2.04884699428e-07 0.552935183048 1.48432761193e-07
+                    1.00000011921 1.00000023842 1.00000011921 -1.15466451645 8.4449224472 4.91072463989 -1.1298317304e-07 0.552935004234 -6.74514026855e-08
+                    1.00000011921 1.0 1.0 -0.934271037579 8.32559299469 5.15543556213 1.94521632579e-07 0.55293482542 -1.72145988131e-07
+                    0.999999940395 0.999999880791 0.999999880791 -0.273745685816 7.96042823792 5.88952064514 3.65772230282e-08 0.55293482542 -3.79702953524e-07
+                    1.0 1.00000011921 1.00000011921 0.792128741741 7.34700918198 7.07626819611 -1.25161747633e-07 0.552935063839 -3.07448203785e-07
+                    1.0 0.999999940395 1.0 2.17210960388 6.50729084015 8.61702632904 9.85002230891e-08 0.55293494463 1.75402888658e-07
+                    0.999999940395 1.00000011921 0.999999940395 3.71771979332 5.50356674194 10.3489847183 -1.86316981399e-07 0.552935063839 -7.32975991014e-08
+                    1.0 1.00000011921 0.999999940395 5.2477440834 4.44137334824 12.0707149506 2.44298874463e-08 0.552935004234 3.97966815058e-09
+                    0.999999880791 1.0 1.0 6.59161996841 3.44965577126 13.5895442963 -4.99280794486e-08 0.552935004234 2.58167887068e-07
+                    0.999999940395 1.0 1.0 7.6264500618 2.6470310688 14.7636909485 -5.550768023e-08 0.55293482542 1.11407040038e-07
+                    1.0 1.00000011921 1.0 8.28793716431 2.11564588547 15.516494751 -2.15273221471e-08 0.552935123444 -2.48608831299e-08
+                    0.999999940395 1.0 0.999999940395 8.55838012695 1.89419543743 15.8247938156 -4.39704095356e-08 0.55293494463 -3.20843213331e-07
+                    0.999999940395 1.0 0.999999940395 8.56610012054 1.88784205914 15.8335914612 4.15315781765e-09 0.552935302258 2.48193771313e-07
+                    1.0 1.00000011921 1.00000011921 8.5660982132 1.88784253597 15.8335943222 -2.67664344022e-08 0.552934885025 9.7538134014e-08
+                    1.00000011921 1.00000011921 1.00000011921 8.56609535217 1.88784229755 15.8335924149 2.78860419201e-08 0.552935063839 7.9862452651e-08
+                    1.0 1.00000011921 1.0 8.5660943985 1.88784301281 15.8335924149 3.98174870853e-09 0.55293494463 -6.97972240005e-08
+                    0.999999880791 1.0 0.999999940395 8.56609344482 1.88784205914 15.8335914612 4.82416986358e-08 0.552935123444 -3.66323206435e-07
+                    1.0 1.00000011921 1.00000011921 8.5660943985 1.88784015179 15.8335924149 -1.25159802522e-08 0.552934646606 -4.12209288925e-07
+                    1.0 0.999999880791 0.999999880791 8.56609916687 1.88784444332 15.8335914612 9.96281457333e-08 0.552934587002 -1.52980732082e-07
+                    1.00000011921 1.0 1.0 8.56610012054 1.88784193993 15.8335943222 -6.90819987881e-08 0.552935123444 -8.28438260214e-08
+                    1.0 1.00000011921 1.0 8.56610012054 1.88784098625 15.8335895538 1.20395426961e-09 0.552935183048 4.3218037149e-08
+                    0.999999940395 1.0 1.00000011921 8.56609249115 1.88784301281 15.8335943222 -4.73443435567e-08 0.55293494463 -1.83559990319e-07
+                    0.999999940395 1.0 1.0 8.56609630585 1.88784229755 15.8335895538 6.58222134575e-08 0.55293494463 4.75507668796e-08
+                    1.00000011921 1.00000011921 1.00000011921 8.56609630585 1.88784408569 15.8335914612 -7.97135015773e-08 0.55293494463 -8.01290696018e-08
+                    1.0 1.0 1.0 8.56609916687 1.88784575462 15.8335943222 -5.03583486022e-08 0.552935123444 1.70201033711e-07
+                    0.999999940395 0.999999940395 0.999999940395 8.5660982132 1.88784635067 15.8335943222 -8.38623179789e-08 0.552935063839 -7.61511813607e-08
+                    0.999999940395 1.0 0.999999940395 8.56609535217 1.88784205914 15.8335895538 -1.00355457278e-07 0.552935183048 -1.38699860486e-07
+                    1.0 1.00000011921 1.0 8.56609630585 1.88784277439 15.8335895538 -1.45002445606e-07 0.552935004234 1.04172642068e-07
+                    0.999999940395 1.0 1.0 8.56609535217 1.88784193993 15.8335914612 6.37198454001e-08 0.55293482542 6.64117862925e-08
+                    1.0 0.999999940395 0.999999880791 8.56609916687 1.88784384727 15.8335924149 7.59850919962e-08 0.552935242653 2.5064562692e-07
+                    0.999999940395 0.999999940395 1.0 8.56609535217 1.88784337044 15.8335943222 -1.60444084685e-08 0.552935004234 -5.87033639476e-08
+                    0.999999940395 0.999999940395 0.999999880791 8.5660982132 1.88784253597 15.8335924149 1.73528498237e-08 0.55293494463 -2.27288801113e-08
+                    0.999999940395 0.999999940395 0.999999940395 8.5660982132 1.88784229755 15.8335924149 2.39934383472e-08 0.552934527397 1.93994623032e-07
+                    1.0 0.999999940395 1.0 8.56609916687 1.88784313202 15.8335914612 1.91417708351e-08 0.55293482542 2.65631108221e-08
+                    1.0 0.999999940395 0.999999940395 8.56610012054 1.88784301281 15.8335924149 -1.20031238282e-08 0.552935183048 5.84118780012e-08
+                    0.999999940395 1.00000011921 0.999999940395 8.56609535217 1.88784384727 15.8335924149 2.7338441555e-07 0.552935004234 -1.50305481839e-07
+                    1.0 1.00000011921 1.00000011921 8.56609916687 1.88784205914 15.8335943222 8.48215861993e-08 0.552935004234 1.45746469116e-07
+                    1.00000011921 1.00000023842 1.0 8.56609916687 1.88784337044 15.8335943222 2.63811017476e-07 0.552934885025 2.10467714368e-08
+                    1.0 1.0 1.0 8.56610012054 1.88784384727 15.8335914612 1.99549887725e-07 0.552935004234 -4.56662263559e-09
+                    1.0 1.00000011921 1.00000011921 8.5660982132 1.88784122467 15.8335943222 -1.20046465213e-07 0.552934885025 -1.95515383439e-07
+                    1.00000011921 1.00000011921 1.0 8.56609535217 1.88784062862 15.8335924149 -1.07571388241e-07 0.552935123444 -3.34920642331e-08
+                    1.0 1.00000011921 1.00000011921 8.5660982132 1.88784301281 15.8335943222 5.38178523968e-09 0.552935123444 1.28216655071e-07
+                    0.999999880791 1.0 0.999999940395 8.5660982132 1.88784229755 15.8335924149 -5.94351483585e-08 0.552935123444 1.28782588149e-07
+                    1.0 1.0 0.999999940395 8.5660982132 1.88784205914 15.8335914612 -7.67142882552e-09 0.55293494463 1.77125691891e-08
+                    0.999999940395 1.0 0.999999940395 8.56609630585 1.88784337044 15.8335924149 1.39613396399e-08 0.55293494463 1.92654283637e-08
+                    1.00000011921 1.0 1.00000011921 8.5660943985 1.88784313202 15.8335924149 -3.50876696587e-08 0.552934885025 -8.02835202762e-08
+                    1.00000011921 1.0 1.00000011921 8.5660943985 1.88784313202 15.8335924149 -3.50876696587e-08 0.552934885025 -8.02835202762e-08
+                    1.00000011921 1.0 1.00000011921 8.5660943985 1.88784313202 15.8335924149 -3.50876696587e-08 0.552934885025 -8.02835202762e-08
+                  }
+                }
+              }
+            }
+          }
+        }
+      }
+      <Table> Bone.022 {
+        <Xfm$Anim> xform {
+          <Scalar> fps { 15 }
+          <Scalar> order { sprht }
+          <Scalar> contents { ijkprhxyz }
+          <V> {
+            0.997839570045 0.997839570045 0.99783962965 26.9453792572 22.3639125824 10.9465017319 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839570045 26.8859615326 22.1504707336 10.3819675446 0.256791830063 0.559679985046 1.35047888756
+            0.997839450836 0.997839570045 0.997839510441 26.721578598 21.5058917999 8.69179916382 0.256791830063 0.559679985046 1.35047888756
+            0.997839391232 0.997839391232 0.997839391232 26.5012683868 20.4594764709 5.98990345001 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839450836 26.2985687256 19.1129074097 2.57588219643 0.256791830063 0.559679985046 1.35047888756
+            0.997839570045 0.997839570045 0.99783962965 26.1763801575 17.6487560272 -1.07570588589 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.997839510441 26.1509342194 16.289100647 -4.42833709717 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839450836 26.1887683868 15.2234668732 -7.04078054428 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.997839510441 26.2374172211 14.5628995895 -8.65709400177 0.256791830063 0.559679985046 1.35047888756
+            0.997839570045 0.997839510441 0.997839570045 26.2578315735 14.3434362411 -9.19393825531 0.256791830063 0.559679985046 1.35047888756
+            0.997839450836 0.997839510441 0.997839510441 26.24177742 14.5140428543 -8.77661895752 0.256791830063 0.559679985046 1.35047888756
+            0.997839570045 0.997839510441 0.997839510441 26.2010993958 15.029047966 -7.51666069031 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839510441 26.1597900391 15.8715391159 -5.45320081711 0.256791830063 0.559679985046 1.35047888756
+            0.99783962965 0.99783962965 0.99783962965 26.1535434723 16.9822635651 -2.72288894653 0.256791830063 0.559679985046 1.35047888756
+            0.997839450836 0.997839510441 0.997839510441 26.2146282196 18.2510185242 0.419765114784 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839450836 26.3519706726 19.529882431 3.62618708611 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839570045 26.5409870148 20.6691608429 6.5272808075 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839391232 26.7333202362 21.5548000336 8.81915092468 0.256791830063 0.559679985046 1.35047888756
+            0.997839450836 0.997839450836 0.997839450836 26.8787822723 22.1239871979 10.3120393753 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839450836 26.9434871674 22.3572559357 10.9288539886 0.256791830063 0.559679985046 1.35047888756
+            0.997839450836 0.997839510441 0.997839450836 26.945400238 22.3638916016 10.6132192612 0.256791830063 0.559679985046 1.35047888756
+            0.997839450836 0.997839510441 0.997839450836 26.9455814362 22.3637218475 9.43030738831 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839450836 26.9459819794 22.3633556366 7.60026931763 0.256791830063 0.559679985046 1.35047888756
+            0.997839331627 0.997839450836 0.997839331627 26.9466094971 22.3628196716 5.25894784927 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839570045 26.9474391937 22.3621616364 2.49561071396 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839510441 26.948431015 22.3614559174 -0.626767098904 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839450836 26.9495182037 22.3607730865 -4.06121778488 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.997839510441 26.9505996704 22.3602085114 -7.77148485184 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839510441 26.9514503479 22.3599014282 -11.7300052643 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839450836 26.9515380859 22.3601531982 -15.9198789597 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.997839450836 26.945394516 22.3639335632 -20.3493881226 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839510441 26.945432663 22.3655967712 -5.68671226501 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839510441 26.949546814 22.3618164063 -3.94108462334 0.256791830063 0.559679985046 1.35047888756
+            0.997839450836 0.997839570045 0.997839510441 26.9510803223 22.3601055145 -1.97046482563 0.256791830063 0.559679985046 1.35047888756
+            0.997839450836 0.997839510441 0.997839510441 26.9513626099 22.3594455719 0.0995975807309 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839510441 26.9508953094 22.3594779968 2.2295923233 0.256791830063 0.559679985046 1.35047888756
+            0.997839450836 0.997839510441 0.997839510441 26.9499168396 22.36003685 4.39955329895 0.256791830063 0.559679985046 1.35047888756
+            0.997839570045 0.997839510441 0.997839510441 26.9485778809 22.3610343933 6.59578895569 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839450836 26.9469814301 22.362405777 8.803606987 0.256791830063 0.559679985046 1.35047888756
+            0.997839570045 0.99783962965 0.99783962965 26.9453411102 22.3639583588 10.9386825562 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839689255 0.997839570045 26.9510498047 22.3621368408 12.2177324295 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839450836 26.9575481415 22.3595485687 13.5620450974 0.256791830063 0.559679985046 1.35047888756
+            0.997839570045 0.997839450836 0.997839510441 26.9640960693 22.3562526703 14.7928514481 0.256791830063 0.559679985046 1.35047888756
+            0.997839570045 0.997839450836 0.997839510441 26.9705142975 22.3522968292 15.8650932312 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839510441 26.9763813019 22.347946167 16.6969718933 0.256791830063 0.559679985046 1.35047888756
+            0.997839450836 0.997839570045 0.997839510441 26.9798316956 22.3449325562 17.083946228 0.256791830063 0.559679985046 1.35047888756
+            0.997839570045 0.997839510441 0.997839689255 26.9453754425 22.3639125824 -32.4234313965 0.256791830063 0.559679985046 1.35047888756
+            0.997839570045 0.997839450836 0.997839510441 26.9452018738 22.3640117645 59.4372024536 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.997839570045 26.9216365814 22.4365653992 -15.2267284393 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.997839510441 26.9564800262 22.4059333801 60.9668235779 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839510441 26.9273166656 22.4708271027 -26.7384548187 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839391232 27.0228786469 22.3803329468 65.1853103638 0.256791830063 0.559679985046 1.35047888756
+            0.997839272022 0.997839391232 0.997839391232 26.9950695038 22.3373508453 -27.0438842773 0.256791830063 0.559679985046 1.35047888756
+            0.997839570045 0.997839570045 0.99783962965 26.9453792572 22.3639125824 10.9465017319 0.256791830063 0.559679985046 1.35047888756
+            0.997839570045 0.997839570045 0.99783962965 26.9453792572 22.3639125824 10.9465017319 0.256791830063 0.559679985046 1.35047888756
+            0.997839570045 0.997839570045 0.99783962965 26.9453792572 22.3639125824 10.9465017319 0.256791830063 0.559679985046 1.35047888756
+          }
+        }
+      }
+      <Table> Bone.002 {
+        <Xfm$Anim> xform {
+          <Scalar> fps { 15 }
+          <Scalar> order { sprht }
+          <Scalar> contents { ijkprhxyz }
+          <V> {
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+          }
+        }
+        <Table> Bone.003 {
+          <Xfm$Anim> xform {
+            <Scalar> fps { 15 }
+            <Scalar> order { sprht }
+            <Scalar> contents { ijkprhxyz }
+            <V> {
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+              1.0 1.0 1.0 63.2843666077 1.25407805172e-05 7.72787188907e-06 -6.56626610862e-08 0.370559424162 -1.3315067271e-08
+            }
+          }
+          <Table> Bone.004 {
+            <Xfm$Anim> xform {
+              <Scalar> fps { 15 }
+              <Scalar> order { sprht }
+              <Scalar> contents { ijkprhxyz }
+              <V> {
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+                1.0 1.0 1.00000011921 10.6086769104 -1.37744855238e-05 3.73710349777e-06 -1.31636168632e-08 0.307591825724 1.83553972022e-08
+              }
+            }
+            <Table> Bone.005 {
+              <Xfm$Anim> xform {
+                <Scalar> fps { 15 }
+                <Scalar> order { sprht }
+                <Scalar> contents { ijkprhxyz }
+                <V> {
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3074417114 -90.0944976807 134.349197388 -4.44355841012e-08 0.739777445793 8.09247069355e-08
+                }
+              }
+            }
+          }
+        }
+      }
+      <Table> Bone.006 {
+        <Xfm$Anim> xform {
+          <Scalar> fps { 15 }
+          <Scalar> order { sprht }
+          <Scalar> contents { ijkprhxyz }
+          <V> {
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791830063 0.559679985046 1.35047888756
+          }
+        }
+        <Table> Bone.007 {
+          <Xfm$Anim> xform {
+            <Scalar> fps { 15 }
+            <Scalar> order { sprht }
+            <Scalar> contents { ijkprhxyz }
+            <V> {
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -5.32270938436e-08 0.419119656086 -4.31883968588e-08
+            }
+          }
+          <Table> Bone.008 {
+            <Xfm$Anim> xform {
+              <Scalar> fps { 15 }
+              <Scalar> order { sprht }
+              <Scalar> contents { ijkprhxyz }
+              <V> {
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 -7.48956185959e-09 0.327627241611 1.02042108097e-08
+              }
+            }
+            <Table> Bone.009 {
+              <Xfm$Anim> xform {
+                <Scalar> fps { 15 }
+                <Scalar> order { sprht }
+                <Scalar> contents { ijkprhxyz }
+                <V> {
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                  1.0 1.0 0.999999880791 -2.65906906128 -74.2315826416 86.4036941528 -5.05757302705e-09 0.664869725704 4.88299143342e-08
+                }
+              }
+            }
+          }
+        }
+      }
+    }
+  }
+}
+<Table> {
+  <Bundle> run {
+    <Table> "<skeleton>" {
+      <Table> Bone {
+        <Xfm$Anim> xform {
+          <Scalar> fps { 60 }
+          <Scalar> order { sprht }
+          <Scalar> contents { ijkprhxyz }
+          <V> {
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 1.12220280811e-12 -98.8660812378 0.256791830063 0.559679985046 1.48905110359
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 3.51143662758e-11 -98.6671447754 0.256791830063 0.559679985046 1.48286032677
+            0.997839450836 0.997839510441 0.997839450836 89.9999923706 5.31982374818e-11 -98.35105896 0.256791830063 0.559679985046 1.47334885597
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 5.96182062051e-11 -98.001373291 0.256791830063 0.559679985046 1.46317970753
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 5.91586848953e-11 -97.6369857788 0.256791830063 0.559679985046 1.45295619965
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 5.51790141357e-11 -97.2662124634 0.256791830063 0.559679985046 1.4429551363
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 4.8635394323e-11 -96.8938369751 0.256791830063 0.559679985046 1.43335032463
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 4.0804391116e-11 -96.5231628418 0.256791830063 0.559679985046 1.42427647114
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 3.25528805301e-11 -96.1568069458 0.256791830063 0.559679985046 1.41585600376
+            0.997839450836 0.997839510441 0.997839450836 89.9999923706 2.45183769121e-11 -95.7971038818 0.256791830063 0.559679985046 1.40821254253
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 1.69753412715e-11 -95.4463500977 0.256791830063 0.559679985046 1.40148210526
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 1.0424070461e-11 -95.1069946289 0.256791830063 0.559679985046 1.39582288265
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 5.45862313683e-12 -94.7818756104 0.256791830063 0.559679985046 1.39142775536
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 2.3023844116e-12 -94.474395752 0.256791830063 0.559679985046 1.38854157925
+            0.99783962965 0.997839510441 0.99783962965 89.9999923706 1.21904569772e-12 -94.1889877319 0.256791830063 0.559679985046 1.3874887228
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 1.09749308166e-12 -93.910118103 0.256791830063 0.559679985046 1.38905596733
+            0.997839450836 0.997839510441 0.997839450836 89.9999923706 1.09489446589e-12 -93.6199493408 0.256791830063 0.559679985046 1.39379382133
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 1.14024566698e-12 -93.3212356567 0.256791830063 0.559679985046 1.40167713165
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 1.20487615111e-12 -93.0179672241 0.256791830063 0.559679985046 1.4125418663
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 1.17535419331e-12 -92.7154388428 0.256791830063 0.559679985046 1.42604517937
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 1.11031648285e-12 -92.4201583862 0.256791830063 0.559679985046 1.44164133072
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 1.06181589129e-12 -92.1394119263 0.256791830063 0.559679985046 1.45858967304
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 1.03706290517e-12 -91.8805618286 0.256791830063 0.559679985046 1.47600662708
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 1.0329240718e-12 -91.6501998901 0.256791830063 0.559679985046 1.49295496941
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 9.88706946176e-13 -91.4534072876 0.256791830063 0.559679985046 1.50855100155
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 9.76855315388e-13 -91.2933120728 0.256791830063 0.559679985046 1.52205431461
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 9.88343196347e-13 -91.1711120605 0.256791830063 0.559679985046 1.53291904926
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 1.00516567726e-12 -91.0863113403 0.256791830063 0.559679985046 1.54080235958
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 1.0013658739e-12 -91.0372467041 0.256791830063 0.559679985046 1.54554021358
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 1.02719189491e-12 -91.0214920044 0.256791830063 0.559679985046 1.54710745811
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 1.04629087512e-12 -91.0532684326 0.256791830063 0.559679985046 1.5454955101
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 1.02098223539e-12 -91.138053894 0.256791830063 0.559679985046 1.54119408131
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 1.04898945433e-12 -91.2644729614 0.256791830063 0.559679985046 1.53478229046
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 1.04680305223e-12 -91.4248504639 0.256791830063 0.559679985046 1.52664983273
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 1.03013821431e-12 -91.6137542725 0.256791830063 0.559679985046 1.5170725584
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 1.07259427035e-12 -91.8272094727 0.256791830063 0.559679985046 1.5062533617
+            0.997839450836 0.997839510441 0.997839450836 89.9999923706 1.06078275504e-12 -92.0622253418 0.256791830063 0.559679985046 1.49434494972
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 1.0387351786e-12 -92.3165054321 0.256791830063 0.559679985046 1.4814645052
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 1.16103372576e-12 -92.5883178711 0.256791830063 0.559679985046 1.46770179272
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 1.08328558797e-12 -92.8763580322 0.256791830063 0.559679985046 1.45312488079
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 1.11046946378e-12 -93.1797332764 0.256791830063 0.559679985046 1.43778264523
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 1.10033683554e-12 -93.4980239868 0.256791830063 0.559679985046 1.42170441151
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 1.04978233138e-12 -93.8314590454 0.256791830063 0.559679985046 1.40489685535
+            0.997839450836 0.997839510441 0.997839450836 89.9999923706 1.07330333857e-12 -94.1813659668 0.256791830063 0.559679985046 1.38749027252
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 1.29669864256e-12 -94.510635376 0.256791830063 0.559679985046 1.39435887337
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 1.08560480484e-12 -94.8398895264 0.256791830063 0.559679985046 1.40148413181
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 1.14080739213e-12 -95.1667404175 0.256791830063 0.559679985046 1.40857231617
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 1.27393885371e-12 -95.4911346436 0.256791830063 0.559679985046 1.41561460495
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 1.09634577892e-12 -95.8129196167 0.256791830063 0.559679985046 1.4226051569
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 1.1590068098e-12 -96.1318588257 0.256791830063 0.559679985046 1.42953717709
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 1.13071412042e-12 -96.4476242065 0.256791830063 0.559679985046 1.43640303612
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 1.14828838712e-12 -96.7597885132 0.256791830063 0.559679985046 1.4431926012
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 1.16345236396e-12 -97.0677490234 0.256791830063 0.559679985046 1.4498925209
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 1.19378552182e-12 -97.3706817627 0.256791830063 0.559679985046 1.45648491383
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 1.3513952327e-12 -97.6674041748 0.256791830063 0.559679985046 1.46294355392
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 1.04024178594e-12 -97.9561157227 0.256791830063 0.559679985046 1.46922945976
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 1.13174920824e-12 -98.2338638306 0.256791830063 0.559679985046 1.47527778149
+            0.99783962965 0.997839510441 0.99783962965 89.9999923706 1.15389392919e-12 -98.4950637817 0.256791830063 0.559679985046 1.48096728325
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 1.29636991246e-12 -98.7264709473 0.256791830063 0.559679985046 1.48600888252
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 1.12220280811e-12 -98.8660812378 0.256791830063 0.559679985046 1.48905110359
+          }
+        }
+        <Table> Bone.001 {
+          <Xfm$Anim> xform {
+            <Scalar> fps { 60 }
+            <Scalar> order { sprht }
+            <Scalar> contents { ijkprhxyz }
+            <V> {
+              1.0 1.0 1.0 -2.23238639592e-05 177.336227417 -1.03749448499e-06 -8.76861676602e-08 0.520252346992 1.415495543e-08
+              1.0 1.0 1.0 -2.23238621402e-05 177.336227417 -1.03749482605e-06 5.509426515e-08 0.520252168179 -4.27667429248e-10
+              1.00000011921 0.999999940395 1.00000011921 -2.23238639592e-05 177.336227417 -1.03749448499e-06 7.50956896667e-09 0.520252168179 -7.41470496113e-11
+              1.0 1.0 1.0 -2.23238621402e-05 177.336227417 -1.03749482605e-06 -1.30874031612e-08 0.520252585411 6.87534251753e-09
+              1.0 0.999999940395 1.0 -2.23238639592e-05 177.336227417 -1.03749459868e-06 -7.08607430511e-08 0.520252406597 -1.05269961637e-08
+              1.00000011921 1.0 1.00000011921 -2.23238639592e-05 177.336227417 -1.03749471236e-06 -3.82108353847e-08 0.520252525806 -1.76130363627e-08
+              1.0 0.999999940395 1.0 -2.23238621402e-05 177.336227417 -1.03749425762e-06 1.59959778756e-08 0.520252108574 -3.56610563301e-08
+              1.0 1.0 1.0 -2.23238621402e-05 177.336227417 -1.03749448499e-06 -2.85693140256e-08 0.520252406597 -7.88229126414e-09
+              1.00000011921 1.0 1.00000011921 -2.23238621402e-05 177.336227417 -1.03749448499e-06 9.26795706846e-09 0.520252287388 -1.25356383052e-08
+              1.00000011921 1.0 1.00000011921 -2.23238639592e-05 177.336227417 -1.03749459868e-06 2.93805673124e-08 0.520252287388 -1.76949619402e-08
+              1.0 0.999999940395 1.0 -2.23238621402e-05 177.336227417 -1.03749482605e-06 1.30203225979e-08 0.520252168179 -2.82936039042e-08
+              1.0 0.999999940395 1.0 -2.23238639592e-05 177.336227417 -1.03749448499e-06 5.04798443046e-08 0.520252168179 -1.99229024389e-08
+              1.0 1.0 1.0 -2.23238603212e-05 177.336227417 -1.03749448499e-06 -3.0953164476e-09 0.520252466202 -2.1288938612e-08
+              1.00000011921 1.0 1.00000011921 -2.23238639592e-05 177.336227417 -1.03749459868e-06 -1.10875548742e-08 0.520252406597 -3.66691921272e-08
+              1.0 1.0 1.0 -2.23238621402e-05 177.336227417 -1.03749459868e-06 1.0181024912e-08 0.520252466202 -1.61673767707e-08
+              1.0 0.999999940395 1.0 -2.23238639592e-05 177.336227417 -1.03749448499e-06 -2.51174654409e-08 0.520252346992 -3.95850854318e-08
+              1.0 1.0 1.0 -2.23238639592e-05 177.336227417 -1.03749448499e-06 3.91946635148e-08 0.520252346992 -8.25681478744e-09
+              1.0 0.999999940395 1.0 -2.23238621402e-05 177.336227417 -1.03749459868e-06 -3.33479306391e-08 0.520252108574 -3.251757974e-08
+              1.00000011921 1.0 1.00000011921 -2.23238639592e-05 177.336227417 -1.0374943713e-06 -2.65842459157e-09 0.520252406597 -3.03250899947e-08
+              1.00000011921 1.0 1.00000011921 -2.23238621402e-05 177.336227417 -1.03749448499e-06 -1.60722688491e-08 0.520252406597 -1.06633046837e-09
+              1.0 0.999999940395 1.0 -2.23238639592e-05 177.336227417 -1.03749459868e-06 5.33252944024e-08 0.520252227783 -6.86957046803e-10
+              1.0 0.999999940395 1.0 -2.23238639592e-05 177.336227417 -1.0374943713e-06 -2.27889103144e-08 0.520252287388 -2.09283790298e-08
+              1.00000011921 0.999999940395 1.00000011921 -2.23238639592e-05 177.336227417 -1.03749448499e-06 -1.87114519434e-08 0.520252227783 -4.72663819195e-09
+              1.0 1.0 1.0 -2.23238621402e-05 177.336227417 -1.03749448499e-06 7.42943129239e-08 0.520252346992 -8.61366267202e-09
+              1.0 0.999999940395 1.0 -2.23238621402e-05 177.336227417 -1.03749459868e-06 -2.3541586458e-09 0.520252227783 -3.58987932714e-08
+              1.0 0.999999940395 1.0 -2.23238621402e-05 177.336227417 -1.03749448499e-06 -7.01000058001e-09 0.520252287388 -1.97558893689e-08
+              1.0 0.999999940395 1.0 -2.23238639592e-05 177.336227417 -1.03749459868e-06 -2.79500032008e-08 0.520252287388 -3.92388699311e-08
+              1.0 0.999999940395 1.0 -2.23238621402e-05 177.336227417 -1.03749448499e-06 1.27790835691e-08 0.520252346992 -8.95446294891e-09
+              1.0 1.0 1.0 -2.23238603212e-05 177.336227417 -1.03749459868e-06 8.43457215183e-09 0.520252227783 -1.03025428189e-08
+              0.999999940395 0.999999940395 0.999999940395 -2.23238639592e-05 177.336227417 -1.03749459868e-06 5.64781075241e-08 0.520252168179 -8.68961880229e-09
+              1.0 1.0 1.0 -2.23238621402e-05 177.336227417 -1.03749459868e-06 1.24211041452e-08 0.520252227783 -1.81239840913e-08
+              1.0 1.0 1.0 -2.23238621402e-05 177.336227417 -1.03749459868e-06 7.63750023225e-08 0.520252585411 -8.22019696756e-09
+              1.0 1.0 1.0 -2.23238621402e-05 177.336227417 -1.03749448499e-06 -2.83304473214e-08 0.520252406597 -2.14442241742e-08
+              1.0 1.0 1.0 -2.23238639592e-05 177.336227417 -1.03749471236e-06 -1.95995468744e-08 0.520252346992 -2.3507451985e-08
+              1.0 0.999999940395 1.0 -2.23238621402e-05 177.336227417 -1.03749448499e-06 2.30204157958e-08 0.520252346992 -1.45514249539e-08
+              1.0 0.999999940395 1.0 -2.23238621402e-05 177.336227417 -1.03749459868e-06 -2.5282517413e-08 0.520252168179 -2.2033054492e-08
+              1.0 0.999999940395 1.0 -2.23238657782e-05 177.336227417 -1.03749448499e-06 -1.22938947911e-08 0.520252108574 -2.78691416611e-08
+              1.0 0.999999940395 1.0 -2.23238639592e-05 177.336227417 -1.03749459868e-06 -4.403507603e-08 0.520252346992 -2.95680351314e-08
+              1.0 1.0 1.0 -2.23238621402e-05 177.336227417 -1.03749459868e-06 6.25225760054e-10 0.520252346992 -1.12739613201e-08
+              1.0 1.0 1.0 -2.23238603212e-05 177.336227417 -1.03749471236e-06 9.68397131373e-08 0.520252525806 3.62915164587e-09
+              1.0 1.0 1.0 -2.23238621402e-05 177.336227417 -1.03749482605e-06 3.29600453597e-08 0.520252406597 -4.7101118561e-09
+              1.00000011921 0.999999940395 1.00000011921 -2.23238657782e-05 177.336227417 -1.03749459868e-06 3.40104122643e-09 0.520252346992 -2.92761530574e-08
+              1.0 1.0 1.0 -2.23238639592e-05 177.336227417 -1.03749459868e-06 2.30895231823e-08 0.520252406597 -2.05243768647e-08
+              1.0 0.999999940395 1.0 -2.23238639592e-05 177.336227417 -1.03749471236e-06 3.31949969734e-08 0.520252287388 -2.35279635774e-08
+              1.0 1.0 1.0 -2.23238621402e-05 177.336227417 -1.03749448499e-06 -7.07396985433e-09 0.520252346992 -1.21280887555e-08
+              1.0 1.0 1.0 -2.23238621402e-05 177.336227417 -1.03749448499e-06 6.1924394501e-09 0.520252406597 -5.43767253447e-09
+              1.00000011921 1.0 1.00000011921 -2.23238621402e-05 177.336227417 -1.03749448499e-06 2.12319992698e-08 0.520252346992 -1.97170653138e-08
+              1.0 0.999999940395 1.0 -2.23238639592e-05 177.336227417 -1.0374943713e-06 -1.0478218293e-08 0.520252227783 -1.40038087793e-08
+              1.00000011921 1.0 1.00000011921 -2.23238621402e-05 177.336227417 -1.03749482605e-06 5.18502325519e-08 0.520252346992 -7.4582491294e-09
+              1.0 0.999999940395 1.0 -2.23238639592e-05 177.336227417 -1.0374943713e-06 1.0661892702e-08 0.520252227783 -1.69368536973e-08
+              1.0 0.999999940395 1.0 -2.23238621402e-05 177.336227417 -1.03749482605e-06 1.16526077676e-08 0.520252287388 -9.82431558327e-09
+              1.0 1.0 1.0 -2.23238621402e-05 177.336227417 -1.03749459868e-06 -2.00420728902e-08 0.520252346992 -6.34703001268e-09
+              1.0 1.0 1.0 -2.23238621402e-05 177.336227417 -1.03749471236e-06 -5.59217241403e-08 0.520252406597 -2.33356889368e-08
+              1.0 1.0 1.0 -2.23238621402e-05 177.336227417 -1.03749471236e-06 4.04022681977e-09 0.520252406597 -1.6144663384e-10
+              1.0 0.999999940395 1.0 -2.23238639592e-05 177.336227417 -1.0374943713e-06 -5.1890236108e-08 0.520252287388 -2.3599699972e-08
+              1.0 1.0 1.0 -2.23238621402e-05 177.336227417 -1.03749459868e-06 -3.80768661046e-08 0.520252227783 9.59944901346e-10
+              1.00000011921 1.0 1.00000011921 -2.23238621402e-05 177.336227417 -1.03749448499e-06 7.66015428866e-09 0.520252525806 -1.0872468259e-08
+              1.0 0.999999940395 1.0 -2.23238621402e-05 177.336227417 -1.03749448499e-06 -4.53973889591e-08 0.520252108574 2.67187183489e-09
+              1.00000011921 1.0 1.00000011921 -2.23238621402e-05 177.336227417 -1.0374943713e-06 -7.88676715047e-08 0.520252525806 -1.00037693684e-08
+              1.0 1.0 1.0 -0.00686511304229 177.34437561 -0.00895921885967 -8.76861676602e-08 0.520252346992 1.415495543e-08
+            }
+          }
+          <Table> Bone.012 {
+            <Xfm$Anim> xform {
+              <Scalar> fps { 60 }
+              <Scalar> order { sprht }
+              <Scalar> contents { ijkprhxyz }
+              <V> {
+                0.999999940395 1.0 1.00000011921 -101.247306824 1.46588170528 0.335548877716 8.75800143518e-09 0.659965455532 -3.11861292346e-08
+                0.999999940395 0.999999940395 1.0 -101.247390747 0.518851935863 0.458041787148 -6.95539412732e-08 0.6599650383 -2.66571564822e-08
+                1.00000011921 1.00000011921 1.00000011921 -101.251556396 -0.27905228734 0.494072079659 -4.22369303976e-08 0.659965217113 -7.16213399699e-09
+                1.0 0.999999940395 1.0 -101.256752014 -1.03358447552 0.502948880196 -9.01379748619e-10 0.659965276718 -2.38950921272e-08
+                1.0 1.0 1.00000011921 -101.262245178 -1.76869785786 0.498073786497 -6.34272367961e-08 0.659965455532 -5.42852340857e-08
+                1.0 1.0 1.0 -101.267784119 -2.49491930008 0.485236436129 -3.77414473007e-08 0.659965217113 -2.94272357593e-08
+                1.00000023842 1.00000011921 1.00000011921 -101.273178101 -3.21829771996 0.467650562525 -1.12203881741e-08 0.659965455532 -1.64239182254e-08
+                1.0 1.0 1.00000011921 -101.278388977 -3.94298577309 0.447400897741 -5.88681849933e-08 0.659965515137 -3.1392211497e-08
+                1.00000011921 1.0 1.0 -101.283370972 -4.67226791382 0.426013112068 -5.48831842195e-08 0.659965097904 -2.37918840185e-08
+                1.00000011921 1.00000011921 1.00000011921 -101.288139343 -5.40904855728 0.404725164175 5.07987829579e-09 0.659965395927 -1.95913543166e-08
+                0.999999940395 1.0 0.999999940395 -101.292724609 -6.15619516373 0.38464692235 -3.85762248811e-08 0.659965157509 -3.2362006408e-08
+                1.0 1.0 1.0 -101.297180176 -6.91675949097 0.36686488986 -1.04753139496e-08 0.659965097904 -5.26149932512e-08
+                1.00000011921 1.0 1.00000011921 -101.301589966 -7.69423961639 0.352540344 -6.88153605211e-08 0.659965395927 -2.97791640236e-08
+                1.0 1.0 1.0 -101.306121826 -8.49289035797 0.343010097742 4.11800300526e-08 0.659965276718 -4.05526350278e-08
+                1.0 1.0 0.999999940395 -101.310935974 -9.31818962097 0.339931041002 -3.94454886532e-08 0.659965157509 -3.06468201927e-08
+                0.999999940395 1.0 0.999999880791 -101.316360474 -10.2171230316 0.340851664543 -1.87586035594e-08 0.659964978695 -4.11457214966e-08
+                1.0 1.0 1.0 -101.322486877 -11.2291707993 0.341995358467 4.36474856258e-08 0.659965217113 -1.21094938521e-08
+                1.0 1.00000011921 1.00000011921 -101.329315186 -12.345416069 0.343391060829 -2.96621394114e-08 0.659965455532 -4.52758008862e-08
+                1.0 1.00000011921 1.00000011921 -101.336738586 -13.5496959686 0.345056712627 -7.40125116749e-09 0.659965574741 -1.81579835612e-08
+                1.0 1.0 1.0 -101.34463501 -14.8172569275 0.346993565559 1.7525648488e-08 0.659965217113 -1.43762353133e-08
+                1.00000011921 1.00000011921 1.0 -101.352806091 -16.1145248413 0.349174767733 -3.0774224058e-08 0.659965217113 -1.99872722817e-08
+                1.0 1.00000011921 1.00000011921 -101.361022949 -17.4005908966 0.351542651653 -1.14800693396e-08 0.659965515137 -2.47318201474e-08
+                1.0 1.0 1.0 -101.368988037 -18.630695343 0.354005813599 -4.99626029438e-09 0.659965097904 -1.95544718196e-08
+                1.0 1.00000011921 1.00000011921 -101.376411438 -19.7611522675 0.356445431709 -1.27375479053e-08 0.659965217113 -4.23453272447e-09
+                1.0 1.0 0.999999940395 -101.383018494 -20.7543506622 0.358732312918 -5.47589085187e-09 0.659965097904 -1.86308550809e-08
+                1.0 1.0 0.999999940395 -101.38860321 -21.5823116302 0.360745429993 3.50157502993e-09 0.659965276718 1.52349399762e-09
+                0.999999940395 1.0 1.0 -101.392982483 -22.227973938 0.362383842468 -3.34908012434e-09 0.659965217113 -2.46536142612e-08
+                1.0 1.0 0.999999940395 -101.396118164 -22.6844291687 0.363579392433 6.37748058807e-08 0.659965336323 -1.04007176205e-08
+                1.0 1.00000011921 1.00000011921 -101.397964478 -22.9528865814 0.364297330379 1.10905631345e-08 0.659965634346 -2.8018238396e-08
+                1.0 1.00000011921 1.00000011921 -101.398574829 -23.0402030945 0.364533603191 3.47472308704e-08 0.659965455532 -3.31985923196e-08
+                1.00000011921 1.00000023842 1.00000011921 -101.397850037 -22.935874939 0.364251792431 -7.78802977663e-09 0.659965574741 -2.62276724783e-08
+                1.0 1.0 1.0 -101.395645142 -22.6154384613 0.363397419453 8.2791400402e-09 0.659965217113 -2.30282051206e-08
+                1.0 1.0 1.00000011921 -101.391921997 -22.0720462799 0.361982643604 -9.08035033831e-08 0.659965276718 -2.15888924515e-08
+                1.00000011921 1.00000011921 1.00000011921 -101.386734009 -21.3073825836 0.360066354275 -4.79094275363e-08 0.659965515137 -1.86786515144e-08
+                1.00000011921 1.00000011921 1.00000011921 -101.380218506 -20.335111618 0.357751011848 1.96463600943e-09 0.659965276718 -1.18085186074e-08
+                1.00000023842 1.0 1.00000011921 -101.372612 -19.1833839417 0.355177938938 -7.12594472319e-09 0.659965932369 -1.86309030425e-08
+                1.0 1.00000011921 1.00000011921 -101.364212036 -17.8948822021 0.352510541677 -5.52074261861e-08 0.659965693951 -1.52809338516e-08
+                1.0 1.00000011921 1.0 -101.355415344 -16.5233402252 0.349906682968 -4.3605457023e-08 0.659965157509 -1.95552942728e-08
+                1.0 1.0 1.00000011921 -101.346572876 -15.1269979477 0.347497075796 -7.65674368353e-09 0.659965574741 -2.63724402316e-08
+                1.00000011921 1.00000011921 1.0 -101.338050842 -13.7610692978 0.345368146896 -5.01363395244e-09 0.659965455532 -1.85730737456e-08
+                1.00000011921 1.00000011921 1.00000011921 -101.330085754 -12.4716272354 0.34355905652 -3.60214826856e-08 0.659965395927 -1.4708153806e-08
+                1.0 1.0 0.999999940395 -101.322875977 -11.2926177979 0.342071801424 3.79594951028e-08 0.659965217113 -2.35819985761e-08
+                1.0 1.0 1.00000011921 -101.31652832 -10.2457761765 0.3408831954 -8.00032822212e-08 0.659965634346 -4.30273132679e-08
+                1.00000011921 1.00000023842 1.00000023842 -101.311073303 -9.342461586 0.339955210686 -3.48598341304e-08 0.659965336323 -3.30325207187e-08
+                1.0 1.0 1.00000011921 -101.306503296 -8.52286243439 0.339223831892 3.41039942953e-08 0.659965574741 -4.27879989218e-08
+                1.00000011921 1.0 1.00000011921 -101.302627563 -7.71558141708 0.338626563549 2.93090085535e-09 0.659965276718 -2.53321044141e-08
+                1.0 1.0 0.999999940395 -101.299331665 -6.92015695572 0.338134676218 1.88679827318e-08 0.659965276718 -1.45080747416e-08
+                0.999999940395 1.0 1.00000011921 -101.296470642 -6.13649272919 0.33772584796 -4.31727542605e-08 0.659965574741 -2.71826881004e-08
+                0.999999940395 1.0 1.00000011921 -101.293968201 -5.36480522156 0.337383061647 7.9419208987e-09 0.659965574741 -3.14804040613e-08
+                1.00000011921 1.00000011921 1.0 -101.291717529 -4.60560178757 0.337092131376 -1.6555022242e-08 0.659965217113 -2.8968230481e-08
+                1.0 1.00000011921 0.999999940395 -101.289634705 -3.85973358154 0.336842805147 1.51609729215e-08 0.659965097904 -1.5447694679e-08
+                1.0 1.0 1.00000011921 -101.287620544 -3.12844872475 0.336626261473 -6.18360331828e-08 0.659965574741 -2.4501021656e-08
+                1.0 1.0 1.0 -101.285583496 -2.41354894638 0.336435735226 1.65412039621e-08 0.659965097904 -2.54438781155e-08
+                1.00000011921 1.00000011921 1.00000011921 -101.283409119 -1.71758699417 0.336267262697 -5.34127302387e-08 0.659965157509 -1.20478755861e-08
+                0.999999940395 1.0 1.0 -101.280929565 -1.04428255558 0.336117327213 -9.91553594787e-09 0.659965097904 -2.37371704515e-08
+                1.0 1.0 1.00000011921 -101.277954102 -0.399283379316 0.335984319448 -4.09545775071e-09 0.659965455532 -3.54138833814e-08
+                1.00000011921 1.0 1.00000011921 -101.274169922 0.208235606551 0.335868000984 -2.75877241052e-08 0.659965515137 -1.73402625592e-08
+                1.00000011921 1.0 1.0 -101.269020081 0.761624693871 0.335767686367 -7.47627382225e-08 0.6599650383 -3.12386561063e-08
+                1.0 1.0 1.0 -101.261291504 1.22408127785 0.335677534342 -1.53956012383e-08 0.659965276718 -7.38217531548e-09
+                1.00000011921 1.00000011921 1.00000023842 -101.239372253 1.4615752697 0.334864199162 -4.8294083399e-08 0.659965574741 -1.40882372435e-08
+              }
+            }
+            <Table> Bone.015 {
+              <Xfm$Anim> xform {
+                <Scalar> fps { 60 }
+                <Scalar> order { sprht }
+                <Scalar> contents { ijkprhxyz }
+                <V> {
+                  1.0 1.0 0.999999940395 -13.3623580933 59.6822357178 55.4170227051 2.17119655588e-08 0.492759853601 3.22665520969e-08
+                  0.999999940395 1.0 0.999999940395 -13.4925861359 59.5088348389 55.6915550232 -5.43036975387e-08 0.492759734392 -1.3102550156e-07
+                  1.0 1.00000011921 0.999999940395 -13.9978485107 59.1812591553 55.7564163208 1.52306220969e-08 0.492759793997 4.57326478909e-08
+                  0.999999880791 1.0 0.999999880791 -14.6190452576 58.8066444397 55.7712211609 1.70911604869e-08 0.492759764194 -8.72378649319e-08
+                  1.00000011921 1.00000011921 1.0 -15.2982168198 58.4087257385 55.7715339661 -2.60838248778e-08 0.492759764194 -1.8528250223e-07
+                  1.00000011921 1.00000011921 1.0 -16.0108337402 57.9977989197 55.7727203369 -5.61168391755e-08 0.492759793997 2.60757673232e-08
+                  1.00000011921 1.0 1.00000011921 -16.743927002 57.5797462463 55.7833900452 -5.92571396396e-08 0.492759764194 1.93006073346e-08
+                  0.999999940395 1.00000011921 1.0 -17.4897861481 57.1585235596 55.8090667725 -2.2302081959e-08 0.492759764194 -1.55094795673e-07
+                  1.00000011921 1.00000023842 1.0 -18.2434444427 56.7372398376 55.8539657593 -2.28922711898e-08 0.492759823799 -5.21759915273e-08
+                  1.0 1.0 0.999999880791 -19.0015926361 56.3185310364 55.921497345 -1.09877236198e-08 0.49275970459 8.05254174452e-08
+                  1.00000011921 1.00000011921 0.999999940395 -19.7619056702 55.9049453735 56.0149497986 -1.00493791066e-09 0.492759764194 1.67692732589e-07
+                  1.0 1.00000011921 0.999999940395 -20.5227184296 55.4990997314 56.1376991272 3.06845571174e-08 0.492759764194 1.70985956061e-07
+                  0.999999880791 0.999999940395 0.999999940395 -21.2827720642 55.10389328 56.2936096191 -5.35431343707e-09 0.492759793997 8.74897665426e-09
+                  0.999999880791 0.999999940395 0.999999821186 -22.0410442352 54.7227668762 56.4874801636 4.71195207297e-08 0.492759823799 -2.09971972254e-07
+                  1.00000011921 1.0 1.0 -22.7966251373 54.3600082397 56.725605011 1.59866093696e-08 0.492759853601 -1.90543687495e-07
+                  1.0 1.0 1.0 -23.5364704132 54.0189857483 57.1198234558 1.27621175849e-08 0.49275970459 1.02323355122e-07
+                  1.0 1.00000011921 0.999999940395 -24.2471351624 53.7033920288 57.7759628296 -3.25998037454e-08 0.49275970459 1.35927340494e-08
+                  0.999999940395 1.00000011921 0.999999821186 -24.9257965088 53.4188194275 58.6863594055 -6.91258605912e-08 0.49275970459 -5.3911062281e-08
+                  1.0 1.0 1.0 -25.5675849915 53.1704025269 59.8322105408 4.79949164855e-08 0.492759764194 -5.53287691218e-08
+                  1.00000011921 1.00000011921 1.0 -26.1659011841 52.9621734619 61.180305481 -4.84348063878e-08 0.492759793997 3.96090236165e-08
+                  1.0 1.0 0.999999940395 -26.712846756 52.7962684631 62.6812477112 -4.33470432881e-08 0.492759764194 -2.39460788976e-08
+                  1.0 1.0 1.0 -27.2004489899 52.672290802 64.2703475952 -6.04414225336e-08 0.492759793997 1.76575895239e-07
+                  0.999999940395 1.0 1.0 -27.6220989227 52.5870666504 65.8721618652 -1.62675506399e-09 0.49275970459 7.93322598724e-08
+                  1.00000011921 1.00000011921 0.999999940395 -27.973941803 52.53490448 67.408164978 6.86163659225e-09 0.492759793997 1.37361269026e-08
+                  1.00000011921 1.00000011921 0.999999940395 -28.2556724548 52.5084877014 68.805557251 -2.26363905398e-08 0.492759764194 8.56366710877e-08
+                  1.0 1.0 1.0 -28.4704914093 52.4999847412 70.0046386719 -4.79518753593e-08 0.492759793997 8.14163030327e-08
+                  1.00000011921 1.00000011921 1.00000011921 -28.6243190765 52.5020523071 70.9625701904 -3.45287922698e-08 0.492759764194 -1.2961076834e-07
+                  1.0 1.00000011921 0.999999940395 -28.7246131897 52.5085601807 71.6537246704 -8.66881855188e-09 0.492759734392 1.89521131233e-07
+                  1.00000011921 1.00000011921 1.00000011921 -28.7793140411 52.5147743225 72.067276001 -4.42060859029e-08 0.492759793997 -2.02465770371e-07
+                  1.00000011921 1.0 0.999999880791 -28.7959957123 52.5173797607 72.2036209106 5.34941158037e-08 0.492759793997 3.7009482412e-07
+                  1.00000011921 1.0 0.999999940395 -28.774187088 52.5158920288 72.0454406738 -1.12833880905e-07 0.492759793997 5.99144627245e-08
+                  1.00000011921 1.0 0.999999880791 -28.7032623291 52.5133476257 71.565864563 4.86105626862e-08 0.492759734392 1.05606183354e-07
+                  1.00000011921 1.0 0.999999940395 -28.5745773315 52.5137405396 70.7659988403 -4.08013605124e-08 0.492759764194 3.95575113998e-07
+                  1.0 1.0 1.0 -28.3795547485 52.5227279663 69.6626739502 7.31462819203e-08 0.492759734392 7.1883150099e-08
+                  1.0 1.00000011921 0.999999880791 -28.1109771729 52.5475349426 68.2932510376 -4.11223304297e-08 0.492759823799 1.42172513762e-08
+                  1.00000011921 1.00000011921 1.00000011921 -27.7645149231 52.5964241028 66.7182540894 1.24251720024e-08 0.492759823799 2.59357307186e-07
+                  1.0 1.0 0.999999940395 -27.3399562836 52.677570343 65.0194549561 3.53184148594e-08 0.492759793997 6.77954545836e-08
+                  1.00000011921 1.00000011921 0.999999940395 -26.8417701721 52.7976875305 63.2923431396 3.67471777452e-08 0.492759764194 2.72464774298e-07
+                  1.00000011921 1.0 0.999999940395 -26.2783031464 52.9607505798 61.6342430115 -6.82470080449e-09 0.492759793997 -1.99013229008e-07
+                  1.00000011921 1.00000011921 0.999999940395 -25.6600170135 53.1673812866 60.1321525574 -1.02833432436e-07 0.492759793997 2.13425465745e-07
+                  0.999999940395 1.00000011921 0.999999880791 -24.9973869324 53.4150390625 58.8542709351 2.0474946183e-08 0.492759793997 2.34927682641e-07
+                  1.0 1.0 0.999999880791 -24.2992305756 53.6988601685 57.8469543457 -2.97300637442e-08 0.492759734392 1.92408236899e-07
+                  1.0 0.999999940395 0.999999940395 -23.571893692 54.012676239 57.1363563538 -5.29658024107e-08 0.492759823799 -1.56495460146e-07
+                  1.0 1.00000011921 1.0 -22.8190746307 54.3498344421 56.7327880859 3.09495651329e-09 0.492759823799 1.67538942719e-07
+                  1.00000011921 1.00000011921 1.0 -22.1300086975 54.7193946838 56.4761810303 2.05776089501e-08 0.492759764194 -2.96070822969e-07
+                  1.00000023842 1.00000023842 1.00000011921 -21.5833854675 55.1297264099 56.1913871765 1.45662371054e-08 0.492759764194 1.70564234736e-07
+                  1.00000011921 1.00000011921 0.999999940395 -21.1530990601 55.5715370178 55.8851394653 -6.21576958793e-08 0.492759853601 -1.29198824084e-07
+                  1.0 1.0 0.999999940395 -20.8172798157 56.0369338989 55.5633811951 -4.09736955476e-09 0.492759793997 -5.60575408315e-08
+                  1.0 1.0 0.999999880791 -20.5567321777 56.5188713074 55.2316703796 -3.87166636528e-08 0.492759764194 -1.3399250065e-07
+                  1.00000011921 1.00000011921 0.999999940395 -20.3534393311 57.0107727051 54.895816803 -1.25089609782e-08 0.492759764194 1.27388545934e-07
+                  1.0 1.00000011921 0.999999940395 -20.1894245148 57.5062255859 54.5624580383 -6.80722322954e-08 0.49275970459 3.6973652584e-08
+                  1.0 1.0 0.999999940395 -20.0453929901 57.9986076355 54.2397041321 -2.86149903772e-09 0.492759793997 -1.12159113996e-07
+                  1.0 1.0 1.0 -19.8992900848 58.4805603027 53.9378890991 -1.07408268946e-08 0.49275970459 2.4325933623e-07
+                  1.00000011921 1.00000023842 1.0 -19.7241039276 58.9433860779 53.6708602905 -2.6105704265e-08 0.492759793997 2.63993115368e-07
+                  0.999999880791 0.999999821186 0.999999821186 -19.4844646454 59.3759078979 53.4578971863 -9.49580822862e-08 0.492759793997 8.66973906e-08
+                  0.999999940395 0.999999940395 0.999999940395 -19.1306324005 59.7623443604 53.3271255493 -2.7067688535e-08 0.492759823799 -1.4219115485e-07
+                  1.0 1.0 0.999999940395 -18.5863723755 60.0778999329 53.3222579956 -2.39273134639e-08 0.492759793997 -1.37454165383e-07
+                  1.0 1.00000011921 0.999999940395 -17.7199039459 60.2776145935 53.5183906555 -5.93505955493e-09 0.49275970459 2.36515646179e-07
+                  1.0 1.00000011921 0.999999880791 -16.2529277802 60.2599029541 54.0700798035 -5.48975265247e-08 0.49275970459 -1.00661267766e-07
+                  1.00000011921 1.0 0.999999940395 -13.1650753021 59.6092605591 55.5635375977 -4.42692709157e-08 0.492759853601 1.88681198665e-07
+                }
+              }
+              <Table> Bone.016 {
+                <Xfm$Anim> xform {
+                  <Scalar> fps { 60 }
+                  <Scalar> order { sprht }
+                  <Scalar> contents { ijkprhxyz }
+                  <V> {
+                    1.00000011921 0.999999940395 0.999999880791 -15.3380622864 -29.9149284363 8.91687965393 -1.15990928862e-07 0.416112840176 -1.51371025936e-07
+                    1.00000011921 1.0 1.00000011921 -15.4085054398 -29.8855476379 9.03044986725 2.96096146712e-07 0.416112959385 -1.21130284469e-07
+                    0.999999940395 0.999999880791 0.999999940395 -15.4870376587 -29.8358383179 9.19823932648 8.22421810653e-08 0.416112840176 -3.1868987449e-09
+                    1.0 0.999999940395 1.0 -15.5648021698 -29.7813873291 9.37638950348 4.09952356506e-08 0.416112959385 -6.71274875685e-08
+                    1.0 0.999999940395 1.0 -15.6397504807 -29.7257385254 9.55499076843 -1.56169633669e-07 0.41611289978 -9.9474462445e-08
+                    1.0 0.999999940395 1.0 -15.7108955383 -29.6705169678 9.72949790955 -3.99506276949e-08 0.416112929583 -1.19931428344e-07
+                    1.00000011921 1.0 1.00000011921 -15.7775392532 -29.6167526245 9.89706611633 -1.32453820356e-07 0.416112840176 -1.06447380688e-07
+                    1.0 0.999999940395 0.999999880791 -15.8390607834 -29.5652332306 10.0554666519 -2.69091657401e-07 0.416112750769 8.74055245959e-08
+                    1.0 0.999999940395 1.0 -15.8948307037 -29.5166492462 10.2026929855 -1.31924110747e-07 0.416112929583 -1.62346424304e-07
+                    0.999999940395 0.999999940395 1.0 -15.944149971 -29.4717140198 10.3367023468 2.19904393362e-07 0.416113048792 -1.2619170775e-07
+                    1.0 0.999999940395 1.0 -15.986207962 -29.4311771393 10.4552431107 1.24457997686e-07 0.416112959385 8.45975520747e-08
+                    1.0 1.0 1.0 -16.0199737549 -29.3959026337 10.5557012558 2.76982774494e-07 0.416112929583 -6.55634551094e-08
+                    1.00000011921 1.00000011921 1.00000011921 -16.0442123413 -29.3669242859 10.6348714828 2.2158630486e-10 0.416112810373 -3.75501798544e-08
+                    0.999999940395 1.0 0.999999940395 -16.057264328 -29.3455352783 10.6886816025 6.70312871875e-08 0.416112929583 -2.77402278925e-08
+                    1.0 0.999999940395 0.999999940395 -16.0569152832 -29.3334255219 10.7117271423 -5.9230742977e-08 0.416113078594 -2.78728435887e-08
+                    1.00000011921 1.0 1.0 -15.9556093216 -29.3180065155 10.6383619308 -1.2342290745e-07 0.416112929583 1.50902845775e-08
+                    1.00000011921 1.00000011921 1.00000011921 -15.665769577 -29.2844371796 10.4058694839 1.29034617657e-07 0.416112959385 -1.32714291112e-07
+                    1.0 0.999999940395 1.0 -15.1894168854 -29.2308597565 10.0159101486 -2.59443936557e-07 0.416112869978 3.58871243833e-09
+                    1.00000011921 1.00000011921 1.00000011921 -14.5370264053 -29.1550865173 9.47735977173 1.01145957387e-07 0.41611289978 -1.34145935249e-07
+                    1.0 1.0 1.00000011921 -13.7299451828 -29.0552806854 8.80827617645 -1.06802758637e-07 0.416112869978 -4.38428457983e-08
+                    1.0 1.0 1.0 -12.8016757965 -28.9310836792 8.03697776794 1.22950439163e-07 0.416112869978 5.32231254624e-08
+                    1.0 1.0 1.0 -11.7972049713 -28.7846984863 7.20142459869 6.48356177635e-08 0.416112929583 -5.47613971946e-08
+                    1.00000011921 0.999999940395 1.0 -10.7696228027 -28.6216373444 6.34628725052 -2.11451606447e-07 0.416112989187 -5.32915009899e-08
+                    0.999999940395 1.0 0.999999940395 -9.77436351776 -28.4505958557 5.51811170578 9.07121275873e-08 0.416112929583 -1.77039169102e-07
+                    1.0 0.999999880791 1.0 -8.86284828186 -28.2824363708 4.75988435745 1.28293635271e-07 0.416112959385 -3.3274618616e-09
+                    1.0 1.0 1.0 -8.0771780014 -28.1285514832 4.10664796829 7.37715666332e-08 0.416112810373 2.78389400421e-09
+                    1.0 1.0 1.0 -7.4475274086 -27.9991893768 3.58337759972 -4.28321627055e-08 0.41611289978 -2.05105166629e-07
+                    1.0 1.0 1.0 -6.99211978912 -27.9022598267 3.20505738258 9.10985633595e-08 0.416112989187 -1.44549332504e-07
+                    1.0 1.0 0.999999940395 -6.71903276443 -27.8427810669 2.97824501991 1.26702088821e-08 0.416112810373 -9.40807183269e-08
+                    1.0 0.999999940395 1.0 -6.62880516052 -27.8229064941 2.90329861641 -3.11413060672e-07 0.416112869978 -2.61944155255e-08
+                    1.0 1.0 0.999999940395 -6.73202848434 -27.8456573486 2.98898720741 8.42059080242e-08 0.416112959385 -8.72701733101e-08
+                    1.0 1.00000011921 0.999999940395 -7.04444026947 -27.9136314392 3.24830150604 8.91635920652e-08 0.416112989187 -4.54644144554e-08
+                    1.00000011921 1.0 1.0 -7.5645198822 -28.0238380432 3.68011546135 -1.7405742625e-08 0.416112959385 -1.52988476998e-07
+                    1.00000011921 1.00000011921 1.0 -8.28039646149 -28.1695022583 4.27477312088 -2.09062349654e-07 0.416112929583 -3.27457314597e-08
+                    0.999999940395 0.999999880791 1.0 -9.16636657715 -28.3401756287 5.01115226746 1.02529710944e-07 0.416112840176 -9.84033263762e-08
+                    1.0 0.999999940395 1.0 -10.1808805466 -28.522726059 5.85481071472 5.58659749572e-08 0.416112929583 -8.817589503e-08
+                    1.0 1.0 1.0 -11.2676267624 -28.7032241821 6.75886011124 8.16808380932e-08 0.416112989187 2.02752516998e-08
+                    1.00000011921 0.999999880791 1.0 -12.3607177734 -28.8693656921 7.66814851761 -1.26469466011e-08 0.41611289978 -4.89690705763e-08
+                    1.0 1.00000011921 1.00000011921 -13.3930139542 -29.0124511719 8.52626991272 2.32477646023e-08 0.416112959385 -6.60225154547e-08
+                    1.0 1.0 1.00000011921 -14.3048286438 -29.1281471252 9.282954216 -5.76241419026e-08 0.416112929583 5.10478486149e-08
+                    1.0 1.0 1.0 -15.0501375198 -29.2159194946 9.89933013916 8.4913658327e-08 0.416113048792 -1.11699222316e-07
+                    1.00000011921 1.00000011921 1.00000011921 -15.5988407135 -29.2776241302 10.3499612808 1.74776655371e-08 0.41611289978 -2.79155329963e-08
+                    1.00000011921 0.999999940395 1.0 -15.9355592728 -29.3159446716 10.6218309402 1.46956367075e-08 0.416113048792 -9.63126893794e-08
+                    1.0 1.0 1.0 -16.0565891266 -29.3332176208 10.7118062973 -2.17000007297e-07 0.416112869978 -1.19371364349e-07
+                    1.00000011921 1.0 1.0 -16.0627727509 -29.3436813354 10.7066717148 -1.87799180651e-08 0.416112840176 -3.76737041563e-08
+                    1.0 1.0 1.0 -16.0650081635 -29.3612174988 10.7007236481 -7.81587701226e-08 0.416112989187 -5.88409498903e-08
+                    0.999999940395 1.0 1.0 -16.0633811951 -29.3847789764 10.6925430298 -3.92318320053e-08 0.416112959385 -4.44792824794e-08
+                    1.0 1.0 1.00000011921 -16.0578269958 -29.4135131836 10.6806650162 2.28050524242e-07 0.416112989187 -1.89591361277e-07
+                    1.0 1.0 0.999999940395 -16.0481948853 -29.4467048645 10.6636142731 8.41929264084e-08 0.41611289978 -3.60014418277e-08
+                    1.0 1.0 1.0 -16.0342178345 -29.4837627411 10.6397705078 -1.51086183564e-07 0.416112780571 -7.38401695344e-08
+                    1.0 1.00000011921 1.0 -16.0155258179 -29.5241527557 10.607301712 1.8959241288e-07 0.416112869978 -1.95546512316e-08
+                    1.0 0.999999940395 1.0 -15.9916009903 -29.5673675537 10.5640382767 -2.49842912581e-07 0.416112750769 -1.8744016117e-08
+                    0.999999940395 0.999999940395 0.999999940395 -15.9617185593 -29.6129455566 10.5072574615 2.30013498026e-07 0.416112840176 -2.01832691005e-07
+                    1.0 1.0 1.0 -15.9248828888 -29.660369873 10.433426857 -1.38309177444e-08 0.416112869978 3.73736526171e-08
+                    1.0 1.0 1.0 -15.8796539307 -29.7090759277 10.3376731873 2.56654804076e-08 0.416112929583 -1.38423118301e-07
+                    1.0 1.0 0.999999940395 -15.8238601685 -29.7583465576 10.2128763199 -2.44283654638e-07 0.41611289978 -2.77327671938e-08
+                    1.0 0.999999940395 1.00000011921 -15.753993988 -29.8071308136 10.0476980209 -2.03853915082e-07 0.416112959385 1.04488684372e-07
+                    0.999999940395 1.0 0.999999940395 -15.6637105942 -29.8536682129 9.82179737091 -2.75937210859e-08 0.416112840176 -2.40145503483e-08
+                    1.0 0.999999940395 1.00000011921 -15.5390405655 -29.8941307068 9.49040126801 5.502110767e-08 0.41611289978 -4.37510649931e-08
+                    1.00000011921 0.999999880791 1.0 -15.3225002289 -29.9038486481 8.86194133759 -2.1008131057e-07 0.416112840176 -9.25476157931e-08
+                  }
+                }
+              }
+            }
+          }
+          <Table> Bone.011 {
+            <Xfm$Anim> xform {
+              <Scalar> fps { 60 }
+              <Scalar> order { sprht }
+              <Scalar> contents { ijkprhxyz }
+              <V> {
+                0.999999940395 1.0 0.999999940395 104.185501099 25.8086872101 -0.940079510212 8.75800143518e-09 0.659965455532 -3.11861292346e-08
+                1.0 0.999999880791 0.999999880791 104.199913025 25.037519455 -0.934994101524 -6.95539412732e-08 0.6599650383 -2.66571564822e-08
+                0.999999880791 0.999999880791 0.999999940395 104.222953796 23.7940921783 -0.926243782043 -4.22369303976e-08 0.659965217113 -7.16213399699e-09
+                0.999999821186 0.999999940395 0.999999880791 104.248306274 22.3959255219 -0.916757404804 -9.01379748619e-10 0.659965276718 -2.38950921272e-08
+                0.999999940395 1.0 1.0 104.274528503 20.9142818451 -0.90733730793 -6.34272367961e-08 0.659965455532 -5.42852340857e-08
+                0.999999940395 0.999999940395 0.999999880791 104.301017761 19.3796463013 -0.898329854012 -3.77414473007e-08 0.659965217113 -2.94272357593e-08
+                0.999999940395 1.0 1.0 104.327461243 17.8086071014 -0.889908969402 -1.12203881741e-08 0.659965455532 -1.64239182254e-08
+                0.999999940395 0.999999940395 1.0 104.353683472 16.2115097046 -0.882168292999 -5.88681849933e-08 0.659965515137 -3.1392211497e-08
+                0.999999880791 0.999999821186 0.999999880791 104.379585266 14.5954418182 -0.875159680843 -5.48831842195e-08 0.659965097904 -2.37918840185e-08
+                0.999999940395 0.999999940395 1.0 104.405082703 12.9656152725 -0.868908762932 5.07987829579e-09 0.659965395927 -1.95913543166e-08
+                0.999999821186 0.999999880791 0.999999880791 104.430122375 11.3260669708 -0.86342895031 -3.85762248811e-08 0.659965157509 -3.2362006408e-08
+                0.999999880791 0.999999880791 0.999999880791 104.454666138 9.68010425568 -0.858722031116 -1.04753139496e-08 0.659965097904 -5.26149932512e-08
+                0.999999880791 0.999999940395 1.0 104.478668213 8.03056812286 -0.854786038399 -6.88153605211e-08 0.659965395927 -2.97791640236e-08
+                1.0 1.00000011921 1.0 104.502059937 6.38003492355 -0.851614117622 4.11800300526e-08 0.659965276718 -4.05526350278e-08
+                0.999999940395 0.999999880791 0.999999880791 104.524772644 4.73100471497 -0.84919834137 -3.94454886532e-08 0.659965157509 -3.06468201927e-08
+                1.0 1.0 1.0 104.548965454 2.96789002419 -0.847398400307 -1.87586035594e-08 0.659964978695 -4.11457214966e-08
+                1.0 0.999999940395 0.999999880791 104.576843262 0.97820276022 -0.846297442913 4.36474856258e-08 0.659965217113 -1.21094938521e-08
+                0.999999940395 0.999999940395 0.999999940395 104.608200073 -1.22199749947 -0.846244990826 -2.96621394114e-08 0.659965455532 -4.52758008862e-08
+                1.0 1.0 1.00000011921 104.642715454 -3.60192465782 -0.847586870193 -7.40125116749e-09 0.659965574741 -1.81579835612e-08
+                0.999999940395 0.999999880791 0.999999940395 104.679786682 -6.11312246323 -0.850612342358 1.7525648488e-08 0.659965217113 -1.43762353133e-08
+                1.0 0.999999880791 0.999999880791 104.718559265 -8.68876171112 -0.855481564999 -3.0774224058e-08 0.659965217113 -1.99872722817e-08
+                1.0 0.999999940395 1.00000011921 104.75793457 -11.2465801239 -0.862156033516 -1.14800693396e-08 0.659965515137 -2.47318201474e-08
+                1.0 1.0 1.0 104.796562195 -13.6960868835 -0.870345115662 -4.99626029438e-09 0.659965097904 -1.95544718196e-08
+                0.999999880791 0.999999880791 0.999999940395 104.833015442 -15.9488248825 -0.879513382912 -1.27375479053e-08 0.659965217113 -4.23453272447e-09
+                1.0 1.0 0.999999940395 104.865882874 -17.928691864 -0.888937950134 -5.47589085187e-09 0.659965097904 -1.86308550809e-08
+                0.999999940395 0.999999940395 0.999999880791 104.893959045 -19.5792808533 -0.897830426693 3.50157502993e-09 0.659965276718 1.52349399762e-09
+                1.0 1.0 1.0 104.91633606 -20.8663959503 -0.905451714993 -3.34908012434e-09 0.659965217113 -2.46536142612e-08
+                1.0 0.999999940395 0.999999761581 104.932426453 -21.7763404846 -0.91122174263 6.37748058807e-08 0.659965336323 -1.04007176205e-08
+                0.999999940395 0.999999940395 0.999999940395 104.942008972 -22.3115768433 -0.914770662785 1.10905631345e-08 0.659965634346 -2.8018238396e-08
+                1.00000011921 1.00000011921 1.0 104.945152283 -22.4857215881 -0.915952503681 3.47472308704e-08 0.659965455532 -3.31985923196e-08
+                1.0 1.00000011921 0.999999940395 104.941360474 -22.2779827118 -0.914527654648 -7.78802977663e-09 0.659965574741 -2.62276724783e-08
+                0.999999880791 0.999999940395 0.999999821186 104.92980957 -21.6400032043 -0.910268485546 8.2791400402e-09 0.659965217113 -2.30282051206e-08
+                1.0 0.999999880791 1.00000011921 104.910507202 -20.5580692291 -0.903424739838 -9.08035033831e-08 0.659965276718 -2.15888924515e-08
+                0.999999940395 1.0 1.0 104.883903503 -19.0352020264 -0.894554853439 -4.79094275363e-08 0.659965515137 -1.86786515144e-08
+                1.0 1.0 1.00000011921 104.850921631 -17.0983772278 -0.884494185448 1.96463600943e-09 0.659965276718 -1.18085186074e-08
+                0.999999940395 0.999999821186 1.0 104.812950134 -14.8038959503 -0.874243974686 -7.12594472319e-09 0.659965932369 -1.86309030425e-08
+                1.0 1.0 1.00000011921 104.771705627 -12.2377309799 -0.864793717861 -5.52074261861e-08 0.659965693951 -1.52809338516e-08
+                1.0 0.999999940395 0.999999761581 104.729103088 -9.50855636597 -0.85694372654 -4.3605457023e-08 0.659965157509 -1.95552942728e-08
+                0.999999821186 0.999999880791 0.999999880791 104.686943054 -6.73417520523 -0.851168513298 -7.65674368353e-09 0.659965574741 -2.63724402316e-08
+                0.999999940395 0.999999940395 0.999999940395 104.646827698 -4.02576351166 -0.847585380077 -5.01363395244e-09 0.659965455532 -1.85730737456e-08
+                0.999999880791 0.999999940395 0.999999880791 104.609931946 -1.47530019283 -0.846005022526 -3.60214826856e-08 0.659965395927 -1.4708153806e-08
+                1.0 1.0 0.999999940395 104.57711792 0.850552022457 -0.846046149731 3.79594951028e-08 0.659965217113 -2.35819985761e-08
+                0.999999940395 0.999999880791 1.00000011921 104.548851013 2.91028761864 -0.847243666649 -8.00032822212e-08 0.659965634346 -4.30273132679e-08
+                1.0 0.999999940395 1.0 104.525382996 4.68341207504 -0.849136888981 -3.48598341304e-08 0.659965336323 -3.30325207187e-08
+                0.999999940395 0.999999821186 1.0 104.50718689 6.28159809113 -0.829789102077 3.41039942953e-08 0.659965574741 -4.27879989218e-08
+                1.0 0.999999940395 1.0 104.495094299 7.8390417099 -0.771099150181 2.93090085535e-09 0.659965276718 -2.53321044141e-08
+                0.999999940395 1.0 0.999999880791 104.489364624 9.35937976837 -0.68126386404 1.88679827318e-08 0.659965276718 -1.45080747416e-08
+                1.0 0.999999880791 1.0 104.490020752 10.8451910019 -0.56721830368 -4.31727542605e-08 0.659965574741 -2.71826881004e-08
+                0.999999940395 0.999999940395 0.999999940395 104.496788025 12.2983255386 -0.435131788254 7.9419208987e-09 0.659965574741 -3.14804040613e-08
+                0.999999880791 0.999999940395 0.999999821186 104.509170532 13.7200517654 -0.290816664696 -1.6555022242e-08 0.659965217113 -2.8968230481e-08
+                1.0 1.00000011921 0.999999940395 104.526321411 15.1111278534 -0.140104100108 1.51609729215e-08 0.659965097904 -1.5447694679e-08
+                1.0 0.999999940395 1.00000011921 104.547035217 16.471830368 0.0107653085142 -6.18360331828e-08 0.659965574741 -2.4501021656e-08
+                1.0 1.00000011921 1.0 104.569618225 17.801897049 0.154638752341 1.65412039621e-08 0.659965097904 -2.54438781155e-08
+                1.0 0.999999940395 0.999999940395 104.591636658 19.1004219055 0.282727122307 -5.34127302387e-08 0.659965157509 -1.20478755861e-08
+                0.999999880791 0.999999940395 0.999999821186 104.609580994 20.3655891418 0.383433550596 -9.91553594787e-09 0.659965097904 -2.37371704515e-08
+                0.999999940395 0.999999940395 1.0 104.618179321 21.5941257477 0.440190732479 -4.09545775071e-09 0.659965455532 -3.54138833814e-08
+                1.0 0.999999940395 0.999999940395 104.608955383 22.7801113129 0.426995098591 -2.75877241052e-08 0.659965515137 -1.73402625592e-08
+                0.999999880791 0.999999880791 0.999999821186 104.566772461 23.9119300842 0.297432303429 -7.47627382225e-08 0.6599650383 -3.12386561063e-08
+                1.0 1.0 1.0 104.45891571 24.9620704651 -0.0506128892303 -1.53956012383e-08 0.659965276718 -7.38217531548e-09
+                1.0 1.0 1.0 104.110443115 25.7728347778 -1.01084768772 -4.8294083399e-08 0.659965574741 -1.40882372435e-08
+              }
+            }
+            <Table> Bone.013 {
+              <Xfm$Anim> xform {
+                <Scalar> fps { 60 }
+                <Scalar> order { sprht }
+                <Scalar> contents { ijkprhxyz }
+                <V> {
+                  1.00000023842 1.00000011921 1.00000011921 39.6972732544 -11.7612667084 -26.0583686829 -5.34938706664e-08 0.425662130117 -1.51044776686e-08
+                  1.0 1.0 1.0 39.4667549133 -11.4127674103 -24.8571949005 -1.13563629611e-07 0.425662308931 5.92322138004e-08
+                  1.00000011921 1.0 1.00000011921 39.1351966858 -10.8602266312 -22.9466724396 -9.83725279013e-09 0.425662189722 -3.82799186127e-07
+                  1.00000011921 0.999999880791 0.999999940395 38.81067276 -10.2464027405 -20.8274841309 -7.94158552253e-08 0.425662249327 2.12216605178e-07
+                  1.00000011921 1.00000011921 1.0 38.5183372498 -9.60477256775 -18.6119995117 -4.25246184932e-08 0.425662308931 7.98287800308e-08
+                  1.00000011921 1.0 1.0 38.2693405151 -8.95212459564 -16.3487281799 -1.1677325773e-08 0.425662338734 1.69992986798e-07
+                  1.00000011921 1.00000011921 1.00000011921 38.0699806213 -8.30010509491 -14.0646324158 -1.62157505201e-08 0.425662219524 -3.67414202174e-07
+                  1.00000011921 1.00000011921 1.0 37.9243507385 -7.65840005875 -11.7771425247 -3.19114619174e-08 0.425662219524 1.29533802351e-07
+                  1.00000011921 1.00000011921 1.00000011921 37.8354187012 -7.03600263596 -9.49889469147 -6.44569420061e-09 0.425662249327 -3.01763435573e-07
+                  1.00000011921 1.0 1.0 37.8056373596 -6.44188261032 -7.2400226593 -7.44471861935e-08 0.425662189722 -3.34881320896e-07
+                  1.00000011921 1.0 1.0 37.8372764587 -5.88546276093 -5.00945425034 -2.25472440718e-09 0.425662249327 1.51895207523e-07
+                  1.00000011921 1.00000011921 1.00000011921 37.9328765869 -5.37706279755 -2.81578826904 -1.08242034003e-07 0.425662249327 -1.01870178071e-07
+                  1.0 0.999999880791 0.999999940395 38.0955543518 -4.92852067947 -0.668122410774 -5.54243335671e-08 0.425662130117 -1.84408534665e-07
+                  1.0 1.00000011921 1.00000011921 38.3296470642 -4.55401277542 1.42306160927 -4.22359391905e-08 0.425662308931 -6.16299615785e-08
+                  1.0 1.0 1.00000011921 38.6415252686 -4.27142238617 3.4446349144 9.10127884168e-09 0.425662249327 -1.19863472037e-07
+                  1.00000011921 1.00000011921 1.0 39.0614242554 -4.08180570602 5.52684020996 1.39334463967e-08 0.425662189722 -1.22009549131e-08
+                  0.999999940395 0.999999880791 0.999999940395 39.6114044189 -3.97983002663 7.80428504944 -3.35824452691e-08 0.42566215992 4.70448107137e-08
+                  1.0 1.00000011921 1.00000011921 40.2831268311 -3.97705054283 10.2580566406 -5.23102841044e-08 0.425662189722 -2.93055080647e-07
+                  1.0 1.00000011921 1.0 41.0604553223 -4.08217334747 12.8542251587 -1.07944593708e-07 0.425662189722 1.13824626169e-07
+                  1.00000011921 1.0 1.0 41.9184074402 -4.29816818237 15.5414590836 -2.80077205872e-08 0.425662249327 -8.48583638913e-08
+                  1.00000011921 1.0 1.00000011921 42.8235435486 -4.61931562424 18.2511444092 -9.02685712845e-08 0.425662308931 2.88206337018e-07
+                  1.00000011921 1.0 1.0 43.736366272 -5.02915763855 20.901309967 2.13382129743e-08 0.425662308931 1.69380555803e-07
+                  1.00000011921 1.00000011921 1.0 44.6156311035 -5.50063514709 23.4045448303 2.5464395037e-09 0.425662130117 -2.14403613086e-07
+                  1.00000011921 1.00000011921 0.999999940395 45.4235534668 -5.99891996384 25.6783638 -4.32013038676e-08 0.425662219524 2.24348141842e-07
+                  1.00000011921 1.00000011921 1.0 46.1301765442 -6.48632955551 27.6548614502 9.39539823719e-09 0.425662279129 1.24230908227e-07
+                  1.0 1.0 1.00000011921 46.7154960632 -6.92767333984 29.2867927551 7.56159757032e-09 0.425662219524 2.14347906535e-07
+                  1.00000023842 1.00000023842 1.00000011921 47.1692237854 -7.2943315506 30.5488204956 3.44169635014e-08 0.425662308931 4.13443679292e-08
+                  1.00000011921 1.00000011921 1.00000011921 47.4887542725 -7.56622838974 31.4347915649 1.46205625384e-09 0.425662249327 9.45982279177e-08
+                  1.0 0.999999880791 1.0 47.6765480042 -7.73182010651 31.952922821 -6.25264506837e-09 0.425662249327 -3.56037830329e-08
+                  1.00000011921 1.00000011921 1.00000011921 47.7377929688 -7.78694105148 32.1207809448 -6.9834342753e-08 0.425662308931 -2.11293226471e-07
+                  1.0 1.0 1.0 47.6658668518 -7.72567081451 31.916973114 -7.68836727616e-08 0.425662249327 6.87262513566e-08
+                  1.00000011921 1.0 1.0 47.4452362061 -7.5417804718 31.2888278961 -5.72722314018e-08 0.425662279129 -5.35809263624e-09
+                  1.00000023842 1.00000011921 1.00000011921 47.0700836182 -7.24118566513 30.2182044983 2.85014678525e-09 0.425662219524 -1.93032860807e-07
+                  1.00000011921 1.00000011921 1.00000011921 46.5387649536 -6.83957862854 28.7018013 4.03988202891e-08 0.425662279129 -2.00904750614e-07
+                  1.0 1.00000011921 1.0 45.8574447632 -6.36367273331 26.7586421967 -1.70846270464e-09 0.425662279129 -2.74127796018e-08
+                  1.00000011921 1.0 1.0 45.0436859131 -5.85038900375 24.436290741 -2.96240436626e-08 0.425662219524 3.8206774633e-08
+                  1.0 1.0 0.999999940395 44.1285972595 -5.34294700623 21.8126506805 2.42108058046e-08 0.425662249327 1.73859618258e-07
+                  1.00000011921 1.0 1.00000011921 43.1556892395 -4.88428020477 18.9904518127 -4.03008257877e-08 0.425662249327 1.51266419834e-07
+                  1.00000011921 1.00000011921 1.00000011921 42.1759376526 -4.50975131989 16.0847225189 -3.3972607838e-08 0.425662249327 7.21489357147e-09
+                  1.0 1.00000011921 1.0 41.2403450012 -4.24203968048 13.2069730759 -8.59685584942e-08 0.425662308931 5.38110747073e-08
+                  1.00000011921 1.00000011921 1.00000011921 40.3930969238 -4.08992338181 10.4517431259 -1.8089146181e-08 0.425662249327 1.03305509924e-07
+                  1.00000011921 1.00000011921 1.00000011921 39.667175293 -4.05060386658 7.88925600052 1.08908082552e-09 0.425662189722 8.90722944291e-08
+                  0.999999940395 1.0 0.999999940395 39.0833969116 -4.1137919426 5.56456708908 2.55948107153e-09 0.425662279129 1.61120112807e-07
+                  1.0 1.00000011921 1.0 38.6518478394 -4.26577091217 3.50110459328 -5.60317197085e-08 0.42566215992 -3.99084569835e-07
+                  1.00000011921 1.00000023842 1.00000011921 38.3591804504 -4.49911689758 1.56633543968 -4.32195044198e-08 0.425662249327 5.31985584473e-08
+                  0.999999940395 1.0 1.0 38.1770744324 -4.80492353439 -0.390583455563 -3.24201998581e-08 0.425662249327 -1.01107467287e-07
+                  1.00000011921 1.00000011921 1.00000011921 38.0913772583 -5.1680264473 -2.36248517036 -4.66990037751e-08 0.425662219524 4.71799594948e-08
+                  1.00000023842 1.00000011921 1.00000011921 38.0902709961 -5.57617998123 -4.34347391129 -4.50898625104e-08 0.425662219524 7.24692057474e-08
+                  1.00000011921 1.0 1.0 38.1634063721 -6.01934480667 -6.32850313187 -1.55377879452e-08 0.425662279129 5.93897375722e-08
+                  1.00000011921 1.00000011921 1.0 38.3012313843 -6.48921632767 -8.31298542023 -1.02017175152e-07 0.425662130117 -6.33146512996e-08
+                  1.00000011921 0.999999940395 1.0 38.4945640564 -6.97893571854 -10.2924814224 -1.18803740179e-07 0.42566215992 -9.10396522613e-08
+                  1.00000011921 1.00000011921 1.0 38.7340164185 -7.48288297653 -12.2623662949 1.09866702402e-08 0.425662249327 3.74923189383e-07
+                  1.00000011921 0.999999940395 1.0 39.009513855 -7.99659013748 -14.2174940109 1.61522955011e-08 0.425662189722 2.91722813017e-07
+                  1.0 1.0 1.00000011921 39.3094520569 -8.51671123505 -16.1517028809 3.04375946669e-09 0.425662219524 -3.42653663665e-07
+                  1.00000011921 1.0 0.999999940395 39.6194877625 -9.04109477997 -18.0569725037 -7.74572228579e-08 0.425662189722 -1.778817591e-07
+                  1.0 0.999999940395 0.999999940395 39.9202079773 -9.56899356842 -19.9219398499 -6.36002184251e-08 0.425662249327 2.21235623599e-07
+                  1.00000011921 1.0 1.0 40.1822547913 -10.1015081406 -21.728603363 9.69145474983e-09 0.425662219524 -2.31242367477e-08
+                  1.0 1.00000011921 1.00000011921 40.3541107178 -10.642449379 -23.444021225 -4.91893032972e-08 0.425662130117 -3.22029933386e-07
+                  1.00000011921 1.0 1.00000011921 40.3215904236 -11.1998806 -24.9920291901 -3.25981339699e-08 0.425662279129 1.9566404319e-07
+                  1.00000011921 1.00000011921 1.0 39.6014938354 -11.6963949203 -25.9477043152 -1.60529740612e-08 0.425662279129 3.52272628845e-08
+                }
+              }
+              <Table> Bone.014 {
+                <Xfm$Anim> xform {
+                  <Scalar> fps { 60 }
+                  <Scalar> order { sprht }
+                  <Scalar> contents { ijkprhxyz }
+                  <V> {
+                    1.0 1.00000011921 0.999999940395 0.000118503405247 123.522537231 -96.2310409546 -4.10793745687e-08 0.596106767654 -2.15240049783e-07
+                    1.0 1.00000023842 1.0 0.000111588502477 123.522537231 -96.231048584 6.32426377933e-08 0.596106827259 -1.03781474081e-07
+                    0.999999940395 1.00000011921 1.00000011921 0.000121533172205 123.522537231 -96.231048584 5.45972227428e-08 0.596106827259 2.30141807833e-07
+                    1.00000011921 1.00000011921 1.0 0.000113712761959 123.522537231 -96.2310256958 1.3979644109e-08 0.596107006073 -4.22363484631e-07
+                    1.00000011921 1.00000011921 1.0 0.000113425609015 123.522537231 -96.2310333252 -1.47946206397e-08 0.596106767654 -2.51790019945e-08
+                    1.00000011921 1.00000023842 1.00000023842 0.00011715983419 123.522537231 -96.2310333252 5.42889111443e-08 0.59610658884 -1.27168476638e-07
+                    1.0 1.00000023842 1.0 0.000120323697047 123.522537231 -96.2310409546 4.53387940524e-08 0.596106946468 -6.8545645604e-08
+                    0.999999880791 1.00000011921 0.999999940395 0.000117278272228 123.522537231 -96.2310409546 -3.82526614828e-08 0.59610670805 -7.68557200104e-08
+                    1.0 1.00000023842 1.0 0.000119959157018 123.522537231 -96.2310333252 3.4584875408e-08 0.596106886864 2.04312200935e-07
+                    1.00000011921 1.00000035763 1.00000011921 0.000116617346066 123.522521973 -96.2310409546 -5.7919251617e-09 0.596106648445 -1.77236415766e-07
+                    1.0 1.00000011921 1.0 0.000115660834126 123.522537231 -96.2310409546 -4.26635011763e-08 0.596106827259 2.80244080386e-07
+                    0.999999940395 1.00000011921 1.0 0.000117330913781 123.522537231 -96.2310409546 3.00918969742e-08 0.596106827259 -2.15293326278e-07
+                    1.00000023842 1.00000035763 1.00000011921 0.000116816379887 123.522521973 -96.2310409546 5.85802624187e-08 0.596106827259 -7.73673036747e-08
+                    1.0 1.00000011921 1.0 0.000116207629617 123.522537231 -96.2310409546 1.71575393892e-08 0.596106886864 -1.78467956857e-07
+                    1.0 1.00000011921 0.999999940395 0.000115764560178 123.522537231 -96.2310409546 4.25265724857e-08 0.596106827259 -2.47531204423e-07
+                    1.0 1.00000023842 1.0 0.000116214650916 123.522537231 -96.2310409546 -2.59596113494e-08 0.596107006073 5.02573840322e-08
+                    1.0 1.00000023842 1.0 0.00011599388381 123.522537231 -96.2310409546 -1.54702988198e-08 0.596106886864 1.54220849424e-08
+                    0.999999940395 1.00000011921 0.999999940395 0.000116121867904 123.522537231 -96.2310409546 1.04232373843e-08 0.59610670805 1.4900201073e-08
+                    1.00000011921 1.00000023842 1.0 0.000118434050819 123.522537231 -96.2310409546 3.73551856114e-08 0.596107006073 2.49548630649e-08
+                    0.999999940395 1.00000011921 1.0 0.000113261157821 123.522537231 -96.2310409546 3.43033690342e-08 0.596106827259 -2.31033737919e-07
+                    1.0 1.00000011921 0.999999880791 0.000116170027468 123.522537231 -96.2310409546 -2.07877253189e-08 0.59610670805 1.64652309564e-08
+                    0.999999940395 1.00000011921 1.0 0.000112465946586 123.522537231 -96.2310409546 1.02123323131e-08 0.596106767654 -2.24340695354e-07
+                    1.00000011921 1.00000023842 1.00000011921 0.000119157732115 123.522521973 -96.2310409546 4.50699388921e-08 0.596106886864 -1.20448007124e-07
+                    1.0 1.00000011921 0.999999940395 0.000118838674098 123.522537231 -96.231048584 -1.11172653305e-07 0.59610670805 -4.34879581235e-08
+                    1.0 1.00000023842 1.0 0.00011397999333 123.522537231 -96.2310409546 -3.19074899835e-08 0.59610670805 -2.2932638899e-07
+                    1.0 1.00000011921 1.0 0.000115819442726 123.522537231 -96.2310409546 -5.13207716324e-08 0.596106886864 -9.03982453337e-08
+                    1.0 1.00000011921 0.999999940395 0.000115785427624 123.522537231 -96.2310409546 -8.28017476806e-08 0.596107006073 -1.08656095676e-07
+                    1.0 1.00000011921 0.999999940395 0.000108695006929 123.522537231 -96.2310333252 1.08310942437e-08 0.596106827259 -3.92906640556e-09
+                    0.999999940395 1.00000011921 1.0 0.00011417119822 123.522537231 -96.2310333252 1.71676717287e-09 0.59610670805 -6.78320191128e-08
+                    1.0 1.00000011921 1.0 0.000111977256893 123.522537231 -96.2310333252 -2.81244822986e-08 0.596106827259 -7.25887829844e-08
+                    1.0 1.00000011921 1.0 0.000120572571177 123.522537231 -96.2310409546 1.52633106154e-08 0.596106827259 -4.63155416242e-08
+                    1.0 1.00000011921 1.0 0.00011225786875 123.522537231 -96.2310333252 -2.28490399934e-08 0.596106886864 5.74129046527e-08
+                    1.0 1.00000011921 1.0 0.000112493515189 123.522537231 -96.2310333252 -5.12152311671e-08 0.596106827259 -1.43395368468e-07
+                    1.0 1.00000023842 0.999999940395 0.000119131073006 123.522537231 -96.2310333252 -3.43091421939e-09 0.596106946468 -5.03330923607e-08
+                    1.0 1.00000011921 1.0 0.000114604910777 123.522537231 -96.2310409546 -7.72117303427e-09 0.596106827259 -5.1706930293e-08
+                    1.00000011921 1.00000023842 1.0 0.000116546034405 123.522537231 -96.2310333252 2.8543748698e-08 0.596106946468 -6.4704494207e-08
+                    1.0 1.00000011921 1.0 0.000118652977108 123.522537231 -96.2310409546 3.94103771839e-08 0.596106886864 -1.71526750137e-07
+                    1.0 1.00000023842 1.00000011921 0.000114554939501 123.522537231 -96.2310409546 2.80623702054e-08 0.596106827259 6.07454566648e-08
+                    1.0 1.00000011921 1.0 0.000113820315164 123.522537231 -96.2310333252 -2.8252877371e-08 0.596106827259 -1.02521696022e-07
+                    1.0 1.00000011921 1.0 0.000115563627332 123.522537231 -96.2310409546 7.91939100964e-08 0.596106827259 -8.13116045606e-08
+                    1.0 1.00000011921 1.0 0.000114404938358 123.522537231 -96.2310409546 -8.1226616544e-09 0.596106886864 -1.35282490987e-07
+                    1.0 1.00000011921 1.0 0.000116421477287 123.522537231 -96.2310409546 -3.57362850423e-09 0.596106767654 -1.21312211832e-07
+                    0.999999940395 1.00000011921 1.0 0.00011550095951 123.522537231 -96.2310409546 -1.42410723214e-08 0.59610670805 -1.16826683438e-07
+                    0.999999940395 1.00000011921 0.999999940395 0.000116646981041 123.522537231 -96.2310409546 -1.14179146138e-08 0.59610670805 4.40119691802e-08
+                    0.999999940395 1.00000011921 0.999999880791 0.000115902352263 123.522537231 -96.2310409546 -1.17909735309e-08 0.596106886864 1.8168471172e-08
+                    1.0 1.00000011921 0.999999940395 0.00011564471788 123.522537231 -96.2310409546 3.93626251594e-08 0.596106827259 2.29896215842e-07
+                    1.0 1.00000011921 0.999999940395 0.000115422051749 123.522537231 -96.2310409546 5.86622093124e-08 0.596107006073 -2.06924880786e-07
+                    0.999999940395 1.00000023842 1.0 0.000117869538371 123.522537231 -96.2310409546 5.03482411318e-08 0.596106767654 3.71186814618e-08
+                    1.0 1.00000023842 1.0 0.000116878036351 123.522537231 -96.2310409546 -3.71624508944e-09 0.596106767654 -3.33434570621e-07
+                    0.999999940395 1.00000011921 1.0 0.000115739938337 123.522537231 -96.2310409546 -5.3180571058e-11 0.596106946468 4.26836432865e-09
+                    1.0 1.00000011921 0.999999940395 0.000111964749522 123.522537231 -96.2310409546 8.16587757413e-08 0.596106886864 1.58172397846e-07
+                    0.999999880791 1.00000011921 1.0 0.000115413895401 123.522537231 -96.2310409546 -1.1832675284e-08 0.596106827259 -6.2014272828e-08
+                    0.999999880791 1.00000011921 0.999999940395 0.000120878998132 123.522537231 -96.2310409546 7.63712080243e-08 0.59610670805 1.04528595557e-07
+                    1.0 1.00000011921 0.999999940395 0.000111712521175 123.522537231 -96.2310409546 -4.67664627024e-08 0.596106886864 -1.3398268095e-07
+                    0.999999940395 1.00000011921 1.0 0.000117976524052 123.522537231 -96.231048584 3.20785709107e-08 0.596106767654 -1.15931072742e-07
+                    1.0 1.00000011921 1.0 0.000115189053759 123.522537231 -96.2310409546 -6.66895374479e-08 0.596106767654 -1.21955679333e-07
+                    1.00000011921 1.00000011921 1.0 0.000113512694952 123.522537231 -96.2310333252 -5.20348919508e-08 0.596106886864 -7.71952457512e-09
+                    1.0 1.00000011921 1.0 0.000124784695799 123.522537231 -96.231048584 4.64119978005e-08 0.596106827259 -1.86832650684e-07
+                    1.00000011921 1.00000011921 1.0 0.000111635970825 123.522537231 -96.2310256958 -1.0095297398e-07 0.596106767654 -9.41519289199e-08
+                    1.0 1.00000011921 0.999999940395 0.000118021613162 123.522537231 -96.2310409546 1.32498776395e-08 0.596106886864 -1.47277489759e-07
+                  }
+                }
+              }
+              <Table> Bone.021 {
+                <Xfm$Anim> xform {
+                  <Scalar> fps { 60 }
+                  <Scalar> order { sprht }
+                  <Scalar> contents { ijkprhxyz }
+                  <V> {
+                    1.0 1.0 1.00000011921 46.8642845154 -47.7720184326 31.8268070221 -4.10793745687e-08 0.596106767654 -2.15240049783e-07
+                    1.00000011921 1.0 1.0 41.446559906 -49.7792854309 40.8443145752 6.32426377933e-08 0.596106827259 -1.03781474081e-07
+                    1.00000011921 1.00000011921 1.00000011921 38.0954780579 -49.6130142212 45.9616966248 5.45972227428e-08 0.596106827259 2.30141807833e-07
+                    0.999999940395 0.999999940395 1.0 35.5020027161 -48.8932685852 49.8535423279 1.3979644109e-08 0.596107006073 -4.22363484631e-07
+                    1.0 1.00000011921 1.00000011921 33.4018516541 -47.8993263245 53.008605957 -1.47946206397e-08 0.596106767654 -2.51790019945e-08
+                    1.00000011921 1.00000011921 1.0 31.6664066315 -46.7459144592 55.6441459656 5.42889111443e-08 0.59610658884 -1.27168476638e-07
+                    1.00000011921 1.00000011921 1.0 30.2155418396 -45.493976593 57.885723114 4.53387940524e-08 0.596106946468 -6.8545645604e-08
+                    0.999999940395 1.0 1.0 28.9933242798 -44.1807060242 59.8160247803 -3.82526614828e-08 0.59610670805 -7.68557200104e-08
+                    1.0 1.0 1.00000011921 27.9582538605 -42.8309402466 61.4937324524 3.4584875408e-08 0.596106886864 2.04312200935e-07
+                    1.00000011921 1.00000011921 1.0 27.0783863068 -41.4623565674 62.962474823 -5.7919251617e-09 0.596106648445 -1.77236415766e-07
+                    1.00000011921 1.00000011921 1.00000011921 26.3284816742 -40.0882644653 64.2557601929 -4.26635011763e-08 0.596106827259 2.80244080386e-07
+                    1.0 1.0 1.0 25.688325882 -38.719165802 65.3999252319 3.00918969742e-08 0.596106827259 -2.15293326278e-07
+                    1.00000011921 1.00000011921 0.999999940395 25.1414146423 -37.3636398315 66.4159317017 5.85802624187e-08 0.596106827259 -7.73673036747e-08
+                    1.0 1.0 1.0 24.6741847992 -36.0290336609 67.3208007813 1.71575393892e-08 0.596106886864 -1.78467956857e-07
+                    0.999999940395 0.999999940395 1.0 24.2753505707 -34.7218513489 68.1283493042 4.25265724857e-08 0.596106827259 -2.47531204423e-07
+                    1.00000023842 1.00000023842 1.00000011921 23.9354572296 -33.4480133057 68.8500366211 -2.59596113494e-08 0.596107006073 5.02573840322e-08
+                    0.999999880791 1.0 0.999999940395 23.646522522 -32.213142395 69.4952392578 -1.54702988198e-08 0.596106886864 1.54220849424e-08
+                    1.0 1.0 0.999999880791 23.4017486572 -31.022687912 70.0718078613 1.04232373843e-08 0.59610670805 1.4900201073e-08
+                    1.00000011921 1.00000023842 1.00000011921 23.1953372955 -29.8820743561 70.586227417 3.73551856114e-08 0.596107006073 2.49548630649e-08
+                    1.0 1.0 1.0 23.0222682953 -28.7968864441 71.0438995361 3.43033690342e-08 0.596106827259 -2.31033737919e-07
+                    1.0 1.0 0.999999940395 22.8782253265 -27.7729091644 71.4492874146 -2.07877253189e-08 0.59610670805 1.64652309564e-08
+                    1.00000011921 1.0 1.00000011921 22.7594470978 -26.8163318634 71.8059844971 1.02123323131e-08 0.596106767654 -2.24340695354e-07
+                    1.0 0.999999940395 1.0 22.6626605988 -25.9338512421 72.1169586182 4.50699388921e-08 0.596106886864 -1.20448007124e-07
+                    0.999999940395 1.00000011921 1.0 22.5849876404 -25.1328678131 72.3844604492 -1.11172653305e-07 0.59610670805 -4.34879581235e-08
+                    1.00000011921 1.00000011921 1.00000011921 22.5239505768 -24.4216537476 72.6101989746 -3.19074899835e-08 0.59610670805 -2.2932638899e-07
+                    1.0 0.999999940395 1.00000011921 22.4773864746 -23.8096237183 72.7952804565 -5.13207716324e-08 0.596106886864 -9.03982453337e-08
+                    0.999999880791 0.999999821186 0.999999940395 22.4434089661 -23.3076324463 72.9402694702 -8.28017476806e-08 0.596107006073 -1.08656095676e-07
+                    0.999999940395 0.999999940395 0.999999940395 22.4204845428 -22.9284038544 73.0451126099 1.08310942437e-08 0.596106827259 -3.92906640556e-09
+                    1.00000011921 0.999999940395 0.999999940395 22.4073524475 -22.6870632172 73.1091461182 1.71676717287e-09 0.59610670805 -6.78320191128e-08
+                    1.0 1.00000011921 1.00000011921 22.4031085968 -22.601890564 73.1309509277 -2.81244822986e-08 0.596106827259 -7.25887829844e-08
+                    1.0 0.999999940395 1.0 22.4283828735 -22.6716442108 73.0616760254 1.52633106154e-08 0.596106827259 -4.63155416242e-08
+                    1.0 1.0 1.00000011921 22.5010318756 -22.8704853058 72.8636550903 -2.28490399934e-08 0.596106886864 5.74129046527e-08
+                    1.00000011921 1.00000011921 1.00000023842 22.6177463531 -23.1847648621 72.5490112305 -5.12152311671e-08 0.596106827259 -1.43395368468e-07
+                    1.0 1.00000011921 1.0 22.7767124176 -23.6029491425 72.1271362305 -3.43091421939e-09 0.596106946468 -5.03330923607e-08
+                    1.0 1.0 0.999999940395 22.9772491455 -24.1151351929 71.6053085327 -7.72117303427e-09 0.596106827259 -5.1706930293e-08
+                    1.0 1.0 1.00000011921 23.2195472717 -24.7126712799 70.9891052246 2.8543748698e-08 0.596106946468 -6.4704494207e-08
+                    1.00000011921 1.00000011921 1.00000011921 23.5045127869 -25.3878555298 70.2827758789 3.94103771839e-08 0.596106886864 -1.71526750137e-07
+                    1.0 1.0 1.00000011921 23.8336105347 -26.1337223053 69.4893875122 2.80623702054e-08 0.596106827259 6.07454566648e-08
+                    1.0 0.999999940395 1.0 24.2088184357 -26.9438686371 68.6111297607 -2.8252877371e-08 0.596106827259 -1.02521696022e-07
+                    0.999999880791 1.0 1.0 24.6325149536 -27.812286377 67.6493377686 7.91939100964e-08 0.596106827259 -8.13116045606e-08
+                    1.0 1.0 1.00000011921 25.1074485779 -28.7332401276 66.6046447754 -8.1226616544e-09 0.596106886864 -1.35282490987e-07
+                    1.0 1.00000011921 1.00000011921 25.6367053986 -29.7011699677 65.4770965576 -3.57362850423e-09 0.596106767654 -1.21312211832e-07
+                    1.00000011921 1.00000011921 1.0 26.2236633301 -30.7106113434 64.2662124634 -1.42410723214e-08 0.59610670805 -1.16826683438e-07
+                    1.00000011921 1.00000011921 1.0 26.8719520569 -31.7560844421 62.9710044861 -1.14179146138e-08 0.59610670805 4.40119691802e-08
+                    0.999999880791 1.0 1.00000011921 27.5854225159 -32.8320617676 61.5901374817 -1.17909735309e-08 0.596106886864 1.8168471172e-08
+                    1.0 1.0 1.0 28.3680858612 -33.9328842163 60.121963501 3.93626251594e-08 0.596106827259 2.29896215842e-07
+                    1.0 1.00000011921 1.00000011921 29.2240581512 -35.0527381897 58.5645980835 5.86622093124e-08 0.596107006073 -2.06924880786e-07
+                    1.00000011921 1.00000011921 1.00000011921 30.1574611664 -36.1855430603 56.9160842896 5.03482411318e-08 0.596106767654 3.71186814618e-08
+                    1.00000011921 1.00000011921 1.00000011921 31.1723079681 -37.3249816895 55.174495697 -3.71624508944e-09 0.596106767654 -3.33434570621e-07
+                    1.00000011921 1.0 1.00000011921 32.2723617554 -38.4644241333 53.338180542 -5.3180571058e-11 0.596106946468 4.26836432865e-09
+                    0.999999940395 1.0 1.00000011921 33.4608650208 -39.5968437195 51.4060096741 8.16587757413e-08 0.596106886864 1.58172397846e-07
+                    1.0 1.0 1.0 34.7402763367 -40.7148742676 49.3777961731 -1.1832675284e-08 0.596106827259 -6.2014272828e-08
+                    1.0 1.0 0.999999940395 36.1117248535 -41.8106269836 47.2548561096 7.63712080243e-08 0.59610670805 1.04528595557e-07
+                    0.999999880791 1.0 0.999999940395 37.5743865967 -42.8756942749 45.0408744812 -4.67664627024e-08 0.596106886864 -1.3398268095e-07
+                    1.0 1.0 1.0 39.1243095398 -43.9009170532 42.7434310913 3.20785709107e-08 0.596106767654 -1.15931072742e-07
+                    0.999999940395 1.0 1.0 40.7523651123 -44.8759841919 40.3765563965 -6.66895374479e-08 0.596106767654 -1.21955679333e-07
+                    1.0 0.999999880791 1.0 42.4400634766 -45.7884483337 37.9663696289 -5.20348919508e-08 0.596106886864 -7.71952457512e-09
+                    1.0 1.00000011921 1.00000011921 44.1490020752 -46.6207046509 35.5652656555 4.64119978005e-08 0.596106827259 -1.86832650684e-07
+                    1.00000011921 1.00000011921 1.00000011921 45.7833747864 -47.3380661011 33.3026428223 -1.0095297398e-07 0.596106767654 -9.41519289199e-08
+                    1.00000011921 1.00000011921 1.00000011921 46.7426872253 -47.7639312744 31.908372879 1.32498776395e-08 0.596106886864 -1.47277489759e-07
+                  }
+                }
+              }
+            }
+          }
+          <Table> Bone.010 {
+            <Xfm$Anim> xform {
+              <Scalar> fps { 60 }
+              <Scalar> order { sprht }
+              <Scalar> contents { ijkprhxyz }
+              <V> {
+                1.00000023842 1.00000011921 1.00000011921 0.8032964468 12.6022405624 1.03085958958 8.75800143518e-09 0.659965455532 -3.11861292346e-08
+                1.00000023842 0.999999940395 1.0 0.803296506405 12.6022396088 1.03085947037 -6.95539412732e-08 0.6599650383 -2.66571564822e-08
+                1.00000011921 0.999999940395 1.00000011921 0.8032964468 12.6022396088 1.03085947037 -4.22369303976e-08 0.659965217113 -7.16213399699e-09
+                1.00000011921 0.999999940395 1.0 0.803296506405 12.6022405624 1.03085958958 -9.01379748619e-10 0.659965276718 -2.38950921272e-08
+                1.0 0.999999940395 0.999999940395 0.8032964468 12.6022415161 1.03085958958 -6.34272367961e-08 0.659965455532 -5.42852340857e-08
+                1.00000011921 0.999999940395 1.00000011921 0.80329656601 12.6022405624 1.03085947037 -3.77414473007e-08 0.659965217113 -2.94272357593e-08
+                1.00000023842 1.00000011921 1.00000011921 0.8032964468 12.6022386551 1.03085958958 -1.12203881741e-08 0.659965455532 -1.64239182254e-08
+                1.00000011921 1.00000011921 1.0 0.803296387196 12.6022405624 1.03085970879 -5.88681849933e-08 0.659965515137 -3.1392211497e-08
+                1.00000011921 0.999999940395 1.0 0.8032964468 12.6022386551 1.03085958958 -5.48831842195e-08 0.659965097904 -2.37918840185e-08
+                1.00000011921 1.00000011921 1.00000011921 0.803296387196 12.6022386551 1.03085958958 5.07987829579e-09 0.659965395927 -1.95913543166e-08
+                1.0 0.999999821186 0.999999940395 0.8032964468 12.6022415161 1.03085958958 -3.85762248811e-08 0.659965157509 -3.2362006408e-08
+                1.00000011921 0.999999940395 1.0 0.8032964468 12.6022396088 1.03085947037 -1.04753139496e-08 0.659965097904 -5.26149932512e-08
+                1.0 1.00000011921 1.0 0.803296387196 12.6022405624 1.03085970879 -6.88153605211e-08 0.659965395927 -2.97791640236e-08
+                1.00000011921 0.999999940395 1.0 0.8032964468 12.6022396088 1.03085958958 4.11800300526e-08 0.659965276718 -4.05526350278e-08
+                1.00000011921 0.999999940395 1.0 0.803296506405 12.6022396088 1.03085958958 -3.94454886532e-08 0.659965157509 -3.06468201927e-08
+                1.00000011921 0.999999940395 1.00000011921 0.803296506405 12.6022396088 1.03085947037 -1.87586035594e-08 0.659964978695 -4.11457214966e-08
+                1.00000011921 0.999999940395 1.00000011921 0.8032964468 12.6022386551 1.03085947037 4.36474856258e-08 0.659965217113 -1.21094938521e-08
+                1.0 0.999999940395 1.0 0.8032964468 12.6022415161 1.03085970879 -2.96621394114e-08 0.659965455532 -4.52758008862e-08
+                1.00000023842 1.00000011921 1.00000011921 0.8032964468 12.6022396088 1.03085958958 -7.40125116749e-09 0.659965574741 -1.81579835612e-08
+                1.00000011921 0.999999940395 1.00000011921 0.8032964468 12.6022377014 1.03085947037 1.7525648488e-08 0.659965217113 -1.43762353133e-08
+                1.0 0.999999940395 1.00000011921 0.803296506405 12.6022405624 1.03085970879 -3.0774224058e-08 0.659965217113 -1.99872722817e-08
+                1.00000011921 1.00000011921 1.0 0.8032964468 12.6022396088 1.03085970879 -1.14800693396e-08 0.659965515137 -2.47318201474e-08
+                1.00000011921 0.999999940395 1.00000011921 0.8032964468 12.6022405624 1.03085958958 -4.99626029438e-09 0.659965097904 -1.95544718196e-08
+                1.00000011921 0.999999940395 1.00000011921 0.8032964468 12.6022405624 1.03085958958 -1.27375479053e-08 0.659965217113 -4.23453272447e-09
+                1.00000011921 0.999999940395 1.0 0.803296506405 12.6022405624 1.03085958958 -5.47589085187e-09 0.659965097904 -1.86308550809e-08
+                1.00000023842 0.999999940395 1.00000011921 0.8032964468 12.6022386551 1.03085947037 3.50157502993e-09 0.659965276718 1.52349399762e-09
+                1.00000011921 0.999999940395 1.0 0.803296506405 12.6022396088 1.03085958958 -3.34908012434e-09 0.659965217113 -2.46536142612e-08
+                1.00000023842 0.999999940395 1.0 0.80329656601 12.6022386551 1.03085947037 6.37748058807e-08 0.659965336323 -1.04007176205e-08
+                1.00000011921 1.00000011921 1.00000011921 0.803296387196 12.6022386551 1.03085958958 1.10905631345e-08 0.659965634346 -2.8018238396e-08
+                1.00000011921 1.00000011921 1.00000011921 0.803296387196 12.6022386551 1.03085958958 3.47472308704e-08 0.659965455532 -3.31985923196e-08
+                1.00000023842 1.00000011921 1.00000011921 0.803296387196 12.6022396088 1.03085958958 -7.78802977663e-09 0.659965574741 -2.62276724783e-08
+                1.00000011921 0.999999940395 1.0 0.803296506405 12.6022386551 1.03085947037 8.2791400402e-09 0.659965217113 -2.30282051206e-08
+                1.00000011921 1.00000011921 1.0 0.8032964468 12.6022405624 1.03085970879 -9.08035033831e-08 0.659965276718 -2.15888924515e-08
+                1.0 0.999999940395 0.999999940395 0.8032964468 12.6022415161 1.03085970879 -4.79094275363e-08 0.659965515137 -1.86786515144e-08
+                1.00000011921 1.00000011921 1.00000011921 0.8032964468 12.6022396088 1.03085958958 1.96463600943e-09 0.659965276718 -1.18085186074e-08
+                1.00000011921 1.00000011921 1.00000011921 0.8032964468 12.6022386551 1.03085958958 -7.12594472319e-09 0.659965932369 -1.86309030425e-08
+                1.00000023842 1.00000011921 1.00000011921 0.8032964468 12.6022396088 1.03085958958 -5.52074261861e-08 0.659965693951 -1.52809338516e-08
+                1.00000011921 0.999999940395 1.0 0.803296506405 12.6022386551 1.03085958958 -4.3605457023e-08 0.659965157509 -1.95552942728e-08
+                1.00000011921 1.00000011921 1.0 0.803296387196 12.6022396088 1.03085958958 -7.65674368353e-09 0.659965574741 -2.63724402316e-08
+                1.00000011921 1.00000011921 1.00000023842 0.803296387196 12.6022405624 1.03085958958 -5.01363395244e-09 0.659965455532 -1.85730737456e-08
+                1.00000023842 1.00000011921 1.00000011921 0.803296387196 12.6022396088 1.03085958958 -3.60214826856e-08 0.659965395927 -1.4708153806e-08
+                1.00000011921 0.999999940395 1.00000011921 0.803296506405 12.6022396088 1.03085947037 3.79594951028e-08 0.659965217113 -2.35819985761e-08
+                1.00000011921 1.00000011921 1.0 0.8032964468 12.6022405624 1.03085970879 -8.00032822212e-08 0.659965634346 -4.30273132679e-08
+                1.00000023842 1.00000011921 1.00000011921 0.8032964468 12.6022396088 1.03085958958 -3.48598341304e-08 0.659965336323 -3.30325207187e-08
+                1.00000011921 1.00000011921 1.0 0.803296387196 12.6022396088 1.03085970879 3.41039942953e-08 0.659965574741 -4.27879989218e-08
+                1.00000023842 1.00000011921 1.00000011921 0.8032964468 12.6022396088 1.03085958958 2.93090085535e-09 0.659965276718 -2.53321044141e-08
+                1.00000011921 0.999999940395 1.0 0.8032964468 12.6022386551 1.03085947037 1.88679827318e-08 0.659965276718 -1.45080747416e-08
+                1.00000011921 1.00000011921 1.00000011921 0.803296327591 12.6022396088 1.03085958958 -4.31727542605e-08 0.659965574741 -2.71826881004e-08
+                1.00000011921 1.00000011921 1.0 0.8032964468 12.6022396088 1.03085958958 7.9419208987e-09 0.659965574741 -3.14804040613e-08
+                1.00000011921 0.999999940395 1.0 0.803296506405 12.6022405624 1.03085947037 -1.6555022242e-08 0.659965217113 -2.8968230481e-08
+                1.00000023842 0.999999940395 1.00000011921 0.803296506405 12.6022377014 1.03085947037 1.51609729215e-08 0.659965097904 -1.5447694679e-08
+                1.0 1.00000011921 1.0 0.803296387196 12.6022405624 1.03085970879 -6.18360331828e-08 0.659965574741 -2.4501021656e-08
+                1.00000011921 0.999999940395 1.00000011921 0.803296506405 12.6022396088 1.03085947037 1.65412039621e-08 0.659965097904 -2.54438781155e-08
+                1.00000023842 0.999999940395 1.00000011921 0.8032964468 12.6022386551 1.03085947037 -5.34127302387e-08 0.659965157509 -1.20478755861e-08
+                1.00000011921 0.999999940395 1.0 0.8032964468 12.6022386551 1.03085958958 -9.91553594787e-09 0.659965097904 -2.37371704515e-08
+                1.00000011921 1.00000011921 1.00000011921 0.803296387196 12.6022405624 1.03085970879 -4.09545775071e-09 0.659965455532 -3.54138833814e-08
+                1.00000011921 1.00000011921 1.00000011921 0.8032964468 12.6022386551 1.03085958958 -2.75877241052e-08 0.659965515137 -1.73402625592e-08
+                1.00000011921 0.999999940395 1.00000011921 0.8032964468 12.6022396088 1.03085958958 -7.47627382225e-08 0.6599650383 -3.12386561063e-08
+                1.00000011921 1.00000011921 1.00000011921 0.8032964468 12.6022386551 1.03085958958 -1.53956012383e-08 0.659965276718 -7.38217531548e-09
+                1.00000011921 1.00000011921 0.999999940395 0.795658051968 12.6120471954 1.03981363773 -4.8294083399e-08 0.659965574741 -1.40882372435e-08
+              }
+            }
+            <Table> Bone.019 {
+              <Xfm$Anim> xform {
+                <Scalar> fps { 60 }
+                <Scalar> order { sprht }
+                <Scalar> contents { ijkprhxyz }
+                <V> {
+                  1.00000011921 1.00000011921 1.0 29.2464542389 7.47644805908 -19.0692043304 2.04903027878e-08 0.996502697468 1.8861905815e-08
+                  1.00000011921 1.00000011921 1.0 28.9030761719 8.1505613327 -21.1996097565 3.80425930757e-08 0.996502101421 -9.99693572368e-09
+                  1.0 1.0 1.0 28.6907806396 8.56529521942 -22.3052330017 -2.14885833572e-08 0.996502220631 1.43964848931e-08
+                  1.00000011921 1.00000023842 1.00000011921 28.5215873718 8.89506340027 -23.0917015076 -9.33990591534e-08 0.996502101421 3.96949140224e-09
+                  1.00000011921 1.0 1.00000011921 28.3751430511 9.17895317078 -23.7185516357 -7.49615622908e-08 0.996501982212 -4.67205030219e-09
+                  1.00000011921 1.00000011921 1.00000011921 28.2424201965 9.4335565567 -24.2549343109 -1.19922745512e-07 0.996502280235 1.01364996397e-08
+                  1.00000011921 1.00000011921 1.00000011921 28.1182975769 9.66777896881 -24.7394695282 -1.35896645048e-08 0.99650233984 -1.04363122588e-08
+                  1.00000011921 1.00000023842 1.0 27.9993286133 9.88708591461 -25.1974658966 -4.80247592805e-08 0.996502399445 -2.01794101429e-08
+                  1.00000011921 1.0 1.0 27.8829402924 10.0951576233 -25.6476860046 3.05651415289e-09 0.996502518654 -1.44921887824e-08
+                  1.00000023842 1.00000023842 1.00000011921 27.7669467926 10.294634819 -26.1056079865 3.42139871989e-09 0.996502459049 2.59374566269e-08
+                  1.00000011921 1.00000011921 0.999999940395 27.6493721008 10.487537384 -26.5853099823 -2.7214674958e-09 0.996502280235 1.23676624497e-08
+                  1.00000011921 1.00000011921 1.00000011921 27.528213501 10.6754789352 -27.1007766724 3.20076765092e-08 0.996502101421 -1.71776415314e-09
+                  1.00000011921 1.00000011921 1.0 27.401309967 10.8598279953 -27.6671047211 -7.48079642676e-08 0.996502161026 -4.13997636173e-09
+                  1.00000011921 1.0 1.00000011921 27.2661590576 11.0418043137 -28.301815033 -9.03935593044e-09 0.996502041817 1.7928276641e-09
+                  1.00000011921 1.0 1.0 27.1196479797 11.2225666046 -29.026638031 -7.50446531583e-08 0.996502220631 1.56532120599e-08
+                  1.00000023842 1.00000023842 1.00000011921 26.9712924957 11.4031143188 -29.8581390381 3.93663626141e-08 0.996502399445 1.69518905579e-08
+                  1.00000011921 1.0 1.0 26.8337478638 11.582690239 -30.7924404144 -5.6250357261e-08 0.996502041817 -6.82909018224e-09
+                  1.00000011921 1.00000011921 1.0 26.7080097198 11.7595252991 -31.8213195801 -1.09651097091e-07 0.996502518654 -1.69807812256e-08
+                  1.00000011921 1.0 1.0 26.5950565338 11.9314622879 -32.9298820496 -5.73748248911e-09 0.996501982212 3.26106004422e-08
+                  1.00000011921 1.0 0.999999940395 26.4957618713 12.0959978104 -34.095451355 -5.44200950969e-08 0.996502518654 4.70290384413e-09
+                  1.00000011921 1.0 1.00000011921 26.4107379913 12.2504043579 -35.2872619629 -6.85561900582e-08 0.996502220631 -1.70829417279e-09
+                  1.0 1.00000011921 1.0 26.3401813507 12.3919458389 -36.4678916931 -5.59654473875e-08 0.996502101421 1.16935101602e-08
+                  1.00000011921 1.0 0.999999940395 26.2837352753 12.5181808472 -37.5964546204 -4.46986732072e-08 0.99650233984 -1.16322969035e-08
+                  1.00000023842 1.00000011921 1.00000011921 26.2404689789 12.6272315979 -38.6330490112 -4.38139871051e-08 0.996502280235 3.83407794402e-08
+                  1.0 1.00000011921 1.0 26.2089328766 12.7180013657 -39.5433731079 -5.50666285903e-08 0.996502161026 -4.48647208273e-09
+                  1.00000011921 1.0 1.0 26.1873130798 12.7902011871 -40.3019294739 1.49833070395e-08 0.996502280235 -1.49982000153e-08
+                  1.00000011921 1.00000011921 1.0 26.1736526489 12.8442697525 -40.8932380676 -3.86425718091e-08 0.99650233984 1.85781123818e-09
+                  1.00000023842 1.0 1.0 26.1659984589 12.8811950684 -41.3111076355 -1.69984133436e-08 0.996502101421 -3.78954467806e-09
+                  1.00000011921 1.00000011921 1.0 26.1625480652 12.9022731781 -41.5567741394 2.76797358367e-08 0.996502161026 2.74379008403e-08
+                  1.00000011921 1.00000011921 1.0 26.1617107391 12.9089670181 -41.6366539001 -4.8272170261e-08 0.996502101421 2.88916037761e-08
+                  1.00000011921 1.0 0.999999940395 26.1637954712 12.8999662399 -41.5410499573 -2.58332839564e-08 0.996502280235 9.71351710177e-09
+                  1.00000011921 1.00000011921 1.00000023842 26.1710929871 12.871843338 -41.2473258972 1.50059307202e-08 0.99650233984 -4.77446349123e-09
+                  1.00000011921 1.00000011921 0.999999940395 26.1852989197 12.8230762482 -40.7491226196 -4.46447927516e-08 0.996502578259 -2.32108092746e-08
+                  1.00000011921 1.00000011921 0.999999940395 26.2081546783 12.7525691986 -40.0478897095 8.51620001185e-08 0.996502399445 3.00179756607e-08
+                  1.0 1.0 1.0 26.2413845062 12.6599435806 -39.1560935974 -4.8408622888e-08 0.996502220631 -3.65545282932e-08
+                  1.0 1.00000011921 0.999999940395 26.2864971161 12.5458421707 -38.0994873047 -1.1903777164e-07 0.996502101421 3.52418183525e-08
+                  1.00000011921 1.0 0.999999940395 26.3446407318 12.4121179581 -36.9171142578 1.60902491331e-08 0.996501922607 -9.05098662685e-10
+                  1.00000011921 1.00000011921 1.0 26.4164772034 12.2617874146 -35.6581268311 -1.85568325151e-08 0.996502220631 2.28520118384e-08
+                  1.00000011921 1.0 1.0 26.5021018982 12.0987091064 -34.3757896423 -7.30885503231e-08 0.996502041817 9.00751473409e-10
+                  1.00000011921 1.00000011921 1.0 26.60115242 11.9270982742 -33.1206016541 9.41963573808e-09 0.996502280235 -7.28890103829e-09
+                  1.0 1.00000011921 1.00000011921 26.7129116058 11.7509975433 -31.9346866608 -8.86356517071e-08 0.996502101421 2.78101874862e-09
+                  1.00000011921 1.00000011921 0.999999940395 26.836479187 11.5739307404 -30.8491172791 1.40879450328e-08 0.996502280235 -9.2212832925e-09
+                  1.00000023842 1.00000011921 1.00000011921 26.9709033966 11.3987264633 -29.8837757111 -1.39892479822e-08 0.996502161026 7.64440777345e-09
+                  1.00000011921 1.00000011921 1.0 27.1152744293 11.2275114059 -29.0490989685 -9.8229243406e-08 0.996502041817 3.69850781112e-08
+                  1.00000023842 1.00000011921 1.00000011921 27.2639884949 11.0486602783 -28.2903900146 -6.6619541883e-08 0.996502280235 2.42735254119e-08
+                  1.0 1.00000011921 1.0 27.4110946655 10.8501844406 -27.5426120758 1.03873376567e-09 0.99650233984 1.26689627677e-08
+                  1.00000023842 1.00000023842 1.00000011921 27.556180954 10.6351156235 -26.8056488037 -3.16130090994e-08 0.996502280235 3.40873427263e-08
+                  1.00000011921 1.0 0.999999940395 27.698928833 10.405957222 -26.0796508789 -7.41620098665e-08 0.996502041817 -2.09176889143e-08
+                  1.00000023842 1.00000011921 1.00000023842 27.8391208649 10.1648578644 -25.3650150299 -2.22838512087e-08 0.996502399445 -2.68173838691e-09
+                  1.00000011921 1.0 0.999999940395 27.976600647 9.91371631622 -24.6623325348 -4.3771031244e-08 0.996502459049 -5.98163563126e-09
+                  1.00000011921 1.0 0.999999940395 28.111289978 9.65433216095 -23.9725036621 -6.90037467166e-08 0.996502697468 -4.15715906144e-10
+                  1.00000011921 1.00000011921 0.999999940395 28.2431735992 9.38845825195 -23.296754837 -7.48462269939e-08 0.996501982212 -8.13916400944e-09
+                  1.00000011921 1.00000011921 1.0 28.3723220825 9.11793518066 -22.6367778778 -6.20971363219e-08 0.996502280235 3.06538616712e-08
+                  1.0 1.0 0.999999940395 28.498884201 8.84482860565 -21.9949607849 -6.77824587569e-08 0.996502280235 1.38540396932e-08
+                  1.00000011921 1.00000011921 1.0 28.623128891 8.57164287567 -21.3747253418 -6.41369410914e-08 0.996502399445 4.01279862672e-08
+                  1.00000011921 1.0 1.0 28.7455272675 8.3017206192 -20.7812385559 -2.77077294442e-09 0.996502161026 1.47387133609e-08
+                  1.0 1.00000011921 1.0 28.8668289185 8.0400428772 -20.2228832245 3.96080546139e-09 0.996502399445 1.08771480711e-08
+                  1.0 1.0 1.0 28.9883918762 7.79519176483 -19.7148571014 -9.54078416271e-08 0.996502280235 -4.27246638068e-09
+                  1.0 1.0 1.0 29.1130771637 7.58568668365 -19.290763855 -2.77316711816e-08 0.99650233984 1.32732633773e-08
+                  1.0 1.0 1.0 29.2694091797 7.46692943573 -19.0800457001 -2.25362750683e-08 0.996502161026 -1.06393036603e-08
+                }
+              }
+              <Table> Bone.020 {
+                <Xfm$Anim> xform {
+                  <Scalar> fps { 60 }
+                  <Scalar> order { sprht }
+                  <Scalar> contents { ijkprhxyz }
+                  <V> {
+                    0.999999940395 1.00000011921 1.0 -7.2724480629 -10.5967960358 -3.45954751968 -1.75617998366e-07 0.577089726925 2.77598672938e-07
+                    1.0 1.00000011921 1.0 -6.60823535919 -11.4638671875 -10.1228218079 -5.11868023523e-08 0.577089428902 -1.64339311937e-07
+                    1.0 0.999999940395 1.0 -6.45997953415 -11.8418731689 -13.1746444702 5.1874948781e-08 0.577089309692 -2.37047302676e-07
+                    1.00000011921 1.00000011921 1.00000011921 -6.4779458046 -12.0801858902 -15.0717945099 -1.55959781978e-07 0.577089846134 -2.31331426903e-07
+                    0.999999940395 0.999999940395 0.999999940395 -6.57883453369 -12.2500514984 -16.3648643494 -6.53884129065e-08 0.577089548111 -1.26856420479e-07
+                    1.0 1.0 1.0 -6.72502422333 -12.3795976639 -17.2894210815 -8.10774594129e-08 0.577089488506 2.17208508957e-07
+                    1.00000011921 0.999999940395 0.999999940395 -6.89459514618 -12.4831953049 -17.9742164612 -4.77945327759e-08 0.577089250088 -7.94180365915e-08
+                    1.0 1.0 1.0 -7.07245731354 -12.5694761276 -18.5009365082 -1.19851080171e-07 0.57708966732 1.94909247853e-07
+                    0.999999940395 1.0 1.0 -7.24683761597 -12.6443872452 -18.927488327 -7.22016757493e-09 0.577089726925 1.11723963414e-09
+                    1.0 0.999999940395 0.999999940395 -7.40745019913 -12.7125091553 -19.2990512848 -1.37696673619e-07 0.577089250088 1.46437983517e-07
+                    1.00000011921 1.0 1.0 -7.54442977905 -12.7777347565 -19.65417099 9.71606866074e-08 0.577089607716 1.75240103317e-07
+                    1.00000011921 1.0 1.00000011921 -7.64747858047 -12.8436565399 -20.0286540985 5.70585285686e-08 0.57708978653 -7.94485686129e-08
+                    1.0 1.00000011921 1.00000011921 -7.70507144928 -12.9138145447 -20.458770752 1.31162664729e-07 0.577089726925 -3.77324624878e-08
+                    0.999999940395 0.999999940395 1.0 -7.70344495773 -12.9918022156 -20.9842453003 -2.1067370426e-07 0.577089846134 2.60742947233e-08
+                    0.999999940395 0.999999940395 0.999999940395 -7.62517309189 -13.0813627243 -21.652141571 -1.35085969077e-07 0.577089726925 2.39045210293e-08
+                    1.0 1.0 1.0 -7.49246311188 -13.1807508469 -22.3855285645 1.48689707657e-07 0.577089488506 1.59704981684e-07
+                    1.0 0.999999880791 0.999999940395 -7.34227323532 -13.2851524353 -23.0659141541 -1.733387478e-07 0.577089726925 -2.04085679911e-07
+                    0.999999880791 0.999999940395 1.0 -7.17600011826 -13.3935337067 -23.6864585876 -1.38230589641e-07 0.577089726925 3.08787448944e-08
+                    0.999999821186 0.999999940395 1.0 -6.99615859985 -13.5044536591 -24.2406024933 -1.46735800399e-07 0.577089846134 -8.29730453233e-08
+                    1.0 1.0 1.0 -6.8065404892 -13.6160058975 -24.7229042053 9.84366295143e-08 0.577089488506 1.31052885877e-07
+                    1.0 1.0 0.999999940395 -6.61228704453 -13.7258338928 -25.12981987 -2.37173225059e-07 0.57708978653 -4.07835081262e-08
+                    1.0 0.999999940395 1.0 -6.41961765289 -13.8312454224 -25.4608020782 3.09806651444e-08 0.57708978653 1.6079727061e-07
+                    1.0 0.999999880791 1.0 -6.23530435562 -13.929444313 -25.7188072205 8.1342719227e-09 0.577089548111 -7.0765871385e-08
+                    0.999999940395 0.999999940395 1.0 -6.06595087051 -14.0178041458 -25.9102573395 5.33995034857e-08 0.577089250088 3.58931089295e-08
+                    1.00000011921 1.00000011921 1.00000011921 -5.91722249985 -14.0941638947 -26.0443706512 -1.93724090991e-07 0.577089726925 1.64873892317e-08
+                    0.999999940395 1.0 1.0 -5.79331254959 -14.1570215225 -26.1319541931 -1.85478569392e-07 0.577089607716 -4.20241486054e-09
+                    1.0 1.0 0.999999940395 -5.69676399231 -14.2055664063 -26.1841106415 -2.81781638023e-07 0.577089548111 3.41331407583e-08
+                    1.0 1.0 1.0 -5.6285738945 -14.2396306992 -26.2111873627 -6.82450362888e-09 0.577089548111 6.75952023244e-08
+                    1.0 1.0 1.0 -5.58851385117 -14.2595491409 -26.2221984863 -2.40447377564e-07 0.577089369297 -2.23439511338e-09
+                    1.00000011921 1.0 1.0 -5.57549858093 -14.2660007477 -26.2245044708 1.10273987275e-07 0.577090024948 -2.06086042454e-07
+                    1.00000011921 1.00000011921 1.0 -5.59117031097 -14.2581243515 -26.2174949646 -1.52280634325e-07 0.577089548111 1.83654876196e-07
+                    1.00000011921 1.0 1.0 -5.63933801651 -14.2338495255 -26.191740036 9.11404995918e-08 0.577089488506 1.50985499658e-07
+                    1.0 1.00000011921 1.0 -5.7210521698 -14.1924667358 -26.1389579773 -4.58902107425e-08 0.577089190483 5.61025998991e-08
+                    1.0 1.00000011921 0.999999940395 -5.83604717255 -14.1338148117 -26.0494594574 -2.5033421025e-07 0.57708966732 -1.88013970615e-07
+                    1.00000011921 1.0 0.999999940395 -5.98221588135 -14.0585165024 -25.9126720428 3.06537941697e-08 0.577089250088 5.17213507578e-08
+                    1.0 1.00000011921 1.0 -6.15524864197 -13.9681472778 -25.7180976868 1.88163795656e-07 0.577089190483 1.0470663625e-07
+                    1.00000011921 1.0 1.0 -6.34864902496 -13.8652820587 -25.4567146301 -1.20332146025e-07 0.577089726925 -1.02769568855e-07
+                    1.00000011921 1.0 1.0 -6.55424022675 -13.7533130646 -25.1223659515 4.00818009894e-08 0.57708966732 4.40130278889e-08
+                    1.00000011921 1.0 1.00000011921 -6.76320791245 -13.6360578537 -24.7126293182 -2.17684359427e-08 0.577089607716 2.265200294e-08
+                    1.0 1.0 0.999999940395 -6.96719837189 -13.5172977448 -24.2290153503 3.95660748609e-09 0.577089369297 2.33136091765e-07
+                    0.999999940395 1.0 0.999999940395 -7.15925645828 -13.4003953934 -23.6762218475 -1.18562098805e-07 0.577089607716 -2.11213631474e-07
+                    0.999999940395 0.999999880791 1.0 -7.33426141739 -13.2880210876 -23.0609836578 -3.70545230055e-08 0.577089428902 -1.2124118598e-07
+                    1.00000011921 1.00000011921 1.00000011921 -7.48894309998 -13.1821470261 -22.3909645081 -6.07147541132e-08 0.577089369297 1.74304133793e-07
+                    1.00000011921 1.0 1.0 -7.6216211319 -13.0841093063 -21.6738071442 -1.23448657519e-07 0.577089607716 -1.75425025617e-08
+                    0.999999880791 0.999999880791 1.0 -7.70852947235 -12.9946908951 -21.0018558502 -2.07365758342e-07 0.57708978653 -3.13788746098e-08
+                    1.0 1.0 0.999999940395 -7.73262119293 -12.9129781723 -20.4497966766 2.83501009335e-08 0.577089488506 6.69148647603e-09
+                    0.999999940395 1.0 0.999999940395 -7.70585632324 -12.8371486664 -19.9860095978 7.30970768359e-08 0.577089428902 1.93631741752e-08
+                    0.999999940395 1.0 0.999999940395 -7.63819551468 -12.7652378082 -19.5827083588 -5.31058184094e-08 0.577089548111 1.47261758343e-07
+                    1.0 1.0 1.0 -7.53821706772 -12.6952056885 -19.2143955231 3.15687351815e-08 0.577089488506 8.7578790442e-08
+                    1.0 0.999999940395 1.0 -7.41361045837 -12.6249341965 -18.8563747406 -8.98685925677e-09 0.577089369297 3.20436868151e-07
+                    1.00000011921 1.0 1.0 -7.27156114578 -12.5521717072 -18.4833583832 -5.25741583601e-08 0.57708966732 -9.72015534728e-09
+                    1.00000011921 1.0 1.0 -7.11914873123 -12.4744319916 -18.0678958893 -1.02170602645e-07 0.577089548111 3.18355517948e-07
+                    1.00000011921 1.00000011921 1.0 -6.96377372742 -12.3888130188 -17.5782299042 -1.35069456064e-07 0.577089607716 7.92029108965e-10
+                    1.0 1.0 1.0 -6.81372117996 -12.2916631699 -16.9751434326 -4.43271730433e-08 0.577089726925 -2.70184496998e-08
+                    1.0 1.0 1.0 -6.67903280258 -12.1779680252 -16.2066764832 -3.47893838182e-08 0.577089130878 1.48431098523e-07
+                    0.999999940395 1.0 0.999999880791 -6.57306861877 -12.0402088165 -15.198387146 -6.04666006154e-09 0.577089607716 1.53402808678e-07
+                    1.0 1.0 1.0 -6.51562643051 -11.8657550812 -13.8328256607 -2.2459967397e-07 0.577089726925 6.24437390684e-08
+                    0.999999940395 1.0 0.999999940395 -6.54053688049 -11.6301822662 -11.8989801407 -1.24166348314e-07 0.57708978653 -1.64788165335e-08
+                    1.00000011921 1.0 0.999999940395 -6.71959686279 -11.2747821808 -8.92866039276 -1.20897368561e-07 0.57708978653 -2.75722022991e-08
+                    1.0 1.0 1.0 -7.33073806763 -10.5134983063 -3.22769355774 -8.38700913164e-08 0.57708966732 -1.1153277768e-07
+                  }
+                }
+              }
+            }
+            <Table> Bone.017 {
+              <Xfm$Anim> xform {
+                <Scalar> fps { 60 }
+                <Scalar> order { sprht }
+                <Scalar> contents { ijkprhxyz }
+                <V> {
+                  1.0 1.0 0.999999940395 -40.6596069336 -12.0159435272 -24.504076004 2.04903027878e-08 0.996502697468 1.8861905815e-08
+                  1.0 1.0 1.0 -40.4932174683 -12.30534935 -23.7967662811 3.80425930757e-08 0.996502101421 -9.99693572368e-09
+                  0.999999940395 1.0 1.0 -40.2435836792 -12.7549161911 -22.7078552246 -2.14885833572e-08 0.996502220631 1.43964848931e-08
+                  1.0 0.999999940395 0.999999940395 -39.9855117798 -13.2412843704 -21.542142868 -9.33990591534e-08 0.996502101421 3.96949140224e-09
+                  0.999999940395 0.999999940395 1.0 -39.735584259 -13.7357683182 -20.3690376282 -7.49615622908e-08 0.996501982212 -4.67205030219e-09
+                  0.999999880791 0.999999880791 0.999999940395 -39.5005874634 -14.2244710922 -19.22057724 -1.19922745512e-07 0.996502280235 1.01364996397e-08
+                  0.999999880791 1.0 0.999999880791 -39.2839279175 -14.6981287003 -18.1169681549 -1.35896645048e-08 0.99650233984 -1.04363122588e-08
+                  0.999999880791 0.999999940395 0.999999880791 -39.0875320435 -15.1491994858 -17.0739269257 -4.80247592805e-08 0.996502399445 -2.01794101429e-08
+                  1.0 1.0 1.0 -38.9125938416 -15.5706987381 -16.1056861877 3.05651415289e-09 0.996502518654 -1.44921887824e-08
+                  1.0 0.999999880791 0.999999880791 -38.7599868774 -15.9555358887 -15.2266263962 3.42139871989e-09 0.996502459049 2.59374566269e-08
+                  0.999999940395 1.0 1.0 -38.6305503845 -16.296037674 -14.4524927139 -2.7214674958e-09 0.996502280235 1.23676624497e-08
+                  0.999999880791 1.0 1.0 -38.5253257751 -16.583442688 -13.8015518188 3.20076765092e-08 0.996502101421 -1.71776415314e-09
+                  1.0 0.999999940395 0.999999940395 -38.4459114075 -16.8072929382 -13.2960138321 -7.48079642676e-08 0.996502161026 -4.13997636173e-09
+                  0.999999940395 1.0 1.0 -38.3948631287 -16.9545726776 -12.9640665054 -9.03935593044e-09 0.996502041817 1.7928276641e-09
+                  1.00000011921 1.0 1.0 -38.3764648438 -17.0083503723 -12.8429841995 -7.50446531583e-08 0.996502220631 1.56532120599e-08
+                  1.00000011921 1.0 1.0 -38.3764648438 -17.0083503723 -12.8429841995 3.93663626141e-08 0.996502399445 1.69518905579e-08
+                  0.999999880791 1.00000011921 0.999999940395 -38.3764648438 -17.0083503723 -12.8429861069 -5.6250357261e-08 0.996502041817 -6.82909018224e-09
+                  0.999999880791 1.0 1.0 -38.3764648438 -17.0083503723 -12.8429861069 -1.09651097091e-07 0.996502518654 -1.69807812256e-08
+                  0.999999880791 0.999999940395 0.999999940395 -38.3764648438 -17.0083503723 -12.8429851532 -5.73748248911e-09 0.996501982212 3.26106004422e-08
+                  0.999999880791 1.0 1.0 -38.3764648438 -17.0083503723 -12.8429861069 -5.44200950969e-08 0.996502518654 4.70290384413e-09
+                  1.0 1.0 1.0 -38.3764648438 -17.008348465 -12.8429851532 -6.85561900582e-08 0.996502220631 -1.70829417279e-09
+                  0.999999880791 0.999999940395 0.999999940395 -38.3764648438 -17.0083503723 -12.8429851532 -5.59654473875e-08 0.996502101421 1.16935101602e-08
+                  0.999999880791 0.999999940395 0.999999940395 -38.3764648438 -17.0083503723 -12.8429861069 -4.46986732072e-08 0.99650233984 -1.16322969035e-08
+                  0.999999880791 0.999999940395 1.0 -38.3764648438 -17.0083503723 -12.8429861069 -4.38139871051e-08 0.996502280235 3.83407794402e-08
+                  0.999999940395 1.0 0.999999940395 -38.3764648438 -17.0083503723 -12.8429851532 -5.50666285903e-08 0.996502161026 -4.48647208273e-09
+                  0.999999880791 1.0 1.0 -38.3764648438 -17.0083503723 -12.8429861069 1.49833070395e-08 0.996502280235 -1.49982000153e-08
+                  1.0 1.0 1.0 -38.3764648438 -17.008348465 -12.8429851532 -3.86425718091e-08 0.99650233984 1.85781123818e-09
+                  0.999999880791 0.999999940395 0.999999940395 -38.3764648438 -17.0083503723 -12.8429851532 -1.69984133436e-08 0.996502101421 -3.78954467806e-09
+                  0.999999880791 0.999999940395 1.0 -38.3764648438 -17.0083503723 -12.8429861069 2.76797358367e-08 0.996502161026 2.74379008403e-08
+                  0.999999880791 1.0 0.999999940395 -38.3764648438 -17.0083522797 -12.8429851532 -4.8272170261e-08 0.996502101421 2.88916037761e-08
+                  1.0 1.0 1.0 -38.3764648438 -17.008348465 -12.8429851532 -2.58332839564e-08 0.996502280235 9.71351710177e-09
+                  0.999999880791 0.999999940395 0.999999940395 -38.3764648438 -17.0083503723 -12.8429851532 1.50059307202e-08 0.99650233984 -4.77446349123e-09
+                  0.999999880791 0.999999940395 0.999999940395 -38.3764648438 -17.0083503723 -12.8429851532 -4.46447927516e-08 0.996502578259 -2.32108092746e-08
+                  0.999999880791 1.0 1.0 -38.3764648438 -17.0083522797 -12.8429851532 8.51620001185e-08 0.996502399445 3.00179756607e-08
+                  0.999999821186 0.999999940395 0.999999821186 -38.3764648438 -17.0083503723 -12.8429861069 -4.8408622888e-08 0.996502220631 -3.65545282932e-08
+                  0.999999880791 0.999999940395 0.999999940395 -38.3764648438 -17.0083503723 -12.8429851532 -1.1903777164e-07 0.996502101421 3.52418183525e-08
+                  0.999999880791 0.999999940395 0.999999940395 -38.3764648438 -17.0083503723 -12.8429861069 1.60902491331e-08 0.996501922607 -9.05098662685e-10
+                  0.999999880791 0.999999940395 1.0 -38.3764648438 -17.0083503723 -12.8429861069 -1.85568325151e-08 0.996502220631 2.28520118384e-08
+                  0.999999821186 1.0 0.999999821186 -38.3764648438 -17.0083503723 -12.8429861069 -7.30885503231e-08 0.996502041817 9.00751473409e-10
+                  0.999999880791 1.0 1.0 -38.3764648438 -17.0083503723 -12.8429861069 9.41963573808e-09 0.996502280235 -7.28890103829e-09
+                  0.999999880791 1.0 1.0 -38.3764648438 -17.0083503723 -12.8429861069 -8.86356517071e-08 0.996502101421 2.78101874862e-09
+                  0.999999821186 1.0 0.999999940395 -38.3764648438 -17.0083503723 -12.8429861069 1.40879450328e-08 0.996502280235 -9.2212832925e-09
+                  1.0 1.0 1.0 -38.3764648438 -17.0083503723 -12.8429841995 -1.39892479822e-08 0.996502161026 7.64440777345e-09
+                  0.999999880791 0.999999940395 0.999999940395 -38.3764648438 -17.0083503723 -12.8429851532 -9.8229243406e-08 0.996502041817 3.69850781112e-08
+                  0.999999940395 1.0 0.999999880791 -38.4034576416 -16.966135025 -12.8792352676 -6.6619541883e-08 0.996502280235 2.42735254119e-08
+                  1.0 1.0 1.0 -38.4808654785 -16.8439369202 -12.9885406494 1.03873376567e-09 0.99650233984 1.26689627677e-08
+                  0.999999940395 1.0 1.0 -38.5999031067 -16.654258728 -13.1666955948 -3.16130090994e-08 0.996502280235 3.40873427263e-08
+                  0.999999940395 1.0 0.999999940395 -38.7535018921 -16.4073028564 -13.4113769531 -7.41620098665e-08 0.996502041817 -2.09176889143e-08
+                  1.0 1.0 1.00000011921 -38.9357872009 -16.1116695404 -13.721862793 -2.22838512087e-08 0.996502399445 -2.68173838691e-09
+                  0.999999880791 1.0 0.999999880791 -39.1416244507 -15.7748260498 -14.0988988876 -4.3771031244e-08 0.996502459049 -5.98163563126e-09
+                  0.999999940395 1.0 1.0 -39.3662910461 -15.4035177231 -14.5447597504 -6.90037467166e-08 0.996502697468 -4.15715906144e-10
+                  1.0 1.0 1.0 -39.6051559448 -15.0040950775 -15.0634565353 -7.48462269939e-08 0.996501982212 -8.13916400944e-09
+                  0.999999940395 0.999999940395 1.0 -39.8533058167 -14.5828266144 -15.661190033 -6.20971363219e-08 0.996502280235 3.06538616712e-08
+                  0.999999880791 0.999999940395 0.999999940395 -40.1050682068 -14.1462917328 -16.347196579 -6.77824587569e-08 0.996502280235 1.38540396932e-08
+                  1.0 1.0 1.0 -40.353263855 -13.7019081116 -17.1352519989 -6.41369410914e-08 0.996502399445 4.01279862672e-08
+                  0.999999940395 1.0 1.0 -40.5878601074 -13.2588510513 -18.0466079712 -2.77077294442e-09 0.996502161026 1.47387133609e-08
+                  0.999999880791 0.999999880791 1.0 -40.7931556702 -12.8298368454 -19.1161594391 3.96080546139e-09 0.996502399445 1.08771480711e-08
+                  0.999999880791 1.0 0.999999940395 -40.940826416 -12.4354410172 -20.407793045 -9.54078416271e-08 0.996502280235 -4.27246638068e-09
+                  0.999999880791 1.0 1.0 -40.9673347473 -12.117816925 -22.0636997223 -2.77316711816e-08 0.99650233984 1.32732633773e-08
+                  0.999999940395 0.999999940395 0.999999880791 -40.6320838928 -12.0321645737 -24.6102962494 -2.25362750683e-08 0.996502161026 -1.06393036603e-08
+                }
+              }
+              <Table> Bone.018 {
+                <Xfm$Anim> xform {
+                  <Scalar> fps { 60 }
+                  <Scalar> order { sprht }
+                  <Scalar> contents { ijkprhxyz }
+                  <V> {
+                    0.999999940395 1.00000011921 1.0 8.20429229736 7.50274944305 9.4872751236 1.41138343679e-07 0.552935063839 -4.20913494281e-07
+                    0.999999880791 1.00000011921 1.0 7.49853181839 10.5700283051 6.82308912277 -8.54346069445e-08 0.552935123444 -8.59229842831e-08
+                    0.999999880791 1.0 0.999999880791 6.7741765976 12.6793851852 5.42260456085 1.10404556608e-07 0.552935421467 1.39379807251e-07
+                    0.999999940395 1.0 0.999999940395 6.05769109726 14.4631080627 4.40724277496 -1.43700958688e-07 0.552935123444 3.49160728774e-07
+                    1.0 0.999999940395 0.999999940395 5.3538274765 16.0645275116 3.58063030243 2.53537049133e-08 0.55293494463 -3.50173081642e-08
+                    0.999999880791 1.0 0.999999940395 4.66440248489 17.5445842743 2.85865855217 1.11430551897e-07 0.552935063839 1.86384241374e-07
+                    1.0 0.999999880791 1.0 3.99046254158 18.9357280731 2.19501829147 -1.68395800415e-07 0.552935302258 8.75907772979e-08
+                    0.999999940395 1.0 0.999999940395 3.33293676376 20.2574768066 1.55987584591 -1.55747727604e-07 0.552935123444 -1.71942673433e-07
+                    0.999999940395 1.0 1.0 2.69283914566 21.5224704742 0.931564807892 -3.42459927083e-08 0.552935063839 -4.935631992e-08
+                    0.999999940395 1.00000011921 0.999999940395 2.07144379616 22.7392730713 0.292606383562 4.06043447754e-08 0.552935183048 2.07931577734e-07
+                    1.0 1.0 1.0 1.47038078308 23.9138336182 -0.372538536787 -1.54452841628e-08 0.552934646606 1.67578278365e-07
+                    0.999999940395 1.0 0.999999940395 0.89183819294 25.0502872467 -1.07897222042 -8.28222184168e-08 0.552935063839 -1.43500258787e-07
+                    0.999999940395 1.00000011921 1.0 0.338772475719 26.1514759064 -1.8426617384 2.04771701817e-08 0.552935242653 3.30361338285e-09
+                    1.0 1.0 0.999999940395 -0.184773877263 27.2191638947 -2.68183612823 -6.26882723509e-08 0.552935242653 1.13672200541e-07
+                    1.00000011921 1.00000023842 1.00000011921 -0.673089444637 28.2542381287 -3.61882925034 3.69229269381e-08 0.552935302258 -3.45732509288e-08
+                    1.00000011921 1.00000011921 1.0 -1.1509346962 29.2663879395 -4.66519021988 -4.56625315337e-08 0.55293494463 2.37527800095e-07
+                    1.00000011921 1.0 1.0 -1.64744317532 30.2592201233 -5.81155586243 7.46146433528e-09 0.552934885025 7.32823313143e-09
+                    0.999999880791 0.999999880791 0.999999940395 -2.1602241993 31.2223110199 -7.04914426804 3.10093151157e-09 0.552935123444 1.00029723171e-07
+                    0.999999940395 0.999999940395 0.999999940395 -2.6844522953 32.1433334351 -8.36194419861 2.43007214351e-08 0.552935123444 1.83110117291e-07
+                    1.0 1.0 1.0 -3.2123234272 33.0086174011 -9.72539710999 3.41290693484e-08 0.55293482542 3.56744189745e-09
+                    1.00000011921 1.00000011921 1.00000011921 -3.73302316666 33.8041038513 -11.1059885025 4.3620929091e-08 0.552935183048 -5.27592405319e-08
+                    1.0 1.0 0.999999940395 -4.23325967789 34.5169830322 -12.4628410339 -8.70742482562e-08 0.552935063839 1.5223466221e-07
+                    0.999999940395 0.999999940395 1.0 -4.69862699509 35.137348175 -13.7512149811 1.16138920703e-08 0.552934885025 8.46757259865e-08
+                    1.0 1.00000011921 0.999999880791 -5.11545276642 35.6595573425 -14.9276380539 -2.50544029967e-08 0.552935421467 2.12943163547e-07
+                    1.0 0.999999940395 1.0 -5.47269964218 36.082824707 -15.9550571442 -5.4097718305e-08 0.552935302258 -6.31869312429e-08
+                    0.999999940395 1.0 0.999999940395 -5.76319169998 36.4107398987 -16.8065357208 -1.11580604312e-07 0.552935361862 5.14449851607e-08
+                    1.0 1.00000011921 1.0 -5.9840092659 36.650188446 -17.466588974 -1.2816975925e-08 0.552935183048 9.61450368209e-08
+                    1.0 1.0 0.999999940395 -6.13603258133 36.8098716736 -17.9303340912 -2.20218883129e-08 0.552935063839 -1.08948379207e-08
+                    0.999999940395 1.0 1.0 -6.22301054001 36.8991355896 -18.2013187408 -3.71218291662e-08 0.552935123444 9.94211291072e-08
+                    1.0 1.0 1.0 -6.25057506561 36.9270133972 -18.2889347076 6.80551153209e-08 0.552935183048 -2.92659123602e-08
+                    1.0 1.00000011921 0.999999880791 -6.21354627609 36.8875999451 -18.1808662415 3.59565888175e-08 0.552935004234 -1.05703449549e-07
+                    0.999999940395 1.0 1.0 -6.09785938263 36.7629508972 -17.8475646973 -3.15614059332e-08 0.552935361862 -1.28597974935e-07
+                    1.0 0.999999940395 0.999999940395 -5.89851903915 36.5433578491 -17.2802658081 -2.58852157486e-08 0.552935183048 1.8697657822e-07
+                    1.00000011921 1.0 1.00000011921 -5.61424589157 36.2198944092 -16.4796791077 -7.6357153489e-08 0.552935004234 3.23290038295e-07
+                    0.999999940395 1.00000011921 1.0 -5.24879169464 35.786075592 -15.4595575333 8.35052773596e-08 0.55293494463 -9.8389357106e-08
+                    1.0 1.0 0.999999940395 -4.81175374985 35.2397613525 -14.2491731644 -2.02355661116e-08 0.552935123444 -8.3624129843e-08
+                    0.999999940395 0.999999940395 1.0 -4.31819200516 34.5848312378 -12.8928251266 -4.39500080773e-09 0.552934885025 1.16175350229e-07
+                    0.999999940395 0.999999940395 1.0 -3.78689217567 33.8319168091 -11.4458932877 4.22071977368e-08 0.552935361862 -8.11161058323e-08
+                    1.0 1.0 1.0 -3.23749446869 32.9974098206 -9.9675579071 -9.79674723567e-08 0.552935183048 2.52780552046e-07
+                    1.0 0.999999880791 0.999999880791 -2.68760442734 32.1012763977 -8.51297187805 -8.49879633336e-09 0.552935004234 1.67934388173e-07
+                    1.0 1.0 0.999999940395 -2.15077471733 31.1642208099 -7.12725257874 3.04099501136e-08 0.552935063839 1.98168180532e-07
+                    1.00000011921 1.0 1.00000011921 -1.635825634 30.2053070068 -5.84276390076 -6.51255120943e-08 0.552935302258 -2.97802031923e-08
+                    1.0 1.0 1.0 -1.1472325325 29.2404880524 -4.6794667244 -9.03103583028e-08 0.552935123444 2.09605673263e-07
+                    0.999999940395 1.00000011921 0.999999940395 -0.686205863953 28.2821483612 -3.64709401131 6.44789324156e-08 0.552935123444 -1.8118957712e-07
+                    1.0 1.0 1.0 -0.236876159906 27.298002243 -2.78332710266 4.31709885618e-08 0.552935004234 -1.91348519252e-08
+                    1.0 0.999999940395 1.0 0.219412401319 26.2519207001 -2.1000854969 2.21349871765e-08 0.552934885025 9.35591728535e-08
+                    0.999999880791 1.0 0.999999880791 0.685026526451 25.1535396576 -1.56059920788 2.66915574088e-08 0.552935123444 -4.98750587496e-08
+                    0.999999940395 0.999999940395 1.0 1.16224431992 24.0103778839 -1.13379359245 -6.62001742313e-09 0.55293494463 3.41761960954e-08
+                    0.999999940395 1.0 0.999999940395 1.65315330029 22.828371048 -0.792311251163 -6.1340635682e-08 0.55293482542 -9.24760001908e-08
+                    1.00000011921 1.00000011921 1.00000011921 2.15962910652 21.6121444702 -0.510877549648 -2.24092975287e-08 0.552935063839 3.72645786229e-07
+                    1.0 1.00000011921 0.999999940395 2.68323612213 20.3652362823 -0.264870882034 7.11359291472e-08 0.552935004234 -1.21418892718e-07
+                    0.999999940395 1.00000011921 1.0 3.22525715828 19.0901584625 -0.0288225449622 -2.93004074337e-08 0.552935302258 4.54742547618e-07
+                    1.0 0.999999940395 0.999999940395 3.78665018082 17.7883281708 0.225440993905 -7.93245025221e-09 0.552935063839 -3.78097922749e-07
+                    1.00000011921 1.0 1.00000011921 4.36804199219 16.4599628448 0.531411111355 -4.01052524523e-08 0.552935063839 -3.49701565483e-08
+                    1.0 1.0 0.999999880791 4.96964788437 15.10364151 0.932165980339 -4.14270786564e-08 0.552934885025 7.65364660538e-09
+                    0.999999940395 0.999999940395 0.999999880791 5.59115839005 13.7155971527 1.48813605309 2.33076846712e-08 0.552934646606 -1.37292857971e-07
+                    0.999999940395 1.0 0.999999940395 6.231508255 12.2881355286 2.29326915741 -5.24066443575e-08 0.552935004234 2.00496202751e-07
+                    1.0 0.999999880791 0.999999940395 6.88829135895 10.8058633804 3.51494121552 1.19361871498e-07 0.552935004234 -2.65696353807e-08
+                    1.0 1.0 1.0 7.55615472794 9.23400020599 5.52318668365 -6.89173873525e-08 0.552935361862 -2.73828163699e-07
+                    0.999999940395 1.0 0.999999940395 8.20742797852 7.44756507874 9.68609333038 4.82839546123e-09 0.552934885025 1.23296189258e-07
+                  }
+                }
+              }
+            }
+          }
+        }
+      }
+      <Table> Bone.022 {
+        <Xfm$Anim> xform {
+          <Scalar> fps { 60 }
+          <Scalar> order { sprht }
+          <Scalar> contents { ijkprhxyz }
+          <V> {
+            0.997839510441 0.997839510441 0.997839570045 41.1963768005 23.6855735779 21.3928623199 0.256791830063 0.572016537189 1.50138771534
+            0.997839510441 0.997839510441 0.997839570045 41.1963768005 23.6855716705 21.3928623199 0.256797462702 0.572012841702 1.52919864655
+            0.997839510441 0.997839510441 0.997839570045 41.1963768005 23.6855716705 21.3928623199 0.256796598434 0.572013378143 1.54222095013
+            0.997839510441 0.997839570045 0.997839510441 41.1963806152 23.6855716705 21.3928623199 0.256795763969 0.572013914585 1.5513021946
+            0.997839510441 0.997839570045 0.997839510441 41.1963806152 23.6855716705 21.3928623199 0.256795018911 0.572014451027 1.55828547478
+            0.997839510441 0.997839570045 0.997839510441 41.1963806152 23.6855716705 21.3928623199 0.256794393063 0.572014868259 1.56391358376
+            0.997839510441 0.997839570045 0.997839510441 41.1963806152 23.6855716705 21.3928623199 0.256793886423 0.572015225887 1.5685750246
+            0.997839510441 0.997839570045 0.997839510441 41.1963806152 23.6855716705 21.3928623199 0.256793439388 0.572015523911 1.5725030899
+            0.997839510441 0.997839570045 0.997839510441 41.1963806152 23.6855716705 21.3928623199 0.256793051958 0.572015762329 1.57585120201
+            0.997839510441 0.997839570045 0.997839510441 41.1963806152 23.6855716705 21.3928623199 0.256792724133 0.572015941143 1.57872676849
+            0.997839510441 0.997839570045 0.997839510441 41.1963806152 23.6855716705 21.3928623199 0.256792455912 0.572016179562 1.58120834827
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256792217493 0.572016298771 1.58335566521
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256792008877 0.57201641798 1.58521556854
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791859865 0.572016537189 1.58682560921
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791710854 0.572016656399 1.58821642399
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791591644 0.572016716003 1.58941376209
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791472435 0.572016775608 1.5904392004
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.25679141283 0.572016835213 1.59131145477
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791323423 0.572016894817 1.59204697609
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791263819 0.572016954422 1.59266018867
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791234016 0.572016954422 1.59316408634
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791204214 0.572016954422 1.59357059002
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791174412 0.572017014027 1.59389078617
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791174412 0.572017014027 1.59413504601
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791144609 0.572017014027 1.59431350231
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791144609 0.572017014027 1.59443593025
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791144609 0.572017014027 1.5945122242
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791144609 0.572017014027 1.59455275536
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791144609 0.572017014027 1.59456813335
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791144609 0.572017014027 1.59457051754
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791144609 0.572017014027 1.59365177155
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791144609 0.572017014027 1.5908690691
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791174412 0.572017014027 1.58623480797
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791204214 0.572016954422 1.57985627651
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791234016 0.572016954422 1.57196259499
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791263819 0.572016954422 1.56291842461
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791323423 0.572016894817 1.55321097374
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791353226 0.572016835213 1.54340267181
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.25679141283 0.572016835213 1.53406143188
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791442633 0.572016775608 1.52568900585
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791502237 0.572016775608 1.51867175102
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.25679153204 0.572016716003 1.51326322556
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791591644 0.572016716003 1.50959479809
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791621447 0.572016716003 1.50770151615
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791651249 0.572016656399 1.50675284863
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791681051 0.572016656399 1.50591886044
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791710854 0.572016656399 1.505184412
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791710854 0.572016656399 1.50453746319
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791740656 0.572016596794 1.50396859646
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791770458 0.572016596794 1.50347006321
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791770458 0.572016596794 1.50303554535
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791800261 0.572016596794 1.50265979767
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791800261 0.572016596794 1.50233876705
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791830063 0.572016596794 1.50206851959
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791830063 0.572016596794 1.50184643269
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791830063 0.572016537189 1.50167012215
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791830063 0.572016537189 1.50153768063
+            0.997839510441 0.997839510441 0.997839510441 41.1963768005 23.6855716705 21.3928623199 0.256791830063 0.572016537189 1.50144779682
+            0.997839510441 0.997839510441 0.997839570045 41.1963768005 23.6855716705 21.3928623199 0.256791830063 0.572016537189 1.50139915943
+            0.997839510441 0.997839450836 0.997839450836 41.2033348083 23.6825389862 21.3970775604 0.256791830063 0.572016537189 1.50138771534
+          }
+        }
+      }
+      <Table> Bone.002 {
+        <Xfm$Anim> xform {
+          <Scalar> fps { 60 }
+          <Scalar> order { sprht }
+          <Scalar> contents { ijkprhxyz }
+          <V> {
+            0.99783962965 0.997839510441 0.99783962965 -167.90524292 8.26071027404e-06 80.654296875 0.256791830063 0.559679985046 1.45204114914
+            0.997839570045 0.997839510441 0.997839570045 -167.90524292 -1.17713443615e-05 80.7557907104 0.256790190935 0.559679985046 1.4458591938
+            0.997839450836 0.997839450836 0.997839510441 -167.90524292 -2.62549383478e-05 80.9381561279 0.256789386272 0.559679985046 1.43635189533
+            0.997839570045 0.997839510441 0.99783962965 -167.90524292 -3.55194715667e-05 81.1634750366 0.256789207458 0.559679985046 1.42618393898
+            0.997839450836 0.997839450836 0.997839570045 -167.90524292 -4.00870630983e-05 81.4233322144 0.256789296865 0.559679985046 1.41595983505
+            0.997839450836 0.997839331627 0.997839510441 -167.90524292 -4.14933710999e-05 81.7148513794 0.256789565086 0.559679985046 1.40595734119
+            0.997839450836 0.997839391232 0.997839510441 -167.90524292 -4.03198682761e-05 82.037361145 0.256789952517 0.559679985046 1.39635050297
+            0.997839570045 0.997839570045 0.99783962965 -167.90524292 -3.69989284081e-05 82.3914260864 0.256790339947 0.559679985046 1.38727462292
+            0.997839450836 0.997839450836 0.997839510441 -167.90524292 -3.15156976285e-05 82.7785568237 0.256790727377 0.559679985046 1.37885200977
+            0.997839570045 0.997839570045 0.99783962965 -167.90524292 -2.47646348726e-05 83.201133728 0.256791085005 0.559679985046 1.3712066412
+            0.997839450836 0.997839450836 0.997839510441 -167.90524292 -1.69992072188e-05 83.6624145508 0.256791383028 0.559679985046 1.3644746542
+            0.997839510441 0.997839331627 0.997839510441 -167.90524292 -8.62191973283e-06 84.1667938232 0.256791621447 0.559679985046 1.3588142395
+            0.997839510441 0.997839450836 0.997839570045 -167.90524292 -8.55214636886e-07 84.7200927734 0.256791770458 0.559679985046 1.35441827774
+            0.997839450836 0.997839331627 0.997839510441 -167.90524292 5.65986920265e-06 85.330039978 0.256791830063 0.559679985046 1.351531744
+            0.99783962965 0.997839570045 0.99783962965 -167.90524292 8.23249592941e-06 86.0072860718 0.256791830063 0.559679985046 1.35047888756
+            0.997839450836 0.997839450836 0.997839510441 -167.90524292 7.61640103519e-06 86.8122253418 0.256791830063 0.559679985046 1.35204613209
+            0.997839510441 0.997839450836 0.997839570045 -167.90524292 6.00310704613e-06 87.7947311401 0.256791830063 0.559679985046 1.35678386688
+            0.997839510441 0.997839450836 0.997839570045 -167.90524292 4.05825812777e-06 88.9467849731 0.256791830063 0.559679985046 1.36466729641
+            0.997839510441 0.997839450836 0.997839510441 -167.90524292 2.13511361835e-06 90.2505645752 0.256791830063 0.559679985046 1.37553203106
+            0.997839510441 0.997839391232 0.997839510441 -167.90524292 8.03040052233e-07 91.6762924194 0.256791859865 0.559679985046 1.38903534412
+            0.997839510441 0.997839450836 0.997839510441 -167.90524292 5.105248988e-07 93.1813201904 0.256791859865 0.559679985046 1.40463137627
+            0.997839510441 0.997839331627 0.997839510441 -167.90524292 1.03580464383e-06 94.7116012573 0.256791859865 0.559679985046 1.4215798378
+            0.997839570045 0.997839391232 0.997839570045 -167.90524292 2.61359241449e-06 96.2060546875 0.256791859865 0.559679985046 1.43899667263
+            0.997839510441 0.997839391232 0.997839510441 -167.90524292 4.350297786e-06 97.6032409668 0.256791859865 0.559679985046 1.45594513416
+            0.997839450836 0.997839450836 0.997839510441 -167.90524292 6.11338327872e-06 98.8483352661 0.256791859865 0.559679985046 1.47154116631
+            0.997839510441 0.997839331627 0.997839510441 -167.90524292 7.62163745094e-06 99.8986206055 0.256791830063 0.559679985046 1.48504447937
+            0.997839450836 0.997839450836 0.997839510441 -167.90524292 8.23605569167e-06 100.72580719 0.256791830063 0.559679985046 1.49590921402
+            0.99783962965 0.99783962965 0.99783962965 -167.90524292 8.61423723109e-06 101.315505981 0.256791830063 0.559679985046 1.50379252434
+            0.997839510441 0.997839391232 0.997839510441 -167.90524292 8.42934787215e-06 101.664794922 0.256791830063 0.559679985046 1.50853025913
+            0.997839570045 0.997839510441 0.99783962965 -167.90524292 8.33787271404e-06 101.779052734 0.256791830063 0.559679985046 1.51009750366
+            0.997839510441 0.997839391232 0.997839510441 -167.90524292 8.37048719404e-06 101.620994568 0.256791830063 0.559679985046 1.50848567486
+            0.997839450836 0.997839391232 0.997839510441 -167.90524292 8.28820157039e-06 101.199043274 0.256791859865 0.559679985046 1.50418424606
+            0.997839450836 0.997839391232 0.997839510441 -167.90524292 8.2085844042e-06 100.569618225 0.256791859865 0.559679985046 1.49777245522
+            0.997839450836 0.997839450836 0.997839510441 -167.90524292 8.15996190795e-06 99.7706069946 0.256791859865 0.559679985046 1.48963987827
+            0.99783962965 0.997839510441 0.99783962965 -167.90524292 8.31990018924e-06 98.8287887573 0.256791859865 0.559679985046 1.48006272316
+            0.997839510441 0.997839391232 0.997839510441 -167.90524292 8.41887231218e-06 97.7638626099 0.256791859865 0.559679985046 1.46924340725
+            0.997839510441 0.997839391232 0.997839510441 -167.90524292 8.30671615404e-06 96.5907363892 0.256791859865 0.559679985046 1.45733511448
+            0.997839510441 0.997839450836 0.997839510441 -167.90524292 8.23585833132e-06 95.3208999634 0.256791859865 0.559679985046 1.44445455074
+            0.997839570045 0.997839450836 0.997839570045 -167.90524292 8.12337475509e-06 93.9633102417 0.256791859865 0.559679985046 1.43069183826
+            0.997839510441 0.997839391232 0.997839510441 -167.90524292 8.22180936666e-06 92.5248336792 0.256791859865 0.559679985046 1.41611504555
+            0.99783962965 0.997839510441 0.99783962965 -167.90524292 8.08681579656e-06 91.0104522705 0.256791859865 0.559679985046 1.40077269077
+            0.997839570045 0.997839450836 0.997839570045 -167.90524292 8.28590236779e-06 89.4231567383 0.256791859865 0.559679985046 1.38469445705
+            0.997839570045 0.997839450836 0.997839570045 -167.90524292 8.43245652504e-06 87.7629394531 0.256791830063 0.559679985046 1.3678869009
+            0.997839450836 0.997839450836 0.997839510441 -167.90524292 9.3585022114e-06 86.0287322998 0.256791830063 0.559679985046 1.35048043728
+            0.997839510441 0.997839450836 0.997839510441 -167.907897949 0.0695987045765 85.6507873535 0.256791830063 0.559679985046 1.35734903812
+            0.997839570045 0.997839450836 0.997839510441 -167.910873413 0.136795967817 85.2883987427 0.256791830063 0.559679985046 1.36447417736
+            0.997839510441 0.997839391232 0.997839510441 -167.9140625 0.199344620109 84.9283981323 0.256791830063 0.559679985046 1.37156236172
+            0.997839510441 0.997839450836 0.997839510441 -167.917449951 0.257199376822 84.5705184937 0.256791830063 0.559679985046 1.37860476971
+            0.997839450836 0.997839391232 0.997839450836 -167.920913696 0.310109734535 84.2147750854 0.256791830063 0.559679985046 1.38559520245
+            0.997839510441 0.997839391232 0.997839510441 -167.924423218 0.357661247253 83.8612518311 0.256791830063 0.559679985046 1.39252734184
+            0.997839570045 0.997839570045 0.997839570045 -167.927886963 0.399267792702 83.5101470947 0.256791830063 0.559679985046 1.39939320087
+            0.997839510441 0.997839391232 0.997839450836 -167.931182861 0.434130102396 83.1617507935 0.256791830063 0.559679985046 1.40618264675
+            0.997839510441 0.997839450836 0.997839510441 -167.934188843 0.461159557104 82.816444397 0.256791830063 0.559679985046 1.41288268566
+            0.997839510441 0.997839450836 0.997839510441 -167.936737061 0.478843122721 82.4747848511 0.256791830063 0.559679985046 1.41947495937
+            0.997839510441 0.997839391232 0.997839510441 -167.938583374 0.484999984503 82.1375732422 0.256791830063 0.559679985046 1.42593371868
+            0.997839570045 0.997839510441 0.997839510441 -167.939361572 0.476309329271 81.8060531616 0.256791830063 0.559679985046 1.43221950531
+            0.997839510441 0.997839391232 0.997839510441 -167.938552856 0.447283089161 81.4822540283 0.256791830063 0.559679985046 1.43826794624
+            0.997839570045 0.997839510441 0.997839510441 -167.935180664 0.387591958046 81.1700363159 0.256791830063 0.559679985046 1.4439573288
+            0.997839510441 0.997839391232 0.997839450836 -167.926986694 0.27258631587 80.8785858154 0.256791830063 0.559679985046 1.44899892807
+            0.997839510441 0.997839450836 0.997839450836 -167.934936523 -0.0438988134265 80.6666030884 0.256791830063 0.559679985046 1.45204114914
+          }
+        }
+        <Table> Bone.003 {
+          <Xfm$Anim> xform {
+            <Scalar> fps { 60 }
+            <Scalar> order { sprht }
+            <Scalar> contents { ijkprhxyz }
+            <V> {
+              1.0 1.00000011921 1.0 -62.9530601501 -67.5274810791 130.132705688 2.04970653783e-08 0.37055939436 4.65576235342e-08
+              1.0 1.00000011921 0.999999940395 -52.8191223145 -71.2168960571 120.105804443 2.59170409578e-08 0.370559364557 -3.17515933546e-08
+              1.0 1.00000011921 1.0 -27.9213943481 -75.1352615356 95.4444046021 -4.25609281152e-09 0.37055939436 -1.41306571777e-07
+              1.0 1.0 1.00000011921 7.83068037033 -74.7728118896 59.9617385864 -9.76338387915e-09 0.370559364557 -2.26310596929e-08
+              1.00000011921 1.00000011921 1.00000011921 34.322101593 -69.3207015991 33.7418785095 -3.68925689997e-08 0.37055939436 6.52473843843e-08
+              0.999999940395 1.0 1.0 48.4627838135 -61.2728157043 19.858581543 -2.04042205354e-08 0.37055939436 6.81407783532e-08
+              1.00000011921 1.0 1.0 56.2542991638 -52.2741851807 12.2981672287 3.59181235865e-08 0.370559364557 -1.12337303904e-07
+              1.0 1.0 1.0 60.9774360657 -43.0441741943 7.76847219467 4.82399453716e-09 0.370559483767 1.44793332879e-07
+              1.0 0.999999940395 1.0 64.0635910034 -33.9460678101 4.82573223114 -7.09131384724e-08 0.370559483767 4.26147117594e-08
+              1.0 1.0 0.999999940395 66.1776199341 -25.1910514832 2.79041934013 3.09571279722e-09 0.370559364557 9.11131010639e-08
+              1.0 1.0 0.999999821186 67.654586792 -16.9060173035 1.30903577805 -2.36153976374e-08 0.37055939436 8.71017817872e-08
+              1.0 0.999999940395 1.0 68.6722564697 -9.1625623703 0.179707020521 -2.33676757944e-08 0.370559453964 8.81670203512e-08
+              1.0 1.0 1.0 69.3239364624 -1.99457752705 -0.723467469215 4.35851745806e-08 0.370559364557 4.80357869037e-08
+              1.0 1.0 1.00000011921 69.6502838135 4.58799982071 -1.48675727844 3.12373735767e-08 0.37055939436 -7.43791304103e-08
+              1.0 1.0 1.0 69.6512908936 10.5865564346 -2.17634487152 1.43259892837e-08 0.37055939436 -4.9989395734e-08
+              0.999999940395 0.999999880791 1.00000011921 69.4050979614 16.4080677032 -2.87881278992 -2.27073844172e-08 0.37055939436 4.67604355237e-09
+              1.0 0.999999940395 1.0 68.9923171997 22.4600830078 -3.66550040245 -6.87577861314e-09 0.37055939436 2.84521242122e-08
+              0.999999940395 1.0 1.0 68.3772888184 28.7272491455 -4.58050727844 -8.44356975449e-08 0.370559424162 5.53358567856e-08
+              1.00000011921 1.00000011921 1.00000011921 67.5083084106 35.1625175476 -5.6828327179 -1.02160157667e-07 0.370559424162 4.84477311602e-08
+              0.999999880791 0.999999880791 0.999999880791 66.3119125366 41.6786804199 -7.05278968811 -2.59728789587e-08 0.37055939436 -1.73868556885e-07
+              1.0 1.0 1.0 64.6856079102 48.1438713074 -8.79990577698 5.11453768226e-09 0.370559364557 4.66720884162e-10
+              1.0 0.999999940395 0.999999940395 62.4899940491 54.3853797913 -11.0712223053 -8.38315870055e-08 0.37055939436 1.12173530908e-07
+              1.0 1.0 1.0 59.5449142456 60.2037811279 -14.0552024841 -4.51735076012e-08 0.37055939436 -1.1845310155e-07
+              1.0 1.0 1.0 55.6432609558 65.3966064453 -17.9677886963 -8.34998843402e-08 0.370559424162 3.40338282001e-08
+              0.999999940395 0.999999940395 1.0 50.6137161255 69.786605835 -22.9890785217 -3.69582870974e-08 0.370559364557 8.79134063325e-08
+              1.0 1.00000011921 1.00000011921 44.4800186157 73.2514648438 -29.1035251617 -2.76094134222e-08 0.370559424162 -5.15294473757e-08
+              1.0 1.00000011921 1.0 37.7162666321 75.7534179688 -35.8441543579 -1.33448425643e-08 0.37055939436 -1.44387675149e-08
+              0.999999880791 0.999999940395 0.999999940395 31.3997192383 77.3580169678 -42.1394691467 -2.54266119271e-08 0.370559334755 1.63700093481e-07
+              1.0 1.00000011921 0.999999880791 26.921081543 78.2128143311 -46.6031684875 -4.55660185139e-08 0.370559364557 1.85830479893e-08
+              1.0 1.00000011921 1.0 25.3260002136 78.4733047485 -48.192741394 2.65287458667e-10 0.370559364557 -7.32448341978e-08
+              1.0 1.0 1.00000011921 27.2560348511 78.1530914307 -46.2663879395 -8.64609006612e-09 0.370559483767 -1.37200828476e-09
+              1.0 1.0 0.999999940395 32.5608177185 77.0924530029 -40.970905304 -9.20562470696e-09 0.370559364557 1.9181669586e-08
+              1.0 1.00000011921 0.999999940395 39.7313537598 75.086227417 -33.8118057251 -2.73937637019e-08 0.370559334755 -8.69203820031e-10
+              0.999999940395 1.00000011921 1.0 46.9811630249 71.9657669067 -26.5707969666 -3.34566472304e-08 0.370559364557 2.94400841483e-08
+              1.00000011921 1.00000011921 1.00000011921 53.1713829041 67.6963272095 -20.3804950714 -4.50603181434e-08 0.370559364557 -6.86311008025e-11
+              1.0 1.0 0.999999940395 57.9824180603 62.3860931396 -15.5529193878 8.21451617838e-09 0.370559364557 -3.58096485797e-08
+              0.999999940395 0.999999880791 0.999999940395 61.5529899597 56.2485694885 -11.9408340454 4.18860501838e-08 0.37055939436 1.81158185342e-07
+              1.0 1.0 1.0 64.1506500244 49.5576019287 -9.26783752441 -5.44530927016e-08 0.37055939436 -2.93726181155e-08
+              0.999999821186 0.999999940395 0.999999940395 66.0243911743 42.6012153625 -7.27653455734 -5.14547124908e-08 0.370559334755 1.24954837588e-07
+              1.00000011921 0.999999940395 0.999999940395 67.3668441772 35.6386833191 -5.76671361923 5.81608468053e-08 0.37055939436 8.42341734142e-08
+              1.0 1.00000011921 1.0 68.3170318604 28.8706665039 -4.59276485443 5.51721619502e-08 0.370559424162 -5.80845842535e-08
+              1.0 1.0 1.00000011921 68.972366333 22.4286174774 -3.65138363838 -6.03023364576e-09 0.370559453964 4.77477364313e-08
+              1.0 1.0 1.0 69.400177002 16.3805675507 -2.86950063705 3.99840942578e-08 0.37055939436 7.62745386851e-08
+              1.00000011921 1.0 1.0 69.6464691162 10.7456550598 -2.19492459297 1.32675355147e-08 0.370559364557 4.90878733217e-08
+              1.00000011921 1.00000011921 1.00000011921 69.6778869629 5.13351678848 -1.55183005333 3.47053301653e-08 0.370559364557 -1.20937073689e-07
+              1.0 0.999999940395 1.00000011921 69.444442749 -0.896826446056 -0.857063651085 -4.3440664399e-08 0.370559453964 -1.40206495303e-08
+              1.00000011921 0.999999940395 1.0 68.9482650757 -7.35540342331 -0.0619386658072 -1.67306115628e-08 0.37055939436 -1.02078345776e-11
+              1.0 1.00000011921 1.0 68.1663818359 -14.2414388657 0.892671406269 -1.14736815604e-08 0.370559424162 -8.91990659113e-09
+              1.00000011921 1.00000011921 1.00000011921 67.0454711914 -21.5380153656 2.08653831482 -1.18730476117e-07 0.37055939436 -7.36539007562e-08
+              0.999999940395 0.999999880791 0.999999940395 65.4884033203 -29.2054653168 3.63666009903 -2.3645194247e-08 0.370559364557 -9.77049978701e-08
+              0.999999940395 1.00000011921 1.0 63.32604599 -37.1733932495 5.72743749619 -1.02633741506e-07 0.37055939436 -4.15612539939e-08
+              1.0 0.999999940395 1.0 60.2586975098 -45.3294792175 8.67059612274 -1.13084510645e-07 0.370559364557 -1.57929207489e-07
+              0.999999880791 1.0 0.999999880791 55.7289123535 -53.4998664856 13.033323288 8.41284730768e-09 0.370559424162 7.43135402104e-08
+              1.0 1.0 0.999999880791 48.6328277588 -61.404132843 19.9276542664 6.92575419237e-09 0.370559364557 -1.24232215626e-07
+              1.0 1.0 1.0 36.6984596252 -68.5353851318 31.6328678131 -1.32668533936e-08 0.370559364557 -6.88186148068e-08
+              1.0 1.0 1.0 15.9418354034 -73.864654541 52.1400222778 -5.31607398102e-08 0.370559334755 -2.18141323671e-07
+              1.0 1.0 0.999999940395 -14.2794694901 -75.7058486938 82.099609375 -6.99925237768e-08 0.370559424162 2.90097759148e-08
+              1.0 1.0 1.00000011921 -41.251285553 -73.657409668 108.808914185 -9.21692677736e-09 0.37055939436 -1.03450020106e-07
+              1.00000011921 1.00000011921 1.0 -56.9719657898 -69.9276657104 124.289047241 -1.94759479655e-08 0.37055939436 -6.39818225068e-08
+              1.0 1.00000011921 1.0 -62.9530601501 -67.5274887085 130.132705688 -9.1434408489e-08 0.370559424162 4.16406003012e-08
+            }
+          }
+          <Table> Bone.004 {
+            <Xfm$Anim> xform {
+              <Scalar> fps { 60 }
+              <Scalar> order { sprht }
+              <Scalar> contents { ijkprhxyz }
+              <V> {
+                1.00000011921 1.00000011921 1.00000011921 4.73146343231 15.0761260986 -65.2374343872 -2.90529573732e-08 0.307591855526 1.6948719761e-08
+                1.0 1.0 1.0 4.91110372543 14.6624565125 -62.6265258789 9.36965065534e-08 0.307591855526 -4.51357564657e-08
+                0.999999940395 0.999999940395 0.999999940395 5.11335277557 14.0854787827 -59.1062583923 5.82509649405e-08 0.307591825724 -1.96548093356e-08
+                1.00000011921 1.00000011921 1.00000011921 5.28468799591 13.4590091705 -55.378692627 -2.03706171931e-08 0.307591825724 -1.01789430218e-08
+                1.0 1.0 1.00000011921 5.41504144669 12.8046960831 -51.560710907 6.42742961077e-08 0.307591885328 -2.0663872391e-08
+                0.999999940395 1.0 1.0 5.50018072128 12.1343231201 -47.7046089172 -1.22830996929e-07 0.307591795921 3.68070480761e-08
+                0.999999940395 1.00000011921 0.999999940395 5.53840780258 11.4567832947 -43.8429946899 6.02685190643e-08 0.307591825724 -8.11965321645e-08
+                0.999999940395 1.0 1.0 5.52967214584 10.779718399 -40.0001716614 -1.0935589323e-08 0.307591736317 -1.28948585143e-08
+                1.0 1.0 1.0 5.4751906395 10.1099882126 -36.1961631775 -1.9383618266e-08 0.307591915131 -2.12427337942e-08
+                0.999999940395 0.999999940395 1.0 5.37723398209 9.45377349854 -32.4483833313 -6.75656730564e-09 0.307591885328 -1.94043643376e-08
+                0.999999940395 1.0 1.0 5.2389421463 8.81658840179 -28.7724456787 1.99687377744e-10 0.307591825724 -9.74619212002e-08
+                1.0 1.0 1.00000011921 5.06416559219 8.20321941376 -25.1825313568 -4.35744631488e-08 0.307591795921 -1.66985607564e-08
+                0.999999940395 1.0 1.0 4.8573050499 7.61769914627 -21.6916255951 -1.3168340196e-08 0.307591944933 -3.92555996598e-08
+                1.00000011921 1.00000011921 1.0 4.62315177917 7.06328630447 -18.3116512299 6.7518031166e-09 0.307591885328 -4.31055866557e-08
+                1.00000011921 1.0 1.0 4.36674928665 6.54246473312 -15.0535440445 -3.29110108055e-08 0.307591885328 -8.21959105224e-08
+                1.0 1.0 1.0 4.09325885773 6.05697488785 -11.9274330139 -9.91757147517e-08 0.307591795921 -1.94754612437e-08
+                1.0 1.0 1.00000011921 3.80784296989 5.60787200928 -8.94267845154 -1.58786576776e-07 0.307591885328 -3.4315444708e-08
+                1.00000011921 1.0 0.999999940395 3.51559114456 5.19560098648 -6.10809421539 -7.36297778303e-08 0.307591766119 -4.35553175748e-08
+                1.00000011921 0.999999940395 0.999999880791 3.22143101692 4.82007837296 -3.43202662468 -1.93135605286e-08 0.307591855526 1.75413532588e-08
+                1.0 1.0 1.0 2.930113554 4.4807934761 -0.922630310059 -4.85872391209e-08 0.307591885328 5.3189591398e-08
+                1.0 1.0 0.999999940395 2.64617300034 4.17691802979 1.41190600395 -1.21142704756e-07 0.307591795921 4.91945773007e-09
+                1.0 1.00000011921 1.0 2.37395238876 3.90739965439 3.56309318542 -1.65700924981e-07 0.307591915131 -2.68015796223e-08
+                1.0 1.00000011921 1.0 2.11762309074 3.67108535767 5.52177238464 -3.40714692015e-08 0.307591825724 2.71938898067e-08
+                1.0 1.00000011921 1.00000011921 1.88123619556 3.46682667732 7.27771615982 1.14822434227e-07 0.307591676712 -1.66103468757e-08
+                1.0 1.0 1.0 1.66880166531 3.29360175133 8.8190946579 -8.9312095497e-08 0.307591944933 -6.79296334738e-08
+                0.999999940395 1.0 0.999999940395 1.48438107967 3.1506421566 10.1318597794 5.45489839965e-08 0.307591825724 6.25084695116e-08
+                1.00000011921 1.0 1.0 1.33219766617 3.0375957489 11.1989059448 -5.40029212459e-08 0.307591795921 -1.85876753989e-08
+                1.0 1.0 1.0 1.21679925919 2.95471048355 11.9989843369 -6.76980320691e-08 0.307591825724 -4.88254148223e-09
+                1.00000011921 1.00000011921 1.00000011921 1.14323449135 2.90310025215 12.5052700043 6.23576426051e-08 0.307591795921 -3.69871067107e-08
+                1.0 1.0 1.0 1.11726903915 2.88510537148 12.6833124161 -1.18504559055e-07 0.307591855526 -5.46095169085e-10
+                0.999999940395 0.999999880791 0.999999940395 1.14166224003 2.90201735497 12.5159654617 -5.11890547727e-08 0.307591795921 -7.54264632974e-08
+                0.999999940395 1.0 1.00000011921 1.21109306812 2.95073199272 12.0378055573 -3.9784735506e-09 0.307591915131 -2.03584136216e-08
+                1.0 1.0 1.0 1.32048356533 3.02925562859 11.27876091 -1.15492603925e-07 0.307591915131 -6.16523081476e-08
+                1.00000011921 1.0 1.0 1.46531772614 3.13664865494 10.2625656128 -8.85743602907e-08 0.307591855526 4.12725675858e-08
+                1.0 1.0 0.999999940395 1.64147019386 3.27273774147 9.00830459595 -1.60735158516e-08 0.307591855526 -1.74313417034e-08
+                1.00000011921 1.0 1.00000011921 1.84505593777 3.43788671494 7.53157186508 4.04514572949e-08 0.307591885328 -1.16142881978e-08
+                1.0 1.00000011921 1.0 2.07231903076 3.63284230232 5.84534883499 5.83931445419e-08 0.307591855526 -3.62796264142e-08
+                1.00000011921 1.00000011921 1.00000011921 2.31951737404 3.85858821869 3.96069836617 6.07626482463e-09 0.307591915131 6.85713885673e-08
+                1.00000011921 1.0 1.0 2.5828537941 4.11623001099 1.88730597496 1.49604755251e-08 0.307591736317 -2.60269263919e-08
+                1.0 1.00000011921 1.00000011921 2.8584113121 4.40688419342 -0.366056352854 -3.11539807285e-08 0.307591825724 -8.3395583772e-09
+                1.0 0.999999940395 1.0 3.14210414886 4.7315735817 -2.79117369652 4.9831911042e-08 0.307591855526 -1.67573404042e-08
+                1.0 1.00000011921 1.0 3.42964601517 5.09112501144 -5.38006162643 5.4309264641e-08 0.307591944933 -8.262990292e-09
+                1.0 1.00000011921 0.999999880791 3.71655654907 5.48607349396 -8.12470531464 -1.17776632891e-08 0.307591795921 3.37395320571e-08
+                1.0 1.0 1.0 3.99817204475 5.91655015945 -11.0168094635 -1.1348138429e-07 0.307591974735 -1.3210010863e-08
+                0.999999880791 0.999999880791 0.999999880791 4.26967191696 6.38220405579 -14.0476360321 -7.8158294059e-08 0.307591855526 -1.04557527081e-08
+                1.00000011921 0.999999940395 1.0 4.52615785599 6.88210296631 -17.2078018188 7.37685690311e-09 0.307591855526 -1.56800386009e-08
+                1.0 1.00000011921 1.00000011921 4.76272630692 7.4146733284 -20.487154007 2.69551083676e-08 0.307591795921 -6.79181013652e-08
+                1.0 1.0 1.0 4.97457695007 7.97762870789 -23.8746299744 -3.21574411544e-08 0.307591855526 6.27032292755e-09
+                1.0 0.999999880791 0.999999940395 5.15714359283 8.56794643402 -27.3581504822 -5.07746591438e-08 0.307591766119 -3.18150270573e-08
+                1.0 1.0 0.999999940395 5.3062210083 9.18185710907 -30.9244842529 2.80554175447e-08 0.307591885328 -2.88213737321e-08
+                0.999999940395 0.999999940395 0.999999940395 5.41812944412 9.81485176086 -34.5591201782 8.63559357356e-09 0.307591915131 -4.83195883305e-08
+                1.0 1.00000011921 1.00000011921 5.48986911774 10.4617156982 -38.2460212708 -5.05905717318e-08 0.307591736317 -3.85861476104e-08
+                1.0 1.0 1.00000011921 5.51928281784 11.1165714264 -41.9672584534 7.91028114122e-08 0.307591915131 -5.03242709726e-08
+                0.999999880791 1.00000011921 0.999999940395 5.50523376465 11.7729043961 -45.7023963928 -5.1247916133e-08 0.307591855526 -5.99841811777e-08
+                1.0 1.00000011921 1.00000011921 5.44781637192 12.4235124588 -49.4271469116 -6.4144366263e-08 0.307591766119 -9.39958155755e-08
+                0.999999940395 1.0 0.999999880791 5.34866523743 13.0602607727 -53.1107063293 1.51945172888e-07 0.307591885328 -7.90796406136e-09
+                1.00000011921 1.00000011921 1.00000011921 5.21152925491 13.6733551025 -56.7096214294 -1.05030352415e-07 0.307591795921 4.32826539054e-08
+                1.0 1.00000011921 1.0 5.0437207222 14.2489414215 -60.1509208679 2.68660649283e-09 0.307591855526 -1.34211948222e-08
+                1.00000011921 1.00000011921 1.0 4.86126995087 14.7596769333 -63.2689361572 -8.36068352328e-08 0.307591855526 4.63478890822e-08
+                1.00000011921 1.00000011921 0.999999940395 4.73146152496 15.076128006 -65.237449646 3.58151233115e-08 0.307591766119 5.79738923534e-08
+              }
+            }
+            <Table> Bone.005 {
+              <Xfm$Anim> xform {
+                <Scalar> fps { 60 }
+                <Scalar> order { sprht }
+                <Scalar> contents { ijkprhxyz }
+                <V> {
+                  1.0 1.00000011921 1.00000011921 -45.3079185486 -90.0944976807 134.34979248 2.21531308853e-08 0.739777445793 -5.8370250855e-09
+                  1.0 1.00000011921 1.00000011921 122.735031128 -89.8880462646 -32.3335494995 -2.41342252849e-08 0.739777326584 1.80385502091e-08
+                  1.0 1.00000011921 1.00000011921 105.358932495 -89.8584060669 -12.8595685959 -1.16688259055e-09 0.739777386189 3.1291481406e-08
+                  1.0 1.00000011921 1.0 89.0779266357 -89.8162155151 5.67164373398 -2.87350587769e-10 0.739777445793 -1.32315092216e-08
+                  1.00000023842 1.0 1.00000011921 75.3898925781 -89.7579116821 21.6271133423 1.13598597196e-08 0.739777445793 -2.38197550573e-08
+                  1.00000011921 1.00000011921 1.0 64.4616851807 -89.6810073853 34.7762870789 6.03772853935e-09 0.739777445793 -3.8107273781e-08
+                  1.0 1.0 1.0 55.8901023865 -89.5836715698 45.4821357727 -1.1791815524e-08 0.739777386189 7.66386420992e-08
+                  1.0 1.0 0.999999940395 49.1471786499 -89.4642486572 54.2408599854 -2.53481555745e-08 0.739777565002 4.65890295231e-08
+                  0.999999940395 1.0 1.0 43.7664794922 -89.3208465576 61.4905548096 6.88959911344e-09 0.739777326584 4.0285211611e-08
+                  1.0 1.00000011921 1.00000011921 39.3835487366 -89.1511306763 67.5679321289 8.7570910523e-09 0.739777445793 5.32088577643e-08
+                  1.00000011921 1.00000011921 1.00000011921 35.7234077454 -88.9521560669 72.7177581787 -1.63992712743e-08 0.739777445793 4.76902748403e-08
+                  1.00000023842 1.00000023842 1.00000023842 32.5777854919 -88.720085144 77.1137695313 2.11307913389e-08 0.739777386189 3.681908467e-08
+                  1.00000011921 1.00000011921 1.0 29.7846107483 -88.4499435425 80.8765945435 4.13548093547e-08 0.739777386189 -1.63218274452e-08
+                  1.00000011921 1.0 1.00000011921 27.2105789185 -88.135055542 84.086517334 -1.30301360812e-08 0.739777445793 2.53986893739e-08
+                  1.00000011921 1.0 1.0 24.7379932404 -87.7663192749 86.7910232544 1.26677779377e-09 0.739777445793 6.40454302925e-08
+                  1.0 1.0 1.0 21.63646698 -87.3101577759 89.5652618408 1.0772295056e-08 0.739777386189 5.7722644442e-08
+                  1.00000011921 1.00000011921 0.999999940395 17.7397480011 -86.7349853516 92.4705505371 2.96231377206e-08 0.739777386189 2.80326819535e-08
+                  1.0 0.999999880791 0.999999880791 13.560172081 -86.0370407104 94.994392395 -4.94211036539e-08 0.739777386189 -2.01772945019e-08
+                  1.00000011921 1.0 1.0 9.37414741516 -85.221862793 96.8872833252 -3.50217916889e-08 0.739777505398 -2.57950159011e-08
+                  1.00000023842 1.00000011921 1.00000023842 5.31438446045 -84.306678772 98.0815353394 -1.39876732419e-08 0.739777326584 5.7379956786e-08
+                  1.0 1.00000011921 1.0 1.4476211071 -83.3211746216 98.6215515137 -1.77127841283e-08 0.739777386189 -2.08816146596e-08
+                  1.0 1.00000011921 1.00000011921 -2.17723870277 -82.3059539795 98.6165618896 1.29175944608e-07 0.739777445793 1.67830602749e-08
+                  1.00000023842 1.00000011921 1.0 -5.50840091705 -81.3082580566 98.2090148926 -4.39374368e-08 0.739777505398 2.08853059291e-08
+                  1.00000011921 1.00000011921 1.0 -8.48923301697 -80.375328064 97.5509109497 -1.75829146798e-08 0.739777505398 -2.5250249891e-08
+                  1.00000011921 1.00000011921 1.00000023842 -11.065861702 -79.5477142334 96.7846298218 -3.08851682007e-08 0.739777505398 2.1676612505e-08
+                  1.0 1.00000011921 1.0 -13.1959114075 -78.8548355103 96.0292434692 -7.48897477365e-09 0.739777326584 5.47483693936e-08
+                  1.00000011921 0.999999940395 1.0 -14.853518486 -78.3137969971 95.3738021851 2.68177036133e-08 0.739777445793 3.79309241794e-08
+                  1.0 1.0 1.00000011921 -16.0292224884 -77.931060791 94.8770980835 4.65418175111e-08 0.739777445793 2.34963799528e-08
+                  1.0 1.00000011921 1.0 -16.7262859344 -77.7056121826 94.5718078613 1.01393474949e-07 0.739777326584 2.33240307068e-08
+                  1.00000023842 1.00000023842 1.00000023842 -16.9556121826 -77.6320495605 94.4700241089 -1.52408254905e-08 0.739777505398 3.89169443338e-08
+                  1.00000011921 1.00000011921 1.0 -16.6975002289 -77.7208251953 94.5906448364 -1.59133151101e-10 0.739777505398 -1.00162278471e-09
+                  1.00000011921 1.0 1.00000011921 -15.9118976593 -77.9925537109 94.9515457153 4.6256207753e-08 0.739777386189 3.35928334039e-08
+                  1.00000011921 1.00000011921 1.00000011921 -14.5854663849 -78.452507019 95.5347518921 -8.04009232525e-08 0.739777386189 3.89403087553e-09
+                  1.0 1.00000011921 1.0 -12.7150268555 -79.099029541 96.2935791016 2.6010505394e-07 0.739777445793 -1.75793957169e-08
+                  1.00000023842 1.00000011921 1.00000011921 -10.3138713837 -79.9188461304 97.1445388794 -1.55457399842e-07 0.739777326584 2.27279279841e-08
+                  1.0 1.0 1.00000011921 -7.41514110565 -80.8831100464 97.962059021 1.10531303221e-07 0.739777445793 -1.20151826266e-08
+                  1.00000011921 1.00000023842 1.00000011921 -4.06898260117 -81.9462966919 98.5806503296 1.38529216542e-07 0.739777386189 4.64504665842e-08
+                  1.0 1.00000011921 1.0 -0.33272844553 -83.0501022339 98.8075714111 -4.40344827268e-09 0.739777326584 -1.96771132721e-08
+                  1.0 1.0 1.00000011921 3.74057531357 -84.1319351196 98.4466323853 -9.8266728088e-09 0.739777505398 -4.58310500662e-09
+                  1.00000011921 1.0 1.00000011921 8.10246753693 -85.1351013184 97.3327407837 -1.80672046213e-08 0.739777386189 -1.398412941e-09
+                  1.00000011921 1.00000011921 1.0 12.6794633865 -86.0165863037 95.38331604 -4.241283591e-08 0.739777565002 -5.91141038342e-08
+                  1.00000011921 1.00000011921 1.00000011921 17.2955474854 -86.7507324219 92.6801605225 9.94169724322e-09 0.739777386189 -4.07238296418e-08
+                  1.0 1.00000011921 1.0 21.544927597 -87.3288574219 89.5873031616 -4.12674943107e-08 0.739777326584 2.03126617748e-08
+                  1.00000011921 1.0 1.00000011921 24.6735553741 -87.7559509277 86.8551483154 1.04351549624e-09 0.739777505398 6.14256023823e-08
+                  1.00000011921 1.00000011921 1.00000011921 26.8521575928 -88.0856018066 84.5056915283 7.37037186838e-09 0.739777445793 -7.87624614418e-08
+                  1.0 1.0 1.00000011921 29.1093177795 -88.3735427856 81.7519683838 8.57148592104e-08 0.739777445793 -1.45755034708e-08
+                  1.0 1.0 1.0 31.5256538391 -88.6256637573 78.5615692139 -1.23511778582e-08 0.739777386189 -1.78605841228e-09
+                  1.0 1.0 1.00000011921 34.1902999878 -88.846496582 74.8836669922 2.8954978859e-08 0.739777445793 -5.66481759279e-08
+                  1.0 1.00000011921 1.00000011921 37.2086448669 -89.0395965576 70.6440963745 6.56853913483e-08 0.739777386189 1.33760087451e-08
+                  1.00000011921 1.0 0.999999940395 40.710483551 -89.2077941895 65.7400283813 3.91141661282e-08 0.739777505398 -1.56053303613e-09
+                  1.0 1.00000011921 1.00000011921 44.8597755432 -89.3533859253 60.0312690735 4.67986680519e-08 0.739777207375 5.3217528162e-09
+                  1.00000011921 1.00000011921 1.0 49.866153717 -89.4782104492 53.3303222656 -2.02310790343e-09 0.739777505398 4.79595652081e-09
+                  1.00000023842 1.00000011921 1.00000023842 55.9952392578 -89.5838317871 45.3934173584 1.58137574147e-08 0.739777445793 -8.23630053048e-09
+                  1.0 1.0 1.0 63.5680809021 -89.6715621948 35.9218940735 -1.71146918859e-08 0.739777505398 1.22958340398e-07
+                  1.00000011921 1.0 1.0 72.9291534424 -89.7426223755 24.5968437195 -3.30771534607e-08 0.739777505398 6.79747742538e-08
+                  1.00000011921 1.0 1.00000011921 84.3381118774 -89.7983474731 11.1901750565 -6.5962133533e-08 0.739777386189 -5.15941351864e-08
+                  1.00000011921 1.0 1.0 97.743850708 -89.840461731 -4.20335388184 2.84014731733e-08 0.739777565002 -4.79327262326e-08
+                  0.999999940395 1.0 1.0 112.460479736 -89.8713150024 -20.8255653381 -8.81951134346e-09 0.739777445793 9.48780254362e-09
+                  1.0 0.999999940395 1.0 126.671791077 -89.8935394287 -36.7115898132 -9.87538442132e-08 0.739777326584 -5.01731562963e-08
+                  1.0 1.00000011921 1.00000011921 -45.307559967 -90.0944976807 134.349472046 8.64531699563e-08 0.739777386189 7.06055800492e-08
+                }
+              }
+            }
+          }
+        }
+      }
+      <Table> Bone.006 {
+        <Xfm$Anim> xform {
+          <Scalar> fps { 60 }
+          <Scalar> order { sprht }
+          <Scalar> contents { ijkprhxyz }
+          <V> {
+            0.997839510441 0.997839450836 0.997839570045 -8.88082695007 -52.3807106018 69.7905960083 0.256791740656 0.559679985046 1.45204114914
+            0.997839570045 0.997839450836 0.997839510441 -8.75585651398 -53.1917076111 70.3810958862 0.256793051958 0.559679985046 1.44585895538
+            0.997839510441 0.997839450836 0.997839570045 -8.73324680328 -53.4236488342 71.2254180908 0.256793648005 0.559679985046 1.4363514185
+            0.997839570045 0.997839510441 0.99783962965 -8.740858078 -53.4785461426 72.1630325317 0.256793826818 0.559679985046 1.42618346214
+            0.997839570045 0.997839450836 0.997839570045 -8.76105308533 -53.444065094 73.1568145752 0.256793737411 0.559679985046 1.41595935822
+            0.997839510441 0.997839450836 0.997839570045 -8.78587627411 -53.3577232361 74.1911697388 0.256793558598 0.559679985046 1.40595686436
+            0.997839510441 0.997839450836 0.997839510441 -8.81097507477 -53.2402801514 75.2582626343 0.256793260574 0.559679985046 1.39635014534
+            0.997839570045 0.997839450836 0.99783962965 -8.83377933502 -53.1052284241 76.3540878296 0.256792962551 0.559679985046 1.38727426529
+            0.997839450836 0.997839450836 0.997839450836 -8.85277938843 -52.9624977112 77.476890564 0.256792664528 0.559679985046 1.37885177135
+            0.997839570045 0.997839450836 0.997839570045 -8.86718559265 -52.8201980591 78.6264877319 0.256792396307 0.559679985046 1.37120652199
+            0.997839510441 0.997839450836 0.997839570045 -8.87676811218 -52.6856422424 79.804069519 0.256792157888 0.559679985046 1.36447453499
+            0.997839510441 0.997839450836 0.997839510441 -8.88180351257 -52.5660476685 81.0120620728 0.256792008877 0.559679985046 1.35881412029
+            0.997839570045 0.997839510441 0.997839510441 -8.88307666779 -52.4691085815 82.2543945313 0.256791889668 0.559679985046 1.35441827774
+            0.997839510441 0.997839450836 0.997839510441 -8.88200569153 -52.4036712646 83.5368347168 0.256791830063 0.559679985046 1.351531744
+            0.99783962965 0.997839510441 0.997839689255 -8.88083076477 -52.380695343 84.8677139282 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839570045 -8.88071155548 -52.3831100464 86.3460998535 0.256791830063 0.559679985046 1.35204613209
+            0.997839570045 0.997839450836 0.997839570045 -8.88073253632 -52.3850326538 88.0602340698 0.256791830063 0.559679985046 1.35678386688
+            0.997839570045 0.997839450836 0.997839570045 -8.88086891174 -52.3864250183 89.9962844849 0.256791830063 0.559679985046 1.36466729641
+            0.997839570045 0.997839450836 0.997839570045 -8.88108730316 -52.3872833252 92.1260757446 0.256791800261 0.559679985046 1.37553203106
+            0.99783962965 0.997839391232 0.997839570045 -8.88133716583 -52.3876228333 94.4041061401 0.256791800261 0.559679985046 1.38903534412
+            0.99783962965 0.997839570045 0.99783962965 -8.8815574646 -52.3874702454 96.7665786743 0.256791770458 0.559679985046 1.40463137627
+            0.997839570045 0.997839450836 0.997839510441 -8.88170909882 -52.386920929 99.1340103149 0.256791770458 0.559679985046 1.4215798378
+            0.997839510441 0.997839450836 0.997839510441 -8.88175678253 -52.3860588074 101.418060303 0.256791740656 0.559679985046 1.43899667263
+            0.997839510441 0.997839450836 0.997839450836 -8.88170051575 -52.3850097656 103.531486511 0.256791740656 0.559679985046 1.45594513416
+            0.997839450836 0.997839450836 0.997839391232 -8.8815574646 -52.3839073181 105.398292542 0.256791740656 0.559679985046 1.47154116631
+            0.997839510441 0.997839450836 0.997839510441 -8.88136291504 -52.3828544617 106.961135864 0.256791710854 0.559679985046 1.48504447937
+            0.997839570045 0.997839450836 0.997839510441 -8.88115978241 -52.3819503784 108.18409729 0.256791710854 0.559679985046 1.49590921402
+            0.997839570045 0.997839450836 0.997839510441 -8.88098335266 -52.3812561035 109.051239014 0.256791710854 0.559679985046 1.50379252434
+            0.997839570045 0.997839510441 0.997839570045 -8.88086700439 -52.380821228 109.562576294 0.256791710854 0.559679985046 1.50853025913
+            0.997839510441 0.997839510441 0.997839570045 -8.88082695007 -52.3806724548 109.729278564 0.256791710854 0.559679985046 1.51009750366
+            0.997839510441 0.997839450836 0.997839450836 -8.88082408905 -52.3806648254 109.481369019 0.256791710854 0.559679985046 1.50848567486
+            0.997839510441 0.997839450836 0.997839570045 -8.88082027435 -52.380645752 108.819190979 0.256791710854 0.559679985046 1.50418424606
+            0.99783962965 0.997839510441 0.99783962965 -8.88081455231 -52.3806266785 107.830604553 0.256791710854 0.559679985046 1.49777245522
+            0.997839570045 0.997839450836 0.997839510441 -8.88080883026 -52.3805999756 106.574295044 0.256791710854 0.559679985046 1.48963987827
+            0.997839570045 0.997839510441 0.997839510441 -8.88080501556 -52.3805580139 105.09173584 0.256791740656 0.559679985046 1.48006272316
+            0.997839510441 0.997839450836 0.997839510441 -8.88080120087 -52.3805274963 103.413520813 0.256791740656 0.559679985046 1.46924340725
+            0.997839570045 0.997839450836 0.997839689255 -8.88080120087 -52.3805007935 101.562965393 0.256791740656 0.559679985046 1.45733511448
+            0.997839510441 0.997839570045 0.997839570045 -8.88080120087 -52.3804550171 99.5583648682 0.256791770458 0.559679985046 1.44445466995
+            0.997839570045 0.997839570045 0.997839570045 -8.88080501556 -52.3804206848 97.41431427 0.256791770458 0.559679985046 1.43069183826
+            0.997839510441 0.997839450836 0.997839570045 -8.88080978394 -52.3803901672 95.1424179077 0.256791770458 0.559679985046 1.41611504555
+            0.997839510441 0.997839510441 0.997839570045 -8.8808221817 -52.3803749084 92.7517089844 0.256791800261 0.559679985046 1.40077269077
+            0.997839570045 0.997839570045 0.997839689255 -8.88083267212 -52.3803710938 90.248298645 0.256791800261 0.559679985046 1.38469445705
+            0.997839450836 0.997839450836 0.997839450836 -8.88084125519 -52.3803977966 87.6339111328 0.256791830063 0.559679985046 1.3678869009
+            0.997839570045 0.997839450836 0.997839510441 -8.88083362579 -52.380645752 84.9074478149 0.256791830063 0.559679985046 1.35048043728
+            0.997839510441 0.997839391232 0.997839570045 -8.88644123077 -52.5389480591 83.8621368408 0.256791830063 0.559679985046 1.35734903812
+            0.99783962965 0.997839510441 0.997839570045 -8.88728427887 -52.6918258667 82.8315658569 0.256791830063 0.559679985046 1.36447417736
+            0.997839570045 0.997839391232 0.997839570045 -8.88356494904 -52.8341331482 81.8042221069 0.256791830063 0.559679985046 1.37156236172
+            0.997839570045 0.997839450836 0.99783962965 -8.87575721741 -52.9657249451 80.7802963257 0.256791800261 0.559679985046 1.37860476971
+            0.997839510441 0.997839450836 0.997839570045 -8.86435317993 -53.0859794617 79.7604446411 0.256791800261 0.559679985046 1.38559520245
+            0.997839510441 0.997839450836 0.997839510441 -8.84991455078 -53.1939430237 78.7455673218 0.256791800261 0.559679985046 1.39252734184
+            0.997839510441 0.997839510441 0.99783962965 -8.83308029175 -53.2882614136 77.7368850708 0.256791800261 0.559679985046 1.39939320087
+            0.99783962965 0.997839510441 0.997839510441 -8.81462192535 -53.367099762 76.7359771729 0.256791800261 0.559679985046 1.40618276596
+            0.997839570045 0.997839450836 0.997839510441 -8.79547309875 -53.4280014038 75.7448425293 0.256791800261 0.559679985046 1.41288268566
+            0.997839510441 0.997839510441 0.997839570045 -8.77681255341 -53.4675674438 74.766204834 0.256791770458 0.559679985046 1.41947495937
+            0.997839450836 0.997839450836 0.997839510441 -8.76019287109 -53.4808959961 73.8038024902 0.256791770458 0.559679985046 1.42593371868
+            0.99783962965 0.997839510441 0.997839570045 -8.74775409698 -53.4605407715 72.8631515503 0.256791770458 0.559679985046 1.43221950531
+            0.997839450836 0.997839510441 0.997839510441 -8.74271011353 -53.394153595 71.953086853 0.256791770458 0.559679985046 1.43826794624
+            0.997839570045 0.997839450836 0.997839570045 -8.75049972534 -53.2585029602 71.0897293091 0.256791770458 0.559679985046 1.44395744801
+            0.99783962965 0.997839510441 0.99783962965 -8.78268241882 -52.9979362488 70.3105545044 0.256791770458 0.559679985046 1.44899892807
+            0.99783962965 0.997839570045 0.99783962965 -8.85275650024 -52.327167511 69.8059387207 0.256791740656 0.559679985046 1.45204126835
+          }
+        }
+        <Table> Bone.007 {
+          <Xfm$Anim> xform {
+            <Scalar> fps { 60 }
+            <Scalar> order { sprht }
+            <Scalar> contents { ijkprhxyz }
+            <V> {
+              1.0 1.0 1.0 -60.2592201233 -18.849603653 -2.69759082794 -2.35320580799e-08 0.419119626284 6.27410017273e-08
+              1.0 1.0 1.0 -61.2814331055 -16.486782074 -1.6490085125 -8.38856095697e-08 0.419119656086 8.97256882126e-08
+              0.999999940395 0.999999940395 1.0 -62.8680000305 -12.4492750168 -0.0743904411793 1.39008051292e-07 0.419119626284 3.03083176334e-08
+              0.999999940395 0.999999940395 0.999999940395 -64.4499893188 -7.82087039948 1.50276780128 4.15041334634e-08 0.419119626284 -6.96372559617e-09
+              0.999999880791 1.0 0.999999940395 -65.9109573364 -2.86730980873 2.97905373573 1.91518871873e-08 0.419119596481 6.20707041321e-09
+              0.999999940395 0.999999880791 0.999999940395 -67.2135696411 2.2779109478 4.32654237747 5.10867188552e-08 0.419119656086 -1.87090591908e-08
+              1.0 1.00000011921 1.0 -68.3455810547 7.52723646164 5.54273509979 6.1240129412e-08 0.419119656086 6.8066654535e-09
+              1.00000011921 1.00000011921 1.00000011921 -69.3032455444 12.8156280518 6.6355214119 1.01527106722e-07 0.419119596481 1.06685771328e-08
+              1.00000011921 1.0 1.0 -70.0843505859 18.092010498 7.61749076843 5.02263404201e-08 0.419119626284 5.23754692949e-08
+              1.0 0.999999880791 0.999999940395 -70.6844711304 23.315618515 8.50376033783 -8.65442260078e-08 0.419119656086 -4.42190035699e-08
+              1.0 1.0 1.0 -71.0942764282 28.4540119171 9.31144714355 -7.21274062698e-08 0.419119656086 1.10714530877e-08
+              0.999999940395 1.0 0.999999940395 -71.2968597412 33.4818916321 10.0602073669 -5.40518474423e-09 0.419119685888 1.072623661e-07
+              1.00000011921 1.0 1.00000011921 -71.2639846802 38.3800964355 10.7737665176 -5.31724992925e-08 0.419119685888 -1.17023184032e-07
+              0.999999940395 1.0 1.0 -70.9505386353 43.1345176697 11.4827604294 -4.4792816567e-08 0.419119626284 2.88765207301e-08
+              0.999999880791 1.0 1.0 -70.2848968506 47.7348899841 12.2297849655 6.31321626088e-08 0.419119626284 -4.9721702311e-08
+              0.999999880791 1.0 1.0 -68.8867034912 52.6143302917 13.29388237 7.79345583624e-08 0.419119656086 1.93806179993e-08
+              1.0 1.0 1.0 -66.1084899902 58.2312850952 15.2551746368 1.4001308557e-07 0.419119626284 4.14762162393e-08
+              1.0 1.0 0.999999940395 -60.9743614197 64.5496673584 19.0976104736 5.60565496244e-08 0.419119656086 -7.57321956257e-08
+              1.0 0.999999880791 0.999999880791 -50.9067878723 71.314453125 27.4144477844 -5.64358195732e-08 0.419119626284 3.14006882718e-08
+              1.0 0.999999940395 1.0 -28.1037693024 77.5003967285 48.0398521423 -1.66983269878e-07 0.419119656086 4.63990668109e-09
+              1.0 1.00000011921 1.0 18.6822052002 79.5043640137 92.2791824341 -9.56214218917e-09 0.419119656086 1.20538913961e-07
+              0.999999880791 0.999999880791 1.00000011921 56.7601127625 74.599395752 127.531814575 1.5556917532e-08 0.419119685888 8.35800904042e-08
+              0.999999821186 0.999999880791 1.0 -106.352386475 113.134109497 -38.56042099 6.85585774818e-08 0.419119626284 4.84269833123e-08
+              0.999999821186 0.999999880791 0.999999940395 -97.8464736938 121.11932373 -33.0380973816 -1.96227762927e-08 0.419119626284 -3.02832994237e-08
+              1.00000011921 1.00000011921 1.00000011921 -92.7267456055 128.409393311 -30.7436962128 -1.16682628004e-07 0.419119685888 1.2338067279e-07
+              1.0 1.0 1.0 -89.3280105591 134.557647705 -29.8573150635 8.00320449912e-08 0.419119656086 -3.45289485892e-08
+              0.999999880791 0.999999761581 0.999999880791 -87.007598877 139.356292725 -29.6057071686 -5.67836053733e-08 0.419119685888 1.22471675468e-07
+              1.00000011921 1.0 1.0 -85.4839324951 142.74180603 -29.6112976074 1.39045241099e-07 0.419119685888 7.0270004926e-08
+              0.999999880791 1.0 0.999999940395 -84.6198501587 144.732086182 -29.6786441803 -1.02095341958e-07 0.419119685888 -6.15526829506e-08
+              0.999999701977 0.999999821186 0.999999880791 -84.3421173096 145.38142395 -29.7113952637 1.21327914826e-07 0.419119656086 4.22242578679e-08
+              1.00000011921 1.00000011921 0.999999940395 -84.6667327881 144.614196777 -29.6857299805 -1.01093512228e-07 0.419119685888 7.41212176081e-08
+              0.999999940395 0.999999940395 0.999999940395 -85.6820449829 142.261367798 -29.6507568359 -1.12518909745e-08 0.419119656086 1.41129525844e-08
+              0.999999880791 0.999999821186 0.999999821186 -87.4929199219 138.260467529 -29.7419700623 -2.10952279645e-07 0.419119626284 -1.43960434684e-08
+              0.999999880791 0.999999880791 0.999999940395 -90.3113555908 132.607406616 -30.2475986481 1.23769609672e-07 0.419119626284 8.88114541908e-08
+              0.999999940395 1.0 1.0 -94.6116409302 125.430099487 -31.7664928436 4.82787996248e-08 0.419119656086 4.99882091276e-08
+              0.999999940395 1.0 0.999999940395 -101.603034973 117.096092224 -35.6746177673 5.99518585886e-08 0.419119626284 6.37774633105e-08
+              1.0 1.00000011921 1.0 -114.921279907 108.421989441 -45.7996101379 -1.70990190895e-08 0.419119626284 4.56202933208e-08
+              1.0 1.00000011921 0.999999940395 33.6753005981 78.4590148926 105.907859802 -1.36356504754e-07 0.419119685888 1.06869775252e-08
+              0.999999940395 1.00000011921 0.999999940395 -18.9161529541 78.4487609863 56.176738739 8.1069281066e-08 0.419119685888 2.68052846586e-09
+              1.0 1.0 1.00000011921 -48.1637458801 72.2928848267 29.4108257294 -8.69024106009e-08 0.419119685888 5.98545426556e-08
+              1.0 0.999999880791 0.999999880791 -60.1181716919 65.0874633789 19.4751300812 1.12253935924e-07 0.419119656086 7.33804768061e-08
+              1.0 1.00000011921 1.0 -65.8640441895 58.4259223938 15.2376260757 6.22618188117e-08 0.419119626284 2.75632423552e-08
+              1.0 1.00000011921 1.0 -68.8449783325 52.668548584 13.2322597504 -1.88750391317e-07 0.419119685888 9.59139896395e-08
+              1.0 1.0 0.999999940395 -70.2610473633 47.8619308472 12.2491960526 -5.63913182816e-08 0.419119656086 -3.7124237906e-08
+              1.0 1.00000011921 1.0 -70.9005508423 43.5027275085 11.6203718185 -1.41373817542e-07 0.419119656086 6.97905306879e-08
+              1.00000011921 1.0 1.00000011921 -71.2494812012 39.0618476868 11.0186986923 2.56874099769e-09 0.419119685888 -2.97373539127e-08
+              1.0 0.999999940395 1.00000011921 -71.3613586426 34.5472717285 10.4118432999 3.46803403772e-08 0.419119656086 -3.16109307619e-08
+              1.0 1.00000011921 1.0 -71.2719192505 29.970085144 9.77676010132 1.37909594855e-07 0.419119626284 3.22126965102e-08
+              1.0 0.999999940395 1.0 -71.0053024292 25.3443470001 9.09594631195 7.65975949335e-10 0.419119626284 -7.64769012562e-08
+              0.999999940395 0.999999940395 0.999999940395 -70.5776901245 20.6874523163 8.35541915894 -7.76418431769e-08 0.419119626284 -2.79892979904e-08
+              1.0 1.0 0.999999940395 -69.9997634888 16.0203056335 7.54350423813 6.74583588989e-08 0.419119656086 3.16273585099e-08
+              1.0 1.0 0.999999940395 -69.2784423828 11.3676538467 6.65025568008 -1.72824087485e-07 0.419119656086 -1.34964892595e-08
+              1.0 1.00000011921 0.999999940395 -68.4184188843 6.75849199295 5.66735315323 2.17768096888e-08 0.419119685888 6.27733198755e-09
+              1.00000011921 0.999999940395 0.999999940395 -67.4237213135 2.22689342499 4.58857107162 1.36596973732e-08 0.419119596481 -2.48127935976e-08
+              1.0 0.999999880791 1.0 -66.2998580933 -2.18636322021 3.41104054451 -1.47955674379e-07 0.419119626284 3.27092664065e-08
+              1.00000011921 1.0 0.999999880791 -65.0571899414 -6.43026542664 2.13802480698 8.78084378542e-08 0.419119656086 -8.68857839009e-08
+              1.0 1.0 1.0 -63.7177848816 -10.4355611801 0.784908652306 -2.15879467191e-07 0.419119685888 -7.7141322663e-08
+              1.0 1.00000011921 1.0 -62.331035614 -14.0930204391 -0.606078028679 3.86616783032e-08 0.419119685888 -9.23373306705e-08
+              1.0 0.999999940395 0.999999940395 -61.0219230652 -17.1780109406 -1.91978311539 -1.18006582284e-09 0.419119596481 2.47270151021e-08
+              1.00000011921 1.0 1.0 -60.2960968018 -18.6996498108 -2.70741391182 -1.07068359512e-07 0.419119626284 -1.67144236229e-08
+            }
+          }
+          <Table> Bone.008 {
+            <Xfm$Anim> xform {
+              <Scalar> fps { 60 }
+              <Scalar> order { sprht }
+              <Scalar> contents { ijkprhxyz }
+              <V> {
+                0.999999940395 0.999999940395 0.999999940395 -2.25512290001 -0.0251962170005 -1.22175073624 1.16286116736e-07 0.327627331018 -1.84870216913e-08
+                1.00000011921 1.0 1.0 -2.17661762238 0.181993573904 -1.03551888466 -7.21743944609e-08 0.327627420425 -3.36778107624e-08
+                1.0 1.0 0.999999940395 -2.11546182632 0.450931966305 -0.746587872505 3.94870376397e-08 0.327627360821 -1.69548464157e-08
+                1.0 1.00000011921 1.0 -2.06044840813 0.72869604826 -0.436844736338 5.26144772195e-09 0.327627241611 -3.8173979533e-09
+                1.00000011921 1.00000011921 1.00000011921 -2.00917720795 1.0032607317 -0.124923758209 -8.95637484177e-08 0.327627360821 -2.28007728253e-08
+                1.00000011921 1.0 1.0 -1.96083831787 1.26900780201 0.180593729019 5.08618569484e-08 0.327627301216 -1.03257828954e-08
+                1.0 0.999999940395 1.0 -1.91521990299 1.52229893208 0.474308043718 -1.90524112043e-08 0.327627301216 -2.98812175004e-08
+                1.0 1.0 1.0 -1.87242162228 1.76019096375 0.752041220665 1.86176094985e-07 0.327627390623 -2.51593998968e-08
+                1.00000011921 1.0 1.0 -1.83274745941 1.97991991043 1.00998628139 -1.58013904183e-07 0.327627390623 -1.93380778057e-08
+                1.0 1.0 1.00000011921 -1.79666376114 2.17859768867 1.24429047108 -1.459567045e-08 0.327627301216 -4.66178473602e-09
+                1.0 0.999999940395 0.999999940395 -1.76479125023 2.35297203064 1.45074629784 -1.10640279161e-07 0.327627241611 -1.01248405215e-08
+                1.0 1.0 1.0 -1.73791182041 2.4991941452 1.62444829941 3.2688824092e-08 0.327627241611 -5.14028730692e-09
+                1.0 1.0 0.999999940395 -1.71699869633 2.61251282692 1.75943338871 1.83881496696e-08 0.327627301216 -3.44238593186e-08
+                1.0 0.999999880791 0.999999880791 -1.7032636404 2.68682980537 1.84814417362 -5.36676871832e-08 0.327627271414 -3.40524621834e-08
+                1.00000011921 1.0 1.0 -1.69824159145 2.71401262283 1.88059055805 4.85470117439e-08 0.327627241611 -3.33474083902e-08
+                1.00000011921 1.0 1.00000011921 -1.86318528652 2.61531209946 1.2848470211 3.70815200768e-08 0.327627360821 -3.08669712012e-08
+                1.0 1.0 1.00000011921 -2.35856962204 2.30420589447 -0.525737941265 5.06104491649e-10 0.327627360821 -1.69758784807e-08
+                0.999999940395 1.0 1.0 -3.16958546638 1.7453930378 -3.56767916679 -4.85110476234e-08 0.327627301216 -3.12523908974e-08
+                0.999999880791 0.999999940395 0.999999940395 -4.25287818909 0.892210483551 -7.81279802322 4.20740775553e-10 0.327627301216 -1.91550579842e-08
+                1.00000011921 1.00000011921 1.0 -5.52772951126 -0.297732263803 -13.1579971313 -1.90110558407e-08 0.327627152205 -3.40195711601e-08
+                1.0 1.0 1.0 -6.87551546097 -1.83818233013 -19.3990631104 5.42538387549e-08 0.327627241611 1.1616379858e-08
+                1.00000011921 1.00000011921 1.0 -8.15569972992 -3.68861937523 -26.2243366241 8.97711682768e-09 0.327627271414 -8.07812483572e-08
+                1.0 1.0 0.999999940395 -9.23901367188 -5.74287748337 -33.2410964966 1.49827350526e-09 0.327627241611 -1.0425515562e-08
+                0.999999940395 1.0 1.0 -10.0440769196 -7.84490776062 -40.0314178467 9.26202972096e-08 0.327627271414 4.49776536016e-08
+                1.0 1.0 1.0 -10.5567560196 -9.82727813721 -46.2163772583 -5.55923840295e-08 0.327627331018 -3.57657903294e-08
+                1.0 0.999999940395 0.999999880791 -10.8220243454 -11.5509004593 -51.5028533936 -3.56400029489e-08 0.327627271414 6.09383121741e-08
+                1.00000011921 1.0 1.00000011921 -10.9168996811 -12.9258842468 -55.7001953125 1.91327018229e-07 0.327627331018 -4.53112107834e-08
+                1.0 1.0 1.0 -10.9213790894 -13.9099378586 -58.7103385925 -8.09817635172e-08 0.327627331018 -2.53579823806e-08
+                1.00000011921 1.00000011921 1.00000023842 -10.8987770081 -14.4939279556 -60.5039825439 4.04083237981e-08 0.327627301216 -3.57807401485e-08
+                1.0 1.0 1.0 -10.8872051239 -14.685708046 -61.094669342 7.45524104673e-08 0.327627301216 -6.32031245118e-08
+                1.0 1.0 0.999999940395 -10.9002742767 -14.4662780762 -60.4188842773 1.4781436164e-07 0.327627271414 -3.79748499313e-08
+                1.0 1.00000011921 1.00000023842 -10.9235572815 -13.7976064682 -58.3660583496 -5.30813650812e-08 0.327627271414 9.24947496372e-09
+                1.0 1.00000011921 1.0 -10.90711689 -12.6717376709 -54.9242324829 -9.13950799486e-08 0.327627331018 -1.25642767301e-08
+                1.00000011921 1.0 1.00000011921 -10.7691736221 -11.1057519913 -50.1420631409 -1.04594377603e-07 0.327627331018 -2.19431743886e-08
+                1.0 1.0 1.0 -10.410569191 -9.16445732117 -44.1650505066 3.54910056899e-08 0.327627301216 -2.93047310862e-08
+                1.0 1.0 1.00000011921 -9.7459859848 -6.97730779648 -37.2653160095 3.57282701202e-08 0.327627301216 2.21128804156e-08
+                1.0 1.0 1.0 -8.74538612366 -4.73142242432 -29.8448867798 5.97799996171e-08 0.327627241611 -4.98648908831e-08
+                1.0 1.0 1.00000011921 -7.46371841431 -2.63083839417 -22.3960056305 5.23052747781e-08 0.327627390623 -5.88011097591e-08
+                1.0 0.999999940395 0.999999940395 -6.03495121002 -0.838529288769 -15.4219341278 -4.02969462243e-08 0.327627241611 -7.21503479184e-09
+                0.999999940395 1.0 1.0 -4.63002586365 0.562894105911 -9.34979534149 -1.50444279257e-09 0.32762748003 -3.41490462574e-08
+                1.0 1.0 1.00000011921 -3.40599799156 1.57007646561 -4.47502756119 -1.81368289276e-08 0.327627271414 7.94014187733e-10
+                1.0 1.0 1.00000011921 -2.47476625443 2.2279586792 -0.955441772938 -8.88768725282e-10 0.327627241611 -1.68680114321e-09
+                1.00000011921 1.00000011921 1.0 -1.89812970161 2.59405732155 1.15818524361 2.17213491638e-09 0.327627420425 -5.06615407403e-08
+                1.0 1.0 1.00000011921 -1.69840359688 2.71392202377 1.88000810146 -3.22923128238e-08 0.327627360821 -2.87159167556e-08
+                1.00000011921 1.00000011921 1.00000011921 -1.70221912861 2.71355986595 1.87997484207 2.32542785028e-08 0.327627360821 2.46484010979e-09
+                1.0 1.0 1.0 -1.71374547482 2.71097016335 1.87660992146 1.20261134384e-08 0.327627331018 -3.00262570363e-08
+                0.999999940395 1.0 1.0 -1.73179602623 2.70405220985 1.86806595325 -1.34106414862e-07 0.327627420425 -1.72534875276e-08
+                0.999999940395 1.00000011921 0.999999940395 -1.75556457043 2.69066357613 1.85196268559 -5.92781779218e-09 0.327627211809 -3.38288828061e-08
+                1.0 1.00000011921 1.00000011921 -1.78440380096 2.66858744621 1.82585787773 5.48457563809e-08 0.327627301216 -3.7182221746e-08
+                0.999999940395 1.0 1.0 -1.81777656078 2.63540172577 1.78705787659 -9.32803345677e-09 0.327627331018 -6.58584795588e-08
+                1.00000011921 1.00000011921 1.00000011921 -1.8552236557 2.5883295536 1.73249459267 -3.12712664652e-08 0.327627509832 -4.49938255542e-08
+                1.0 1.0 0.999999940395 -1.89633285999 2.52404689789 1.65848433971 1.4686215799e-08 0.327627152205 2.67957922517e-08
+                1.0 1.0 0.999999940395 -1.94071245193 2.43838000298 1.56042122841 1.87449700206e-07 0.327627360821 -1.19476140092e-09
+                1.00000011921 1.00000011921 1.00000011921 -1.98794853687 2.3258702755 1.43223381042 -2.86455437148e-09 0.327627152205 -1.53611896536e-08
+                1.0 1.00000011921 1.00000011921 -2.03755474091 2.17898035049 1.26558423042 -1.00230899136e-07 0.327627271414 -4.07865456964e-08
+                0.999999940395 1.0 1.00000011921 -2.08886671066 1.98665893078 1.0481659174 -7.61526948168e-08 0.327627301216 -2.52577905258e-08
+                1.0 0.999999940395 0.999999940395 -2.14082598686 1.73130083084 0.760335206985 6.75831159924e-08 0.327627360821 -2.69548401377e-08
+                1.00000011921 1.00000011921 1.00000011921 -2.19142603874 1.38128554821 0.366647690535 1.67902868498e-07 0.327627271414 -3.50604123511e-09
+                0.999999880791 1.0 1.0 -2.23583102226 0.866934120655 -0.211685433984 -9.52589402914e-08 0.327627182007 -3.89322813987e-08
+                1.0 1.0 1.0 -2.221357584 -0.100539006293 -1.33041000366 6.80190055391e-08 0.327627331018 -4.29128945711e-08
+              }
+            }
+            <Table> Bone.009 {
+              <Xfm$Anim> xform {
+                <Scalar> fps { 60 }
+                <Scalar> order { sprht }
+                <Scalar> contents { ijkprhxyz }
+                <V> {
+                  1.0 0.999999940395 0.999999880791 -0.323783844709 -75.6769866943 69.4694366455 1.61008145483e-07 0.664869725704 -1.56431383402e-08
+                  1.0 1.00000011921 1.00000011921 -0.281151324511 -75.5516662598 70.4866867065 -5.31816155558e-08 0.664869844913 -5.52979084745e-09
+                  0.999999940395 1.0 0.999999880791 -0.200943589211 -75.3589477539 72.0388641357 8.59320223867e-08 0.664869725704 1.89049487176e-09
+                  1.0 1.00000011921 1.0 -0.094294950366 -75.1531524658 73.6813049316 -7.65126202396e-08 0.664869725704 -1.28801591615e-08
+                  0.999999940395 0.999999940395 0.999999940395 0.0341872498393 -74.9468231201 75.3142929077 3.14218375763e-08 0.664869725704 1.50984664771e-08
+                  1.0 1.0 0.999999940395 0.17974537611 -74.745803833 76.8939666748 9.65296891309e-08 0.664869785309 3.1477355833e-08
+                  0.999999880791 0.999999940395 0.999999880791 0.337273210287 -74.5537490845 78.3944702148 -7.71109753828e-08 0.664869725704 -2.42265372208e-08
+                  1.0 1.00000011921 1.00000011921 0.501384496689 -74.3733901978 79.7971496582 4.69448124818e-08 0.664869725704 -2.49568952171e-08
+                  0.999999821186 0.999999940395 0.999999821186 0.666411340237 -74.2070999146 81.0859146118 1.00913702283e-07 0.664869785309 -1.68503220266e-08
+                  1.0 0.999999940395 0.999999940395 0.826380193233 -74.0571899414 82.245010376 -4.62110598676e-08 0.664869725704 -6.4906995334e-09
+                  0.999999821186 1.0 0.999999940395 0.97494417429 -73.9260635376 83.2572021484 9.16778475357e-08 0.664869844913 1.39626399331e-09
+                  0.999999940395 0.999999880791 0.999999880791 1.10526454449 -73.8164901733 84.1021728516 -4.88391194153e-08 0.664869785309 -4.52462423084e-09
+                  1.0 0.999999880791 0.999999940395 1.20978558064 -73.7318572998 84.754524231 -8.78212524924e-09 0.664869725704 8.74005134932e-09
+                  0.999999940395 1.0 0.999999940395 1.27996695042 -73.6765136719 85.181060791 -5.21672767206e-08 0.664869785309 -2.17970388405e-08
+                  1.0 1.0 0.999999940395 1.30587351322 -73.6563796997 85.3362731934 3.32235075007e-08 0.664869725704 5.40139888372e-09
+                  0.999999880791 1.0 0.999999880791 1.82080078125 -73.8367919922 84.7834777832 -3.53882327886e-08 0.6648696661 4.07438216499e-09
+                  0.999999940395 0.999999880791 1.0 3.45268583298 -74.3738250732 83.0371246338 -8.59484643456e-08 0.664869785309 4.53569581893e-09
+                  1.0 0.999999940395 0.999999880791 6.43878412247 -75.2362747192 79.8605499268 3.88428844644e-08 0.6648696661 -2.19987352779e-08
+                  0.999999821186 1.00000011921 0.999999821186 11.1786565781 -76.3478927612 74.8581771851 -6.42581312604e-08 0.664869725704 -2.16215383375e-08
+                  0.999999880791 1.0 0.999999880791 18.2273197174 -77.5695495605 67.4833145142 -1.09875184506e-08 0.664869785309 8.13307110548e-09
+                  0.999999880791 0.999999940395 0.999999880791 28.1288967133 -78.6859741211 57.2050285339 6.7545151694e-09 0.664869785309 -9.31371335611e-09
+                  1.00000011921 0.999999940395 0.999999880791 40.8694915771 -79.4262390137 44.0551338196 2.49013254461e-09 0.664869844913 -3.33115863782e-08
+                  0.999999940395 1.0 0.999999880791 55.1174163818 -79.5649719238 29.3866767883 -2.26586891472e-08 0.664869606495 9.2863565726e-09
+                  0.999999940395 1.0 0.999999940395 68.5032806396 -79.0718917847 15.5916881561 1.41210545479e-08 0.664869785309 1.33419302273e-08
+                  1.0 1.0 0.999999940395 79.2682418823 -78.1373138428 4.45034742355 -2.09733848067e-08 0.664869725704 -4.58763249611e-09
+                  0.999999940395 0.999999940395 0.999999940395 87.0641403198 -77.0351638794 -3.67137217522 1.26250547794e-08 0.664869785309 3.47482433938e-08
+                  0.999999880791 1.0 0.999999940395 92.34009552 -75.9977798462 -9.20939159393 -3.31913803109e-08 0.664869725704 -4.81854876e-08
+                  1.00000011921 0.999999940395 0.999999940395 95.6688156128 -75.1791915894 -12.7282457352 4.96995511412e-08 0.664869725704 -9.25605725399e-09
+                  1.0 1.0 0.999999940395 97.4876327515 -74.6650772095 -14.6613273621 7.88314835631e-08 0.664869785309 4.15833589784e-08
+                  0.999999940395 1.0 1.0 98.0613250732 -74.4917526245 -15.2728185654 4.60450308992e-08 0.664869844913 -2.50797498325e-08
+                  1.0 0.999999940395 0.999999880791 97.4040298462 -74.6898727417 -14.5722789764 6.37993124997e-08 0.664869844913 -4.37332658976e-09
+                  1.0 0.999999940395 1.0 95.3062438965 -75.2756500244 -12.3438510895 -4.10701908038e-08 0.664869725704 5.44966702876e-08
+                  0.999999940395 0.999999880791 0.999999821186 91.4227828979 -76.1990814209 -8.24339771271 2.87038304236e-09 0.664869725704 6.22937923467e-10
+                  0.999999880791 1.0 0.999999940395 85.1841125488 -77.3421936035 -1.70707070827 -4.9840224392e-08 0.6648696661 -3.00965439237e-08
+                  0.999999880791 0.999999940395 1.0 75.8880233765 -78.4934310913 7.95586013794 -9.47163236731e-10 0.664869725704 -1.45288705511e-08
+                  1.0 1.0 0.999999880791 63.1965293884 -79.3448638916 21.0654716492 1.52866377334e-08 0.6648696661 -1.26100427877e-08
+                  1.0 0.999999880791 0.999999880791 48.1708145142 -79.5807495117 36.5369224548 2.64475819023e-08 0.664869725704 -1.3381240116e-08
+                  1.0 1.0 0.999999940395 33.5096282959 -79.079246521 51.6443595886 -1.94482545623e-08 0.664869606495 4.17599679281e-08
+                  1.0 1.0 0.999999940395 21.6081008911 -78.0171432495 63.9654655457 3.12201109409e-08 0.664869844913 1.48299506009e-09
+                  0.999999821186 0.999999940395 0.999999880791 13.0758810043 -76.7210464478 72.8667297363 -2.66620574507e-08 0.664869785309 -2.34645884944e-08
+                  0.999999761581 0.999999940395 0.999999821186 7.39316606522 -75.4832687378 78.8497695923 5.55127854796e-09 0.664869844913 2.30528396372e-08
+                  1.0 1.00000011921 1.00000011921 3.85529994965 -74.4987411499 82.6074676514 -4.10535605511e-08 0.664869725704 -7.30494642553e-09
+                  1.0 1.00000011921 0.999999940395 1.93159759045 -73.8748931885 84.6646499634 -1.8159227011e-08 0.6648696661 8.47461834041e-09
+                  0.999999821186 1.0 0.999999880791 1.30637085438 -73.6565475464 85.3357391357 1.55390562639e-08 0.664869725704 6.21743723173e-09
+                  0.999999940395 1.0 0.999999940395 1.28673326969 -73.6712417603 85.2217330933 -7.77694975085e-09 0.664869725704 2.90039237072e-09
+                  0.999999880791 0.999999940395 0.999999821186 1.23167693615 -73.7144317627 84.8888397217 2.04814796234e-08 0.664869725704 -3.31526877062e-08
+                  1.0 1.0 0.999999940395 1.14737868309 -73.7819213867 84.3686447144 6.94282107361e-08 0.6648696661 6.38195829517e-10
+                  0.999999880791 1.0 0.999999880791 1.03989350796 -73.8705596924 83.6852722168 5.51653336345e-08 0.664869725704 4.21003454321e-09
+                  0.999999940395 0.999999940395 0.999999821186 0.914757728577 -73.9777832031 82.8580703735 -9.19872746863e-08 0.6648696661 1.29468435972e-08
+                  1.0 1.00000011921 1.0 0.777110993862 -74.1014404297 81.9030838013 1.9560950193e-08 0.664869606495 -1.94763103423e-08
+                  0.999999940395 1.0 0.999999940395 0.631802737713 -74.239616394 80.8342514038 9.32106303253e-08 0.6648696661 -1.9715393762e-09
+                  0.999999940395 0.999999880791 0.999999880791 0.483426332474 -74.3905105591 79.6643066406 -1.30898257567e-07 0.664869785309 -1.81765962282e-08
+                  0.999999880791 0.999999940395 0.999999940395 0.336390435696 -74.5523223877 78.4057159424 -5.40991695885e-09 0.664869844913 4.09580991345e-09
+                  0.999999940395 1.0 0.999999880791 0.194904312491 -74.7231369019 77.0717315674 5.05302182319e-08 0.664869725704 -9.11742681353e-10
+                  1.0 0.999999880791 1.00000011921 0.063001640141 -74.900718689 75.6778869629 -1.00304731632e-07 0.664869785309 -1.10050155655e-08
+                  0.999999940395 0.999999940395 0.999999821186 -0.0555366538465 -75.0822372437 74.2444915771 -1.67863731804e-08 0.664869844913 2.51498839532e-08
+                  0.999999880791 1.0 0.999999821186 -0.157207742333 -75.2636642456 72.8016815186 8.96515359727e-08 0.6648696661 2.05697059386e-08
+                  0.999999940395 0.999999940395 1.0 -0.238830402493 -75.4383468628 71.4016494751 -1.06126648802e-07 0.664869606495 -2.84856636057e-08
+                  1.00000011921 1.00000011921 1.0 -0.297213286161 -75.5923309326 70.1576461792 -3.21549507021e-08 0.664869606495 7.40905736762e-09
+                  0.999999940395 1.0 1.0 -0.323786616325 -75.6769943237 69.4694366455 -3.11560270916e-08 0.664869725704 -3.7960745658e-10
+                }
+              }
+            }
+          }
+        }
+      }
+    }
+  }
+}
+<Table> {
+  <Bundle> fall {
+    <Table> "<skeleton>" {
+      <Table> Bone {
+        <Xfm$Anim> xform {
+          <Scalar> fps { 40 }
+          <Scalar> order { sprht }
+          <Scalar> contents { ijkprhxyz }
+          <V> {
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 1.12220280811e-12 -98.8660812378 0.256791830063 0.559679985046 1.48905110359
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 1.45789387507e-11 -98.7113037109 0.256791830063 0.559679985046 1.48663079739
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 5.22749621368e-11 -98.2753372192 0.256791830063 0.559679985046 1.47981357574
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 1.00593415542e-10 -97.7155532837 0.256791830063 0.559679985046 1.47106027603
+            0.997839510441 0.997839510441 0.997839510441 89.9999923706 1.38443950748e-10 -97.2795944214 0.256791830063 0.559679985046 1.46424305439
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 1.51887946664e-10 -97.1248168945 0.256791830063 0.559679985046 1.46182274818
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 1.51887946664e-10 -97.1248168945 0.256791830063 0.559679985046 1.46182274818
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 1.51887946664e-10 -97.1248168945 0.256791830063 0.559679985046 1.46182274818
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 1.51887946664e-10 -97.1248168945 0.256791830063 0.559679985046 1.46182274818
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 1.51887946664e-10 -97.1248168945 0.256791830063 0.559679985046 1.46182274818
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 1.51887946664e-10 -97.1248168945 0.256791830063 0.559679985046 1.46182274818
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 1.51887946664e-10 -97.1248168945 0.256791830063 0.559679985046 1.46182274818
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 1.51887946664e-10 -97.1248168945 0.256791830063 0.559679985046 1.46182274818
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 1.51887946664e-10 -97.1248168945 0.256791830063 0.559679985046 1.46182274818
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 1.51887946664e-10 -97.1248168945 0.256791830063 0.559679985046 1.46182274818
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 1.51887946664e-10 -97.1248168945 0.256791830063 0.559679985046 1.46182274818
+            0.997839570045 0.997839510441 0.997839570045 89.9999923706 1.51887946664e-10 -97.1248168945 0.256791830063 0.559679985046 1.46182274818
+          }
+        }
+        <Table> Bone.001 {
+          <Xfm$Anim> xform {
+            <Scalar> fps { 40 }
+            <Scalar> order { sprht }
+            <Scalar> contents { ijkprhxyz }
+            <V> {
+              1.00000011921 1.00000011921 1.00000011921 -5.00002765656 -175.930053711 -6.76606845856 -8.76861676602e-08 0.520252346992 1.415495543e-08
+              1.0 0.999999880791 0.999999940395 -4.9805598259 -176.10206604 -6.59326982498 1.24384849087e-08 0.520252346992 -3.31798699627e-09
+              1.00000011921 1.00000011921 1.00000011921 -4.92295742035 -176.586105347 -6.10655403137 -2.15889830457e-08 0.520252346992 -1.709723918e-08
+              1.00000011921 0.999999880791 0.999999940395 -4.84301233292 -177.206726074 -5.4814043045 -8.0320505802e-09 0.520252227783 -7.1861157025e-09
+              1.0 1.00000011921 1.0 -4.77608919144 -177.689361572 -4.99421024323 -4.84708557735e-08 0.520252406597 7.93793120124e-09
+              0.999999940395 0.999999821186 0.999999940395 -4.75134992599 -177.860580444 -4.82114219666 -2.9177506633e-08 0.520252168179 -1.12123705875e-08
+              1.0 0.999999940395 1.0 -4.90366125107 -177.682052612 -4.91182088852 -2.9177506633e-08 0.520252168179 -1.12123705875e-08
+              1.00000011921 0.999999940395 1.0 -5.34551429749 -177.160964966 -5.17313194275 -2.9177506633e-08 0.520252168179 -1.12123705875e-08
+              1.0 0.999999880791 1.0 -5.97700834274 -176.408309937 -5.54199743271 -2.9177506633e-08 0.520252168179 -1.12123705875e-08
+              1.0 1.0 1.00000011921 -6.60420656204 -175.651657104 -5.90285825729 -2.9177506633e-08 0.520252168179 -1.12123705875e-08
+              1.0 0.999999940395 1.0 -7.03800868988 -175.123092651 -6.14916181564 -2.9177506633e-08 0.520252168179 -1.12123705875e-08
+              1.00000011921 0.999999880791 1.0 -7.1865978241 -174.941070557 -6.23289775848 -2.9177506633e-08 0.520252168179 -1.12123705875e-08
+              1.00000011921 1.0 1.0 -7.14231109619 -175.000106812 -6.23325538635 -2.9177506633e-08 0.520252168179 -1.12123705875e-08
+              1.0 0.999999940395 1.00000011921 -6.9800286293 -175.211288452 -6.20695590973 -2.9177506633e-08 0.520252168179 -1.12123705875e-08
+              1.0 1.0 1.00000011921 -6.65869235992 -175.617828369 -6.09676551819 -2.9177506633e-08 0.520252168179 -1.12123705875e-08
+              1.00000011921 1.0 1.00000011921 -6.16437959671 -176.223770142 -5.84393692017 -2.9177506633e-08 0.520252168179 -1.12123705875e-08
+              1.0 0.999999940395 1.0 -5.52383470535 -176.981781006 -5.42285823822 -2.9177506633e-08 0.520252168179 -1.12123705875e-08
+            }
+          }
+          <Table> Bone.012 {
+            <Xfm$Anim> xform {
+              <Scalar> fps { 40 }
+              <Scalar> order { sprht }
+              <Scalar> contents { ijkprhxyz }
+              <V> {
+                1.00000011921 1.00000011921 1.00000011921 -95.398651123 -1.89522826672 -0.371750235558 1.72211702676e-08 0.659965276718 -6.11069097545e-08
+                1.0 1.00000011921 1.00000011921 -95.5434875488 -1.81622648239 -0.35962036252 -6.16372730633e-08 0.659965455532 -3.34361871523e-08
+                1.0 1.0 1.00000011921 -95.9512329102 -1.5935510397 -0.326528429985 -7.81663871408e-08 0.659965336323 9.30461752091e-09
+                1.00000011921 1.0 1.00000011921 -96.4744110107 -1.3073143959 -0.286371439695 -3.27250333498e-08 0.659965217113 1.05511031023e-08
+                1.0 1.0 1.00000023842 -96.8816604614 -1.08414947987 -0.256911873817 -1.06650311693e-07 0.659965634346 5.96614269099e-09
+                1.0 1.00000011921 1.0 -97.026222229 -1.00487089157 -0.246835842729 -8.22351111651e-08 0.659965395927 5.75724641294e-08
+                1.00000011921 1.00000011921 1.00000023842 -97.0262145996 -1.00487148762 -0.246835038066 -1.47640113468e-08 0.659965634346 4.50267334529e-09
+                1.0 1.00000011921 1.00000011921 -97.0262145996 -1.00487184525 -0.246834263206 -1.1690049817e-08 0.659965574741 -5.04695663039e-09
+                1.0 1.00000011921 1.00000011921 -97.026222229 -1.00487172604 -0.246834978461 -1.28423508272e-07 0.659965574741 1.31403314896e-08
+                1.0 1.0 1.00000011921 -97.026222229 -1.00487160683 -0.246834769845 -4.80913158185e-08 0.659965634346 2.660925702e-08
+                1.0 1.0 1.0 -97.026222229 -1.00487136841 -0.246834874153 -1.07000133198e-08 0.659965515137 -2.41907081033e-08
+                1.00000011921 1.00000023842 1.00000023842 -97.0262145996 -1.00487136841 -0.246835008264 1.17902878571e-08 0.659965634346 -5.25815746499e-09
+                1.0 1.0 0.999999940395 -97.026222229 -1.00487136841 -0.246834337711 6.9650862855e-09 0.659965395927 2.523483289e-08
+                1.00000011921 1.00000011921 1.00000023842 -97.0262145996 -1.0048712492 -0.246835008264 -3.66056909229e-08 0.659965634346 2.18375930672e-08
+                1.0 1.00000011921 1.00000011921 -97.026222229 -1.00487136841 -0.24683535099 -7.88275471564e-08 0.659965455532 1.07644804181e-09
+                1.0 1.00000011921 1.00000011921 -97.026222229 -1.00487208366 -0.246835038066 -5.20093799139e-08 0.659965515137 1.85417086129e-08
+                1.0 1.00000011921 1.00000011921 -97.0262145996 -1.00487112999 -0.246835276484 -5.58527410988e-08 0.659965515137 -1.12364908489e-08
+              }
+            }
+            <Table> Bone.015 {
+              <Xfm$Anim> xform {
+                <Scalar> fps { 40 }
+                <Scalar> order { sprht }
+                <Scalar> contents { ijkprhxyz }
+                <V> {
+                  1.0 1.00000011921 0.999999940395 15.4769182205 16.296628952 90.2654037476 7.81209195111e-08 0.492759823799 6.66021549023e-08
+                  0.999999940395 1.0 0.999999940395 15.169713974 16.3726406097 89.7047729492 4.58786644231e-08 0.492759764194 2.62521666627e-07
+                  1.00000023842 1.00000023842 1.0 14.2585840225 16.6133861542 88.0183410645 -1.42942138126e-08 0.492759793997 -6.42221564817e-08
+                  1.0 1.00000011921 1.0 12.9607725143 16.9920005798 85.5606689453 2.00042453713e-08 0.492759853601 1.04607060791e-07
+                  0.999999940395 0.999999940395 0.999999940395 11.7025365829 17.4486732483 83.0781936646 7.34820826409e-09 0.492759764194 1.10241060725e-07
+                  1.0 0.999999880791 1.0 10.813369751 17.947933197 81.1691131592 -1.05377777615e-08 0.492759734392 -3.52425189476e-07
+                  1.0 1.0 1.0 10.2210159302 18.9703159332 79.5297546387 -3.01295450811e-08 0.492759823799 -5.87613655512e-08
+                  1.00000011921 1.00000011921 0.999999940395 9.74464702606 20.9390583038 77.7320785522 -1.05662767425e-08 0.492759764194 2.22598970367e-08
+                  0.999999940395 0.999999880791 0.999999940395 9.36353397369 23.4885749817 75.9651947021 1.4457953057e-08 0.492759853601 -1.72280074651e-08
+                  0.999999940395 1.0 0.999999940395 9.07646560669 25.9250049591 74.5176086426 1.65338942537e-08 0.492759764194 -2.87801896093e-07
+                  1.00000023842 1.00000011921 1.0 8.90307044983 27.5796337128 73.6209869385 1.24029995163e-08 0.492759883404 -1.23849034139e-07
+                  1.0 0.999999940395 0.999999940395 8.84968948364 28.1407642365 73.3344726563 -1.00619992338e-08 0.492759764194 1.14344381075e-07
+                  0.999999940395 0.999999940395 0.999999940395 9.01868438721 27.5286884308 73.8417358398 2.85184729165e-08 0.492759853601 1.25113444938e-07
+                  1.0 1.0 1.0 9.47166156769 25.7365074158 75.293762207 -6.8822309629e-08 0.492759823799 -8.32508888493e-08
+                  1.0 0.999999940395 0.999999940395 10.0271282196 23.1321926117 77.3272018433 2.35216059963e-08 0.492759793997 1.35149393898e-08
+                  0.999999821186 0.999999880791 0.999999880791 10.4771404266 20.4934997559 79.3116607666 -1.03296926568e-09 0.492759793997 -1.86116125178e-07
+                  1.0 1.00000011921 0.999999940395 10.7326183319 18.6267738342 80.6784133911 -1.22810241976e-08 0.492759793997 1.45367408777e-07
+                }
+              }
+              <Table> Bone.016 {
+                <Xfm$Anim> xform {
+                  <Scalar> fps { 40 }
+                  <Scalar> order { sprht }
+                  <Scalar> contents { ijkprhxyz }
+                  <V> {
+                    1.0 1.0 1.0 -10.9294233322 -20.0917873383 -16.2271823883 -2.27482761517e-08 0.41611289978 1.36857650546e-07
+                    1.00000011921 1.00000011921 1.0 -9.81276512146 -20.0311698914 -15.6934356689 5.43268505737e-08 0.416112869978 -1.60036478292e-07
+                    0.999999940395 1.0 1.00000011921 -8.39874172211 -20.5957813263 -13.7829265594 -1.29943899196e-07 0.416112929583 9.34021073817e-08
+                    0.999999940395 0.999999880791 1.0 -7.10219621658 -21.5736236572 -10.9367570877 -1.36240521087e-08 0.41611289978 3.15389456773e-08
+                    1.0 1.0 1.0 -6.38680410385 -22.4811820984 -8.04931354523 4.60765789967e-08 0.416112869978 -1.01700500466e-07
+                    0.999999940395 1.0 1.0 -6.39904975891 -22.9249210358 -5.8256649971 9.15856972483e-08 0.416112959385 -2.16736580683e-07
+                    1.0 0.999999940395 1.00000011921 -6.79475975037 -23.0937538147 -4.00687360764 5.86829465021e-08 0.416112840176 7.90468668299e-09
+                    1.00000011921 1.00000011921 1.0 -7.27086019516 -23.2771987915 -2.19880032539 -5.78959529207e-08 0.416112929583 -9.31993184849e-08
+                    1.0 1.00000011921 1.0 -7.76518774033 -23.4507808685 -0.585465013981 -1.21817620879e-07 0.416112929583 9.12495110583e-08
+                    1.00000011921 1.00000011921 1.00000011921 -8.18222236633 -23.586479187 0.625020027161 -2.00696050001e-07 0.416112929583 6.68363924206e-08
+                    1.0 1.0 1.00000011921 -8.44460391998 -23.6675739288 1.32298374176 1.65921179018e-07 0.41611289978 -2.6431419542e-07
+                    1.0 1.0 1.0 -8.52942180634 -23.6931858063 1.53553771973 -1.782087935e-07 0.416112840176 -5.03332628909e-08
+                    1.00000011921 0.999999940395 1.0 -8.42266178131 -23.6635494232 1.08929860592 -1.24624266462e-09 0.41611289978 -1.90934969169e-07
+                    1.0 1.0 1.0 -8.10481643677 -23.5696086884 -0.210927858949 -6.88174566221e-08 0.416112869978 -1.01109538519e-08
+                    1.0 1.0 1.0 -7.62911558151 -23.4135417938 -2.08660769463 3.04926786043e-08 0.41611289978 -1.67943554175e-07
+                    1.0 1.0 1.00000011921 -7.11424684525 -23.223903656 -3.97771692276 -8.35704909719e-08 0.416112929583 -6.57767529333e-08
+                    1.0 1.00000011921 1.0 -6.68450593948 -23.049243927 -5.31936216354 4.86888573903e-08 0.416112929583 -3.49313239667e-07
+                  }
+                }
+              }
+            }
+          }
+          <Table> Bone.011 {
+            <Xfm$Anim> xform {
+              <Scalar> fps { 40 }
+              <Scalar> order { sprht }
+              <Scalar> contents { ijkprhxyz }
+              <V> {
+                0.999999940395 0.999999940395 0.999999940395 61.9722671509 -20.5241374969 -8.65283870697 1.72211702676e-08 0.659965276718 -6.11069097545e-08
+                0.999999880791 1.0 0.999999940395 62.6441612244 -20.9875526428 -10.2023124695 -6.16372730633e-08 0.659965455532 -3.34361871523e-08
+                0.999999940395 0.999999940395 0.999999940395 64.069732666 -21.2063388824 -11.4309806824 -7.81663871408e-08 0.659965336323 9.30461752091e-09
+                1.0 1.0 1.0 66.1159057617 -21.1895999908 -12.3644485474 -3.27250333498e-08 0.659965217113 1.05511031023e-08
+                1.0 0.999999940395 1.0 68.4050521851 -21.034866333 -13.1502819061 -1.06650311693e-07 0.659965634346 5.96614269099e-09
+                1.0 1.0 0.999999880791 70.576385498 -20.8501968384 -13.9536409378 -8.22351111651e-08 0.659965395927 5.75724641294e-08
+                0.999999761581 0.999999821186 0.999999940395 73.0196304321 -20.6112689972 -14.8451871872 -1.47640113468e-08 0.659965634346 4.50267334529e-09
+                1.0 1.0 0.999999940395 76.1357269287 -20.2467002869 -15.7729187012 -1.1690049817e-08 0.659965574741 -5.04695663039e-09
+                0.999999880791 1.0 1.00000011921 79.4740905762 -19.8010044098 -16.6182670593 -1.28423508272e-07 0.659965574741 1.31403314896e-08
+                1.00000011921 1.0 1.00000011921 82.3376159668 -19.3814315796 -17.2528820038 -4.80913158185e-08 0.659965634346 2.660925702e-08
+                1.0 1.0 1.0 84.1572647095 -19.0993461609 -17.6162185669 -1.07000133198e-08 0.659965515137 -2.41907081033e-08
+                1.0 1.0 1.0 84.7501602173 -19.0051307678 -17.726726532 1.17902878571e-08 0.659965634346 -5.25815746499e-09
+                1.0 0.999999940395 0.999999880791 83.9054412842 -19.1398448944 -17.5711784363 6.9650862855e-09 0.659965395927 2.523483289e-08
+                0.999999940395 1.0 1.00000011921 81.4335632324 -19.5203266144 -17.0862598419 -3.66056909229e-08 0.659965634346 2.18375930672e-08
+                1.00000011921 1.00000023842 1.00000011921 77.8414459229 -20.0330944061 -16.304977417 -7.88275471564e-08 0.659965455532 1.07644804181e-09
+                1.00000011921 1.00000011921 1.00000011921 74.1901092529 -20.4971790314 -15.3866167068 -5.20093799139e-08 0.659965515137 1.85417086129e-08
+                0.999999940395 1.0 1.0 71.578666687 -20.7795009613 -14.5571451187 -5.58527410988e-08 0.659965515137 -1.12364908489e-08
+              }
+            }
+            <Table> Bone.013 {
+              <Xfm$Anim> xform {
+                <Scalar> fps { 40 }
+                <Scalar> order { sprht }
+                <Scalar> contents { ijkprhxyz }
+                <V> {
+                  1.00000011921 0.999999940395 1.00000011921 57.8086509705 53.8765563965 87.7906799316 -7.6324916165e-08 0.425662189722 -4.74019472563e-08
+                  1.00000011921 1.00000011921 1.00000011921 56.9160385132 52.2361679077 88.6914749146 4.8420510268e-08 0.425662219524 -2.45693257739e-07
+                  1.00000011921 1.0 1.00000011921 56.3391227722 51.0570869446 89.2047348022 -2.6887732929e-08 0.425662338734 1.01253458951e-08
+                  0.999999821186 1.00000011921 1.0 56.0531578064 50.280418396 89.309135437 3.2237117864e-08 0.425662189722 -6.5228043411e-08
+                  1.0 1.00000011921 1.00000023842 55.9103050232 49.6982841492 89.1171417236 6.16875084347e-09 0.425662130117 4.02160935664e-07
+                  1.00000011921 0.999999940395 1.00000011921 55.7462768555 49.0944595337 88.7946014404 -6.83443701632e-09 0.42566215992 4.84555613411e-08
+                  1.00000011921 1.0 1.00000011921 55.4061279297 48.2686386108 88.1149215698 -5.32637329798e-08 0.425662189722 -7.70040173848e-08
+                  1.00000011921 1.00000011921 1.00000023842 54.8533744812 47.1529998779 86.8302536011 -7.38988745752e-08 0.425662130117 -7.43415142779e-08
+                  1.0 1.00000011921 1.00000011921 54.2243347168 45.9081878662 85.2172393799 -1.50884638117e-08 0.425662308931 -2.77641646562e-07
+                  1.0 1.00000011921 1.0 53.6890335083 44.8074264526 83.7235717773 2.94480813068e-08 0.425662100315 2.6316499202e-07
+                  1.0 1.00000011921 1.0 53.3565597534 44.0929985046 82.733253479 2.42815048068e-08 0.425662219524 -2.82983094735e-08
+                  1.0 1.00000011921 1.00000011921 53.2491111755 43.8573913574 82.4015655518 5.46882183983e-08 0.425662130117 3.2472945577e-07
+                  0.999999940395 1.0 0.999999940395 53.3579597473 44.1539344788 82.7844314575 3.92619980971e-08 0.425662279129 -1.51068050513e-07
+                  1.0 1.00000011921 1.00000011921 53.6980781555 45.0234603882 83.9087142944 8.1462978585e-08 0.425662130117 6.01759637675e-08
+                  1.00000011921 1.0 1.00000011921 54.253326416 46.2918930054 85.5587463379 4.6517882879e-08 0.425662249327 -1.8083630593e-08
+                  1.00000011921 1.0 1.00000023842 54.9060897827 47.6024093628 87.2508163452 2.55531915627e-08 0.425662249327 -7.21175794638e-08
+                  1.00000011921 1.0 1.00000011921 55.4559745789 48.5950775146 88.4382858276 2.16562554556e-08 0.425662249327 -1.31905750322e-07
+                }
+              }
+              <Table> Bone.014 {
+                <Xfm$Anim> xform {
+                  <Scalar> fps { 40 }
+                  <Scalar> order { sprht }
+                  <Scalar> contents { ijkprhxyz }
+                  <V> {
+                    0.999999940395 1.00000011921 1.00000011921 0.000116134084237 123.522537231 -96.2310409546 -1.51653367197e-07 0.596106827259 -9.02897738797e-08
+                    0.999999940395 1.00000011921 1.0 0.000116654016892 123.522537231 -96.2310409546 -1.16614529588e-07 0.596106827259 -4.70524774698e-08
+                    1.0 1.00000011921 0.999999940395 0.000116259754577 123.522537231 -96.2310409546 2.24707452645e-09 0.596106827259 -8.43571683617e-08
+                    1.00000011921 1.00000011921 1.00000011921 0.000114421120088 123.522521973 -96.2310409546 -7.7366046014e-08 0.596106827259 -8.04339848059e-08
+                    1.0 1.00000011921 0.999999940395 0.000115381641081 123.522537231 -96.2310409546 4.04047398206e-07 0.596106767654 -2.41028423886e-08
+                    1.0 1.00000011921 1.0 0.000115121874842 123.522537231 -96.2310409546 -6.17491338062e-08 0.596106827259 -9.71327267507e-08
+                    1.0 1.00000011921 1.0 0.000112752226414 123.522537231 -96.2310409546 -1.65300960475e-07 0.596106827259 -9.54157730604e-09
+                    1.0 1.00000011921 1.0 0.000113341826363 123.522537231 -96.2310409546 -2.47449975177e-07 0.596106886864 8.9381543944e-08
+                    0.999999940395 1.00000011921 0.999999940395 0.000116646566312 123.522537231 -96.2310409546 -6.95913300319e-08 0.596106827259 -2.40285888964e-08
+                    1.00000011921 1.00000011921 1.0 0.000116564478958 123.522537231 -96.2310333252 -3.50424400608e-08 0.596106767654 2.04256664915e-08
+                    1.00000011921 1.00000023842 1.00000011921 0.00011907681619 123.522537231 -96.2310409546 3.33044141598e-07 0.596106827259 -7.43582688756e-08
+                    1.0 1.00000011921 1.0 0.000111098706839 123.522537231 -96.2310409546 2.24173433594e-07 0.596106827259 -1.74106745021e-07
+                    1.0 1.00000011921 1.0 0.000116077782877 123.522537231 -96.2310409546 -5.38059445887e-08 0.596106827259 -1.01170286371e-07
+                    0.999999940395 1.00000023842 1.0 0.000120101576613 123.522537231 -96.2310409546 -9.67636992755e-08 0.596106767654 -2.44033657282e-07
+                    1.0 1.00000011921 0.999999940395 0.000111845532956 123.522537231 -96.2310409546 -2.09301944665e-07 0.596106827259 -8.59129016817e-08
+                    1.0 1.00000011921 1.0 0.000114202986879 123.522537231 -96.2310409546 6.98840736391e-08 0.596106767654 -3.49710305159e-08
+                    1.0 1.00000023842 0.999999940395 0.000117486022646 123.522537231 -96.2310409546 -1.20468381937e-08 0.596106827259 3.93009846889e-09
+                  }
+                }
+              }
+              <Table> Bone.021 {
+                <Xfm$Anim> xform {
+                  <Scalar> fps { 40 }
+                  <Scalar> order { sprht }
+                  <Scalar> contents { ijkprhxyz }
+                  <V> {
+                    1.0 0.999999940395 1.0 -22.9712677002 -15.1328849792 68.3381195068 -1.51653367197e-07 0.596106827259 -9.02897738797e-08
+                    1.0 1.0 1.0 -20.1500854492 -11.9619102478 66.6409759521 -1.16614529588e-07 0.596106827259 -4.70524774698e-08
+                    1.0 1.00000011921 1.0 -16.4518108368 -10.4568099976 62.8099021912 2.24707452645e-09 0.596106827259 -8.43571683617e-08
+                    0.999999940395 1.0 1.0 -12.7518701553 -10.1633586884 58.0493431091 -7.7366046014e-08 0.596106827259 -8.04339848059e-08
+                    1.0 0.999999940395 0.999999940395 -10.1489458084 -10.3525571823 54.354888916 4.04047398206e-07 0.596106767654 -2.41028423886e-08
+                    1.00000011921 1.00000011921 1.0 -9.25972557068 -10.4880199432 53.040813446 -6.17491338062e-08 0.596106827259 -9.71327267507e-08
+                    1.00000011921 1.0 1.0 -9.25972747803 -10.4880189896 53.040813446 -1.65300960475e-07 0.596106827259 -9.54157730604e-09
+                    1.0 1.00000011921 1.00000011921 -9.25972747803 -10.4880180359 53.0408172607 -2.47449975177e-07 0.596106886864 8.9381543944e-08
+                    0.999999940395 1.0 1.0 -9.25972270966 -10.4880180359 53.0408096313 -6.95913300319e-08 0.596106827259 -2.40285888964e-08
+                    1.0 1.0 1.0 -9.25972557068 -10.4880123138 53.0408096313 -3.50424400608e-08 0.596106767654 2.04256664915e-08
+                    1.00000023842 1.00000023842 1.00000011921 -9.25972270966 -10.4880161285 53.040813446 3.33044141598e-07 0.596106827259 -7.43582688756e-08
+                    1.0 1.0 1.0 -9.25972557068 -10.4880170822 53.040813446 2.24173433594e-07 0.596106827259 -1.74106745021e-07
+                    1.00000011921 1.00000011921 1.00000011921 -9.259724617 -10.4880151749 53.0408096313 -5.38059445887e-08 0.596106827259 -1.01170286371e-07
+                    1.00000011921 1.00000011921 1.0 -9.25972366333 -10.4880151749 53.0408096313 -9.67636992755e-08 0.596106767654 -2.44033657282e-07
+                    1.0 1.0 1.0 -9.25972557068 -10.4880170822 53.040813446 -2.09301944665e-07 0.596106827259 -8.59129016817e-08
+                    1.00000011921 1.00000011921 1.0 -9.25972557068 -10.4880208969 53.0408096313 6.98840736391e-08 0.596106767654 -3.49710305159e-08
+                    1.00000011921 1.00000011921 1.0 -9.259724617 -10.4880170822 53.0408096313 -1.20468381937e-08 0.596106827259 3.93009846889e-09
+                  }
+                }
+              }
+            }
+          }
+          <Table> Bone.010 {
+            <Xfm$Anim> xform {
+              <Scalar> fps { 40 }
+              <Scalar> order { sprht }
+              <Scalar> contents { ijkprhxyz }
+              <V> {
+                1.0 0.999999940395 0.999999880791 -4.83979320526 20.6742458344 7.81182336807 1.72211702676e-08 0.659965276718 -6.11069097545e-08
+                1.00000011921 1.00000011921 1.00000011921 -4.87383699417 20.5906352997 7.64276504517 -6.16372730633e-08 0.659965455532 -3.34361871523e-08
+                1.00000011921 1.0 1.0 -4.94722747803 20.306728363 7.14437055588 -7.81663871408e-08 0.659965336323 9.30461752091e-09
+                1.0 0.999999940395 1.00000011921 -4.98014068604 19.8129749298 6.44453477859 -3.27250333498e-08 0.659965217113 1.05511031023e-08
+                1.00000011921 1.0 1.00000011921 -4.88805580139 19.1787815094 5.78043603897 -1.06650311693e-07 0.659965634346 5.96614269099e-09
+                1.0 1.0 0.999999940395 -4.64555454254 18.5014095306 5.32432699203 -8.22351111651e-08 0.659965395927 5.75724641294e-08
+                1.0 1.0 1.0 -4.14111614227 17.6442584991 5.01412582397 -1.47640113468e-08 0.659965634346 4.50267334529e-09
+                1.00000011921 1.00000023842 1.00000011921 -3.28363537788 16.4702014923 4.74747228622 -1.1690049817e-08 0.659965574741 -5.04695663039e-09
+                0.999999940395 1.00000011921 0.999999940395 -2.22733068466 15.1585054398 4.52983379364 -1.28423508272e-07 0.659965574741 1.31403314896e-08
+                1.00000011921 1.00000011921 1.0 -1.24568474293 14.0019369125 4.37037277222 -4.80913158185e-08 0.659965634346 2.660925702e-08
+                1.00000011921 0.999999940395 1.0 -0.590356826782 13.2532234192 4.27769041061 -1.07000133198e-08 0.659965515137 -2.41907081033e-08
+                1.0 1.0 1.0 -0.370416909456 13.0064487457 4.24953269958 1.17902878571e-08 0.659965634346 -5.25815746499e-09
+                1.0 1.00000011921 1.0 -0.630850672722 13.3387498856 4.32627344131 6.9650862855e-09 0.659965395927 2.523483289e-08
+                1.0 1.00000011921 1.0 -1.38931691647 14.3090171814 4.54163646698 -3.66056909229e-08 0.659965634346 2.18375930672e-08
+                1.0 0.999999940395 1.00000011921 -2.48302030563 15.7135314941 4.83053588867 -7.88275471564e-08 0.659965455532 1.07644804181e-09
+                1.0 1.00000011921 1.0 -3.58482432365 17.1328964233 5.09516334534 -5.20093799139e-08 0.659965515137 1.85417086129e-08
+                0.999999880791 1.0 0.999999940395 -4.36268758774 18.136390686 5.26570129395 -5.58527410988e-08 0.659965515137 -1.12364908489e-08
+              }
+            }
+            <Table> Bone.019 {
+              <Xfm$Anim> xform {
+                <Scalar> fps { 40 }
+                <Scalar> order { sprht }
+                <Scalar> contents { ijkprhxyz }
+                <V> {
+                  1.00000011921 1.0 1.0 44.9536514282 1.04711174965 -28.5285682678 2.12840536307e-08 0.99650233984 6.9147588988e-08
+                  1.00000011921 1.0 0.999999940395 44.486618042 1.39679694176 -27.8097686768 -5.85551234167e-08 0.996502041817 -5.56988837275e-08
+                  1.00000011921 1.0 0.999999940395 43.0849227905 2.47972393036 -25.6884288788 -3.20503730222e-08 0.996502101421 -1.90201028261e-08
+                  1.00000011921 1.0 1.0 41.0556526184 4.13711309433 -22.7085552216 5.93709472696e-08 0.996502399445 4.26496313821e-08
+                  1.00000011921 1.0 1.0 38.986076355 5.8979268074 -19.8675308228 -9.85371872986e-09 0.996502399445 -4.8920433926e-08
+                  1.0 1.00000011921 1.0 37.2918891907 7.30371618271 -17.872833252 -8.20932370971e-08 0.996502280235 -4.41889476122e-08
+                  1.00000011921 1.00000011921 1.00000011921 35.6313858032 8.53548049927 -16.4061489105 -6.04779444302e-08 0.996502161026 -1.28467135596e-07
+                  1.0 1.0 1.0 33.6422119141 9.89247131348 -15.0536308289 -6.17064230823e-08 0.996501922607 -6.47347153659e-09
+                  1.0 1.0 1.0 31.5875759125 11.2164363861 -13.9523067474 7.06631908542e-09 0.99650233984 -2.35995649689e-08
+                  1.00000011921 0.999999940395 1.0 29.8605690002 12.2827682495 -13.2049760818 1.63234812334e-08 0.996501743793 3.34801129043e-08
+                  1.00000011921 1.00000011921 1.00000011921 28.7748908997 12.9299650192 -12.8128728867 -3.12361301269e-08 0.996502161026 1.79642665188e-08
+                  1.00000011921 0.999999940395 1.0 28.4232654572 13.1336755753 -12.7015142441 3.80527040988e-08 0.996502220631 -7.82969244995e-09
+                  1.00000011921 1.0 1.0 28.9526252747 12.7572278976 -12.9923868179 3.24499715987e-08 0.996502041817 7.05414748836e-08
+                  1.0 1.0 1.0 30.5032463074 11.6745901108 -13.8584728241 -3.56891014519e-08 0.996502041817 -4.39638583316e-08
+                  1.0 1.00000011921 1.0 32.7613563538 10.1528816223 -15.1553449631 -1.47117020788e-08 0.99650233984 9.63670316878e-08
+                  1.0 1.0 0.999999940395 35.0599021912 8.67278289795 -16.5158233643 -2.65735007332e-08 0.996502220631 -8.54739745648e-09
+                  1.00000011921 1.0 1.0 36.6950531006 7.66315317154 -17.5066604614 -7.67973915572e-08 0.996502280235 -1.68824385582e-08
+                }
+              }
+              <Table> Bone.020 {
+                <Xfm$Anim> xform {
+                  <Scalar> fps { 40 }
+                  <Scalar> order { sprht }
+                  <Scalar> contents { ijkprhxyz }
+                  <V> {
+                    1.0 1.00000011921 0.999999880791 -30.7206707001 36.3826065063 5.40840339661 3.71694497403e-08 0.57708966732 1.10266917375e-07
+                    1.0 1.0 1.0 -30.1883087158 35.5909957886 5.49435901642 -8.7201719623e-08 0.577089309692 -3.6136228232e-08
+                    1.0 1.0 1.0 -28.6236305237 33.2490348816 5.68804121017 -9.41859283898e-08 0.57708966732 7.21085200439e-08
+                    1.0 1.0 1.0 -26.4208850861 29.9139957428 5.82297515869 -5.96784417439e-08 0.577089726925 6.57784653413e-08
+                    1.0 1.0 1.0 -24.2517433167 26.6419715881 5.81192874908 1.30808430754e-09 0.577089428902 -2.70563891291e-08
+                    0.999999940395 0.999999940395 0.999999880791 -22.5824260712 24.2351131439 5.72002410889 -5.53221326527e-08 0.57708966732 1.75559520699e-07
+                    0.999999940395 1.0 1.0 -21.1109580994 22.3320846558 5.59419822693 1.04085886576e-08 0.577089607716 -1.40136236837e-07
+                    1.0 1.0 1.00000011921 -19.4851284027 20.4295063019 5.41282749176 -6.68174990892e-08 0.577089607716 -3.59243905734e-08
+                    1.0 0.999999940395 0.999999940395 -17.9002113342 18.7270030975 5.19736385345 -4.59801370312e-08 0.577089726925 6.56500986906e-08
+                    1.0 1.0 1.0 -16.6222438812 17.4487800598 4.99884939194 -2.40217907788e-08 0.577089488506 -5.82974948315e-08
+                    0.999999940395 1.0 1.0 -15.8423099518 16.7116699219 4.86841440201 -5.82729668963e-08 0.577089965343 -5.6066946641e-09
+                    1.0 1.00000011921 1.0 -15.5947189331 16.486989975 4.82597970963 -6.71512196959e-08 0.57708966732 -2.55360408374e-08
+                    1.0 1.0 1.0 -16.0258560181 16.935503006 4.82201433182 -6.18978361899e-08 0.577089548111 -1.75321126505e-08
+                    0.999999940395 1.0 1.0 -17.2850875854 18.2492351532 4.81804609299 -3.66016053022e-08 0.57708978653 4.69035441597e-08
+                    1.0 1.00000011921 1.0 -19.1090679169 20.162946701 4.83126592636 1.86876079056e-08 0.577089428902 9.29090759882e-08
+                    0.999999940395 0.999999880791 1.0 -20.9445610046 22.1277656555 4.92087745667 -1.00788625446e-07 0.577089428902 -2.36250272678e-08
+                    1.00000011921 1.00000011921 1.00000011921 -22.2073554993 23.5812034607 5.18585681915 -7.60444152093e-08 0.577089250088 7.05119731492e-08
+                  }
+                }
+              }
+            }
+            <Table> Bone.017 {
+              <Xfm$Anim> xform {
+                <Scalar> fps { 40 }
+                <Scalar> order { sprht }
+                <Scalar> contents { ijkprhxyz }
+                <V> {
+                  0.999999940395 0.999999940395 1.0 -30.180475235 -20.0239601135 -44.1974754333 2.12840536307e-08 0.99650233984 6.9147588988e-08
+                  0.999999940395 0.999999821186 0.999999940395 -27.8143577576 -18.9344806671 -44.3055839539 -5.85551234167e-08 0.996502041817 -5.56988837275e-08
+                  1.00000011921 1.0 1.0 -25.8883361816 -17.8616142273 -43.9459762573 -3.20503730222e-08 0.996502101421 -1.90201028261e-08
+                  0.999999940395 1.0 1.0 -24.6581001282 -16.9038524628 -43.1827278137 5.93709472696e-08 0.996502399445 4.26496313821e-08
+                  0.999999940395 0.999999940395 1.0 -24.2001094818 -16.1232242584 -42.2366600037 -9.85371872986e-09 0.996502399445 -4.8920433926e-08
+                  0.999999940395 1.0 1.0 -24.3515338898 -15.5074806213 -41.328666687 -8.20932370971e-08 0.996502280235 -4.41889476122e-08
+                  0.999999940395 1.0 1.00000011921 -25.3556976318 -14.9971933365 -40.2892227173 -6.04779444302e-08 0.996502161026 -1.28467135596e-07
+                  1.0 1.0 1.0 -27.5370750427 -14.5534038544 -38.9230461121 -6.17064230823e-08 0.996501922607 -6.47347153659e-09
+                  0.999999940395 1.0 0.999999940395 -30.4602088928 -14.163356781 -37.4392089844 7.06631908542e-09 0.99650233984 -2.35995649689e-08
+                  0.999999821186 0.999999821186 0.999999821186 -33.2922668457 -13.8434534073 -36.1588096619 1.63234812334e-08 0.996501743793 3.34801129043e-08
+                  0.999999880791 1.0 0.999999940395 -35.2274665833 -13.6375598907 -35.3432426453 -3.12361301269e-08 0.996502161026 1.79642665188e-08
+                  0.999999940395 1.00000011921 1.0 -35.8858642578 -13.5706882477 -35.0769233704 3.80527040988e-08 0.996502220631 -7.82969244995e-09
+                  0.999999940395 1.0 1.0 -35.1948471069 -13.7020149231 -35.4582748413 3.24499715987e-08 0.996502041817 7.05414748836e-08
+                  0.999999940395 1.0 1.0 -33.1725845337 -14.0660581589 -36.5754508972 -3.56891014519e-08 0.996502041817 -4.39638583316e-08
+                  0.999999880791 1.0 1.0 -30.2345867157 -14.5415668488 -38.2009086609 -1.47117020788e-08 0.99650233984 9.63670316878e-08
+                  0.999999940395 0.999999880791 0.999999940395 -27.2540473938 -14.973859787 -39.8422203064 -2.65735007332e-08 0.996502220631 -8.54739745648e-09
+                  0.999999880791 0.999999940395 0.999999880791 -25.1364078522 -15.2899045944 -40.9777908325 -7.67973915572e-08 0.996502280235 -1.68824385582e-08
+                }
+              }
+              <Table> Bone.018 {
+                <Xfm$Anim> xform {
+                  <Scalar> fps { 40 }
+                  <Scalar> order { sprht }
+                  <Scalar> contents { ijkprhxyz }
+                  <V> {
+                    1.0 1.0 1.0 -2.84317350388 4.31459617615 43.2810668945 -4.27774971001e-08 0.55293494463 -2.43154147483e-07
+                    1.0 1.0 1.0 -1.93257689476 2.96211361885 42.3609619141 -8.61284945586e-08 0.552935063839 5.03921228301e-07
+                    1.0 1.0 1.0 1.34291887283 1.08063876629 39.707736969 5.23496090921e-08 0.55293482542 -2.75167963082e-07
+                    1.00000011921 1.00000011921 1.00000011921 6.25055599213 -0.846463322639 35.8635597229 4.60478339903e-08 0.552934706211 -9.88678721114e-08
+                    1.00000011921 0.999999940395 1.0 11.1505336761 -2.3428068161 32.0536651611 6.33045615928e-08 0.552934527397 -1.77688193048e-07
+                    0.999999940395 0.999999940395 0.999999940395 14.7207384109 -3.38923668861 29.2836551666 -8.80038797391e-08 0.552935063839 -2.45815243716e-07
+                    1.0 1.0 1.0 17.4627552032 -4.27910661697 27.1855106354 -2.20223377312e-08 0.55293494463 -3.16675219381e-08
+                    1.0 1.00000011921 1.0 20.1371822357 -5.12125062943 25.1856975555 -6.22090539082e-08 0.552935004234 -1.56052038847e-07
+                    1.00000011921 1.0 1.0 22.4744510651 -5.8434677124 23.4773635864 -1.16955520824e-08 0.552935123444 2.85780544118e-07
+                    1.0 1.00000011921 1.0 24.191444397 -6.37361192703 22.2496013641 1.29842248953e-07 0.55293494463 2.17729649421e-07
+                    1.0 1.0 1.00000011921 25.1621704102 -6.67931318283 21.5695285797 4.26532160702e-08 0.552934885025 6.54751346474e-08
+                    1.0 1.0 0.999999880791 25.4530563354 -6.77401971817 21.3693065643 3.31578853263e-08 0.552934885025 1.8397251722e-07
+                    1.00000011921 1.00000011921 1.00000011921 25.0129547119 -6.70759963989 21.8259963989 -7.88224454595e-08 0.552935123444 1.34361584969e-07
+                    0.999999940395 1.00000011921 1.0 23.6597633362 -6.46167039871 23.1676902771 2.7774984801e-07 0.552934706211 -2.57174178842e-07
+                    0.999999940395 1.0 0.999999940395 21.5276927948 -5.96278333664 25.1256408691 7.80966846747e-09 0.552935004234 -1.09970166307e-07
+                    1.0 1.00000011921 1.00000011921 19.0349674225 -5.2082324028 27.1338939667 1.45873883639e-07 0.552934885025 -4.25501660573e-08
+                    1.0 1.00000011921 1.0 16.6840057373 -4.31165790558 28.6140823364 -1.54124279561e-07 0.552935123444 -2.48763484478e-07
+                  }
+                }
+              }
+            }
+          }
+        }
+      }
+      <Table> Bone.022 {
+        <Xfm$Anim> xform {
+          <Scalar> fps { 40 }
+          <Scalar> order { sprht }
+          <Scalar> contents { ijkprhxyz }
+          <V> {
+            0.997839510441 0.997839450836 0.997839510441 48.4219551086 20.762348175 25.4250621796 0.256791830063 0.572016537189 1.50138771534
+            0.997839510441 0.997839450836 0.997839450836 52.9944076538 20.1313877106 27.5617046356 0.256791830063 0.572016537189 1.50138771534
+            0.997839450836 0.997839391232 0.997839570045 57.0687599182 20.2748165131 29.6144275665 0.256791830063 0.572016537189 1.50138771534
+            0.997839510441 0.997839510441 0.997839510441 60.1648902893 20.883480072 31.399892807 0.256791830063 0.572016537189 1.50138771534
+            0.997839510441 0.997839510441 0.997839510441 61.9545974731 21.3708171844 32.6676940918 0.256791830063 0.572016537189 1.50138771534
+            0.997839570045 0.997839510441 0.997839510441 62.5295066833 21.3005199432 33.3289756775 0.256791830063 0.572016537189 1.50138771534
+            0.997839450836 0.997839391232 0.997839510441 61.4371337891 19.9107208252 32.4337844849 0.256791830063 0.572016537189 1.50138771534
+            0.997839570045 0.997839570045 0.997839510441 58.2792472839 16.5291881561 29.243888855 0.256791830063 0.572016537189 1.50138771534
+            0.997839450836 0.997839450836 0.997839510441 54.1013565063 11.5774555206 24.8330936432 0.256791830063 0.572016537189 1.50138771534
+            0.997839391232 0.997839510441 0.997839570045 50.3575363159 6.42185926437 20.7606220245 0.256791830063 0.572016537189 1.50138771534
+            0.997839450836 0.997839510441 0.997839510441 47.9973068237 2.74073171616 18.1281471252 0.256791830063 0.572016537189 1.50138771534
+            0.997839570045 0.997839510441 0.997839450836 47.2302093506 1.46392774582 17.2586460114 0.256791830063 0.572016537189 1.50138771534
+            0.997839450836 0.997839510441 0.997839450836 47.9925346375 2.69705986977 18.1497211456 0.256791830063 0.572016537189 1.50138771534
+            0.997839510441 0.997839570045 0.997839510441 50.3366127014 6.26008892059 20.832490921 0.256791830063 0.572016537189 1.50138771534
+            0.997839450836 0.997839510441 0.997839510441 54.0559272766 11.2802648544 24.9509773254 0.256791830063 0.572016537189 1.50138771534
+            0.997839510441 0.997839510441 0.997839450836 58.2185745239 16.1747055054 29.3746967316 0.256791830063 0.572016537189 1.50138771534
+            0.997839450836 0.997839510441 0.997839450836 61.392780304 19.6438884735 32.5353889465 0.256791830063 0.572016537189 1.50138771534
+          }
+        }
+      }
+      <Table> Bone.002 {
+        <Xfm$Anim> xform {
+          <Scalar> fps { 40 }
+          <Scalar> order { sprht }
+          <Scalar> contents { ijkprhxyz }
+          <V> {
+            0.997839570045 0.997839510441 0.997839510441 -17.1642150879 -159.202346802 -80.7934341431 0.256791830063 0.559679985046 1.45204114914
+            0.997839510441 0.997839391232 0.997839450836 -19.4649505615 -159.542495728 -79.5359039307 0.256791830063 0.559679985046 1.45204114914
+            0.997839510441 0.997839450836 0.997839510441 -20.7816371918 -159.996002197 -78.7532806396 0.256791830063 0.559679985046 1.45204114914
+            0.997839570045 0.997839510441 0.997839510441 -21.3433322906 -160.444137573 -78.3957672119 0.256791830063 0.559679985046 1.45204114914
+            0.997839570045 0.997839391232 0.997839510441 -21.7094211578 -160.773635864 -78.2511672974 0.256791830063 0.559679985046 1.45204114914
+            0.997839570045 0.997839510441 0.997839510441 -22.3689403534 -160.939849854 -78.0979614258 0.256791830063 0.559679985046 1.45204114914
+            0.997839570045 0.997839570045 0.997839450836 -23.2522182465 -160.953826904 -77.8920440674 0.256791830063 0.559679985046 1.45204114914
+            0.997839510441 0.997839450836 0.997839450836 -24.1221885681 -160.848464966 -77.6820373535 0.256791830063 0.559679985046 1.45204114914
+            0.997839510441 0.997839510441 0.997839570045 -24.9834365845 -160.65272522 -77.4661178589 0.256791830063 0.559679985046 1.45204114914
+            0.997839450836 0.997839450836 0.997839510441 -25.8389778137 -160.385345459 -77.2429885864 0.256791830063 0.559679985046 1.45204114914
+            0.997839510441 0.997839450836 0.997839510441 -26.6909751892 -160.059143066 -77.0115585327 0.256791830063 0.559679985046 1.45204114914
+            0.997839510441 0.997839510441 0.997839510441 -27.5409908295 -159.683380127 -76.7709732056 0.256791830063 0.559679985046 1.45204114914
+            0.997839510441 0.997839510441 0.997839510441 -28.3902320862 -159.264892578 -76.5204696655 0.256791830063 0.559679985046 1.45204114914
+            0.997839510441 0.997839510441 0.997839510441 -29.2395763397 -158.808776855 -76.2593536377 0.256791830063 0.559679985046 1.45204114914
+            0.997839510441 0.997839450836 0.997839510441 -30.0896205902 -158.31880188 -75.9870071411 0.256791830063 0.559679985046 1.45204114914
+            0.997839510441 0.997839450836 0.997839510441 -30.9404773712 -157.797607422 -75.7029037476 0.256791830063 0.559679985046 1.45204114914
+            0.997839450836 0.997839450836 0.997839570045 -31.791135788 -157.24659729 -75.4067077637 0.256791830063 0.559679985046 1.45204114914
+          }
+        }
+        <Table> Bone.003 {
+          <Xfm$Anim> xform {
+            <Scalar> fps { 40 }
+            <Scalar> order { sprht }
+            <Scalar> contents { ijkprhxyz }
+            <V> {
+              1.00000023842 1.00000023842 1.0 -62.9530677795 -67.5274887085 130.132705688 -2.33866757071e-08 0.37055939436 -1.05964439001e-07
+              1.00000023842 1.00000023842 1.00000011921 -59.7573127747 -68.7073516846 126.884552002 5.87139545871e-08 0.370559453964 -4.08323330703e-08
+              1.00000011921 1.00000023842 1.00000011921 -48.6701774597 -71.6026535034 115.650306702 1.06385318333e-08 0.370559364557 -4.71386485401e-08
+              1.0 1.0 1.0 -29.5384578705 -73.9374923706 96.3308334351 5.41768159223e-08 0.370559453964 -4.87505076308e-08
+              1.0 1.0 0.999999940395 -12.228852272 -74.2562408447 78.8757629395 2.61345611818e-08 0.370559364557 -6.02366654334e-08
+              1.0 1.00000011921 1.00000011921 -6.15238142014 -74.0233535767 72.7477874756 5.54701031774e-08 0.370559483767 -4.48928929586e-08
+              0.999999880791 0.999999940395 0.999999940395 -6.15238809586 -74.0233612061 72.7477874756 4.14832612705e-10 0.370559334755 6.52746479091e-09
+              0.999999940395 0.999999880791 1.00000011921 -6.15238332748 -74.0233612061 72.7477874756 -7.22467277114e-08 0.370559483767 -6.21917450871e-08
+              0.999999880791 0.999999940395 0.999999940395 -6.15238904953 -74.0233612061 72.7477874756 3.39850707576e-08 0.37055939436 -1.08128020315e-07
+              0.999999880791 1.0 0.999999940395 -6.1523900032 -74.0233535767 72.7477874756 -4.04914857199e-08 0.370559424162 8.46490735285e-08
+              1.00000011921 1.00000011921 1.00000011921 -6.15239572525 -74.0233535767 72.7477874756 -2.23521965381e-08 0.370559334755 -1.27501831315e-08
+              0.999999940395 0.999999940395 1.0 -6.15239477158 -74.0233612061 72.7477874756 2.72100137977e-08 0.370559453964 5.18898524149e-09
+              1.0 1.0 1.0 -6.1523938179 -74.0233535767 72.747795105 -5.0658393036e-09 0.370559424162 -6.15922743918e-08
+              0.999999940395 1.0 1.0 -6.15239477158 -74.0233612061 72.747795105 2.36763497696e-09 0.370559424162 5.53216210619e-08
+              1.0 1.00000011921 1.00000011921 -6.15237855911 -74.0233535767 72.7477874756 3.6659578484e-08 0.370559424162 -5.12380715634e-09
+              0.999999880791 1.0 1.0 -6.15239477158 -74.0233612061 72.7477798462 -5.70357521212e-08 0.370559513569 4.25014548e-08
+              1.0 1.0 1.0 -6.15239238739 -74.0233535767 72.747795105 -1.36003080797e-07 0.370559424162 3.80287801249e-09
+            }
+          }
+          <Table> Bone.004 {
+            <Xfm$Anim> xform {
+              <Scalar> fps { 40 }
+              <Scalar> order { sprht }
+              <Scalar> contents { ijkprhxyz }
+              <V> {
+                1.0 1.00000011921 1.0 4.73146533966 15.076128006 -65.237449646 -1.28160762003e-08 0.307591825724 -3.09054186687e-08
+                1.0 0.999999940395 0.999999940395 4.73147535324 15.076128006 -65.237449646 3.11446370915e-08 0.307591825724 -7.65440049122e-08
+                1.0 1.0 1.0 4.73152494431 15.0761260986 -65.237449646 4.93558438563e-09 0.307591795921 -4.42259526778e-08
+                1.0 1.00000011921 1.0 4.73158693314 15.076125145 -65.2374572754 -4.40318324024e-08 0.307591855526 7.99958286279e-08
+                1.0 1.00000011921 1.00000011921 4.73163127899 15.0761232376 -65.2374649048 -7.69883570229e-08 0.307591855526 -3.28811928796e-08
+                1.0 1.00000011921 1.0 4.73165178299 15.0761232376 -65.2374649048 -2.90523267665e-08 0.307591855526 -4.9712507888e-08
+                1.0 1.00000011921 1.0 4.73164987564 15.076125145 -65.2374649048 1.52049608459e-08 0.307591825724 -8.7422087347e-09
+                1.00000011921 1.00000011921 0.999999940395 4.73164749146 15.0761213303 -65.2374649048 -1.42368293155e-07 0.307591766119 -4.79719446389e-08
+                1.0 1.00000011921 0.999999940395 4.73164796829 15.0761232376 -65.2374725342 1.96024387833e-08 0.307591795921 1.91032185626e-07
+                1.00000011921 1.00000011921 1.0 4.73164749146 15.0761232376 -65.2374649048 -6.03229608487e-08 0.307591885328 3.55827367571e-08
+                1.00000011921 1.0 1.0 4.73164796829 15.0761232376 -65.2374649048 6.59527259472e-08 0.307591766119 -4.96198353517e-08
+                1.00000011921 1.0 1.00000011921 4.73164796829 15.0761232376 -65.2374649048 3.00894171801e-08 0.307591885328 5.52511139063e-08
+                1.00000011921 1.0 1.0 4.73165464401 15.0761213303 -65.2374649048 3.27940377076e-08 0.307591885328 -9.28230292629e-08
+                1.0 0.999999940395 1.0 4.73164987564 15.0761213303 -65.2374649048 -5.0514508132e-09 0.307591855526 -2.92353448117e-08
+                1.0 1.0 1.0 4.7316493988 15.0761232376 -65.2374649048 4.08208578051e-08 0.307591855526 3.40611006067e-09
+                1.0 1.0 1.0 4.73164892197 15.0761232376 -65.2374649048 8.05912350188e-08 0.307591825724 1.27828982954e-07
+                0.999999940395 1.00000011921 0.999999940395 4.73165035248 15.0761213303 -65.2374725342 2.03085566142e-08 0.307591795921 3.63470533671e-08
+              }
+            }
+            <Table> Bone.005 {
+              <Xfm$Anim> xform {
+                <Scalar> fps { 40 }
+                <Scalar> order { sprht }
+                <Scalar> contents { ijkprhxyz }
+                <V> {
+                  1.0 1.0 1.00000011921 -45.3088340759 -90.0944976807 134.348480225 -4.57188065184e-08 0.739777326584 -1.39648875574e-07
+                  1.00000011921 1.00000011921 1.00000011921 -45.3065490723 -90.0944976807 134.349212646 -2.16193249969e-08 0.739777505398 1.36626027825e-07
+                  1.00000011921 1.0 1.00000011921 -45.3079795837 -90.0944976807 134.348571777 -3.64172478839e-08 0.739777386189 -1.57603885498e-08
+                  1.00000011921 1.00000011921 1.00000023842 -45.3077278137 -90.0944976807 134.349914551 7.09200698168e-10 0.739777505398 -2.17522156731e-07
+                  1.00000011921 1.00000011921 1.00000011921 -45.3066482544 -90.0944976807 134.349243164 -2.34297097279e-08 0.739777445793 5.02969790261e-08
+                  1.0 1.0 1.00000011921 -45.3072357178 -90.0944976807 134.348617554 5.47980931742e-08 0.739777386189 6.36939816445e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3063354492 -90.0944976807 134.349731445 -2.78388512243e-08 0.739777386189 1.22321495155e-07
+                  1.00000011921 1.00000011921 1.00000011921 -45.3079528809 -90.0944976807 134.349594116 -1.98920968586e-08 0.739777445793 1.39320221137e-07
+                  1.00000011921 1.00000011921 1.00000011921 -45.3049850464 -90.0944976807 134.349624634 4.01148092521e-09 0.739777386189 -7.83840903296e-09
+                  1.00000011921 1.00000011921 1.00000011921 -45.3068885803 -90.0944976807 134.349884033 -3.72745248001e-08 0.739777445793 -1.36726585609e-08
+                  0.999999940395 1.00000011921 1.0 -45.3074111938 -90.0944976807 134.348190308 -4.98246244263e-09 0.739777445793 2.21209234041e-07
+                  1.00000011921 1.00000011921 1.00000011921 -45.3062553406 -90.0944976807 134.350036621 -1.4547627103e-08 0.739777326584 5.32919806062e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3084983826 -90.0944976807 134.348632813 1.31045529983e-09 0.739777565002 6.72285764836e-08
+                  1.00000011921 1.0 1.00000011921 -45.3079872131 -90.0944976807 134.349273682 -4.71024605986e-08 0.739777505398 -1.99022629488e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3089752197 -90.0944976807 134.349212646 1.76825576403e-08 0.739777445793 -3.93007155708e-08
+                  1.00000011921 1.00000011921 1.00000011921 -45.3068313599 -90.0944976807 134.349609375 -3.28085683066e-08 0.739777386189 7.65409069459e-08
+                  1.00000011921 1.0 1.00000011921 -45.3066253662 -90.0944976807 134.349456787 2.85959700363e-10 0.739777386189 -3.06034020348e-09
+                }
+              }
+            }
+          }
+        }
+      }
+      <Table> Bone.006 {
+        <Xfm$Anim> xform {
+          <Scalar> fps { 40 }
+          <Scalar> order { sprht }
+          <Scalar> contents { ijkprhxyz }
+          <V> {
+            0.997839570045 0.997839570045 0.997839570045 18.8509464264 -35.5690078735 87.2144775391 0.256791740656 0.559679985046 1.45204126835
+            0.997839510441 0.997839510441 0.997839570045 23.8839073181 -35.2737693787 85.1496658325 0.256791740656 0.559679985046 1.45204126835
+            0.99783962965 0.997839510441 0.997839510441 27.9052124023 -35.2803077698 82.5104751587 0.256791740656 0.559679985046 1.45204126835
+            0.997839510441 0.997839510441 0.997839510441 30.6270847321 -35.4863586426 79.8491439819 0.256791740656 0.559679985046 1.45204126835
+            0.997839570045 0.997839510441 0.997839570045 32.02394104 -35.7147674561 77.9700546265 0.256791740656 0.559679985046 1.45204126835
+            0.997839570045 0.997839450836 0.997839510441 32.399597168 -35.8112716675 77.3319702148 0.256791740656 0.559679985046 1.45204126835
+            0.997839510441 0.99783962965 0.997839570045 31.8027877808 -35.9089736938 77.8332061768 0.256791740656 0.559679985046 1.45204126835
+            0.997839510441 0.997839510441 0.997839570045 30.0552272797 -36.1692314148 79.3029403687 0.256791740656 0.559679985046 1.45204126835
+            0.997839689255 0.997839570045 0.99783962965 27.5190753937 -36.4794387817 81.4405136108 0.256791740656 0.559679985046 1.45204126835
+            0.99783962965 0.997839570045 0.99783962965 24.9613170624 -36.7127952576 83.6006393433 0.256791740656 0.559679985046 1.45204126835
+            0.997839510441 0.997839510441 0.997839570045 23.173456192 -36.8291969299 85.1124725342 0.256791740656 0.559679985046 1.45204126835
+            0.997839570045 0.997839450836 0.997839510441 22.5580940247 -36.8604393005 85.6330947876 0.256791740656 0.559679985046 1.45204126835
+            0.997839510441 0.997839510441 0.997839570045 23.1650238037 -36.8296508789 85.1195678711 0.256791740656 0.559679985046 1.45204126835
+            0.997839570045 0.997839510441 0.997839450836 24.9298591614 -36.7151679993 83.626991272 0.256791740656 0.559679985046 1.45204126835
+            0.997839570045 0.997839510441 0.997839450836 27.4629592896 -36.4853820801 81.4873504639 0.256791740656 0.559679985046 1.45204126835
+            0.997839570045 0.997839510441 0.997839570045 29.9928398132 -36.1777877808 79.3549423218 0.256791740656 0.559679985046 1.45204126835
+            0.997839570045 0.997839570045 0.997839510441 31.7609500885 -35.91563797 77.8681488037 0.256791740656 0.559679985046 1.45204126835
+          }
+        }
+        <Table> Bone.007 {
+          <Xfm$Anim> xform {
+            <Scalar> fps { 40 }
+            <Scalar> order { sprht }
+            <Scalar> contents { ijkprhxyz }
+            <V> {
+              1.00000011921 1.00000011921 1.00000011921 -19.0807819366 134.61529541 49.1796646118 1.07184646936e-07 0.419119626284 3.71218717987e-08
+              0.999999940395 1.0 0.999999940395 -17.454416275 133.14024353 50.8569564819 -2.93425319597e-08 0.419119656086 -1.09115809721e-07
+              1.0 1.0 0.999999880791 -12.4154348373 129.221450806 56.0495529175 3.19684545502e-08 0.419119626284 5.76084211446e-08
+              1.00000011921 0.999999940395 1.0 -4.50385665894 124.73223114 64.160118103 -2.34263836774e-07 0.419119685888 4.38552092419e-08
+              0.999999940395 1.0 1.0 3.41619181633 121.753791809 72.2214660645 -1.14287239228e-07 0.419119566679 -5.02448713746e-08
+              0.999999940395 1.0 1.0 7.48765993118 120.798522949 76.3171005249 3.19839732477e-09 0.419119656086 -7.65205712128e-08
+              0.999999940395 1.0 1.0 8.71418762207 120.768882751 77.5487670898 -8.65051816845e-08 0.419119596481 -5.75235965528e-08
+              0.999999761581 0.999999880791 0.999999821186 9.71349430084 120.819328308 78.6223907471 -2.26725234143e-08 0.419119596481 -2.95386417548e-08
+              1.0 1.00000011921 0.999999940395 10.5325479507 120.929077148 79.5687179565 6.85651802002e-09 0.419119656086 3.24682147834e-08
+              1.00000011921 1.00000011921 1.00000011921 11.2028808594 121.084693909 80.408782959 -5.82043178099e-08 0.419119626284 3.6499116618e-08
+              0.999999940395 1.0 1.0 11.7469415665 121.277015686 81.1578674316 -3.41707107054e-08 0.419119596481 -5.8365696276e-08
+              0.999999880791 0.999999940395 1.0 12.1815195084 121.499488831 81.8275527954 -9.34456512169e-09 0.419119626284 -1.96903151561e-08
+              1.0 1.00000011921 0.999999940395 12.51932621 121.747276306 82.4267959595 -2.29197738122e-07 0.419119685888 -6.78340725813e-08
+              0.999999821186 0.999999880791 0.999999940395 12.7701396942 122.016807556 82.962562561 2.3464730603e-08 0.419119656086 -4.32044942045e-08
+              0.999999880791 0.999999940395 0.999999940395 12.9412088394 122.305381775 83.4400405884 1.83990103153e-08 0.419119596481 5.43498046568e-08
+              0.999999940395 1.0 1.0 13.0373077393 122.611045837 83.8625946045 -8.2790315048e-08 0.419119656086 3.82818221567e-08
+              0.999999940395 1.0 0.999999940395 13.0597734451 122.9324646 84.2307052612 -7.02860702972e-08 0.419119626284 -6.07057160096e-08
+            }
+          }
+          <Table> Bone.008 {
+            <Xfm$Anim> xform {
+              <Scalar> fps { 40 }
+              <Scalar> order { sprht }
+              <Scalar> contents { ijkprhxyz }
+              <V> {
+                1.0 1.00000011921 1.0 38.6053886414 -14.3536138535 -67.2704696655 5.50403100874e-08 0.327627360821 -7.05270011281e-08
+                1.00000011921 1.00000011921 1.00000011921 37.8879356384 -14.0249290466 -68.039352417 1.88340667506e-08 0.327627241611 -5.5053430259e-08
+                1.0 1.0 1.0 36.0614814758 -13.8817081451 -68.3137054443 7.91299115122e-08 0.327627360821 -8.73760619413e-09
+                1.0 1.0 0.999999940395 33.7655105591 -13.8821735382 -68.2037277222 3.66457442169e-08 0.327627241611 -3.92505405955e-08
+                1.0 1.0 1.0 31.9838638306 -13.9295682907 -67.9743347168 1.33961313153e-08 0.327627301216 -3.89633214581e-08
+                1.0 0.999999940395 0.999999940395 31.3500556946 -13.9528656006 -67.8677215576 -6.88237804525e-08 0.327627331018 -7.21405957194e-09
+                0.999999940395 1.00000011921 1.0 31.9853839874 -13.8973169327 -67.7208023071 1.39183498504e-07 0.327627390623 -1.08477607341e-07
+                0.999999940395 0.999999940395 1.0 33.8360786438 -13.7445459366 -67.2894744873 1.2130998428e-08 0.327627331018 -3.97029875643e-09
+                1.0 1.00000011921 1.0 36.4991226196 -13.5486364365 -66.6609039307 -1.39826612511e-08 0.327627271414 -2.06708321571e-08
+                0.999999940395 1.0 1.0 39.1621894836 -13.3813076019 -66.0241165161 -1.25863380163e-07 0.327627271414 -1.97669098867e-08
+                0.999999940395 1.0 1.00000011921 41.0129318237 -13.2820682526 -65.5774536133 4.57005597809e-08 0.327627271414 4.84752682439e-09
+                1.0 1.00000011921 1.0 41.6482696533 -13.2512435913 -65.4234313965 -3.5374156937e-09 0.327627271414 4.38526992497e-09
+                0.999999940395 0.999999940395 1.0 41.5205688477 -13.2157278061 -65.6408157349 -1.21760814764e-08 0.327627360821 -6.08019661286e-08
+                1.00000023842 1.0 1.0 40.9873085022 -13.1376237869 -66.2511291504 -9.5261178501e-08 0.327627182007 2.07459915913e-09
+                0.999999940395 0.999999940395 1.0 39.7989006042 -13.0956258774 -67.0738449097 -1.3031205981e-07 0.327627182007 1.28797950083e-08
+                1.0 1.00000011921 1.0 37.7867546082 -13.1905794144 -67.7945327759 4.97961032409e-08 0.327627331018 1.0199627809e-08
+                1.0 1.0 1.0 34.9710998535 -13.4773349762 -68.1155929565 4.19628154447e-09 0.327627182007 -4.77317740888e-09
+              }
+            }
+            <Table> Bone.009 {
+              <Xfm$Anim> xform {
+                <Scalar> fps { 40 }
+                <Scalar> order { sprht }
+                <Scalar> contents { ijkprhxyz }
+                <V> {
+                  0.999999940395 0.999999880791 0.999999880791 -0.323785364628 -75.6769943237 69.4694366455 -8.09543188041e-09 0.66486954689 5.32005586251e-08
+                  0.999999880791 0.999999880791 0.999999880791 -0.380906969309 -75.6535186768 69.7807846069 8.21065615497e-09 0.664869785309 -1.49775431169e-07
+                  0.999999940395 0.999999880791 0.999999880791 -0.538561224937 -75.5869979858 70.654624939 -1.50052414938e-08 0.664869606495 4.88752647243e-08
+                  0.999999940395 0.999999940395 0.999999880791 -0.733992278576 -75.5007171631 71.769821167 1.30844224344e-08 0.664869725704 -1.46199141682e-09
+                  1.0 1.00000011921 1.0 -0.880744993687 -75.4328689575 72.6329803467 -1.2984337161e-08 0.664869725704 -8.5848661513e-09
+                  0.999999880791 1.0 0.999999880791 -0.931703567505 -75.4086532593 72.9383239746 -9.57279588931e-10 0.664869785309 2.8840290156e-08
+                  0.999999940395 1.0 0.999999880791 -0.931691169739 -75.4086532593 72.9383163452 1.29389254866e-08 0.664869725704 6.05601115922e-08
+                  0.999999880791 0.999999940395 0.999999880791 -0.931698560715 -75.4086532593 72.9383087158 -1.56682524732e-08 0.664869606495 -1.13845617378e-08
+                  0.999999940395 0.999999940395 0.999999940395 -0.931698024273 -75.4086532593 72.9383163452 7.78308173466e-09 0.6648696661 9.15773554766e-08
+                  0.999999821186 0.999999940395 0.999999821186 -0.931702077389 -75.4086532593 72.9383163452 1.42335032649e-09 0.664869785309 7.84010083521e-08
+                  0.999999821186 0.999999940395 0.999999880791 -0.931702375412 -75.4086532593 72.9383087158 2.31077841306e-08 0.664869606495 -5.37592992345e-09
+                  0.999999940395 1.0 0.999999821186 -0.931701123714 -75.4086532593 72.9383163452 -7.55920392947e-09 0.664869844913 -4.9177803163e-08
+                  1.00000011921 1.00000011921 1.0 -0.931699931622 -75.4086532593 72.9383163452 -1.56498103365e-09 0.664869725704 1.23396688423e-07
+                  0.999999940395 0.999999940395 0.999999940395 -0.931700110435 -75.4086532593 72.9383087158 1.32006761078e-09 0.664869844913 6.0618567943e-08
+                  0.999999821186 0.999999940395 0.999999761581 -0.931714951992 -75.4086532593 72.9383087158 -2.63793857869e-08 0.664869725704 8.95518148525e-09
+                  0.999999880791 1.0 0.999999821186 -0.931699633598 -75.4086532593 72.9383163452 -1.63775251139e-08 0.664869725704 -6.94481130381e-08
+                  1.0 1.0 1.0 -0.931695997715 -75.4086532593 72.9383087158 -5.45375300476e-08 0.664869844913 -6.8822309629e-08
+                }
+              }
+            }
+          }
+        }
+      }
+    }
+  }
+}
+<Table> {
+  <Bundle> shoot {
+    <Table> "<skeleton>" {
+      <Table> Bone {
+        <Xfm$Anim> xform {
+          <Scalar> fps { 15 }
+          <Scalar> order { sprht }
+          <Scalar> contents { ijkprhxyz }
+          <V> {
+            0.997839510441 0.997839510441 0.997839510441 89.9307022095 -0.0699894800782 -90.0151901245 0.256791830063 0.561129450798 1.37076508999
+            0.997839510441 0.997839510441 0.997839510441 89.9694671631 -1.30957889557 -90.1658782959 0.256791830063 0.561129450798 1.37076508999
+            0.997839570045 0.997839510441 0.997839510441 90.0607070923 -3.71339893341 -90.4372787476 0.256791830063 0.561129450798 1.37076508999
+            0.997839570045 0.997839510441 0.997839510441 90.1070404053 -4.81558561325 -90.5611190796 0.256791830063 0.561129450798 1.37076508999
+            0.997839510441 0.997839450836 0.997839510441 90.0884170532 -3.66333055496 -90.4278793335 0.256791830063 0.561129450798 1.37076508999
+            0.997839570045 0.997839570045 0.997839510441 90.0287399292 -1.20402622223 -90.144821167 0.256791830063 0.561129450798 1.37076508999
+            0.997839510441 0.997839510441 0.997839510441 89.929725647 -0.0699945688248 -90.0151901245 0.256791830063 0.561129570007 1.37076711655
+          }
+        }
+        <Table> Bone.001 {
+          <Xfm$Anim> xform {
+            <Scalar> fps { 15 }
+            <Scalar> order { sprht }
+            <Scalar> contents { ijkprhxyz }
+            <V> {
+              1.0 0.999999940395 1.0 -2.23188053496e-05 177.336227417 -1.03751528968e-06 1.15141860491e-08 0.520252346992 -5.07877695455e-09
+              1.0 1.0 1.0 -2.23249735427e-05 177.336227417 -1.03258355466e-06 5.73222678213e-08 0.520252406597 1.80378147974e-08
+              1.0 1.0 1.0 -2.23171264224e-05 177.336227417 -1.28441342895e-06 4.02673698829e-08 0.520252346992 1.57016870617e-08
+              1.0 1.0 1.0 -2.23236984311e-05 177.336227417 -1.03179229427e-06 -7.2969072562e-08 0.520252406597 -1.60853241837e-09
+              1.00000011921 1.0 1.0 -2.23211627599e-05 177.336227417 -9.33002354486e-07 -6.10071921869e-08 0.520252525806 -2.53090171043e-08
+              1.0 0.999999940395 1.00000011921 -2.23266233661e-05 177.336227417 -9.00954148619e-07 2.16676117049e-08 0.520252287388 -5.71444047637e-09
+              1.0 1.0 0.999999940395 -2.23411698244e-05 177.336227417 1.23839583921e-06 -6.32165253478e-08 0.520252406597 2.64552504348e-08
+            }
+          }
+          <Table> Bone.012 {
+            <Xfm$Anim> xform {
+              <Scalar> fps { 15 }
+              <Scalar> order { sprht }
+              <Scalar> contents { ijkprhxyz }
+              <V> {
+                1.0 1.0 1.00000023842 -103.671539307 2.66391968727 -0.000111195404315 -2.23008900235e-08 0.659965455532 -2.08782218181e-08
+                1.0 1.00000011921 1.00000011921 -103.671539307 2.66391968727 -0.00011123760487 -3.06331280342e-08 0.659965455532 2.13054693887e-08
+                1.00000011921 1.0 1.00000011921 -103.671539307 2.66391944885 -0.000111194771307 8.10904552395e-08 0.659965276718 -3.46460016232e-09
+                1.0 1.00000011921 1.00000011921 -103.671539307 2.66391968727 -0.000111060362542 -4.14476843957e-08 0.659965455532 -4.7196353492e-09
+                0.999999880791 0.999999940395 1.00000011921 -103.671539307 2.66391968727 -0.000111526111141 -3.31216298832e-08 0.659965217113 5.57415491542e-09
+                1.0 0.999999940395 1.00000011921 -103.671539307 2.66391944885 -0.0001110091398 6.83503600385e-08 0.659965455532 6.53605836121e-09
+                1.0 1.00000011921 1.00000023842 -103.671539307 2.66391968727 -0.00011120011186 -4.81693618326e-09 0.659965395927 1.32304398548e-08
+              }
+            }
+            <Table> Bone.015 {
+              <Xfm$Anim> xform {
+                <Scalar> fps { 15 }
+                <Scalar> order { sprht }
+                <Scalar> contents { ijkprhxyz }
+                <V> {
+                  1.0 0.999999940395 0.999999880791 -23.3760643005 41.8830299377 57.9025115967 1.6537569536e-08 0.492759734392 2.78371572904e-07
+                  1.0 1.0 0.999999940395 -24.0779972076 41.224407196 57.6060409546 8.78228405554e-08 0.492759823799 -2.41699694925e-07
+                  1.0 1.00000011921 0.999999880791 -25.3515281677 40.7135543823 56.4896965027 7.58493179376e-09 0.49275970459 1.41486836469e-07
+                  1.00000011921 1.00000011921 1.0 -25.923997879 40.5441017151 55.9310760498 2.38606734371e-08 0.492759764194 -6.90671129178e-08
+                  1.0 1.0 0.999999940395 -25.6374263763 40.7048988342 55.9164047241 -5.72248133324e-08 0.492759823799 7.84299771794e-08
+                  1.0 1.0 1.0 -24.6923141479 41.2198181152 56.3838691711 -2.77641429847e-08 0.492759823799 -2.01422963642e-07
+                  0.999999880791 0.999999940395 1.0 -23.3646125793 41.8884506226 57.9197502136 -6.88286618811e-08 0.49275970459 -4.3620321577e-08
+                }
+              }
+              <Table> Bone.016 {
+                <Xfm$Anim> xform {
+                  <Scalar> fps { 15 }
+                  <Scalar> order { sprht }
+                  <Scalar> contents { ijkprhxyz }
+                  <V> {
+                    1.0 0.999999940395 0.999999940395 12.0450754166 -22.0696849823 -7.07114839554 5.90552033941e-08 0.416112959385 -1.41888323313e-08
+                    1.0 0.999999940395 0.999999940395 14.0482158661 -23.9975566864 -6.80964183807 -1.65586129697e-07 0.416112929583 -4.70029704047e-08
+                    1.00000011921 0.999999940395 0.999999880791 16.651594162 -24.633813858 -4.99666786194 -7.0452230716e-08 0.416112959385 -1.27325222365e-07
+                    1.0 1.0 1.00000011921 17.7290744781 -24.6643199921 -4.03496694565 3.18343040817e-08 0.416112869978 -2.80729501867e-08
+                    0.999999940395 0.999999940395 1.0 16.3120746613 -24.3197574615 -4.29831790924 2.30417342095e-07 0.416112959385 -1.20825433214e-07
+                    1.00000011921 0.999999940395 1.00000011921 13.3345794678 -23.2996139526 -5.35684967041 1.62760656508e-07 0.416112989187 -3.41234738244e-08
+                    1.0 0.999999940395 1.0 12.0462188721 -22.0594425201 -7.08699560165 6.81082426013e-08 0.416112929583 -2.41356701736e-07
+                  }
+                }
+              }
+            }
+          }
+          <Table> Bone.011 {
+            <Xfm$Anim> xform {
+              <Scalar> fps { 15 }
+              <Scalar> order { sprht }
+              <Scalar> contents { ijkprhxyz }
+              <V> {
+                0.999999940395 1.0 1.00000011921 109.536643982 2.66396570206 4.45116202172e-05 -2.23008900235e-08 0.659965455532 -2.08782218181e-08
+                0.999999940395 1.0 1.0 109.536643982 2.66396570206 4.45857513114e-05 -3.06331280342e-08 0.659965455532 2.13054693887e-08
+                0.999999940395 1.0 1.0 109.536636353 2.66396546364 4.41902848252e-05 8.10904552395e-08 0.659965276718 -3.46460016232e-09
+                0.999999940395 1.0 1.0 109.536643982 2.66396594048 4.47656129836e-05 -4.14476843957e-08 0.659965455532 -4.7196353492e-09
+                0.999999880791 0.999999940395 0.999999940395 109.536636353 2.66396570206 4.41069023509e-05 -3.31216298832e-08 0.659965217113 5.57415491542e-09
+                0.999999940395 0.999999821186 1.0 109.536643982 2.66396546364 4.46898629889e-05 6.83503600385e-08 0.659965455532 6.53605836121e-09
+                0.999999940395 1.0 1.0 109.536643982 2.66396546364 4.45127989224e-05 -4.81693618326e-09 0.659965395927 1.32304398548e-08
+              }
+            }
+            <Table> Bone.013 {
+              <Xfm$Anim> xform {
+                <Scalar> fps { 15 }
+                <Scalar> order { sprht }
+                <Scalar> contents { ijkprhxyz }
+                <V> {
+                  0.999999940395 0.999999940395 1.0 47.306224823 -14.6833972931 2.26944804192 -6.85278251922e-08 0.425662100315 -3.96136385916e-08
+                  1.0 1.00000011921 1.0 47.3062286377 -14.6833972931 2.26944828033 1.04131068213e-07 0.425662249327 -1.55978952421e-07
+                  1.00000011921 1.00000011921 1.0 47.3062324524 -14.6833992004 2.26944851875 3.53855043045e-08 0.425662219524 -2.22872884592e-08
+                  1.0 1.00000011921 1.0 47.3062324524 -14.6833972931 2.26944708824 3.4518752301e-08 0.425662308931 1.16175179699e-07
+                  1.0 1.0 1.00000011921 47.3062286377 -14.6833972931 2.26944708824 2.49570053512e-08 0.425662189722 -7.29498879082e-08
+                  1.0 1.00000011921 1.00000011921 47.306224823 -14.6833972931 2.26944756508 5.79767842623e-08 0.425662338734 -7.13897208016e-08
+                  1.0 0.999999940395 0.999999880791 47.3065185547 -14.6838674545 2.26974582672 -5.77912828703e-08 0.42566215992 -1.81522764819e-07
+                }
+              }
+              <Table> Bone.014 {
+                <Xfm$Anim> xform {
+                  <Scalar> fps { 15 }
+                  <Scalar> order { sprht }
+                  <Scalar> contents { ijkprhxyz }
+                  <V> {
+                    0.999999940395 1.00000011921 0.999999940395 0.000115352966532 123.522537231 -96.2310409546 1.6907661049e-08 0.596106827259 -6.72546320857e-08
+                    1.0 1.00000023842 1.0 0.000117481307825 123.522537231 -96.2310409546 -2.41356734598e-09 0.596106886864 -9.60963646435e-08
+                    1.0 1.00000023842 1.0 0.000116042880109 123.522537231 -96.2310409546 -5.78478847046e-08 0.596106648445 -1.19222619333e-07
+                    1.00000011921 1.00000011921 1.00000011921 0.000115243325126 123.522537231 -96.2310409546 6.746662784e-09 0.59610670805 -3.18832320545e-08
+                    1.00000011921 1.00000023842 1.00000011921 0.000116531155072 123.522521973 -96.2310409546 -3.98276860381e-08 0.596106886864 -7.60273177747e-10
+                    1.0 1.00000023842 0.999999940395 0.000119284843095 123.522537231 -96.2310409546 -1.19568479562e-08 0.596106886864 -6.69683259957e-08
+                    1.0 1.00000011921 1.0 0.000115059810923 123.522537231 -96.2310409546 7.37722345434e-08 0.596106886864 6.20576088295e-08
+                  }
+                }
+              }
+              <Table> Bone.021 {
+                <Xfm$Anim> xform {
+                  <Scalar> fps { 15 }
+                  <Scalar> order { sprht }
+                  <Scalar> contents { ijkprhxyz }
+                  <V> {
+                    1.00000011921 0.999999940395 0.999999940395 20.7281684875 -7.97880506516 12.7815856934 1.6907661049e-08 0.596106827259 -6.72546320857e-08
+                    1.00000011921 1.0 1.00000011921 20.7281684875 -7.97880315781 12.7815828323 -2.41356734598e-09 0.596106886864 -9.60963646435e-08
+                    1.0 1.0 1.00000011921 20.7281665802 -7.97880411148 12.781583786 -5.78478847046e-08 0.596106648445 -1.19222619333e-07
+                    1.00000023842 1.00000023842 1.00000011921 20.7281684875 -7.97880506516 12.7815904617 6.746662784e-09 0.59610670805 -3.18832320545e-08
+                    0.999999940395 1.0 1.0 20.7281665802 -7.97880315781 12.781583786 -3.98276860381e-08 0.596106886864 -7.60273177747e-10
+                    1.00000011921 1.0 1.00000011921 20.7281684875 -7.97880315781 12.7815847397 -1.19568479562e-08 0.596106886864 -6.69683259957e-08
+                    1.00000011921 1.00000011921 1.00000011921 20.7281684875 -7.97880411148 12.781583786 7.37722345434e-08 0.596106886864 6.20576088295e-08
+                  }
+                }
+              }
+            }
+          }
+          <Table> Bone.010 {
+            <Xfm$Anim> xform {
+              <Scalar> fps { 15 }
+              <Scalar> order { sprht }
+              <Scalar> contents { ijkprhxyz }
+              <V> {
+                1.00000011921 1.00000011921 1.00000011921 0.8032964468 12.6022396088 1.03085970879 -2.23008900235e-08 0.659965455532 -2.08782218181e-08
+                1.0 0.999999940395 1.00000011921 0.884012758732 12.7107057571 2.01019692421 -3.06331280342e-08 0.659965455532 2.13054693887e-08
+                1.0 1.0 1.0 1.06319499016 12.9382305145 4.10807514191 8.10904552395e-08 0.659965276718 -3.46460016232e-09
+                1.0 1.0 1.00000011921 1.14987671375 13.0423126221 5.08919429779 -4.14476843957e-08 0.659965455532 -4.7196353492e-09
+                1.0 1.0 1.00000011921 1.06273961067 12.9376688004 4.10285234451 -3.31216298832e-08 0.659965217113 5.57415491542e-09
+                0.999999940395 1.0 0.999999940395 0.883147776127 12.7095556259 1.99979126453 6.83503600385e-08 0.659965455532 6.53605836121e-09
+                1.00000011921 1.00000011921 1.00000011921 0.8032964468 12.6022405624 1.03085970879 -4.81693618326e-09 0.659965395927 1.32304398548e-08
+              }
+            }
+            <Table> Bone.019 {
+              <Xfm$Anim> xform {
+                <Scalar> fps { 15 }
+                <Scalar> order { sprht }
+                <Scalar> contents { ijkprhxyz }
+                <V> {
+                  1.00000011921 1.0 1.0 29.7171726227 7.59564256668 -15.4883146286 -7.50619264522e-08 0.996502220631 -3.7566092459e-08
+                  1.00000023842 1.00000011921 1.00000011921 29.7171726227 7.59564590454 -15.4883165359 -4.13962020218e-08 0.996502578259 3.33959029319e-08
+                  1.00000023842 1.00000011921 1.00000011921 29.7171707153 7.59564447403 -15.4883146286 -1.20039871376e-08 0.996502280235 -3.68964592212e-08
+                  1.00000011921 1.00000011921 1.0 29.7171707153 7.59564256668 -15.4883184433 3.61439198571e-08 0.996502459049 -1.8947851288e-08
+                  1.0 0.999999940395 0.999999940395 29.7171726227 7.59564065933 -15.4883165359 2.05641708106e-08 0.996502101421 9.66707158767e-09
+                  1.00000011921 1.0 1.00000011921 29.7171726227 7.59564256668 -15.4883127213 -2.31104912984e-08 0.996502161026 7.67277796854e-10
+                  1.00000011921 1.00000011921 0.999999940395 29.7172355652 7.59565544128 -15.4885568619 -4.21222310365e-08 0.996502101421 -2.01363654639e-08
+                }
+              }
+              <Table> Bone.020 {
+                <Xfm$Anim> xform {
+                  <Scalar> fps { 15 }
+                  <Scalar> order { sprht }
+                  <Scalar> contents { ijkprhxyz }
+                  <V> {
+                    0.999999940395 1.00000011921 1.0 -6.37827396393 -6.66152906418 10.7801589966 3.58338425599e-08 0.577089726925 1.22661859336e-07
+                    1.0 1.00000011921 1.0 -6.37827825546 -6.66152954102 10.7801589966 -1.76884284997e-08 0.577089428902 -5.30062465032e-08
+                    1.0 1.00000011921 1.0 -6.3782749176 -6.66152858734 10.7801609039 -3.80361839802e-08 0.577089071274 1.28099983954e-07
+                    1.0 1.0 0.999999940395 -6.37827301025 -6.6615281105 10.7801580429 7.96251953261e-11 0.577089607716 -1.28806362909e-07
+                    1.0 1.0 0.999999940395 -6.37827014923 -6.66152763367 10.7801580429 5.32536823528e-08 0.577089428902 3.13284772346e-07
+                    1.0 1.00000011921 1.0 -6.37827205658 -6.66152906418 10.7801589966 -6.90128310055e-09 0.57708966732 6.7198357101e-08
+                    1.0 1.0 1.0 -6.37819719315 -6.66167593002 10.7798252106 -1.23491883386e-08 0.577089488506 1.4032018214e-07
+                  }
+                }
+              }
+            }
+            <Table> Bone.017 {
+              <Xfm$Anim> xform {
+                <Scalar> fps { 15 }
+                <Scalar> order { sprht }
+                <Scalar> contents { ijkprhxyz }
+                <V> {
+                  0.999999940395 1.0 0.999999880791 -40.0684776306 -11.9524765015 -13.3994913101 -7.50619264522e-08 0.996502220631 -3.7566092459e-08
+                  1.0 1.0 1.00000011921 -40.0684814453 -11.9524755478 -13.3994903564 -4.13962020218e-08 0.996502578259 3.33959029319e-08
+                  1.0 1.0 1.00000011921 -40.06848526 -11.9524755478 -13.3994903564 -1.20039871376e-08 0.996502280235 -3.68964592212e-08
+                  0.999999880791 1.0 1.0 -40.06848526 -11.9524755478 -13.3994913101 3.61439198571e-08 0.996502459049 -1.8947851288e-08
+                  0.999999940395 1.0 1.0 -40.06848526 -11.9524755478 -13.3994903564 2.05641708106e-08 0.996502101421 9.66707158767e-09
+                  0.999999880791 0.999999940395 1.0 -40.0684814453 -11.9524784088 -13.3994903564 -2.31104912984e-08 0.996502161026 7.67277796854e-10
+                  0.999999821186 0.999999940395 0.999999940395 -40.0683937073 -11.9524736404 -13.3997831345 -4.21222310365e-08 0.996502101421 -2.01363654639e-08
+                }
+              }
+              <Table> Bone.018 {
+                <Xfm$Anim> xform {
+                  <Scalar> fps { 15 }
+                  <Scalar> order { sprht }
+                  <Scalar> contents { ijkprhxyz }
+                  <V> {
+                    1.0 1.0 1.0 10.2859067917 4.58348655701 8.39035320282 -9.53775192158e-09 0.55293494463 -1.39105765129e-07
+                    0.999999940395 0.999999940395 0.999999940395 10.2859096527 4.58348703384 8.39035415649 -5.61081314743e-08 0.552935004234 2.62666599582e-09
+                    0.999999940395 0.999999940395 0.999999940395 10.2859115601 4.58348751068 8.39035320282 -7.07025993307e-09 0.552935004234 2.78053533975e-07
+                    0.999999940395 0.999999940395 1.0 10.285905838 4.58348751068 8.39035320282 5.54695667176e-09 0.552934765816 -7.81420865792e-08
+                    0.999999940395 1.0 1.0 10.2859067917 4.58348703384 8.39035415649 4.97009864375e-08 0.552934765816 9.0614342696e-09
+                    1.0 1.0 1.00000011921 10.2859077454 4.58348608017 8.39035415649 4.77588066872e-08 0.552934765816 7.69008181578e-08
+                    1.0 1.0 0.999999940395 10.2859239578 4.5836725235 8.39015674591 -2.36908288542e-08 0.55293482542 -5.03559149934e-08
+                  }
+                }
+              }
+            }
+          }
+        }
+      }
+      <Table> Bone.022 {
+        <Xfm$Anim> xform {
+          <Scalar> fps { 15 }
+          <Scalar> order { sprht }
+          <Scalar> contents { ijkprhxyz }
+          <V> {
+            0.997839450836 0.997839450836 0.997839450836 20.3599796295 23.5311470032 8.0531206131 0.256791830063 0.559679985046 1.35047888756
+            0.997839450836 0.997839450836 0.997839450836 20.3599796295 23.5311470032 8.0531206131 0.256791830063 0.559679985046 1.35047888756
+            0.997839450836 0.997839450836 0.997839450836 20.3599796295 23.5311470032 8.0531206131 0.256791830063 0.559679985046 1.35047888756
+            0.997839450836 0.997839450836 0.997839450836 20.3599796295 23.5311470032 8.0531206131 0.256791830063 0.559679985046 1.35047888756
+            0.997839450836 0.997839450836 0.997839450836 20.3599796295 23.5311470032 8.0531206131 0.256791830063 0.559679985046 1.35047888756
+            0.997839450836 0.997839450836 0.997839450836 20.3599796295 23.5311470032 8.0531206131 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839450836 0.997839450836 20.359752655 23.5311775208 8.05303382874 0.256791830063 0.559679985046 1.35047888756
+          }
+        }
+      }
+      <Table> Bone.002 {
+        <Xfm$Anim> xform {
+          <Scalar> fps { 15 }
+          <Scalar> order { sprht }
+          <Scalar> contents { ijkprhxyz }
+          <V> {
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256790846586 0.561129450798 1.37076675892
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256790846586 0.561129450798 1.37076675892
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256790846586 0.561129450798 1.37076675892
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256790846586 0.561129450798 1.37076675892
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256790846586 0.561129450798 1.37076675892
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256790846586 0.561129450798 1.37076675892
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256790846586 0.561129629612 1.37076878548
+          }
+        }
+        <Table> Bone.003 {
+          <Xfm$Anim> xform {
+            <Scalar> fps { 15 }
+            <Scalar> order { sprht }
+            <Scalar> contents { ijkprhxyz }
+            <V> {
+              1.0 1.0 0.999999940395 66.9096908569 -3.50089788437 1.45522344112 -2.95961957164e-08 0.37055939436 1.221862167e-08
+              1.0 1.0 0.999999940395 66.9096908569 -3.50089788437 1.45522344112 -2.95961957164e-08 0.37055939436 1.221862167e-08
+              1.0 1.0 0.999999940395 66.9096908569 -3.50089788437 1.45522344112 -2.95961957164e-08 0.37055939436 1.221862167e-08
+              1.0 1.0 0.999999940395 66.9096908569 -3.50089788437 1.45522344112 -2.95961957164e-08 0.37055939436 1.221862167e-08
+              1.0 1.0 0.999999940395 66.9096908569 -3.50089788437 1.45522344112 -2.95961957164e-08 0.37055939436 1.221862167e-08
+              1.0 1.0 0.999999940395 66.9096908569 -3.50089788437 1.45522344112 -2.95961957164e-08 0.37055939436 1.221862167e-08
+              1.0 1.0 0.999999940395 66.9096908569 -3.50089907646 1.45522367954 -2.92093282894e-08 0.37055939436 -6.62965078391e-08
+            }
+          }
+          <Table> Bone.004 {
+            <Xfm$Anim> xform {
+              <Scalar> fps { 15 }
+              <Scalar> order { sprht }
+              <Scalar> contents { ijkprhxyz }
+              <V> {
+                1.0 0.999999940395 1.0 7.28495931625 0.040451515466 -3.43228936195 2.56346908145e-08 0.307591944933 2.34474324401e-08
+                1.0 0.999999940395 1.0 7.28496026993 0.0404515340924 -3.43228983879 2.56346908145e-08 0.307591944933 2.29752181724e-08
+                1.0 0.999999940395 1.0 7.28496026993 0.0404515340924 -3.43228983879 2.56346908145e-08 0.307591944933 2.29752181724e-08
+                1.0 0.999999940395 1.0 7.28496026993 0.0404515340924 -3.43228983879 2.56346908145e-08 0.307591944933 2.29752181724e-08
+                1.0 0.999999940395 1.0 7.28496026993 0.0404515340924 -3.43228983879 2.56346908145e-08 0.307591944933 2.29752181724e-08
+                1.0 0.999999940395 1.0 7.28496026993 0.0404515340924 -3.43228983879 2.56346908145e-08 0.307591944933 2.29752181724e-08
+                1.0 1.0 1.0 7.28495931625 0.0404515750706 -3.43229007721 7.86285880849e-09 0.307591795921 2.48472620257e-08
+              }
+            }
+            <Table> Bone.005 {
+              <Xfm$Anim> xform {
+                <Scalar> fps { 15 }
+                <Scalar> order { sprht }
+                <Scalar> contents { ijkprhxyz }
+                <V> {
+                  1.0 0.999999880791 1.00000011921 91.3719406128 -89.6093292236 -4.49030017853 -1.48090189001e-08 0.739777505398 3.38537731182e-08
+                  1.0 0.999999880791 1.00000011921 91.3719406128 -89.6093292236 -4.49029874802 -1.33725484019e-08 0.739777445793 3.49492239593e-08
+                  1.0 0.999999880791 1.00000011921 91.3719406128 -89.6093292236 -4.49029874802 -1.33725484019e-08 0.739777445793 3.49492239593e-08
+                  1.0 0.999999880791 1.00000011921 91.3719406128 -89.6093292236 -4.49029874802 -1.33725484019e-08 0.739777445793 3.49492239593e-08
+                  1.0 0.999999880791 1.00000011921 91.3719406128 -89.6093292236 -4.49029874802 -1.33725484019e-08 0.739777445793 3.49492239593e-08
+                  1.0 0.999999880791 1.00000011921 91.3719406128 -89.6093292236 -4.49029874802 -1.33725484019e-08 0.739777445793 3.49492239593e-08
+                  1.00000011921 1.00000011921 1.00000011921 91.3707809448 -89.6092987061 -4.48943901062 2.60851642508e-08 0.739777445793 7.29219920004e-08
+                }
+              }
+            }
+          }
+        }
+      }
+      <Table> Bone.006 {
+        <Xfm$Anim> xform {
+          <Scalar> fps { 15 }
+          <Scalar> order { sprht }
+          <Scalar> contents { ijkprhxyz }
+          <V> {
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256792604923 0.561129450798 1.3707665205
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256792604923 0.561129450798 1.3707665205
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256792604923 0.561129450798 1.3707665205
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256792604923 0.561129450798 1.3707665205
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256792604923 0.561129450798 1.3707665205
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256792604923 0.561129450798 1.3707665205
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256792604923 0.561129570007 1.37076854706
+          }
+        }
+        <Table> Bone.007 {
+          <Xfm$Anim> xform {
+            <Scalar> fps { 15 }
+            <Scalar> order { sprht }
+            <Scalar> contents { ijkprhxyz }
+            <V> {
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -1.12546123532e-08 0.419119656086 -6.60666685803e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -1.12546123532e-08 0.419119656086 -6.60666685803e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -1.12546123532e-08 0.419119656086 -6.60666685803e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -1.12546123532e-08 0.419119656086 -6.60666685803e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -1.12546123532e-08 0.419119656086 -6.60666685803e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 1.13206988317e-05 -8.22933998279e-06 -1.12546123532e-08 0.419119656086 -6.60666685803e-08
+              1.0 1.00000011921 1.00000011921 -72.0289764404 7.69500366005e-06 -9.06285640667e-06 -1.09961977302e-08 0.419119626284 3.31826477407e-08
+            }
+          }
+          <Table> Bone.008 {
+            <Xfm$Anim> xform {
+              <Scalar> fps { 15 }
+              <Scalar> order { sprht }
+              <Scalar> contents { ijkprhxyz }
+              <V> {
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 3.09648555685e-08 0.327627360821 -2.9439808813e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 3.09648555685e-08 0.327627360821 -2.9439808813e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 3.09648555685e-08 0.327627360821 -2.9439808813e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 3.09648555685e-08 0.327627360821 -2.9439808813e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 3.09648555685e-08 0.327627360821 -2.9439808813e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48621697966e-09 -3.59860905519e-07 3.09648555685e-08 0.327627360821 -2.9439808813e-08
+                1.0 1.0 1.0 -2.38393139839 -7.48577289045e-09 -3.59860848675e-07 -2.51166270004e-08 0.327627122402 -1.59987383341e-08
+              }
+            }
+            <Table> Bone.009 {
+              <Xfm$Anim> xform {
+                <Scalar> fps { 15 }
+                <Scalar> order { sprht }
+                <Scalar> contents { ijkprhxyz }
+                <V> {
+                  0.999999880791 1.0 0.999999880791 -3.36807656288 -74.0136642456 83.767036438 3.35233565352e-08 0.6648696661 4.05416500371e-08
+                  0.999999880791 1.0 0.999999880791 -3.3680768013 -74.0136642456 83.767036438 3.35233565352e-08 0.6648696661 4.05416500371e-08
+                  0.999999880791 1.0 0.999999880791 -3.3680768013 -74.0136642456 83.767036438 3.35233565352e-08 0.6648696661 4.05416500371e-08
+                  0.999999880791 1.0 0.999999880791 -3.3680768013 -74.0136642456 83.767036438 3.35233565352e-08 0.6648696661 4.05416500371e-08
+                  0.999999880791 1.0 0.999999880791 -3.3680768013 -74.0136642456 83.767036438 3.35233565352e-08 0.6648696661 4.05416500371e-08
+                  0.999999880791 1.0 0.999999880791 -3.3680768013 -74.0136642456 83.767036438 3.35233565352e-08 0.6648696661 4.05416500371e-08
+                  0.999999880791 1.0 0.999999940395 -3.36815404892 -74.0136642456 83.7667694092 5.36554374264e-08 0.664869785309 -3.72861954645e-08
+                }
+              }
+            }
+          }
+        }
+      }
+    }
+  }
+}
+<Table> {
+  <Bundle> jump {
+    <Table> "<skeleton>" {
+      <Table> Bone {
+        <Xfm$Anim> xform {
+          <Scalar> fps { 30 }
+          <Scalar> order { sprht }
+          <Scalar> contents { ijkprhxyz }
+          <V> {
+            0.997839570045 0.997839570045 0.99783962965 89.2136993408 -0.801030516624 -90.16771698 0.256791830063 0.576151847839 1.58108520508
+            0.997839510441 0.997839510441 0.997839570045 89.2139816284 -0.948637187481 -90.168296814 0.256791830063 0.576151847839 1.58108520508
+            0.997839570045 0.997839510441 0.997839510441 89.2143859863 -1.09499239922 -90.1684112549 0.256791830063 0.576151847839 1.58108520508
+            0.997839510441 0.997839510441 0.997839510441 89.214805603 -1.2152736187 -90.1681594849 0.256791830063 0.576151847839 1.58108520508
+            0.997839510441 0.997839510441 0.997839570045 89.21509552 -1.28793883324 -90.1678543091 0.256791830063 0.576151847839 1.58108520508
+            0.997839570045 0.997839570045 0.997839570045 89.2151947021 -1.31019628048 -90.1677246094 0.256791830063 0.576151847839 1.58108520508
+            0.997839570045 0.997839570045 0.997839570045 89.2151947021 -1.31019628048 -90.1677246094 0.256791830063 0.576151847839 1.58108520508
+            0.997839570045 0.997839570045 0.997839570045 89.2151947021 -1.31019628048 -90.1677246094 0.256791830063 0.576151847839 1.58108520508
+            0.997839570045 0.997839570045 0.997839570045 89.2151947021 -1.31019628048 -90.1677246094 0.256791830063 0.576151847839 1.58108520508
+            0.997839570045 0.997839570045 0.997839570045 89.2151947021 -1.31019628048 -90.1677246094 0.256791830063 0.576151847839 1.58108520508
+            0.997839570045 0.997839570045 0.997839570045 89.2151947021 -1.31019628048 -90.1677246094 0.256791830063 0.576151847839 1.58108520508
+          }
+        }
+        <Table> Bone.001 {
+          <Xfm$Anim> xform {
+            <Scalar> fps { 30 }
+            <Scalar> order { sprht }
+            <Scalar> contents { ijkprhxyz }
+            <V> {
+              1.0 1.00000011921 1.0 -0.0014164155582 177.329544067 0.485364496708 -3.98356938547e-08 0.520252585411 -1.2362730395e-08
+              0.999999940395 0.999999880791 1.00000011921 -0.00201314291917 177.326583862 0.699450194836 -1.26710029136e-08 0.520252346992 -1.740775879e-08
+              1.00000011921 0.999999880791 1.0 -0.00255617662333 177.323852539 0.897780776024 -4.02466149296e-08 0.520252227783 -9.27198406941e-09
+              1.00000011921 1.0 1.00000011921 -0.00297619169578 177.32170105 1.05363965034 -1.08410780797e-07 0.520252406597 -2.93631803316e-08
+              1.00000011921 1.0 1.0 -0.00323477596976 177.320358276 1.15069377422 -8.28700663646e-09 0.520252466202 -2.43257414212e-08
+              1.00000011921 0.999999940395 1.0 -0.00332056800835 177.319915771 1.18304097652 -1.91562783414e-08 0.520252346992 -2.85428249924e-08
+              1.00000011921 0.999999940395 1.0 -0.00332056800835 177.319915771 1.18304097652 -1.91562783414e-08 0.520252346992 -2.85428249924e-08
+              1.00000011921 0.999999940395 1.0 -0.00332056800835 177.319915771 1.18304097652 -1.91562783414e-08 0.520252346992 -2.85428249924e-08
+              1.00000011921 0.999999940395 1.0 -0.00332056800835 177.319915771 1.18304097652 -1.91562783414e-08 0.520252346992 -2.85428249924e-08
+              1.00000011921 0.999999940395 1.0 -0.00332056800835 177.319915771 1.18304097652 -1.91562783414e-08 0.520252346992 -2.85428249924e-08
+              1.00000011921 0.999999940395 1.0 -0.00332056800835 177.319915771 1.18304097652 -1.91562783414e-08 0.520252346992 -2.85428249924e-08
+            }
+          }
+          <Table> Bone.012 {
+            <Xfm$Anim> xform {
+              <Scalar> fps { 30 }
+              <Scalar> order { sprht }
+              <Scalar> contents { ijkprhxyz }
+              <V> {
+                1.0 1.0 1.00000023842 -103.671539307 2.66391944885 -0.000111290180939 3.47281030599e-08 0.659965515137 -1.31986999108e-08
+                1.0 0.999999940395 1.00000011921 -103.671539307 2.66391944885 -0.000111033812573 7.57519984518e-08 0.659965395927 2.74039058112e-09
+                0.999999940395 1.00000011921 1.00000023842 -103.671539307 2.66391968727 -0.000111255554657 -2.71080100589e-08 0.659965574741 -6.38753849813e-09
+                0.999999940395 0.999999940395 1.00000011921 -103.671539307 2.66391968727 -0.00011092305067 -2.30121699474e-08 0.659965276718 1.08714024449e-08
+                1.0 1.0 1.00000011921 -103.671539307 2.66391944885 -0.000111297282274 -4.42850094373e-08 0.659965634346 -1.97784792988e-08
+                0.999999940395 0.999999880791 1.00000011921 -103.671539307 2.66391968727 -0.000111111694423 -1.09672072313e-07 0.659965336323 -3.54466358488e-08
+                0.999999940395 0.999999880791 1.00000011921 -103.671539307 2.66391968727 -0.000111111694423 -1.09672072313e-07 0.659965336323 -3.54466358488e-08
+                0.999999940395 0.999999880791 1.00000011921 -103.671539307 2.66391968727 -0.000111111694423 -1.09672072313e-07 0.659965336323 -3.54466358488e-08
+                0.999999940395 0.999999880791 1.00000011921 -103.671539307 2.66391968727 -0.000111111694423 -1.09672072313e-07 0.659965336323 -3.54466358488e-08
+                0.999999940395 0.999999880791 1.00000011921 -103.671539307 2.66391968727 -0.000111111694423 -1.09672072313e-07 0.659965336323 -3.54466358488e-08
+                0.999999940395 0.999999880791 1.00000011921 -103.671539307 2.66391968727 -0.000111111694423 -1.09672072313e-07 0.659965336323 -3.54466358488e-08
+              }
+            }
+            <Table> Bone.015 {
+              <Xfm$Anim> xform {
+                <Scalar> fps { 30 }
+                <Scalar> order { sprht }
+                <Scalar> contents { ijkprhxyz }
+                <V> {
+                  1.0 1.00000011921 0.999999940395 -32.279083252 38.549621582 80.5159301758 -3.23629301135e-08 0.492759734392 8.48593941782e-08
+                  0.999999940395 1.0 0.999999940395 -32.2790870667 38.5496253967 80.5159301758 4.41900738224e-08 0.492759764194 1.82651291425e-07
+                  1.00000011921 1.00000011921 1.0 -32.279083252 38.5496177673 80.5159378052 -6.60456720425e-08 0.492759764194 -1.83028376455e-07
+                  1.00000011921 1.00000011921 1.0 -32.279083252 38.5496177673 80.5159301758 9.61687174339e-09 0.492759853601 2.39017225567e-07
+                  1.0 1.0 0.999999940395 -32.279083252 38.5496177673 80.5159378052 -2.41620501384e-08 0.492759793997 1.67482852476e-07
+                  1.00000011921 1.00000011921 1.0 -32.279083252 38.549621582 80.5159301758 2.69956998977e-08 0.492759823799 1.36376812065e-07
+                  1.00000011921 1.00000011921 1.0 -32.279083252 38.549621582 80.5159301758 2.69956998977e-08 0.492759823799 1.36376812065e-07
+                  1.00000011921 1.00000011921 1.0 -32.279083252 38.549621582 80.5159301758 2.69956998977e-08 0.492759823799 1.36376812065e-07
+                  1.00000011921 1.00000011921 1.0 -32.279083252 38.549621582 80.5159301758 2.69956998977e-08 0.492759823799 1.36376812065e-07
+                  1.00000011921 1.00000011921 1.0 -32.279083252 38.549621582 80.5159301758 2.69956998977e-08 0.492759823799 1.36376812065e-07
+                  1.00000011921 1.00000011921 1.0 -32.279083252 38.549621582 80.5159301758 2.69956998977e-08 0.492759823799 1.36376812065e-07
+                }
+              }
+              <Table> Bone.016 {
+                <Xfm$Anim> xform {
+                  <Scalar> fps { 30 }
+                  <Scalar> order { sprht }
+                  <Scalar> contents { ijkprhxyz }
+                  <V> {
+                    0.999999940395 1.00000011921 1.00000011921 30.1801681519 -10.3232860565 -16.7021007538 -1.83289046163e-07 0.416112840176 -6.92618158382e-08
+                    1.0 1.0 1.0 30.1801681519 -10.3232860565 -16.7021045685 -1.85396409336e-08 0.41611289978 3.33783951589e-08
+                    0.999999940395 0.999999940395 1.0 30.1801681519 -10.3232879639 -16.7021007538 7.91603866901e-08 0.416112989187 -1.32922835405e-07
+                    1.00000011921 1.0 1.0 30.1801719666 -10.3232870102 -16.7021007538 -1.10193248304e-07 0.416112929583 -8.45122656301e-08
+                    0.999999940395 1.0 1.00000011921 30.1801681519 -10.3232889175 -16.7021045685 2.11127641592e-07 0.41611289978 -6.84864573941e-08
+                    1.0 1.0 1.0 30.1801681519 -10.3232870102 -16.7021026611 7.56708118388e-08 0.416112929583 2.30857644112e-08
+                    1.0 1.0 1.0 30.1801681519 -10.3232870102 -16.7021026611 7.56708118388e-08 0.416112929583 2.30857644112e-08
+                    1.0 1.0 1.0 30.1801681519 -10.3232870102 -16.7021026611 7.56708118388e-08 0.416112929583 2.30857644112e-08
+                    1.0 1.0 1.0 30.1801681519 -10.3232870102 -16.7021026611 7.56708118388e-08 0.416112929583 2.30857644112e-08
+                    1.0 1.0 1.0 30.1801681519 -10.3232870102 -16.7021026611 7.56708118388e-08 0.416112929583 2.30857644112e-08
+                    1.0 1.0 1.0 30.1801681519 -10.3232870102 -16.7021026611 7.56708118388e-08 0.416112929583 2.30857644112e-08
+                  }
+                }
+              }
+            }
+          }
+          <Table> Bone.011 {
+            <Xfm$Anim> xform {
+              <Scalar> fps { 30 }
+              <Scalar> order { sprht }
+              <Scalar> contents { ijkprhxyz }
+              <V> {
+                0.999999940395 1.0 1.0 109.536636353 2.66396570206 4.44761681138e-05 3.47281030599e-08 0.659965515137 -1.31986999108e-08
+                0.999999940395 0.999999880791 0.999999940395 109.536636353 2.66396546364 4.47071470262e-05 7.57519984518e-08 0.659965395927 2.74039058112e-09
+                0.999999821186 1.0 1.0 109.536643982 2.66396570206 4.45625737484e-05 -2.71080100589e-08 0.659965574741 -6.38753849813e-09
+                0.999999940395 0.999999940395 0.999999940395 109.536636353 2.66396546364 4.47884340247e-05 -2.30121699474e-08 0.659965276718 1.08714024449e-08
+                0.999999940395 0.999999880791 1.0 109.536636353 2.66396570206 4.46195299446e-05 -4.42850094373e-08 0.659965634346 -1.97784792988e-08
+                0.999999821186 0.999999880791 0.999999940395 109.536636353 2.66396594048 4.44392026111e-05 -1.09672072313e-07 0.659965336323 -3.54466358488e-08
+                0.999999821186 0.999999880791 0.999999940395 109.536636353 2.66396594048 4.44392026111e-05 -1.09672072313e-07 0.659965336323 -3.54466358488e-08
+                0.999999821186 0.999999880791 0.999999940395 109.536636353 2.66396594048 4.44392026111e-05 -1.09672072313e-07 0.659965336323 -3.54466358488e-08
+                0.999999821186 0.999999880791 0.999999940395 109.536636353 2.66396594048 4.44392026111e-05 -1.09672072313e-07 0.659965336323 -3.54466358488e-08
+                0.999999821186 0.999999880791 0.999999940395 109.536636353 2.66396594048 4.44392026111e-05 -1.09672072313e-07 0.659965336323 -3.54466358488e-08
+                0.999999821186 0.999999880791 0.999999940395 109.536636353 2.66396594048 4.44392026111e-05 -1.09672072313e-07 0.659965336323 -3.54466358488e-08
+              }
+            }
+            <Table> Bone.013 {
+              <Xfm$Anim> xform {
+                <Scalar> fps { 30 }
+                <Scalar> order { sprht }
+                <Scalar> contents { ijkprhxyz }
+                <V> {
+                  1.0 1.00000011921 1.0 70.4070510864 -70.9771194458 28.468334198 -3.17753965362e-08 0.42566215992 -2.90698380923e-07
+                  1.0 1.00000011921 1.00000023842 70.4070663452 -70.9771118164 28.4683475494 -4.72992454092e-08 0.42566204071 -1.00280537652e-07
+                  1.00000011921 1.0 1.00000011921 70.4070663452 -70.9771118164 28.4683475494 -8.44665919431e-08 0.425662249327 -2.0552658242e-08
+                  1.00000011921 1.0 1.0 70.4070663452 -70.9771194458 28.4683418274 4.18799253055e-08 0.425662219524 3.51881368488e-08
+                  1.0 1.00000011921 1.0 70.4070587158 -70.9771194458 28.4683418274 1.66771005894e-08 0.425662279129 -4.04401632181e-08
+                  1.00000011921 1.00000011921 1.0 70.4070510864 -70.9771118164 28.4683456421 1.54101815752e-08 0.425662279129 -1.96930685092e-07
+                  1.00000011921 1.00000011921 1.0 70.4070510864 -70.9771118164 28.4683456421 1.54101815752e-08 0.425662279129 -1.96930685092e-07
+                  1.00000011921 1.00000011921 1.0 70.4070510864 -70.9771118164 28.4683456421 1.54101815752e-08 0.425662279129 -1.96930685092e-07
+                  1.00000011921 1.00000011921 1.0 70.4070510864 -70.9771118164 28.4683456421 1.54101815752e-08 0.425662279129 -1.96930685092e-07
+                  1.00000011921 1.00000011921 1.0 70.4070510864 -70.9771118164 28.4683456421 1.54101815752e-08 0.425662279129 -1.96930685092e-07
+                  1.00000011921 1.00000011921 1.0 70.4070510864 -70.9771118164 28.4683456421 1.54101815752e-08 0.425662279129 -1.96930685092e-07
+                }
+              }
+              <Table> Bone.014 {
+                <Xfm$Anim> xform {
+                  <Scalar> fps { 30 }
+                  <Scalar> order { sprht }
+                  <Scalar> contents { ijkprhxyz }
+                  <V> {
+                    0.999999880791 1.00000011921 0.999999880791 0.000117217263323 123.522537231 -96.2310409546 1.53310537598e-07 0.596106946468 -5.66737448082e-08
+                    1.0 1.00000011921 1.0 0.00011516448285 123.522537231 -96.2310409546 1.36577355647e-07 0.596106827259 -1.23055770018e-07
+                    0.999999940395 1.00000011921 0.999999940395 0.000115827264381 123.522537231 -96.2310409546 -1.79559293656e-07 0.596106767654 -3.656582237e-08
+                    1.0 1.00000011921 0.999999940395 0.000117277828394 123.522537231 -96.2310409546 -1.96122044827e-07 0.596106886864 -7.4085917845e-08
+                    0.999999940395 1.00000011921 1.0 0.0001172212651 123.522537231 -96.2310409546 -1.42322718943e-07 0.596106827259 -1.0692318142e-07
+                    1.00000011921 1.00000023842 1.00000011921 0.000116999974125 123.522537231 -96.2310333252 2.25369248597e-07 0.596106827259 -8.08897482329e-09
+                    1.00000011921 1.00000023842 1.00000011921 0.000116999974125 123.522537231 -96.2310333252 2.25369248597e-07 0.596106827259 -8.08897482329e-09
+                    1.00000011921 1.00000023842 1.00000011921 0.000116999974125 123.522537231 -96.2310333252 2.25369248597e-07 0.596106827259 -8.08897482329e-09
+                    1.00000011921 1.00000023842 1.00000011921 0.000116999974125 123.522537231 -96.2310333252 2.25369248597e-07 0.596106827259 -8.08897482329e-09
+                    1.00000011921 1.00000023842 1.00000011921 0.000116999974125 123.522537231 -96.2310333252 2.25369248597e-07 0.596106827259 -8.08897482329e-09
+                    1.00000011921 1.00000023842 1.00000011921 0.000116999974125 123.522537231 -96.2310333252 2.25369248597e-07 0.596106827259 -8.08897482329e-09
+                  }
+                }
+              }
+              <Table> Bone.021 {
+                <Xfm$Anim> xform {
+                  <Scalar> fps { 30 }
+                  <Scalar> order { sprht }
+                  <Scalar> contents { ijkprhxyz }
+                  <V> {
+                    1.0 1.0 1.0 20.7281646729 -7.97880315781 12.7815847397 1.53310537598e-07 0.596106946468 -5.66737448082e-08
+                    1.0 1.00000011921 1.00000011921 20.7281665802 -7.97880411148 12.7815847397 1.36577355647e-07 0.596106827259 -1.23055770018e-07
+                    1.0 0.999999940395 1.0 20.7281665802 -7.97880506516 12.781583786 -1.79559293656e-07 0.596106767654 -3.656582237e-08
+                    1.0 0.999999940395 1.0 20.7281665802 -7.97880411148 12.781583786 -1.96122044827e-07 0.596106886864 -7.4085917845e-08
+                    1.00000011921 1.0 1.00000011921 20.7281684875 -7.97880315781 12.7815847397 -1.42322718943e-07 0.596106827259 -1.0692318142e-07
+                    0.999999940395 1.00000011921 1.00000011921 20.7281665802 -7.97880601883 12.7815847397 2.25369248597e-07 0.596106827259 -8.08897482329e-09
+                    0.999999940395 1.00000011921 1.00000011921 20.7281665802 -7.97880601883 12.7815847397 2.25369248597e-07 0.596106827259 -8.08897482329e-09
+                    0.999999940395 1.00000011921 1.00000011921 20.7281665802 -7.97880601883 12.7815847397 2.25369248597e-07 0.596106827259 -8.08897482329e-09
+                    0.999999940395 1.00000011921 1.00000011921 20.7281665802 -7.97880601883 12.7815847397 2.25369248597e-07 0.596106827259 -8.08897482329e-09
+                    0.999999940395 1.00000011921 1.00000011921 20.7281665802 -7.97880601883 12.7815847397 2.25369248597e-07 0.596106827259 -8.08897482329e-09
+                    0.999999940395 1.00000011921 1.00000011921 20.7281665802 -7.97880601883 12.7815847397 2.25369248597e-07 0.596106827259 -8.08897482329e-09
+                  }
+                }
+              }
+            }
+          }
+          <Table> Bone.010 {
+            <Xfm$Anim> xform {
+              <Scalar> fps { 30 }
+              <Scalar> order { sprht }
+              <Scalar> contents { ijkprhxyz }
+              <V> {
+                1.00000011921 1.00000011921 1.0 0.803296148777 12.6022396088 1.03085958958 3.47281030599e-08 0.659965515137 -1.31986999108e-08
+                1.00000023842 1.0 1.0 0.803296208382 12.6022377014 1.03085970879 7.57519984518e-08 0.659965395927 2.74039058112e-09
+                1.0 1.0 1.0 0.803296387196 12.6022415161 1.03085970879 -2.71080100589e-08 0.659965574741 -6.38753849813e-09
+                1.00000011921 0.999999940395 1.0 0.8032964468 12.6022396088 1.03085958958 -2.30121699474e-08 0.659965276718 1.08714024449e-08
+                1.00000011921 1.00000011921 1.0 0.803296208382 12.6022377014 1.03085970879 -4.42850094373e-08 0.659965634346 -1.97784792988e-08
+                1.00000011921 1.00000011921 1.0 0.803296208382 12.6022396088 1.03085970879 -1.09672072313e-07 0.659965336323 -3.54466358488e-08
+                1.00000011921 1.00000011921 1.0 0.803296208382 12.6022396088 1.03085970879 -1.09672072313e-07 0.659965336323 -3.54466358488e-08
+                1.00000011921 1.00000011921 1.0 0.803296208382 12.6022396088 1.03085970879 -1.09672072313e-07 0.659965336323 -3.54466358488e-08
+                1.00000011921 1.00000011921 1.0 0.803296208382 12.6022396088 1.03085970879 -1.09672072313e-07 0.659965336323 -3.54466358488e-08
+                1.00000011921 1.00000011921 1.0 0.803296208382 12.6022396088 1.03085970879 -1.09672072313e-07 0.659965336323 -3.54466358488e-08
+                1.00000011921 1.00000011921 1.0 0.803296208382 12.6022396088 1.03085970879 -1.09672072313e-07 0.659965336323 -3.54466358488e-08
+              }
+            }
+            <Table> Bone.019 {
+              <Xfm$Anim> xform {
+                <Scalar> fps { 30 }
+                <Scalar> order { sprht }
+                <Scalar> contents { ijkprhxyz }
+                <V> {
+                  1.00000011921 1.00000011921 1.0 36.378074646 10.780954361 -45.9936752319 -4.34080149603e-08 0.996502399445 1.44144518543e-08
+                  1.00000011921 1.0 1.0 36.7449264526 11.2296800613 -49.1110458374 6.35754986433e-08 0.996502161026 -9.10113762131e-10
+                  1.00000011921 1.00000011921 1.00000011921 36.9897727966 11.5559072495 -51.2958869934 -1.07422572171e-07 0.996502220631 -6.24856610898e-09
+                  1.00000011921 1.00000011921 1.00000011921 37.1167221069 11.7330093384 -52.4532699585 -5.66851561246e-08 0.99650233984 -2.79568528327e-08
+                  1.00000011921 1.0 0.999999940395 37.1605415344 11.7941484451 -52.8453712463 -1.56765089798e-08 0.996502101421 -3.79728559707e-09
+                  1.0 0.999999940395 1.0 37.1667900085 11.8023376465 -52.8964309692 -2.84390893057e-08 0.996502459049 1.35642688193e-08
+                  1.0 1.0 0.999999940395 37.1228103638 11.73823452 -52.4802856445 -2.84390893057e-08 0.996502459049 1.35642688193e-08
+                  1.0 1.0 1.00000011921 37.0069541931 11.5739517212 -51.404499054 -2.84390893057e-08 0.996502459049 1.35642688193e-08
+                  1.00000011921 1.00000011921 1.0 36.8585472107 11.372584343 -50.0664634705 -2.84390893057e-08 0.996502459049 1.35642688193e-08
+                  1.00000011921 1.0 1.0 36.7434043884 11.222817421 -49.056427002 -2.84390893057e-08 0.996502459049 1.35642688193e-08
+                  1.00000011921 1.0 1.0 36.7053031921 11.1744289398 -48.7272377014 -2.84390893057e-08 0.996502459049 1.35642688193e-08
+                }
+              }
+              <Table> Bone.020 {
+                <Xfm$Anim> xform {
+                  <Scalar> fps { 30 }
+                  <Scalar> order { sprht }
+                  <Scalar> contents { ijkprhxyz }
+                  <V> {
+                    1.00000011921 1.0 1.0 5.66102361679 -18.7173652649 -25.7343883514 1.00904607336e-07 0.577089607716 5.19618126305e-08
+                    1.0 1.0 0.999999940395 5.31395053864 -18.5186252594 -25.0255088806 -2.26523724223e-07 0.577089488506 -1.58015325269e-07
+                    1.00000011921 1.00000011921 1.0 4.3962635994 -17.9644832611 -23.1313457489 -1.25759498815e-07 0.577089548111 -1.11563885241e-07
+                    1.00000011921 1.00000011921 1.0 3.27550435066 -17.2281360626 -20.7743148804 -4.13681760847e-07 0.57708978653 -9.64357838029e-08
+                    1.0 1.0 1.0 2.45219993591 -16.6423835754 -19.0078926086 8.20157453063e-08 0.577089488506 7.00030895473e-08
+                    1.0 1.00000011921 1.0 2.19083356857 -16.448015213 -18.4402389526 1.98806702656e-07 0.577089726925 1.3062015114e-07
+                    0.999999940395 1.00000011921 1.0 2.19083237648 -16.4480190277 -18.4402370453 4.10585414556e-08 0.577089548111 -4.09481728525e-08
+                    1.00000011921 1.00000023842 1.00000011921 2.19083404541 -16.448015213 -18.4402351379 -1.176688329e-07 0.577089548111 8.87744562306e-08
+                    1.00000011921 0.999999940395 1.0 2.19083476067 -16.448015213 -18.4402389526 1.18368014057e-07 0.577089607716 7.76775337386e-08
+                    1.00000011921 1.00000023842 1.0 2.19083070755 -16.4480133057 -18.4402351379 1.13126816359e-07 0.577089548111 -1.46547343149e-08
+                    1.0 0.999999940395 0.999999940395 2.19083380699 -16.448015213 -18.4402351379 -1.03687057162e-07 0.577089607716 -2.19962799974e-07
+                  }
+                }
+              }
+            }
+            <Table> Bone.017 {
+              <Xfm$Anim> xform {
+                <Scalar> fps { 30 }
+                <Scalar> order { sprht }
+                <Scalar> contents { ijkprhxyz }
+                <V> {
+                  1.0 1.0 1.0 -30.1465091705 -8.44131183624 -49.0715408325 -4.34080149603e-08 0.996502399445 1.44144518543e-08
+                  0.999999880791 0.999999940395 1.0 -29.6925201416 -7.92979335785 -52.3063316345 6.35754986433e-08 0.996502161026 -9.10113762131e-10
+                  0.999999940395 0.999999940395 0.999999940395 -29.4524078369 -7.58073759079 -54.5697975159 -1.07422572171e-07 0.996502220631 -6.24856610898e-09
+                  0.999999940395 0.999999940395 1.0 -29.3898868561 -7.41666936874 -55.7683448792 -5.66851561246e-08 0.99650233984 -2.79568528327e-08
+                  0.999999940395 0.999999940395 1.0 -29.4121341705 -7.3787894249 -56.1749382019 -1.56765089798e-08 0.996502101421 -3.79728559707e-09
+                  0.999999940395 0.999999940395 1.0 -29.4301109314 -7.38051223755 -56.2257347107 -2.84390893057e-08 0.996502459049 1.35642688193e-08
+                  1.0 1.0 0.999999940395 -29.535484314 -7.55498743057 -55.092464447 -2.84390893057e-08 0.996502459049 1.35642688193e-08
+                  0.999999940395 0.999999940395 1.0 -29.8243999481 -7.9966506958 -52.1555480957 -2.84390893057e-08 0.996502459049 1.35642688193e-08
+                  0.999999940395 1.0 1.0 -30.2158622742 -8.52501106262 -48.4917793274 -2.84390893057e-08 0.996502459049 1.35642688193e-08
+                  0.999999940395 0.999999940395 0.999999880791 -30.5338115692 -8.90666389465 -45.7215194702 -2.84390893057e-08 0.996502459049 1.35642688193e-08
+                  1.0 1.0 1.0 -30.6414146423 -9.02761268616 -44.8182678223 -2.84390893057e-08 0.996502459049 1.35642688193e-08
+                }
+              }
+              <Table> Bone.018 {
+                <Xfm$Anim> xform {
+                  <Scalar> fps { 30 }
+                  <Scalar> order { sprht }
+                  <Scalar> contents { ijkprhxyz }
+                  <V> {
+                    0.999999880791 0.999999880791 0.999999940395 5.58094358444 29.3071098328 -21.099029541 -7.92545478134e-08 0.552934885025 -1.5332901171e-07
+                    1.00000011921 1.00000011921 1.00000011921 3.75839781761 32.2962608337 -26.0705547333 -1.92815136302e-07 0.552935183048 -1.79496439046e-07
+                    1.00000011921 1.00000011921 1.0 2.22027039528 34.3805847168 -29.9764270782 2.73682303487e-07 0.552935063839 -1.76784507033e-08
+                    1.0 1.0 1.00000011921 1.26291048527 35.5339508057 -32.3935089111 -9.4261181971e-08 0.552935004234 -1.15269727985e-07
+                    1.00000011921 0.999999940395 0.999999940395 0.875634610653 35.9817008972 -33.4376182556 -1.5290206079e-07 0.552935004234 -5.72874085947e-08
+                    1.0 1.0 1.0 0.806784212589 36.0633430481 -33.6511459351 2.879957961e-08 0.552935123444 -1.98209733071e-08
+                    1.00000023842 0.999999940395 0.999999940395 0.8067882061 36.0633430481 -33.6511421204 -1.32094697847e-07 0.55293494463 -3.84813958476e-08
+                    1.0 0.999999880791 0.999999940395 0.806790709496 36.0633468628 -33.6511459351 -7.79863462697e-09 0.552935183048 -1.15626628272e-08
+                    1.0 1.0 1.00000011921 0.806783795357 36.0633468628 -33.6511459351 5.4883116718e-07 0.552934765816 -6.08919776823e-08
+                    1.00000011921 1.00000011921 1.00000011921 0.806784749031 36.0633430481 -33.6511421204 -6.0174890848e-08 0.55293482542 -2.33477930323e-08
+                    1.0 1.0 1.0 0.806786894798 36.0633468628 -33.6511459351 1.77951704927e-07 0.552935123444 -1.71332388277e-07
+                  }
+                }
+              }
+            }
+          }
+        }
+      }
+      <Table> Bone.022 {
+        <Xfm$Anim> xform {
+          <Scalar> fps { 30 }
+          <Scalar> order { sprht }
+          <Scalar> contents { ijkprhxyz }
+          <V> {
+            0.997839510441 0.997839570045 0.997839450836 -3.19640159607 24.7412261963 -1.3389121294 0.256791830063 0.559679985046 1.35047888756
+            0.997839450836 0.997839450836 0.997839450836 -1.63953149319 24.7662277222 -0.686994194984 0.256791830063 0.559679985046 1.35047888756
+            0.997839450836 0.997839570045 0.997839570045 2.55249094963 24.7535037994 1.06940793991 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839450836 7.81657791138 24.5722255707 3.2673535347 0.256791830063 0.559679985046 1.35047888756
+            0.997839570045 0.997839570045 0.997839570045 11.7805862427 24.3142471313 4.90810823441 0.256791830063 0.559679985046 1.35047888756
+            0.997839450836 0.997839570045 0.997839510441 13.0412015915 24.2103385925 5.42605876923 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839570045 0.997839570045 8.87106132507 24.5139465332 3.7048330307 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839391232 0.997839510441 -2.11765360832 24.7608547211 -0.890198528767 0.256791830063 0.559679985046 1.35047888756
+            0.997839510441 0.997839510441 0.997839450836 -15.849401474 23.9412822723 -6.57657718658 0.256791830063 0.559679985046 1.35047888756
+            0.997839570045 0.997839570045 0.997839510441 -25.9460048676 22.5393810272 -10.5670156479 0.256791830063 0.559679985046 1.35047888756
+            0.99783962965 0.99783962965 0.99783962965 -29.147819519 21.9539775848 -11.7773199081 0.256791830063 0.559679985046 1.35047888756
+          }
+        }
+      }
+      <Table> Bone.002 {
+        <Xfm$Anim> xform {
+          <Scalar> fps { 30 }
+          <Scalar> order { sprht }
+          <Scalar> contents { ijkprhxyz }
+          <V> {
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791859865 0.576151847839 1.58108532429
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791859865 0.576151847839 1.58108532429
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791859865 0.576151847839 1.58108532429
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791859865 0.576151847839 1.58108532429
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791859865 0.576151847839 1.58108532429
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791859865 0.576151847839 1.58108532429
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791859865 0.576151847839 1.58108532429
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791859865 0.576151847839 1.58108532429
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791859865 0.576151847839 1.58108532429
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791859865 0.576151847839 1.58108532429
+            0.997839510441 0.997839570045 0.99783962965 -167.90524292 8.45938120619e-06 90.0 0.256791859865 0.576151847839 1.58108532429
+          }
+        }
+        <Table> Bone.003 {
+          <Xfm$Anim> xform {
+            <Scalar> fps { 30 }
+            <Scalar> order { sprht }
+            <Scalar> contents { ijkprhxyz }
+            <V> {
+              0.999999940395 1.0 1.0 66.6836242676 -3.82468914986 1.51614689827 4.08264817509e-08 0.370559424162 9.66824842408e-08
+              1.0 1.0 0.999999940395 66.583770752 -3.96742844582 1.5434333086 4.08264817509e-08 0.370559424162 9.66824842408e-08
+              0.999999940395 1.0 0.999999940395 66.4911956787 -4.09962081909 1.56893837452 4.08264817509e-08 0.370559424162 9.66824842408e-08
+              0.999999940395 1.00000011921 0.999999940395 66.4183959961 -4.20347595215 1.58913457394 4.08264817509e-08 0.370559424162 9.66824842408e-08
+              1.00000011921 1.0 0.999999880791 66.3730239868 -4.26813364029 1.60177922249 4.08264817509e-08 0.370559424162 9.66824842408e-08
+              1.00000011921 1.0 1.0 66.3579101563 -4.28968143463 1.60600531101 4.08264817509e-08 0.370559424162 9.66824842408e-08
+              1.00000011921 1.0 1.0 66.3579101563 -4.28968143463 1.60600531101 4.08264817509e-08 0.370559424162 9.66824842408e-08
+              1.00000011921 1.0 1.0 66.3579101563 -4.28968143463 1.60600531101 4.08264817509e-08 0.370559424162 9.66824842408e-08
+              1.00000011921 1.0 1.0 66.3579101563 -4.28968143463 1.60600531101 4.08264817509e-08 0.370559424162 9.66824842408e-08
+              1.00000011921 1.0 1.0 66.3579101563 -4.28968143463 1.60600531101 4.08264817509e-08 0.370559424162 9.66824842408e-08
+              1.00000011921 1.0 1.0 66.3579101563 -4.28968143463 1.60600531101 4.08264817509e-08 0.370559424162 9.66824842408e-08
+            }
+          }
+          <Table> Bone.004 {
+            <Xfm$Anim> xform {
+              <Scalar> fps { 30 }
+              <Scalar> order { sprht }
+              <Scalar> contents { ijkprhxyz }
+              <V> {
+                1.0 0.999999940395 1.0 7.2849612236 0.040451541543 -3.43228960037 -2.04537364823e-09 0.307591736317 -7.30869658128e-08
+                1.0 1.0 1.0 7.28495883942 0.0404515042901 -3.43228960037 1.28818813394e-08 0.307591885328 4.28240642947e-09
+                1.0 0.999999880791 1.0 7.28495883942 0.0404514819384 -3.43228983879 -1.29492603307e-08 0.307591766119 -1.03911595772e-07
+                1.0 0.999999940395 0.999999940395 7.28496026993 0.0404514223337 -3.43228936195 -3.61250442893e-08 0.307591915131 3.63456251762e-08
+                1.0 1.0 1.0 7.28496026993 0.0404515005648 -3.43228960037 5.78632644022e-08 0.307591795921 -1.04068064388e-07
+                1.0 1.0 1.0 7.28496026993 0.0404514856637 -3.43228983879 -2.161019097e-08 0.307591706514 -5.20778371538e-08
+                1.0 1.0 1.0 7.28496026993 0.0404514856637 -3.43228983879 -2.161019097e-08 0.307591706514 -5.20778371538e-08
+                1.0 1.0 1.0 7.28496026993 0.0404514856637 -3.43228983879 -2.161019097e-08 0.307591706514 -5.20778371538e-08
+                1.0 1.0 1.0 7.28496026993 0.0404514856637 -3.43228983879 -2.161019097e-08 0.307591706514 -5.20778371538e-08
+                1.0 1.0 1.0 7.28496026993 0.0404514856637 -3.43228983879 -2.161019097e-08 0.307591706514 -5.20778371538e-08
+                1.0 1.0 1.0 7.28496026993 0.0404514856637 -3.43228983879 -2.161019097e-08 0.307591706514 -5.20778371538e-08
+              }
+            }
+            <Table> Bone.005 {
+              <Xfm$Anim> xform {
+                <Scalar> fps { 30 }
+                <Scalar> order { sprht }
+                <Scalar> contents { ijkprhxyz }
+                <V> {
+                  1.0 1.0 1.0 65.9683074951 -85.1245498657 -9.20413780212 3.66168038113e-08 0.739777326584 1.90586195714e-08
+                  1.00000011921 1.0 1.0 64.1443786621 -84.6232910156 -10.8538560867 -2.55725467468e-08 0.739777326584 -9.44766540556e-08
+                  1.0 1.00000011921 1.00000011921 63.0542793274 -84.3239059448 -11.8538532257 9.5437883374e-08 0.739777386189 6.00523435423e-08
+                  1.00000011921 1.00000011921 1.00000011921 62.5289955139 -84.1798324585 -12.3389120102 3.51065914117e-08 0.739777266979 -4.6583856772e-08
+                  1.00000023842 1.00000011921 1.00000011921 62.1646728516 -84.0800704956 -12.6764392853 -4.8528150387e-08 0.739777505398 1.19113274799e-09
+                  1.00000011921 1.0 1.0 61.6091003418 -83.9281616211 -13.1927995682 2.81138259339e-08 0.739777386189 -1.93379321445e-08
+                  1.0 1.0 1.00000011921 60.884929657 -83.7306137085 -13.8686189651 2.81138259339e-08 0.739777386189 -1.93379321445e-08
+                  1.00000023842 1.00000011921 1.0 60.1620674133 -83.533996582 -14.5460748672 2.81138259339e-08 0.739777386189 -1.93379321445e-08
+                  1.0 1.00000011921 1.0 59.5684356689 -83.3729934692 -15.1043729782 2.81138259339e-08 0.739777386189 -1.93379321445e-08
+                  1.00000011921 1.00000011921 1.0 59.2142562866 -83.2771606445 -15.438252449 2.81138259339e-08 0.739777386189 -1.93379321445e-08
+                  1.00000011921 0.999999940395 1.00000011921 59.1134147644 -83.2499084473 -15.5334234238 2.81138259339e-08 0.739777386189 -1.93379321445e-08
+                }
+              }
+            }
+          }
+        }
+      }
+      <Table> Bone.006 {
+        <Xfm$Anim> xform {
+          <Scalar> fps { 30 }
+          <Scalar> order { sprht }
+          <Scalar> contents { ijkprhxyz }
+          <V> {
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791800261 0.576151847839 1.58108532429
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791800261 0.576151847839 1.58108532429
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791800261 0.576151847839 1.58108532429
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791800261 0.576151847839 1.58108532429
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791800261 0.576151847839 1.58108532429
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791800261 0.576151847839 1.58108532429
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791800261 0.576151847839 1.58108532429
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791800261 0.576151847839 1.58108532429
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791800261 0.576151847839 1.58108532429
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791800261 0.576151847839 1.58108532429
+            0.997839510441 0.997839450836 0.997839570045 -8.88079833984 -8.54770587466e-06 90.0 0.256791800261 0.576151847839 1.58108532429
+          }
+        }
+        <Table> Bone.007 {
+          <Xfm$Anim> xform {
+            <Scalar> fps { 30 }
+            <Scalar> order { sprht }
+            <Scalar> contents { ijkprhxyz }
+            <V> {
+              1.00000011921 1.0 1.0 -71.5069046021 -0.777130365372 -0.182400047779 2.52272380763e-09 0.419119685888 -3.31396918796e-08
+              1.0 1.0 1.0 -71.2757949829 -1.11938536167 -0.265112906694 2.52272380763e-09 0.419119685888 -3.31396918796e-08
+              1.00000011921 1.00000011921 1.00000011921 -71.0612335205 -1.43614864349 -0.342979192734 2.52272380763e-09 0.419119685888 -3.31396918796e-08
+              1.00000011921 1.00000011921 1.0 -70.8922958374 -1.68486571312 -0.405009746552 2.52272380763e-09 0.419119685888 -3.31396918796e-08
+              1.00000011921 1.00000011921 1.00000011921 -70.7869567871 -1.83964705467 -0.444010466337 2.52272380763e-09 0.419119685888 -3.31396918796e-08
+              1.00000011921 1.0 1.0 -70.7518234253 -1.89121687412 -0.457072734833 2.52272380763e-09 0.419119685888 -3.31396918796e-08
+              1.00000011921 1.0 1.0 -70.7518234253 -1.89121687412 -0.457072734833 2.52272380763e-09 0.419119685888 -3.31396918796e-08
+              1.00000011921 1.0 1.0 -70.7518234253 -1.89121687412 -0.457072734833 2.52272380763e-09 0.419119685888 -3.31396918796e-08
+              1.00000011921 1.0 1.0 -70.7518234253 -1.89121687412 -0.457072734833 2.52272380763e-09 0.419119685888 -3.31396918796e-08
+              1.00000011921 1.0 1.0 -70.7518234253 -1.89121687412 -0.457072734833 2.52272380763e-09 0.419119685888 -3.31396918796e-08
+              1.00000011921 1.0 1.0 -70.7518234253 -1.89121687412 -0.457072734833 2.52272380763e-09 0.419119685888 -3.31396918796e-08
+            }
+          }
+          <Table> Bone.008 {
+            <Xfm$Anim> xform {
+              <Scalar> fps { 30 }
+              <Scalar> order { sprht }
+              <Scalar> contents { ijkprhxyz }
+              <V> {
+                1.00000011921 1.0 1.0 -2.38393235207 -7.91312082526e-09 -3.90121158489e-07 6.09452470712e-08 0.327627271414 -3.8422527382e-08
+                1.00000011921 1.0 1.00000011921 -2.38393187523 -4.58682558602e-09 -3.28354985868e-07 2.60451678002e-08 0.327627301216 -1.79892847285e-08
+                0.999999940395 0.999999880791 0.999999940395 -2.38393187523 1.41885192484e-09 -3.1378561971e-07 -2.78750338367e-08 0.327627331018 -4.36643219359e-08
+                1.0 1.0 0.999999940395 -2.38393235207 -2.10119441846e-08 -3.52484335053e-07 1.57452095806e-08 0.327627390623 -2.56174956803e-08
+                0.999999940395 0.999999940395 1.00000011921 -2.38393259048 -3.13294350462e-08 -4.74838969922e-07 -2.38279049825e-08 0.327627211809 -1.06620792195e-08
+                1.0 0.999999940395 1.0 -2.38393211365 -3.07927372489e-08 -4.65800127358e-07 2.43840894143e-08 0.327627271414 8.41663183593e-09
+                1.0 0.999999940395 1.0 -2.38393211365 -3.07927372489e-08 -4.65800127358e-07 2.43840894143e-08 0.327627271414 8.41663183593e-09
+                1.0 0.999999940395 1.0 -2.38393211365 -3.07927372489e-08 -4.65800127358e-07 2.43840894143e-08 0.327627271414 8.41663183593e-09
+                1.0 0.999999940395 1.0 -2.38393211365 -3.07927372489e-08 -4.65800127358e-07 2.43840894143e-08 0.327627271414 8.41663183593e-09
+                1.0 0.999999940395 1.0 -2.38393211365 -3.07927372489e-08 -4.65800127358e-07 2.43840894143e-08 0.327627271414 8.41663183593e-09
+                1.0 0.999999940395 1.0 -2.38393211365 -3.07927372489e-08 -4.65800127358e-07 2.43840894143e-08 0.327627271414 8.41663183593e-09
+              }
+            }
+            <Table> Bone.009 {
+              <Xfm$Anim> xform {
+                <Scalar> fps { 30 }
+                <Scalar> order { sprht }
+                <Scalar> contents { ijkprhxyz }
+                <V> {
+                  0.999999880791 1.0 0.999999940395 -12.1552639008 -74.5340576172 51.9698410034 2.39420927528e-08 0.664869785309 2.21219007557e-08
+                  0.999999821186 0.999999880791 0.999999940395 -12.6902799606 -74.6003646851 49.8926200867 1.15301773462e-07 0.664869844913 -2.05664978381e-08
+                  0.999999880791 0.999999940395 0.999999880791 -13.0538663864 -74.6489715576 48.4558486938 -1.75200209895e-08 0.664869606495 -5.32424238031e-08
+                  1.0 1.0 0.999999940395 -13.2376823425 -74.6746749878 47.7208099365 6.36075228044e-08 0.664869785309 1.81416357492e-08
+                  0.999999880791 0.999999940395 0.999999940395 -13.2946138382 -74.6827926636 47.4922332764 1.36306761434e-08 0.664869785309 5.21892005168e-08
+                  0.999999940395 1.0 0.999999940395 -13.3004894257 -74.683631897 47.4686393738 2.05840358092e-08 0.664869844913 3.1384505661e-08
+                  0.999999940395 1.0 0.999999940395 -13.3004894257 -74.683631897 47.4686393738 2.05840358092e-08 0.664869844913 3.1384505661e-08
+                  0.999999940395 1.0 0.999999940395 -13.3004894257 -74.683631897 47.4686393738 2.05840358092e-08 0.664869844913 3.1384505661e-08
+                  0.999999940395 1.0 0.999999940395 -13.3004894257 -74.683631897 47.4686393738 2.05840358092e-08 0.664869844913 3.1384505661e-08
+                  0.999999940395 1.0 0.999999940395 -13.3004894257 -74.683631897 47.4686393738 2.05840358092e-08 0.664869844913 3.1384505661e-08
+                  0.999999940395 1.0 0.999999940395 -13.3004894257 -74.683631897 47.4686393738 2.05840358092e-08 0.664869844913 3.1384505661e-08
+                }
+              }
+            }
+          }
+        }
+      }
+    }
+  }
+}
\ No newline at end of file

=== added directory 'bunnyexample/data/music'
=== added directory 'bunnyexample/data/sfx'
=== added file 'bunnyexample/data/sfx/blastershot.wav'
Binary files bunnyexample/data/sfx/blastershot.wav	1970-01-01 00:00:00 +0000 and bunnyexample/data/sfx/blastershot.wav	2010-08-26 12:58:47 +0000 differ
=== added file 'bunnyexample/data/sfx/jump.wav'
Binary files bunnyexample/data/sfx/jump.wav	1970-01-01 00:00:00 +0000 and bunnyexample/data/sfx/jump.wav	2010-08-26 12:58:47 +0000 differ
=== added file 'bunnyexample/data/sfx/menuclick1.wav'
Binary files bunnyexample/data/sfx/menuclick1.wav	1970-01-01 00:00:00 +0000 and bunnyexample/data/sfx/menuclick1.wav	2010-08-26 12:58:47 +0000 differ
=== added file 'bunnyexample/data/sfx/menuclick2.wav'
Binary files bunnyexample/data/sfx/menuclick2.wav	1970-01-01 00:00:00 +0000 and bunnyexample/data/sfx/menuclick2.wav	2010-08-26 12:58:47 +0000 differ
=== added file 'bunnyexample/data/sfx/menusel.wav'
Binary files bunnyexample/data/sfx/menusel.wav	1970-01-01 00:00:00 +0000 and bunnyexample/data/sfx/menusel.wav	2010-08-26 12:58:47 +0000 differ
=== added directory 'bunnyexample/data/textures'
=== added file 'bunnyexample/gui.py'
--- bunnyexample/gui.py	1970-01-01 00:00:00 +0000
+++ bunnyexample/gui.py	2010-08-26 12:58:47 +0000
@@ -0,0 +1,142 @@
+# _*_ coding: UTF-8 _*_
+###############################################################
+##  Autor: Carsten Pfeffer    ##  Version 0.0                ##
+###############################################################
+##  Programm: BUNNY                                          ##
+###############################################################
+##  Datum:  08.02.2010                                       ##
+###############################################################
+
+
+# ----------------------------------------------------------------- #
+# -- Importe
+
+from panda3d.core import *
+from direct.gui.DirectGui import *
+from direct.gui.OnscreenImage import OnscreenImage
+from direct.gui.OnscreenText import OnscreenText
+
+from pandac.PandaModules import TransparencyAttrib
+
+
+#myObject = Directxxxxxx(keyword=value, keyword=value, ...)
+
+# ----------------------------------------------------------------- #
+# ----------------------------------------------------------------- #
+# ----------------------------------------------------------------- #
+
+class Menu():
+    '''
+    '''
+    def __init__(self):
+        '''
+        '''
+        self.options = []
+        self.images = []
+        self.texts = []
+
+        self.selected = 0
+
+        self.color_deselected = (0,.6,.8,1)
+        self.color_selected = (.9,.3,0,1)
+
+    # ----------------------------------------------------------------- #
+
+    def addOption(self, text, function):
+        '''
+        '''
+        self.options.append([text, function])
+
+    # ----------------------------------------------------------------- #
+
+    def showMenu(self):
+        '''
+        '''
+        y = (len(self.options)*.4)*.17
+        for option in self.options:
+            #image = None
+            #image = OnscreenImage(image = "data/gfx/menu/button.png", pos = (0, 0, y), scale = (.6, 1, .06))
+            #image.setTransparency(TransparencyAttrib.MAlpha)
+            #self.images.append(image)
+
+            text = OnscreenText(text = option[0], pos = (0, y-.02), scale = (.07, .07), fg=self.color_deselected)
+            font = DynamicTextFont("data/bunny_game.ttf")
+            text.setFont(font)
+            self.texts.append(text)
+
+            y -= .17
+
+            self.selectOption(self.selected)
+
+    # ----------------------------------------------------------------- #
+
+    def selectNext(self):
+        '''
+        '''
+        old = self.selected
+        self.selected += 1
+        if self.selected == len(self.options):
+            self.selected = 0
+
+        if old < len(self.texts):
+            self.texts[old].setFg(self.color_deselected)
+        if self.selected < len(self.texts):
+            self.texts[self.selected].setFg(self.color_selected)
+
+    # ----------------------------------------------------------------- #
+
+    def selectPrev(self):
+        '''
+        '''
+        old = self.selected
+        self.selected -= 1
+        if self.selected == -1:
+            self.selected = len(self.options)-1
+
+        if old < len(self.texts):
+            self.texts[old].setFg(self.color_deselected)
+        if self.selected < len(self.texts):
+            self.texts[self.selected].setFg(self.color_selected)
+
+    # ----------------------------------------------------------------- #
+
+    def selectOption(self, i):
+        '''
+        '''
+        i %= len(self.options)
+        old = self.selected
+        self.selected = i
+        if self.selected == -1:
+            self.selected = len(self.options)-1
+
+        if self.selected == len(self.options):
+            self.selected = 0
+
+        if old < len(self.texts):
+            self.texts[old].setFg(self.color_deselected)
+        if self.selected < len(self.texts):
+            self.texts[self.selected].setFg(self.color_selected)
+
+
+    # ----------------------------------------------------------------- #
+
+    def hideMenu(self):
+        '''
+        '''
+        for i in range(len(self.options)):
+#            self.images[i].destroy()
+            self.texts[i].destroy()
+
+        self.images = []
+        self.texts = []
+
+    # ----------------------------------------------------------------- #
+
+    def chooseSelectedOption(self):
+        '''
+        '''
+        if callable(self.options[self.selected][1]):
+            self.options[self.selected][1]()
+
+
+    # ----------------------------------------------------------------- #

=== added file 'bunnyexample/player.py'
--- bunnyexample/player.py	1970-01-01 00:00:00 +0000
+++ bunnyexample/player.py	2010-08-26 12:58:47 +0000
@@ -0,0 +1,368 @@
+# _*_ coding: UTF-8 _*_
+###############################################################
+##  Autor: Carsten Pfeffer    ##  Version 0.0                ##
+###############################################################
+##  Programm: BUNNY                                          ##
+###############################################################
+##  Datum:  23.08.2010                                       ##
+###############################################################
+
+from panda3d.core import *
+from direct.actor.Actor import Actor                        # bewegliche Models
+from direct.showbase.DirectObject import DirectObject       # Basisklasse für das Spiel
+
+import math
+
+STATE_STANDING = 0
+STATE_MOVING = 1
+STATE_JUMPING = 2
+STATE_FALLING = 3
+
+# ----------------------------------------------------------------- #
+# ----------------------------------------------------------------- #
+
+SOUND_JUMP = loader.loadSfx("data/sfx/jump.wav")
+SOUND_BLASTERSHOT = loader.loadSfx("data/sfx/blastershot.wav")
+
+# ----------------------------------------------------------------- #
+# ----------------------------------------------------------------- #
+# ----------------------------------------------------------------- #
+# ----------------------------------------------------------------- #
+
+
+class Player(object):
+    '''
+    '''
+    def __init__(self, model):
+        '''
+        '''
+        self.speed = Vec3(0,0,0)
+        self.actor = Actor(model)
+        self.state = STATE_STANDING
+        self.jump_time = 0.0
+        self.jump_height = 60
+        self.is_shooting = False
+        self.shoot_time = 1
+
+        # alle abgeschossenen Kugeln
+        self.bullets = []
+
+        # Animationszyklen festlegen
+        anim_control=self.actor.getAnimControl("run")
+        anim_control.setPlayRate(1.8)
+
+        # Floater hinzufügen
+        self.floater = NodePath(PandaNode("floater"))
+        self.floater.reparentTo(render)
+
+        # Kamera hinzufügen
+        base.camera.setPos(self.actor.getX(),self.actor.getY()+10,2)
+        base.camera.setZ(self.actor.getZ()+3)
+
+        self.initCollision()
+
+    # ----------------------------------------------------------------- #
+
+    def setPos(self, value):
+        '''
+        '''
+        self.actor.setPos(value)
+
+    # ----------------------------------------------------------------- #
+
+    def setScale(self, value):
+        '''
+        '''
+        self.actor.setScale(value)
+
+    # ----------------------------------------------------------------- #
+
+    def reparentTo(self, target):
+        '''
+        '''
+        return self.actor.reparentTo(target)
+
+    # ----------------------------------------------------------------- #
+
+    def movePlayer(self, key_map):
+        '''
+        '''
+        self.speed.setX(0)
+        self.speed.setY(0)
+        self.speed.setZ(0)
+
+
+        # Kamera sieht den Spieler an
+        base.camera.lookAt(self.actor)
+
+        # Kamera bei Bedarf drehen
+        if key_map["joy_a"] != 0:
+            base.camera.setX(base.camera, key_map["joy_a"]*-20 * globalClock.getDt())
+        if key_map["cam_left"]:    # Kamera nach links drehen, wenn die Taste gedrückt wurde
+            base.camera.setX(base.camera, +20 * globalClock.getDt())
+        if key_map["cam_right"]:   # Kamera nach links drehen, wenn die Taste gedrückt wurde
+            base.camera.setX(base.camera, -20 * globalClock.getDt())
+
+
+
+        joy_x = key_map["joy_x"]
+        joy_y = key_map["joy_y"]
+
+        # If a move-key is pressed, the joystick / gamepad values will be ignored
+
+        if key_map["arrow_left"]:
+            joy_x = -1
+        elif key_map["arrow_right"]:
+            joy_x = 1
+        if key_map["arrow_up"]:
+            joy_y = -1
+        elif key_map["arrow_down"]:
+            joy_y = 1
+
+
+        # determine the angle the player wants to go
+        alpha = 0
+
+        if joy_x != 0 or joy_y != 0:
+            if joy_x == 0:
+                joy_x = .01
+            if joy_y == 0:
+                joy_y = .01
+
+            if joy_x < 0 and joy_y > 0:
+                alpha = 180-math.degrees(math.atan(-joy_x/joy_y))
+
+            elif joy_x < 0 and joy_y < 0:
+                alpha = 90-math.degrees(math.atan(-joy_y/-joy_x))
+
+            elif joy_x > 0 and joy_y < 0:
+                alpha = -math.degrees(math.atan(joy_x/-joy_y))
+
+            elif joy_x > 0 and joy_y > 0:
+                alpha = -90-math.degrees(math.atan(joy_y/joy_x))
+
+            # determine the speed the player walks
+            self.speed.setY(-25 * (abs(joy_x)+abs(joy_y)) * globalClock.getDt())
+
+            # the players angle is computed so that he would walk towards the camera if the angle was 0
+            self.actor.lookAt(base.camera)
+            self.actor.setR(0)
+            self.actor.setP(0)
+            self.actor.setH(self.actor.getH()+alpha)
+
+
+
+
+        # let the player jump
+        if (key_map["jump"] or key_map["joy_jump"]) and self.state != STATE_FALLING and self.state != STATE_JUMPING:
+            self.jump_time = self.jump_height
+            self.state = STATE_JUMPING
+            SOUND_JUMP.play()
+
+        if (key_map["shoot"] or key_map["joy_shoot"]) and not self.is_shooting:
+            self.shoot_time = 1
+            self.is_shooting = True
+            SOUND_BLASTERSHOT.play()
+
+            bullet = loader.loadModel("data/models/blasterbullet")
+            bullet.reparentTo(render)
+            pos = self.actor.getPos()
+            bullet.setPos(pos)
+            bullet.setZ(bullet,1)
+            bullet.setH(self.actor.getH())
+            bullet.setR(0)
+            bullet.setP(0)
+            self.bullets.append(bullet)
+
+        if self.is_shooting:
+            self.shoot_time -= 2*globalClock.getDt()
+            if (key_map["shoot"] == False and key_map["joy_shoot"] == False) or self.shoot_time <= 0:
+                self.is_shooting = False
+
+        if self.state == STATE_JUMPING:
+            if self.jump_time <= 0:
+                self.state = STATE_FALLING
+            else:
+                self.speed.setZ(globalClock.getDt() * self.jump_time)
+                self.jump_time -= self.jump_height*3 * globalClock.getDt()
+
+
+        if self.state != STATE_JUMPING:
+            if self.speed.getY() != 0:
+                self.state = STATE_MOVING
+            else:
+                self.state = STATE_STANDING
+
+        # Kollisionskerkennung
+        self.doCollisionDetection()
+
+
+        ## move bullets
+        for bullet in self.bullets:
+            bullet.setPos(bullet, Vec3(0, -40 * globalClock.getDt(),0))
+
+        #######################################################
+        ## ANIMATION
+
+        if self.state == STATE_FALLING:
+            if self.actor.getCurrentAnim() != "fall":
+                self.actor.stop()
+                self.actor.loop("fall")
+        elif self.state == STATE_MOVING:
+            if self.actor.getCurrentAnim() != "run":
+                    self.actor.stop()
+                    self.actor.loop("run")
+        elif self.state == STATE_JUMPING:
+            if self.actor.getCurrentAnim() != "jump":
+                    self.actor.stop()
+                    self.actor.loop("jump")
+        else:
+            if self.is_shooting and self.actor.getCurrentAnim() != "shoot":
+                self.actor.stop()
+                self.actor.loop("shoot")
+            elif self.state == STATE_STANDING and self.actor.getCurrentAnim() != "stand" and not self.is_shooting:
+                self.actor.stop()
+                self.actor.loop("stand")
+
+
+        #######################################################
+        ## KAMERA
+
+        # If the camera is too far from player, move it closer.
+        # If the camera is too close to player, move it farther.
+
+        camvec = self.actor.getPos() - base.camera.getPos()
+        camvec.setZ(0)
+        camdist = camvec.length()
+        camvec.normalize()
+        if camdist > 12.0:
+            base.camera.setPos(base.camera.getPos() + camvec*(camdist-12))
+            camdist = 12.0
+        if camdist < 8.0:
+            base.camera.setPos(base.camera.getPos() - camvec*(8-camdist))
+            camdist = 8.0
+
+
+        # The camera should look in player's direction,
+        # but it should also try to stay horizontal, so look at
+        # a floater which hovers above player's head.
+
+        self.floater.setPos(self.actor.getPos())
+        self.floater.setZ(self.actor.getZ() + 2.0)
+        base.camera.lookAt(self.floater)
+
+
+    # ----------------------------------------------------------------- #
+
+
+    def doCollisionDetection(self):
+        '''
+        '''
+        last_pos = self.actor.getPos()
+        stuck = False
+        self.actor.setPos(self.actor, self.speed)
+        self.speed = Vec3(0,0,0)
+
+        self.c_trav.traverse(render)
+
+        # Adjust player's Z coordinate.  If player's ray hit terrain,
+        # update his Z. If it hit anything else, or didn't hit anything, put
+        # him back where he was last frame.
+
+        entries = []
+        for i in range(self.groundHandler.getNumEntries()):
+            entry = self.groundHandler.getEntry(i)
+            entries.append(entry)
+
+        entries.sort(lambda x,y: cmp(y.getSurfacePoint(render).getZ(),
+                                     x.getSurfacePoint(render).getZ()))
+
+        if (len(entries)>0) and (entries[0].getIntoNode().getName() == "terrain"):
+            #self.actor.setZ(entries[0].getSurfacePoint(render).getZ())
+
+            surface_z = entries[0].getSurfacePoint(render).getZ()
+            actor_z = self.actor.getZ()
+
+            dist = actor_z-surface_z
+
+            if dist > 0.1 and self.state != STATE_JUMPING:
+
+                if dist > .5:
+                    self.speed.setZ(self.speed.getZ()-.65)
+                    self.state = STATE_FALLING
+                else:
+                    self.actor.setZ(surface_z)
+
+            elif dist < -0.1:
+                if dist < -.8:
+                    stuck = True
+                else:
+                    #self.speed.setZ(.18)
+                    self.actor.setZ(surface_z)
+
+        # kein Boden
+        else:
+            self.speed.setZ(self.speed.getZ()-.65)
+            self.state = STATE_FALLING
+
+        # Keep the camera at one foot above the terrain,
+        # or two feet above player, whichever is greater.
+
+        entries = []
+        for i in range(self.camGroundHandler.getNumEntries()):
+            entry = self.camGroundHandler.getEntry(i)
+            entries.append(entry)
+        entries.sort(lambda x,y: cmp(y.getSurfacePoint(render).getZ(),
+                                     x.getSurfacePoint(render).getZ()))
+        if (len(entries)>0) and (entries[0].getIntoNode().getName() == "terrain"):
+            base.camera.setZ(entries[0].getSurfacePoint(render).getZ()+1.0)
+        if (base.camera.getZ() < self.actor.getZ() + 2.0):
+            base.camera.setZ(self.actor.getZ() + 2.0)
+
+        self.actor.setPos(self.actor, self.speed)
+        if stuck:
+            self.actor.setPos(last_pos)
+
+    # ----------------------------------------------------------------- #
+
+    def initCollision(self):
+        '''
+        '''
+        # We will detect the height of the terrain by creating a collision
+        # ray and casting it downward toward the terrain.  One ray will
+        # start above player's head, and the other will start above the camera.
+        # A ray may hit the terrain, or it may hit a rock or a tree.  If it
+        # hits the terrain, we can detect the height.  If it hits anything
+        # else, we rule that the move is illegal.
+
+        self.c_trav = CollisionTraverser()
+
+        self.groundRay = CollisionRay()
+        self.groundRay.setOrigin(0,0,1000)
+        self.groundRay.setDirection(0,0,-1)
+
+        self.groundCol = CollisionNode('playerRay')
+        self.groundCol.addSolid(self.groundRay)
+        self.groundCol.setFromCollideMask(BitMask32.bit(0))
+        self.groundCol.setIntoCollideMask(BitMask32.allOff())
+
+        self.groundColNp = self.actor.attachNewNode(self.groundCol)
+        self.groundHandler = CollisionHandlerQueue()
+        self.c_trav.addCollider(self.groundColNp, self.groundHandler)
+
+        self.camGroundRay = CollisionRay()
+        self.camGroundRay.setOrigin(0,0,1000)
+        self.camGroundRay.setDirection(0,0,-1)
+        self.camGroundCol = CollisionNode('camRay')
+        self.camGroundCol.addSolid(self.camGroundRay)
+        self.camGroundCol.setFromCollideMask(BitMask32.bit(0))
+        self.camGroundCol.setIntoCollideMask(BitMask32.allOff())
+        self.camGroundColNp = base.camera.attachNewNode(self.camGroundCol)
+        self.camGroundHandler = CollisionHandlerQueue()
+        self.c_trav.addCollider(self.camGroundColNp, self.camGroundHandler)
+
+
+# ----------------------------------------------------------------- #
+# ----------------------------------------------------------------- #
+# ----------------------------------------------------------------- #
+# ----------------------------------------------------------------- #